security.h 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117
  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. * @skb_owned_by:
  992. * This hook sets the packet's owning sock.
  993. * @skb is the packet.
  994. * @sk the sock which owns the packet.
  995. *
  996. * Security hooks for XFRM operations.
  997. *
  998. * @xfrm_policy_alloc_security:
  999. * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
  1000. * Database used by the XFRM system.
  1001. * @sec_ctx contains the security context information being provided by
  1002. * the user-level policy update program (e.g., setkey).
  1003. * Allocate a security structure to the xp->security field; the security
  1004. * field is initialized to NULL when the xfrm_policy is allocated.
  1005. * Return 0 if operation was successful (memory to allocate, legal context)
  1006. * @xfrm_policy_clone_security:
  1007. * @old_ctx contains an existing xfrm_sec_ctx.
  1008. * @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
  1009. * Allocate a security structure in new_ctxp that contains the
  1010. * information from the old_ctx structure.
  1011. * Return 0 if operation was successful (memory to allocate).
  1012. * @xfrm_policy_free_security:
  1013. * @ctx contains the xfrm_sec_ctx
  1014. * Deallocate xp->security.
  1015. * @xfrm_policy_delete_security:
  1016. * @ctx contains the xfrm_sec_ctx.
  1017. * Authorize deletion of xp->security.
  1018. * @xfrm_state_alloc_security:
  1019. * @x contains the xfrm_state being added to the Security Association
  1020. * Database by the XFRM system.
  1021. * @sec_ctx contains the security context information being provided by
  1022. * the user-level SA generation program (e.g., setkey or racoon).
  1023. * @secid contains the secid from which to take the mls portion of the context.
  1024. * Allocate a security structure to the x->security field; the security
  1025. * field is initialized to NULL when the xfrm_state is allocated. Set the
  1026. * context to correspond to either sec_ctx or polsec, with the mls portion
  1027. * taken from secid in the latter case.
  1028. * Return 0 if operation was successful (memory to allocate, legal context).
  1029. * @xfrm_state_free_security:
  1030. * @x contains the xfrm_state.
  1031. * Deallocate x->security.
  1032. * @xfrm_state_delete_security:
  1033. * @x contains the xfrm_state.
  1034. * Authorize deletion of x->security.
  1035. * @xfrm_policy_lookup:
  1036. * @ctx contains the xfrm_sec_ctx for which the access control is being
  1037. * checked.
  1038. * @fl_secid contains the flow security label that is used to authorize
  1039. * access to the policy xp.
  1040. * @dir contains the direction of the flow (input or output).
  1041. * Check permission when a flow selects a xfrm_policy for processing
  1042. * XFRMs on a packet. The hook is called when selecting either a
  1043. * per-socket policy or a generic xfrm policy.
  1044. * Return 0 if permission is granted, -ESRCH otherwise, or -errno
  1045. * on other errors.
  1046. * @xfrm_state_pol_flow_match:
  1047. * @x contains the state to match.
  1048. * @xp contains the policy to check for a match.
  1049. * @fl contains the flow to check for a match.
  1050. * Return 1 if there is a match.
  1051. * @xfrm_decode_session:
  1052. * @skb points to skb to decode.
  1053. * @secid points to the flow key secid to set.
  1054. * @ckall says if all xfrms used should be checked for same secid.
  1055. * Return 0 if ckall is zero or all xfrms used have the same secid.
  1056. *
  1057. * Security hooks affecting all Key Management operations
  1058. *
  1059. * @key_alloc:
  1060. * Permit allocation of a key and assign security data. Note that key does
  1061. * not have a serial number assigned at this point.
  1062. * @key points to the key.
  1063. * @flags is the allocation flags
  1064. * Return 0 if permission is granted, -ve error otherwise.
  1065. * @key_free:
  1066. * Notification of destruction; free security data.
  1067. * @key points to the key.
  1068. * No return value.
  1069. * @key_permission:
  1070. * See whether a specific operational right is granted to a process on a
  1071. * key.
  1072. * @key_ref refers to the key (key pointer + possession attribute bit).
  1073. * @cred points to the credentials to provide the context against which to
  1074. * evaluate the security data on the key.
  1075. * @perm describes the combination of permissions required of this key.
  1076. * Return 0 if permission is granted, -ve error otherwise.
  1077. * @key_getsecurity:
  1078. * Get a textual representation of the security context attached to a key
  1079. * for the purposes of honouring KEYCTL_GETSECURITY. This function
  1080. * allocates the storage for the NUL-terminated string and the caller
  1081. * should free it.
  1082. * @key points to the key to be queried.
  1083. * @_buffer points to a pointer that should be set to point to the
  1084. * resulting string (if no label or an error occurs).
  1085. * Return the length of the string (including terminating NUL) or -ve if
  1086. * an error.
  1087. * May also return 0 (and a NULL buffer pointer) if there is no label.
  1088. *
  1089. * Security hooks affecting all System V IPC operations.
  1090. *
  1091. * @ipc_permission:
  1092. * Check permissions for access to IPC
  1093. * @ipcp contains the kernel IPC permission structure
  1094. * @flag contains the desired (requested) permission set
  1095. * Return 0 if permission is granted.
  1096. * @ipc_getsecid:
  1097. * Get the secid associated with the ipc object.
  1098. * @ipcp contains the kernel IPC permission structure.
  1099. * @secid contains a pointer to the location where result will be saved.
  1100. * In case of failure, @secid will be set to zero.
  1101. *
  1102. * Security hooks for individual messages held in System V IPC message queues
  1103. * @msg_msg_alloc_security:
  1104. * Allocate and attach a security structure to the msg->security field.
  1105. * The security field is initialized to NULL when the structure is first
  1106. * created.
  1107. * @msg contains the message structure to be modified.
  1108. * Return 0 if operation was successful and permission is granted.
  1109. * @msg_msg_free_security:
  1110. * Deallocate the security structure for this message.
  1111. * @msg contains the message structure to be modified.
  1112. *
  1113. * Security hooks for System V IPC Message Queues
  1114. *
  1115. * @msg_queue_alloc_security:
  1116. * Allocate and attach a security structure to the
  1117. * msq->q_perm.security field. The security field is initialized to
  1118. * NULL when the structure is first created.
  1119. * @msq contains the message queue structure to be modified.
  1120. * Return 0 if operation was successful and permission is granted.
  1121. * @msg_queue_free_security:
  1122. * Deallocate security structure for this message queue.
  1123. * @msq contains the message queue structure to be modified.
  1124. * @msg_queue_associate:
  1125. * Check permission when a message queue is requested through the
  1126. * msgget system call. This hook is only called when returning the
  1127. * message queue identifier for an existing message queue, not when a
  1128. * new message queue is created.
  1129. * @msq contains the message queue to act upon.
  1130. * @msqflg contains the operation control flags.
  1131. * Return 0 if permission is granted.
  1132. * @msg_queue_msgctl:
  1133. * Check permission when a message control operation specified by @cmd
  1134. * is to be performed on the message queue @msq.
  1135. * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
  1136. * @msq contains the message queue to act upon. May be NULL.
  1137. * @cmd contains the operation to be performed.
  1138. * Return 0 if permission is granted.
  1139. * @msg_queue_msgsnd:
  1140. * Check permission before a message, @msg, is enqueued on the message
  1141. * queue, @msq.
  1142. * @msq contains the message queue to send message to.
  1143. * @msg contains the message to be enqueued.
  1144. * @msqflg contains operational flags.
  1145. * Return 0 if permission is granted.
  1146. * @msg_queue_msgrcv:
  1147. * Check permission before a message, @msg, is removed from the message
  1148. * queue, @msq. The @target task structure contains a pointer to the
  1149. * process that will be receiving the message (not equal to the current
  1150. * process when inline receives are being performed).
  1151. * @msq contains the message queue to retrieve message from.
  1152. * @msg contains the message destination.
  1153. * @target contains the task structure for recipient process.
  1154. * @type contains the type of message requested.
  1155. * @mode contains the operational flags.
  1156. * Return 0 if permission is granted.
  1157. *
  1158. * Security hooks for System V Shared Memory Segments
  1159. *
  1160. * @shm_alloc_security:
  1161. * Allocate and attach a security structure to the shp->shm_perm.security
  1162. * field. The security field is initialized to NULL when the structure is
  1163. * first created.
  1164. * @shp contains the shared memory structure to be modified.
  1165. * Return 0 if operation was successful and permission is granted.
  1166. * @shm_free_security:
  1167. * Deallocate the security struct for this memory segment.
  1168. * @shp contains the shared memory structure to be modified.
  1169. * @shm_associate:
  1170. * Check permission when a shared memory region is requested through the
  1171. * shmget system call. This hook is only called when returning the shared
  1172. * memory region identifier for an existing region, not when a new shared
  1173. * memory region is created.
  1174. * @shp contains the shared memory structure to be modified.
  1175. * @shmflg contains the operation control flags.
  1176. * Return 0 if permission is granted.
  1177. * @shm_shmctl:
  1178. * Check permission when a shared memory control operation specified by
  1179. * @cmd is to be performed on the shared memory region @shp.
  1180. * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
  1181. * @shp contains shared memory structure to be modified.
  1182. * @cmd contains the operation to be performed.
  1183. * Return 0 if permission is granted.
  1184. * @shm_shmat:
  1185. * Check permissions prior to allowing the shmat system call to attach the
  1186. * shared memory segment @shp to the data segment of the calling process.
  1187. * The attaching address is specified by @shmaddr.
  1188. * @shp contains the shared memory structure to be modified.
  1189. * @shmaddr contains the address to attach memory region to.
  1190. * @shmflg contains the operational flags.
  1191. * Return 0 if permission is granted.
  1192. *
  1193. * Security hooks for System V Semaphores
  1194. *
  1195. * @sem_alloc_security:
  1196. * Allocate and attach a security structure to the sma->sem_perm.security
  1197. * field. The security field is initialized to NULL when the structure is
  1198. * first created.
  1199. * @sma contains the semaphore structure
  1200. * Return 0 if operation was successful and permission is granted.
  1201. * @sem_free_security:
  1202. * deallocate security struct for this semaphore
  1203. * @sma contains the semaphore structure.
  1204. * @sem_associate:
  1205. * Check permission when a semaphore is requested through the semget
  1206. * system call. This hook is only called when returning the semaphore
  1207. * identifier for an existing semaphore, not when a new one must be
  1208. * created.
  1209. * @sma contains the semaphore structure.
  1210. * @semflg contains the operation control flags.
  1211. * Return 0 if permission is granted.
  1212. * @sem_semctl:
  1213. * Check permission when a semaphore operation specified by @cmd is to be
  1214. * performed on the semaphore @sma. The @sma may be NULL, e.g. for
  1215. * IPC_INFO or SEM_INFO.
  1216. * @sma contains the semaphore structure. May be NULL.
  1217. * @cmd contains the operation to be performed.
  1218. * Return 0 if permission is granted.
  1219. * @sem_semop
  1220. * Check permissions before performing operations on members of the
  1221. * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
  1222. * may be modified.
  1223. * @sma contains the semaphore structure.
  1224. * @sops contains the operations to perform.
  1225. * @nsops contains the number of operations to perform.
  1226. * @alter contains the flag indicating whether changes are to be made.
  1227. * Return 0 if permission is granted.
  1228. *
  1229. * @ptrace_access_check:
  1230. * Check permission before allowing the current process to trace the
  1231. * @child process.
  1232. * Security modules may also want to perform a process tracing check
  1233. * during an execve in the set_security or apply_creds hooks of
  1234. * tracing check during an execve in the bprm_set_creds hook of
  1235. * binprm_security_ops if the process is being traced and its security
  1236. * attributes would be changed by the execve.
  1237. * @child contains the task_struct structure for the target process.
  1238. * @mode contains the PTRACE_MODE flags indicating the form of access.
  1239. * Return 0 if permission is granted.
  1240. * @ptrace_traceme:
  1241. * Check that the @parent process has sufficient permission to trace the
  1242. * current process before allowing the current process to present itself
  1243. * to the @parent process for tracing.
  1244. * @parent contains the task_struct structure for debugger process.
  1245. * Return 0 if permission is granted.
  1246. * @capget:
  1247. * Get the @effective, @inheritable, and @permitted capability sets for
  1248. * the @target process. The hook may also perform permission checking to
  1249. * determine if the current process is allowed to see the capability sets
  1250. * of the @target process.
  1251. * @target contains the task_struct structure for target process.
  1252. * @effective contains the effective capability set.
  1253. * @inheritable contains the inheritable capability set.
  1254. * @permitted contains the permitted capability set.
  1255. * Return 0 if the capability sets were successfully obtained.
  1256. * @capset:
  1257. * Set the @effective, @inheritable, and @permitted capability sets for
  1258. * the current process.
  1259. * @new contains the new credentials structure for target process.
  1260. * @old contains the current credentials structure for target process.
  1261. * @effective contains the effective capability set.
  1262. * @inheritable contains the inheritable capability set.
  1263. * @permitted contains the permitted capability set.
  1264. * Return 0 and update @new if permission is granted.
  1265. * @capable:
  1266. * Check whether the @tsk process has the @cap capability in the indicated
  1267. * credentials.
  1268. * @cred contains the credentials to use.
  1269. * @ns contains the user namespace we want the capability in
  1270. * @cap contains the capability <include/linux/capability.h>.
  1271. * @audit: Whether to write an audit message or not
  1272. * Return 0 if the capability is granted for @tsk.
  1273. * @syslog:
  1274. * Check permission before accessing the kernel message ring or changing
  1275. * logging to the console.
  1276. * See the syslog(2) manual page for an explanation of the @type values.
  1277. * @type contains the type of action.
  1278. * @from_file indicates the context of action (if it came from /proc).
  1279. * Return 0 if permission is granted.
  1280. * @settime:
  1281. * Check permission to change the system time.
  1282. * struct timespec and timezone are defined in include/linux/time.h
  1283. * @ts contains new time
  1284. * @tz contains new timezone
  1285. * Return 0 if permission is granted.
  1286. * @vm_enough_memory:
  1287. * Check permissions for allocating a new virtual mapping.
  1288. * @mm contains the mm struct it is being added to.
  1289. * @pages contains the number of pages.
  1290. * Return 0 if permission is granted.
  1291. *
  1292. * @secid_to_secctx:
  1293. * Convert secid to security context. If secdata is NULL the length of
  1294. * the result will be returned in seclen, but no secdata will be returned.
  1295. * This does mean that the length could change between calls to check the
  1296. * length and the next call which actually allocates and returns the secdata.
  1297. * @secid contains the security ID.
  1298. * @secdata contains the pointer that stores the converted security context.
  1299. * @seclen pointer which contains the length of the data
  1300. * @secctx_to_secid:
  1301. * Convert security context to secid.
  1302. * @secid contains the pointer to the generated security ID.
  1303. * @secdata contains the security context.
  1304. *
  1305. * @release_secctx:
  1306. * Release the security context.
  1307. * @secdata contains the security context.
  1308. * @seclen contains the length of the security context.
  1309. *
  1310. * Security hooks for Audit
  1311. *
  1312. * @audit_rule_init:
  1313. * Allocate and initialize an LSM audit rule structure.
  1314. * @field contains the required Audit action. Fields flags are defined in include/linux/audit.h
  1315. * @op contains the operator the rule uses.
  1316. * @rulestr contains the context where the rule will be applied to.
  1317. * @lsmrule contains a pointer to receive the result.
  1318. * Return 0 if @lsmrule has been successfully set,
  1319. * -EINVAL in case of an invalid rule.
  1320. *
  1321. * @audit_rule_known:
  1322. * Specifies whether given @rule contains any fields related to current LSM.
  1323. * @rule contains the audit rule of interest.
  1324. * Return 1 in case of relation found, 0 otherwise.
  1325. *
  1326. * @audit_rule_match:
  1327. * Determine if given @secid matches a rule previously approved
  1328. * by @audit_rule_known.
  1329. * @secid contains the security id in question.
  1330. * @field contains the field which relates to current LSM.
  1331. * @op contains the operator that will be used for matching.
  1332. * @rule points to the audit rule that will be checked against.
  1333. * @actx points to the audit context associated with the check.
  1334. * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
  1335. *
  1336. * @audit_rule_free:
  1337. * Deallocate the LSM audit rule structure previously allocated by
  1338. * audit_rule_init.
  1339. * @rule contains the allocated rule
  1340. *
  1341. * @inode_notifysecctx:
  1342. * Notify the security module of what the security context of an inode
  1343. * should be. Initializes the incore security context managed by the
  1344. * security module for this inode. Example usage: NFS client invokes
  1345. * this hook to initialize the security context in its incore inode to the
  1346. * value provided by the server for the file when the server returned the
  1347. * file's attributes to the client.
  1348. *
  1349. * Must be called with inode->i_mutex locked.
  1350. *
  1351. * @inode we wish to set the security context of.
  1352. * @ctx contains the string which we wish to set in the inode.
  1353. * @ctxlen contains the length of @ctx.
  1354. *
  1355. * @inode_setsecctx:
  1356. * Change the security context of an inode. Updates the
  1357. * incore security context managed by the security module and invokes the
  1358. * fs code as needed (via __vfs_setxattr_noperm) to update any backing
  1359. * xattrs that represent the context. Example usage: NFS server invokes
  1360. * this hook to change the security context in its incore inode and on the
  1361. * backing filesystem to a value provided by the client on a SETATTR
  1362. * operation.
  1363. *
  1364. * Must be called with inode->i_mutex locked.
  1365. *
  1366. * @dentry contains the inode we wish to set the security context of.
  1367. * @ctx contains the string which we wish to set in the inode.
  1368. * @ctxlen contains the length of @ctx.
  1369. *
  1370. * @inode_getsecctx:
  1371. * Returns a string containing all relevant security context information
  1372. *
  1373. * @inode we wish to get the security context of.
  1374. * @ctx is a pointer in which to place the allocated security context.
  1375. * @ctxlen points to the place to put the length of @ctx.
  1376. * This is the main security structure.
  1377. */
  1378. struct security_operations {
  1379. char name[SECURITY_NAME_MAX + 1];
  1380. int (*ptrace_access_check) (struct task_struct *child, unsigned int mode);
  1381. int (*ptrace_traceme) (struct task_struct *parent);
  1382. int (*capget) (struct task_struct *target,
  1383. kernel_cap_t *effective,
  1384. kernel_cap_t *inheritable, kernel_cap_t *permitted);
  1385. int (*capset) (struct cred *new,
  1386. const struct cred *old,
  1387. const kernel_cap_t *effective,
  1388. const kernel_cap_t *inheritable,
  1389. const kernel_cap_t *permitted);
  1390. int (*capable) (const struct cred *cred, struct user_namespace *ns,
  1391. int cap, int audit);
  1392. int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
  1393. int (*quota_on) (struct dentry *dentry);
  1394. int (*syslog) (int type);
  1395. int (*settime) (const struct timespec *ts, const struct timezone *tz);
  1396. int (*vm_enough_memory) (struct mm_struct *mm, long pages);
  1397. int (*bprm_set_creds) (struct linux_binprm *bprm);
  1398. int (*bprm_check_security) (struct linux_binprm *bprm);
  1399. int (*bprm_secureexec) (struct linux_binprm *bprm);
  1400. void (*bprm_committing_creds) (struct linux_binprm *bprm);
  1401. void (*bprm_committed_creds) (struct linux_binprm *bprm);
  1402. int (*sb_alloc_security) (struct super_block *sb);
  1403. void (*sb_free_security) (struct super_block *sb);
  1404. int (*sb_copy_data) (char *orig, char *copy);
  1405. int (*sb_remount) (struct super_block *sb, void *data);
  1406. int (*sb_kern_mount) (struct super_block *sb, int flags, void *data);
  1407. int (*sb_show_options) (struct seq_file *m, struct super_block *sb);
  1408. int (*sb_statfs) (struct dentry *dentry);
  1409. int (*sb_mount) (const char *dev_name, struct path *path,
  1410. const char *type, unsigned long flags, void *data);
  1411. int (*sb_umount) (struct vfsmount *mnt, int flags);
  1412. int (*sb_pivotroot) (struct path *old_path,
  1413. struct path *new_path);
  1414. int (*sb_set_mnt_opts) (struct super_block *sb,
  1415. struct security_mnt_opts *opts);
  1416. int (*sb_clone_mnt_opts) (const struct super_block *oldsb,
  1417. struct super_block *newsb);
  1418. int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
  1419. #ifdef CONFIG_SECURITY_PATH
  1420. int (*path_unlink) (struct path *dir, struct dentry *dentry);
  1421. int (*path_mkdir) (struct path *dir, struct dentry *dentry, umode_t mode);
  1422. int (*path_rmdir) (struct path *dir, struct dentry *dentry);
  1423. int (*path_mknod) (struct path *dir, struct dentry *dentry, umode_t mode,
  1424. unsigned int dev);
  1425. int (*path_truncate) (struct path *path);
  1426. int (*path_symlink) (struct path *dir, struct dentry *dentry,
  1427. const char *old_name);
  1428. int (*path_link) (struct dentry *old_dentry, struct path *new_dir,
  1429. struct dentry *new_dentry);
  1430. int (*path_rename) (struct path *old_dir, struct dentry *old_dentry,
  1431. struct path *new_dir, struct dentry *new_dentry);
  1432. int (*path_chmod) (struct path *path, umode_t mode);
  1433. int (*path_chown) (struct path *path, kuid_t uid, kgid_t gid);
  1434. int (*path_chroot) (struct path *path);
  1435. #endif
  1436. int (*inode_alloc_security) (struct inode *inode);
  1437. void (*inode_free_security) (struct inode *inode);
  1438. int (*inode_init_security) (struct inode *inode, struct inode *dir,
  1439. const struct qstr *qstr, char **name,
  1440. void **value, size_t *len);
  1441. int (*inode_create) (struct inode *dir,
  1442. struct dentry *dentry, umode_t mode);
  1443. int (*inode_link) (struct dentry *old_dentry,
  1444. struct inode *dir, struct dentry *new_dentry);
  1445. int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
  1446. int (*inode_symlink) (struct inode *dir,
  1447. struct dentry *dentry, const char *old_name);
  1448. int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, umode_t mode);
  1449. int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
  1450. int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
  1451. umode_t mode, dev_t dev);
  1452. int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
  1453. struct inode *new_dir, struct dentry *new_dentry);
  1454. int (*inode_readlink) (struct dentry *dentry);
  1455. int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
  1456. int (*inode_permission) (struct inode *inode, int mask);
  1457. int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
  1458. int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
  1459. int (*inode_setxattr) (struct dentry *dentry, const char *name,
  1460. const void *value, size_t size, int flags);
  1461. void (*inode_post_setxattr) (struct dentry *dentry, const char *name,
  1462. const void *value, size_t size, int flags);
  1463. int (*inode_getxattr) (struct dentry *dentry, const char *name);
  1464. int (*inode_listxattr) (struct dentry *dentry);
  1465. int (*inode_removexattr) (struct dentry *dentry, const char *name);
  1466. int (*inode_need_killpriv) (struct dentry *dentry);
  1467. int (*inode_killpriv) (struct dentry *dentry);
  1468. int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc);
  1469. int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags);
  1470. int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size);
  1471. void (*inode_getsecid) (const struct inode *inode, u32 *secid);
  1472. int (*file_permission) (struct file *file, int mask);
  1473. int (*file_alloc_security) (struct file *file);
  1474. void (*file_free_security) (struct file *file);
  1475. int (*file_ioctl) (struct file *file, unsigned int cmd,
  1476. unsigned long arg);
  1477. int (*mmap_addr) (unsigned long addr);
  1478. int (*mmap_file) (struct file *file,
  1479. unsigned long reqprot, unsigned long prot,
  1480. unsigned long flags);
  1481. int (*file_mprotect) (struct vm_area_struct *vma,
  1482. unsigned long reqprot,
  1483. unsigned long prot);
  1484. int (*file_lock) (struct file *file, unsigned int cmd);
  1485. int (*file_fcntl) (struct file *file, unsigned int cmd,
  1486. unsigned long arg);
  1487. int (*file_set_fowner) (struct file *file);
  1488. int (*file_send_sigiotask) (struct task_struct *tsk,
  1489. struct fown_struct *fown, int sig);
  1490. int (*file_receive) (struct file *file);
  1491. int (*file_open) (struct file *file, const struct cred *cred);
  1492. int (*task_create) (unsigned long clone_flags);
  1493. void (*task_free) (struct task_struct *task);
  1494. int (*cred_alloc_blank) (struct cred *cred, gfp_t gfp);
  1495. void (*cred_free) (struct cred *cred);
  1496. int (*cred_prepare)(struct cred *new, const struct cred *old,
  1497. gfp_t gfp);
  1498. void (*cred_transfer)(struct cred *new, const struct cred *old);
  1499. int (*kernel_act_as)(struct cred *new, u32 secid);
  1500. int (*kernel_create_files_as)(struct cred *new, struct inode *inode);
  1501. int (*kernel_module_request)(char *kmod_name);
  1502. int (*kernel_module_from_file)(struct file *file);
  1503. int (*task_fix_setuid) (struct cred *new, const struct cred *old,
  1504. int flags);
  1505. int (*task_setpgid) (struct task_struct *p, pid_t pgid);
  1506. int (*task_getpgid) (struct task_struct *p);
  1507. int (*task_getsid) (struct task_struct *p);
  1508. void (*task_getsecid) (struct task_struct *p, u32 *secid);
  1509. int (*task_setnice) (struct task_struct *p, int nice);
  1510. int (*task_setioprio) (struct task_struct *p, int ioprio);
  1511. int (*task_getioprio) (struct task_struct *p);
  1512. int (*task_setrlimit) (struct task_struct *p, unsigned int resource,
  1513. struct rlimit *new_rlim);
  1514. int (*task_setscheduler) (struct task_struct *p);
  1515. int (*task_getscheduler) (struct task_struct *p);
  1516. int (*task_movememory) (struct task_struct *p);
  1517. int (*task_kill) (struct task_struct *p,
  1518. struct siginfo *info, int sig, u32 secid);
  1519. int (*task_wait) (struct task_struct *p);
  1520. int (*task_prctl) (int option, unsigned long arg2,
  1521. unsigned long arg3, unsigned long arg4,
  1522. unsigned long arg5);
  1523. void (*task_to_inode) (struct task_struct *p, struct inode *inode);
  1524. int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
  1525. void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
  1526. int (*msg_msg_alloc_security) (struct msg_msg *msg);
  1527. void (*msg_msg_free_security) (struct msg_msg *msg);
  1528. int (*msg_queue_alloc_security) (struct msg_queue *msq);
  1529. void (*msg_queue_free_security) (struct msg_queue *msq);
  1530. int (*msg_queue_associate) (struct msg_queue *msq, int msqflg);
  1531. int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd);
  1532. int (*msg_queue_msgsnd) (struct msg_queue *msq,
  1533. struct msg_msg *msg, int msqflg);
  1534. int (*msg_queue_msgrcv) (struct msg_queue *msq,
  1535. struct msg_msg *msg,
  1536. struct task_struct *target,
  1537. long type, int mode);
  1538. int (*shm_alloc_security) (struct shmid_kernel *shp);
  1539. void (*shm_free_security) (struct shmid_kernel *shp);
  1540. int (*shm_associate) (struct shmid_kernel *shp, int shmflg);
  1541. int (*shm_shmctl) (struct shmid_kernel *shp, int cmd);
  1542. int (*shm_shmat) (struct shmid_kernel *shp,
  1543. char __user *shmaddr, int shmflg);
  1544. int (*sem_alloc_security) (struct sem_array *sma);
  1545. void (*sem_free_security) (struct sem_array *sma);
  1546. int (*sem_associate) (struct sem_array *sma, int semflg);
  1547. int (*sem_semctl) (struct sem_array *sma, int cmd);
  1548. int (*sem_semop) (struct sem_array *sma,
  1549. struct sembuf *sops, unsigned nsops, int alter);
  1550. int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
  1551. void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
  1552. int (*getprocattr) (struct task_struct *p, char *name, char **value);
  1553. int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size);
  1554. int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen);
  1555. int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid);
  1556. void (*release_secctx) (char *secdata, u32 seclen);
  1557. int (*inode_notifysecctx)(struct inode *inode, void *ctx, u32 ctxlen);
  1558. int (*inode_setsecctx)(struct dentry *dentry, void *ctx, u32 ctxlen);
  1559. int (*inode_getsecctx)(struct inode *inode, void **ctx, u32 *ctxlen);
  1560. #ifdef CONFIG_SECURITY_NETWORK
  1561. int (*unix_stream_connect) (struct sock *sock, struct sock *other, struct sock *newsk);
  1562. int (*unix_may_send) (struct socket *sock, struct socket *other);
  1563. int (*socket_create) (int family, int type, int protocol, int kern);
  1564. int (*socket_post_create) (struct socket *sock, int family,
  1565. int type, int protocol, int kern);
  1566. int (*socket_bind) (struct socket *sock,
  1567. struct sockaddr *address, int addrlen);
  1568. int (*socket_connect) (struct socket *sock,
  1569. struct sockaddr *address, int addrlen);
  1570. int (*socket_listen) (struct socket *sock, int backlog);
  1571. int (*socket_accept) (struct socket *sock, struct socket *newsock);
  1572. int (*socket_sendmsg) (struct socket *sock,
  1573. struct msghdr *msg, int size);
  1574. int (*socket_recvmsg) (struct socket *sock,
  1575. struct msghdr *msg, int size, int flags);
  1576. int (*socket_getsockname) (struct socket *sock);
  1577. int (*socket_getpeername) (struct socket *sock);
  1578. int (*socket_getsockopt) (struct socket *sock, int level, int optname);
  1579. int (*socket_setsockopt) (struct socket *sock, int level, int optname);
  1580. int (*socket_shutdown) (struct socket *sock, int how);
  1581. int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb);
  1582. int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
  1583. int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
  1584. int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
  1585. void (*sk_free_security) (struct sock *sk);
  1586. void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
  1587. void (*sk_getsecid) (struct sock *sk, u32 *secid);
  1588. void (*sock_graft) (struct sock *sk, struct socket *parent);
  1589. int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb,
  1590. struct request_sock *req);
  1591. void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req);
  1592. void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb);
  1593. int (*secmark_relabel_packet) (u32 secid);
  1594. void (*secmark_refcount_inc) (void);
  1595. void (*secmark_refcount_dec) (void);
  1596. void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
  1597. int (*tun_dev_alloc_security) (void **security);
  1598. void (*tun_dev_free_security) (void *security);
  1599. int (*tun_dev_create) (void);
  1600. int (*tun_dev_attach_queue) (void *security);
  1601. int (*tun_dev_attach) (struct sock *sk, void *security);
  1602. int (*tun_dev_open) (void *security);
  1603. void (*skb_owned_by) (struct sk_buff *skb, struct sock *sk);
  1604. #endif /* CONFIG_SECURITY_NETWORK */
  1605. #ifdef CONFIG_SECURITY_NETWORK_XFRM
  1606. int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
  1607. struct xfrm_user_sec_ctx *sec_ctx);
  1608. int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx);
  1609. void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx);
  1610. int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx);
  1611. int (*xfrm_state_alloc_security) (struct xfrm_state *x,
  1612. struct xfrm_user_sec_ctx *sec_ctx,
  1613. u32 secid);
  1614. void (*xfrm_state_free_security) (struct xfrm_state *x);
  1615. int (*xfrm_state_delete_security) (struct xfrm_state *x);
  1616. int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
  1617. int (*xfrm_state_pol_flow_match) (struct xfrm_state *x,
  1618. struct xfrm_policy *xp,
  1619. const struct flowi *fl);
  1620. int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
  1621. #endif /* CONFIG_SECURITY_NETWORK_XFRM */
  1622. /* key management security hooks */
  1623. #ifdef CONFIG_KEYS
  1624. int (*key_alloc) (struct key *key, const struct cred *cred, unsigned long flags);
  1625. void (*key_free) (struct key *key);
  1626. int (*key_permission) (key_ref_t key_ref,
  1627. const struct cred *cred,
  1628. key_perm_t perm);
  1629. int (*key_getsecurity)(struct key *key, char **_buffer);
  1630. #endif /* CONFIG_KEYS */
  1631. #ifdef CONFIG_AUDIT
  1632. int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
  1633. int (*audit_rule_known) (struct audit_krule *krule);
  1634. int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
  1635. struct audit_context *actx);
  1636. void (*audit_rule_free) (void *lsmrule);
  1637. #endif /* CONFIG_AUDIT */
  1638. };
  1639. /* prototypes */
  1640. extern int security_init(void);
  1641. extern int security_module_enable(struct security_operations *ops);
  1642. extern int register_security(struct security_operations *ops);
  1643. extern void __init security_fixup_ops(struct security_operations *ops);
  1644. /* Security operations */
  1645. int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
  1646. int security_ptrace_traceme(struct task_struct *parent);
  1647. int security_capget(struct task_struct *target,
  1648. kernel_cap_t *effective,
  1649. kernel_cap_t *inheritable,
  1650. kernel_cap_t *permitted);
  1651. int security_capset(struct cred *new, const struct cred *old,
  1652. const kernel_cap_t *effective,
  1653. const kernel_cap_t *inheritable,
  1654. const kernel_cap_t *permitted);
  1655. int security_capable(const struct cred *cred, struct user_namespace *ns,
  1656. int cap);
  1657. int security_capable_noaudit(const struct cred *cred, struct user_namespace *ns,
  1658. int cap);
  1659. int security_quotactl(int cmds, int type, int id, struct super_block *sb);
  1660. int security_quota_on(struct dentry *dentry);
  1661. int security_syslog(int type);
  1662. int security_settime(const struct timespec *ts, const struct timezone *tz);
  1663. int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
  1664. int security_bprm_set_creds(struct linux_binprm *bprm);
  1665. int security_bprm_check(struct linux_binprm *bprm);
  1666. void security_bprm_committing_creds(struct linux_binprm *bprm);
  1667. void security_bprm_committed_creds(struct linux_binprm *bprm);
  1668. int security_bprm_secureexec(struct linux_binprm *bprm);
  1669. int security_sb_alloc(struct super_block *sb);
  1670. void security_sb_free(struct super_block *sb);
  1671. int security_sb_copy_data(char *orig, char *copy);
  1672. int security_sb_remount(struct super_block *sb, void *data);
  1673. int security_sb_kern_mount(struct super_block *sb, int flags, void *data);
  1674. int security_sb_show_options(struct seq_file *m, struct super_block *sb);
  1675. int security_sb_statfs(struct dentry *dentry);
  1676. int security_sb_mount(const char *dev_name, struct path *path,
  1677. const char *type, unsigned long flags, void *data);
  1678. int security_sb_umount(struct vfsmount *mnt, int flags);
  1679. int security_sb_pivotroot(struct path *old_path, struct path *new_path);
  1680. int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
  1681. int security_sb_clone_mnt_opts(const struct super_block *oldsb,
  1682. struct super_block *newsb);
  1683. int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
  1684. int security_inode_alloc(struct inode *inode);
  1685. void security_inode_free(struct inode *inode);
  1686. int security_inode_init_security(struct inode *inode, struct inode *dir,
  1687. const struct qstr *qstr,
  1688. initxattrs initxattrs, void *fs_data);
  1689. int security_old_inode_init_security(struct inode *inode, struct inode *dir,
  1690. const struct qstr *qstr, char **name,
  1691. void **value, size_t *len);
  1692. int security_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode);
  1693. int security_inode_link(struct dentry *old_dentry, struct inode *dir,
  1694. struct dentry *new_dentry);
  1695. int security_inode_unlink(struct inode *dir, struct dentry *dentry);
  1696. int security_inode_symlink(struct inode *dir, struct dentry *dentry,
  1697. const char *old_name);
  1698. int security_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
  1699. int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
  1700. int security_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev);
  1701. int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
  1702. struct inode *new_dir, struct dentry *new_dentry);
  1703. int security_inode_readlink(struct dentry *dentry);
  1704. int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
  1705. int security_inode_permission(struct inode *inode, int mask);
  1706. int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
  1707. int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
  1708. int security_inode_setxattr(struct dentry *dentry, const char *name,
  1709. const void *value, size_t size, int flags);
  1710. void security_inode_post_setxattr(struct dentry *dentry, const char *name,
  1711. const void *value, size_t size, int flags);
  1712. int security_inode_getxattr(struct dentry *dentry, const char *name);
  1713. int security_inode_listxattr(struct dentry *dentry);
  1714. int security_inode_removexattr(struct dentry *dentry, const char *name);
  1715. int security_inode_need_killpriv(struct dentry *dentry);
  1716. int security_inode_killpriv(struct dentry *dentry);
  1717. int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
  1718. int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
  1719. int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
  1720. void security_inode_getsecid(const struct inode *inode, u32 *secid);
  1721. int security_file_permission(struct file *file, int mask);
  1722. int security_file_alloc(struct file *file);
  1723. void security_file_free(struct file *file);
  1724. int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
  1725. int security_mmap_file(struct file *file, unsigned long prot,
  1726. unsigned long flags);
  1727. int security_mmap_addr(unsigned long addr);
  1728. int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
  1729. unsigned long prot);
  1730. int security_file_lock(struct file *file, unsigned int cmd);
  1731. int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
  1732. int security_file_set_fowner(struct file *file);
  1733. int security_file_send_sigiotask(struct task_struct *tsk,
  1734. struct fown_struct *fown, int sig);
  1735. int security_file_receive(struct file *file);
  1736. int security_file_open(struct file *file, const struct cred *cred);
  1737. int security_task_create(unsigned long clone_flags);
  1738. void security_task_free(struct task_struct *task);
  1739. int security_cred_alloc_blank(struct cred *cred, gfp_t gfp);
  1740. void security_cred_free(struct cred *cred);
  1741. int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
  1742. void security_transfer_creds(struct cred *new, const struct cred *old);
  1743. int security_kernel_act_as(struct cred *new, u32 secid);
  1744. int security_kernel_create_files_as(struct cred *new, struct inode *inode);
  1745. int security_kernel_module_request(char *kmod_name);
  1746. int security_kernel_module_from_file(struct file *file);
  1747. int security_task_fix_setuid(struct cred *new, const struct cred *old,
  1748. int flags);
  1749. int security_task_setpgid(struct task_struct *p, pid_t pgid);
  1750. int security_task_getpgid(struct task_struct *p);
  1751. int security_task_getsid(struct task_struct *p);
  1752. void security_task_getsecid(struct task_struct *p, u32 *secid);
  1753. int security_task_setnice(struct task_struct *p, int nice);
  1754. int security_task_setioprio(struct task_struct *p, int ioprio);
  1755. int security_task_getioprio(struct task_struct *p);
  1756. int security_task_setrlimit(struct task_struct *p, unsigned int resource,
  1757. struct rlimit *new_rlim);
  1758. int security_task_setscheduler(struct task_struct *p);
  1759. int security_task_getscheduler(struct task_struct *p);
  1760. int security_task_movememory(struct task_struct *p);
  1761. int security_task_kill(struct task_struct *p, struct siginfo *info,
  1762. int sig, u32 secid);
  1763. int security_task_wait(struct task_struct *p);
  1764. int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
  1765. unsigned long arg4, unsigned long arg5);
  1766. void security_task_to_inode(struct task_struct *p, struct inode *inode);
  1767. int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
  1768. void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
  1769. int security_msg_msg_alloc(struct msg_msg *msg);
  1770. void security_msg_msg_free(struct msg_msg *msg);
  1771. int security_msg_queue_alloc(struct msg_queue *msq);
  1772. void security_msg_queue_free(struct msg_queue *msq);
  1773. int security_msg_queue_associate(struct msg_queue *msq, int msqflg);
  1774. int security_msg_queue_msgctl(struct msg_queue *msq, int cmd);
  1775. int security_msg_queue_msgsnd(struct msg_queue *msq,
  1776. struct msg_msg *msg, int msqflg);
  1777. int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
  1778. struct task_struct *target, long type, int mode);
  1779. int security_shm_alloc(struct shmid_kernel *shp);
  1780. void security_shm_free(struct shmid_kernel *shp);
  1781. int security_shm_associate(struct shmid_kernel *shp, int shmflg);
  1782. int security_shm_shmctl(struct shmid_kernel *shp, int cmd);
  1783. int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg);
  1784. int security_sem_alloc(struct sem_array *sma);
  1785. void security_sem_free(struct sem_array *sma);
  1786. int security_sem_associate(struct sem_array *sma, int semflg);
  1787. int security_sem_semctl(struct sem_array *sma, int cmd);
  1788. int security_sem_semop(struct sem_array *sma, struct sembuf *sops,
  1789. unsigned nsops, int alter);
  1790. void security_d_instantiate(struct dentry *dentry, struct inode *inode);
  1791. int security_getprocattr(struct task_struct *p, char *name, char **value);
  1792. int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size);
  1793. int security_netlink_send(struct sock *sk, struct sk_buff *skb);
  1794. int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
  1795. int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
  1796. void security_release_secctx(char *secdata, u32 seclen);
  1797. int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen);
  1798. int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen);
  1799. int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen);
  1800. #else /* CONFIG_SECURITY */
  1801. struct security_mnt_opts {
  1802. };
  1803. static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
  1804. {
  1805. }
  1806. static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
  1807. {
  1808. }
  1809. /*
  1810. * This is the default capabilities functionality. Most of these functions
  1811. * are just stubbed out, but a few must call the proper capable code.
  1812. */
  1813. static inline int security_init(void)
  1814. {
  1815. return 0;
  1816. }
  1817. static inline int security_ptrace_access_check(struct task_struct *child,
  1818. unsigned int mode)
  1819. {
  1820. return cap_ptrace_access_check(child, mode);
  1821. }
  1822. static inline int security_ptrace_traceme(struct task_struct *parent)
  1823. {
  1824. return cap_ptrace_traceme(parent);
  1825. }
  1826. static inline int security_capget(struct task_struct *target,
  1827. kernel_cap_t *effective,
  1828. kernel_cap_t *inheritable,
  1829. kernel_cap_t *permitted)
  1830. {
  1831. return cap_capget(target, effective, inheritable, permitted);
  1832. }
  1833. static inline int security_capset(struct cred *new,
  1834. const struct cred *old,
  1835. const kernel_cap_t *effective,
  1836. const kernel_cap_t *inheritable,
  1837. const kernel_cap_t *permitted)
  1838. {
  1839. return cap_capset(new, old, effective, inheritable, permitted);
  1840. }
  1841. static inline int security_capable(const struct cred *cred,
  1842. struct user_namespace *ns, int cap)
  1843. {
  1844. return cap_capable(cred, ns, cap, SECURITY_CAP_AUDIT);
  1845. }
  1846. static inline int security_capable_noaudit(const struct cred *cred,
  1847. struct user_namespace *ns, int cap) {
  1848. return cap_capable(cred, ns, cap, SECURITY_CAP_NOAUDIT);
  1849. }
  1850. static inline int security_quotactl(int cmds, int type, int id,
  1851. struct super_block *sb)
  1852. {
  1853. return 0;
  1854. }
  1855. static inline int security_quota_on(struct dentry *dentry)
  1856. {
  1857. return 0;
  1858. }
  1859. static inline int security_syslog(int type)
  1860. {
  1861. return 0;
  1862. }
  1863. static inline int security_settime(const struct timespec *ts,
  1864. const struct timezone *tz)
  1865. {
  1866. return cap_settime(ts, tz);
  1867. }
  1868. static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
  1869. {
  1870. return cap_vm_enough_memory(mm, pages);
  1871. }
  1872. static inline int security_bprm_set_creds(struct linux_binprm *bprm)
  1873. {
  1874. return cap_bprm_set_creds(bprm);
  1875. }
  1876. static inline int security_bprm_check(struct linux_binprm *bprm)
  1877. {
  1878. return 0;
  1879. }
  1880. static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
  1881. {
  1882. }
  1883. static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
  1884. {
  1885. }
  1886. static inline int security_bprm_secureexec(struct linux_binprm *bprm)
  1887. {
  1888. return cap_bprm_secureexec(bprm);
  1889. }
  1890. static inline int security_sb_alloc(struct super_block *sb)
  1891. {
  1892. return 0;
  1893. }
  1894. static inline void security_sb_free(struct super_block *sb)
  1895. { }
  1896. static inline int security_sb_copy_data(char *orig, char *copy)
  1897. {
  1898. return 0;
  1899. }
  1900. static inline int security_sb_remount(struct super_block *sb, void *data)
  1901. {
  1902. return 0;
  1903. }
  1904. static inline int security_sb_kern_mount(struct super_block *sb, int flags, void *data)
  1905. {
  1906. return 0;
  1907. }
  1908. static inline int security_sb_show_options(struct seq_file *m,
  1909. struct super_block *sb)
  1910. {
  1911. return 0;
  1912. }
  1913. static inline int security_sb_statfs(struct dentry *dentry)
  1914. {
  1915. return 0;
  1916. }
  1917. static inline int security_sb_mount(const char *dev_name, struct path *path,
  1918. const char *type, unsigned long flags,
  1919. void *data)
  1920. {
  1921. return 0;
  1922. }
  1923. static inline int security_sb_umount(struct vfsmount *mnt, int flags)
  1924. {
  1925. return 0;
  1926. }
  1927. static inline int security_sb_pivotroot(struct path *old_path,
  1928. struct path *new_path)
  1929. {
  1930. return 0;
  1931. }
  1932. static inline int security_sb_set_mnt_opts(struct super_block *sb,
  1933. struct security_mnt_opts *opts)
  1934. {
  1935. return 0;
  1936. }
  1937. static inline int security_sb_clone_mnt_opts(const struct super_block *oldsb,
  1938. struct super_block *newsb)
  1939. {
  1940. return 0;
  1941. }
  1942. static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
  1943. {
  1944. return 0;
  1945. }
  1946. static inline int security_inode_alloc(struct inode *inode)
  1947. {
  1948. return 0;
  1949. }
  1950. static inline void security_inode_free(struct inode *inode)
  1951. { }
  1952. static inline int security_inode_init_security(struct inode *inode,
  1953. struct inode *dir,
  1954. const struct qstr *qstr,
  1955. const initxattrs initxattrs,
  1956. void *fs_data)
  1957. {
  1958. return 0;
  1959. }
  1960. static inline int security_old_inode_init_security(struct inode *inode,
  1961. struct inode *dir,
  1962. const struct qstr *qstr,
  1963. char **name, void **value,
  1964. size_t *len)
  1965. {
  1966. return -EOPNOTSUPP;
  1967. }
  1968. static inline int security_inode_create(struct inode *dir,
  1969. struct dentry *dentry,
  1970. umode_t mode)
  1971. {
  1972. return 0;
  1973. }
  1974. static inline int security_inode_link(struct dentry *old_dentry,
  1975. struct inode *dir,
  1976. struct dentry *new_dentry)
  1977. {
  1978. return 0;
  1979. }
  1980. static inline int security_inode_unlink(struct inode *dir,
  1981. struct dentry *dentry)
  1982. {
  1983. return 0;
  1984. }
  1985. static inline int security_inode_symlink(struct inode *dir,
  1986. struct dentry *dentry,
  1987. const char *old_name)
  1988. {
  1989. return 0;
  1990. }
  1991. static inline int security_inode_mkdir(struct inode *dir,
  1992. struct dentry *dentry,
  1993. int mode)
  1994. {
  1995. return 0;
  1996. }
  1997. static inline int security_inode_rmdir(struct inode *dir,
  1998. struct dentry *dentry)
  1999. {
  2000. return 0;
  2001. }
  2002. static inline int security_inode_mknod(struct inode *dir,
  2003. struct dentry *dentry,
  2004. int mode, dev_t dev)
  2005. {
  2006. return 0;
  2007. }
  2008. static inline int security_inode_rename(struct inode *old_dir,
  2009. struct dentry *old_dentry,
  2010. struct inode *new_dir,
  2011. struct dentry *new_dentry)
  2012. {
  2013. return 0;
  2014. }
  2015. static inline int security_inode_readlink(struct dentry *dentry)
  2016. {
  2017. return 0;
  2018. }
  2019. static inline int security_inode_follow_link(struct dentry *dentry,
  2020. struct nameidata *nd)
  2021. {
  2022. return 0;
  2023. }
  2024. static inline int security_inode_permission(struct inode *inode, int mask)
  2025. {
  2026. return 0;
  2027. }
  2028. static inline int security_inode_setattr(struct dentry *dentry,
  2029. struct iattr *attr)
  2030. {
  2031. return 0;
  2032. }
  2033. static inline int security_inode_getattr(struct vfsmount *mnt,
  2034. struct dentry *dentry)
  2035. {
  2036. return 0;
  2037. }
  2038. static inline int security_inode_setxattr(struct dentry *dentry,
  2039. const char *name, const void *value, size_t size, int flags)
  2040. {
  2041. return cap_inode_setxattr(dentry, name, value, size, flags);
  2042. }
  2043. static inline void security_inode_post_setxattr(struct dentry *dentry,
  2044. const char *name, const void *value, size_t size, int flags)
  2045. { }
  2046. static inline int security_inode_getxattr(struct dentry *dentry,
  2047. const char *name)
  2048. {
  2049. return 0;
  2050. }
  2051. static inline int security_inode_listxattr(struct dentry *dentry)
  2052. {
  2053. return 0;
  2054. }
  2055. static inline int security_inode_removexattr(struct dentry *dentry,
  2056. const char *name)
  2057. {
  2058. return cap_inode_removexattr(dentry, name);
  2059. }
  2060. static inline int security_inode_need_killpriv(struct dentry *dentry)
  2061. {
  2062. return cap_inode_need_killpriv(dentry);
  2063. }
  2064. static inline int security_inode_killpriv(struct dentry *dentry)
  2065. {
  2066. return cap_inode_killpriv(dentry);
  2067. }
  2068. static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
  2069. {
  2070. return -EOPNOTSUPP;
  2071. }
  2072. static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
  2073. {
  2074. return -EOPNOTSUPP;
  2075. }
  2076. static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
  2077. {
  2078. return 0;
  2079. }
  2080. static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
  2081. {
  2082. *secid = 0;
  2083. }
  2084. static inline int security_file_permission(struct file *file, int mask)
  2085. {
  2086. return 0;
  2087. }
  2088. static inline int security_file_alloc(struct file *file)
  2089. {
  2090. return 0;
  2091. }
  2092. static inline void security_file_free(struct file *file)
  2093. { }
  2094. static inline int security_file_ioctl(struct file *file, unsigned int cmd,
  2095. unsigned long arg)
  2096. {
  2097. return 0;
  2098. }
  2099. static inline int security_mmap_file(struct file *file, unsigned long prot,
  2100. unsigned long flags)
  2101. {
  2102. return 0;
  2103. }
  2104. static inline int security_mmap_addr(unsigned long addr)
  2105. {
  2106. return cap_mmap_addr(addr);
  2107. }
  2108. static inline int security_file_mprotect(struct vm_area_struct *vma,
  2109. unsigned long reqprot,
  2110. unsigned long prot)
  2111. {
  2112. return 0;
  2113. }
  2114. static inline int security_file_lock(struct file *file, unsigned int cmd)
  2115. {
  2116. return 0;
  2117. }
  2118. static inline int security_file_fcntl(struct file *file, unsigned int cmd,
  2119. unsigned long arg)
  2120. {
  2121. return 0;
  2122. }
  2123. static inline int security_file_set_fowner(struct file *file)
  2124. {
  2125. return 0;
  2126. }
  2127. static inline int security_file_send_sigiotask(struct task_struct *tsk,
  2128. struct fown_struct *fown,
  2129. int sig)
  2130. {
  2131. return 0;
  2132. }
  2133. static inline int security_file_receive(struct file *file)
  2134. {
  2135. return 0;
  2136. }
  2137. static inline int security_file_open(struct file *file,
  2138. const struct cred *cred)
  2139. {
  2140. return 0;
  2141. }
  2142. static inline int security_task_create(unsigned long clone_flags)
  2143. {
  2144. return 0;
  2145. }
  2146. static inline void security_task_free(struct task_struct *task)
  2147. { }
  2148. static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
  2149. {
  2150. return 0;
  2151. }
  2152. static inline void security_cred_free(struct cred *cred)
  2153. { }
  2154. static inline int security_prepare_creds(struct cred *new,
  2155. const struct cred *old,
  2156. gfp_t gfp)
  2157. {
  2158. return 0;
  2159. }
  2160. static inline void security_transfer_creds(struct cred *new,
  2161. const struct cred *old)
  2162. {
  2163. }
  2164. static inline int security_kernel_act_as(struct cred *cred, u32 secid)
  2165. {
  2166. return 0;
  2167. }
  2168. static inline int security_kernel_create_files_as(struct cred *cred,
  2169. struct inode *inode)
  2170. {
  2171. return 0;
  2172. }
  2173. static inline int security_kernel_module_request(char *kmod_name)
  2174. {
  2175. return 0;
  2176. }
  2177. static inline int security_kernel_module_from_file(struct file *file)
  2178. {
  2179. return 0;
  2180. }
  2181. static inline int security_task_fix_setuid(struct cred *new,
  2182. const struct cred *old,
  2183. int flags)
  2184. {
  2185. return cap_task_fix_setuid(new, old, flags);
  2186. }
  2187. static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
  2188. {
  2189. return 0;
  2190. }
  2191. static inline int security_task_getpgid(struct task_struct *p)
  2192. {
  2193. return 0;
  2194. }
  2195. static inline int security_task_getsid(struct task_struct *p)
  2196. {
  2197. return 0;
  2198. }
  2199. static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
  2200. {
  2201. *secid = 0;
  2202. }
  2203. static inline int security_task_setnice(struct task_struct *p, int nice)
  2204. {
  2205. return cap_task_setnice(p, nice);
  2206. }
  2207. static inline int security_task_setioprio(struct task_struct *p, int ioprio)
  2208. {
  2209. return cap_task_setioprio(p, ioprio);
  2210. }
  2211. static inline int security_task_getioprio(struct task_struct *p)
  2212. {
  2213. return 0;
  2214. }
  2215. static inline int security_task_setrlimit(struct task_struct *p,
  2216. unsigned int resource,
  2217. struct rlimit *new_rlim)
  2218. {
  2219. return 0;
  2220. }
  2221. static inline int security_task_setscheduler(struct task_struct *p)
  2222. {
  2223. return cap_task_setscheduler(p);
  2224. }
  2225. static inline int security_task_getscheduler(struct task_struct *p)
  2226. {
  2227. return 0;
  2228. }
  2229. static inline int security_task_movememory(struct task_struct *p)
  2230. {
  2231. return 0;
  2232. }
  2233. static inline int security_task_kill(struct task_struct *p,
  2234. struct siginfo *info, int sig,
  2235. u32 secid)
  2236. {
  2237. return 0;
  2238. }
  2239. static inline int security_task_wait(struct task_struct *p)
  2240. {
  2241. return 0;
  2242. }
  2243. static inline int security_task_prctl(int option, unsigned long arg2,
  2244. unsigned long arg3,
  2245. unsigned long arg4,
  2246. unsigned long arg5)
  2247. {
  2248. return cap_task_prctl(option, arg2, arg3, arg3, arg5);
  2249. }
  2250. static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
  2251. { }
  2252. static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
  2253. short flag)
  2254. {
  2255. return 0;
  2256. }
  2257. static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
  2258. {
  2259. *secid = 0;
  2260. }
  2261. static inline int security_msg_msg_alloc(struct msg_msg *msg)
  2262. {
  2263. return 0;
  2264. }
  2265. static inline void security_msg_msg_free(struct msg_msg *msg)
  2266. { }
  2267. static inline int security_msg_queue_alloc(struct msg_queue *msq)
  2268. {
  2269. return 0;
  2270. }
  2271. static inline void security_msg_queue_free(struct msg_queue *msq)
  2272. { }
  2273. static inline int security_msg_queue_associate(struct msg_queue *msq,
  2274. int msqflg)
  2275. {
  2276. return 0;
  2277. }
  2278. static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
  2279. {
  2280. return 0;
  2281. }
  2282. static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
  2283. struct msg_msg *msg, int msqflg)
  2284. {
  2285. return 0;
  2286. }
  2287. static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
  2288. struct msg_msg *msg,
  2289. struct task_struct *target,
  2290. long type, int mode)
  2291. {
  2292. return 0;
  2293. }
  2294. static inline int security_shm_alloc(struct shmid_kernel *shp)
  2295. {
  2296. return 0;
  2297. }
  2298. static inline void security_shm_free(struct shmid_kernel *shp)
  2299. { }
  2300. static inline int security_shm_associate(struct shmid_kernel *shp,
  2301. int shmflg)
  2302. {
  2303. return 0;
  2304. }
  2305. static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
  2306. {
  2307. return 0;
  2308. }
  2309. static inline int security_shm_shmat(struct shmid_kernel *shp,
  2310. char __user *shmaddr, int shmflg)
  2311. {
  2312. return 0;
  2313. }
  2314. static inline int security_sem_alloc(struct sem_array *sma)
  2315. {
  2316. return 0;
  2317. }
  2318. static inline void security_sem_free(struct sem_array *sma)
  2319. { }
  2320. static inline int security_sem_associate(struct sem_array *sma, int semflg)
  2321. {
  2322. return 0;
  2323. }
  2324. static inline int security_sem_semctl(struct sem_array *sma, int cmd)
  2325. {
  2326. return 0;
  2327. }
  2328. static inline int security_sem_semop(struct sem_array *sma,
  2329. struct sembuf *sops, unsigned nsops,
  2330. int alter)
  2331. {
  2332. return 0;
  2333. }
  2334. static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
  2335. { }
  2336. static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
  2337. {
  2338. return -EINVAL;
  2339. }
  2340. static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
  2341. {
  2342. return -EINVAL;
  2343. }
  2344. static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
  2345. {
  2346. return cap_netlink_send(sk, skb);
  2347. }
  2348. static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
  2349. {
  2350. return -EOPNOTSUPP;
  2351. }
  2352. static inline int security_secctx_to_secid(const char *secdata,
  2353. u32 seclen,
  2354. u32 *secid)
  2355. {
  2356. return -EOPNOTSUPP;
  2357. }
  2358. static inline void security_release_secctx(char *secdata, u32 seclen)
  2359. {
  2360. }
  2361. static inline int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
  2362. {
  2363. return -EOPNOTSUPP;
  2364. }
  2365. static inline int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
  2366. {
  2367. return -EOPNOTSUPP;
  2368. }
  2369. static inline int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
  2370. {
  2371. return -EOPNOTSUPP;
  2372. }
  2373. #endif /* CONFIG_SECURITY */
  2374. #ifdef CONFIG_SECURITY_NETWORK
  2375. int security_unix_stream_connect(struct sock *sock, struct sock *other, struct sock *newsk);
  2376. int security_unix_may_send(struct socket *sock, struct socket *other);
  2377. int security_socket_create(int family, int type, int protocol, int kern);
  2378. int security_socket_post_create(struct socket *sock, int family,
  2379. int type, int protocol, int kern);
  2380. int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
  2381. int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
  2382. int security_socket_listen(struct socket *sock, int backlog);
  2383. int security_socket_accept(struct socket *sock, struct socket *newsock);
  2384. int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
  2385. int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
  2386. int size, int flags);
  2387. int security_socket_getsockname(struct socket *sock);
  2388. int security_socket_getpeername(struct socket *sock);
  2389. int security_socket_getsockopt(struct socket *sock, int level, int optname);
  2390. int security_socket_setsockopt(struct socket *sock, int level, int optname);
  2391. int security_socket_shutdown(struct socket *sock, int how);
  2392. int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
  2393. int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
  2394. int __user *optlen, unsigned len);
  2395. int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
  2396. int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
  2397. void security_sk_free(struct sock *sk);
  2398. void security_sk_clone(const struct sock *sk, struct sock *newsk);
  2399. void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
  2400. void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
  2401. void security_sock_graft(struct sock*sk, struct socket *parent);
  2402. int security_inet_conn_request(struct sock *sk,
  2403. struct sk_buff *skb, struct request_sock *req);
  2404. void security_inet_csk_clone(struct sock *newsk,
  2405. const struct request_sock *req);
  2406. void security_inet_conn_established(struct sock *sk,
  2407. struct sk_buff *skb);
  2408. int security_secmark_relabel_packet(u32 secid);
  2409. void security_secmark_refcount_inc(void);
  2410. void security_secmark_refcount_dec(void);
  2411. int security_tun_dev_alloc_security(void **security);
  2412. void security_tun_dev_free_security(void *security);
  2413. int security_tun_dev_create(void);
  2414. int security_tun_dev_attach_queue(void *security);
  2415. int security_tun_dev_attach(struct sock *sk, void *security);
  2416. int security_tun_dev_open(void *security);
  2417. void security_skb_owned_by(struct sk_buff *skb, struct sock *sk);
  2418. #else /* CONFIG_SECURITY_NETWORK */
  2419. static inline int security_unix_stream_connect(struct sock *sock,
  2420. struct sock *other,
  2421. struct sock *newsk)
  2422. {
  2423. return 0;
  2424. }
  2425. static inline int security_unix_may_send(struct socket *sock,
  2426. struct socket *other)
  2427. {
  2428. return 0;
  2429. }
  2430. static inline int security_socket_create(int family, int type,
  2431. int protocol, int kern)
  2432. {
  2433. return 0;
  2434. }
  2435. static inline int security_socket_post_create(struct socket *sock,
  2436. int family,
  2437. int type,
  2438. int protocol, int kern)
  2439. {
  2440. return 0;
  2441. }
  2442. static inline int security_socket_bind(struct socket *sock,
  2443. struct sockaddr *address,
  2444. int addrlen)
  2445. {
  2446. return 0;
  2447. }
  2448. static inline int security_socket_connect(struct socket *sock,
  2449. struct sockaddr *address,
  2450. int addrlen)
  2451. {
  2452. return 0;
  2453. }
  2454. static inline int security_socket_listen(struct socket *sock, int backlog)
  2455. {
  2456. return 0;
  2457. }
  2458. static inline int security_socket_accept(struct socket *sock,
  2459. struct socket *newsock)
  2460. {
  2461. return 0;
  2462. }
  2463. static inline int security_socket_sendmsg(struct socket *sock,
  2464. struct msghdr *msg, int size)
  2465. {
  2466. return 0;
  2467. }
  2468. static inline int security_socket_recvmsg(struct socket *sock,
  2469. struct msghdr *msg, int size,
  2470. int flags)
  2471. {
  2472. return 0;
  2473. }
  2474. static inline int security_socket_getsockname(struct socket *sock)
  2475. {
  2476. return 0;
  2477. }
  2478. static inline int security_socket_getpeername(struct socket *sock)
  2479. {
  2480. return 0;
  2481. }
  2482. static inline int security_socket_getsockopt(struct socket *sock,
  2483. int level, int optname)
  2484. {
  2485. return 0;
  2486. }
  2487. static inline int security_socket_setsockopt(struct socket *sock,
  2488. int level, int optname)
  2489. {
  2490. return 0;
  2491. }
  2492. static inline int security_socket_shutdown(struct socket *sock, int how)
  2493. {
  2494. return 0;
  2495. }
  2496. static inline int security_sock_rcv_skb(struct sock *sk,
  2497. struct sk_buff *skb)
  2498. {
  2499. return 0;
  2500. }
  2501. static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
  2502. int __user *optlen, unsigned len)
  2503. {
  2504. return -ENOPROTOOPT;
  2505. }
  2506. static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
  2507. {
  2508. return -ENOPROTOOPT;
  2509. }
  2510. static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
  2511. {
  2512. return 0;
  2513. }
  2514. static inline void security_sk_free(struct sock *sk)
  2515. {
  2516. }
  2517. static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
  2518. {
  2519. }
  2520. static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
  2521. {
  2522. }
  2523. static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
  2524. {
  2525. }
  2526. static inline void security_sock_graft(struct sock *sk, struct socket *parent)
  2527. {
  2528. }
  2529. static inline int security_inet_conn_request(struct sock *sk,
  2530. struct sk_buff *skb, struct request_sock *req)
  2531. {
  2532. return 0;
  2533. }
  2534. static inline void security_inet_csk_clone(struct sock *newsk,
  2535. const struct request_sock *req)
  2536. {
  2537. }
  2538. static inline void security_inet_conn_established(struct sock *sk,
  2539. struct sk_buff *skb)
  2540. {
  2541. }
  2542. static inline int security_secmark_relabel_packet(u32 secid)
  2543. {
  2544. return 0;
  2545. }
  2546. static inline void security_secmark_refcount_inc(void)
  2547. {
  2548. }
  2549. static inline void security_secmark_refcount_dec(void)
  2550. {
  2551. }
  2552. static inline int security_tun_dev_alloc_security(void **security)
  2553. {
  2554. return 0;
  2555. }
  2556. static inline void security_tun_dev_free_security(void *security)
  2557. {
  2558. }
  2559. static inline int security_tun_dev_create(void)
  2560. {
  2561. return 0;
  2562. }
  2563. static inline int security_tun_dev_attach_queue(void *security)
  2564. {
  2565. return 0;
  2566. }
  2567. static inline int security_tun_dev_attach(struct sock *sk, void *security)
  2568. {
  2569. return 0;
  2570. }
  2571. static inline int security_tun_dev_open(void *security)
  2572. {
  2573. return 0;
  2574. }
  2575. static inline void security_skb_owned_by(struct sk_buff *skb, struct sock *sk)
  2576. {
  2577. }
  2578. #endif /* CONFIG_SECURITY_NETWORK */
  2579. #ifdef CONFIG_SECURITY_NETWORK_XFRM
  2580. int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
  2581. int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
  2582. void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
  2583. int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
  2584. int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
  2585. int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
  2586. struct xfrm_sec_ctx *polsec, u32 secid);
  2587. int security_xfrm_state_delete(struct xfrm_state *x);
  2588. void security_xfrm_state_free(struct xfrm_state *x);
  2589. int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
  2590. int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
  2591. struct xfrm_policy *xp,
  2592. const struct flowi *fl);
  2593. int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
  2594. void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
  2595. #else /* CONFIG_SECURITY_NETWORK_XFRM */
  2596. static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx)
  2597. {
  2598. return 0;
  2599. }
  2600. static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
  2601. {
  2602. return 0;
  2603. }
  2604. static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
  2605. {
  2606. }
  2607. static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
  2608. {
  2609. return 0;
  2610. }
  2611. static inline int security_xfrm_state_alloc(struct xfrm_state *x,
  2612. struct xfrm_user_sec_ctx *sec_ctx)
  2613. {
  2614. return 0;
  2615. }
  2616. static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
  2617. struct xfrm_sec_ctx *polsec, u32 secid)
  2618. {
  2619. return 0;
  2620. }
  2621. static inline void security_xfrm_state_free(struct xfrm_state *x)
  2622. {
  2623. }
  2624. static inline int security_xfrm_state_delete(struct xfrm_state *x)
  2625. {
  2626. return 0;
  2627. }
  2628. static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
  2629. {
  2630. return 0;
  2631. }
  2632. static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
  2633. struct xfrm_policy *xp, const struct flowi *fl)
  2634. {
  2635. return 1;
  2636. }
  2637. static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
  2638. {
  2639. return 0;
  2640. }
  2641. static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
  2642. {
  2643. }
  2644. #endif /* CONFIG_SECURITY_NETWORK_XFRM */
  2645. #ifdef CONFIG_SECURITY_PATH
  2646. int security_path_unlink(struct path *dir, struct dentry *dentry);
  2647. int security_path_mkdir(struct path *dir, struct dentry *dentry, umode_t mode);
  2648. int security_path_rmdir(struct path *dir, struct dentry *dentry);
  2649. int security_path_mknod(struct path *dir, struct dentry *dentry, umode_t mode,
  2650. unsigned int dev);
  2651. int security_path_truncate(struct path *path);
  2652. int security_path_symlink(struct path *dir, struct dentry *dentry,
  2653. const char *old_name);
  2654. int security_path_link(struct dentry *old_dentry, struct path *new_dir,
  2655. struct dentry *new_dentry);
  2656. int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
  2657. struct path *new_dir, struct dentry *new_dentry);
  2658. int security_path_chmod(struct path *path, umode_t mode);
  2659. int security_path_chown(struct path *path, kuid_t uid, kgid_t gid);
  2660. int security_path_chroot(struct path *path);
  2661. #else /* CONFIG_SECURITY_PATH */
  2662. static inline int security_path_unlink(struct path *dir, struct dentry *dentry)
  2663. {
  2664. return 0;
  2665. }
  2666. static inline int security_path_mkdir(struct path *dir, struct dentry *dentry,
  2667. umode_t mode)
  2668. {
  2669. return 0;
  2670. }
  2671. static inline int security_path_rmdir(struct path *dir, struct dentry *dentry)
  2672. {
  2673. return 0;
  2674. }
  2675. static inline int security_path_mknod(struct path *dir, struct dentry *dentry,
  2676. umode_t mode, unsigned int dev)
  2677. {
  2678. return 0;
  2679. }
  2680. static inline int security_path_truncate(struct path *path)
  2681. {
  2682. return 0;
  2683. }
  2684. static inline int security_path_symlink(struct path *dir, struct dentry *dentry,
  2685. const char *old_name)
  2686. {
  2687. return 0;
  2688. }
  2689. static inline int security_path_link(struct dentry *old_dentry,
  2690. struct path *new_dir,
  2691. struct dentry *new_dentry)
  2692. {
  2693. return 0;
  2694. }
  2695. static inline int security_path_rename(struct path *old_dir,
  2696. struct dentry *old_dentry,
  2697. struct path *new_dir,
  2698. struct dentry *new_dentry)
  2699. {
  2700. return 0;
  2701. }
  2702. static inline int security_path_chmod(struct path *path, umode_t mode)
  2703. {
  2704. return 0;
  2705. }
  2706. static inline int security_path_chown(struct path *path, kuid_t uid, kgid_t gid)
  2707. {
  2708. return 0;
  2709. }
  2710. static inline int security_path_chroot(struct path *path)
  2711. {
  2712. return 0;
  2713. }
  2714. #endif /* CONFIG_SECURITY_PATH */
  2715. #ifdef CONFIG_KEYS
  2716. #ifdef CONFIG_SECURITY
  2717. int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
  2718. void security_key_free(struct key *key);
  2719. int security_key_permission(key_ref_t key_ref,
  2720. const struct cred *cred, key_perm_t perm);
  2721. int security_key_getsecurity(struct key *key, char **_buffer);
  2722. #else
  2723. static inline int security_key_alloc(struct key *key,
  2724. const struct cred *cred,
  2725. unsigned long flags)
  2726. {
  2727. return 0;
  2728. }
  2729. static inline void security_key_free(struct key *key)
  2730. {
  2731. }
  2732. static inline int security_key_permission(key_ref_t key_ref,
  2733. const struct cred *cred,
  2734. key_perm_t perm)
  2735. {
  2736. return 0;
  2737. }
  2738. static inline int security_key_getsecurity(struct key *key, char **_buffer)
  2739. {
  2740. *_buffer = NULL;
  2741. return 0;
  2742. }
  2743. #endif
  2744. #endif /* CONFIG_KEYS */
  2745. #ifdef CONFIG_AUDIT
  2746. #ifdef CONFIG_SECURITY
  2747. int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
  2748. int security_audit_rule_known(struct audit_krule *krule);
  2749. int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
  2750. struct audit_context *actx);
  2751. void security_audit_rule_free(void *lsmrule);
  2752. #else
  2753. static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
  2754. void **lsmrule)
  2755. {
  2756. return 0;
  2757. }
  2758. static inline int security_audit_rule_known(struct audit_krule *krule)
  2759. {
  2760. return 0;
  2761. }
  2762. static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
  2763. void *lsmrule, struct audit_context *actx)
  2764. {
  2765. return 0;
  2766. }
  2767. static inline void security_audit_rule_free(void *lsmrule)
  2768. { }
  2769. #endif /* CONFIG_SECURITY */
  2770. #endif /* CONFIG_AUDIT */
  2771. #ifdef CONFIG_SECURITYFS
  2772. extern struct dentry *securityfs_create_file(const char *name, umode_t mode,
  2773. struct dentry *parent, void *data,
  2774. const struct file_operations *fops);
  2775. extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
  2776. extern void securityfs_remove(struct dentry *dentry);
  2777. #else /* CONFIG_SECURITYFS */
  2778. static inline struct dentry *securityfs_create_dir(const char *name,
  2779. struct dentry *parent)
  2780. {
  2781. return ERR_PTR(-ENODEV);
  2782. }
  2783. static inline struct dentry *securityfs_create_file(const char *name,
  2784. umode_t mode,
  2785. struct dentry *parent,
  2786. void *data,
  2787. const struct file_operations *fops)
  2788. {
  2789. return ERR_PTR(-ENODEV);
  2790. }
  2791. static inline void securityfs_remove(struct dentry *dentry)
  2792. {}
  2793. #endif
  2794. #ifdef CONFIG_SECURITY
  2795. static inline char *alloc_secdata(void)
  2796. {
  2797. return (char *)get_zeroed_page(GFP_KERNEL);
  2798. }
  2799. static inline void free_secdata(void *secdata)
  2800. {
  2801. free_page((unsigned long)secdata);
  2802. }
  2803. #else
  2804. static inline char *alloc_secdata(void)
  2805. {
  2806. return (char *)1;
  2807. }
  2808. static inline void free_secdata(void *secdata)
  2809. { }
  2810. #endif /* CONFIG_SECURITY */
  2811. #ifdef CONFIG_SECURITY_YAMA
  2812. extern int yama_ptrace_access_check(struct task_struct *child,
  2813. unsigned int mode);
  2814. extern int yama_ptrace_traceme(struct task_struct *parent);
  2815. extern void yama_task_free(struct task_struct *task);
  2816. extern int yama_task_prctl(int option, unsigned long arg2, unsigned long arg3,
  2817. unsigned long arg4, unsigned long arg5);
  2818. #else
  2819. static inline int yama_ptrace_access_check(struct task_struct *child,
  2820. unsigned int mode)
  2821. {
  2822. return 0;
  2823. }
  2824. static inline int yama_ptrace_traceme(struct task_struct *parent)
  2825. {
  2826. return 0;
  2827. }
  2828. static inline void yama_task_free(struct task_struct *task)
  2829. {
  2830. }
  2831. static inline int yama_task_prctl(int option, unsigned long arg2,
  2832. unsigned long arg3, unsigned long arg4,
  2833. unsigned long arg5)
  2834. {
  2835. return -ENOSYS;
  2836. }
  2837. #endif /* CONFIG_SECURITY_YAMA */
  2838. #endif /* ! __LINUX_SECURITY_H */