security.h 103 KB

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