security.h 109 KB

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