security.h 112 KB

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