security.h 109 KB

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