security.h 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  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. #ifndef __LINUX_SECURITY_H
  23. #define __LINUX_SECURITY_H
  24. #include <linux/key.h>
  25. #include <linux/capability.h>
  26. #include <linux/fs.h>
  27. #include <linux/slab.h>
  28. #include <linux/err.h>
  29. #include <linux/string.h>
  30. #include <linux/mm.h>
  31. #include <linux/fs.h>
  32. struct linux_binprm;
  33. struct cred;
  34. struct rlimit;
  35. struct siginfo;
  36. struct sembuf;
  37. struct kern_ipc_perm;
  38. struct audit_context;
  39. struct super_block;
  40. struct inode;
  41. struct dentry;
  42. struct file;
  43. struct vfsmount;
  44. struct path;
  45. struct qstr;
  46. struct iattr;
  47. struct fown_struct;
  48. struct file_operations;
  49. struct msg_msg;
  50. struct xattr;
  51. struct xfrm_sec_ctx;
  52. struct mm_struct;
  53. /* If capable should audit the security request */
  54. #define SECURITY_CAP_NOAUDIT 0
  55. #define SECURITY_CAP_AUDIT 1
  56. /* LSM Agnostic defines for sb_set_mnt_opts */
  57. #define SECURITY_LSM_NATIVE_LABELS 1
  58. struct ctl_table;
  59. struct audit_krule;
  60. struct user_namespace;
  61. struct timezone;
  62. enum lsm_event {
  63. LSM_POLICY_CHANGE,
  64. };
  65. /* These functions are in security/commoncap.c */
  66. extern int cap_capable(const struct cred *cred, struct user_namespace *ns,
  67. int cap, int audit);
  68. extern int cap_settime(const struct timespec64 *ts, const struct timezone *tz);
  69. extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
  70. extern int cap_ptrace_traceme(struct task_struct *parent);
  71. extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
  72. extern int cap_capset(struct cred *new, const struct cred *old,
  73. const kernel_cap_t *effective,
  74. const kernel_cap_t *inheritable,
  75. const kernel_cap_t *permitted);
  76. extern int cap_bprm_set_creds(struct linux_binprm *bprm);
  77. extern int cap_inode_setxattr(struct dentry *dentry, const char *name,
  78. const void *value, size_t size, int flags);
  79. extern int cap_inode_removexattr(struct dentry *dentry, const char *name);
  80. extern int cap_inode_need_killpriv(struct dentry *dentry);
  81. extern int cap_inode_killpriv(struct dentry *dentry);
  82. extern int cap_inode_getsecurity(struct inode *inode, const char *name,
  83. void **buffer, bool alloc);
  84. extern int cap_mmap_addr(unsigned long addr);
  85. extern int cap_mmap_file(struct file *file, unsigned long reqprot,
  86. unsigned long prot, unsigned long flags);
  87. extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags);
  88. extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
  89. unsigned long arg4, unsigned long arg5);
  90. extern int cap_task_setscheduler(struct task_struct *p);
  91. extern int cap_task_setioprio(struct task_struct *p, int ioprio);
  92. extern int cap_task_setnice(struct task_struct *p, int nice);
  93. extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
  94. struct msghdr;
  95. struct sk_buff;
  96. struct sock;
  97. struct sockaddr;
  98. struct socket;
  99. struct flowi;
  100. struct dst_entry;
  101. struct xfrm_selector;
  102. struct xfrm_policy;
  103. struct xfrm_state;
  104. struct xfrm_user_sec_ctx;
  105. struct seq_file;
  106. struct sctp_endpoint;
  107. #ifdef CONFIG_MMU
  108. extern unsigned long mmap_min_addr;
  109. extern unsigned long dac_mmap_min_addr;
  110. #else
  111. #define mmap_min_addr 0UL
  112. #define dac_mmap_min_addr 0UL
  113. #endif
  114. /*
  115. * Values used in the task_security_ops calls
  116. */
  117. /* setuid or setgid, id0 == uid or gid */
  118. #define LSM_SETID_ID 1
  119. /* setreuid or setregid, id0 == real, id1 == eff */
  120. #define LSM_SETID_RE 2
  121. /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
  122. #define LSM_SETID_RES 4
  123. /* setfsuid or setfsgid, id0 == fsuid or fsgid */
  124. #define LSM_SETID_FS 8
  125. /* Flags for security_task_prlimit(). */
  126. #define LSM_PRLIMIT_READ 1
  127. #define LSM_PRLIMIT_WRITE 2
  128. /* forward declares to avoid warnings */
  129. struct sched_param;
  130. struct request_sock;
  131. /* bprm->unsafe reasons */
  132. #define LSM_UNSAFE_SHARE 1
  133. #define LSM_UNSAFE_PTRACE 2
  134. #define LSM_UNSAFE_NO_NEW_PRIVS 4
  135. #ifdef CONFIG_MMU
  136. extern int mmap_min_addr_handler(struct ctl_table *table, int write,
  137. void __user *buffer, size_t *lenp, loff_t *ppos);
  138. #endif
  139. /* security_inode_init_security callback function to write xattrs */
  140. typedef int (*initxattrs) (struct inode *inode,
  141. const struct xattr *xattr_array, void *fs_data);
  142. #ifdef CONFIG_SECURITY
  143. struct security_mnt_opts {
  144. char **mnt_opts;
  145. int *mnt_opts_flags;
  146. int num_mnt_opts;
  147. };
  148. int call_lsm_notifier(enum lsm_event event, void *data);
  149. int register_lsm_notifier(struct notifier_block *nb);
  150. int unregister_lsm_notifier(struct notifier_block *nb);
  151. static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
  152. {
  153. opts->mnt_opts = NULL;
  154. opts->mnt_opts_flags = NULL;
  155. opts->num_mnt_opts = 0;
  156. }
  157. static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
  158. {
  159. int i;
  160. if (opts->mnt_opts)
  161. for (i = 0; i < opts->num_mnt_opts; i++)
  162. kfree(opts->mnt_opts[i]);
  163. kfree(opts->mnt_opts);
  164. opts->mnt_opts = NULL;
  165. kfree(opts->mnt_opts_flags);
  166. opts->mnt_opts_flags = NULL;
  167. opts->num_mnt_opts = 0;
  168. }
  169. /* prototypes */
  170. extern int security_init(void);
  171. /* Security operations */
  172. int security_binder_set_context_mgr(struct task_struct *mgr);
  173. int security_binder_transaction(struct task_struct *from,
  174. struct task_struct *to);
  175. int security_binder_transfer_binder(struct task_struct *from,
  176. struct task_struct *to);
  177. int security_binder_transfer_file(struct task_struct *from,
  178. struct task_struct *to, struct file *file);
  179. int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
  180. int security_ptrace_traceme(struct task_struct *parent);
  181. int security_capget(struct task_struct *target,
  182. kernel_cap_t *effective,
  183. kernel_cap_t *inheritable,
  184. kernel_cap_t *permitted);
  185. int security_capset(struct cred *new, const struct cred *old,
  186. const kernel_cap_t *effective,
  187. const kernel_cap_t *inheritable,
  188. const kernel_cap_t *permitted);
  189. int security_capable(const struct cred *cred, struct user_namespace *ns,
  190. int cap);
  191. int security_capable_noaudit(const struct cred *cred, struct user_namespace *ns,
  192. int cap);
  193. int security_quotactl(int cmds, int type, int id, struct super_block *sb);
  194. int security_quota_on(struct dentry *dentry);
  195. int security_syslog(int type);
  196. int security_settime64(const struct timespec64 *ts, const struct timezone *tz);
  197. int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
  198. int security_bprm_set_creds(struct linux_binprm *bprm);
  199. int security_bprm_check(struct linux_binprm *bprm);
  200. void security_bprm_committing_creds(struct linux_binprm *bprm);
  201. void security_bprm_committed_creds(struct linux_binprm *bprm);
  202. int security_sb_alloc(struct super_block *sb);
  203. void security_sb_free(struct super_block *sb);
  204. int security_sb_copy_data(char *orig, char *copy);
  205. int security_sb_remount(struct super_block *sb, void *data);
  206. int security_sb_kern_mount(struct super_block *sb, int flags, void *data);
  207. int security_sb_show_options(struct seq_file *m, struct super_block *sb);
  208. int security_sb_statfs(struct dentry *dentry);
  209. int security_sb_mount(const char *dev_name, const struct path *path,
  210. const char *type, unsigned long flags, void *data);
  211. int security_sb_umount(struct vfsmount *mnt, int flags);
  212. int security_sb_pivotroot(const struct path *old_path, const struct path *new_path);
  213. int security_sb_set_mnt_opts(struct super_block *sb,
  214. struct security_mnt_opts *opts,
  215. unsigned long kern_flags,
  216. unsigned long *set_kern_flags);
  217. int security_sb_clone_mnt_opts(const struct super_block *oldsb,
  218. struct super_block *newsb,
  219. unsigned long kern_flags,
  220. unsigned long *set_kern_flags);
  221. int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
  222. int security_dentry_init_security(struct dentry *dentry, int mode,
  223. const struct qstr *name, void **ctx,
  224. u32 *ctxlen);
  225. int security_dentry_create_files_as(struct dentry *dentry, int mode,
  226. struct qstr *name,
  227. const struct cred *old,
  228. struct cred *new);
  229. int security_inode_alloc(struct inode *inode);
  230. void security_inode_free(struct inode *inode);
  231. int security_inode_init_security(struct inode *inode, struct inode *dir,
  232. const struct qstr *qstr,
  233. initxattrs initxattrs, void *fs_data);
  234. int security_old_inode_init_security(struct inode *inode, struct inode *dir,
  235. const struct qstr *qstr, const char **name,
  236. void **value, size_t *len);
  237. int security_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode);
  238. int security_inode_link(struct dentry *old_dentry, struct inode *dir,
  239. struct dentry *new_dentry);
  240. int security_inode_unlink(struct inode *dir, struct dentry *dentry);
  241. int security_inode_symlink(struct inode *dir, struct dentry *dentry,
  242. const char *old_name);
  243. int security_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
  244. int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
  245. int security_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev);
  246. int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
  247. struct inode *new_dir, struct dentry *new_dentry,
  248. unsigned int flags);
  249. int security_inode_readlink(struct dentry *dentry);
  250. int security_inode_follow_link(struct dentry *dentry, struct inode *inode,
  251. bool rcu);
  252. int security_inode_permission(struct inode *inode, int mask);
  253. int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
  254. int security_inode_getattr(const struct path *path);
  255. int security_inode_setxattr(struct dentry *dentry, const char *name,
  256. const void *value, size_t size, int flags);
  257. void security_inode_post_setxattr(struct dentry *dentry, const char *name,
  258. const void *value, size_t size, int flags);
  259. int security_inode_getxattr(struct dentry *dentry, const char *name);
  260. int security_inode_listxattr(struct dentry *dentry);
  261. int security_inode_removexattr(struct dentry *dentry, const char *name);
  262. int security_inode_need_killpriv(struct dentry *dentry);
  263. int security_inode_killpriv(struct dentry *dentry);
  264. int security_inode_getsecurity(struct inode *inode, const char *name, void **buffer, bool alloc);
  265. int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
  266. int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
  267. void security_inode_getsecid(struct inode *inode, u32 *secid);
  268. int security_inode_copy_up(struct dentry *src, struct cred **new);
  269. int security_inode_copy_up_xattr(const char *name);
  270. int security_file_permission(struct file *file, int mask);
  271. int security_file_alloc(struct file *file);
  272. void security_file_free(struct file *file);
  273. int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
  274. int security_mmap_file(struct file *file, unsigned long prot,
  275. unsigned long flags);
  276. int security_mmap_addr(unsigned long addr);
  277. int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
  278. unsigned long prot);
  279. int security_file_lock(struct file *file, unsigned int cmd);
  280. int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
  281. void security_file_set_fowner(struct file *file);
  282. int security_file_send_sigiotask(struct task_struct *tsk,
  283. struct fown_struct *fown, int sig);
  284. int security_file_receive(struct file *file);
  285. int security_file_open(struct file *file, const struct cred *cred);
  286. int security_task_alloc(struct task_struct *task, unsigned long clone_flags);
  287. void security_task_free(struct task_struct *task);
  288. int security_cred_alloc_blank(struct cred *cred, gfp_t gfp);
  289. void security_cred_free(struct cred *cred);
  290. int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
  291. void security_transfer_creds(struct cred *new, const struct cred *old);
  292. void security_cred_getsecid(const struct cred *c, u32 *secid);
  293. int security_kernel_act_as(struct cred *new, u32 secid);
  294. int security_kernel_create_files_as(struct cred *new, struct inode *inode);
  295. int security_kernel_module_request(char *kmod_name);
  296. int security_kernel_read_file(struct file *file, enum kernel_read_file_id id);
  297. int security_kernel_post_read_file(struct file *file, char *buf, loff_t size,
  298. enum kernel_read_file_id id);
  299. int security_task_fix_setuid(struct cred *new, const struct cred *old,
  300. int flags);
  301. int security_task_setpgid(struct task_struct *p, pid_t pgid);
  302. int security_task_getpgid(struct task_struct *p);
  303. int security_task_getsid(struct task_struct *p);
  304. void security_task_getsecid(struct task_struct *p, u32 *secid);
  305. int security_task_setnice(struct task_struct *p, int nice);
  306. int security_task_setioprio(struct task_struct *p, int ioprio);
  307. int security_task_getioprio(struct task_struct *p);
  308. int security_task_prlimit(const struct cred *cred, const struct cred *tcred,
  309. unsigned int flags);
  310. int security_task_setrlimit(struct task_struct *p, unsigned int resource,
  311. struct rlimit *new_rlim);
  312. int security_task_setscheduler(struct task_struct *p);
  313. int security_task_getscheduler(struct task_struct *p);
  314. int security_task_movememory(struct task_struct *p);
  315. int security_task_kill(struct task_struct *p, struct siginfo *info,
  316. int sig, const struct cred *cred);
  317. int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
  318. unsigned long arg4, unsigned long arg5);
  319. void security_task_to_inode(struct task_struct *p, struct inode *inode);
  320. int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
  321. void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
  322. int security_msg_msg_alloc(struct msg_msg *msg);
  323. void security_msg_msg_free(struct msg_msg *msg);
  324. int security_msg_queue_alloc(struct kern_ipc_perm *msq);
  325. void security_msg_queue_free(struct kern_ipc_perm *msq);
  326. int security_msg_queue_associate(struct kern_ipc_perm *msq, int msqflg);
  327. int security_msg_queue_msgctl(struct kern_ipc_perm *msq, int cmd);
  328. int security_msg_queue_msgsnd(struct kern_ipc_perm *msq,
  329. struct msg_msg *msg, int msqflg);
  330. int security_msg_queue_msgrcv(struct kern_ipc_perm *msq, struct msg_msg *msg,
  331. struct task_struct *target, long type, int mode);
  332. int security_shm_alloc(struct kern_ipc_perm *shp);
  333. void security_shm_free(struct kern_ipc_perm *shp);
  334. int security_shm_associate(struct kern_ipc_perm *shp, int shmflg);
  335. int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd);
  336. int security_shm_shmat(struct kern_ipc_perm *shp, char __user *shmaddr, int shmflg);
  337. int security_sem_alloc(struct kern_ipc_perm *sma);
  338. void security_sem_free(struct kern_ipc_perm *sma);
  339. int security_sem_associate(struct kern_ipc_perm *sma, int semflg);
  340. int security_sem_semctl(struct kern_ipc_perm *sma, int cmd);
  341. int security_sem_semop(struct kern_ipc_perm *sma, struct sembuf *sops,
  342. unsigned nsops, int alter);
  343. void security_d_instantiate(struct dentry *dentry, struct inode *inode);
  344. int security_getprocattr(struct task_struct *p, char *name, char **value);
  345. int security_setprocattr(const char *name, void *value, size_t size);
  346. int security_netlink_send(struct sock *sk, struct sk_buff *skb);
  347. int security_ismaclabel(const char *name);
  348. int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
  349. int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
  350. void security_release_secctx(char *secdata, u32 seclen);
  351. void security_inode_invalidate_secctx(struct inode *inode);
  352. int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen);
  353. int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen);
  354. int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen);
  355. #else /* CONFIG_SECURITY */
  356. struct security_mnt_opts {
  357. };
  358. static inline int call_lsm_notifier(enum lsm_event event, void *data)
  359. {
  360. return 0;
  361. }
  362. static inline int register_lsm_notifier(struct notifier_block *nb)
  363. {
  364. return 0;
  365. }
  366. static inline int unregister_lsm_notifier(struct notifier_block *nb)
  367. {
  368. return 0;
  369. }
  370. static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
  371. {
  372. }
  373. static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
  374. {
  375. }
  376. /*
  377. * This is the default capabilities functionality. Most of these functions
  378. * are just stubbed out, but a few must call the proper capable code.
  379. */
  380. static inline int security_init(void)
  381. {
  382. return 0;
  383. }
  384. static inline int security_binder_set_context_mgr(struct task_struct *mgr)
  385. {
  386. return 0;
  387. }
  388. static inline int security_binder_transaction(struct task_struct *from,
  389. struct task_struct *to)
  390. {
  391. return 0;
  392. }
  393. static inline int security_binder_transfer_binder(struct task_struct *from,
  394. struct task_struct *to)
  395. {
  396. return 0;
  397. }
  398. static inline int security_binder_transfer_file(struct task_struct *from,
  399. struct task_struct *to,
  400. struct file *file)
  401. {
  402. return 0;
  403. }
  404. static inline int security_ptrace_access_check(struct task_struct *child,
  405. unsigned int mode)
  406. {
  407. return cap_ptrace_access_check(child, mode);
  408. }
  409. static inline int security_ptrace_traceme(struct task_struct *parent)
  410. {
  411. return cap_ptrace_traceme(parent);
  412. }
  413. static inline int security_capget(struct task_struct *target,
  414. kernel_cap_t *effective,
  415. kernel_cap_t *inheritable,
  416. kernel_cap_t *permitted)
  417. {
  418. return cap_capget(target, effective, inheritable, permitted);
  419. }
  420. static inline int security_capset(struct cred *new,
  421. const struct cred *old,
  422. const kernel_cap_t *effective,
  423. const kernel_cap_t *inheritable,
  424. const kernel_cap_t *permitted)
  425. {
  426. return cap_capset(new, old, effective, inheritable, permitted);
  427. }
  428. static inline int security_capable(const struct cred *cred,
  429. struct user_namespace *ns, int cap)
  430. {
  431. return cap_capable(cred, ns, cap, SECURITY_CAP_AUDIT);
  432. }
  433. static inline int security_capable_noaudit(const struct cred *cred,
  434. struct user_namespace *ns, int cap) {
  435. return cap_capable(cred, ns, cap, SECURITY_CAP_NOAUDIT);
  436. }
  437. static inline int security_quotactl(int cmds, int type, int id,
  438. struct super_block *sb)
  439. {
  440. return 0;
  441. }
  442. static inline int security_quota_on(struct dentry *dentry)
  443. {
  444. return 0;
  445. }
  446. static inline int security_syslog(int type)
  447. {
  448. return 0;
  449. }
  450. static inline int security_settime64(const struct timespec64 *ts,
  451. const struct timezone *tz)
  452. {
  453. return cap_settime(ts, tz);
  454. }
  455. static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
  456. {
  457. return __vm_enough_memory(mm, pages, cap_vm_enough_memory(mm, pages));
  458. }
  459. static inline int security_bprm_set_creds(struct linux_binprm *bprm)
  460. {
  461. return cap_bprm_set_creds(bprm);
  462. }
  463. static inline int security_bprm_check(struct linux_binprm *bprm)
  464. {
  465. return 0;
  466. }
  467. static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
  468. {
  469. }
  470. static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
  471. {
  472. }
  473. static inline int security_sb_alloc(struct super_block *sb)
  474. {
  475. return 0;
  476. }
  477. static inline void security_sb_free(struct super_block *sb)
  478. { }
  479. static inline int security_sb_copy_data(char *orig, char *copy)
  480. {
  481. return 0;
  482. }
  483. static inline int security_sb_remount(struct super_block *sb, void *data)
  484. {
  485. return 0;
  486. }
  487. static inline int security_sb_kern_mount(struct super_block *sb, int flags, void *data)
  488. {
  489. return 0;
  490. }
  491. static inline int security_sb_show_options(struct seq_file *m,
  492. struct super_block *sb)
  493. {
  494. return 0;
  495. }
  496. static inline int security_sb_statfs(struct dentry *dentry)
  497. {
  498. return 0;
  499. }
  500. static inline int security_sb_mount(const char *dev_name, const struct path *path,
  501. const char *type, unsigned long flags,
  502. void *data)
  503. {
  504. return 0;
  505. }
  506. static inline int security_sb_umount(struct vfsmount *mnt, int flags)
  507. {
  508. return 0;
  509. }
  510. static inline int security_sb_pivotroot(const struct path *old_path,
  511. const struct path *new_path)
  512. {
  513. return 0;
  514. }
  515. static inline int security_sb_set_mnt_opts(struct super_block *sb,
  516. struct security_mnt_opts *opts,
  517. unsigned long kern_flags,
  518. unsigned long *set_kern_flags)
  519. {
  520. return 0;
  521. }
  522. static inline int security_sb_clone_mnt_opts(const struct super_block *oldsb,
  523. struct super_block *newsb,
  524. unsigned long kern_flags,
  525. unsigned long *set_kern_flags)
  526. {
  527. return 0;
  528. }
  529. static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
  530. {
  531. return 0;
  532. }
  533. static inline int security_inode_alloc(struct inode *inode)
  534. {
  535. return 0;
  536. }
  537. static inline void security_inode_free(struct inode *inode)
  538. { }
  539. static inline int security_dentry_init_security(struct dentry *dentry,
  540. int mode,
  541. const struct qstr *name,
  542. void **ctx,
  543. u32 *ctxlen)
  544. {
  545. return -EOPNOTSUPP;
  546. }
  547. static inline int security_dentry_create_files_as(struct dentry *dentry,
  548. int mode, struct qstr *name,
  549. const struct cred *old,
  550. struct cred *new)
  551. {
  552. return 0;
  553. }
  554. static inline int security_inode_init_security(struct inode *inode,
  555. struct inode *dir,
  556. const struct qstr *qstr,
  557. const initxattrs xattrs,
  558. void *fs_data)
  559. {
  560. return 0;
  561. }
  562. static inline int security_old_inode_init_security(struct inode *inode,
  563. struct inode *dir,
  564. const struct qstr *qstr,
  565. const char **name,
  566. void **value, size_t *len)
  567. {
  568. return -EOPNOTSUPP;
  569. }
  570. static inline int security_inode_create(struct inode *dir,
  571. struct dentry *dentry,
  572. umode_t mode)
  573. {
  574. return 0;
  575. }
  576. static inline int security_inode_link(struct dentry *old_dentry,
  577. struct inode *dir,
  578. struct dentry *new_dentry)
  579. {
  580. return 0;
  581. }
  582. static inline int security_inode_unlink(struct inode *dir,
  583. struct dentry *dentry)
  584. {
  585. return 0;
  586. }
  587. static inline int security_inode_symlink(struct inode *dir,
  588. struct dentry *dentry,
  589. const char *old_name)
  590. {
  591. return 0;
  592. }
  593. static inline int security_inode_mkdir(struct inode *dir,
  594. struct dentry *dentry,
  595. int mode)
  596. {
  597. return 0;
  598. }
  599. static inline int security_inode_rmdir(struct inode *dir,
  600. struct dentry *dentry)
  601. {
  602. return 0;
  603. }
  604. static inline int security_inode_mknod(struct inode *dir,
  605. struct dentry *dentry,
  606. int mode, dev_t dev)
  607. {
  608. return 0;
  609. }
  610. static inline int security_inode_rename(struct inode *old_dir,
  611. struct dentry *old_dentry,
  612. struct inode *new_dir,
  613. struct dentry *new_dentry,
  614. unsigned int flags)
  615. {
  616. return 0;
  617. }
  618. static inline int security_inode_readlink(struct dentry *dentry)
  619. {
  620. return 0;
  621. }
  622. static inline int security_inode_follow_link(struct dentry *dentry,
  623. struct inode *inode,
  624. bool rcu)
  625. {
  626. return 0;
  627. }
  628. static inline int security_inode_permission(struct inode *inode, int mask)
  629. {
  630. return 0;
  631. }
  632. static inline int security_inode_setattr(struct dentry *dentry,
  633. struct iattr *attr)
  634. {
  635. return 0;
  636. }
  637. static inline int security_inode_getattr(const struct path *path)
  638. {
  639. return 0;
  640. }
  641. static inline int security_inode_setxattr(struct dentry *dentry,
  642. const char *name, const void *value, size_t size, int flags)
  643. {
  644. return cap_inode_setxattr(dentry, name, value, size, flags);
  645. }
  646. static inline void security_inode_post_setxattr(struct dentry *dentry,
  647. const char *name, const void *value, size_t size, int flags)
  648. { }
  649. static inline int security_inode_getxattr(struct dentry *dentry,
  650. const char *name)
  651. {
  652. return 0;
  653. }
  654. static inline int security_inode_listxattr(struct dentry *dentry)
  655. {
  656. return 0;
  657. }
  658. static inline int security_inode_removexattr(struct dentry *dentry,
  659. const char *name)
  660. {
  661. return cap_inode_removexattr(dentry, name);
  662. }
  663. static inline int security_inode_need_killpriv(struct dentry *dentry)
  664. {
  665. return cap_inode_need_killpriv(dentry);
  666. }
  667. static inline int security_inode_killpriv(struct dentry *dentry)
  668. {
  669. return cap_inode_killpriv(dentry);
  670. }
  671. static inline int security_inode_getsecurity(struct inode *inode, const char *name, void **buffer, bool alloc)
  672. {
  673. return -EOPNOTSUPP;
  674. }
  675. static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
  676. {
  677. return -EOPNOTSUPP;
  678. }
  679. static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
  680. {
  681. return 0;
  682. }
  683. static inline void security_inode_getsecid(struct inode *inode, u32 *secid)
  684. {
  685. *secid = 0;
  686. }
  687. static inline int security_inode_copy_up(struct dentry *src, struct cred **new)
  688. {
  689. return 0;
  690. }
  691. static inline int security_inode_copy_up_xattr(const char *name)
  692. {
  693. return -EOPNOTSUPP;
  694. }
  695. static inline int security_file_permission(struct file *file, int mask)
  696. {
  697. return 0;
  698. }
  699. static inline int security_file_alloc(struct file *file)
  700. {
  701. return 0;
  702. }
  703. static inline void security_file_free(struct file *file)
  704. { }
  705. static inline int security_file_ioctl(struct file *file, unsigned int cmd,
  706. unsigned long arg)
  707. {
  708. return 0;
  709. }
  710. static inline int security_mmap_file(struct file *file, unsigned long prot,
  711. unsigned long flags)
  712. {
  713. return 0;
  714. }
  715. static inline int security_mmap_addr(unsigned long addr)
  716. {
  717. return cap_mmap_addr(addr);
  718. }
  719. static inline int security_file_mprotect(struct vm_area_struct *vma,
  720. unsigned long reqprot,
  721. unsigned long prot)
  722. {
  723. return 0;
  724. }
  725. static inline int security_file_lock(struct file *file, unsigned int cmd)
  726. {
  727. return 0;
  728. }
  729. static inline int security_file_fcntl(struct file *file, unsigned int cmd,
  730. unsigned long arg)
  731. {
  732. return 0;
  733. }
  734. static inline void security_file_set_fowner(struct file *file)
  735. {
  736. return;
  737. }
  738. static inline int security_file_send_sigiotask(struct task_struct *tsk,
  739. struct fown_struct *fown,
  740. int sig)
  741. {
  742. return 0;
  743. }
  744. static inline int security_file_receive(struct file *file)
  745. {
  746. return 0;
  747. }
  748. static inline int security_file_open(struct file *file,
  749. const struct cred *cred)
  750. {
  751. return 0;
  752. }
  753. static inline int security_task_alloc(struct task_struct *task,
  754. unsigned long clone_flags)
  755. {
  756. return 0;
  757. }
  758. static inline void security_task_free(struct task_struct *task)
  759. { }
  760. static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
  761. {
  762. return 0;
  763. }
  764. static inline void security_cred_free(struct cred *cred)
  765. { }
  766. static inline int security_prepare_creds(struct cred *new,
  767. const struct cred *old,
  768. gfp_t gfp)
  769. {
  770. return 0;
  771. }
  772. static inline void security_transfer_creds(struct cred *new,
  773. const struct cred *old)
  774. {
  775. }
  776. static inline int security_kernel_act_as(struct cred *cred, u32 secid)
  777. {
  778. return 0;
  779. }
  780. static inline int security_kernel_create_files_as(struct cred *cred,
  781. struct inode *inode)
  782. {
  783. return 0;
  784. }
  785. static inline int security_kernel_module_request(char *kmod_name)
  786. {
  787. return 0;
  788. }
  789. static inline int security_kernel_read_file(struct file *file,
  790. enum kernel_read_file_id id)
  791. {
  792. return 0;
  793. }
  794. static inline int security_kernel_post_read_file(struct file *file,
  795. char *buf, loff_t size,
  796. enum kernel_read_file_id id)
  797. {
  798. return 0;
  799. }
  800. static inline int security_task_fix_setuid(struct cred *new,
  801. const struct cred *old,
  802. int flags)
  803. {
  804. return cap_task_fix_setuid(new, old, flags);
  805. }
  806. static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
  807. {
  808. return 0;
  809. }
  810. static inline int security_task_getpgid(struct task_struct *p)
  811. {
  812. return 0;
  813. }
  814. static inline int security_task_getsid(struct task_struct *p)
  815. {
  816. return 0;
  817. }
  818. static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
  819. {
  820. *secid = 0;
  821. }
  822. static inline int security_task_setnice(struct task_struct *p, int nice)
  823. {
  824. return cap_task_setnice(p, nice);
  825. }
  826. static inline int security_task_setioprio(struct task_struct *p, int ioprio)
  827. {
  828. return cap_task_setioprio(p, ioprio);
  829. }
  830. static inline int security_task_getioprio(struct task_struct *p)
  831. {
  832. return 0;
  833. }
  834. static inline int security_task_prlimit(const struct cred *cred,
  835. const struct cred *tcred,
  836. unsigned int flags)
  837. {
  838. return 0;
  839. }
  840. static inline int security_task_setrlimit(struct task_struct *p,
  841. unsigned int resource,
  842. struct rlimit *new_rlim)
  843. {
  844. return 0;
  845. }
  846. static inline int security_task_setscheduler(struct task_struct *p)
  847. {
  848. return cap_task_setscheduler(p);
  849. }
  850. static inline int security_task_getscheduler(struct task_struct *p)
  851. {
  852. return 0;
  853. }
  854. static inline int security_task_movememory(struct task_struct *p)
  855. {
  856. return 0;
  857. }
  858. static inline int security_task_kill(struct task_struct *p,
  859. struct siginfo *info, int sig,
  860. const struct cred *cred)
  861. {
  862. return 0;
  863. }
  864. static inline int security_task_prctl(int option, unsigned long arg2,
  865. unsigned long arg3,
  866. unsigned long arg4,
  867. unsigned long arg5)
  868. {
  869. return cap_task_prctl(option, arg2, arg3, arg4, arg5);
  870. }
  871. static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
  872. { }
  873. static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
  874. short flag)
  875. {
  876. return 0;
  877. }
  878. static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
  879. {
  880. *secid = 0;
  881. }
  882. static inline int security_msg_msg_alloc(struct msg_msg *msg)
  883. {
  884. return 0;
  885. }
  886. static inline void security_msg_msg_free(struct msg_msg *msg)
  887. { }
  888. static inline int security_msg_queue_alloc(struct kern_ipc_perm *msq)
  889. {
  890. return 0;
  891. }
  892. static inline void security_msg_queue_free(struct kern_ipc_perm *msq)
  893. { }
  894. static inline int security_msg_queue_associate(struct kern_ipc_perm *msq,
  895. int msqflg)
  896. {
  897. return 0;
  898. }
  899. static inline int security_msg_queue_msgctl(struct kern_ipc_perm *msq, int cmd)
  900. {
  901. return 0;
  902. }
  903. static inline int security_msg_queue_msgsnd(struct kern_ipc_perm *msq,
  904. struct msg_msg *msg, int msqflg)
  905. {
  906. return 0;
  907. }
  908. static inline int security_msg_queue_msgrcv(struct kern_ipc_perm *msq,
  909. struct msg_msg *msg,
  910. struct task_struct *target,
  911. long type, int mode)
  912. {
  913. return 0;
  914. }
  915. static inline int security_shm_alloc(struct kern_ipc_perm *shp)
  916. {
  917. return 0;
  918. }
  919. static inline void security_shm_free(struct kern_ipc_perm *shp)
  920. { }
  921. static inline int security_shm_associate(struct kern_ipc_perm *shp,
  922. int shmflg)
  923. {
  924. return 0;
  925. }
  926. static inline int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd)
  927. {
  928. return 0;
  929. }
  930. static inline int security_shm_shmat(struct kern_ipc_perm *shp,
  931. char __user *shmaddr, int shmflg)
  932. {
  933. return 0;
  934. }
  935. static inline int security_sem_alloc(struct kern_ipc_perm *sma)
  936. {
  937. return 0;
  938. }
  939. static inline void security_sem_free(struct kern_ipc_perm *sma)
  940. { }
  941. static inline int security_sem_associate(struct kern_ipc_perm *sma, int semflg)
  942. {
  943. return 0;
  944. }
  945. static inline int security_sem_semctl(struct kern_ipc_perm *sma, int cmd)
  946. {
  947. return 0;
  948. }
  949. static inline int security_sem_semop(struct kern_ipc_perm *sma,
  950. struct sembuf *sops, unsigned nsops,
  951. int alter)
  952. {
  953. return 0;
  954. }
  955. static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
  956. { }
  957. static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
  958. {
  959. return -EINVAL;
  960. }
  961. static inline int security_setprocattr(char *name, void *value, size_t size)
  962. {
  963. return -EINVAL;
  964. }
  965. static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
  966. {
  967. return 0;
  968. }
  969. static inline int security_ismaclabel(const char *name)
  970. {
  971. return 0;
  972. }
  973. static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
  974. {
  975. return -EOPNOTSUPP;
  976. }
  977. static inline int security_secctx_to_secid(const char *secdata,
  978. u32 seclen,
  979. u32 *secid)
  980. {
  981. return -EOPNOTSUPP;
  982. }
  983. static inline void security_release_secctx(char *secdata, u32 seclen)
  984. {
  985. }
  986. static inline void security_inode_invalidate_secctx(struct inode *inode)
  987. {
  988. }
  989. static inline int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
  990. {
  991. return -EOPNOTSUPP;
  992. }
  993. static inline int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
  994. {
  995. return -EOPNOTSUPP;
  996. }
  997. static inline int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
  998. {
  999. return -EOPNOTSUPP;
  1000. }
  1001. #endif /* CONFIG_SECURITY */
  1002. #ifdef CONFIG_SECURITY_NETWORK
  1003. int security_unix_stream_connect(struct sock *sock, struct sock *other, struct sock *newsk);
  1004. int security_unix_may_send(struct socket *sock, struct socket *other);
  1005. int security_socket_create(int family, int type, int protocol, int kern);
  1006. int security_socket_post_create(struct socket *sock, int family,
  1007. int type, int protocol, int kern);
  1008. int security_socket_socketpair(struct socket *socka, struct socket *sockb);
  1009. int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
  1010. int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
  1011. int security_socket_listen(struct socket *sock, int backlog);
  1012. int security_socket_accept(struct socket *sock, struct socket *newsock);
  1013. int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
  1014. int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
  1015. int size, int flags);
  1016. int security_socket_getsockname(struct socket *sock);
  1017. int security_socket_getpeername(struct socket *sock);
  1018. int security_socket_getsockopt(struct socket *sock, int level, int optname);
  1019. int security_socket_setsockopt(struct socket *sock, int level, int optname);
  1020. int security_socket_shutdown(struct socket *sock, int how);
  1021. int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
  1022. int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
  1023. int __user *optlen, unsigned len);
  1024. int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
  1025. int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
  1026. void security_sk_free(struct sock *sk);
  1027. void security_sk_clone(const struct sock *sk, struct sock *newsk);
  1028. void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
  1029. void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
  1030. void security_sock_graft(struct sock*sk, struct socket *parent);
  1031. int security_inet_conn_request(struct sock *sk,
  1032. struct sk_buff *skb, struct request_sock *req);
  1033. void security_inet_csk_clone(struct sock *newsk,
  1034. const struct request_sock *req);
  1035. void security_inet_conn_established(struct sock *sk,
  1036. struct sk_buff *skb);
  1037. int security_secmark_relabel_packet(u32 secid);
  1038. void security_secmark_refcount_inc(void);
  1039. void security_secmark_refcount_dec(void);
  1040. int security_tun_dev_alloc_security(void **security);
  1041. void security_tun_dev_free_security(void *security);
  1042. int security_tun_dev_create(void);
  1043. int security_tun_dev_attach_queue(void *security);
  1044. int security_tun_dev_attach(struct sock *sk, void *security);
  1045. int security_tun_dev_open(void *security);
  1046. int security_sctp_assoc_request(struct sctp_endpoint *ep, struct sk_buff *skb);
  1047. int security_sctp_bind_connect(struct sock *sk, int optname,
  1048. struct sockaddr *address, int addrlen);
  1049. void security_sctp_sk_clone(struct sctp_endpoint *ep, struct sock *sk,
  1050. struct sock *newsk);
  1051. #else /* CONFIG_SECURITY_NETWORK */
  1052. static inline int security_unix_stream_connect(struct sock *sock,
  1053. struct sock *other,
  1054. struct sock *newsk)
  1055. {
  1056. return 0;
  1057. }
  1058. static inline int security_unix_may_send(struct socket *sock,
  1059. struct socket *other)
  1060. {
  1061. return 0;
  1062. }
  1063. static inline int security_socket_create(int family, int type,
  1064. int protocol, int kern)
  1065. {
  1066. return 0;
  1067. }
  1068. static inline int security_socket_post_create(struct socket *sock,
  1069. int family,
  1070. int type,
  1071. int protocol, int kern)
  1072. {
  1073. return 0;
  1074. }
  1075. static inline int security_socket_socketpair(struct socket *socka,
  1076. struct socket *sockb)
  1077. {
  1078. return 0;
  1079. }
  1080. static inline int security_socket_bind(struct socket *sock,
  1081. struct sockaddr *address,
  1082. int addrlen)
  1083. {
  1084. return 0;
  1085. }
  1086. static inline int security_socket_connect(struct socket *sock,
  1087. struct sockaddr *address,
  1088. int addrlen)
  1089. {
  1090. return 0;
  1091. }
  1092. static inline int security_socket_listen(struct socket *sock, int backlog)
  1093. {
  1094. return 0;
  1095. }
  1096. static inline int security_socket_accept(struct socket *sock,
  1097. struct socket *newsock)
  1098. {
  1099. return 0;
  1100. }
  1101. static inline int security_socket_sendmsg(struct socket *sock,
  1102. struct msghdr *msg, int size)
  1103. {
  1104. return 0;
  1105. }
  1106. static inline int security_socket_recvmsg(struct socket *sock,
  1107. struct msghdr *msg, int size,
  1108. int flags)
  1109. {
  1110. return 0;
  1111. }
  1112. static inline int security_socket_getsockname(struct socket *sock)
  1113. {
  1114. return 0;
  1115. }
  1116. static inline int security_socket_getpeername(struct socket *sock)
  1117. {
  1118. return 0;
  1119. }
  1120. static inline int security_socket_getsockopt(struct socket *sock,
  1121. int level, int optname)
  1122. {
  1123. return 0;
  1124. }
  1125. static inline int security_socket_setsockopt(struct socket *sock,
  1126. int level, int optname)
  1127. {
  1128. return 0;
  1129. }
  1130. static inline int security_socket_shutdown(struct socket *sock, int how)
  1131. {
  1132. return 0;
  1133. }
  1134. static inline int security_sock_rcv_skb(struct sock *sk,
  1135. struct sk_buff *skb)
  1136. {
  1137. return 0;
  1138. }
  1139. static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
  1140. int __user *optlen, unsigned len)
  1141. {
  1142. return -ENOPROTOOPT;
  1143. }
  1144. static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
  1145. {
  1146. return -ENOPROTOOPT;
  1147. }
  1148. static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
  1149. {
  1150. return 0;
  1151. }
  1152. static inline void security_sk_free(struct sock *sk)
  1153. {
  1154. }
  1155. static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
  1156. {
  1157. }
  1158. static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
  1159. {
  1160. }
  1161. static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
  1162. {
  1163. }
  1164. static inline void security_sock_graft(struct sock *sk, struct socket *parent)
  1165. {
  1166. }
  1167. static inline int security_inet_conn_request(struct sock *sk,
  1168. struct sk_buff *skb, struct request_sock *req)
  1169. {
  1170. return 0;
  1171. }
  1172. static inline void security_inet_csk_clone(struct sock *newsk,
  1173. const struct request_sock *req)
  1174. {
  1175. }
  1176. static inline void security_inet_conn_established(struct sock *sk,
  1177. struct sk_buff *skb)
  1178. {
  1179. }
  1180. static inline int security_secmark_relabel_packet(u32 secid)
  1181. {
  1182. return 0;
  1183. }
  1184. static inline void security_secmark_refcount_inc(void)
  1185. {
  1186. }
  1187. static inline void security_secmark_refcount_dec(void)
  1188. {
  1189. }
  1190. static inline int security_tun_dev_alloc_security(void **security)
  1191. {
  1192. return 0;
  1193. }
  1194. static inline void security_tun_dev_free_security(void *security)
  1195. {
  1196. }
  1197. static inline int security_tun_dev_create(void)
  1198. {
  1199. return 0;
  1200. }
  1201. static inline int security_tun_dev_attach_queue(void *security)
  1202. {
  1203. return 0;
  1204. }
  1205. static inline int security_tun_dev_attach(struct sock *sk, void *security)
  1206. {
  1207. return 0;
  1208. }
  1209. static inline int security_tun_dev_open(void *security)
  1210. {
  1211. return 0;
  1212. }
  1213. static inline int security_sctp_assoc_request(struct sctp_endpoint *ep,
  1214. struct sk_buff *skb)
  1215. {
  1216. return 0;
  1217. }
  1218. static inline int security_sctp_bind_connect(struct sock *sk, int optname,
  1219. struct sockaddr *address,
  1220. int addrlen)
  1221. {
  1222. return 0;
  1223. }
  1224. static inline void security_sctp_sk_clone(struct sctp_endpoint *ep,
  1225. struct sock *sk,
  1226. struct sock *newsk)
  1227. {
  1228. }
  1229. #endif /* CONFIG_SECURITY_NETWORK */
  1230. #ifdef CONFIG_SECURITY_INFINIBAND
  1231. int security_ib_pkey_access(void *sec, u64 subnet_prefix, u16 pkey);
  1232. int security_ib_endport_manage_subnet(void *sec, const char *name, u8 port_num);
  1233. int security_ib_alloc_security(void **sec);
  1234. void security_ib_free_security(void *sec);
  1235. #else /* CONFIG_SECURITY_INFINIBAND */
  1236. static inline int security_ib_pkey_access(void *sec, u64 subnet_prefix, u16 pkey)
  1237. {
  1238. return 0;
  1239. }
  1240. static inline int security_ib_endport_manage_subnet(void *sec, const char *dev_name, u8 port_num)
  1241. {
  1242. return 0;
  1243. }
  1244. static inline int security_ib_alloc_security(void **sec)
  1245. {
  1246. return 0;
  1247. }
  1248. static inline void security_ib_free_security(void *sec)
  1249. {
  1250. }
  1251. #endif /* CONFIG_SECURITY_INFINIBAND */
  1252. #ifdef CONFIG_SECURITY_NETWORK_XFRM
  1253. int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp,
  1254. struct xfrm_user_sec_ctx *sec_ctx, gfp_t gfp);
  1255. int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
  1256. void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
  1257. int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
  1258. int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
  1259. int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
  1260. struct xfrm_sec_ctx *polsec, u32 secid);
  1261. int security_xfrm_state_delete(struct xfrm_state *x);
  1262. void security_xfrm_state_free(struct xfrm_state *x);
  1263. int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
  1264. int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
  1265. struct xfrm_policy *xp,
  1266. const struct flowi *fl);
  1267. int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
  1268. void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
  1269. #else /* CONFIG_SECURITY_NETWORK_XFRM */
  1270. static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp,
  1271. struct xfrm_user_sec_ctx *sec_ctx,
  1272. gfp_t gfp)
  1273. {
  1274. return 0;
  1275. }
  1276. static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
  1277. {
  1278. return 0;
  1279. }
  1280. static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
  1281. {
  1282. }
  1283. static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
  1284. {
  1285. return 0;
  1286. }
  1287. static inline int security_xfrm_state_alloc(struct xfrm_state *x,
  1288. struct xfrm_user_sec_ctx *sec_ctx)
  1289. {
  1290. return 0;
  1291. }
  1292. static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
  1293. struct xfrm_sec_ctx *polsec, u32 secid)
  1294. {
  1295. return 0;
  1296. }
  1297. static inline void security_xfrm_state_free(struct xfrm_state *x)
  1298. {
  1299. }
  1300. static inline int security_xfrm_state_delete(struct xfrm_state *x)
  1301. {
  1302. return 0;
  1303. }
  1304. static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
  1305. {
  1306. return 0;
  1307. }
  1308. static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
  1309. struct xfrm_policy *xp, const struct flowi *fl)
  1310. {
  1311. return 1;
  1312. }
  1313. static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
  1314. {
  1315. return 0;
  1316. }
  1317. static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
  1318. {
  1319. }
  1320. #endif /* CONFIG_SECURITY_NETWORK_XFRM */
  1321. #ifdef CONFIG_SECURITY_PATH
  1322. int security_path_unlink(const struct path *dir, struct dentry *dentry);
  1323. int security_path_mkdir(const struct path *dir, struct dentry *dentry, umode_t mode);
  1324. int security_path_rmdir(const struct path *dir, struct dentry *dentry);
  1325. int security_path_mknod(const struct path *dir, struct dentry *dentry, umode_t mode,
  1326. unsigned int dev);
  1327. int security_path_truncate(const struct path *path);
  1328. int security_path_symlink(const struct path *dir, struct dentry *dentry,
  1329. const char *old_name);
  1330. int security_path_link(struct dentry *old_dentry, const struct path *new_dir,
  1331. struct dentry *new_dentry);
  1332. int security_path_rename(const struct path *old_dir, struct dentry *old_dentry,
  1333. const struct path *new_dir, struct dentry *new_dentry,
  1334. unsigned int flags);
  1335. int security_path_chmod(const struct path *path, umode_t mode);
  1336. int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid);
  1337. int security_path_chroot(const struct path *path);
  1338. #else /* CONFIG_SECURITY_PATH */
  1339. static inline int security_path_unlink(const struct path *dir, struct dentry *dentry)
  1340. {
  1341. return 0;
  1342. }
  1343. static inline int security_path_mkdir(const struct path *dir, struct dentry *dentry,
  1344. umode_t mode)
  1345. {
  1346. return 0;
  1347. }
  1348. static inline int security_path_rmdir(const struct path *dir, struct dentry *dentry)
  1349. {
  1350. return 0;
  1351. }
  1352. static inline int security_path_mknod(const struct path *dir, struct dentry *dentry,
  1353. umode_t mode, unsigned int dev)
  1354. {
  1355. return 0;
  1356. }
  1357. static inline int security_path_truncate(const struct path *path)
  1358. {
  1359. return 0;
  1360. }
  1361. static inline int security_path_symlink(const struct path *dir, struct dentry *dentry,
  1362. const char *old_name)
  1363. {
  1364. return 0;
  1365. }
  1366. static inline int security_path_link(struct dentry *old_dentry,
  1367. const struct path *new_dir,
  1368. struct dentry *new_dentry)
  1369. {
  1370. return 0;
  1371. }
  1372. static inline int security_path_rename(const struct path *old_dir,
  1373. struct dentry *old_dentry,
  1374. const struct path *new_dir,
  1375. struct dentry *new_dentry,
  1376. unsigned int flags)
  1377. {
  1378. return 0;
  1379. }
  1380. static inline int security_path_chmod(const struct path *path, umode_t mode)
  1381. {
  1382. return 0;
  1383. }
  1384. static inline int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
  1385. {
  1386. return 0;
  1387. }
  1388. static inline int security_path_chroot(const struct path *path)
  1389. {
  1390. return 0;
  1391. }
  1392. #endif /* CONFIG_SECURITY_PATH */
  1393. #ifdef CONFIG_KEYS
  1394. #ifdef CONFIG_SECURITY
  1395. int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
  1396. void security_key_free(struct key *key);
  1397. int security_key_permission(key_ref_t key_ref,
  1398. const struct cred *cred, unsigned perm);
  1399. int security_key_getsecurity(struct key *key, char **_buffer);
  1400. #else
  1401. static inline int security_key_alloc(struct key *key,
  1402. const struct cred *cred,
  1403. unsigned long flags)
  1404. {
  1405. return 0;
  1406. }
  1407. static inline void security_key_free(struct key *key)
  1408. {
  1409. }
  1410. static inline int security_key_permission(key_ref_t key_ref,
  1411. const struct cred *cred,
  1412. unsigned perm)
  1413. {
  1414. return 0;
  1415. }
  1416. static inline int security_key_getsecurity(struct key *key, char **_buffer)
  1417. {
  1418. *_buffer = NULL;
  1419. return 0;
  1420. }
  1421. #endif
  1422. #endif /* CONFIG_KEYS */
  1423. #ifdef CONFIG_AUDIT
  1424. #ifdef CONFIG_SECURITY
  1425. int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
  1426. int security_audit_rule_known(struct audit_krule *krule);
  1427. int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
  1428. struct audit_context *actx);
  1429. void security_audit_rule_free(void *lsmrule);
  1430. #else
  1431. static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
  1432. void **lsmrule)
  1433. {
  1434. return 0;
  1435. }
  1436. static inline int security_audit_rule_known(struct audit_krule *krule)
  1437. {
  1438. return 0;
  1439. }
  1440. static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
  1441. void *lsmrule, struct audit_context *actx)
  1442. {
  1443. return 0;
  1444. }
  1445. static inline void security_audit_rule_free(void *lsmrule)
  1446. { }
  1447. #endif /* CONFIG_SECURITY */
  1448. #endif /* CONFIG_AUDIT */
  1449. #ifdef CONFIG_SECURITYFS
  1450. extern struct dentry *securityfs_create_file(const char *name, umode_t mode,
  1451. struct dentry *parent, void *data,
  1452. const struct file_operations *fops);
  1453. extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
  1454. struct dentry *securityfs_create_symlink(const char *name,
  1455. struct dentry *parent,
  1456. const char *target,
  1457. const struct inode_operations *iops);
  1458. extern void securityfs_remove(struct dentry *dentry);
  1459. #else /* CONFIG_SECURITYFS */
  1460. static inline struct dentry *securityfs_create_dir(const char *name,
  1461. struct dentry *parent)
  1462. {
  1463. return ERR_PTR(-ENODEV);
  1464. }
  1465. static inline struct dentry *securityfs_create_file(const char *name,
  1466. umode_t mode,
  1467. struct dentry *parent,
  1468. void *data,
  1469. const struct file_operations *fops)
  1470. {
  1471. return ERR_PTR(-ENODEV);
  1472. }
  1473. static inline struct dentry *securityfs_create_symlink(const char *name,
  1474. struct dentry *parent,
  1475. const char *target,
  1476. const struct inode_operations *iops)
  1477. {
  1478. return ERR_PTR(-ENODEV);
  1479. }
  1480. static inline void securityfs_remove(struct dentry *dentry)
  1481. {}
  1482. #endif
  1483. #ifdef CONFIG_BPF_SYSCALL
  1484. union bpf_attr;
  1485. struct bpf_map;
  1486. struct bpf_prog;
  1487. struct bpf_prog_aux;
  1488. #ifdef CONFIG_SECURITY
  1489. extern int security_bpf(int cmd, union bpf_attr *attr, unsigned int size);
  1490. extern int security_bpf_map(struct bpf_map *map, fmode_t fmode);
  1491. extern int security_bpf_prog(struct bpf_prog *prog);
  1492. extern int security_bpf_map_alloc(struct bpf_map *map);
  1493. extern void security_bpf_map_free(struct bpf_map *map);
  1494. extern int security_bpf_prog_alloc(struct bpf_prog_aux *aux);
  1495. extern void security_bpf_prog_free(struct bpf_prog_aux *aux);
  1496. #else
  1497. static inline int security_bpf(int cmd, union bpf_attr *attr,
  1498. unsigned int size)
  1499. {
  1500. return 0;
  1501. }
  1502. static inline int security_bpf_map(struct bpf_map *map, fmode_t fmode)
  1503. {
  1504. return 0;
  1505. }
  1506. static inline int security_bpf_prog(struct bpf_prog *prog)
  1507. {
  1508. return 0;
  1509. }
  1510. static inline int security_bpf_map_alloc(struct bpf_map *map)
  1511. {
  1512. return 0;
  1513. }
  1514. static inline void security_bpf_map_free(struct bpf_map *map)
  1515. { }
  1516. static inline int security_bpf_prog_alloc(struct bpf_prog_aux *aux)
  1517. {
  1518. return 0;
  1519. }
  1520. static inline void security_bpf_prog_free(struct bpf_prog_aux *aux)
  1521. { }
  1522. #endif /* CONFIG_SECURITY */
  1523. #endif /* CONFIG_BPF_SYSCALL */
  1524. #ifdef CONFIG_SECURITY
  1525. static inline char *alloc_secdata(void)
  1526. {
  1527. return (char *)get_zeroed_page(GFP_KERNEL);
  1528. }
  1529. static inline void free_secdata(void *secdata)
  1530. {
  1531. free_page((unsigned long)secdata);
  1532. }
  1533. #else
  1534. static inline char *alloc_secdata(void)
  1535. {
  1536. return (char *)1;
  1537. }
  1538. static inline void free_secdata(void *secdata)
  1539. { }
  1540. #endif /* CONFIG_SECURITY */
  1541. #endif /* ! __LINUX_SECURITY_H */