security.h 109 KB

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