security.h 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817
  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. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * Due to this file being licensed under the GPL there is controversy over
  16. * whether this permits you to write a module that #includes this file
  17. * without placing your module under the GPL. Please consult a lawyer for
  18. * advice before doing this.
  19. *
  20. */
  21. #ifndef __LINUX_SECURITY_H
  22. #define __LINUX_SECURITY_H
  23. #include <linux/fs.h>
  24. #include <linux/binfmts.h>
  25. #include <linux/signal.h>
  26. #include <linux/resource.h>
  27. #include <linux/sem.h>
  28. #include <linux/shm.h>
  29. #include <linux/msg.h>
  30. #include <linux/sched.h>
  31. #include <linux/key.h>
  32. #include <linux/xfrm.h>
  33. #include <net/flow.h>
  34. /* Maximum number of letters for an LSM name string */
  35. #define SECURITY_NAME_MAX 10
  36. struct ctl_table;
  37. struct audit_krule;
  38. /*
  39. * These functions are in security/capability.c and are used
  40. * as the default capabilities functions
  41. */
  42. extern int cap_capable(struct task_struct *tsk, int cap);
  43. extern int cap_settime(struct timespec *ts, struct timezone *tz);
  44. extern int cap_ptrace(struct task_struct *parent, struct task_struct *child,
  45. unsigned int mode);
  46. extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
  47. extern int cap_capset_check(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
  48. extern void cap_capset_set(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
  49. extern int cap_bprm_set_security(struct linux_binprm *bprm);
  50. extern void cap_bprm_apply_creds(struct linux_binprm *bprm, int unsafe);
  51. extern int cap_bprm_secureexec(struct linux_binprm *bprm);
  52. extern int cap_inode_setxattr(struct dentry *dentry, const char *name,
  53. const void *value, size_t size, int flags);
  54. extern int cap_inode_removexattr(struct dentry *dentry, const char *name);
  55. extern int cap_inode_need_killpriv(struct dentry *dentry);
  56. extern int cap_inode_killpriv(struct dentry *dentry);
  57. extern int cap_task_post_setuid(uid_t old_ruid, uid_t old_euid, uid_t old_suid, int flags);
  58. extern void cap_task_reparent_to_init(struct task_struct *p);
  59. extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
  60. unsigned long arg4, unsigned long arg5, long *rc_p);
  61. extern int cap_task_setscheduler(struct task_struct *p, int policy, struct sched_param *lp);
  62. extern int cap_task_setioprio(struct task_struct *p, int ioprio);
  63. extern int cap_task_setnice(struct task_struct *p, int nice);
  64. extern int cap_syslog(int type);
  65. extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
  66. struct msghdr;
  67. struct sk_buff;
  68. struct sock;
  69. struct sockaddr;
  70. struct socket;
  71. struct flowi;
  72. struct dst_entry;
  73. struct xfrm_selector;
  74. struct xfrm_policy;
  75. struct xfrm_state;
  76. struct xfrm_user_sec_ctx;
  77. extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
  78. extern int cap_netlink_recv(struct sk_buff *skb, int cap);
  79. extern unsigned long mmap_min_addr;
  80. /*
  81. * Values used in the task_security_ops calls
  82. */
  83. /* setuid or setgid, id0 == uid or gid */
  84. #define LSM_SETID_ID 1
  85. /* setreuid or setregid, id0 == real, id1 == eff */
  86. #define LSM_SETID_RE 2
  87. /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
  88. #define LSM_SETID_RES 4
  89. /* setfsuid or setfsgid, id0 == fsuid or fsgid */
  90. #define LSM_SETID_FS 8
  91. /* forward declares to avoid warnings */
  92. struct nfsctl_arg;
  93. struct sched_param;
  94. struct swap_info_struct;
  95. struct request_sock;
  96. /* bprm_apply_creds unsafe reasons */
  97. #define LSM_UNSAFE_SHARE 1
  98. #define LSM_UNSAFE_PTRACE 2
  99. #define LSM_UNSAFE_PTRACE_CAP 4
  100. #ifdef CONFIG_SECURITY
  101. struct security_mnt_opts {
  102. char **mnt_opts;
  103. int *mnt_opts_flags;
  104. int num_mnt_opts;
  105. };
  106. static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
  107. {
  108. opts->mnt_opts = NULL;
  109. opts->mnt_opts_flags = NULL;
  110. opts->num_mnt_opts = 0;
  111. }
  112. static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
  113. {
  114. int i;
  115. if (opts->mnt_opts)
  116. for (i = 0; i < opts->num_mnt_opts; i++)
  117. kfree(opts->mnt_opts[i]);
  118. kfree(opts->mnt_opts);
  119. opts->mnt_opts = NULL;
  120. kfree(opts->mnt_opts_flags);
  121. opts->mnt_opts_flags = NULL;
  122. opts->num_mnt_opts = 0;
  123. }
  124. /**
  125. * struct security_operations - main security structure
  126. *
  127. * Security module identifier.
  128. *
  129. * @name:
  130. * A string that acts as a unique identifeir for the LSM with max number
  131. * of characters = SECURITY_NAME_MAX.
  132. *
  133. * Security hooks for program execution operations.
  134. *
  135. * @bprm_alloc_security:
  136. * Allocate and attach a security structure to the @bprm->security field.
  137. * The security field is initialized to NULL when the bprm structure is
  138. * allocated.
  139. * @bprm contains the linux_binprm structure to be modified.
  140. * Return 0 if operation was successful.
  141. * @bprm_free_security:
  142. * @bprm contains the linux_binprm structure to be modified.
  143. * Deallocate and clear the @bprm->security field.
  144. * @bprm_apply_creds:
  145. * Compute and set the security attributes of a process being transformed
  146. * by an execve operation based on the old attributes (current->security)
  147. * and the information saved in @bprm->security by the set_security hook.
  148. * Since this hook function (and its caller) are void, this hook can not
  149. * return an error. However, it can leave the security attributes of the
  150. * process unchanged if an access failure occurs at this point.
  151. * bprm_apply_creds is called under task_lock. @unsafe indicates various
  152. * reasons why it may be unsafe to change security state.
  153. * @bprm contains the linux_binprm structure.
  154. * @bprm_post_apply_creds:
  155. * Runs after bprm_apply_creds with the task_lock dropped, so that
  156. * functions which cannot be called safely under the task_lock can
  157. * be used. This hook is a good place to perform state changes on
  158. * the process such as closing open file descriptors to which access
  159. * is no longer granted if the attributes were changed.
  160. * Note that a security module might need to save state between
  161. * bprm_apply_creds and bprm_post_apply_creds to store the decision
  162. * on whether the process may proceed.
  163. * @bprm contains the linux_binprm structure.
  164. * @bprm_set_security:
  165. * Save security information in the bprm->security field, typically based
  166. * on information about the bprm->file, for later use by the apply_creds
  167. * hook. This hook may also optionally check permissions (e.g. for
  168. * transitions between security domains).
  169. * This hook may be called multiple times during a single execve, e.g. for
  170. * interpreters. The hook can tell whether it has already been called by
  171. * checking to see if @bprm->security is non-NULL. If so, then the hook
  172. * may decide either to retain the security information saved earlier or
  173. * to replace it.
  174. * @bprm contains the linux_binprm structure.
  175. * Return 0 if the hook is successful and permission is granted.
  176. * @bprm_check_security:
  177. * This hook mediates the point when a search for a binary handler will
  178. * begin. It allows a check the @bprm->security value which is set in
  179. * the preceding set_security call. The primary difference from
  180. * set_security is that the argv list and envp list are reliably
  181. * available in @bprm. This hook may be called multiple times
  182. * during a single execve; and in each pass set_security is called
  183. * first.
  184. * @bprm contains the linux_binprm structure.
  185. * Return 0 if the hook is successful and permission is granted.
  186. * @bprm_secureexec:
  187. * Return a boolean value (0 or 1) indicating whether a "secure exec"
  188. * is required. The flag is passed in the auxiliary table
  189. * on the initial stack to the ELF interpreter to indicate whether libc
  190. * should enable secure mode.
  191. * @bprm contains the linux_binprm structure.
  192. *
  193. * Security hooks for filesystem operations.
  194. *
  195. * @sb_alloc_security:
  196. * Allocate and attach a security structure to the sb->s_security field.
  197. * The s_security field is initialized to NULL when the structure is
  198. * allocated.
  199. * @sb contains the super_block structure to be modified.
  200. * Return 0 if operation was successful.
  201. * @sb_free_security:
  202. * Deallocate and clear the sb->s_security field.
  203. * @sb contains the super_block structure to be modified.
  204. * @sb_statfs:
  205. * Check permission before obtaining filesystem statistics for the @mnt
  206. * mountpoint.
  207. * @dentry is a handle on the superblock for the filesystem.
  208. * Return 0 if permission is granted.
  209. * @sb_mount:
  210. * Check permission before an object specified by @dev_name is mounted on
  211. * the mount point named by @nd. For an ordinary mount, @dev_name
  212. * identifies a device if the file system type requires a device. For a
  213. * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a
  214. * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
  215. * pathname of the object being mounted.
  216. * @dev_name contains the name for object being mounted.
  217. * @path contains the path for mount point object.
  218. * @type contains the filesystem type.
  219. * @flags contains the mount flags.
  220. * @data contains the filesystem-specific data.
  221. * Return 0 if permission is granted.
  222. * @sb_copy_data:
  223. * Allow mount option data to be copied prior to parsing by the filesystem,
  224. * so that the security module can extract security-specific mount
  225. * options cleanly (a filesystem may modify the data e.g. with strsep()).
  226. * This also allows the original mount data to be stripped of security-
  227. * specific options to avoid having to make filesystems aware of them.
  228. * @type the type of filesystem being mounted.
  229. * @orig the original mount data copied from userspace.
  230. * @copy copied data which will be passed to the security module.
  231. * Returns 0 if the copy was successful.
  232. * @sb_check_sb:
  233. * Check permission before the device with superblock @mnt->sb is mounted
  234. * on the mount point named by @nd.
  235. * @mnt contains the vfsmount for device being mounted.
  236. * @path contains the path for the mount point.
  237. * Return 0 if permission is granted.
  238. * @sb_umount:
  239. * Check permission before the @mnt file system is unmounted.
  240. * @mnt contains the mounted file system.
  241. * @flags contains the unmount flags, e.g. MNT_FORCE.
  242. * Return 0 if permission is granted.
  243. * @sb_umount_close:
  244. * Close any files in the @mnt mounted filesystem that are held open by
  245. * the security module. This hook is called during an umount operation
  246. * prior to checking whether the filesystem is still busy.
  247. * @mnt contains the mounted filesystem.
  248. * @sb_umount_busy:
  249. * Handle a failed umount of the @mnt mounted filesystem, e.g. re-opening
  250. * any files that were closed by umount_close. This hook is called during
  251. * an umount operation if the umount fails after a call to the
  252. * umount_close hook.
  253. * @mnt contains the mounted filesystem.
  254. * @sb_post_remount:
  255. * Update the security module's state when a filesystem is remounted.
  256. * This hook is only called if the remount was successful.
  257. * @mnt contains the mounted file system.
  258. * @flags contains the new filesystem flags.
  259. * @data contains the filesystem-specific data.
  260. * @sb_post_addmount:
  261. * Update the security module's state when a filesystem is mounted.
  262. * This hook is called any time a mount is successfully grafetd to
  263. * the tree.
  264. * @mnt contains the mounted filesystem.
  265. * @mountpoint contains the path for the mount point.
  266. * @sb_pivotroot:
  267. * Check permission before pivoting the root filesystem.
  268. * @old_path contains the path for the new location of the current root (put_old).
  269. * @new_path contains the path for the new root (new_root).
  270. * Return 0 if permission is granted.
  271. * @sb_post_pivotroot:
  272. * Update module state after a successful pivot.
  273. * @old_path contains the path for the old root.
  274. * @new_path contains the path for the new root.
  275. * @sb_get_mnt_opts:
  276. * Get the security relevant mount options used for a superblock
  277. * @sb the superblock to get security mount options from
  278. * @opts binary data structure containing all lsm mount data
  279. * @sb_set_mnt_opts:
  280. * Set the security relevant mount options used for a superblock
  281. * @sb the superblock to set security mount options for
  282. * @opts binary data structure containing all lsm mount data
  283. * @sb_clone_mnt_opts:
  284. * Copy all security options from a given superblock to another
  285. * @oldsb old superblock which contain information to clone
  286. * @newsb new superblock which needs filled in
  287. * @sb_parse_opts_str:
  288. * Parse a string of security data filling in the opts structure
  289. * @options string containing all mount options known by the LSM
  290. * @opts binary data structure usable by the LSM
  291. *
  292. * Security hooks for inode operations.
  293. *
  294. * @inode_alloc_security:
  295. * Allocate and attach a security structure to @inode->i_security. The
  296. * i_security field is initialized to NULL when the inode structure is
  297. * allocated.
  298. * @inode contains the inode structure.
  299. * Return 0 if operation was successful.
  300. * @inode_free_security:
  301. * @inode contains the inode structure.
  302. * Deallocate the inode security structure and set @inode->i_security to
  303. * NULL.
  304. * @inode_init_security:
  305. * Obtain the security attribute name suffix and value to set on a newly
  306. * created inode and set up the incore security field for the new inode.
  307. * This hook is called by the fs code as part of the inode creation
  308. * transaction and provides for atomic labeling of the inode, unlike
  309. * the post_create/mkdir/... hooks called by the VFS. The hook function
  310. * is expected to allocate the name and value via kmalloc, with the caller
  311. * being responsible for calling kfree after using them.
  312. * If the security module does not use security attributes or does
  313. * not wish to put a security attribute on this particular inode,
  314. * then it should return -EOPNOTSUPP to skip this processing.
  315. * @inode contains the inode structure of the newly created inode.
  316. * @dir contains the inode structure of the parent directory.
  317. * @name will be set to the allocated name suffix (e.g. selinux).
  318. * @value will be set to the allocated attribute value.
  319. * @len will be set to the length of the value.
  320. * Returns 0 if @name and @value have been successfully set,
  321. * -EOPNOTSUPP if no security attribute is needed, or
  322. * -ENOMEM on memory allocation failure.
  323. * @inode_create:
  324. * Check permission to create a regular file.
  325. * @dir contains inode structure of the parent of the new file.
  326. * @dentry contains the dentry structure for the file to be created.
  327. * @mode contains the file mode of the file to be created.
  328. * Return 0 if permission is granted.
  329. * @inode_link:
  330. * Check permission before creating a new hard link to a file.
  331. * @old_dentry contains the dentry structure for an existing link to the file.
  332. * @dir contains the inode structure of the parent directory of the new link.
  333. * @new_dentry contains the dentry structure for the new link.
  334. * Return 0 if permission is granted.
  335. * @inode_unlink:
  336. * Check the permission to remove a hard link to a file.
  337. * @dir contains the inode structure of parent directory of the file.
  338. * @dentry contains the dentry structure for file to be unlinked.
  339. * Return 0 if permission is granted.
  340. * @inode_symlink:
  341. * Check the permission to create a symbolic link to a file.
  342. * @dir contains the inode structure of parent directory of the symbolic link.
  343. * @dentry contains the dentry structure of the symbolic link.
  344. * @old_name contains the pathname of file.
  345. * Return 0 if permission is granted.
  346. * @inode_mkdir:
  347. * Check permissions to create a new directory in the existing directory
  348. * associated with inode strcture @dir.
  349. * @dir containst the inode structure of parent of the directory to be created.
  350. * @dentry contains the dentry structure of new directory.
  351. * @mode contains the mode of new directory.
  352. * Return 0 if permission is granted.
  353. * @inode_rmdir:
  354. * Check the permission to remove a directory.
  355. * @dir contains the inode structure of parent of the directory to be removed.
  356. * @dentry contains the dentry structure of directory to be removed.
  357. * Return 0 if permission is granted.
  358. * @inode_mknod:
  359. * Check permissions when creating a special file (or a socket or a fifo
  360. * file created via the mknod system call). Note that if mknod operation
  361. * is being done for a regular file, then the create hook will be called
  362. * and not this hook.
  363. * @dir contains the inode structure of parent of the new file.
  364. * @dentry contains the dentry structure of the new file.
  365. * @mode contains the mode of the new file.
  366. * @dev contains the device number.
  367. * Return 0 if permission is granted.
  368. * @inode_rename:
  369. * Check for permission to rename a file or directory.
  370. * @old_dir contains the inode structure for parent of the old link.
  371. * @old_dentry contains the dentry structure of the old link.
  372. * @new_dir contains the inode structure for parent of the new link.
  373. * @new_dentry contains the dentry structure of the new link.
  374. * Return 0 if permission is granted.
  375. * @inode_readlink:
  376. * Check the permission to read the symbolic link.
  377. * @dentry contains the dentry structure for the file link.
  378. * Return 0 if permission is granted.
  379. * @inode_follow_link:
  380. * Check permission to follow a symbolic link when looking up a pathname.
  381. * @dentry contains the dentry structure for the link.
  382. * @nd contains the nameidata structure for the parent directory.
  383. * Return 0 if permission is granted.
  384. * @inode_permission:
  385. * Check permission before accessing an inode. This hook is called by the
  386. * existing Linux permission function, so a security module can use it to
  387. * provide additional checking for existing Linux permission checks.
  388. * Notice that this hook is called when a file is opened (as well as many
  389. * other operations), whereas the file_security_ops permission hook is
  390. * called when the actual read/write operations are performed.
  391. * @inode contains the inode structure to check.
  392. * @mask contains the permission mask.
  393. * @nd contains the nameidata (may be NULL).
  394. * Return 0 if permission is granted.
  395. * @inode_setattr:
  396. * Check permission before setting file attributes. Note that the kernel
  397. * call to notify_change is performed from several locations, whenever
  398. * file attributes change (such as when a file is truncated, chown/chmod
  399. * operations, transferring disk quotas, etc).
  400. * @dentry contains the dentry structure for the file.
  401. * @attr is the iattr structure containing the new file attributes.
  402. * Return 0 if permission is granted.
  403. * @inode_getattr:
  404. * Check permission before obtaining file attributes.
  405. * @mnt is the vfsmount where the dentry was looked up
  406. * @dentry contains the dentry structure for the file.
  407. * Return 0 if permission is granted.
  408. * @inode_delete:
  409. * @inode contains the inode structure for deleted inode.
  410. * This hook is called when a deleted inode is released (i.e. an inode
  411. * with no hard links has its use count drop to zero). A security module
  412. * can use this hook to release any persistent label associated with the
  413. * inode.
  414. * @inode_setxattr:
  415. * Check permission before setting the extended attributes
  416. * @value identified by @name for @dentry.
  417. * Return 0 if permission is granted.
  418. * @inode_post_setxattr:
  419. * Update inode security field after successful setxattr operation.
  420. * @value identified by @name for @dentry.
  421. * @inode_getxattr:
  422. * Check permission before obtaining the extended attributes
  423. * identified by @name for @dentry.
  424. * Return 0 if permission is granted.
  425. * @inode_listxattr:
  426. * Check permission before obtaining the list of extended attribute
  427. * names for @dentry.
  428. * Return 0 if permission is granted.
  429. * @inode_removexattr:
  430. * Check permission before removing the extended attribute
  431. * identified by @name for @dentry.
  432. * Return 0 if permission is granted.
  433. * @inode_getsecurity:
  434. * Retrieve a copy of the extended attribute representation of the
  435. * security label associated with @name for @inode via @buffer. Note that
  436. * @name is the remainder of the attribute name after the security prefix
  437. * has been removed. @alloc is used to specify of the call should return a
  438. * value via the buffer or just the value length Return size of buffer on
  439. * success.
  440. * @inode_setsecurity:
  441. * Set the security label associated with @name for @inode from the
  442. * extended attribute value @value. @size indicates the size of the
  443. * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
  444. * Note that @name is the remainder of the attribute name after the
  445. * security. prefix has been removed.
  446. * Return 0 on success.
  447. * @inode_listsecurity:
  448. * Copy the extended attribute names for the security labels
  449. * associated with @inode into @buffer. The maximum size of @buffer
  450. * is specified by @buffer_size. @buffer may be NULL to request
  451. * the size of the buffer required.
  452. * Returns number of bytes used/required on success.
  453. * @inode_need_killpriv:
  454. * Called when an inode has been changed.
  455. * @dentry is the dentry being changed.
  456. * Return <0 on error to abort the inode change operation.
  457. * Return 0 if inode_killpriv does not need to be called.
  458. * Return >0 if inode_killpriv does need to be called.
  459. * @inode_killpriv:
  460. * The setuid bit is being removed. Remove similar security labels.
  461. * Called with the dentry->d_inode->i_mutex held.
  462. * @dentry is the dentry being changed.
  463. * Return 0 on success. If error is returned, then the operation
  464. * causing setuid bit removal is failed.
  465. * @inode_getsecid:
  466. * Get the secid associated with the node.
  467. * @inode contains a pointer to the inode.
  468. * @secid contains a pointer to the location where result will be saved.
  469. * In case of failure, @secid will be set to zero.
  470. *
  471. * Security hooks for file operations
  472. *
  473. * @file_permission:
  474. * Check file permissions before accessing an open file. This hook is
  475. * called by various operations that read or write files. A security
  476. * module can use this hook to perform additional checking on these
  477. * operations, e.g. to revalidate permissions on use to support privilege
  478. * bracketing or policy changes. Notice that this hook is used when the
  479. * actual read/write operations are performed, whereas the
  480. * inode_security_ops hook is called when a file is opened (as well as
  481. * many other operations).
  482. * Caveat: Although this hook can be used to revalidate permissions for
  483. * various system call operations that read or write files, it does not
  484. * address the revalidation of permissions for memory-mapped files.
  485. * Security modules must handle this separately if they need such
  486. * revalidation.
  487. * @file contains the file structure being accessed.
  488. * @mask contains the requested permissions.
  489. * Return 0 if permission is granted.
  490. * @file_alloc_security:
  491. * Allocate and attach a security structure to the file->f_security field.
  492. * The security field is initialized to NULL when the structure is first
  493. * created.
  494. * @file contains the file structure to secure.
  495. * Return 0 if the hook is successful and permission is granted.
  496. * @file_free_security:
  497. * Deallocate and free any security structures stored in file->f_security.
  498. * @file contains the file structure being modified.
  499. * @file_ioctl:
  500. * @file contains the file structure.
  501. * @cmd contains the operation to perform.
  502. * @arg contains the operational arguments.
  503. * Check permission for an ioctl operation on @file. Note that @arg can
  504. * sometimes represents a user space pointer; in other cases, it may be a
  505. * simple integer value. When @arg represents a user space pointer, it
  506. * should never be used by the security module.
  507. * Return 0 if permission is granted.
  508. * @file_mmap :
  509. * Check permissions for a mmap operation. The @file may be NULL, e.g.
  510. * if mapping anonymous memory.
  511. * @file contains the file structure for file to map (may be NULL).
  512. * @reqprot contains the protection requested by the application.
  513. * @prot contains the protection that will be applied by the kernel.
  514. * @flags contains the operational flags.
  515. * Return 0 if permission is granted.
  516. * @file_mprotect:
  517. * Check permissions before changing memory access permissions.
  518. * @vma contains the memory region to modify.
  519. * @reqprot contains the protection requested by the application.
  520. * @prot contains the protection that will be applied by the kernel.
  521. * Return 0 if permission is granted.
  522. * @file_lock:
  523. * Check permission before performing file locking operations.
  524. * Note: this hook mediates both flock and fcntl style locks.
  525. * @file contains the file structure.
  526. * @cmd contains the posix-translated lock operation to perform
  527. * (e.g. F_RDLCK, F_WRLCK).
  528. * Return 0 if permission is granted.
  529. * @file_fcntl:
  530. * Check permission before allowing the file operation specified by @cmd
  531. * from being performed on the file @file. Note that @arg can sometimes
  532. * represents a user space pointer; in other cases, it may be a simple
  533. * integer value. When @arg represents a user space pointer, it should
  534. * never be used by the security module.
  535. * @file contains the file structure.
  536. * @cmd contains the operation to be performed.
  537. * @arg contains the operational arguments.
  538. * Return 0 if permission is granted.
  539. * @file_set_fowner:
  540. * Save owner security information (typically from current->security) in
  541. * file->f_security for later use by the send_sigiotask hook.
  542. * @file contains the file structure to update.
  543. * Return 0 on success.
  544. * @file_send_sigiotask:
  545. * Check permission for the file owner @fown to send SIGIO or SIGURG to the
  546. * process @tsk. Note that this hook is sometimes called from interrupt.
  547. * Note that the fown_struct, @fown, is never outside the context of a
  548. * struct file, so the file structure (and associated security information)
  549. * can always be obtained:
  550. * container_of(fown, struct file, f_owner)
  551. * @tsk contains the structure of task receiving signal.
  552. * @fown contains the file owner information.
  553. * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
  554. * Return 0 if permission is granted.
  555. * @file_receive:
  556. * This hook allows security modules to control the ability of a process
  557. * to receive an open file descriptor via socket IPC.
  558. * @file contains the file structure being received.
  559. * Return 0 if permission is granted.
  560. *
  561. * Security hook for dentry
  562. *
  563. * @dentry_open
  564. * Save open-time permission checking state for later use upon
  565. * file_permission, and recheck access if anything has changed
  566. * since inode_permission.
  567. *
  568. * Security hooks for task operations.
  569. *
  570. * @task_create:
  571. * Check permission before creating a child process. See the clone(2)
  572. * manual page for definitions of the @clone_flags.
  573. * @clone_flags contains the flags indicating what should be shared.
  574. * Return 0 if permission is granted.
  575. * @task_alloc_security:
  576. * @p contains the task_struct for child process.
  577. * Allocate and attach a security structure to the p->security field. The
  578. * security field is initialized to NULL when the task structure is
  579. * allocated.
  580. * Return 0 if operation was successful.
  581. * @task_free_security:
  582. * @p contains the task_struct for process.
  583. * Deallocate and clear the p->security field.
  584. * @task_setuid:
  585. * Check permission before setting one or more of the user identity
  586. * attributes of the current process. The @flags parameter indicates
  587. * which of the set*uid system calls invoked this hook and how to
  588. * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
  589. * definitions at the beginning of this file for the @flags values and
  590. * their meanings.
  591. * @id0 contains a uid.
  592. * @id1 contains a uid.
  593. * @id2 contains a uid.
  594. * @flags contains one of the LSM_SETID_* values.
  595. * Return 0 if permission is granted.
  596. * @task_post_setuid:
  597. * Update the module's state after setting one or more of the user
  598. * identity attributes of the current process. The @flags parameter
  599. * indicates which of the set*uid system calls invoked this hook. If
  600. * @flags is LSM_SETID_FS, then @old_ruid is the old fs uid and the other
  601. * parameters are not used.
  602. * @old_ruid contains the old real uid (or fs uid if LSM_SETID_FS).
  603. * @old_euid contains the old effective uid (or -1 if LSM_SETID_FS).
  604. * @old_suid contains the old saved uid (or -1 if LSM_SETID_FS).
  605. * @flags contains one of the LSM_SETID_* values.
  606. * Return 0 on success.
  607. * @task_setgid:
  608. * Check permission before setting one or more of the group identity
  609. * attributes of the current process. The @flags parameter indicates
  610. * which of the set*gid system calls invoked this hook and how to
  611. * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
  612. * definitions at the beginning of this file for the @flags values and
  613. * their meanings.
  614. * @id0 contains a gid.
  615. * @id1 contains a gid.
  616. * @id2 contains a gid.
  617. * @flags contains one of the LSM_SETID_* values.
  618. * Return 0 if permission is granted.
  619. * @task_setpgid:
  620. * Check permission before setting the process group identifier of the
  621. * process @p to @pgid.
  622. * @p contains the task_struct for process being modified.
  623. * @pgid contains the new pgid.
  624. * Return 0 if permission is granted.
  625. * @task_getpgid:
  626. * Check permission before getting the process group identifier of the
  627. * process @p.
  628. * @p contains the task_struct for the process.
  629. * Return 0 if permission is granted.
  630. * @task_getsid:
  631. * Check permission before getting the session identifier of the process
  632. * @p.
  633. * @p contains the task_struct for the process.
  634. * Return 0 if permission is granted.
  635. * @task_getsecid:
  636. * Retrieve the security identifier of the process @p.
  637. * @p contains the task_struct for the process and place is into @secid.
  638. * In case of failure, @secid will be set to zero.
  639. *
  640. * @task_setgroups:
  641. * Check permission before setting the supplementary group set of the
  642. * current process.
  643. * @group_info contains the new group information.
  644. * Return 0 if permission is granted.
  645. * @task_setnice:
  646. * Check permission before setting the nice value of @p to @nice.
  647. * @p contains the task_struct of process.
  648. * @nice contains the new nice value.
  649. * Return 0 if permission is granted.
  650. * @task_setioprio
  651. * Check permission before setting the ioprio value of @p to @ioprio.
  652. * @p contains the task_struct of process.
  653. * @ioprio contains the new ioprio value
  654. * Return 0 if permission is granted.
  655. * @task_getioprio
  656. * Check permission before getting the ioprio value of @p.
  657. * @p contains the task_struct of process.
  658. * Return 0 if permission is granted.
  659. * @task_setrlimit:
  660. * Check permission before setting the resource limits of the current
  661. * process for @resource to @new_rlim. The old resource limit values can
  662. * be examined by dereferencing (current->signal->rlim + resource).
  663. * @resource contains the resource whose limit is being set.
  664. * @new_rlim contains the new limits for @resource.
  665. * Return 0 if permission is granted.
  666. * @task_setscheduler:
  667. * Check permission before setting scheduling policy and/or parameters of
  668. * process @p based on @policy and @lp.
  669. * @p contains the task_struct for process.
  670. * @policy contains the scheduling policy.
  671. * @lp contains the scheduling parameters.
  672. * Return 0 if permission is granted.
  673. * @task_getscheduler:
  674. * Check permission before obtaining scheduling information for process
  675. * @p.
  676. * @p contains the task_struct for process.
  677. * Return 0 if permission is granted.
  678. * @task_movememory
  679. * Check permission before moving memory owned by process @p.
  680. * @p contains the task_struct for process.
  681. * Return 0 if permission is granted.
  682. * @task_kill:
  683. * Check permission before sending signal @sig to @p. @info can be NULL,
  684. * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
  685. * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
  686. * from the kernel and should typically be permitted.
  687. * SIGIO signals are handled separately by the send_sigiotask hook in
  688. * file_security_ops.
  689. * @p contains the task_struct for process.
  690. * @info contains the signal information.
  691. * @sig contains the signal value.
  692. * @secid contains the sid of the process where the signal originated
  693. * Return 0 if permission is granted.
  694. * @task_wait:
  695. * Check permission before allowing a process to reap a child process @p
  696. * and collect its status information.
  697. * @p contains the task_struct for process.
  698. * Return 0 if permission is granted.
  699. * @task_prctl:
  700. * Check permission before performing a process control operation on the
  701. * current process.
  702. * @option contains the operation.
  703. * @arg2 contains a argument.
  704. * @arg3 contains a argument.
  705. * @arg4 contains a argument.
  706. * @arg5 contains a argument.
  707. * @rc_p contains a pointer to communicate back the forced return code
  708. * Return 0 if permission is granted, and non-zero if the security module
  709. * has taken responsibility (setting *rc_p) for the prctl call.
  710. * @task_reparent_to_init:
  711. * Set the security attributes in @p->security for a kernel thread that
  712. * is being reparented to the init task.
  713. * @p contains the task_struct for the kernel thread.
  714. * @task_to_inode:
  715. * Set the security attributes for an inode based on an associated task's
  716. * security attributes, e.g. for /proc/pid inodes.
  717. * @p contains the task_struct for the task.
  718. * @inode contains the inode structure for the inode.
  719. *
  720. * Security hooks for Netlink messaging.
  721. *
  722. * @netlink_send:
  723. * Save security information for a netlink message so that permission
  724. * checking can be performed when the message is processed. The security
  725. * information can be saved using the eff_cap field of the
  726. * netlink_skb_parms structure. Also may be used to provide fine
  727. * grained control over message transmission.
  728. * @sk associated sock of task sending the message.,
  729. * @skb contains the sk_buff structure for the netlink message.
  730. * Return 0 if the information was successfully saved and message
  731. * is allowed to be transmitted.
  732. * @netlink_recv:
  733. * Check permission before processing the received netlink message in
  734. * @skb.
  735. * @skb contains the sk_buff structure for the netlink message.
  736. * @cap indicates the capability required
  737. * Return 0 if permission is granted.
  738. *
  739. * Security hooks for Unix domain networking.
  740. *
  741. * @unix_stream_connect:
  742. * Check permissions before establishing a Unix domain stream connection
  743. * between @sock and @other.
  744. * @sock contains the socket structure.
  745. * @other contains the peer socket structure.
  746. * Return 0 if permission is granted.
  747. * @unix_may_send:
  748. * Check permissions before connecting or sending datagrams from @sock to
  749. * @other.
  750. * @sock contains the socket structure.
  751. * @sock contains the peer socket structure.
  752. * Return 0 if permission is granted.
  753. *
  754. * The @unix_stream_connect and @unix_may_send hooks were necessary because
  755. * Linux provides an alternative to the conventional file name space for Unix
  756. * domain sockets. Whereas binding and connecting to sockets in the file name
  757. * space is mediated by the typical file permissions (and caught by the mknod
  758. * and permission hooks in inode_security_ops), binding and connecting to
  759. * sockets in the abstract name space is completely unmediated. Sufficient
  760. * control of Unix domain sockets in the abstract name space isn't possible
  761. * using only the socket layer hooks, since we need to know the actual target
  762. * socket, which is not looked up until we are inside the af_unix code.
  763. *
  764. * Security hooks for socket operations.
  765. *
  766. * @socket_create:
  767. * Check permissions prior to creating a new socket.
  768. * @family contains the requested protocol family.
  769. * @type contains the requested communications type.
  770. * @protocol contains the requested protocol.
  771. * @kern set to 1 if a kernel socket.
  772. * Return 0 if permission is granted.
  773. * @socket_post_create:
  774. * This hook allows a module to update or allocate a per-socket security
  775. * structure. Note that the security field was not added directly to the
  776. * socket structure, but rather, the socket security information is stored
  777. * in the associated inode. Typically, the inode alloc_security hook will
  778. * allocate and and attach security information to
  779. * sock->inode->i_security. This hook may be used to update the
  780. * sock->inode->i_security field with additional information that wasn't
  781. * available when the inode was allocated.
  782. * @sock contains the newly created socket structure.
  783. * @family contains the requested protocol family.
  784. * @type contains the requested communications type.
  785. * @protocol contains the requested protocol.
  786. * @kern set to 1 if a kernel socket.
  787. * @socket_bind:
  788. * Check permission before socket protocol layer bind operation is
  789. * performed and the socket @sock is bound to the address specified in the
  790. * @address parameter.
  791. * @sock contains the socket structure.
  792. * @address contains the address to bind to.
  793. * @addrlen contains the length of address.
  794. * Return 0 if permission is granted.
  795. * @socket_connect:
  796. * Check permission before socket protocol layer connect operation
  797. * attempts to connect socket @sock to a remote address, @address.
  798. * @sock contains the socket structure.
  799. * @address contains the address of remote endpoint.
  800. * @addrlen contains the length of address.
  801. * Return 0 if permission is granted.
  802. * @socket_listen:
  803. * Check permission before socket protocol layer listen operation.
  804. * @sock contains the socket structure.
  805. * @backlog contains the maximum length for the pending connection queue.
  806. * Return 0 if permission is granted.
  807. * @socket_accept:
  808. * Check permission before accepting a new connection. Note that the new
  809. * socket, @newsock, has been created and some information copied to it,
  810. * but the accept operation has not actually been performed.
  811. * @sock contains the listening socket structure.
  812. * @newsock contains the newly created server socket for connection.
  813. * Return 0 if permission is granted.
  814. * @socket_post_accept:
  815. * This hook allows a security module to copy security
  816. * information into the newly created socket's inode.
  817. * @sock contains the listening socket structure.
  818. * @newsock contains the newly created server socket for connection.
  819. * @socket_sendmsg:
  820. * Check permission before transmitting a message to another socket.
  821. * @sock contains the socket structure.
  822. * @msg contains the message to be transmitted.
  823. * @size contains the size of message.
  824. * Return 0 if permission is granted.
  825. * @socket_recvmsg:
  826. * Check permission before receiving a message from a socket.
  827. * @sock contains the socket structure.
  828. * @msg contains the message structure.
  829. * @size contains the size of message structure.
  830. * @flags contains the operational flags.
  831. * Return 0 if permission is granted.
  832. * @socket_getsockname:
  833. * Check permission before the local address (name) of the socket object
  834. * @sock is retrieved.
  835. * @sock contains the socket structure.
  836. * Return 0 if permission is granted.
  837. * @socket_getpeername:
  838. * Check permission before the remote address (name) of a socket object
  839. * @sock is retrieved.
  840. * @sock contains the socket structure.
  841. * Return 0 if permission is granted.
  842. * @socket_getsockopt:
  843. * Check permissions before retrieving the options associated with socket
  844. * @sock.
  845. * @sock contains the socket structure.
  846. * @level contains the protocol level to retrieve option from.
  847. * @optname contains the name of option to retrieve.
  848. * Return 0 if permission is granted.
  849. * @socket_setsockopt:
  850. * Check permissions before setting the options associated with socket
  851. * @sock.
  852. * @sock contains the socket structure.
  853. * @level contains the protocol level to set options for.
  854. * @optname contains the name of the option to set.
  855. * Return 0 if permission is granted.
  856. * @socket_shutdown:
  857. * Checks permission before all or part of a connection on the socket
  858. * @sock is shut down.
  859. * @sock contains the socket structure.
  860. * @how contains the flag indicating how future sends and receives are handled.
  861. * Return 0 if permission is granted.
  862. * @socket_sock_rcv_skb:
  863. * Check permissions on incoming network packets. This hook is distinct
  864. * from Netfilter's IP input hooks since it is the first time that the
  865. * incoming sk_buff @skb has been associated with a particular socket, @sk.
  866. * @sk contains the sock (not socket) associated with the incoming sk_buff.
  867. * @skb contains the incoming network data.
  868. * @socket_getpeersec_stream:
  869. * This hook allows the security module to provide peer socket security
  870. * state for unix or connected tcp sockets to userspace via getsockopt
  871. * SO_GETPEERSEC. For tcp sockets this can be meaningful if the
  872. * socket is associated with an ipsec SA.
  873. * @sock is the local socket.
  874. * @optval userspace memory where the security state is to be copied.
  875. * @optlen userspace int where the module should copy the actual length
  876. * of the security state.
  877. * @len as input is the maximum length to copy to userspace provided
  878. * by the caller.
  879. * Return 0 if all is well, otherwise, typical getsockopt return
  880. * values.
  881. * @socket_getpeersec_dgram:
  882. * This hook allows the security module to provide peer socket security
  883. * state for udp sockets on a per-packet basis to userspace via
  884. * getsockopt SO_GETPEERSEC. The application must first have indicated
  885. * the IP_PASSSEC option via getsockopt. It can then retrieve the
  886. * security state returned by this hook for a packet via the SCM_SECURITY
  887. * ancillary message type.
  888. * @skb is the skbuff for the packet being queried
  889. * @secdata is a pointer to a buffer in which to copy the security data
  890. * @seclen is the maximum length for @secdata
  891. * Return 0 on success, error on failure.
  892. * @sk_alloc_security:
  893. * Allocate and attach a security structure to the sk->sk_security field,
  894. * which is used to copy security attributes between local stream sockets.
  895. * @sk_free_security:
  896. * Deallocate security structure.
  897. * @sk_clone_security:
  898. * Clone/copy security structure.
  899. * @sk_getsecid:
  900. * Retrieve the LSM-specific secid for the sock to enable caching of network
  901. * authorizations.
  902. * @sock_graft:
  903. * Sets the socket's isec sid to the sock's sid.
  904. * @inet_conn_request:
  905. * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid.
  906. * @inet_csk_clone:
  907. * Sets the new child socket's sid to the openreq sid.
  908. * @inet_conn_established:
  909. * Sets the connection's peersid to the secmark on skb.
  910. * @req_classify_flow:
  911. * Sets the flow's sid to the openreq sid.
  912. *
  913. * Security hooks for XFRM operations.
  914. *
  915. * @xfrm_policy_alloc_security:
  916. * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
  917. * Database used by the XFRM system.
  918. * @sec_ctx contains the security context information being provided by
  919. * the user-level policy update program (e.g., setkey).
  920. * Allocate a security structure to the xp->security field; the security
  921. * field is initialized to NULL when the xfrm_policy is allocated.
  922. * Return 0 if operation was successful (memory to allocate, legal context)
  923. * @xfrm_policy_clone_security:
  924. * @old_ctx contains an existing xfrm_sec_ctx.
  925. * @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
  926. * Allocate a security structure in new_ctxp that contains the
  927. * information from the old_ctx structure.
  928. * Return 0 if operation was successful (memory to allocate).
  929. * @xfrm_policy_free_security:
  930. * @ctx contains the xfrm_sec_ctx
  931. * Deallocate xp->security.
  932. * @xfrm_policy_delete_security:
  933. * @ctx contains the xfrm_sec_ctx.
  934. * Authorize deletion of xp->security.
  935. * @xfrm_state_alloc_security:
  936. * @x contains the xfrm_state being added to the Security Association
  937. * Database by the XFRM system.
  938. * @sec_ctx contains the security context information being provided by
  939. * the user-level SA generation program (e.g., setkey or racoon).
  940. * @secid contains the secid from which to take the mls portion of the context.
  941. * Allocate a security structure to the x->security field; the security
  942. * field is initialized to NULL when the xfrm_state is allocated. Set the
  943. * context to correspond to either sec_ctx or polsec, with the mls portion
  944. * taken from secid in the latter case.
  945. * Return 0 if operation was successful (memory to allocate, legal context).
  946. * @xfrm_state_free_security:
  947. * @x contains the xfrm_state.
  948. * Deallocate x->security.
  949. * @xfrm_state_delete_security:
  950. * @x contains the xfrm_state.
  951. * Authorize deletion of x->security.
  952. * @xfrm_policy_lookup:
  953. * @ctx contains the xfrm_sec_ctx for which the access control is being
  954. * checked.
  955. * @fl_secid contains the flow security label that is used to authorize
  956. * access to the policy xp.
  957. * @dir contains the direction of the flow (input or output).
  958. * Check permission when a flow selects a xfrm_policy for processing
  959. * XFRMs on a packet. The hook is called when selecting either a
  960. * per-socket policy or a generic xfrm policy.
  961. * Return 0 if permission is granted, -ESRCH otherwise, or -errno
  962. * on other errors.
  963. * @xfrm_state_pol_flow_match:
  964. * @x contains the state to match.
  965. * @xp contains the policy to check for a match.
  966. * @fl contains the flow to check for a match.
  967. * Return 1 if there is a match.
  968. * @xfrm_decode_session:
  969. * @skb points to skb to decode.
  970. * @secid points to the flow key secid to set.
  971. * @ckall says if all xfrms used should be checked for same secid.
  972. * Return 0 if ckall is zero or all xfrms used have the same secid.
  973. *
  974. * Security hooks affecting all Key Management operations
  975. *
  976. * @key_alloc:
  977. * Permit allocation of a key and assign security data. Note that key does
  978. * not have a serial number assigned at this point.
  979. * @key points to the key.
  980. * @flags is the allocation flags
  981. * Return 0 if permission is granted, -ve error otherwise.
  982. * @key_free:
  983. * Notification of destruction; free security data.
  984. * @key points to the key.
  985. * No return value.
  986. * @key_permission:
  987. * See whether a specific operational right is granted to a process on a
  988. * key.
  989. * @key_ref refers to the key (key pointer + possession attribute bit).
  990. * @context points to the process to provide the context against which to
  991. * evaluate the security data on the key.
  992. * @perm describes the combination of permissions required of this key.
  993. * Return 1 if permission granted, 0 if permission denied and -ve it the
  994. * normal permissions model should be effected.
  995. * @key_getsecurity:
  996. * Get a textual representation of the security context attached to a key
  997. * for the purposes of honouring KEYCTL_GETSECURITY. This function
  998. * allocates the storage for the NUL-terminated string and the caller
  999. * should free it.
  1000. * @key points to the key to be queried.
  1001. * @_buffer points to a pointer that should be set to point to the
  1002. * resulting string (if no label or an error occurs).
  1003. * Return the length of the string (including terminating NUL) or -ve if
  1004. * an error.
  1005. * May also return 0 (and a NULL buffer pointer) if there is no label.
  1006. *
  1007. * Security hooks affecting all System V IPC operations.
  1008. *
  1009. * @ipc_permission:
  1010. * Check permissions for access to IPC
  1011. * @ipcp contains the kernel IPC permission structure
  1012. * @flag contains the desired (requested) permission set
  1013. * Return 0 if permission is granted.
  1014. * @ipc_getsecid:
  1015. * Get the secid associated with the ipc object.
  1016. * @ipcp contains the kernel IPC permission structure.
  1017. * @secid contains a pointer to the location where result will be saved.
  1018. * In case of failure, @secid will be set to zero.
  1019. *
  1020. * Security hooks for individual messages held in System V IPC message queues
  1021. * @msg_msg_alloc_security:
  1022. * Allocate and attach a security structure to the msg->security field.
  1023. * The security field is initialized to NULL when the structure is first
  1024. * created.
  1025. * @msg contains the message structure to be modified.
  1026. * Return 0 if operation was successful and permission is granted.
  1027. * @msg_msg_free_security:
  1028. * Deallocate the security structure for this message.
  1029. * @msg contains the message structure to be modified.
  1030. *
  1031. * Security hooks for System V IPC Message Queues
  1032. *
  1033. * @msg_queue_alloc_security:
  1034. * Allocate and attach a security structure to the
  1035. * msq->q_perm.security field. The security field is initialized to
  1036. * NULL when the structure is first created.
  1037. * @msq contains the message queue structure to be modified.
  1038. * Return 0 if operation was successful and permission is granted.
  1039. * @msg_queue_free_security:
  1040. * Deallocate security structure for this message queue.
  1041. * @msq contains the message queue structure to be modified.
  1042. * @msg_queue_associate:
  1043. * Check permission when a message queue is requested through the
  1044. * msgget system call. This hook is only called when returning the
  1045. * message queue identifier for an existing message queue, not when a
  1046. * new message queue is created.
  1047. * @msq contains the message queue to act upon.
  1048. * @msqflg contains the operation control flags.
  1049. * Return 0 if permission is granted.
  1050. * @msg_queue_msgctl:
  1051. * Check permission when a message control operation specified by @cmd
  1052. * is to be performed on the message queue @msq.
  1053. * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
  1054. * @msq contains the message queue to act upon. May be NULL.
  1055. * @cmd contains the operation to be performed.
  1056. * Return 0 if permission is granted.
  1057. * @msg_queue_msgsnd:
  1058. * Check permission before a message, @msg, is enqueued on the message
  1059. * queue, @msq.
  1060. * @msq contains the message queue to send message to.
  1061. * @msg contains the message to be enqueued.
  1062. * @msqflg contains operational flags.
  1063. * Return 0 if permission is granted.
  1064. * @msg_queue_msgrcv:
  1065. * Check permission before a message, @msg, is removed from the message
  1066. * queue, @msq. The @target task structure contains a pointer to the
  1067. * process that will be receiving the message (not equal to the current
  1068. * process when inline receives are being performed).
  1069. * @msq contains the message queue to retrieve message from.
  1070. * @msg contains the message destination.
  1071. * @target contains the task structure for recipient process.
  1072. * @type contains the type of message requested.
  1073. * @mode contains the operational flags.
  1074. * Return 0 if permission is granted.
  1075. *
  1076. * Security hooks for System V Shared Memory Segments
  1077. *
  1078. * @shm_alloc_security:
  1079. * Allocate and attach a security structure to the shp->shm_perm.security
  1080. * field. The security field is initialized to NULL when the structure is
  1081. * first created.
  1082. * @shp contains the shared memory structure to be modified.
  1083. * Return 0 if operation was successful and permission is granted.
  1084. * @shm_free_security:
  1085. * Deallocate the security struct for this memory segment.
  1086. * @shp contains the shared memory structure to be modified.
  1087. * @shm_associate:
  1088. * Check permission when a shared memory region is requested through the
  1089. * shmget system call. This hook is only called when returning the shared
  1090. * memory region identifier for an existing region, not when a new shared
  1091. * memory region is created.
  1092. * @shp contains the shared memory structure to be modified.
  1093. * @shmflg contains the operation control flags.
  1094. * Return 0 if permission is granted.
  1095. * @shm_shmctl:
  1096. * Check permission when a shared memory control operation specified by
  1097. * @cmd is to be performed on the shared memory region @shp.
  1098. * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
  1099. * @shp contains shared memory structure to be modified.
  1100. * @cmd contains the operation to be performed.
  1101. * Return 0 if permission is granted.
  1102. * @shm_shmat:
  1103. * Check permissions prior to allowing the shmat system call to attach the
  1104. * shared memory segment @shp to the data segment of the calling process.
  1105. * The attaching address is specified by @shmaddr.
  1106. * @shp contains the shared memory structure to be modified.
  1107. * @shmaddr contains the address to attach memory region to.
  1108. * @shmflg contains the operational flags.
  1109. * Return 0 if permission is granted.
  1110. *
  1111. * Security hooks for System V Semaphores
  1112. *
  1113. * @sem_alloc_security:
  1114. * Allocate and attach a security structure to the sma->sem_perm.security
  1115. * field. The security field is initialized to NULL when the structure is
  1116. * first created.
  1117. * @sma contains the semaphore structure
  1118. * Return 0 if operation was successful and permission is granted.
  1119. * @sem_free_security:
  1120. * deallocate security struct for this semaphore
  1121. * @sma contains the semaphore structure.
  1122. * @sem_associate:
  1123. * Check permission when a semaphore is requested through the semget
  1124. * system call. This hook is only called when returning the semaphore
  1125. * identifier for an existing semaphore, not when a new one must be
  1126. * created.
  1127. * @sma contains the semaphore structure.
  1128. * @semflg contains the operation control flags.
  1129. * Return 0 if permission is granted.
  1130. * @sem_semctl:
  1131. * Check permission when a semaphore operation specified by @cmd is to be
  1132. * performed on the semaphore @sma. The @sma may be NULL, e.g. for
  1133. * IPC_INFO or SEM_INFO.
  1134. * @sma contains the semaphore structure. May be NULL.
  1135. * @cmd contains the operation to be performed.
  1136. * Return 0 if permission is granted.
  1137. * @sem_semop
  1138. * Check permissions before performing operations on members of the
  1139. * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
  1140. * may be modified.
  1141. * @sma contains the semaphore structure.
  1142. * @sops contains the operations to perform.
  1143. * @nsops contains the number of operations to perform.
  1144. * @alter contains the flag indicating whether changes are to be made.
  1145. * Return 0 if permission is granted.
  1146. *
  1147. * @ptrace:
  1148. * Check permission before allowing the @parent process to trace the
  1149. * @child process.
  1150. * Security modules may also want to perform a process tracing check
  1151. * during an execve in the set_security or apply_creds hooks of
  1152. * binprm_security_ops if the process is being traced and its security
  1153. * attributes would be changed by the execve.
  1154. * @parent contains the task_struct structure for parent process.
  1155. * @child contains the task_struct structure for child process.
  1156. * @mode contains the PTRACE_MODE flags indicating the form of access.
  1157. * Return 0 if permission is granted.
  1158. * @capget:
  1159. * Get the @effective, @inheritable, and @permitted capability sets for
  1160. * the @target process. The hook may also perform permission checking to
  1161. * determine if the current process is allowed to see the capability sets
  1162. * of the @target process.
  1163. * @target contains the task_struct structure for target process.
  1164. * @effective contains the effective capability set.
  1165. * @inheritable contains the inheritable capability set.
  1166. * @permitted contains the permitted capability set.
  1167. * Return 0 if the capability sets were successfully obtained.
  1168. * @capset_check:
  1169. * Check permission before setting the @effective, @inheritable, and
  1170. * @permitted capability sets for the @target process.
  1171. * Caveat: @target is also set to current if a set of processes is
  1172. * specified (i.e. all processes other than current and init or a
  1173. * particular process group). Hence, the capset_set hook may need to
  1174. * revalidate permission to the actual target process.
  1175. * @target contains the task_struct structure for target process.
  1176. * @effective contains the effective capability set.
  1177. * @inheritable contains the inheritable capability set.
  1178. * @permitted contains the permitted capability set.
  1179. * Return 0 if permission is granted.
  1180. * @capset_set:
  1181. * Set the @effective, @inheritable, and @permitted capability sets for
  1182. * the @target process. Since capset_check cannot always check permission
  1183. * to the real @target process, this hook may also perform permission
  1184. * checking to determine if the current process is allowed to set the
  1185. * capability sets of the @target process. However, this hook has no way
  1186. * of returning an error due to the structure of the sys_capset code.
  1187. * @target contains the task_struct structure for target process.
  1188. * @effective contains the effective capability set.
  1189. * @inheritable contains the inheritable capability set.
  1190. * @permitted contains the permitted capability set.
  1191. * @capable:
  1192. * Check whether the @tsk process has the @cap capability.
  1193. * @tsk contains the task_struct for the process.
  1194. * @cap contains the capability <include/linux/capability.h>.
  1195. * Return 0 if the capability is granted for @tsk.
  1196. * @acct:
  1197. * Check permission before enabling or disabling process accounting. If
  1198. * accounting is being enabled, then @file refers to the open file used to
  1199. * store accounting records. If accounting is being disabled, then @file
  1200. * is NULL.
  1201. * @file contains the file structure for the accounting file (may be NULL).
  1202. * Return 0 if permission is granted.
  1203. * @sysctl:
  1204. * Check permission before accessing the @table sysctl variable in the
  1205. * manner specified by @op.
  1206. * @table contains the ctl_table structure for the sysctl variable.
  1207. * @op contains the operation (001 = search, 002 = write, 004 = read).
  1208. * Return 0 if permission is granted.
  1209. * @syslog:
  1210. * Check permission before accessing the kernel message ring or changing
  1211. * logging to the console.
  1212. * See the syslog(2) manual page for an explanation of the @type values.
  1213. * @type contains the type of action.
  1214. * Return 0 if permission is granted.
  1215. * @settime:
  1216. * Check permission to change the system time.
  1217. * struct timespec and timezone are defined in include/linux/time.h
  1218. * @ts contains new time
  1219. * @tz contains new timezone
  1220. * Return 0 if permission is granted.
  1221. * @vm_enough_memory:
  1222. * Check permissions for allocating a new virtual mapping.
  1223. * @mm contains the mm struct it is being added to.
  1224. * @pages contains the number of pages.
  1225. * Return 0 if permission is granted.
  1226. *
  1227. * @register_security:
  1228. * allow module stacking.
  1229. * @name contains the name of the security module being stacked.
  1230. * @ops contains a pointer to the struct security_operations of the module to stack.
  1231. *
  1232. * @secid_to_secctx:
  1233. * Convert secid to security context.
  1234. * @secid contains the security ID.
  1235. * @secdata contains the pointer that stores the converted security context.
  1236. * @secctx_to_secid:
  1237. * Convert security context to secid.
  1238. * @secid contains the pointer to the generated security ID.
  1239. * @secdata contains the security context.
  1240. *
  1241. * @release_secctx:
  1242. * Release the security context.
  1243. * @secdata contains the security context.
  1244. * @seclen contains the length of the security context.
  1245. *
  1246. * Security hooks for Audit
  1247. *
  1248. * @audit_rule_init:
  1249. * Allocate and initialize an LSM audit rule structure.
  1250. * @field contains the required Audit action. Fields flags are defined in include/linux/audit.h
  1251. * @op contains the operator the rule uses.
  1252. * @rulestr contains the context where the rule will be applied to.
  1253. * @lsmrule contains a pointer to receive the result.
  1254. * Return 0 if @lsmrule has been successfully set,
  1255. * -EINVAL in case of an invalid rule.
  1256. *
  1257. * @audit_rule_known:
  1258. * Specifies whether given @rule contains any fields related to current LSM.
  1259. * @rule contains the audit rule of interest.
  1260. * Return 1 in case of relation found, 0 otherwise.
  1261. *
  1262. * @audit_rule_match:
  1263. * Determine if given @secid matches a rule previously approved
  1264. * by @audit_rule_known.
  1265. * @secid contains the security id in question.
  1266. * @field contains the field which relates to current LSM.
  1267. * @op contains the operator that will be used for matching.
  1268. * @rule points to the audit rule that will be checked against.
  1269. * @actx points to the audit context associated with the check.
  1270. * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
  1271. *
  1272. * @audit_rule_free:
  1273. * Deallocate the LSM audit rule structure previously allocated by
  1274. * audit_rule_init.
  1275. * @rule contains the allocated rule
  1276. *
  1277. * This is the main security structure.
  1278. */
  1279. struct security_operations {
  1280. char name[SECURITY_NAME_MAX + 1];
  1281. int (*ptrace) (struct task_struct *parent, struct task_struct *child,
  1282. unsigned int mode);
  1283. int (*capget) (struct task_struct *target,
  1284. kernel_cap_t *effective,
  1285. kernel_cap_t *inheritable, kernel_cap_t *permitted);
  1286. int (*capset_check) (struct task_struct *target,
  1287. kernel_cap_t *effective,
  1288. kernel_cap_t *inheritable,
  1289. kernel_cap_t *permitted);
  1290. void (*capset_set) (struct task_struct *target,
  1291. kernel_cap_t *effective,
  1292. kernel_cap_t *inheritable,
  1293. kernel_cap_t *permitted);
  1294. int (*capable) (struct task_struct *tsk, int cap);
  1295. int (*acct) (struct file *file);
  1296. int (*sysctl) (struct ctl_table *table, int op);
  1297. int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
  1298. int (*quota_on) (struct dentry *dentry);
  1299. int (*syslog) (int type);
  1300. int (*settime) (struct timespec *ts, struct timezone *tz);
  1301. int (*vm_enough_memory) (struct mm_struct *mm, long pages);
  1302. int (*bprm_alloc_security) (struct linux_binprm *bprm);
  1303. void (*bprm_free_security) (struct linux_binprm *bprm);
  1304. void (*bprm_apply_creds) (struct linux_binprm *bprm, int unsafe);
  1305. void (*bprm_post_apply_creds) (struct linux_binprm *bprm);
  1306. int (*bprm_set_security) (struct linux_binprm *bprm);
  1307. int (*bprm_check_security) (struct linux_binprm *bprm);
  1308. int (*bprm_secureexec) (struct linux_binprm *bprm);
  1309. int (*sb_alloc_security) (struct super_block *sb);
  1310. void (*sb_free_security) (struct super_block *sb);
  1311. int (*sb_copy_data) (char *orig, char *copy);
  1312. int (*sb_kern_mount) (struct super_block *sb, void *data);
  1313. int (*sb_statfs) (struct dentry *dentry);
  1314. int (*sb_mount) (char *dev_name, struct path *path,
  1315. char *type, unsigned long flags, void *data);
  1316. int (*sb_check_sb) (struct vfsmount *mnt, struct path *path);
  1317. int (*sb_umount) (struct vfsmount *mnt, int flags);
  1318. void (*sb_umount_close) (struct vfsmount *mnt);
  1319. void (*sb_umount_busy) (struct vfsmount *mnt);
  1320. void (*sb_post_remount) (struct vfsmount *mnt,
  1321. unsigned long flags, void *data);
  1322. void (*sb_post_addmount) (struct vfsmount *mnt,
  1323. struct path *mountpoint);
  1324. int (*sb_pivotroot) (struct path *old_path,
  1325. struct path *new_path);
  1326. void (*sb_post_pivotroot) (struct path *old_path,
  1327. struct path *new_path);
  1328. int (*sb_get_mnt_opts) (const struct super_block *sb,
  1329. struct security_mnt_opts *opts);
  1330. int (*sb_set_mnt_opts) (struct super_block *sb,
  1331. struct security_mnt_opts *opts);
  1332. void (*sb_clone_mnt_opts) (const struct super_block *oldsb,
  1333. struct super_block *newsb);
  1334. int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
  1335. int (*inode_alloc_security) (struct inode *inode);
  1336. void (*inode_free_security) (struct inode *inode);
  1337. int (*inode_init_security) (struct inode *inode, struct inode *dir,
  1338. char **name, void **value, size_t *len);
  1339. int (*inode_create) (struct inode *dir,
  1340. struct dentry *dentry, int mode);
  1341. int (*inode_link) (struct dentry *old_dentry,
  1342. struct inode *dir, struct dentry *new_dentry);
  1343. int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
  1344. int (*inode_symlink) (struct inode *dir,
  1345. struct dentry *dentry, const char *old_name);
  1346. int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, int mode);
  1347. int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
  1348. int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
  1349. int mode, dev_t dev);
  1350. int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
  1351. struct inode *new_dir, struct dentry *new_dentry);
  1352. int (*inode_readlink) (struct dentry *dentry);
  1353. int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
  1354. int (*inode_permission) (struct inode *inode, int mask, struct nameidata *nd);
  1355. int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
  1356. int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
  1357. void (*inode_delete) (struct inode *inode);
  1358. int (*inode_setxattr) (struct dentry *dentry, const char *name,
  1359. const void *value, size_t size, int flags);
  1360. void (*inode_post_setxattr) (struct dentry *dentry, const char *name,
  1361. const void *value, size_t size, int flags);
  1362. int (*inode_getxattr) (struct dentry *dentry, const char *name);
  1363. int (*inode_listxattr) (struct dentry *dentry);
  1364. int (*inode_removexattr) (struct dentry *dentry, const char *name);
  1365. int (*inode_need_killpriv) (struct dentry *dentry);
  1366. int (*inode_killpriv) (struct dentry *dentry);
  1367. int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc);
  1368. int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags);
  1369. int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size);
  1370. void (*inode_getsecid) (const struct inode *inode, u32 *secid);
  1371. int (*file_permission) (struct file *file, int mask);
  1372. int (*file_alloc_security) (struct file *file);
  1373. void (*file_free_security) (struct file *file);
  1374. int (*file_ioctl) (struct file *file, unsigned int cmd,
  1375. unsigned long arg);
  1376. int (*file_mmap) (struct file *file,
  1377. unsigned long reqprot, unsigned long prot,
  1378. unsigned long flags, unsigned long addr,
  1379. unsigned long addr_only);
  1380. int (*file_mprotect) (struct vm_area_struct *vma,
  1381. unsigned long reqprot,
  1382. unsigned long prot);
  1383. int (*file_lock) (struct file *file, unsigned int cmd);
  1384. int (*file_fcntl) (struct file *file, unsigned int cmd,
  1385. unsigned long arg);
  1386. int (*file_set_fowner) (struct file *file);
  1387. int (*file_send_sigiotask) (struct task_struct *tsk,
  1388. struct fown_struct *fown, int sig);
  1389. int (*file_receive) (struct file *file);
  1390. int (*dentry_open) (struct file *file);
  1391. int (*task_create) (unsigned long clone_flags);
  1392. int (*task_alloc_security) (struct task_struct *p);
  1393. void (*task_free_security) (struct task_struct *p);
  1394. int (*task_setuid) (uid_t id0, uid_t id1, uid_t id2, int flags);
  1395. int (*task_post_setuid) (uid_t old_ruid /* or fsuid */ ,
  1396. uid_t old_euid, uid_t old_suid, int flags);
  1397. int (*task_setgid) (gid_t id0, gid_t id1, gid_t id2, int flags);
  1398. int (*task_setpgid) (struct task_struct *p, pid_t pgid);
  1399. int (*task_getpgid) (struct task_struct *p);
  1400. int (*task_getsid) (struct task_struct *p);
  1401. void (*task_getsecid) (struct task_struct *p, u32 *secid);
  1402. int (*task_setgroups) (struct group_info *group_info);
  1403. int (*task_setnice) (struct task_struct *p, int nice);
  1404. int (*task_setioprio) (struct task_struct *p, int ioprio);
  1405. int (*task_getioprio) (struct task_struct *p);
  1406. int (*task_setrlimit) (unsigned int resource, struct rlimit *new_rlim);
  1407. int (*task_setscheduler) (struct task_struct *p, int policy,
  1408. struct sched_param *lp);
  1409. int (*task_getscheduler) (struct task_struct *p);
  1410. int (*task_movememory) (struct task_struct *p);
  1411. int (*task_kill) (struct task_struct *p,
  1412. struct siginfo *info, int sig, u32 secid);
  1413. int (*task_wait) (struct task_struct *p);
  1414. int (*task_prctl) (int option, unsigned long arg2,
  1415. unsigned long arg3, unsigned long arg4,
  1416. unsigned long arg5, long *rc_p);
  1417. void (*task_reparent_to_init) (struct task_struct *p);
  1418. void (*task_to_inode) (struct task_struct *p, struct inode *inode);
  1419. int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
  1420. void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
  1421. int (*msg_msg_alloc_security) (struct msg_msg *msg);
  1422. void (*msg_msg_free_security) (struct msg_msg *msg);
  1423. int (*msg_queue_alloc_security) (struct msg_queue *msq);
  1424. void (*msg_queue_free_security) (struct msg_queue *msq);
  1425. int (*msg_queue_associate) (struct msg_queue *msq, int msqflg);
  1426. int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd);
  1427. int (*msg_queue_msgsnd) (struct msg_queue *msq,
  1428. struct msg_msg *msg, int msqflg);
  1429. int (*msg_queue_msgrcv) (struct msg_queue *msq,
  1430. struct msg_msg *msg,
  1431. struct task_struct *target,
  1432. long type, int mode);
  1433. int (*shm_alloc_security) (struct shmid_kernel *shp);
  1434. void (*shm_free_security) (struct shmid_kernel *shp);
  1435. int (*shm_associate) (struct shmid_kernel *shp, int shmflg);
  1436. int (*shm_shmctl) (struct shmid_kernel *shp, int cmd);
  1437. int (*shm_shmat) (struct shmid_kernel *shp,
  1438. char __user *shmaddr, int shmflg);
  1439. int (*sem_alloc_security) (struct sem_array *sma);
  1440. void (*sem_free_security) (struct sem_array *sma);
  1441. int (*sem_associate) (struct sem_array *sma, int semflg);
  1442. int (*sem_semctl) (struct sem_array *sma, int cmd);
  1443. int (*sem_semop) (struct sem_array *sma,
  1444. struct sembuf *sops, unsigned nsops, int alter);
  1445. int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
  1446. int (*netlink_recv) (struct sk_buff *skb, int cap);
  1447. /* allow module stacking */
  1448. int (*register_security) (const char *name,
  1449. struct security_operations *ops);
  1450. void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
  1451. int (*getprocattr) (struct task_struct *p, char *name, char **value);
  1452. int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size);
  1453. int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen);
  1454. int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid);
  1455. void (*release_secctx) (char *secdata, u32 seclen);
  1456. #ifdef CONFIG_SECURITY_NETWORK
  1457. int (*unix_stream_connect) (struct socket *sock,
  1458. struct socket *other, struct sock *newsk);
  1459. int (*unix_may_send) (struct socket *sock, struct socket *other);
  1460. int (*socket_create) (int family, int type, int protocol, int kern);
  1461. int (*socket_post_create) (struct socket *sock, int family,
  1462. int type, int protocol, int kern);
  1463. int (*socket_bind) (struct socket *sock,
  1464. struct sockaddr *address, int addrlen);
  1465. int (*socket_connect) (struct socket *sock,
  1466. struct sockaddr *address, int addrlen);
  1467. int (*socket_listen) (struct socket *sock, int backlog);
  1468. int (*socket_accept) (struct socket *sock, struct socket *newsock);
  1469. void (*socket_post_accept) (struct socket *sock,
  1470. struct socket *newsock);
  1471. int (*socket_sendmsg) (struct socket *sock,
  1472. struct msghdr *msg, int size);
  1473. int (*socket_recvmsg) (struct socket *sock,
  1474. struct msghdr *msg, int size, int flags);
  1475. int (*socket_getsockname) (struct socket *sock);
  1476. int (*socket_getpeername) (struct socket *sock);
  1477. int (*socket_getsockopt) (struct socket *sock, int level, int optname);
  1478. int (*socket_setsockopt) (struct socket *sock, int level, int optname);
  1479. int (*socket_shutdown) (struct socket *sock, int how);
  1480. int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb);
  1481. int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
  1482. int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
  1483. int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
  1484. void (*sk_free_security) (struct sock *sk);
  1485. void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
  1486. void (*sk_getsecid) (struct sock *sk, u32 *secid);
  1487. void (*sock_graft) (struct sock *sk, struct socket *parent);
  1488. int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb,
  1489. struct request_sock *req);
  1490. void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req);
  1491. void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb);
  1492. void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
  1493. #endif /* CONFIG_SECURITY_NETWORK */
  1494. #ifdef CONFIG_SECURITY_NETWORK_XFRM
  1495. int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
  1496. struct xfrm_user_sec_ctx *sec_ctx);
  1497. int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx);
  1498. void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx);
  1499. int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx);
  1500. int (*xfrm_state_alloc_security) (struct xfrm_state *x,
  1501. struct xfrm_user_sec_ctx *sec_ctx,
  1502. u32 secid);
  1503. void (*xfrm_state_free_security) (struct xfrm_state *x);
  1504. int (*xfrm_state_delete_security) (struct xfrm_state *x);
  1505. int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
  1506. int (*xfrm_state_pol_flow_match) (struct xfrm_state *x,
  1507. struct xfrm_policy *xp,
  1508. struct flowi *fl);
  1509. int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
  1510. #endif /* CONFIG_SECURITY_NETWORK_XFRM */
  1511. /* key management security hooks */
  1512. #ifdef CONFIG_KEYS
  1513. int (*key_alloc) (struct key *key, struct task_struct *tsk, unsigned long flags);
  1514. void (*key_free) (struct key *key);
  1515. int (*key_permission) (key_ref_t key_ref,
  1516. struct task_struct *context,
  1517. key_perm_t perm);
  1518. int (*key_getsecurity)(struct key *key, char **_buffer);
  1519. #endif /* CONFIG_KEYS */
  1520. #ifdef CONFIG_AUDIT
  1521. int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
  1522. int (*audit_rule_known) (struct audit_krule *krule);
  1523. int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
  1524. struct audit_context *actx);
  1525. void (*audit_rule_free) (void *lsmrule);
  1526. #endif /* CONFIG_AUDIT */
  1527. };
  1528. /* prototypes */
  1529. extern int security_init(void);
  1530. extern int security_module_enable(struct security_operations *ops);
  1531. extern int register_security(struct security_operations *ops);
  1532. extern int mod_reg_security(const char *name, struct security_operations *ops);
  1533. extern struct dentry *securityfs_create_file(const char *name, mode_t mode,
  1534. struct dentry *parent, void *data,
  1535. const struct file_operations *fops);
  1536. extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
  1537. extern void securityfs_remove(struct dentry *dentry);
  1538. /* Security operations */
  1539. int security_ptrace(struct task_struct *parent, struct task_struct *child,
  1540. unsigned int mode);
  1541. int security_capget(struct task_struct *target,
  1542. kernel_cap_t *effective,
  1543. kernel_cap_t *inheritable,
  1544. kernel_cap_t *permitted);
  1545. int security_capset_check(struct task_struct *target,
  1546. kernel_cap_t *effective,
  1547. kernel_cap_t *inheritable,
  1548. kernel_cap_t *permitted);
  1549. void security_capset_set(struct task_struct *target,
  1550. kernel_cap_t *effective,
  1551. kernel_cap_t *inheritable,
  1552. kernel_cap_t *permitted);
  1553. int security_capable(struct task_struct *tsk, int cap);
  1554. int security_acct(struct file *file);
  1555. int security_sysctl(struct ctl_table *table, int op);
  1556. int security_quotactl(int cmds, int type, int id, struct super_block *sb);
  1557. int security_quota_on(struct dentry *dentry);
  1558. int security_syslog(int type);
  1559. int security_settime(struct timespec *ts, struct timezone *tz);
  1560. int security_vm_enough_memory(long pages);
  1561. int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
  1562. int security_bprm_alloc(struct linux_binprm *bprm);
  1563. void security_bprm_free(struct linux_binprm *bprm);
  1564. void security_bprm_apply_creds(struct linux_binprm *bprm, int unsafe);
  1565. void security_bprm_post_apply_creds(struct linux_binprm *bprm);
  1566. int security_bprm_set(struct linux_binprm *bprm);
  1567. int security_bprm_check(struct linux_binprm *bprm);
  1568. int security_bprm_secureexec(struct linux_binprm *bprm);
  1569. int security_sb_alloc(struct super_block *sb);
  1570. void security_sb_free(struct super_block *sb);
  1571. int security_sb_copy_data(char *orig, char *copy);
  1572. int security_sb_kern_mount(struct super_block *sb, void *data);
  1573. int security_sb_statfs(struct dentry *dentry);
  1574. int security_sb_mount(char *dev_name, struct path *path,
  1575. char *type, unsigned long flags, void *data);
  1576. int security_sb_check_sb(struct vfsmount *mnt, struct path *path);
  1577. int security_sb_umount(struct vfsmount *mnt, int flags);
  1578. void security_sb_umount_close(struct vfsmount *mnt);
  1579. void security_sb_umount_busy(struct vfsmount *mnt);
  1580. void security_sb_post_remount(struct vfsmount *mnt, unsigned long flags, void *data);
  1581. void security_sb_post_addmount(struct vfsmount *mnt, struct path *mountpoint);
  1582. int security_sb_pivotroot(struct path *old_path, struct path *new_path);
  1583. void security_sb_post_pivotroot(struct path *old_path, struct path *new_path);
  1584. int security_sb_get_mnt_opts(const struct super_block *sb,
  1585. struct security_mnt_opts *opts);
  1586. int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
  1587. void security_sb_clone_mnt_opts(const struct super_block *oldsb,
  1588. struct super_block *newsb);
  1589. int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
  1590. int security_inode_alloc(struct inode *inode);
  1591. void security_inode_free(struct inode *inode);
  1592. int security_inode_init_security(struct inode *inode, struct inode *dir,
  1593. char **name, void **value, size_t *len);
  1594. int security_inode_create(struct inode *dir, struct dentry *dentry, int mode);
  1595. int security_inode_link(struct dentry *old_dentry, struct inode *dir,
  1596. struct dentry *new_dentry);
  1597. int security_inode_unlink(struct inode *dir, struct dentry *dentry);
  1598. int security_inode_symlink(struct inode *dir, struct dentry *dentry,
  1599. const char *old_name);
  1600. int security_inode_mkdir(struct inode *dir, struct dentry *dentry, int mode);
  1601. int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
  1602. int security_inode_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev);
  1603. int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
  1604. struct inode *new_dir, struct dentry *new_dentry);
  1605. int security_inode_readlink(struct dentry *dentry);
  1606. int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
  1607. int security_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
  1608. int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
  1609. int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
  1610. void security_inode_delete(struct inode *inode);
  1611. int security_inode_setxattr(struct dentry *dentry, const char *name,
  1612. const void *value, size_t size, int flags);
  1613. void security_inode_post_setxattr(struct dentry *dentry, const char *name,
  1614. const void *value, size_t size, int flags);
  1615. int security_inode_getxattr(struct dentry *dentry, const char *name);
  1616. int security_inode_listxattr(struct dentry *dentry);
  1617. int security_inode_removexattr(struct dentry *dentry, const char *name);
  1618. int security_inode_need_killpriv(struct dentry *dentry);
  1619. int security_inode_killpriv(struct dentry *dentry);
  1620. int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
  1621. int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
  1622. int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
  1623. void security_inode_getsecid(const struct inode *inode, u32 *secid);
  1624. int security_file_permission(struct file *file, int mask);
  1625. int security_file_alloc(struct file *file);
  1626. void security_file_free(struct file *file);
  1627. int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
  1628. int security_file_mmap(struct file *file, unsigned long reqprot,
  1629. unsigned long prot, unsigned long flags,
  1630. unsigned long addr, unsigned long addr_only);
  1631. int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
  1632. unsigned long prot);
  1633. int security_file_lock(struct file *file, unsigned int cmd);
  1634. int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
  1635. int security_file_set_fowner(struct file *file);
  1636. int security_file_send_sigiotask(struct task_struct *tsk,
  1637. struct fown_struct *fown, int sig);
  1638. int security_file_receive(struct file *file);
  1639. int security_dentry_open(struct file *file);
  1640. int security_task_create(unsigned long clone_flags);
  1641. int security_task_alloc(struct task_struct *p);
  1642. void security_task_free(struct task_struct *p);
  1643. int security_task_setuid(uid_t id0, uid_t id1, uid_t id2, int flags);
  1644. int security_task_post_setuid(uid_t old_ruid, uid_t old_euid,
  1645. uid_t old_suid, int flags);
  1646. int security_task_setgid(gid_t id0, gid_t id1, gid_t id2, int flags);
  1647. int security_task_setpgid(struct task_struct *p, pid_t pgid);
  1648. int security_task_getpgid(struct task_struct *p);
  1649. int security_task_getsid(struct task_struct *p);
  1650. void security_task_getsecid(struct task_struct *p, u32 *secid);
  1651. int security_task_setgroups(struct group_info *group_info);
  1652. int security_task_setnice(struct task_struct *p, int nice);
  1653. int security_task_setioprio(struct task_struct *p, int ioprio);
  1654. int security_task_getioprio(struct task_struct *p);
  1655. int security_task_setrlimit(unsigned int resource, struct rlimit *new_rlim);
  1656. int security_task_setscheduler(struct task_struct *p,
  1657. int policy, struct sched_param *lp);
  1658. int security_task_getscheduler(struct task_struct *p);
  1659. int security_task_movememory(struct task_struct *p);
  1660. int security_task_kill(struct task_struct *p, struct siginfo *info,
  1661. int sig, u32 secid);
  1662. int security_task_wait(struct task_struct *p);
  1663. int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
  1664. unsigned long arg4, unsigned long arg5, long *rc_p);
  1665. void security_task_reparent_to_init(struct task_struct *p);
  1666. void security_task_to_inode(struct task_struct *p, struct inode *inode);
  1667. int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
  1668. void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
  1669. int security_msg_msg_alloc(struct msg_msg *msg);
  1670. void security_msg_msg_free(struct msg_msg *msg);
  1671. int security_msg_queue_alloc(struct msg_queue *msq);
  1672. void security_msg_queue_free(struct msg_queue *msq);
  1673. int security_msg_queue_associate(struct msg_queue *msq, int msqflg);
  1674. int security_msg_queue_msgctl(struct msg_queue *msq, int cmd);
  1675. int security_msg_queue_msgsnd(struct msg_queue *msq,
  1676. struct msg_msg *msg, int msqflg);
  1677. int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
  1678. struct task_struct *target, long type, int mode);
  1679. int security_shm_alloc(struct shmid_kernel *shp);
  1680. void security_shm_free(struct shmid_kernel *shp);
  1681. int security_shm_associate(struct shmid_kernel *shp, int shmflg);
  1682. int security_shm_shmctl(struct shmid_kernel *shp, int cmd);
  1683. int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg);
  1684. int security_sem_alloc(struct sem_array *sma);
  1685. void security_sem_free(struct sem_array *sma);
  1686. int security_sem_associate(struct sem_array *sma, int semflg);
  1687. int security_sem_semctl(struct sem_array *sma, int cmd);
  1688. int security_sem_semop(struct sem_array *sma, struct sembuf *sops,
  1689. unsigned nsops, int alter);
  1690. void security_d_instantiate(struct dentry *dentry, struct inode *inode);
  1691. int security_getprocattr(struct task_struct *p, char *name, char **value);
  1692. int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size);
  1693. int security_netlink_send(struct sock *sk, struct sk_buff *skb);
  1694. int security_netlink_recv(struct sk_buff *skb, int cap);
  1695. int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
  1696. int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
  1697. void security_release_secctx(char *secdata, u32 seclen);
  1698. #else /* CONFIG_SECURITY */
  1699. struct security_mnt_opts {
  1700. };
  1701. static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
  1702. {
  1703. }
  1704. static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
  1705. {
  1706. }
  1707. /*
  1708. * This is the default capabilities functionality. Most of these functions
  1709. * are just stubbed out, but a few must call the proper capable code.
  1710. */
  1711. static inline int security_init(void)
  1712. {
  1713. return 0;
  1714. }
  1715. static inline int security_ptrace(struct task_struct *parent,
  1716. struct task_struct *child,
  1717. unsigned int mode)
  1718. {
  1719. return cap_ptrace(parent, child, mode);
  1720. }
  1721. static inline int security_capget(struct task_struct *target,
  1722. kernel_cap_t *effective,
  1723. kernel_cap_t *inheritable,
  1724. kernel_cap_t *permitted)
  1725. {
  1726. return cap_capget(target, effective, inheritable, permitted);
  1727. }
  1728. static inline int security_capset_check(struct task_struct *target,
  1729. kernel_cap_t *effective,
  1730. kernel_cap_t *inheritable,
  1731. kernel_cap_t *permitted)
  1732. {
  1733. return cap_capset_check(target, effective, inheritable, permitted);
  1734. }
  1735. static inline void security_capset_set(struct task_struct *target,
  1736. kernel_cap_t *effective,
  1737. kernel_cap_t *inheritable,
  1738. kernel_cap_t *permitted)
  1739. {
  1740. cap_capset_set(target, effective, inheritable, permitted);
  1741. }
  1742. static inline int security_capable(struct task_struct *tsk, int cap)
  1743. {
  1744. return cap_capable(tsk, cap);
  1745. }
  1746. static inline int security_acct(struct file *file)
  1747. {
  1748. return 0;
  1749. }
  1750. static inline int security_sysctl(struct ctl_table *table, int op)
  1751. {
  1752. return 0;
  1753. }
  1754. static inline int security_quotactl(int cmds, int type, int id,
  1755. struct super_block *sb)
  1756. {
  1757. return 0;
  1758. }
  1759. static inline int security_quota_on(struct dentry *dentry)
  1760. {
  1761. return 0;
  1762. }
  1763. static inline int security_syslog(int type)
  1764. {
  1765. return cap_syslog(type);
  1766. }
  1767. static inline int security_settime(struct timespec *ts, struct timezone *tz)
  1768. {
  1769. return cap_settime(ts, tz);
  1770. }
  1771. static inline int security_vm_enough_memory(long pages)
  1772. {
  1773. return cap_vm_enough_memory(current->mm, pages);
  1774. }
  1775. static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
  1776. {
  1777. return cap_vm_enough_memory(mm, pages);
  1778. }
  1779. static inline int security_bprm_alloc(struct linux_binprm *bprm)
  1780. {
  1781. return 0;
  1782. }
  1783. static inline void security_bprm_free(struct linux_binprm *bprm)
  1784. { }
  1785. static inline void security_bprm_apply_creds(struct linux_binprm *bprm, int unsafe)
  1786. {
  1787. cap_bprm_apply_creds(bprm, unsafe);
  1788. }
  1789. static inline void security_bprm_post_apply_creds(struct linux_binprm *bprm)
  1790. {
  1791. return;
  1792. }
  1793. static inline int security_bprm_set(struct linux_binprm *bprm)
  1794. {
  1795. return cap_bprm_set_security(bprm);
  1796. }
  1797. static inline int security_bprm_check(struct linux_binprm *bprm)
  1798. {
  1799. return 0;
  1800. }
  1801. static inline int security_bprm_secureexec(struct linux_binprm *bprm)
  1802. {
  1803. return cap_bprm_secureexec(bprm);
  1804. }
  1805. static inline int security_sb_alloc(struct super_block *sb)
  1806. {
  1807. return 0;
  1808. }
  1809. static inline void security_sb_free(struct super_block *sb)
  1810. { }
  1811. static inline int security_sb_copy_data(char *orig, char *copy)
  1812. {
  1813. return 0;
  1814. }
  1815. static inline int security_sb_kern_mount(struct super_block *sb, void *data)
  1816. {
  1817. return 0;
  1818. }
  1819. static inline int security_sb_statfs(struct dentry *dentry)
  1820. {
  1821. return 0;
  1822. }
  1823. static inline int security_sb_mount(char *dev_name, struct path *path,
  1824. char *type, unsigned long flags,
  1825. void *data)
  1826. {
  1827. return 0;
  1828. }
  1829. static inline int security_sb_check_sb(struct vfsmount *mnt,
  1830. struct path *path)
  1831. {
  1832. return 0;
  1833. }
  1834. static inline int security_sb_umount(struct vfsmount *mnt, int flags)
  1835. {
  1836. return 0;
  1837. }
  1838. static inline void security_sb_umount_close(struct vfsmount *mnt)
  1839. { }
  1840. static inline void security_sb_umount_busy(struct vfsmount *mnt)
  1841. { }
  1842. static inline void security_sb_post_remount(struct vfsmount *mnt,
  1843. unsigned long flags, void *data)
  1844. { }
  1845. static inline void security_sb_post_addmount(struct vfsmount *mnt,
  1846. struct path *mountpoint)
  1847. { }
  1848. static inline int security_sb_pivotroot(struct path *old_path,
  1849. struct path *new_path)
  1850. {
  1851. return 0;
  1852. }
  1853. static inline void security_sb_post_pivotroot(struct path *old_path,
  1854. struct path *new_path)
  1855. { }
  1856. static inline int security_sb_get_mnt_opts(const struct super_block *sb,
  1857. struct security_mnt_opts *opts)
  1858. {
  1859. security_init_mnt_opts(opts);
  1860. return 0;
  1861. }
  1862. static inline int security_sb_set_mnt_opts(struct super_block *sb,
  1863. struct security_mnt_opts *opts)
  1864. {
  1865. return 0;
  1866. }
  1867. static inline void security_sb_clone_mnt_opts(const struct super_block *oldsb,
  1868. struct super_block *newsb)
  1869. { }
  1870. static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
  1871. {
  1872. return 0;
  1873. }
  1874. static inline int security_inode_alloc(struct inode *inode)
  1875. {
  1876. return 0;
  1877. }
  1878. static inline void security_inode_free(struct inode *inode)
  1879. { }
  1880. static inline int security_inode_init_security(struct inode *inode,
  1881. struct inode *dir,
  1882. char **name,
  1883. void **value,
  1884. size_t *len)
  1885. {
  1886. return -EOPNOTSUPP;
  1887. }
  1888. static inline int security_inode_create(struct inode *dir,
  1889. struct dentry *dentry,
  1890. int mode)
  1891. {
  1892. return 0;
  1893. }
  1894. static inline int security_inode_link(struct dentry *old_dentry,
  1895. struct inode *dir,
  1896. struct dentry *new_dentry)
  1897. {
  1898. return 0;
  1899. }
  1900. static inline int security_inode_unlink(struct inode *dir,
  1901. struct dentry *dentry)
  1902. {
  1903. return 0;
  1904. }
  1905. static inline int security_inode_symlink(struct inode *dir,
  1906. struct dentry *dentry,
  1907. const char *old_name)
  1908. {
  1909. return 0;
  1910. }
  1911. static inline int security_inode_mkdir(struct inode *dir,
  1912. struct dentry *dentry,
  1913. int mode)
  1914. {
  1915. return 0;
  1916. }
  1917. static inline int security_inode_rmdir(struct inode *dir,
  1918. struct dentry *dentry)
  1919. {
  1920. return 0;
  1921. }
  1922. static inline int security_inode_mknod(struct inode *dir,
  1923. struct dentry *dentry,
  1924. int mode, dev_t dev)
  1925. {
  1926. return 0;
  1927. }
  1928. static inline int security_inode_rename(struct inode *old_dir,
  1929. struct dentry *old_dentry,
  1930. struct inode *new_dir,
  1931. struct dentry *new_dentry)
  1932. {
  1933. return 0;
  1934. }
  1935. static inline int security_inode_readlink(struct dentry *dentry)
  1936. {
  1937. return 0;
  1938. }
  1939. static inline int security_inode_follow_link(struct dentry *dentry,
  1940. struct nameidata *nd)
  1941. {
  1942. return 0;
  1943. }
  1944. static inline int security_inode_permission(struct inode *inode, int mask,
  1945. struct nameidata *nd)
  1946. {
  1947. return 0;
  1948. }
  1949. static inline int security_inode_setattr(struct dentry *dentry,
  1950. struct iattr *attr)
  1951. {
  1952. return 0;
  1953. }
  1954. static inline int security_inode_getattr(struct vfsmount *mnt,
  1955. struct dentry *dentry)
  1956. {
  1957. return 0;
  1958. }
  1959. static inline void security_inode_delete(struct inode *inode)
  1960. { }
  1961. static inline int security_inode_setxattr(struct dentry *dentry,
  1962. const char *name, const void *value, size_t size, int flags)
  1963. {
  1964. return cap_inode_setxattr(dentry, name, value, size, flags);
  1965. }
  1966. static inline void security_inode_post_setxattr(struct dentry *dentry,
  1967. const char *name, const void *value, size_t size, int flags)
  1968. { }
  1969. static inline int security_inode_getxattr(struct dentry *dentry,
  1970. const char *name)
  1971. {
  1972. return 0;
  1973. }
  1974. static inline int security_inode_listxattr(struct dentry *dentry)
  1975. {
  1976. return 0;
  1977. }
  1978. static inline int security_inode_removexattr(struct dentry *dentry,
  1979. const char *name)
  1980. {
  1981. return cap_inode_removexattr(dentry, name);
  1982. }
  1983. static inline int security_inode_need_killpriv(struct dentry *dentry)
  1984. {
  1985. return cap_inode_need_killpriv(dentry);
  1986. }
  1987. static inline int security_inode_killpriv(struct dentry *dentry)
  1988. {
  1989. return cap_inode_killpriv(dentry);
  1990. }
  1991. static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
  1992. {
  1993. return -EOPNOTSUPP;
  1994. }
  1995. static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
  1996. {
  1997. return -EOPNOTSUPP;
  1998. }
  1999. static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
  2000. {
  2001. return 0;
  2002. }
  2003. static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
  2004. {
  2005. *secid = 0;
  2006. }
  2007. static inline int security_file_permission(struct file *file, int mask)
  2008. {
  2009. return 0;
  2010. }
  2011. static inline int security_file_alloc(struct file *file)
  2012. {
  2013. return 0;
  2014. }
  2015. static inline void security_file_free(struct file *file)
  2016. { }
  2017. static inline int security_file_ioctl(struct file *file, unsigned int cmd,
  2018. unsigned long arg)
  2019. {
  2020. return 0;
  2021. }
  2022. static inline int security_file_mmap(struct file *file, unsigned long reqprot,
  2023. unsigned long prot,
  2024. unsigned long flags,
  2025. unsigned long addr,
  2026. unsigned long addr_only)
  2027. {
  2028. return 0;
  2029. }
  2030. static inline int security_file_mprotect(struct vm_area_struct *vma,
  2031. unsigned long reqprot,
  2032. unsigned long prot)
  2033. {
  2034. return 0;
  2035. }
  2036. static inline int security_file_lock(struct file *file, unsigned int cmd)
  2037. {
  2038. return 0;
  2039. }
  2040. static inline int security_file_fcntl(struct file *file, unsigned int cmd,
  2041. unsigned long arg)
  2042. {
  2043. return 0;
  2044. }
  2045. static inline int security_file_set_fowner(struct file *file)
  2046. {
  2047. return 0;
  2048. }
  2049. static inline int security_file_send_sigiotask(struct task_struct *tsk,
  2050. struct fown_struct *fown,
  2051. int sig)
  2052. {
  2053. return 0;
  2054. }
  2055. static inline int security_file_receive(struct file *file)
  2056. {
  2057. return 0;
  2058. }
  2059. static inline int security_dentry_open(struct file *file)
  2060. {
  2061. return 0;
  2062. }
  2063. static inline int security_task_create(unsigned long clone_flags)
  2064. {
  2065. return 0;
  2066. }
  2067. static inline int security_task_alloc(struct task_struct *p)
  2068. {
  2069. return 0;
  2070. }
  2071. static inline void security_task_free(struct task_struct *p)
  2072. { }
  2073. static inline int security_task_setuid(uid_t id0, uid_t id1, uid_t id2,
  2074. int flags)
  2075. {
  2076. return 0;
  2077. }
  2078. static inline int security_task_post_setuid(uid_t old_ruid, uid_t old_euid,
  2079. uid_t old_suid, int flags)
  2080. {
  2081. return cap_task_post_setuid(old_ruid, old_euid, old_suid, flags);
  2082. }
  2083. static inline int security_task_setgid(gid_t id0, gid_t id1, gid_t id2,
  2084. int flags)
  2085. {
  2086. return 0;
  2087. }
  2088. static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
  2089. {
  2090. return 0;
  2091. }
  2092. static inline int security_task_getpgid(struct task_struct *p)
  2093. {
  2094. return 0;
  2095. }
  2096. static inline int security_task_getsid(struct task_struct *p)
  2097. {
  2098. return 0;
  2099. }
  2100. static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
  2101. {
  2102. *secid = 0;
  2103. }
  2104. static inline int security_task_setgroups(struct group_info *group_info)
  2105. {
  2106. return 0;
  2107. }
  2108. static inline int security_task_setnice(struct task_struct *p, int nice)
  2109. {
  2110. return cap_task_setnice(p, nice);
  2111. }
  2112. static inline int security_task_setioprio(struct task_struct *p, int ioprio)
  2113. {
  2114. return cap_task_setioprio(p, ioprio);
  2115. }
  2116. static inline int security_task_getioprio(struct task_struct *p)
  2117. {
  2118. return 0;
  2119. }
  2120. static inline int security_task_setrlimit(unsigned int resource,
  2121. struct rlimit *new_rlim)
  2122. {
  2123. return 0;
  2124. }
  2125. static inline int security_task_setscheduler(struct task_struct *p,
  2126. int policy,
  2127. struct sched_param *lp)
  2128. {
  2129. return cap_task_setscheduler(p, policy, lp);
  2130. }
  2131. static inline int security_task_getscheduler(struct task_struct *p)
  2132. {
  2133. return 0;
  2134. }
  2135. static inline int security_task_movememory(struct task_struct *p)
  2136. {
  2137. return 0;
  2138. }
  2139. static inline int security_task_kill(struct task_struct *p,
  2140. struct siginfo *info, int sig,
  2141. u32 secid)
  2142. {
  2143. return 0;
  2144. }
  2145. static inline int security_task_wait(struct task_struct *p)
  2146. {
  2147. return 0;
  2148. }
  2149. static inline int security_task_prctl(int option, unsigned long arg2,
  2150. unsigned long arg3,
  2151. unsigned long arg4,
  2152. unsigned long arg5, long *rc_p)
  2153. {
  2154. return cap_task_prctl(option, arg2, arg3, arg3, arg5, rc_p);
  2155. }
  2156. static inline void security_task_reparent_to_init(struct task_struct *p)
  2157. {
  2158. cap_task_reparent_to_init(p);
  2159. }
  2160. static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
  2161. { }
  2162. static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
  2163. short flag)
  2164. {
  2165. return 0;
  2166. }
  2167. static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
  2168. {
  2169. *secid = 0;
  2170. }
  2171. static inline int security_msg_msg_alloc(struct msg_msg *msg)
  2172. {
  2173. return 0;
  2174. }
  2175. static inline void security_msg_msg_free(struct msg_msg *msg)
  2176. { }
  2177. static inline int security_msg_queue_alloc(struct msg_queue *msq)
  2178. {
  2179. return 0;
  2180. }
  2181. static inline void security_msg_queue_free(struct msg_queue *msq)
  2182. { }
  2183. static inline int security_msg_queue_associate(struct msg_queue *msq,
  2184. int msqflg)
  2185. {
  2186. return 0;
  2187. }
  2188. static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
  2189. {
  2190. return 0;
  2191. }
  2192. static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
  2193. struct msg_msg *msg, int msqflg)
  2194. {
  2195. return 0;
  2196. }
  2197. static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
  2198. struct msg_msg *msg,
  2199. struct task_struct *target,
  2200. long type, int mode)
  2201. {
  2202. return 0;
  2203. }
  2204. static inline int security_shm_alloc(struct shmid_kernel *shp)
  2205. {
  2206. return 0;
  2207. }
  2208. static inline void security_shm_free(struct shmid_kernel *shp)
  2209. { }
  2210. static inline int security_shm_associate(struct shmid_kernel *shp,
  2211. int shmflg)
  2212. {
  2213. return 0;
  2214. }
  2215. static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
  2216. {
  2217. return 0;
  2218. }
  2219. static inline int security_shm_shmat(struct shmid_kernel *shp,
  2220. char __user *shmaddr, int shmflg)
  2221. {
  2222. return 0;
  2223. }
  2224. static inline int security_sem_alloc(struct sem_array *sma)
  2225. {
  2226. return 0;
  2227. }
  2228. static inline void security_sem_free(struct sem_array *sma)
  2229. { }
  2230. static inline int security_sem_associate(struct sem_array *sma, int semflg)
  2231. {
  2232. return 0;
  2233. }
  2234. static inline int security_sem_semctl(struct sem_array *sma, int cmd)
  2235. {
  2236. return 0;
  2237. }
  2238. static inline int security_sem_semop(struct sem_array *sma,
  2239. struct sembuf *sops, unsigned nsops,
  2240. int alter)
  2241. {
  2242. return 0;
  2243. }
  2244. static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
  2245. { }
  2246. static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
  2247. {
  2248. return -EINVAL;
  2249. }
  2250. static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
  2251. {
  2252. return -EINVAL;
  2253. }
  2254. static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
  2255. {
  2256. return cap_netlink_send(sk, skb);
  2257. }
  2258. static inline int security_netlink_recv(struct sk_buff *skb, int cap)
  2259. {
  2260. return cap_netlink_recv(skb, cap);
  2261. }
  2262. static inline struct dentry *securityfs_create_dir(const char *name,
  2263. struct dentry *parent)
  2264. {
  2265. return ERR_PTR(-ENODEV);
  2266. }
  2267. static inline struct dentry *securityfs_create_file(const char *name,
  2268. mode_t mode,
  2269. struct dentry *parent,
  2270. void *data,
  2271. const struct file_operations *fops)
  2272. {
  2273. return ERR_PTR(-ENODEV);
  2274. }
  2275. static inline void securityfs_remove(struct dentry *dentry)
  2276. {
  2277. }
  2278. static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
  2279. {
  2280. return -EOPNOTSUPP;
  2281. }
  2282. static inline int security_secctx_to_secid(const char *secdata,
  2283. u32 seclen,
  2284. u32 *secid)
  2285. {
  2286. return -EOPNOTSUPP;
  2287. }
  2288. static inline void security_release_secctx(char *secdata, u32 seclen)
  2289. {
  2290. }
  2291. #endif /* CONFIG_SECURITY */
  2292. #ifdef CONFIG_SECURITY_NETWORK
  2293. int security_unix_stream_connect(struct socket *sock, struct socket *other,
  2294. struct sock *newsk);
  2295. int security_unix_may_send(struct socket *sock, struct socket *other);
  2296. int security_socket_create(int family, int type, int protocol, int kern);
  2297. int security_socket_post_create(struct socket *sock, int family,
  2298. int type, int protocol, int kern);
  2299. int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
  2300. int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
  2301. int security_socket_listen(struct socket *sock, int backlog);
  2302. int security_socket_accept(struct socket *sock, struct socket *newsock);
  2303. void security_socket_post_accept(struct socket *sock, struct socket *newsock);
  2304. int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
  2305. int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
  2306. int size, int flags);
  2307. int security_socket_getsockname(struct socket *sock);
  2308. int security_socket_getpeername(struct socket *sock);
  2309. int security_socket_getsockopt(struct socket *sock, int level, int optname);
  2310. int security_socket_setsockopt(struct socket *sock, int level, int optname);
  2311. int security_socket_shutdown(struct socket *sock, int how);
  2312. int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
  2313. int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
  2314. int __user *optlen, unsigned len);
  2315. int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
  2316. int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
  2317. void security_sk_free(struct sock *sk);
  2318. void security_sk_clone(const struct sock *sk, struct sock *newsk);
  2319. void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
  2320. void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
  2321. void security_sock_graft(struct sock*sk, struct socket *parent);
  2322. int security_inet_conn_request(struct sock *sk,
  2323. struct sk_buff *skb, struct request_sock *req);
  2324. void security_inet_csk_clone(struct sock *newsk,
  2325. const struct request_sock *req);
  2326. void security_inet_conn_established(struct sock *sk,
  2327. struct sk_buff *skb);
  2328. #else /* CONFIG_SECURITY_NETWORK */
  2329. static inline int security_unix_stream_connect(struct socket *sock,
  2330. struct socket *other,
  2331. struct sock *newsk)
  2332. {
  2333. return 0;
  2334. }
  2335. static inline int security_unix_may_send(struct socket *sock,
  2336. struct socket *other)
  2337. {
  2338. return 0;
  2339. }
  2340. static inline int security_socket_create(int family, int type,
  2341. int protocol, int kern)
  2342. {
  2343. return 0;
  2344. }
  2345. static inline int security_socket_post_create(struct socket *sock,
  2346. int family,
  2347. int type,
  2348. int protocol, int kern)
  2349. {
  2350. return 0;
  2351. }
  2352. static inline int security_socket_bind(struct socket *sock,
  2353. struct sockaddr *address,
  2354. int addrlen)
  2355. {
  2356. return 0;
  2357. }
  2358. static inline int security_socket_connect(struct socket *sock,
  2359. struct sockaddr *address,
  2360. int addrlen)
  2361. {
  2362. return 0;
  2363. }
  2364. static inline int security_socket_listen(struct socket *sock, int backlog)
  2365. {
  2366. return 0;
  2367. }
  2368. static inline int security_socket_accept(struct socket *sock,
  2369. struct socket *newsock)
  2370. {
  2371. return 0;
  2372. }
  2373. static inline void security_socket_post_accept(struct socket *sock,
  2374. struct socket *newsock)
  2375. {
  2376. }
  2377. static inline int security_socket_sendmsg(struct socket *sock,
  2378. struct msghdr *msg, int size)
  2379. {
  2380. return 0;
  2381. }
  2382. static inline int security_socket_recvmsg(struct socket *sock,
  2383. struct msghdr *msg, int size,
  2384. int flags)
  2385. {
  2386. return 0;
  2387. }
  2388. static inline int security_socket_getsockname(struct socket *sock)
  2389. {
  2390. return 0;
  2391. }
  2392. static inline int security_socket_getpeername(struct socket *sock)
  2393. {
  2394. return 0;
  2395. }
  2396. static inline int security_socket_getsockopt(struct socket *sock,
  2397. int level, int optname)
  2398. {
  2399. return 0;
  2400. }
  2401. static inline int security_socket_setsockopt(struct socket *sock,
  2402. int level, int optname)
  2403. {
  2404. return 0;
  2405. }
  2406. static inline int security_socket_shutdown(struct socket *sock, int how)
  2407. {
  2408. return 0;
  2409. }
  2410. static inline int security_sock_rcv_skb(struct sock *sk,
  2411. struct sk_buff *skb)
  2412. {
  2413. return 0;
  2414. }
  2415. static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
  2416. int __user *optlen, unsigned len)
  2417. {
  2418. return -ENOPROTOOPT;
  2419. }
  2420. static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
  2421. {
  2422. return -ENOPROTOOPT;
  2423. }
  2424. static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
  2425. {
  2426. return 0;
  2427. }
  2428. static inline void security_sk_free(struct sock *sk)
  2429. {
  2430. }
  2431. static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
  2432. {
  2433. }
  2434. static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
  2435. {
  2436. }
  2437. static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
  2438. {
  2439. }
  2440. static inline void security_sock_graft(struct sock *sk, struct socket *parent)
  2441. {
  2442. }
  2443. static inline int security_inet_conn_request(struct sock *sk,
  2444. struct sk_buff *skb, struct request_sock *req)
  2445. {
  2446. return 0;
  2447. }
  2448. static inline void security_inet_csk_clone(struct sock *newsk,
  2449. const struct request_sock *req)
  2450. {
  2451. }
  2452. static inline void security_inet_conn_established(struct sock *sk,
  2453. struct sk_buff *skb)
  2454. {
  2455. }
  2456. #endif /* CONFIG_SECURITY_NETWORK */
  2457. #ifdef CONFIG_SECURITY_NETWORK_XFRM
  2458. int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
  2459. int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
  2460. void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
  2461. int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
  2462. int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
  2463. int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
  2464. struct xfrm_sec_ctx *polsec, u32 secid);
  2465. int security_xfrm_state_delete(struct xfrm_state *x);
  2466. void security_xfrm_state_free(struct xfrm_state *x);
  2467. int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
  2468. int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
  2469. struct xfrm_policy *xp, struct flowi *fl);
  2470. int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
  2471. void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
  2472. #else /* CONFIG_SECURITY_NETWORK_XFRM */
  2473. static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx)
  2474. {
  2475. return 0;
  2476. }
  2477. static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
  2478. {
  2479. return 0;
  2480. }
  2481. static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
  2482. {
  2483. }
  2484. static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
  2485. {
  2486. return 0;
  2487. }
  2488. static inline int security_xfrm_state_alloc(struct xfrm_state *x,
  2489. struct xfrm_user_sec_ctx *sec_ctx)
  2490. {
  2491. return 0;
  2492. }
  2493. static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
  2494. struct xfrm_sec_ctx *polsec, u32 secid)
  2495. {
  2496. return 0;
  2497. }
  2498. static inline void security_xfrm_state_free(struct xfrm_state *x)
  2499. {
  2500. }
  2501. static inline int security_xfrm_state_delete(struct xfrm_state *x)
  2502. {
  2503. return 0;
  2504. }
  2505. static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
  2506. {
  2507. return 0;
  2508. }
  2509. static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
  2510. struct xfrm_policy *xp, struct flowi *fl)
  2511. {
  2512. return 1;
  2513. }
  2514. static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
  2515. {
  2516. return 0;
  2517. }
  2518. static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
  2519. {
  2520. }
  2521. #endif /* CONFIG_SECURITY_NETWORK_XFRM */
  2522. #ifdef CONFIG_KEYS
  2523. #ifdef CONFIG_SECURITY
  2524. int security_key_alloc(struct key *key, struct task_struct *tsk, unsigned long flags);
  2525. void security_key_free(struct key *key);
  2526. int security_key_permission(key_ref_t key_ref,
  2527. struct task_struct *context, key_perm_t perm);
  2528. int security_key_getsecurity(struct key *key, char **_buffer);
  2529. #else
  2530. static inline int security_key_alloc(struct key *key,
  2531. struct task_struct *tsk,
  2532. unsigned long flags)
  2533. {
  2534. return 0;
  2535. }
  2536. static inline void security_key_free(struct key *key)
  2537. {
  2538. }
  2539. static inline int security_key_permission(key_ref_t key_ref,
  2540. struct task_struct *context,
  2541. key_perm_t perm)
  2542. {
  2543. return 0;
  2544. }
  2545. static inline int security_key_getsecurity(struct key *key, char **_buffer)
  2546. {
  2547. *_buffer = NULL;
  2548. return 0;
  2549. }
  2550. #endif
  2551. #endif /* CONFIG_KEYS */
  2552. #ifdef CONFIG_AUDIT
  2553. #ifdef CONFIG_SECURITY
  2554. int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
  2555. int security_audit_rule_known(struct audit_krule *krule);
  2556. int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
  2557. struct audit_context *actx);
  2558. void security_audit_rule_free(void *lsmrule);
  2559. #else
  2560. static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
  2561. void **lsmrule)
  2562. {
  2563. return 0;
  2564. }
  2565. static inline int security_audit_rule_known(struct audit_krule *krule)
  2566. {
  2567. return 0;
  2568. }
  2569. static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
  2570. void *lsmrule, struct audit_context *actx)
  2571. {
  2572. return 0;
  2573. }
  2574. static inline void security_audit_rule_free(void *lsmrule)
  2575. { }
  2576. #endif /* CONFIG_SECURITY */
  2577. #endif /* CONFIG_AUDIT */
  2578. #endif /* ! __LINUX_SECURITY_H */