security.h 110 KB

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