Merge commit a4ae32c71fe9 ("exec: Always set cap_ambient in cap_bprm_set_creds")
[linux-2.6-microblaze.git] / include / linux / security.h
1 /*
2  * Linux Security plug
3  *
4  * Copyright (C) 2001 WireX Communications, Inc <chris@wirex.com>
5  * Copyright (C) 2001 Greg Kroah-Hartman <greg@kroah.com>
6  * Copyright (C) 2001 Networks Associates Technology, Inc <ssmalley@nai.com>
7  * Copyright (C) 2001 James Morris <jmorris@intercode.com.au>
8  * Copyright (C) 2001 Silicon Graphics, Inc. (Trust Technology Group)
9  * Copyright (C) 2016 Mellanox Techonologies
10  *
11  *      This program is free software; you can redistribute it and/or modify
12  *      it under the terms of the GNU General Public License as published by
13  *      the Free Software Foundation; either version 2 of the License, or
14  *      (at your option) any later version.
15  *
16  *      Due to this file being licensed under the GPL there is controversy over
17  *      whether this permits you to write a module that #includes this file
18  *      without placing your module under the GPL.  Please consult a lawyer for
19  *      advice before doing this.
20  *
21  */
22
23 #ifndef __LINUX_SECURITY_H
24 #define __LINUX_SECURITY_H
25
26 #include <linux/key.h>
27 #include <linux/capability.h>
28 #include <linux/fs.h>
29 #include <linux/slab.h>
30 #include <linux/err.h>
31 #include <linux/string.h>
32 #include <linux/mm.h>
33
34 struct linux_binprm;
35 struct cred;
36 struct rlimit;
37 struct kernel_siginfo;
38 struct sembuf;
39 struct kern_ipc_perm;
40 struct audit_context;
41 struct super_block;
42 struct inode;
43 struct dentry;
44 struct file;
45 struct vfsmount;
46 struct path;
47 struct qstr;
48 struct iattr;
49 struct fown_struct;
50 struct file_operations;
51 struct msg_msg;
52 struct xattr;
53 struct kernfs_node;
54 struct xfrm_sec_ctx;
55 struct mm_struct;
56 struct fs_context;
57 struct fs_parameter;
58 enum fs_value_type;
59
60 /* Default (no) options for the capable function */
61 #define CAP_OPT_NONE 0x0
62 /* If capable should audit the security request */
63 #define CAP_OPT_NOAUDIT BIT(1)
64 /* If capable is being called by a setid function */
65 #define CAP_OPT_INSETID BIT(2)
66
67 /* LSM Agnostic defines for fs_context::lsm_flags */
68 #define SECURITY_LSM_NATIVE_LABELS      1
69
70 struct ctl_table;
71 struct audit_krule;
72 struct user_namespace;
73 struct timezone;
74
75 enum lsm_event {
76         LSM_POLICY_CHANGE,
77 };
78
79 /*
80  * These are reasons that can be passed to the security_locked_down()
81  * LSM hook. Lockdown reasons that protect kernel integrity (ie, the
82  * ability for userland to modify kernel code) are placed before
83  * LOCKDOWN_INTEGRITY_MAX.  Lockdown reasons that protect kernel
84  * confidentiality (ie, the ability for userland to extract
85  * information from the running kernel that would otherwise be
86  * restricted) are placed before LOCKDOWN_CONFIDENTIALITY_MAX.
87  *
88  * LSM authors should note that the semantics of any given lockdown
89  * reason are not guaranteed to be stable - the same reason may block
90  * one set of features in one kernel release, and a slightly different
91  * set of features in a later kernel release. LSMs that seek to expose
92  * lockdown policy at any level of granularity other than "none",
93  * "integrity" or "confidentiality" are responsible for either
94  * ensuring that they expose a consistent level of functionality to
95  * userland, or ensuring that userland is aware that this is
96  * potentially a moving target. It is easy to misuse this information
97  * in a way that could break userspace. Please be careful not to do
98  * so.
99  *
100  * If you add to this, remember to extend lockdown_reasons in
101  * security/lockdown/lockdown.c.
102  */
103 enum lockdown_reason {
104         LOCKDOWN_NONE,
105         LOCKDOWN_MODULE_SIGNATURE,
106         LOCKDOWN_DEV_MEM,
107         LOCKDOWN_EFI_TEST,
108         LOCKDOWN_KEXEC,
109         LOCKDOWN_HIBERNATION,
110         LOCKDOWN_PCI_ACCESS,
111         LOCKDOWN_IOPORT,
112         LOCKDOWN_MSR,
113         LOCKDOWN_ACPI_TABLES,
114         LOCKDOWN_PCMCIA_CIS,
115         LOCKDOWN_TIOCSSERIAL,
116         LOCKDOWN_MODULE_PARAMETERS,
117         LOCKDOWN_MMIOTRACE,
118         LOCKDOWN_DEBUGFS,
119         LOCKDOWN_XMON_WR,
120         LOCKDOWN_INTEGRITY_MAX,
121         LOCKDOWN_KCORE,
122         LOCKDOWN_KPROBES,
123         LOCKDOWN_BPF_READ,
124         LOCKDOWN_PERF,
125         LOCKDOWN_TRACEFS,
126         LOCKDOWN_XMON_RW,
127         LOCKDOWN_CONFIDENTIALITY_MAX,
128 };
129
130 extern const char *const lockdown_reasons[LOCKDOWN_CONFIDENTIALITY_MAX+1];
131
132 /* These functions are in security/commoncap.c */
133 extern int cap_capable(const struct cred *cred, struct user_namespace *ns,
134                        int cap, unsigned int opts);
135 extern int cap_settime(const struct timespec64 *ts, const struct timezone *tz);
136 extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
137 extern int cap_ptrace_traceme(struct task_struct *parent);
138 extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
139 extern int cap_capset(struct cred *new, const struct cred *old,
140                       const kernel_cap_t *effective,
141                       const kernel_cap_t *inheritable,
142                       const kernel_cap_t *permitted);
143 extern int cap_bprm_repopulate_creds(struct linux_binprm *bprm);
144 extern int cap_inode_setxattr(struct dentry *dentry, const char *name,
145                               const void *value, size_t size, int flags);
146 extern int cap_inode_removexattr(struct dentry *dentry, const char *name);
147 extern int cap_inode_need_killpriv(struct dentry *dentry);
148 extern int cap_inode_killpriv(struct dentry *dentry);
149 extern int cap_inode_getsecurity(struct inode *inode, const char *name,
150                                  void **buffer, bool alloc);
151 extern int cap_mmap_addr(unsigned long addr);
152 extern int cap_mmap_file(struct file *file, unsigned long reqprot,
153                          unsigned long prot, unsigned long flags);
154 extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags);
155 extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
156                           unsigned long arg4, unsigned long arg5);
157 extern int cap_task_setscheduler(struct task_struct *p);
158 extern int cap_task_setioprio(struct task_struct *p, int ioprio);
159 extern int cap_task_setnice(struct task_struct *p, int nice);
160 extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
161
162 struct msghdr;
163 struct sk_buff;
164 struct sock;
165 struct sockaddr;
166 struct socket;
167 struct flowi;
168 struct dst_entry;
169 struct xfrm_selector;
170 struct xfrm_policy;
171 struct xfrm_state;
172 struct xfrm_user_sec_ctx;
173 struct seq_file;
174 struct sctp_endpoint;
175
176 #ifdef CONFIG_MMU
177 extern unsigned long mmap_min_addr;
178 extern unsigned long dac_mmap_min_addr;
179 #else
180 #define mmap_min_addr           0UL
181 #define dac_mmap_min_addr       0UL
182 #endif
183
184 /*
185  * Values used in the task_security_ops calls
186  */
187 /* setuid or setgid, id0 == uid or gid */
188 #define LSM_SETID_ID    1
189
190 /* setreuid or setregid, id0 == real, id1 == eff */
191 #define LSM_SETID_RE    2
192
193 /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
194 #define LSM_SETID_RES   4
195
196 /* setfsuid or setfsgid, id0 == fsuid or fsgid */
197 #define LSM_SETID_FS    8
198
199 /* Flags for security_task_prlimit(). */
200 #define LSM_PRLIMIT_READ  1
201 #define LSM_PRLIMIT_WRITE 2
202
203 /* forward declares to avoid warnings */
204 struct sched_param;
205 struct request_sock;
206
207 /* bprm->unsafe reasons */
208 #define LSM_UNSAFE_SHARE        1
209 #define LSM_UNSAFE_PTRACE       2
210 #define LSM_UNSAFE_NO_NEW_PRIVS 4
211
212 #ifdef CONFIG_MMU
213 extern int mmap_min_addr_handler(struct ctl_table *table, int write,
214                                  void __user *buffer, size_t *lenp, loff_t *ppos);
215 #endif
216
217 /* security_inode_init_security callback function to write xattrs */
218 typedef int (*initxattrs) (struct inode *inode,
219                            const struct xattr *xattr_array, void *fs_data);
220
221
222 /* Keep the kernel_load_data_id enum in sync with kernel_read_file_id */
223 #define __data_id_enumify(ENUM, dummy) LOADING_ ## ENUM,
224 #define __data_id_stringify(dummy, str) #str,
225
226 enum kernel_load_data_id {
227         __kernel_read_file_id(__data_id_enumify)
228 };
229
230 static const char * const kernel_load_data_str[] = {
231         __kernel_read_file_id(__data_id_stringify)
232 };
233
234 static inline const char *kernel_load_data_id_str(enum kernel_load_data_id id)
235 {
236         if ((unsigned)id >= LOADING_MAX_ID)
237                 return kernel_load_data_str[LOADING_UNKNOWN];
238
239         return kernel_load_data_str[id];
240 }
241
242 #ifdef CONFIG_SECURITY
243
244 int call_blocking_lsm_notifier(enum lsm_event event, void *data);
245 int register_blocking_lsm_notifier(struct notifier_block *nb);
246 int unregister_blocking_lsm_notifier(struct notifier_block *nb);
247
248 /* prototypes */
249 extern int security_init(void);
250 extern int early_security_init(void);
251
252 /* Security operations */
253 int security_binder_set_context_mgr(struct task_struct *mgr);
254 int security_binder_transaction(struct task_struct *from,
255                                 struct task_struct *to);
256 int security_binder_transfer_binder(struct task_struct *from,
257                                     struct task_struct *to);
258 int security_binder_transfer_file(struct task_struct *from,
259                                   struct task_struct *to, struct file *file);
260 int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
261 int security_ptrace_traceme(struct task_struct *parent);
262 int security_capget(struct task_struct *target,
263                     kernel_cap_t *effective,
264                     kernel_cap_t *inheritable,
265                     kernel_cap_t *permitted);
266 int security_capset(struct cred *new, const struct cred *old,
267                     const kernel_cap_t *effective,
268                     const kernel_cap_t *inheritable,
269                     const kernel_cap_t *permitted);
270 int security_capable(const struct cred *cred,
271                        struct user_namespace *ns,
272                        int cap,
273                        unsigned int opts);
274 int security_quotactl(int cmds, int type, int id, struct super_block *sb);
275 int security_quota_on(struct dentry *dentry);
276 int security_syslog(int type);
277 int security_settime64(const struct timespec64 *ts, const struct timezone *tz);
278 int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
279 int security_bprm_creds_for_exec(struct linux_binprm *bprm);
280 int security_bprm_repopulate_creds(struct linux_binprm *bprm);
281 int security_bprm_check(struct linux_binprm *bprm);
282 void security_bprm_committing_creds(struct linux_binprm *bprm);
283 void security_bprm_committed_creds(struct linux_binprm *bprm);
284 int security_fs_context_dup(struct fs_context *fc, struct fs_context *src_fc);
285 int security_fs_context_parse_param(struct fs_context *fc, struct fs_parameter *param);
286 int security_sb_alloc(struct super_block *sb);
287 void security_sb_free(struct super_block *sb);
288 void security_free_mnt_opts(void **mnt_opts);
289 int security_sb_eat_lsm_opts(char *options, void **mnt_opts);
290 int security_sb_remount(struct super_block *sb, void *mnt_opts);
291 int security_sb_kern_mount(struct super_block *sb);
292 int security_sb_show_options(struct seq_file *m, struct super_block *sb);
293 int security_sb_statfs(struct dentry *dentry);
294 int security_sb_mount(const char *dev_name, const struct path *path,
295                       const char *type, unsigned long flags, void *data);
296 int security_sb_umount(struct vfsmount *mnt, int flags);
297 int security_sb_pivotroot(const struct path *old_path, const struct path *new_path);
298 int security_sb_set_mnt_opts(struct super_block *sb,
299                                 void *mnt_opts,
300                                 unsigned long kern_flags,
301                                 unsigned long *set_kern_flags);
302 int security_sb_clone_mnt_opts(const struct super_block *oldsb,
303                                 struct super_block *newsb,
304                                 unsigned long kern_flags,
305                                 unsigned long *set_kern_flags);
306 int security_add_mnt_opt(const char *option, const char *val,
307                                 int len, void **mnt_opts);
308 int security_move_mount(const struct path *from_path, const struct path *to_path);
309 int security_dentry_init_security(struct dentry *dentry, int mode,
310                                         const struct qstr *name, void **ctx,
311                                         u32 *ctxlen);
312 int security_dentry_create_files_as(struct dentry *dentry, int mode,
313                                         struct qstr *name,
314                                         const struct cred *old,
315                                         struct cred *new);
316 int security_path_notify(const struct path *path, u64 mask,
317                                         unsigned int obj_type);
318 int security_inode_alloc(struct inode *inode);
319 void security_inode_free(struct inode *inode);
320 int security_inode_init_security(struct inode *inode, struct inode *dir,
321                                  const struct qstr *qstr,
322                                  initxattrs initxattrs, void *fs_data);
323 int security_old_inode_init_security(struct inode *inode, struct inode *dir,
324                                      const struct qstr *qstr, const char **name,
325                                      void **value, size_t *len);
326 int security_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode);
327 int security_inode_link(struct dentry *old_dentry, struct inode *dir,
328                          struct dentry *new_dentry);
329 int security_inode_unlink(struct inode *dir, struct dentry *dentry);
330 int security_inode_symlink(struct inode *dir, struct dentry *dentry,
331                            const char *old_name);
332 int security_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
333 int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
334 int security_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev);
335 int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
336                           struct inode *new_dir, struct dentry *new_dentry,
337                           unsigned int flags);
338 int security_inode_readlink(struct dentry *dentry);
339 int security_inode_follow_link(struct dentry *dentry, struct inode *inode,
340                                bool rcu);
341 int security_inode_permission(struct inode *inode, int mask);
342 int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
343 int security_inode_getattr(const struct path *path);
344 int security_inode_setxattr(struct dentry *dentry, const char *name,
345                             const void *value, size_t size, int flags);
346 void security_inode_post_setxattr(struct dentry *dentry, const char *name,
347                                   const void *value, size_t size, int flags);
348 int security_inode_getxattr(struct dentry *dentry, const char *name);
349 int security_inode_listxattr(struct dentry *dentry);
350 int security_inode_removexattr(struct dentry *dentry, const char *name);
351 int security_inode_need_killpriv(struct dentry *dentry);
352 int security_inode_killpriv(struct dentry *dentry);
353 int security_inode_getsecurity(struct inode *inode, const char *name, void **buffer, bool alloc);
354 int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
355 int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
356 void security_inode_getsecid(struct inode *inode, u32 *secid);
357 int security_inode_copy_up(struct dentry *src, struct cred **new);
358 int security_inode_copy_up_xattr(const char *name);
359 int security_kernfs_init_security(struct kernfs_node *kn_dir,
360                                   struct kernfs_node *kn);
361 int security_file_permission(struct file *file, int mask);
362 int security_file_alloc(struct file *file);
363 void security_file_free(struct file *file);
364 int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
365 int security_mmap_file(struct file *file, unsigned long prot,
366                         unsigned long flags);
367 int security_mmap_addr(unsigned long addr);
368 int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
369                            unsigned long prot);
370 int security_file_lock(struct file *file, unsigned int cmd);
371 int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
372 void security_file_set_fowner(struct file *file);
373 int security_file_send_sigiotask(struct task_struct *tsk,
374                                  struct fown_struct *fown, int sig);
375 int security_file_receive(struct file *file);
376 int security_file_open(struct file *file);
377 int security_task_alloc(struct task_struct *task, unsigned long clone_flags);
378 void security_task_free(struct task_struct *task);
379 int security_cred_alloc_blank(struct cred *cred, gfp_t gfp);
380 void security_cred_free(struct cred *cred);
381 int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
382 void security_transfer_creds(struct cred *new, const struct cred *old);
383 void security_cred_getsecid(const struct cred *c, u32 *secid);
384 int security_kernel_act_as(struct cred *new, u32 secid);
385 int security_kernel_create_files_as(struct cred *new, struct inode *inode);
386 int security_kernel_module_request(char *kmod_name);
387 int security_kernel_load_data(enum kernel_load_data_id id);
388 int security_kernel_read_file(struct file *file, enum kernel_read_file_id id);
389 int security_kernel_post_read_file(struct file *file, char *buf, loff_t size,
390                                    enum kernel_read_file_id id);
391 int security_task_fix_setuid(struct cred *new, const struct cred *old,
392                              int flags);
393 int security_task_setpgid(struct task_struct *p, pid_t pgid);
394 int security_task_getpgid(struct task_struct *p);
395 int security_task_getsid(struct task_struct *p);
396 void security_task_getsecid(struct task_struct *p, u32 *secid);
397 int security_task_setnice(struct task_struct *p, int nice);
398 int security_task_setioprio(struct task_struct *p, int ioprio);
399 int security_task_getioprio(struct task_struct *p);
400 int security_task_prlimit(const struct cred *cred, const struct cred *tcred,
401                           unsigned int flags);
402 int security_task_setrlimit(struct task_struct *p, unsigned int resource,
403                 struct rlimit *new_rlim);
404 int security_task_setscheduler(struct task_struct *p);
405 int security_task_getscheduler(struct task_struct *p);
406 int security_task_movememory(struct task_struct *p);
407 int security_task_kill(struct task_struct *p, struct kernel_siginfo *info,
408                         int sig, const struct cred *cred);
409 int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
410                         unsigned long arg4, unsigned long arg5);
411 void security_task_to_inode(struct task_struct *p, struct inode *inode);
412 int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
413 void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
414 int security_msg_msg_alloc(struct msg_msg *msg);
415 void security_msg_msg_free(struct msg_msg *msg);
416 int security_msg_queue_alloc(struct kern_ipc_perm *msq);
417 void security_msg_queue_free(struct kern_ipc_perm *msq);
418 int security_msg_queue_associate(struct kern_ipc_perm *msq, int msqflg);
419 int security_msg_queue_msgctl(struct kern_ipc_perm *msq, int cmd);
420 int security_msg_queue_msgsnd(struct kern_ipc_perm *msq,
421                               struct msg_msg *msg, int msqflg);
422 int security_msg_queue_msgrcv(struct kern_ipc_perm *msq, struct msg_msg *msg,
423                               struct task_struct *target, long type, int mode);
424 int security_shm_alloc(struct kern_ipc_perm *shp);
425 void security_shm_free(struct kern_ipc_perm *shp);
426 int security_shm_associate(struct kern_ipc_perm *shp, int shmflg);
427 int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd);
428 int security_shm_shmat(struct kern_ipc_perm *shp, char __user *shmaddr, int shmflg);
429 int security_sem_alloc(struct kern_ipc_perm *sma);
430 void security_sem_free(struct kern_ipc_perm *sma);
431 int security_sem_associate(struct kern_ipc_perm *sma, int semflg);
432 int security_sem_semctl(struct kern_ipc_perm *sma, int cmd);
433 int security_sem_semop(struct kern_ipc_perm *sma, struct sembuf *sops,
434                         unsigned nsops, int alter);
435 void security_d_instantiate(struct dentry *dentry, struct inode *inode);
436 int security_getprocattr(struct task_struct *p, const char *lsm, char *name,
437                          char **value);
438 int security_setprocattr(const char *lsm, const char *name, void *value,
439                          size_t size);
440 int security_netlink_send(struct sock *sk, struct sk_buff *skb);
441 int security_ismaclabel(const char *name);
442 int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
443 int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
444 void security_release_secctx(char *secdata, u32 seclen);
445 void security_inode_invalidate_secctx(struct inode *inode);
446 int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen);
447 int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen);
448 int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen);
449 int security_locked_down(enum lockdown_reason what);
450 #else /* CONFIG_SECURITY */
451
452 static inline int call_blocking_lsm_notifier(enum lsm_event event, void *data)
453 {
454         return 0;
455 }
456
457 static inline int register_blocking_lsm_notifier(struct notifier_block *nb)
458 {
459         return 0;
460 }
461
462 static inline  int unregister_blocking_lsm_notifier(struct notifier_block *nb)
463 {
464         return 0;
465 }
466
467 static inline void security_free_mnt_opts(void **mnt_opts)
468 {
469 }
470
471 /*
472  * This is the default capabilities functionality.  Most of these functions
473  * are just stubbed out, but a few must call the proper capable code.
474  */
475
476 static inline int security_init(void)
477 {
478         return 0;
479 }
480
481 static inline int early_security_init(void)
482 {
483         return 0;
484 }
485
486 static inline int security_binder_set_context_mgr(struct task_struct *mgr)
487 {
488         return 0;
489 }
490
491 static inline int security_binder_transaction(struct task_struct *from,
492                                               struct task_struct *to)
493 {
494         return 0;
495 }
496
497 static inline int security_binder_transfer_binder(struct task_struct *from,
498                                                   struct task_struct *to)
499 {
500         return 0;
501 }
502
503 static inline int security_binder_transfer_file(struct task_struct *from,
504                                                 struct task_struct *to,
505                                                 struct file *file)
506 {
507         return 0;
508 }
509
510 static inline int security_ptrace_access_check(struct task_struct *child,
511                                              unsigned int mode)
512 {
513         return cap_ptrace_access_check(child, mode);
514 }
515
516 static inline int security_ptrace_traceme(struct task_struct *parent)
517 {
518         return cap_ptrace_traceme(parent);
519 }
520
521 static inline int security_capget(struct task_struct *target,
522                                    kernel_cap_t *effective,
523                                    kernel_cap_t *inheritable,
524                                    kernel_cap_t *permitted)
525 {
526         return cap_capget(target, effective, inheritable, permitted);
527 }
528
529 static inline int security_capset(struct cred *new,
530                                    const struct cred *old,
531                                    const kernel_cap_t *effective,
532                                    const kernel_cap_t *inheritable,
533                                    const kernel_cap_t *permitted)
534 {
535         return cap_capset(new, old, effective, inheritable, permitted);
536 }
537
538 static inline int security_capable(const struct cred *cred,
539                                    struct user_namespace *ns,
540                                    int cap,
541                                    unsigned int opts)
542 {
543         return cap_capable(cred, ns, cap, opts);
544 }
545
546 static inline int security_quotactl(int cmds, int type, int id,
547                                      struct super_block *sb)
548 {
549         return 0;
550 }
551
552 static inline int security_quota_on(struct dentry *dentry)
553 {
554         return 0;
555 }
556
557 static inline int security_syslog(int type)
558 {
559         return 0;
560 }
561
562 static inline int security_settime64(const struct timespec64 *ts,
563                                      const struct timezone *tz)
564 {
565         return cap_settime(ts, tz);
566 }
567
568 static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
569 {
570         return __vm_enough_memory(mm, pages, cap_vm_enough_memory(mm, pages));
571 }
572
573 static inline int security_bprm_creds_for_exec(struct linux_binprm *bprm)
574 {
575         return 0;
576 }
577
578 static inline int security_bprm_repopulate_creds(struct linux_binprm *bprm)
579 {
580         return cap_bprm_repopulate_creds(bprm);
581 }
582
583 static inline int security_bprm_check(struct linux_binprm *bprm)
584 {
585         return 0;
586 }
587
588 static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
589 {
590 }
591
592 static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
593 {
594 }
595
596 static inline int security_fs_context_dup(struct fs_context *fc,
597                                           struct fs_context *src_fc)
598 {
599         return 0;
600 }
601 static inline int security_fs_context_parse_param(struct fs_context *fc,
602                                                   struct fs_parameter *param)
603 {
604         return -ENOPARAM;
605 }
606
607 static inline int security_sb_alloc(struct super_block *sb)
608 {
609         return 0;
610 }
611
612 static inline void security_sb_free(struct super_block *sb)
613 { }
614
615 static inline int security_sb_eat_lsm_opts(char *options,
616                                            void **mnt_opts)
617 {
618         return 0;
619 }
620
621 static inline int security_sb_remount(struct super_block *sb,
622                                       void *mnt_opts)
623 {
624         return 0;
625 }
626
627 static inline int security_sb_kern_mount(struct super_block *sb)
628 {
629         return 0;
630 }
631
632 static inline int security_sb_show_options(struct seq_file *m,
633                                            struct super_block *sb)
634 {
635         return 0;
636 }
637
638 static inline int security_sb_statfs(struct dentry *dentry)
639 {
640         return 0;
641 }
642
643 static inline int security_sb_mount(const char *dev_name, const struct path *path,
644                                     const char *type, unsigned long flags,
645                                     void *data)
646 {
647         return 0;
648 }
649
650 static inline int security_sb_umount(struct vfsmount *mnt, int flags)
651 {
652         return 0;
653 }
654
655 static inline int security_sb_pivotroot(const struct path *old_path,
656                                         const struct path *new_path)
657 {
658         return 0;
659 }
660
661 static inline int security_sb_set_mnt_opts(struct super_block *sb,
662                                            void *mnt_opts,
663                                            unsigned long kern_flags,
664                                            unsigned long *set_kern_flags)
665 {
666         return 0;
667 }
668
669 static inline int security_sb_clone_mnt_opts(const struct super_block *oldsb,
670                                               struct super_block *newsb,
671                                               unsigned long kern_flags,
672                                               unsigned long *set_kern_flags)
673 {
674         return 0;
675 }
676
677 static inline int security_add_mnt_opt(const char *option, const char *val,
678                                         int len, void **mnt_opts)
679 {
680         return 0;
681 }
682
683 static inline int security_move_mount(const struct path *from_path,
684                                       const struct path *to_path)
685 {
686         return 0;
687 }
688
689 static inline int security_path_notify(const struct path *path, u64 mask,
690                                 unsigned int obj_type)
691 {
692         return 0;
693 }
694
695 static inline int security_inode_alloc(struct inode *inode)
696 {
697         return 0;
698 }
699
700 static inline void security_inode_free(struct inode *inode)
701 { }
702
703 static inline int security_dentry_init_security(struct dentry *dentry,
704                                                  int mode,
705                                                  const struct qstr *name,
706                                                  void **ctx,
707                                                  u32 *ctxlen)
708 {
709         return -EOPNOTSUPP;
710 }
711
712 static inline int security_dentry_create_files_as(struct dentry *dentry,
713                                                   int mode, struct qstr *name,
714                                                   const struct cred *old,
715                                                   struct cred *new)
716 {
717         return 0;
718 }
719
720
721 static inline int security_inode_init_security(struct inode *inode,
722                                                 struct inode *dir,
723                                                 const struct qstr *qstr,
724                                                 const initxattrs xattrs,
725                                                 void *fs_data)
726 {
727         return 0;
728 }
729
730 static inline int security_old_inode_init_security(struct inode *inode,
731                                                    struct inode *dir,
732                                                    const struct qstr *qstr,
733                                                    const char **name,
734                                                    void **value, size_t *len)
735 {
736         return -EOPNOTSUPP;
737 }
738
739 static inline int security_inode_create(struct inode *dir,
740                                          struct dentry *dentry,
741                                          umode_t mode)
742 {
743         return 0;
744 }
745
746 static inline int security_inode_link(struct dentry *old_dentry,
747                                        struct inode *dir,
748                                        struct dentry *new_dentry)
749 {
750         return 0;
751 }
752
753 static inline int security_inode_unlink(struct inode *dir,
754                                          struct dentry *dentry)
755 {
756         return 0;
757 }
758
759 static inline int security_inode_symlink(struct inode *dir,
760                                           struct dentry *dentry,
761                                           const char *old_name)
762 {
763         return 0;
764 }
765
766 static inline int security_inode_mkdir(struct inode *dir,
767                                         struct dentry *dentry,
768                                         int mode)
769 {
770         return 0;
771 }
772
773 static inline int security_inode_rmdir(struct inode *dir,
774                                         struct dentry *dentry)
775 {
776         return 0;
777 }
778
779 static inline int security_inode_mknod(struct inode *dir,
780                                         struct dentry *dentry,
781                                         int mode, dev_t dev)
782 {
783         return 0;
784 }
785
786 static inline int security_inode_rename(struct inode *old_dir,
787                                          struct dentry *old_dentry,
788                                          struct inode *new_dir,
789                                          struct dentry *new_dentry,
790                                          unsigned int flags)
791 {
792         return 0;
793 }
794
795 static inline int security_inode_readlink(struct dentry *dentry)
796 {
797         return 0;
798 }
799
800 static inline int security_inode_follow_link(struct dentry *dentry,
801                                              struct inode *inode,
802                                              bool rcu)
803 {
804         return 0;
805 }
806
807 static inline int security_inode_permission(struct inode *inode, int mask)
808 {
809         return 0;
810 }
811
812 static inline int security_inode_setattr(struct dentry *dentry,
813                                           struct iattr *attr)
814 {
815         return 0;
816 }
817
818 static inline int security_inode_getattr(const struct path *path)
819 {
820         return 0;
821 }
822
823 static inline int security_inode_setxattr(struct dentry *dentry,
824                 const char *name, const void *value, size_t size, int flags)
825 {
826         return cap_inode_setxattr(dentry, name, value, size, flags);
827 }
828
829 static inline void security_inode_post_setxattr(struct dentry *dentry,
830                 const char *name, const void *value, size_t size, int flags)
831 { }
832
833 static inline int security_inode_getxattr(struct dentry *dentry,
834                         const char *name)
835 {
836         return 0;
837 }
838
839 static inline int security_inode_listxattr(struct dentry *dentry)
840 {
841         return 0;
842 }
843
844 static inline int security_inode_removexattr(struct dentry *dentry,
845                         const char *name)
846 {
847         return cap_inode_removexattr(dentry, name);
848 }
849
850 static inline int security_inode_need_killpriv(struct dentry *dentry)
851 {
852         return cap_inode_need_killpriv(dentry);
853 }
854
855 static inline int security_inode_killpriv(struct dentry *dentry)
856 {
857         return cap_inode_killpriv(dentry);
858 }
859
860 static inline int security_inode_getsecurity(struct inode *inode, const char *name, void **buffer, bool alloc)
861 {
862         return -EOPNOTSUPP;
863 }
864
865 static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
866 {
867         return -EOPNOTSUPP;
868 }
869
870 static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
871 {
872         return 0;
873 }
874
875 static inline void security_inode_getsecid(struct inode *inode, u32 *secid)
876 {
877         *secid = 0;
878 }
879
880 static inline int security_inode_copy_up(struct dentry *src, struct cred **new)
881 {
882         return 0;
883 }
884
885 static inline int security_kernfs_init_security(struct kernfs_node *kn_dir,
886                                                 struct kernfs_node *kn)
887 {
888         return 0;
889 }
890
891 static inline int security_inode_copy_up_xattr(const char *name)
892 {
893         return -EOPNOTSUPP;
894 }
895
896 static inline int security_file_permission(struct file *file, int mask)
897 {
898         return 0;
899 }
900
901 static inline int security_file_alloc(struct file *file)
902 {
903         return 0;
904 }
905
906 static inline void security_file_free(struct file *file)
907 { }
908
909 static inline int security_file_ioctl(struct file *file, unsigned int cmd,
910                                       unsigned long arg)
911 {
912         return 0;
913 }
914
915 static inline int security_mmap_file(struct file *file, unsigned long prot,
916                                      unsigned long flags)
917 {
918         return 0;
919 }
920
921 static inline int security_mmap_addr(unsigned long addr)
922 {
923         return cap_mmap_addr(addr);
924 }
925
926 static inline int security_file_mprotect(struct vm_area_struct *vma,
927                                          unsigned long reqprot,
928                                          unsigned long prot)
929 {
930         return 0;
931 }
932
933 static inline int security_file_lock(struct file *file, unsigned int cmd)
934 {
935         return 0;
936 }
937
938 static inline int security_file_fcntl(struct file *file, unsigned int cmd,
939                                       unsigned long arg)
940 {
941         return 0;
942 }
943
944 static inline void security_file_set_fowner(struct file *file)
945 {
946         return;
947 }
948
949 static inline int security_file_send_sigiotask(struct task_struct *tsk,
950                                                struct fown_struct *fown,
951                                                int sig)
952 {
953         return 0;
954 }
955
956 static inline int security_file_receive(struct file *file)
957 {
958         return 0;
959 }
960
961 static inline int security_file_open(struct file *file)
962 {
963         return 0;
964 }
965
966 static inline int security_task_alloc(struct task_struct *task,
967                                       unsigned long clone_flags)
968 {
969         return 0;
970 }
971
972 static inline void security_task_free(struct task_struct *task)
973 { }
974
975 static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
976 {
977         return 0;
978 }
979
980 static inline void security_cred_free(struct cred *cred)
981 { }
982
983 static inline int security_prepare_creds(struct cred *new,
984                                          const struct cred *old,
985                                          gfp_t gfp)
986 {
987         return 0;
988 }
989
990 static inline void security_transfer_creds(struct cred *new,
991                                            const struct cred *old)
992 {
993 }
994
995 static inline int security_kernel_act_as(struct cred *cred, u32 secid)
996 {
997         return 0;
998 }
999
1000 static inline int security_kernel_create_files_as(struct cred *cred,
1001                                                   struct inode *inode)
1002 {
1003         return 0;
1004 }
1005
1006 static inline int security_kernel_module_request(char *kmod_name)
1007 {
1008         return 0;
1009 }
1010
1011 static inline int security_kernel_load_data(enum kernel_load_data_id id)
1012 {
1013         return 0;
1014 }
1015
1016 static inline int security_kernel_read_file(struct file *file,
1017                                             enum kernel_read_file_id id)
1018 {
1019         return 0;
1020 }
1021
1022 static inline int security_kernel_post_read_file(struct file *file,
1023                                                  char *buf, loff_t size,
1024                                                  enum kernel_read_file_id id)
1025 {
1026         return 0;
1027 }
1028
1029 static inline int security_task_fix_setuid(struct cred *new,
1030                                            const struct cred *old,
1031                                            int flags)
1032 {
1033         return cap_task_fix_setuid(new, old, flags);
1034 }
1035
1036 static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
1037 {
1038         return 0;
1039 }
1040
1041 static inline int security_task_getpgid(struct task_struct *p)
1042 {
1043         return 0;
1044 }
1045
1046 static inline int security_task_getsid(struct task_struct *p)
1047 {
1048         return 0;
1049 }
1050
1051 static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
1052 {
1053         *secid = 0;
1054 }
1055
1056 static inline int security_task_setnice(struct task_struct *p, int nice)
1057 {
1058         return cap_task_setnice(p, nice);
1059 }
1060
1061 static inline int security_task_setioprio(struct task_struct *p, int ioprio)
1062 {
1063         return cap_task_setioprio(p, ioprio);
1064 }
1065
1066 static inline int security_task_getioprio(struct task_struct *p)
1067 {
1068         return 0;
1069 }
1070
1071 static inline int security_task_prlimit(const struct cred *cred,
1072                                         const struct cred *tcred,
1073                                         unsigned int flags)
1074 {
1075         return 0;
1076 }
1077
1078 static inline int security_task_setrlimit(struct task_struct *p,
1079                                           unsigned int resource,
1080                                           struct rlimit *new_rlim)
1081 {
1082         return 0;
1083 }
1084
1085 static inline int security_task_setscheduler(struct task_struct *p)
1086 {
1087         return cap_task_setscheduler(p);
1088 }
1089
1090 static inline int security_task_getscheduler(struct task_struct *p)
1091 {
1092         return 0;
1093 }
1094
1095 static inline int security_task_movememory(struct task_struct *p)
1096 {
1097         return 0;
1098 }
1099
1100 static inline int security_task_kill(struct task_struct *p,
1101                                      struct kernel_siginfo *info, int sig,
1102                                      const struct cred *cred)
1103 {
1104         return 0;
1105 }
1106
1107 static inline int security_task_prctl(int option, unsigned long arg2,
1108                                       unsigned long arg3,
1109                                       unsigned long arg4,
1110                                       unsigned long arg5)
1111 {
1112         return cap_task_prctl(option, arg2, arg3, arg4, arg5);
1113 }
1114
1115 static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
1116 { }
1117
1118 static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
1119                                           short flag)
1120 {
1121         return 0;
1122 }
1123
1124 static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
1125 {
1126         *secid = 0;
1127 }
1128
1129 static inline int security_msg_msg_alloc(struct msg_msg *msg)
1130 {
1131         return 0;
1132 }
1133
1134 static inline void security_msg_msg_free(struct msg_msg *msg)
1135 { }
1136
1137 static inline int security_msg_queue_alloc(struct kern_ipc_perm *msq)
1138 {
1139         return 0;
1140 }
1141
1142 static inline void security_msg_queue_free(struct kern_ipc_perm *msq)
1143 { }
1144
1145 static inline int security_msg_queue_associate(struct kern_ipc_perm *msq,
1146                                                int msqflg)
1147 {
1148         return 0;
1149 }
1150
1151 static inline int security_msg_queue_msgctl(struct kern_ipc_perm *msq, int cmd)
1152 {
1153         return 0;
1154 }
1155
1156 static inline int security_msg_queue_msgsnd(struct kern_ipc_perm *msq,
1157                                             struct msg_msg *msg, int msqflg)
1158 {
1159         return 0;
1160 }
1161
1162 static inline int security_msg_queue_msgrcv(struct kern_ipc_perm *msq,
1163                                             struct msg_msg *msg,
1164                                             struct task_struct *target,
1165                                             long type, int mode)
1166 {
1167         return 0;
1168 }
1169
1170 static inline int security_shm_alloc(struct kern_ipc_perm *shp)
1171 {
1172         return 0;
1173 }
1174
1175 static inline void security_shm_free(struct kern_ipc_perm *shp)
1176 { }
1177
1178 static inline int security_shm_associate(struct kern_ipc_perm *shp,
1179                                          int shmflg)
1180 {
1181         return 0;
1182 }
1183
1184 static inline int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd)
1185 {
1186         return 0;
1187 }
1188
1189 static inline int security_shm_shmat(struct kern_ipc_perm *shp,
1190                                      char __user *shmaddr, int shmflg)
1191 {
1192         return 0;
1193 }
1194
1195 static inline int security_sem_alloc(struct kern_ipc_perm *sma)
1196 {
1197         return 0;
1198 }
1199
1200 static inline void security_sem_free(struct kern_ipc_perm *sma)
1201 { }
1202
1203 static inline int security_sem_associate(struct kern_ipc_perm *sma, int semflg)
1204 {
1205         return 0;
1206 }
1207
1208 static inline int security_sem_semctl(struct kern_ipc_perm *sma, int cmd)
1209 {
1210         return 0;
1211 }
1212
1213 static inline int security_sem_semop(struct kern_ipc_perm *sma,
1214                                      struct sembuf *sops, unsigned nsops,
1215                                      int alter)
1216 {
1217         return 0;
1218 }
1219
1220 static inline void security_d_instantiate(struct dentry *dentry,
1221                                           struct inode *inode)
1222 { }
1223
1224 static inline int security_getprocattr(struct task_struct *p, const char *lsm,
1225                                        char *name, char **value)
1226 {
1227         return -EINVAL;
1228 }
1229
1230 static inline int security_setprocattr(const char *lsm, char *name,
1231                                        void *value, size_t size)
1232 {
1233         return -EINVAL;
1234 }
1235
1236 static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
1237 {
1238         return 0;
1239 }
1240
1241 static inline int security_ismaclabel(const char *name)
1242 {
1243         return 0;
1244 }
1245
1246 static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
1247 {
1248         return -EOPNOTSUPP;
1249 }
1250
1251 static inline int security_secctx_to_secid(const char *secdata,
1252                                            u32 seclen,
1253                                            u32 *secid)
1254 {
1255         return -EOPNOTSUPP;
1256 }
1257
1258 static inline void security_release_secctx(char *secdata, u32 seclen)
1259 {
1260 }
1261
1262 static inline void security_inode_invalidate_secctx(struct inode *inode)
1263 {
1264 }
1265
1266 static inline int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
1267 {
1268         return -EOPNOTSUPP;
1269 }
1270 static inline int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
1271 {
1272         return -EOPNOTSUPP;
1273 }
1274 static inline int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
1275 {
1276         return -EOPNOTSUPP;
1277 }
1278 static inline int security_locked_down(enum lockdown_reason what)
1279 {
1280         return 0;
1281 }
1282 #endif  /* CONFIG_SECURITY */
1283
1284 #ifdef CONFIG_SECURITY_NETWORK
1285
1286 int security_unix_stream_connect(struct sock *sock, struct sock *other, struct sock *newsk);
1287 int security_unix_may_send(struct socket *sock,  struct socket *other);
1288 int security_socket_create(int family, int type, int protocol, int kern);
1289 int security_socket_post_create(struct socket *sock, int family,
1290                                 int type, int protocol, int kern);
1291 int security_socket_socketpair(struct socket *socka, struct socket *sockb);
1292 int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
1293 int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
1294 int security_socket_listen(struct socket *sock, int backlog);
1295 int security_socket_accept(struct socket *sock, struct socket *newsock);
1296 int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
1297 int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
1298                             int size, int flags);
1299 int security_socket_getsockname(struct socket *sock);
1300 int security_socket_getpeername(struct socket *sock);
1301 int security_socket_getsockopt(struct socket *sock, int level, int optname);
1302 int security_socket_setsockopt(struct socket *sock, int level, int optname);
1303 int security_socket_shutdown(struct socket *sock, int how);
1304 int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
1305 int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
1306                                       int __user *optlen, unsigned len);
1307 int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
1308 int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
1309 void security_sk_free(struct sock *sk);
1310 void security_sk_clone(const struct sock *sk, struct sock *newsk);
1311 void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
1312 void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
1313 void security_sock_graft(struct sock*sk, struct socket *parent);
1314 int security_inet_conn_request(struct sock *sk,
1315                         struct sk_buff *skb, struct request_sock *req);
1316 void security_inet_csk_clone(struct sock *newsk,
1317                         const struct request_sock *req);
1318 void security_inet_conn_established(struct sock *sk,
1319                         struct sk_buff *skb);
1320 int security_secmark_relabel_packet(u32 secid);
1321 void security_secmark_refcount_inc(void);
1322 void security_secmark_refcount_dec(void);
1323 int security_tun_dev_alloc_security(void **security);
1324 void security_tun_dev_free_security(void *security);
1325 int security_tun_dev_create(void);
1326 int security_tun_dev_attach_queue(void *security);
1327 int security_tun_dev_attach(struct sock *sk, void *security);
1328 int security_tun_dev_open(void *security);
1329 int security_sctp_assoc_request(struct sctp_endpoint *ep, struct sk_buff *skb);
1330 int security_sctp_bind_connect(struct sock *sk, int optname,
1331                                struct sockaddr *address, int addrlen);
1332 void security_sctp_sk_clone(struct sctp_endpoint *ep, struct sock *sk,
1333                             struct sock *newsk);
1334
1335 #else   /* CONFIG_SECURITY_NETWORK */
1336 static inline int security_unix_stream_connect(struct sock *sock,
1337                                                struct sock *other,
1338                                                struct sock *newsk)
1339 {
1340         return 0;
1341 }
1342
1343 static inline int security_unix_may_send(struct socket *sock,
1344                                          struct socket *other)
1345 {
1346         return 0;
1347 }
1348
1349 static inline int security_socket_create(int family, int type,
1350                                          int protocol, int kern)
1351 {
1352         return 0;
1353 }
1354
1355 static inline int security_socket_post_create(struct socket *sock,
1356                                               int family,
1357                                               int type,
1358                                               int protocol, int kern)
1359 {
1360         return 0;
1361 }
1362
1363 static inline int security_socket_socketpair(struct socket *socka,
1364                                              struct socket *sockb)
1365 {
1366         return 0;
1367 }
1368
1369 static inline int security_socket_bind(struct socket *sock,
1370                                        struct sockaddr *address,
1371                                        int addrlen)
1372 {
1373         return 0;
1374 }
1375
1376 static inline int security_socket_connect(struct socket *sock,
1377                                           struct sockaddr *address,
1378                                           int addrlen)
1379 {
1380         return 0;
1381 }
1382
1383 static inline int security_socket_listen(struct socket *sock, int backlog)
1384 {
1385         return 0;
1386 }
1387
1388 static inline int security_socket_accept(struct socket *sock,
1389                                          struct socket *newsock)
1390 {
1391         return 0;
1392 }
1393
1394 static inline int security_socket_sendmsg(struct socket *sock,
1395                                           struct msghdr *msg, int size)
1396 {
1397         return 0;
1398 }
1399
1400 static inline int security_socket_recvmsg(struct socket *sock,
1401                                           struct msghdr *msg, int size,
1402                                           int flags)
1403 {
1404         return 0;
1405 }
1406
1407 static inline int security_socket_getsockname(struct socket *sock)
1408 {
1409         return 0;
1410 }
1411
1412 static inline int security_socket_getpeername(struct socket *sock)
1413 {
1414         return 0;
1415 }
1416
1417 static inline int security_socket_getsockopt(struct socket *sock,
1418                                              int level, int optname)
1419 {
1420         return 0;
1421 }
1422
1423 static inline int security_socket_setsockopt(struct socket *sock,
1424                                              int level, int optname)
1425 {
1426         return 0;
1427 }
1428
1429 static inline int security_socket_shutdown(struct socket *sock, int how)
1430 {
1431         return 0;
1432 }
1433 static inline int security_sock_rcv_skb(struct sock *sk,
1434                                         struct sk_buff *skb)
1435 {
1436         return 0;
1437 }
1438
1439 static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
1440                                                     int __user *optlen, unsigned len)
1441 {
1442         return -ENOPROTOOPT;
1443 }
1444
1445 static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
1446 {
1447         return -ENOPROTOOPT;
1448 }
1449
1450 static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
1451 {
1452         return 0;
1453 }
1454
1455 static inline void security_sk_free(struct sock *sk)
1456 {
1457 }
1458
1459 static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
1460 {
1461 }
1462
1463 static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
1464 {
1465 }
1466
1467 static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
1468 {
1469 }
1470
1471 static inline void security_sock_graft(struct sock *sk, struct socket *parent)
1472 {
1473 }
1474
1475 static inline int security_inet_conn_request(struct sock *sk,
1476                         struct sk_buff *skb, struct request_sock *req)
1477 {
1478         return 0;
1479 }
1480
1481 static inline void security_inet_csk_clone(struct sock *newsk,
1482                         const struct request_sock *req)
1483 {
1484 }
1485
1486 static inline void security_inet_conn_established(struct sock *sk,
1487                         struct sk_buff *skb)
1488 {
1489 }
1490
1491 static inline int security_secmark_relabel_packet(u32 secid)
1492 {
1493         return 0;
1494 }
1495
1496 static inline void security_secmark_refcount_inc(void)
1497 {
1498 }
1499
1500 static inline void security_secmark_refcount_dec(void)
1501 {
1502 }
1503
1504 static inline int security_tun_dev_alloc_security(void **security)
1505 {
1506         return 0;
1507 }
1508
1509 static inline void security_tun_dev_free_security(void *security)
1510 {
1511 }
1512
1513 static inline int security_tun_dev_create(void)
1514 {
1515         return 0;
1516 }
1517
1518 static inline int security_tun_dev_attach_queue(void *security)
1519 {
1520         return 0;
1521 }
1522
1523 static inline int security_tun_dev_attach(struct sock *sk, void *security)
1524 {
1525         return 0;
1526 }
1527
1528 static inline int security_tun_dev_open(void *security)
1529 {
1530         return 0;
1531 }
1532
1533 static inline int security_sctp_assoc_request(struct sctp_endpoint *ep,
1534                                               struct sk_buff *skb)
1535 {
1536         return 0;
1537 }
1538
1539 static inline int security_sctp_bind_connect(struct sock *sk, int optname,
1540                                              struct sockaddr *address,
1541                                              int addrlen)
1542 {
1543         return 0;
1544 }
1545
1546 static inline void security_sctp_sk_clone(struct sctp_endpoint *ep,
1547                                           struct sock *sk,
1548                                           struct sock *newsk)
1549 {
1550 }
1551 #endif  /* CONFIG_SECURITY_NETWORK */
1552
1553 #ifdef CONFIG_SECURITY_INFINIBAND
1554 int security_ib_pkey_access(void *sec, u64 subnet_prefix, u16 pkey);
1555 int security_ib_endport_manage_subnet(void *sec, const char *name, u8 port_num);
1556 int security_ib_alloc_security(void **sec);
1557 void security_ib_free_security(void *sec);
1558 #else   /* CONFIG_SECURITY_INFINIBAND */
1559 static inline int security_ib_pkey_access(void *sec, u64 subnet_prefix, u16 pkey)
1560 {
1561         return 0;
1562 }
1563
1564 static inline int security_ib_endport_manage_subnet(void *sec, const char *dev_name, u8 port_num)
1565 {
1566         return 0;
1567 }
1568
1569 static inline int security_ib_alloc_security(void **sec)
1570 {
1571         return 0;
1572 }
1573
1574 static inline void security_ib_free_security(void *sec)
1575 {
1576 }
1577 #endif  /* CONFIG_SECURITY_INFINIBAND */
1578
1579 #ifdef CONFIG_SECURITY_NETWORK_XFRM
1580
1581 int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp,
1582                                struct xfrm_user_sec_ctx *sec_ctx, gfp_t gfp);
1583 int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
1584 void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
1585 int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
1586 int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
1587 int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
1588                                       struct xfrm_sec_ctx *polsec, u32 secid);
1589 int security_xfrm_state_delete(struct xfrm_state *x);
1590 void security_xfrm_state_free(struct xfrm_state *x);
1591 int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
1592 int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
1593                                        struct xfrm_policy *xp,
1594                                        const struct flowi *fl);
1595 int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
1596 void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
1597
1598 #else   /* CONFIG_SECURITY_NETWORK_XFRM */
1599
1600 static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp,
1601                                              struct xfrm_user_sec_ctx *sec_ctx,
1602                                              gfp_t gfp)
1603 {
1604         return 0;
1605 }
1606
1607 static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
1608 {
1609         return 0;
1610 }
1611
1612 static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
1613 {
1614 }
1615
1616 static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
1617 {
1618         return 0;
1619 }
1620
1621 static inline int security_xfrm_state_alloc(struct xfrm_state *x,
1622                                         struct xfrm_user_sec_ctx *sec_ctx)
1623 {
1624         return 0;
1625 }
1626
1627 static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
1628                                         struct xfrm_sec_ctx *polsec, u32 secid)
1629 {
1630         return 0;
1631 }
1632
1633 static inline void security_xfrm_state_free(struct xfrm_state *x)
1634 {
1635 }
1636
1637 static inline int security_xfrm_state_delete(struct xfrm_state *x)
1638 {
1639         return 0;
1640 }
1641
1642 static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
1643 {
1644         return 0;
1645 }
1646
1647 static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
1648                         struct xfrm_policy *xp, const struct flowi *fl)
1649 {
1650         return 1;
1651 }
1652
1653 static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
1654 {
1655         return 0;
1656 }
1657
1658 static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
1659 {
1660 }
1661
1662 #endif  /* CONFIG_SECURITY_NETWORK_XFRM */
1663
1664 #ifdef CONFIG_SECURITY_PATH
1665 int security_path_unlink(const struct path *dir, struct dentry *dentry);
1666 int security_path_mkdir(const struct path *dir, struct dentry *dentry, umode_t mode);
1667 int security_path_rmdir(const struct path *dir, struct dentry *dentry);
1668 int security_path_mknod(const struct path *dir, struct dentry *dentry, umode_t mode,
1669                         unsigned int dev);
1670 int security_path_truncate(const struct path *path);
1671 int security_path_symlink(const struct path *dir, struct dentry *dentry,
1672                           const char *old_name);
1673 int security_path_link(struct dentry *old_dentry, const struct path *new_dir,
1674                        struct dentry *new_dentry);
1675 int security_path_rename(const struct path *old_dir, struct dentry *old_dentry,
1676                          const struct path *new_dir, struct dentry *new_dentry,
1677                          unsigned int flags);
1678 int security_path_chmod(const struct path *path, umode_t mode);
1679 int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid);
1680 int security_path_chroot(const struct path *path);
1681 #else   /* CONFIG_SECURITY_PATH */
1682 static inline int security_path_unlink(const struct path *dir, struct dentry *dentry)
1683 {
1684         return 0;
1685 }
1686
1687 static inline int security_path_mkdir(const struct path *dir, struct dentry *dentry,
1688                                       umode_t mode)
1689 {
1690         return 0;
1691 }
1692
1693 static inline int security_path_rmdir(const struct path *dir, struct dentry *dentry)
1694 {
1695         return 0;
1696 }
1697
1698 static inline int security_path_mknod(const struct path *dir, struct dentry *dentry,
1699                                       umode_t mode, unsigned int dev)
1700 {
1701         return 0;
1702 }
1703
1704 static inline int security_path_truncate(const struct path *path)
1705 {
1706         return 0;
1707 }
1708
1709 static inline int security_path_symlink(const struct path *dir, struct dentry *dentry,
1710                                         const char *old_name)
1711 {
1712         return 0;
1713 }
1714
1715 static inline int security_path_link(struct dentry *old_dentry,
1716                                      const struct path *new_dir,
1717                                      struct dentry *new_dentry)
1718 {
1719         return 0;
1720 }
1721
1722 static inline int security_path_rename(const struct path *old_dir,
1723                                        struct dentry *old_dentry,
1724                                        const struct path *new_dir,
1725                                        struct dentry *new_dentry,
1726                                        unsigned int flags)
1727 {
1728         return 0;
1729 }
1730
1731 static inline int security_path_chmod(const struct path *path, umode_t mode)
1732 {
1733         return 0;
1734 }
1735
1736 static inline int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
1737 {
1738         return 0;
1739 }
1740
1741 static inline int security_path_chroot(const struct path *path)
1742 {
1743         return 0;
1744 }
1745 #endif  /* CONFIG_SECURITY_PATH */
1746
1747 #ifdef CONFIG_KEYS
1748 #ifdef CONFIG_SECURITY
1749
1750 int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
1751 void security_key_free(struct key *key);
1752 int security_key_permission(key_ref_t key_ref,
1753                             const struct cred *cred, unsigned perm);
1754 int security_key_getsecurity(struct key *key, char **_buffer);
1755
1756 #else
1757
1758 static inline int security_key_alloc(struct key *key,
1759                                      const struct cred *cred,
1760                                      unsigned long flags)
1761 {
1762         return 0;
1763 }
1764
1765 static inline void security_key_free(struct key *key)
1766 {
1767 }
1768
1769 static inline int security_key_permission(key_ref_t key_ref,
1770                                           const struct cred *cred,
1771                                           unsigned perm)
1772 {
1773         return 0;
1774 }
1775
1776 static inline int security_key_getsecurity(struct key *key, char **_buffer)
1777 {
1778         *_buffer = NULL;
1779         return 0;
1780 }
1781
1782 #endif
1783 #endif /* CONFIG_KEYS */
1784
1785 #ifdef CONFIG_AUDIT
1786 #ifdef CONFIG_SECURITY
1787 int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
1788 int security_audit_rule_known(struct audit_krule *krule);
1789 int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule);
1790 void security_audit_rule_free(void *lsmrule);
1791
1792 #else
1793
1794 static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
1795                                            void **lsmrule)
1796 {
1797         return 0;
1798 }
1799
1800 static inline int security_audit_rule_known(struct audit_krule *krule)
1801 {
1802         return 0;
1803 }
1804
1805 static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
1806                                             void *lsmrule)
1807 {
1808         return 0;
1809 }
1810
1811 static inline void security_audit_rule_free(void *lsmrule)
1812 { }
1813
1814 #endif /* CONFIG_SECURITY */
1815 #endif /* CONFIG_AUDIT */
1816
1817 #ifdef CONFIG_SECURITYFS
1818
1819 extern struct dentry *securityfs_create_file(const char *name, umode_t mode,
1820                                              struct dentry *parent, void *data,
1821                                              const struct file_operations *fops);
1822 extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
1823 struct dentry *securityfs_create_symlink(const char *name,
1824                                          struct dentry *parent,
1825                                          const char *target,
1826                                          const struct inode_operations *iops);
1827 extern void securityfs_remove(struct dentry *dentry);
1828
1829 #else /* CONFIG_SECURITYFS */
1830
1831 static inline struct dentry *securityfs_create_dir(const char *name,
1832                                                    struct dentry *parent)
1833 {
1834         return ERR_PTR(-ENODEV);
1835 }
1836
1837 static inline struct dentry *securityfs_create_file(const char *name,
1838                                                     umode_t mode,
1839                                                     struct dentry *parent,
1840                                                     void *data,
1841                                                     const struct file_operations *fops)
1842 {
1843         return ERR_PTR(-ENODEV);
1844 }
1845
1846 static inline struct dentry *securityfs_create_symlink(const char *name,
1847                                         struct dentry *parent,
1848                                         const char *target,
1849                                         const struct inode_operations *iops)
1850 {
1851         return ERR_PTR(-ENODEV);
1852 }
1853
1854 static inline void securityfs_remove(struct dentry *dentry)
1855 {}
1856
1857 #endif
1858
1859 #ifdef CONFIG_BPF_SYSCALL
1860 union bpf_attr;
1861 struct bpf_map;
1862 struct bpf_prog;
1863 struct bpf_prog_aux;
1864 #ifdef CONFIG_SECURITY
1865 extern int security_bpf(int cmd, union bpf_attr *attr, unsigned int size);
1866 extern int security_bpf_map(struct bpf_map *map, fmode_t fmode);
1867 extern int security_bpf_prog(struct bpf_prog *prog);
1868 extern int security_bpf_map_alloc(struct bpf_map *map);
1869 extern void security_bpf_map_free(struct bpf_map *map);
1870 extern int security_bpf_prog_alloc(struct bpf_prog_aux *aux);
1871 extern void security_bpf_prog_free(struct bpf_prog_aux *aux);
1872 #else
1873 static inline int security_bpf(int cmd, union bpf_attr *attr,
1874                                              unsigned int size)
1875 {
1876         return 0;
1877 }
1878
1879 static inline int security_bpf_map(struct bpf_map *map, fmode_t fmode)
1880 {
1881         return 0;
1882 }
1883
1884 static inline int security_bpf_prog(struct bpf_prog *prog)
1885 {
1886         return 0;
1887 }
1888
1889 static inline int security_bpf_map_alloc(struct bpf_map *map)
1890 {
1891         return 0;
1892 }
1893
1894 static inline void security_bpf_map_free(struct bpf_map *map)
1895 { }
1896
1897 static inline int security_bpf_prog_alloc(struct bpf_prog_aux *aux)
1898 {
1899         return 0;
1900 }
1901
1902 static inline void security_bpf_prog_free(struct bpf_prog_aux *aux)
1903 { }
1904 #endif /* CONFIG_SECURITY */
1905 #endif /* CONFIG_BPF_SYSCALL */
1906
1907 #ifdef CONFIG_PERF_EVENTS
1908 struct perf_event_attr;
1909 struct perf_event;
1910
1911 #ifdef CONFIG_SECURITY
1912 extern int security_perf_event_open(struct perf_event_attr *attr, int type);
1913 extern int security_perf_event_alloc(struct perf_event *event);
1914 extern void security_perf_event_free(struct perf_event *event);
1915 extern int security_perf_event_read(struct perf_event *event);
1916 extern int security_perf_event_write(struct perf_event *event);
1917 #else
1918 static inline int security_perf_event_open(struct perf_event_attr *attr,
1919                                            int type)
1920 {
1921         return 0;
1922 }
1923
1924 static inline int security_perf_event_alloc(struct perf_event *event)
1925 {
1926         return 0;
1927 }
1928
1929 static inline void security_perf_event_free(struct perf_event *event)
1930 {
1931 }
1932
1933 static inline int security_perf_event_read(struct perf_event *event)
1934 {
1935         return 0;
1936 }
1937
1938 static inline int security_perf_event_write(struct perf_event *event)
1939 {
1940         return 0;
1941 }
1942 #endif /* CONFIG_SECURITY */
1943 #endif /* CONFIG_PERF_EVENTS */
1944
1945 #endif /* ! __LINUX_SECURITY_H */