security.h 99 KB

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