auditsc.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529
  1. /* auditsc.c -- System-call auditing support
  2. * Handles all system-call specific auditing features.
  3. *
  4. * Copyright 2003-2004 Red Hat Inc., Durham, North Carolina.
  5. * Copyright 2005 Hewlett-Packard Development Company, L.P.
  6. * Copyright (C) 2005, 2006 IBM Corporation
  7. * All Rights Reserved.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. *
  23. * Written by Rickard E. (Rik) Faith <faith@redhat.com>
  24. *
  25. * Many of the ideas implemented here are from Stephen C. Tweedie,
  26. * especially the idea of avoiding a copy by using getname.
  27. *
  28. * The method for actual interception of syscall entry and exit (not in
  29. * this file -- see entry.S) is based on a GPL'd patch written by
  30. * okir@suse.de and Copyright 2003 SuSE Linux AG.
  31. *
  32. * POSIX message queue support added by George Wilson <ltcgcw@us.ibm.com>,
  33. * 2006.
  34. *
  35. * The support of additional filter rules compares (>, <, >=, <=) was
  36. * added by Dustin Kirkland <dustin.kirkland@us.ibm.com>, 2005.
  37. *
  38. * Modified by Amy Griffis <amy.griffis@hp.com> to collect additional
  39. * filesystem information.
  40. *
  41. * Subject and object context labeling support added by <danjones@us.ibm.com>
  42. * and <dustin.kirkland@us.ibm.com> for LSPP certification compliance.
  43. */
  44. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  45. #include <linux/init.h>
  46. #include <asm/types.h>
  47. #include <linux/atomic.h>
  48. #include <linux/fs.h>
  49. #include <linux/namei.h>
  50. #include <linux/mm.h>
  51. #include <linux/export.h>
  52. #include <linux/slab.h>
  53. #include <linux/mount.h>
  54. #include <linux/socket.h>
  55. #include <linux/mqueue.h>
  56. #include <linux/audit.h>
  57. #include <linux/personality.h>
  58. #include <linux/time.h>
  59. #include <linux/netlink.h>
  60. #include <linux/compiler.h>
  61. #include <asm/unistd.h>
  62. #include <linux/security.h>
  63. #include <linux/list.h>
  64. #include <linux/binfmts.h>
  65. #include <linux/highmem.h>
  66. #include <linux/syscalls.h>
  67. #include <asm/syscall.h>
  68. #include <linux/capability.h>
  69. #include <linux/fs_struct.h>
  70. #include <linux/compat.h>
  71. #include <linux/ctype.h>
  72. #include <linux/string.h>
  73. #include <linux/uaccess.h>
  74. #include <linux/fsnotify_backend.h>
  75. #include <uapi/linux/limits.h>
  76. #include "audit.h"
  77. /* flags stating the success for a syscall */
  78. #define AUDITSC_INVALID 0
  79. #define AUDITSC_SUCCESS 1
  80. #define AUDITSC_FAILURE 2
  81. /* no execve audit message should be longer than this (userspace limits),
  82. * see the note near the top of audit_log_execve_info() about this value */
  83. #define MAX_EXECVE_AUDIT_LEN 7500
  84. /* max length to print of cmdline/proctitle value during audit */
  85. #define MAX_PROCTITLE_AUDIT_LEN 128
  86. /* number of audit rules */
  87. int audit_n_rules;
  88. /* determines whether we collect data for signals sent */
  89. int audit_signals;
  90. struct audit_aux_data {
  91. struct audit_aux_data *next;
  92. int type;
  93. };
  94. #define AUDIT_AUX_IPCPERM 0
  95. /* Number of target pids per aux struct. */
  96. #define AUDIT_AUX_PIDS 16
  97. struct audit_aux_data_pids {
  98. struct audit_aux_data d;
  99. pid_t target_pid[AUDIT_AUX_PIDS];
  100. kuid_t target_auid[AUDIT_AUX_PIDS];
  101. kuid_t target_uid[AUDIT_AUX_PIDS];
  102. unsigned int target_sessionid[AUDIT_AUX_PIDS];
  103. u32 target_sid[AUDIT_AUX_PIDS];
  104. char target_comm[AUDIT_AUX_PIDS][TASK_COMM_LEN];
  105. int pid_count;
  106. };
  107. struct audit_aux_data_bprm_fcaps {
  108. struct audit_aux_data d;
  109. struct audit_cap_data fcap;
  110. unsigned int fcap_ver;
  111. struct audit_cap_data old_pcap;
  112. struct audit_cap_data new_pcap;
  113. };
  114. struct audit_tree_refs {
  115. struct audit_tree_refs *next;
  116. struct audit_chunk *c[31];
  117. };
  118. static int audit_match_perm(struct audit_context *ctx, int mask)
  119. {
  120. unsigned n;
  121. if (unlikely(!ctx))
  122. return 0;
  123. n = ctx->major;
  124. switch (audit_classify_syscall(ctx->arch, n)) {
  125. case 0: /* native */
  126. if ((mask & AUDIT_PERM_WRITE) &&
  127. audit_match_class(AUDIT_CLASS_WRITE, n))
  128. return 1;
  129. if ((mask & AUDIT_PERM_READ) &&
  130. audit_match_class(AUDIT_CLASS_READ, n))
  131. return 1;
  132. if ((mask & AUDIT_PERM_ATTR) &&
  133. audit_match_class(AUDIT_CLASS_CHATTR, n))
  134. return 1;
  135. return 0;
  136. case 1: /* 32bit on biarch */
  137. if ((mask & AUDIT_PERM_WRITE) &&
  138. audit_match_class(AUDIT_CLASS_WRITE_32, n))
  139. return 1;
  140. if ((mask & AUDIT_PERM_READ) &&
  141. audit_match_class(AUDIT_CLASS_READ_32, n))
  142. return 1;
  143. if ((mask & AUDIT_PERM_ATTR) &&
  144. audit_match_class(AUDIT_CLASS_CHATTR_32, n))
  145. return 1;
  146. return 0;
  147. case 2: /* open */
  148. return mask & ACC_MODE(ctx->argv[1]);
  149. case 3: /* openat */
  150. return mask & ACC_MODE(ctx->argv[2]);
  151. case 4: /* socketcall */
  152. return ((mask & AUDIT_PERM_WRITE) && ctx->argv[0] == SYS_BIND);
  153. case 5: /* execve */
  154. return mask & AUDIT_PERM_EXEC;
  155. default:
  156. return 0;
  157. }
  158. }
  159. static int audit_match_filetype(struct audit_context *ctx, int val)
  160. {
  161. struct audit_names *n;
  162. umode_t mode = (umode_t)val;
  163. if (unlikely(!ctx))
  164. return 0;
  165. list_for_each_entry(n, &ctx->names_list, list) {
  166. if ((n->ino != AUDIT_INO_UNSET) &&
  167. ((n->mode & S_IFMT) == mode))
  168. return 1;
  169. }
  170. return 0;
  171. }
  172. /*
  173. * We keep a linked list of fixed-sized (31 pointer) arrays of audit_chunk *;
  174. * ->first_trees points to its beginning, ->trees - to the current end of data.
  175. * ->tree_count is the number of free entries in array pointed to by ->trees.
  176. * Original condition is (NULL, NULL, 0); as soon as it grows we never revert to NULL,
  177. * "empty" becomes (p, p, 31) afterwards. We don't shrink the list (and seriously,
  178. * it's going to remain 1-element for almost any setup) until we free context itself.
  179. * References in it _are_ dropped - at the same time we free/drop aux stuff.
  180. */
  181. #ifdef CONFIG_AUDIT_TREE
  182. static void audit_set_auditable(struct audit_context *ctx)
  183. {
  184. if (!ctx->prio) {
  185. ctx->prio = 1;
  186. ctx->current_state = AUDIT_RECORD_CONTEXT;
  187. }
  188. }
  189. static int put_tree_ref(struct audit_context *ctx, struct audit_chunk *chunk)
  190. {
  191. struct audit_tree_refs *p = ctx->trees;
  192. int left = ctx->tree_count;
  193. if (likely(left)) {
  194. p->c[--left] = chunk;
  195. ctx->tree_count = left;
  196. return 1;
  197. }
  198. if (!p)
  199. return 0;
  200. p = p->next;
  201. if (p) {
  202. p->c[30] = chunk;
  203. ctx->trees = p;
  204. ctx->tree_count = 30;
  205. return 1;
  206. }
  207. return 0;
  208. }
  209. static int grow_tree_refs(struct audit_context *ctx)
  210. {
  211. struct audit_tree_refs *p = ctx->trees;
  212. ctx->trees = kzalloc(sizeof(struct audit_tree_refs), GFP_KERNEL);
  213. if (!ctx->trees) {
  214. ctx->trees = p;
  215. return 0;
  216. }
  217. if (p)
  218. p->next = ctx->trees;
  219. else
  220. ctx->first_trees = ctx->trees;
  221. ctx->tree_count = 31;
  222. return 1;
  223. }
  224. #endif
  225. static void unroll_tree_refs(struct audit_context *ctx,
  226. struct audit_tree_refs *p, int count)
  227. {
  228. #ifdef CONFIG_AUDIT_TREE
  229. struct audit_tree_refs *q;
  230. int n;
  231. if (!p) {
  232. /* we started with empty chain */
  233. p = ctx->first_trees;
  234. count = 31;
  235. /* if the very first allocation has failed, nothing to do */
  236. if (!p)
  237. return;
  238. }
  239. n = count;
  240. for (q = p; q != ctx->trees; q = q->next, n = 31) {
  241. while (n--) {
  242. audit_put_chunk(q->c[n]);
  243. q->c[n] = NULL;
  244. }
  245. }
  246. while (n-- > ctx->tree_count) {
  247. audit_put_chunk(q->c[n]);
  248. q->c[n] = NULL;
  249. }
  250. ctx->trees = p;
  251. ctx->tree_count = count;
  252. #endif
  253. }
  254. static void free_tree_refs(struct audit_context *ctx)
  255. {
  256. struct audit_tree_refs *p, *q;
  257. for (p = ctx->first_trees; p; p = q) {
  258. q = p->next;
  259. kfree(p);
  260. }
  261. }
  262. static int match_tree_refs(struct audit_context *ctx, struct audit_tree *tree)
  263. {
  264. #ifdef CONFIG_AUDIT_TREE
  265. struct audit_tree_refs *p;
  266. int n;
  267. if (!tree)
  268. return 0;
  269. /* full ones */
  270. for (p = ctx->first_trees; p != ctx->trees; p = p->next) {
  271. for (n = 0; n < 31; n++)
  272. if (audit_tree_match(p->c[n], tree))
  273. return 1;
  274. }
  275. /* partial */
  276. if (p) {
  277. for (n = ctx->tree_count; n < 31; n++)
  278. if (audit_tree_match(p->c[n], tree))
  279. return 1;
  280. }
  281. #endif
  282. return 0;
  283. }
  284. static int audit_compare_uid(kuid_t uid,
  285. struct audit_names *name,
  286. struct audit_field *f,
  287. struct audit_context *ctx)
  288. {
  289. struct audit_names *n;
  290. int rc;
  291. if (name) {
  292. rc = audit_uid_comparator(uid, f->op, name->uid);
  293. if (rc)
  294. return rc;
  295. }
  296. if (ctx) {
  297. list_for_each_entry(n, &ctx->names_list, list) {
  298. rc = audit_uid_comparator(uid, f->op, n->uid);
  299. if (rc)
  300. return rc;
  301. }
  302. }
  303. return 0;
  304. }
  305. static int audit_compare_gid(kgid_t gid,
  306. struct audit_names *name,
  307. struct audit_field *f,
  308. struct audit_context *ctx)
  309. {
  310. struct audit_names *n;
  311. int rc;
  312. if (name) {
  313. rc = audit_gid_comparator(gid, f->op, name->gid);
  314. if (rc)
  315. return rc;
  316. }
  317. if (ctx) {
  318. list_for_each_entry(n, &ctx->names_list, list) {
  319. rc = audit_gid_comparator(gid, f->op, n->gid);
  320. if (rc)
  321. return rc;
  322. }
  323. }
  324. return 0;
  325. }
  326. static int audit_field_compare(struct task_struct *tsk,
  327. const struct cred *cred,
  328. struct audit_field *f,
  329. struct audit_context *ctx,
  330. struct audit_names *name)
  331. {
  332. switch (f->val) {
  333. /* process to file object comparisons */
  334. case AUDIT_COMPARE_UID_TO_OBJ_UID:
  335. return audit_compare_uid(cred->uid, name, f, ctx);
  336. case AUDIT_COMPARE_GID_TO_OBJ_GID:
  337. return audit_compare_gid(cred->gid, name, f, ctx);
  338. case AUDIT_COMPARE_EUID_TO_OBJ_UID:
  339. return audit_compare_uid(cred->euid, name, f, ctx);
  340. case AUDIT_COMPARE_EGID_TO_OBJ_GID:
  341. return audit_compare_gid(cred->egid, name, f, ctx);
  342. case AUDIT_COMPARE_AUID_TO_OBJ_UID:
  343. return audit_compare_uid(audit_get_loginuid(tsk), name, f, ctx);
  344. case AUDIT_COMPARE_SUID_TO_OBJ_UID:
  345. return audit_compare_uid(cred->suid, name, f, ctx);
  346. case AUDIT_COMPARE_SGID_TO_OBJ_GID:
  347. return audit_compare_gid(cred->sgid, name, f, ctx);
  348. case AUDIT_COMPARE_FSUID_TO_OBJ_UID:
  349. return audit_compare_uid(cred->fsuid, name, f, ctx);
  350. case AUDIT_COMPARE_FSGID_TO_OBJ_GID:
  351. return audit_compare_gid(cred->fsgid, name, f, ctx);
  352. /* uid comparisons */
  353. case AUDIT_COMPARE_UID_TO_AUID:
  354. return audit_uid_comparator(cred->uid, f->op,
  355. audit_get_loginuid(tsk));
  356. case AUDIT_COMPARE_UID_TO_EUID:
  357. return audit_uid_comparator(cred->uid, f->op, cred->euid);
  358. case AUDIT_COMPARE_UID_TO_SUID:
  359. return audit_uid_comparator(cred->uid, f->op, cred->suid);
  360. case AUDIT_COMPARE_UID_TO_FSUID:
  361. return audit_uid_comparator(cred->uid, f->op, cred->fsuid);
  362. /* auid comparisons */
  363. case AUDIT_COMPARE_AUID_TO_EUID:
  364. return audit_uid_comparator(audit_get_loginuid(tsk), f->op,
  365. cred->euid);
  366. case AUDIT_COMPARE_AUID_TO_SUID:
  367. return audit_uid_comparator(audit_get_loginuid(tsk), f->op,
  368. cred->suid);
  369. case AUDIT_COMPARE_AUID_TO_FSUID:
  370. return audit_uid_comparator(audit_get_loginuid(tsk), f->op,
  371. cred->fsuid);
  372. /* euid comparisons */
  373. case AUDIT_COMPARE_EUID_TO_SUID:
  374. return audit_uid_comparator(cred->euid, f->op, cred->suid);
  375. case AUDIT_COMPARE_EUID_TO_FSUID:
  376. return audit_uid_comparator(cred->euid, f->op, cred->fsuid);
  377. /* suid comparisons */
  378. case AUDIT_COMPARE_SUID_TO_FSUID:
  379. return audit_uid_comparator(cred->suid, f->op, cred->fsuid);
  380. /* gid comparisons */
  381. case AUDIT_COMPARE_GID_TO_EGID:
  382. return audit_gid_comparator(cred->gid, f->op, cred->egid);
  383. case AUDIT_COMPARE_GID_TO_SGID:
  384. return audit_gid_comparator(cred->gid, f->op, cred->sgid);
  385. case AUDIT_COMPARE_GID_TO_FSGID:
  386. return audit_gid_comparator(cred->gid, f->op, cred->fsgid);
  387. /* egid comparisons */
  388. case AUDIT_COMPARE_EGID_TO_SGID:
  389. return audit_gid_comparator(cred->egid, f->op, cred->sgid);
  390. case AUDIT_COMPARE_EGID_TO_FSGID:
  391. return audit_gid_comparator(cred->egid, f->op, cred->fsgid);
  392. /* sgid comparison */
  393. case AUDIT_COMPARE_SGID_TO_FSGID:
  394. return audit_gid_comparator(cred->sgid, f->op, cred->fsgid);
  395. default:
  396. WARN(1, "Missing AUDIT_COMPARE define. Report as a bug\n");
  397. return 0;
  398. }
  399. return 0;
  400. }
  401. /* Determine if any context name data matches a rule's watch data */
  402. /* Compare a task_struct with an audit_rule. Return 1 on match, 0
  403. * otherwise.
  404. *
  405. * If task_creation is true, this is an explicit indication that we are
  406. * filtering a task rule at task creation time. This and tsk == current are
  407. * the only situations where tsk->cred may be accessed without an rcu read lock.
  408. */
  409. static int audit_filter_rules(struct task_struct *tsk,
  410. struct audit_krule *rule,
  411. struct audit_context *ctx,
  412. struct audit_names *name,
  413. enum audit_state *state,
  414. bool task_creation)
  415. {
  416. const struct cred *cred;
  417. int i, need_sid = 1;
  418. u32 sid;
  419. unsigned int sessionid;
  420. cred = rcu_dereference_check(tsk->cred, tsk == current || task_creation);
  421. for (i = 0; i < rule->field_count; i++) {
  422. struct audit_field *f = &rule->fields[i];
  423. struct audit_names *n;
  424. int result = 0;
  425. pid_t pid;
  426. switch (f->type) {
  427. case AUDIT_PID:
  428. pid = task_tgid_nr(tsk);
  429. result = audit_comparator(pid, f->op, f->val);
  430. break;
  431. case AUDIT_PPID:
  432. if (ctx) {
  433. if (!ctx->ppid)
  434. ctx->ppid = task_ppid_nr(tsk);
  435. result = audit_comparator(ctx->ppid, f->op, f->val);
  436. }
  437. break;
  438. case AUDIT_EXE:
  439. result = audit_exe_compare(tsk, rule->exe);
  440. if (f->op == Audit_not_equal)
  441. result = !result;
  442. break;
  443. case AUDIT_UID:
  444. result = audit_uid_comparator(cred->uid, f->op, f->uid);
  445. break;
  446. case AUDIT_EUID:
  447. result = audit_uid_comparator(cred->euid, f->op, f->uid);
  448. break;
  449. case AUDIT_SUID:
  450. result = audit_uid_comparator(cred->suid, f->op, f->uid);
  451. break;
  452. case AUDIT_FSUID:
  453. result = audit_uid_comparator(cred->fsuid, f->op, f->uid);
  454. break;
  455. case AUDIT_GID:
  456. result = audit_gid_comparator(cred->gid, f->op, f->gid);
  457. if (f->op == Audit_equal) {
  458. if (!result)
  459. result = groups_search(cred->group_info, f->gid);
  460. } else if (f->op == Audit_not_equal) {
  461. if (result)
  462. result = !groups_search(cred->group_info, f->gid);
  463. }
  464. break;
  465. case AUDIT_EGID:
  466. result = audit_gid_comparator(cred->egid, f->op, f->gid);
  467. if (f->op == Audit_equal) {
  468. if (!result)
  469. result = groups_search(cred->group_info, f->gid);
  470. } else if (f->op == Audit_not_equal) {
  471. if (result)
  472. result = !groups_search(cred->group_info, f->gid);
  473. }
  474. break;
  475. case AUDIT_SGID:
  476. result = audit_gid_comparator(cred->sgid, f->op, f->gid);
  477. break;
  478. case AUDIT_FSGID:
  479. result = audit_gid_comparator(cred->fsgid, f->op, f->gid);
  480. break;
  481. case AUDIT_SESSIONID:
  482. sessionid = audit_get_sessionid(tsk);
  483. result = audit_comparator(sessionid, f->op, f->val);
  484. break;
  485. case AUDIT_PERS:
  486. result = audit_comparator(tsk->personality, f->op, f->val);
  487. break;
  488. case AUDIT_ARCH:
  489. if (ctx)
  490. result = audit_comparator(ctx->arch, f->op, f->val);
  491. break;
  492. case AUDIT_EXIT:
  493. if (ctx && ctx->return_valid)
  494. result = audit_comparator(ctx->return_code, f->op, f->val);
  495. break;
  496. case AUDIT_SUCCESS:
  497. if (ctx && ctx->return_valid) {
  498. if (f->val)
  499. result = audit_comparator(ctx->return_valid, f->op, AUDITSC_SUCCESS);
  500. else
  501. result = audit_comparator(ctx->return_valid, f->op, AUDITSC_FAILURE);
  502. }
  503. break;
  504. case AUDIT_DEVMAJOR:
  505. if (name) {
  506. if (audit_comparator(MAJOR(name->dev), f->op, f->val) ||
  507. audit_comparator(MAJOR(name->rdev), f->op, f->val))
  508. ++result;
  509. } else if (ctx) {
  510. list_for_each_entry(n, &ctx->names_list, list) {
  511. if (audit_comparator(MAJOR(n->dev), f->op, f->val) ||
  512. audit_comparator(MAJOR(n->rdev), f->op, f->val)) {
  513. ++result;
  514. break;
  515. }
  516. }
  517. }
  518. break;
  519. case AUDIT_DEVMINOR:
  520. if (name) {
  521. if (audit_comparator(MINOR(name->dev), f->op, f->val) ||
  522. audit_comparator(MINOR(name->rdev), f->op, f->val))
  523. ++result;
  524. } else if (ctx) {
  525. list_for_each_entry(n, &ctx->names_list, list) {
  526. if (audit_comparator(MINOR(n->dev), f->op, f->val) ||
  527. audit_comparator(MINOR(n->rdev), f->op, f->val)) {
  528. ++result;
  529. break;
  530. }
  531. }
  532. }
  533. break;
  534. case AUDIT_INODE:
  535. if (name)
  536. result = audit_comparator(name->ino, f->op, f->val);
  537. else if (ctx) {
  538. list_for_each_entry(n, &ctx->names_list, list) {
  539. if (audit_comparator(n->ino, f->op, f->val)) {
  540. ++result;
  541. break;
  542. }
  543. }
  544. }
  545. break;
  546. case AUDIT_OBJ_UID:
  547. if (name) {
  548. result = audit_uid_comparator(name->uid, f->op, f->uid);
  549. } else if (ctx) {
  550. list_for_each_entry(n, &ctx->names_list, list) {
  551. if (audit_uid_comparator(n->uid, f->op, f->uid)) {
  552. ++result;
  553. break;
  554. }
  555. }
  556. }
  557. break;
  558. case AUDIT_OBJ_GID:
  559. if (name) {
  560. result = audit_gid_comparator(name->gid, f->op, f->gid);
  561. } else if (ctx) {
  562. list_for_each_entry(n, &ctx->names_list, list) {
  563. if (audit_gid_comparator(n->gid, f->op, f->gid)) {
  564. ++result;
  565. break;
  566. }
  567. }
  568. }
  569. break;
  570. case AUDIT_WATCH:
  571. if (name)
  572. result = audit_watch_compare(rule->watch, name->ino, name->dev);
  573. break;
  574. case AUDIT_DIR:
  575. if (ctx)
  576. result = match_tree_refs(ctx, rule->tree);
  577. break;
  578. case AUDIT_LOGINUID:
  579. result = audit_uid_comparator(audit_get_loginuid(tsk),
  580. f->op, f->uid);
  581. break;
  582. case AUDIT_LOGINUID_SET:
  583. result = audit_comparator(audit_loginuid_set(tsk), f->op, f->val);
  584. break;
  585. case AUDIT_SUBJ_USER:
  586. case AUDIT_SUBJ_ROLE:
  587. case AUDIT_SUBJ_TYPE:
  588. case AUDIT_SUBJ_SEN:
  589. case AUDIT_SUBJ_CLR:
  590. /* NOTE: this may return negative values indicating
  591. a temporary error. We simply treat this as a
  592. match for now to avoid losing information that
  593. may be wanted. An error message will also be
  594. logged upon error */
  595. if (f->lsm_rule) {
  596. if (need_sid) {
  597. security_task_getsecid(tsk, &sid);
  598. need_sid = 0;
  599. }
  600. result = security_audit_rule_match(sid, f->type,
  601. f->op,
  602. f->lsm_rule,
  603. ctx);
  604. }
  605. break;
  606. case AUDIT_OBJ_USER:
  607. case AUDIT_OBJ_ROLE:
  608. case AUDIT_OBJ_TYPE:
  609. case AUDIT_OBJ_LEV_LOW:
  610. case AUDIT_OBJ_LEV_HIGH:
  611. /* The above note for AUDIT_SUBJ_USER...AUDIT_SUBJ_CLR
  612. also applies here */
  613. if (f->lsm_rule) {
  614. /* Find files that match */
  615. if (name) {
  616. result = security_audit_rule_match(
  617. name->osid, f->type, f->op,
  618. f->lsm_rule, ctx);
  619. } else if (ctx) {
  620. list_for_each_entry(n, &ctx->names_list, list) {
  621. if (security_audit_rule_match(n->osid, f->type,
  622. f->op, f->lsm_rule,
  623. ctx)) {
  624. ++result;
  625. break;
  626. }
  627. }
  628. }
  629. /* Find ipc objects that match */
  630. if (!ctx || ctx->type != AUDIT_IPC)
  631. break;
  632. if (security_audit_rule_match(ctx->ipc.osid,
  633. f->type, f->op,
  634. f->lsm_rule, ctx))
  635. ++result;
  636. }
  637. break;
  638. case AUDIT_ARG0:
  639. case AUDIT_ARG1:
  640. case AUDIT_ARG2:
  641. case AUDIT_ARG3:
  642. if (ctx)
  643. result = audit_comparator(ctx->argv[f->type-AUDIT_ARG0], f->op, f->val);
  644. break;
  645. case AUDIT_FILTERKEY:
  646. /* ignore this field for filtering */
  647. result = 1;
  648. break;
  649. case AUDIT_PERM:
  650. result = audit_match_perm(ctx, f->val);
  651. break;
  652. case AUDIT_FILETYPE:
  653. result = audit_match_filetype(ctx, f->val);
  654. break;
  655. case AUDIT_FIELD_COMPARE:
  656. result = audit_field_compare(tsk, cred, f, ctx, name);
  657. break;
  658. }
  659. if (!result)
  660. return 0;
  661. }
  662. if (ctx) {
  663. if (rule->prio <= ctx->prio)
  664. return 0;
  665. if (rule->filterkey) {
  666. kfree(ctx->filterkey);
  667. ctx->filterkey = kstrdup(rule->filterkey, GFP_ATOMIC);
  668. }
  669. ctx->prio = rule->prio;
  670. }
  671. switch (rule->action) {
  672. case AUDIT_NEVER:
  673. *state = AUDIT_DISABLED;
  674. break;
  675. case AUDIT_ALWAYS:
  676. *state = AUDIT_RECORD_CONTEXT;
  677. break;
  678. }
  679. return 1;
  680. }
  681. /* At process creation time, we can determine if system-call auditing is
  682. * completely disabled for this task. Since we only have the task
  683. * structure at this point, we can only check uid and gid.
  684. */
  685. static enum audit_state audit_filter_task(struct task_struct *tsk, char **key)
  686. {
  687. struct audit_entry *e;
  688. enum audit_state state;
  689. rcu_read_lock();
  690. list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TASK], list) {
  691. if (audit_filter_rules(tsk, &e->rule, NULL, NULL,
  692. &state, true)) {
  693. if (state == AUDIT_RECORD_CONTEXT)
  694. *key = kstrdup(e->rule.filterkey, GFP_ATOMIC);
  695. rcu_read_unlock();
  696. return state;
  697. }
  698. }
  699. rcu_read_unlock();
  700. return AUDIT_BUILD_CONTEXT;
  701. }
  702. static int audit_in_mask(const struct audit_krule *rule, unsigned long val)
  703. {
  704. int word, bit;
  705. if (val > 0xffffffff)
  706. return false;
  707. word = AUDIT_WORD(val);
  708. if (word >= AUDIT_BITMASK_SIZE)
  709. return false;
  710. bit = AUDIT_BIT(val);
  711. return rule->mask[word] & bit;
  712. }
  713. /* At syscall entry and exit time, this filter is called if the
  714. * audit_state is not low enough that auditing cannot take place, but is
  715. * also not high enough that we already know we have to write an audit
  716. * record (i.e., the state is AUDIT_SETUP_CONTEXT or AUDIT_BUILD_CONTEXT).
  717. */
  718. static enum audit_state audit_filter_syscall(struct task_struct *tsk,
  719. struct audit_context *ctx,
  720. struct list_head *list)
  721. {
  722. struct audit_entry *e;
  723. enum audit_state state;
  724. if (auditd_test_task(tsk))
  725. return AUDIT_DISABLED;
  726. rcu_read_lock();
  727. if (!list_empty(list)) {
  728. list_for_each_entry_rcu(e, list, list) {
  729. if (audit_in_mask(&e->rule, ctx->major) &&
  730. audit_filter_rules(tsk, &e->rule, ctx, NULL,
  731. &state, false)) {
  732. rcu_read_unlock();
  733. ctx->current_state = state;
  734. return state;
  735. }
  736. }
  737. }
  738. rcu_read_unlock();
  739. return AUDIT_BUILD_CONTEXT;
  740. }
  741. /*
  742. * Given an audit_name check the inode hash table to see if they match.
  743. * Called holding the rcu read lock to protect the use of audit_inode_hash
  744. */
  745. static int audit_filter_inode_name(struct task_struct *tsk,
  746. struct audit_names *n,
  747. struct audit_context *ctx) {
  748. int h = audit_hash_ino((u32)n->ino);
  749. struct list_head *list = &audit_inode_hash[h];
  750. struct audit_entry *e;
  751. enum audit_state state;
  752. if (list_empty(list))
  753. return 0;
  754. list_for_each_entry_rcu(e, list, list) {
  755. if (audit_in_mask(&e->rule, ctx->major) &&
  756. audit_filter_rules(tsk, &e->rule, ctx, n, &state, false)) {
  757. ctx->current_state = state;
  758. return 1;
  759. }
  760. }
  761. return 0;
  762. }
  763. /* At syscall exit time, this filter is called if any audit_names have been
  764. * collected during syscall processing. We only check rules in sublists at hash
  765. * buckets applicable to the inode numbers in audit_names.
  766. * Regarding audit_state, same rules apply as for audit_filter_syscall().
  767. */
  768. void audit_filter_inodes(struct task_struct *tsk, struct audit_context *ctx)
  769. {
  770. struct audit_names *n;
  771. if (auditd_test_task(tsk))
  772. return;
  773. rcu_read_lock();
  774. list_for_each_entry(n, &ctx->names_list, list) {
  775. if (audit_filter_inode_name(tsk, n, ctx))
  776. break;
  777. }
  778. rcu_read_unlock();
  779. }
  780. /* Transfer the audit context pointer to the caller, clearing it in the tsk's struct */
  781. static inline struct audit_context *audit_take_context(struct task_struct *tsk,
  782. int return_valid,
  783. long return_code)
  784. {
  785. struct audit_context *context = tsk->audit_context;
  786. if (!context)
  787. return NULL;
  788. context->return_valid = return_valid;
  789. /*
  790. * we need to fix up the return code in the audit logs if the actual
  791. * return codes are later going to be fixed up by the arch specific
  792. * signal handlers
  793. *
  794. * This is actually a test for:
  795. * (rc == ERESTARTSYS ) || (rc == ERESTARTNOINTR) ||
  796. * (rc == ERESTARTNOHAND) || (rc == ERESTART_RESTARTBLOCK)
  797. *
  798. * but is faster than a bunch of ||
  799. */
  800. if (unlikely(return_code <= -ERESTARTSYS) &&
  801. (return_code >= -ERESTART_RESTARTBLOCK) &&
  802. (return_code != -ENOIOCTLCMD))
  803. context->return_code = -EINTR;
  804. else
  805. context->return_code = return_code;
  806. if (context->in_syscall && !context->dummy) {
  807. audit_filter_syscall(tsk, context, &audit_filter_list[AUDIT_FILTER_EXIT]);
  808. audit_filter_inodes(tsk, context);
  809. }
  810. audit_set_context(tsk, NULL);
  811. return context;
  812. }
  813. static inline void audit_proctitle_free(struct audit_context *context)
  814. {
  815. kfree(context->proctitle.value);
  816. context->proctitle.value = NULL;
  817. context->proctitle.len = 0;
  818. }
  819. static inline void audit_free_names(struct audit_context *context)
  820. {
  821. struct audit_names *n, *next;
  822. list_for_each_entry_safe(n, next, &context->names_list, list) {
  823. list_del(&n->list);
  824. if (n->name)
  825. putname(n->name);
  826. if (n->should_free)
  827. kfree(n);
  828. }
  829. context->name_count = 0;
  830. path_put(&context->pwd);
  831. context->pwd.dentry = NULL;
  832. context->pwd.mnt = NULL;
  833. }
  834. static inline void audit_free_aux(struct audit_context *context)
  835. {
  836. struct audit_aux_data *aux;
  837. while ((aux = context->aux)) {
  838. context->aux = aux->next;
  839. kfree(aux);
  840. }
  841. while ((aux = context->aux_pids)) {
  842. context->aux_pids = aux->next;
  843. kfree(aux);
  844. }
  845. }
  846. static inline struct audit_context *audit_alloc_context(enum audit_state state)
  847. {
  848. struct audit_context *context;
  849. context = kzalloc(sizeof(*context), GFP_KERNEL);
  850. if (!context)
  851. return NULL;
  852. context->state = state;
  853. context->prio = state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
  854. INIT_LIST_HEAD(&context->killed_trees);
  855. INIT_LIST_HEAD(&context->names_list);
  856. return context;
  857. }
  858. /**
  859. * audit_alloc - allocate an audit context block for a task
  860. * @tsk: task
  861. *
  862. * Filter on the task information and allocate a per-task audit context
  863. * if necessary. Doing so turns on system call auditing for the
  864. * specified task. This is called from copy_process, so no lock is
  865. * needed.
  866. */
  867. int audit_alloc(struct task_struct *tsk)
  868. {
  869. struct audit_context *context;
  870. enum audit_state state;
  871. char *key = NULL;
  872. if (likely(!audit_ever_enabled))
  873. return 0; /* Return if not auditing. */
  874. state = audit_filter_task(tsk, &key);
  875. if (state == AUDIT_DISABLED) {
  876. clear_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
  877. return 0;
  878. }
  879. if (!(context = audit_alloc_context(state))) {
  880. kfree(key);
  881. audit_log_lost("out of memory in audit_alloc");
  882. return -ENOMEM;
  883. }
  884. context->filterkey = key;
  885. audit_set_context(tsk, context);
  886. set_tsk_thread_flag(tsk, TIF_SYSCALL_AUDIT);
  887. return 0;
  888. }
  889. static inline void audit_free_context(struct audit_context *context)
  890. {
  891. audit_free_names(context);
  892. unroll_tree_refs(context, NULL, 0);
  893. free_tree_refs(context);
  894. audit_free_aux(context);
  895. kfree(context->filterkey);
  896. kfree(context->sockaddr);
  897. audit_proctitle_free(context);
  898. kfree(context);
  899. }
  900. static int audit_log_pid_context(struct audit_context *context, pid_t pid,
  901. kuid_t auid, kuid_t uid, unsigned int sessionid,
  902. u32 sid, char *comm)
  903. {
  904. struct audit_buffer *ab;
  905. char *ctx = NULL;
  906. u32 len;
  907. int rc = 0;
  908. ab = audit_log_start(context, GFP_KERNEL, AUDIT_OBJ_PID);
  909. if (!ab)
  910. return rc;
  911. audit_log_format(ab, "opid=%d oauid=%d ouid=%d oses=%d", pid,
  912. from_kuid(&init_user_ns, auid),
  913. from_kuid(&init_user_ns, uid), sessionid);
  914. if (sid) {
  915. if (security_secid_to_secctx(sid, &ctx, &len)) {
  916. audit_log_format(ab, " obj=(none)");
  917. rc = 1;
  918. } else {
  919. audit_log_format(ab, " obj=%s", ctx);
  920. security_release_secctx(ctx, len);
  921. }
  922. }
  923. audit_log_format(ab, " ocomm=");
  924. audit_log_untrustedstring(ab, comm);
  925. audit_log_end(ab);
  926. return rc;
  927. }
  928. static void audit_log_execve_info(struct audit_context *context,
  929. struct audit_buffer **ab)
  930. {
  931. long len_max;
  932. long len_rem;
  933. long len_full;
  934. long len_buf;
  935. long len_abuf = 0;
  936. long len_tmp;
  937. bool require_data;
  938. bool encode;
  939. unsigned int iter;
  940. unsigned int arg;
  941. char *buf_head;
  942. char *buf;
  943. const char __user *p = (const char __user *)current->mm->arg_start;
  944. /* NOTE: this buffer needs to be large enough to hold all the non-arg
  945. * data we put in the audit record for this argument (see the
  946. * code below) ... at this point in time 96 is plenty */
  947. char abuf[96];
  948. /* NOTE: we set MAX_EXECVE_AUDIT_LEN to a rather arbitrary limit, the
  949. * current value of 7500 is not as important as the fact that it
  950. * is less than 8k, a setting of 7500 gives us plenty of wiggle
  951. * room if we go over a little bit in the logging below */
  952. WARN_ON_ONCE(MAX_EXECVE_AUDIT_LEN > 7500);
  953. len_max = MAX_EXECVE_AUDIT_LEN;
  954. /* scratch buffer to hold the userspace args */
  955. buf_head = kmalloc(MAX_EXECVE_AUDIT_LEN + 1, GFP_KERNEL);
  956. if (!buf_head) {
  957. audit_panic("out of memory for argv string");
  958. return;
  959. }
  960. buf = buf_head;
  961. audit_log_format(*ab, "argc=%d", context->execve.argc);
  962. len_rem = len_max;
  963. len_buf = 0;
  964. len_full = 0;
  965. require_data = true;
  966. encode = false;
  967. iter = 0;
  968. arg = 0;
  969. do {
  970. /* NOTE: we don't ever want to trust this value for anything
  971. * serious, but the audit record format insists we
  972. * provide an argument length for really long arguments,
  973. * e.g. > MAX_EXECVE_AUDIT_LEN, so we have no choice but
  974. * to use strncpy_from_user() to obtain this value for
  975. * recording in the log, although we don't use it
  976. * anywhere here to avoid a double-fetch problem */
  977. if (len_full == 0)
  978. len_full = strnlen_user(p, MAX_ARG_STRLEN) - 1;
  979. /* read more data from userspace */
  980. if (require_data) {
  981. /* can we make more room in the buffer? */
  982. if (buf != buf_head) {
  983. memmove(buf_head, buf, len_buf);
  984. buf = buf_head;
  985. }
  986. /* fetch as much as we can of the argument */
  987. len_tmp = strncpy_from_user(&buf_head[len_buf], p,
  988. len_max - len_buf);
  989. if (len_tmp == -EFAULT) {
  990. /* unable to copy from userspace */
  991. send_sig(SIGKILL, current, 0);
  992. goto out;
  993. } else if (len_tmp == (len_max - len_buf)) {
  994. /* buffer is not large enough */
  995. require_data = true;
  996. /* NOTE: if we are going to span multiple
  997. * buffers force the encoding so we stand
  998. * a chance at a sane len_full value and
  999. * consistent record encoding */
  1000. encode = true;
  1001. len_full = len_full * 2;
  1002. p += len_tmp;
  1003. } else {
  1004. require_data = false;
  1005. if (!encode)
  1006. encode = audit_string_contains_control(
  1007. buf, len_tmp);
  1008. /* try to use a trusted value for len_full */
  1009. if (len_full < len_max)
  1010. len_full = (encode ?
  1011. len_tmp * 2 : len_tmp);
  1012. p += len_tmp + 1;
  1013. }
  1014. len_buf += len_tmp;
  1015. buf_head[len_buf] = '\0';
  1016. /* length of the buffer in the audit record? */
  1017. len_abuf = (encode ? len_buf * 2 : len_buf + 2);
  1018. }
  1019. /* write as much as we can to the audit log */
  1020. if (len_buf >= 0) {
  1021. /* NOTE: some magic numbers here - basically if we
  1022. * can't fit a reasonable amount of data into the
  1023. * existing audit buffer, flush it and start with
  1024. * a new buffer */
  1025. if ((sizeof(abuf) + 8) > len_rem) {
  1026. len_rem = len_max;
  1027. audit_log_end(*ab);
  1028. *ab = audit_log_start(context,
  1029. GFP_KERNEL, AUDIT_EXECVE);
  1030. if (!*ab)
  1031. goto out;
  1032. }
  1033. /* create the non-arg portion of the arg record */
  1034. len_tmp = 0;
  1035. if (require_data || (iter > 0) ||
  1036. ((len_abuf + sizeof(abuf)) > len_rem)) {
  1037. if (iter == 0) {
  1038. len_tmp += snprintf(&abuf[len_tmp],
  1039. sizeof(abuf) - len_tmp,
  1040. " a%d_len=%lu",
  1041. arg, len_full);
  1042. }
  1043. len_tmp += snprintf(&abuf[len_tmp],
  1044. sizeof(abuf) - len_tmp,
  1045. " a%d[%d]=", arg, iter++);
  1046. } else
  1047. len_tmp += snprintf(&abuf[len_tmp],
  1048. sizeof(abuf) - len_tmp,
  1049. " a%d=", arg);
  1050. WARN_ON(len_tmp >= sizeof(abuf));
  1051. abuf[sizeof(abuf) - 1] = '\0';
  1052. /* log the arg in the audit record */
  1053. audit_log_format(*ab, "%s", abuf);
  1054. len_rem -= len_tmp;
  1055. len_tmp = len_buf;
  1056. if (encode) {
  1057. if (len_abuf > len_rem)
  1058. len_tmp = len_rem / 2; /* encoding */
  1059. audit_log_n_hex(*ab, buf, len_tmp);
  1060. len_rem -= len_tmp * 2;
  1061. len_abuf -= len_tmp * 2;
  1062. } else {
  1063. if (len_abuf > len_rem)
  1064. len_tmp = len_rem - 2; /* quotes */
  1065. audit_log_n_string(*ab, buf, len_tmp);
  1066. len_rem -= len_tmp + 2;
  1067. /* don't subtract the "2" because we still need
  1068. * to add quotes to the remaining string */
  1069. len_abuf -= len_tmp;
  1070. }
  1071. len_buf -= len_tmp;
  1072. buf += len_tmp;
  1073. }
  1074. /* ready to move to the next argument? */
  1075. if ((len_buf == 0) && !require_data) {
  1076. arg++;
  1077. iter = 0;
  1078. len_full = 0;
  1079. require_data = true;
  1080. encode = false;
  1081. }
  1082. } while (arg < context->execve.argc);
  1083. /* NOTE: the caller handles the final audit_log_end() call */
  1084. out:
  1085. kfree(buf_head);
  1086. }
  1087. static void show_special(struct audit_context *context, int *call_panic)
  1088. {
  1089. struct audit_buffer *ab;
  1090. int i;
  1091. ab = audit_log_start(context, GFP_KERNEL, context->type);
  1092. if (!ab)
  1093. return;
  1094. switch (context->type) {
  1095. case AUDIT_SOCKETCALL: {
  1096. int nargs = context->socketcall.nargs;
  1097. audit_log_format(ab, "nargs=%d", nargs);
  1098. for (i = 0; i < nargs; i++)
  1099. audit_log_format(ab, " a%d=%lx", i,
  1100. context->socketcall.args[i]);
  1101. break; }
  1102. case AUDIT_IPC: {
  1103. u32 osid = context->ipc.osid;
  1104. audit_log_format(ab, "ouid=%u ogid=%u mode=%#ho",
  1105. from_kuid(&init_user_ns, context->ipc.uid),
  1106. from_kgid(&init_user_ns, context->ipc.gid),
  1107. context->ipc.mode);
  1108. if (osid) {
  1109. char *ctx = NULL;
  1110. u32 len;
  1111. if (security_secid_to_secctx(osid, &ctx, &len)) {
  1112. audit_log_format(ab, " osid=%u", osid);
  1113. *call_panic = 1;
  1114. } else {
  1115. audit_log_format(ab, " obj=%s", ctx);
  1116. security_release_secctx(ctx, len);
  1117. }
  1118. }
  1119. if (context->ipc.has_perm) {
  1120. audit_log_end(ab);
  1121. ab = audit_log_start(context, GFP_KERNEL,
  1122. AUDIT_IPC_SET_PERM);
  1123. if (unlikely(!ab))
  1124. return;
  1125. audit_log_format(ab,
  1126. "qbytes=%lx ouid=%u ogid=%u mode=%#ho",
  1127. context->ipc.qbytes,
  1128. context->ipc.perm_uid,
  1129. context->ipc.perm_gid,
  1130. context->ipc.perm_mode);
  1131. }
  1132. break; }
  1133. case AUDIT_MQ_OPEN:
  1134. audit_log_format(ab,
  1135. "oflag=0x%x mode=%#ho mq_flags=0x%lx mq_maxmsg=%ld "
  1136. "mq_msgsize=%ld mq_curmsgs=%ld",
  1137. context->mq_open.oflag, context->mq_open.mode,
  1138. context->mq_open.attr.mq_flags,
  1139. context->mq_open.attr.mq_maxmsg,
  1140. context->mq_open.attr.mq_msgsize,
  1141. context->mq_open.attr.mq_curmsgs);
  1142. break;
  1143. case AUDIT_MQ_SENDRECV:
  1144. audit_log_format(ab,
  1145. "mqdes=%d msg_len=%zd msg_prio=%u "
  1146. "abs_timeout_sec=%lld abs_timeout_nsec=%ld",
  1147. context->mq_sendrecv.mqdes,
  1148. context->mq_sendrecv.msg_len,
  1149. context->mq_sendrecv.msg_prio,
  1150. (long long) context->mq_sendrecv.abs_timeout.tv_sec,
  1151. context->mq_sendrecv.abs_timeout.tv_nsec);
  1152. break;
  1153. case AUDIT_MQ_NOTIFY:
  1154. audit_log_format(ab, "mqdes=%d sigev_signo=%d",
  1155. context->mq_notify.mqdes,
  1156. context->mq_notify.sigev_signo);
  1157. break;
  1158. case AUDIT_MQ_GETSETATTR: {
  1159. struct mq_attr *attr = &context->mq_getsetattr.mqstat;
  1160. audit_log_format(ab,
  1161. "mqdes=%d mq_flags=0x%lx mq_maxmsg=%ld mq_msgsize=%ld "
  1162. "mq_curmsgs=%ld ",
  1163. context->mq_getsetattr.mqdes,
  1164. attr->mq_flags, attr->mq_maxmsg,
  1165. attr->mq_msgsize, attr->mq_curmsgs);
  1166. break; }
  1167. case AUDIT_CAPSET:
  1168. audit_log_format(ab, "pid=%d", context->capset.pid);
  1169. audit_log_cap(ab, "cap_pi", &context->capset.cap.inheritable);
  1170. audit_log_cap(ab, "cap_pp", &context->capset.cap.permitted);
  1171. audit_log_cap(ab, "cap_pe", &context->capset.cap.effective);
  1172. audit_log_cap(ab, "cap_pa", &context->capset.cap.ambient);
  1173. break;
  1174. case AUDIT_MMAP:
  1175. audit_log_format(ab, "fd=%d flags=0x%x", context->mmap.fd,
  1176. context->mmap.flags);
  1177. break;
  1178. case AUDIT_EXECVE:
  1179. audit_log_execve_info(context, &ab);
  1180. break;
  1181. case AUDIT_KERN_MODULE:
  1182. audit_log_format(ab, "name=");
  1183. if (context->module.name) {
  1184. audit_log_untrustedstring(ab, context->module.name);
  1185. kfree(context->module.name);
  1186. } else
  1187. audit_log_format(ab, "(null)");
  1188. break;
  1189. }
  1190. audit_log_end(ab);
  1191. }
  1192. static inline int audit_proctitle_rtrim(char *proctitle, int len)
  1193. {
  1194. char *end = proctitle + len - 1;
  1195. while (end > proctitle && !isprint(*end))
  1196. end--;
  1197. /* catch the case where proctitle is only 1 non-print character */
  1198. len = end - proctitle + 1;
  1199. len -= isprint(proctitle[len-1]) == 0;
  1200. return len;
  1201. }
  1202. static void audit_log_proctitle(struct task_struct *tsk,
  1203. struct audit_context *context)
  1204. {
  1205. int res;
  1206. char *buf;
  1207. char *msg = "(null)";
  1208. int len = strlen(msg);
  1209. struct audit_buffer *ab;
  1210. ab = audit_log_start(context, GFP_KERNEL, AUDIT_PROCTITLE);
  1211. if (!ab)
  1212. return; /* audit_panic or being filtered */
  1213. audit_log_format(ab, "proctitle=");
  1214. /* Not cached */
  1215. if (!context->proctitle.value) {
  1216. buf = kmalloc(MAX_PROCTITLE_AUDIT_LEN, GFP_KERNEL);
  1217. if (!buf)
  1218. goto out;
  1219. /* Historically called this from procfs naming */
  1220. res = get_cmdline(tsk, buf, MAX_PROCTITLE_AUDIT_LEN);
  1221. if (res == 0) {
  1222. kfree(buf);
  1223. goto out;
  1224. }
  1225. res = audit_proctitle_rtrim(buf, res);
  1226. if (res == 0) {
  1227. kfree(buf);
  1228. goto out;
  1229. }
  1230. context->proctitle.value = buf;
  1231. context->proctitle.len = res;
  1232. }
  1233. msg = context->proctitle.value;
  1234. len = context->proctitle.len;
  1235. out:
  1236. audit_log_n_untrustedstring(ab, msg, len);
  1237. audit_log_end(ab);
  1238. }
  1239. static void audit_log_exit(struct audit_context *context, struct task_struct *tsk)
  1240. {
  1241. int i, call_panic = 0;
  1242. struct audit_buffer *ab;
  1243. struct audit_aux_data *aux;
  1244. struct audit_names *n;
  1245. /* tsk == current */
  1246. context->personality = tsk->personality;
  1247. ab = audit_log_start(context, GFP_KERNEL, AUDIT_SYSCALL);
  1248. if (!ab)
  1249. return; /* audit_panic has been called */
  1250. audit_log_format(ab, "arch=%x syscall=%d",
  1251. context->arch, context->major);
  1252. if (context->personality != PER_LINUX)
  1253. audit_log_format(ab, " per=%lx", context->personality);
  1254. if (context->return_valid)
  1255. audit_log_format(ab, " success=%s exit=%ld",
  1256. (context->return_valid==AUDITSC_SUCCESS)?"yes":"no",
  1257. context->return_code);
  1258. audit_log_format(ab,
  1259. " a0=%lx a1=%lx a2=%lx a3=%lx items=%d",
  1260. context->argv[0],
  1261. context->argv[1],
  1262. context->argv[2],
  1263. context->argv[3],
  1264. context->name_count);
  1265. audit_log_task_info(ab, tsk);
  1266. audit_log_key(ab, context->filterkey);
  1267. audit_log_end(ab);
  1268. for (aux = context->aux; aux; aux = aux->next) {
  1269. ab = audit_log_start(context, GFP_KERNEL, aux->type);
  1270. if (!ab)
  1271. continue; /* audit_panic has been called */
  1272. switch (aux->type) {
  1273. case AUDIT_BPRM_FCAPS: {
  1274. struct audit_aux_data_bprm_fcaps *axs = (void *)aux;
  1275. audit_log_format(ab, "fver=%x", axs->fcap_ver);
  1276. audit_log_cap(ab, "fp", &axs->fcap.permitted);
  1277. audit_log_cap(ab, "fi", &axs->fcap.inheritable);
  1278. audit_log_format(ab, " fe=%d", axs->fcap.fE);
  1279. audit_log_cap(ab, "old_pp", &axs->old_pcap.permitted);
  1280. audit_log_cap(ab, "old_pi", &axs->old_pcap.inheritable);
  1281. audit_log_cap(ab, "old_pe", &axs->old_pcap.effective);
  1282. audit_log_cap(ab, "old_pa", &axs->old_pcap.ambient);
  1283. audit_log_cap(ab, "pp", &axs->new_pcap.permitted);
  1284. audit_log_cap(ab, "pi", &axs->new_pcap.inheritable);
  1285. audit_log_cap(ab, "pe", &axs->new_pcap.effective);
  1286. audit_log_cap(ab, "pa", &axs->new_pcap.ambient);
  1287. break; }
  1288. }
  1289. audit_log_end(ab);
  1290. }
  1291. if (context->type)
  1292. show_special(context, &call_panic);
  1293. if (context->fds[0] >= 0) {
  1294. ab = audit_log_start(context, GFP_KERNEL, AUDIT_FD_PAIR);
  1295. if (ab) {
  1296. audit_log_format(ab, "fd0=%d fd1=%d",
  1297. context->fds[0], context->fds[1]);
  1298. audit_log_end(ab);
  1299. }
  1300. }
  1301. if (context->sockaddr_len) {
  1302. ab = audit_log_start(context, GFP_KERNEL, AUDIT_SOCKADDR);
  1303. if (ab) {
  1304. audit_log_format(ab, "saddr=");
  1305. audit_log_n_hex(ab, (void *)context->sockaddr,
  1306. context->sockaddr_len);
  1307. audit_log_end(ab);
  1308. }
  1309. }
  1310. for (aux = context->aux_pids; aux; aux = aux->next) {
  1311. struct audit_aux_data_pids *axs = (void *)aux;
  1312. for (i = 0; i < axs->pid_count; i++)
  1313. if (audit_log_pid_context(context, axs->target_pid[i],
  1314. axs->target_auid[i],
  1315. axs->target_uid[i],
  1316. axs->target_sessionid[i],
  1317. axs->target_sid[i],
  1318. axs->target_comm[i]))
  1319. call_panic = 1;
  1320. }
  1321. if (context->target_pid &&
  1322. audit_log_pid_context(context, context->target_pid,
  1323. context->target_auid, context->target_uid,
  1324. context->target_sessionid,
  1325. context->target_sid, context->target_comm))
  1326. call_panic = 1;
  1327. if (context->pwd.dentry && context->pwd.mnt) {
  1328. ab = audit_log_start(context, GFP_KERNEL, AUDIT_CWD);
  1329. if (ab) {
  1330. audit_log_d_path(ab, "cwd=", &context->pwd);
  1331. audit_log_end(ab);
  1332. }
  1333. }
  1334. i = 0;
  1335. list_for_each_entry(n, &context->names_list, list) {
  1336. if (n->hidden)
  1337. continue;
  1338. audit_log_name(context, n, NULL, i++, &call_panic);
  1339. }
  1340. audit_log_proctitle(tsk, context);
  1341. /* Send end of event record to help user space know we are finished */
  1342. ab = audit_log_start(context, GFP_KERNEL, AUDIT_EOE);
  1343. if (ab)
  1344. audit_log_end(ab);
  1345. if (call_panic)
  1346. audit_panic("error converting sid to string");
  1347. }
  1348. /**
  1349. * __audit_free - free a per-task audit context
  1350. * @tsk: task whose audit context block to free
  1351. *
  1352. * Called from copy_process and do_exit
  1353. */
  1354. void __audit_free(struct task_struct *tsk)
  1355. {
  1356. struct audit_context *context;
  1357. context = audit_take_context(tsk, 0, 0);
  1358. if (!context)
  1359. return;
  1360. /* Check for system calls that do not go through the exit
  1361. * function (e.g., exit_group), then free context block.
  1362. * We use GFP_ATOMIC here because we might be doing this
  1363. * in the context of the idle thread */
  1364. /* that can happen only if we are called from do_exit() */
  1365. if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
  1366. audit_log_exit(context, tsk);
  1367. if (!list_empty(&context->killed_trees))
  1368. audit_kill_trees(&context->killed_trees);
  1369. audit_free_context(context);
  1370. }
  1371. /**
  1372. * __audit_syscall_entry - fill in an audit record at syscall entry
  1373. * @major: major syscall type (function)
  1374. * @a1: additional syscall register 1
  1375. * @a2: additional syscall register 2
  1376. * @a3: additional syscall register 3
  1377. * @a4: additional syscall register 4
  1378. *
  1379. * Fill in audit context at syscall entry. This only happens if the
  1380. * audit context was created when the task was created and the state or
  1381. * filters demand the audit context be built. If the state from the
  1382. * per-task filter or from the per-syscall filter is AUDIT_RECORD_CONTEXT,
  1383. * then the record will be written at syscall exit time (otherwise, it
  1384. * will only be written if another part of the kernel requests that it
  1385. * be written).
  1386. */
  1387. void __audit_syscall_entry(int major, unsigned long a1, unsigned long a2,
  1388. unsigned long a3, unsigned long a4)
  1389. {
  1390. struct audit_context *context = audit_context();
  1391. enum audit_state state;
  1392. if (!audit_enabled || !context)
  1393. return;
  1394. BUG_ON(context->in_syscall || context->name_count);
  1395. state = context->state;
  1396. if (state == AUDIT_DISABLED)
  1397. return;
  1398. context->dummy = !audit_n_rules;
  1399. if (!context->dummy && state == AUDIT_BUILD_CONTEXT) {
  1400. context->prio = 0;
  1401. if (auditd_test_task(current))
  1402. return;
  1403. }
  1404. context->arch = syscall_get_arch();
  1405. context->major = major;
  1406. context->argv[0] = a1;
  1407. context->argv[1] = a2;
  1408. context->argv[2] = a3;
  1409. context->argv[3] = a4;
  1410. context->serial = 0;
  1411. context->in_syscall = 1;
  1412. context->current_state = state;
  1413. context->ppid = 0;
  1414. ktime_get_coarse_real_ts64(&context->ctime);
  1415. }
  1416. /**
  1417. * __audit_syscall_exit - deallocate audit context after a system call
  1418. * @success: success value of the syscall
  1419. * @return_code: return value of the syscall
  1420. *
  1421. * Tear down after system call. If the audit context has been marked as
  1422. * auditable (either because of the AUDIT_RECORD_CONTEXT state from
  1423. * filtering, or because some other part of the kernel wrote an audit
  1424. * message), then write out the syscall information. In call cases,
  1425. * free the names stored from getname().
  1426. */
  1427. void __audit_syscall_exit(int success, long return_code)
  1428. {
  1429. struct audit_context *context;
  1430. if (success)
  1431. success = AUDITSC_SUCCESS;
  1432. else
  1433. success = AUDITSC_FAILURE;
  1434. context = audit_take_context(current, success, return_code);
  1435. if (!context)
  1436. return;
  1437. if (context->in_syscall && context->current_state == AUDIT_RECORD_CONTEXT)
  1438. audit_log_exit(context, current);
  1439. context->in_syscall = 0;
  1440. context->prio = context->state == AUDIT_RECORD_CONTEXT ? ~0ULL : 0;
  1441. if (!list_empty(&context->killed_trees))
  1442. audit_kill_trees(&context->killed_trees);
  1443. audit_free_names(context);
  1444. unroll_tree_refs(context, NULL, 0);
  1445. audit_free_aux(context);
  1446. context->aux = NULL;
  1447. context->aux_pids = NULL;
  1448. context->target_pid = 0;
  1449. context->target_sid = 0;
  1450. context->sockaddr_len = 0;
  1451. context->type = 0;
  1452. context->fds[0] = -1;
  1453. if (context->state != AUDIT_RECORD_CONTEXT) {
  1454. kfree(context->filterkey);
  1455. context->filterkey = NULL;
  1456. }
  1457. audit_set_context(current, context);
  1458. }
  1459. static inline void handle_one(const struct inode *inode)
  1460. {
  1461. #ifdef CONFIG_AUDIT_TREE
  1462. struct audit_context *context;
  1463. struct audit_tree_refs *p;
  1464. struct audit_chunk *chunk;
  1465. int count;
  1466. if (likely(!inode->i_fsnotify_marks))
  1467. return;
  1468. context = audit_context();
  1469. p = context->trees;
  1470. count = context->tree_count;
  1471. rcu_read_lock();
  1472. chunk = audit_tree_lookup(inode);
  1473. rcu_read_unlock();
  1474. if (!chunk)
  1475. return;
  1476. if (likely(put_tree_ref(context, chunk)))
  1477. return;
  1478. if (unlikely(!grow_tree_refs(context))) {
  1479. pr_warn("out of memory, audit has lost a tree reference\n");
  1480. audit_set_auditable(context);
  1481. audit_put_chunk(chunk);
  1482. unroll_tree_refs(context, p, count);
  1483. return;
  1484. }
  1485. put_tree_ref(context, chunk);
  1486. #endif
  1487. }
  1488. static void handle_path(const struct dentry *dentry)
  1489. {
  1490. #ifdef CONFIG_AUDIT_TREE
  1491. struct audit_context *context;
  1492. struct audit_tree_refs *p;
  1493. const struct dentry *d, *parent;
  1494. struct audit_chunk *drop;
  1495. unsigned long seq;
  1496. int count;
  1497. context = audit_context();
  1498. p = context->trees;
  1499. count = context->tree_count;
  1500. retry:
  1501. drop = NULL;
  1502. d = dentry;
  1503. rcu_read_lock();
  1504. seq = read_seqbegin(&rename_lock);
  1505. for(;;) {
  1506. struct inode *inode = d_backing_inode(d);
  1507. if (inode && unlikely(inode->i_fsnotify_marks)) {
  1508. struct audit_chunk *chunk;
  1509. chunk = audit_tree_lookup(inode);
  1510. if (chunk) {
  1511. if (unlikely(!put_tree_ref(context, chunk))) {
  1512. drop = chunk;
  1513. break;
  1514. }
  1515. }
  1516. }
  1517. parent = d->d_parent;
  1518. if (parent == d)
  1519. break;
  1520. d = parent;
  1521. }
  1522. if (unlikely(read_seqretry(&rename_lock, seq) || drop)) { /* in this order */
  1523. rcu_read_unlock();
  1524. if (!drop) {
  1525. /* just a race with rename */
  1526. unroll_tree_refs(context, p, count);
  1527. goto retry;
  1528. }
  1529. audit_put_chunk(drop);
  1530. if (grow_tree_refs(context)) {
  1531. /* OK, got more space */
  1532. unroll_tree_refs(context, p, count);
  1533. goto retry;
  1534. }
  1535. /* too bad */
  1536. pr_warn("out of memory, audit has lost a tree reference\n");
  1537. unroll_tree_refs(context, p, count);
  1538. audit_set_auditable(context);
  1539. return;
  1540. }
  1541. rcu_read_unlock();
  1542. #endif
  1543. }
  1544. static struct audit_names *audit_alloc_name(struct audit_context *context,
  1545. unsigned char type)
  1546. {
  1547. struct audit_names *aname;
  1548. if (context->name_count < AUDIT_NAMES) {
  1549. aname = &context->preallocated_names[context->name_count];
  1550. memset(aname, 0, sizeof(*aname));
  1551. } else {
  1552. aname = kzalloc(sizeof(*aname), GFP_NOFS);
  1553. if (!aname)
  1554. return NULL;
  1555. aname->should_free = true;
  1556. }
  1557. aname->ino = AUDIT_INO_UNSET;
  1558. aname->type = type;
  1559. list_add_tail(&aname->list, &context->names_list);
  1560. context->name_count++;
  1561. return aname;
  1562. }
  1563. /**
  1564. * __audit_reusename - fill out filename with info from existing entry
  1565. * @uptr: userland ptr to pathname
  1566. *
  1567. * Search the audit_names list for the current audit context. If there is an
  1568. * existing entry with a matching "uptr" then return the filename
  1569. * associated with that audit_name. If not, return NULL.
  1570. */
  1571. struct filename *
  1572. __audit_reusename(const __user char *uptr)
  1573. {
  1574. struct audit_context *context = audit_context();
  1575. struct audit_names *n;
  1576. list_for_each_entry(n, &context->names_list, list) {
  1577. if (!n->name)
  1578. continue;
  1579. if (n->name->uptr == uptr) {
  1580. n->name->refcnt++;
  1581. return n->name;
  1582. }
  1583. }
  1584. return NULL;
  1585. }
  1586. /**
  1587. * __audit_getname - add a name to the list
  1588. * @name: name to add
  1589. *
  1590. * Add a name to the list of audit names for this context.
  1591. * Called from fs/namei.c:getname().
  1592. */
  1593. void __audit_getname(struct filename *name)
  1594. {
  1595. struct audit_context *context = audit_context();
  1596. struct audit_names *n;
  1597. if (!context->in_syscall)
  1598. return;
  1599. n = audit_alloc_name(context, AUDIT_TYPE_UNKNOWN);
  1600. if (!n)
  1601. return;
  1602. n->name = name;
  1603. n->name_len = AUDIT_NAME_FULL;
  1604. name->aname = n;
  1605. name->refcnt++;
  1606. if (!context->pwd.dentry)
  1607. get_fs_pwd(current->fs, &context->pwd);
  1608. }
  1609. /**
  1610. * __audit_inode - store the inode and device from a lookup
  1611. * @name: name being audited
  1612. * @dentry: dentry being audited
  1613. * @flags: attributes for this particular entry
  1614. */
  1615. void __audit_inode(struct filename *name, const struct dentry *dentry,
  1616. unsigned int flags)
  1617. {
  1618. struct audit_context *context = audit_context();
  1619. struct inode *inode = d_backing_inode(dentry);
  1620. struct audit_names *n;
  1621. bool parent = flags & AUDIT_INODE_PARENT;
  1622. if (!context->in_syscall)
  1623. return;
  1624. if (!name)
  1625. goto out_alloc;
  1626. /*
  1627. * If we have a pointer to an audit_names entry already, then we can
  1628. * just use it directly if the type is correct.
  1629. */
  1630. n = name->aname;
  1631. if (n) {
  1632. if (parent) {
  1633. if (n->type == AUDIT_TYPE_PARENT ||
  1634. n->type == AUDIT_TYPE_UNKNOWN)
  1635. goto out;
  1636. } else {
  1637. if (n->type != AUDIT_TYPE_PARENT)
  1638. goto out;
  1639. }
  1640. }
  1641. list_for_each_entry_reverse(n, &context->names_list, list) {
  1642. if (n->ino) {
  1643. /* valid inode number, use that for the comparison */
  1644. if (n->ino != inode->i_ino ||
  1645. n->dev != inode->i_sb->s_dev)
  1646. continue;
  1647. } else if (n->name) {
  1648. /* inode number has not been set, check the name */
  1649. if (strcmp(n->name->name, name->name))
  1650. continue;
  1651. } else
  1652. /* no inode and no name (?!) ... this is odd ... */
  1653. continue;
  1654. /* match the correct record type */
  1655. if (parent) {
  1656. if (n->type == AUDIT_TYPE_PARENT ||
  1657. n->type == AUDIT_TYPE_UNKNOWN)
  1658. goto out;
  1659. } else {
  1660. if (n->type != AUDIT_TYPE_PARENT)
  1661. goto out;
  1662. }
  1663. }
  1664. out_alloc:
  1665. /* unable to find an entry with both a matching name and type */
  1666. n = audit_alloc_name(context, AUDIT_TYPE_UNKNOWN);
  1667. if (!n)
  1668. return;
  1669. if (name) {
  1670. n->name = name;
  1671. name->refcnt++;
  1672. }
  1673. out:
  1674. if (parent) {
  1675. n->name_len = n->name ? parent_len(n->name->name) : AUDIT_NAME_FULL;
  1676. n->type = AUDIT_TYPE_PARENT;
  1677. if (flags & AUDIT_INODE_HIDDEN)
  1678. n->hidden = true;
  1679. } else {
  1680. n->name_len = AUDIT_NAME_FULL;
  1681. n->type = AUDIT_TYPE_NORMAL;
  1682. }
  1683. handle_path(dentry);
  1684. audit_copy_inode(n, dentry, inode);
  1685. }
  1686. void __audit_file(const struct file *file)
  1687. {
  1688. __audit_inode(NULL, file->f_path.dentry, 0);
  1689. }
  1690. /**
  1691. * __audit_inode_child - collect inode info for created/removed objects
  1692. * @parent: inode of dentry parent
  1693. * @dentry: dentry being audited
  1694. * @type: AUDIT_TYPE_* value that we're looking for
  1695. *
  1696. * For syscalls that create or remove filesystem objects, audit_inode
  1697. * can only collect information for the filesystem object's parent.
  1698. * This call updates the audit context with the child's information.
  1699. * Syscalls that create a new filesystem object must be hooked after
  1700. * the object is created. Syscalls that remove a filesystem object
  1701. * must be hooked prior, in order to capture the target inode during
  1702. * unsuccessful attempts.
  1703. */
  1704. void __audit_inode_child(struct inode *parent,
  1705. const struct dentry *dentry,
  1706. const unsigned char type)
  1707. {
  1708. struct audit_context *context = audit_context();
  1709. struct inode *inode = d_backing_inode(dentry);
  1710. const char *dname = dentry->d_name.name;
  1711. struct audit_names *n, *found_parent = NULL, *found_child = NULL;
  1712. struct audit_entry *e;
  1713. struct list_head *list = &audit_filter_list[AUDIT_FILTER_FS];
  1714. int i;
  1715. if (!context->in_syscall)
  1716. return;
  1717. rcu_read_lock();
  1718. if (!list_empty(list)) {
  1719. list_for_each_entry_rcu(e, list, list) {
  1720. for (i = 0; i < e->rule.field_count; i++) {
  1721. struct audit_field *f = &e->rule.fields[i];
  1722. if (f->type == AUDIT_FSTYPE) {
  1723. if (audit_comparator(parent->i_sb->s_magic,
  1724. f->op, f->val)) {
  1725. if (e->rule.action == AUDIT_NEVER) {
  1726. rcu_read_unlock();
  1727. return;
  1728. }
  1729. }
  1730. }
  1731. }
  1732. }
  1733. }
  1734. rcu_read_unlock();
  1735. if (inode)
  1736. handle_one(inode);
  1737. /* look for a parent entry first */
  1738. list_for_each_entry(n, &context->names_list, list) {
  1739. if (!n->name ||
  1740. (n->type != AUDIT_TYPE_PARENT &&
  1741. n->type != AUDIT_TYPE_UNKNOWN))
  1742. continue;
  1743. if (n->ino == parent->i_ino && n->dev == parent->i_sb->s_dev &&
  1744. !audit_compare_dname_path(dname,
  1745. n->name->name, n->name_len)) {
  1746. if (n->type == AUDIT_TYPE_UNKNOWN)
  1747. n->type = AUDIT_TYPE_PARENT;
  1748. found_parent = n;
  1749. break;
  1750. }
  1751. }
  1752. /* is there a matching child entry? */
  1753. list_for_each_entry(n, &context->names_list, list) {
  1754. /* can only match entries that have a name */
  1755. if (!n->name ||
  1756. (n->type != type && n->type != AUDIT_TYPE_UNKNOWN))
  1757. continue;
  1758. if (!strcmp(dname, n->name->name) ||
  1759. !audit_compare_dname_path(dname, n->name->name,
  1760. found_parent ?
  1761. found_parent->name_len :
  1762. AUDIT_NAME_FULL)) {
  1763. if (n->type == AUDIT_TYPE_UNKNOWN)
  1764. n->type = type;
  1765. found_child = n;
  1766. break;
  1767. }
  1768. }
  1769. if (!found_parent) {
  1770. /* create a new, "anonymous" parent record */
  1771. n = audit_alloc_name(context, AUDIT_TYPE_PARENT);
  1772. if (!n)
  1773. return;
  1774. audit_copy_inode(n, NULL, parent);
  1775. }
  1776. if (!found_child) {
  1777. found_child = audit_alloc_name(context, type);
  1778. if (!found_child)
  1779. return;
  1780. /* Re-use the name belonging to the slot for a matching parent
  1781. * directory. All names for this context are relinquished in
  1782. * audit_free_names() */
  1783. if (found_parent) {
  1784. found_child->name = found_parent->name;
  1785. found_child->name_len = AUDIT_NAME_FULL;
  1786. found_child->name->refcnt++;
  1787. }
  1788. }
  1789. if (inode)
  1790. audit_copy_inode(found_child, dentry, inode);
  1791. else
  1792. found_child->ino = AUDIT_INO_UNSET;
  1793. }
  1794. EXPORT_SYMBOL_GPL(__audit_inode_child);
  1795. /**
  1796. * auditsc_get_stamp - get local copies of audit_context values
  1797. * @ctx: audit_context for the task
  1798. * @t: timespec64 to store time recorded in the audit_context
  1799. * @serial: serial value that is recorded in the audit_context
  1800. *
  1801. * Also sets the context as auditable.
  1802. */
  1803. int auditsc_get_stamp(struct audit_context *ctx,
  1804. struct timespec64 *t, unsigned int *serial)
  1805. {
  1806. if (!ctx->in_syscall)
  1807. return 0;
  1808. if (!ctx->serial)
  1809. ctx->serial = audit_serial();
  1810. t->tv_sec = ctx->ctime.tv_sec;
  1811. t->tv_nsec = ctx->ctime.tv_nsec;
  1812. *serial = ctx->serial;
  1813. if (!ctx->prio) {
  1814. ctx->prio = 1;
  1815. ctx->current_state = AUDIT_RECORD_CONTEXT;
  1816. }
  1817. return 1;
  1818. }
  1819. /* global counter which is incremented every time something logs in */
  1820. static atomic_t session_id = ATOMIC_INIT(0);
  1821. static int audit_set_loginuid_perm(kuid_t loginuid)
  1822. {
  1823. /* if we are unset, we don't need privs */
  1824. if (!audit_loginuid_set(current))
  1825. return 0;
  1826. /* if AUDIT_FEATURE_LOGINUID_IMMUTABLE means never ever allow a change*/
  1827. if (is_audit_feature_set(AUDIT_FEATURE_LOGINUID_IMMUTABLE))
  1828. return -EPERM;
  1829. /* it is set, you need permission */
  1830. if (!capable(CAP_AUDIT_CONTROL))
  1831. return -EPERM;
  1832. /* reject if this is not an unset and we don't allow that */
  1833. if (is_audit_feature_set(AUDIT_FEATURE_ONLY_UNSET_LOGINUID) && uid_valid(loginuid))
  1834. return -EPERM;
  1835. return 0;
  1836. }
  1837. static void audit_log_set_loginuid(kuid_t koldloginuid, kuid_t kloginuid,
  1838. unsigned int oldsessionid, unsigned int sessionid,
  1839. int rc)
  1840. {
  1841. struct audit_buffer *ab;
  1842. uid_t uid, oldloginuid, loginuid;
  1843. struct tty_struct *tty;
  1844. if (!audit_enabled)
  1845. return;
  1846. ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_LOGIN);
  1847. if (!ab)
  1848. return;
  1849. uid = from_kuid(&init_user_ns, task_uid(current));
  1850. oldloginuid = from_kuid(&init_user_ns, koldloginuid);
  1851. loginuid = from_kuid(&init_user_ns, kloginuid),
  1852. tty = audit_get_tty(current);
  1853. audit_log_format(ab, "pid=%d uid=%u", task_tgid_nr(current), uid);
  1854. audit_log_task_context(ab);
  1855. audit_log_format(ab, " old-auid=%u auid=%u tty=%s old-ses=%u ses=%u res=%d",
  1856. oldloginuid, loginuid, tty ? tty_name(tty) : "(none)",
  1857. oldsessionid, sessionid, !rc);
  1858. audit_put_tty(tty);
  1859. audit_log_end(ab);
  1860. }
  1861. /**
  1862. * audit_set_loginuid - set current task's audit_context loginuid
  1863. * @loginuid: loginuid value
  1864. *
  1865. * Returns 0.
  1866. *
  1867. * Called (set) from fs/proc/base.c::proc_loginuid_write().
  1868. */
  1869. int audit_set_loginuid(kuid_t loginuid)
  1870. {
  1871. struct task_struct *task = current;
  1872. unsigned int oldsessionid, sessionid = AUDIT_SID_UNSET;
  1873. kuid_t oldloginuid;
  1874. int rc;
  1875. oldloginuid = audit_get_loginuid(current);
  1876. oldsessionid = audit_get_sessionid(current);
  1877. rc = audit_set_loginuid_perm(loginuid);
  1878. if (rc)
  1879. goto out;
  1880. /* are we setting or clearing? */
  1881. if (uid_valid(loginuid)) {
  1882. sessionid = (unsigned int)atomic_inc_return(&session_id);
  1883. if (unlikely(sessionid == AUDIT_SID_UNSET))
  1884. sessionid = (unsigned int)atomic_inc_return(&session_id);
  1885. }
  1886. task->sessionid = sessionid;
  1887. task->loginuid = loginuid;
  1888. out:
  1889. audit_log_set_loginuid(oldloginuid, loginuid, oldsessionid, sessionid, rc);
  1890. return rc;
  1891. }
  1892. /**
  1893. * __audit_mq_open - record audit data for a POSIX MQ open
  1894. * @oflag: open flag
  1895. * @mode: mode bits
  1896. * @attr: queue attributes
  1897. *
  1898. */
  1899. void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
  1900. {
  1901. struct audit_context *context = audit_context();
  1902. if (attr)
  1903. memcpy(&context->mq_open.attr, attr, sizeof(struct mq_attr));
  1904. else
  1905. memset(&context->mq_open.attr, 0, sizeof(struct mq_attr));
  1906. context->mq_open.oflag = oflag;
  1907. context->mq_open.mode = mode;
  1908. context->type = AUDIT_MQ_OPEN;
  1909. }
  1910. /**
  1911. * __audit_mq_sendrecv - record audit data for a POSIX MQ timed send/receive
  1912. * @mqdes: MQ descriptor
  1913. * @msg_len: Message length
  1914. * @msg_prio: Message priority
  1915. * @abs_timeout: Message timeout in absolute time
  1916. *
  1917. */
  1918. void __audit_mq_sendrecv(mqd_t mqdes, size_t msg_len, unsigned int msg_prio,
  1919. const struct timespec64 *abs_timeout)
  1920. {
  1921. struct audit_context *context = audit_context();
  1922. struct timespec64 *p = &context->mq_sendrecv.abs_timeout;
  1923. if (abs_timeout)
  1924. memcpy(p, abs_timeout, sizeof(*p));
  1925. else
  1926. memset(p, 0, sizeof(*p));
  1927. context->mq_sendrecv.mqdes = mqdes;
  1928. context->mq_sendrecv.msg_len = msg_len;
  1929. context->mq_sendrecv.msg_prio = msg_prio;
  1930. context->type = AUDIT_MQ_SENDRECV;
  1931. }
  1932. /**
  1933. * __audit_mq_notify - record audit data for a POSIX MQ notify
  1934. * @mqdes: MQ descriptor
  1935. * @notification: Notification event
  1936. *
  1937. */
  1938. void __audit_mq_notify(mqd_t mqdes, const struct sigevent *notification)
  1939. {
  1940. struct audit_context *context = audit_context();
  1941. if (notification)
  1942. context->mq_notify.sigev_signo = notification->sigev_signo;
  1943. else
  1944. context->mq_notify.sigev_signo = 0;
  1945. context->mq_notify.mqdes = mqdes;
  1946. context->type = AUDIT_MQ_NOTIFY;
  1947. }
  1948. /**
  1949. * __audit_mq_getsetattr - record audit data for a POSIX MQ get/set attribute
  1950. * @mqdes: MQ descriptor
  1951. * @mqstat: MQ flags
  1952. *
  1953. */
  1954. void __audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
  1955. {
  1956. struct audit_context *context = audit_context();
  1957. context->mq_getsetattr.mqdes = mqdes;
  1958. context->mq_getsetattr.mqstat = *mqstat;
  1959. context->type = AUDIT_MQ_GETSETATTR;
  1960. }
  1961. /**
  1962. * __audit_ipc_obj - record audit data for ipc object
  1963. * @ipcp: ipc permissions
  1964. *
  1965. */
  1966. void __audit_ipc_obj(struct kern_ipc_perm *ipcp)
  1967. {
  1968. struct audit_context *context = audit_context();
  1969. context->ipc.uid = ipcp->uid;
  1970. context->ipc.gid = ipcp->gid;
  1971. context->ipc.mode = ipcp->mode;
  1972. context->ipc.has_perm = 0;
  1973. security_ipc_getsecid(ipcp, &context->ipc.osid);
  1974. context->type = AUDIT_IPC;
  1975. }
  1976. /**
  1977. * __audit_ipc_set_perm - record audit data for new ipc permissions
  1978. * @qbytes: msgq bytes
  1979. * @uid: msgq user id
  1980. * @gid: msgq group id
  1981. * @mode: msgq mode (permissions)
  1982. *
  1983. * Called only after audit_ipc_obj().
  1984. */
  1985. void __audit_ipc_set_perm(unsigned long qbytes, uid_t uid, gid_t gid, umode_t mode)
  1986. {
  1987. struct audit_context *context = audit_context();
  1988. context->ipc.qbytes = qbytes;
  1989. context->ipc.perm_uid = uid;
  1990. context->ipc.perm_gid = gid;
  1991. context->ipc.perm_mode = mode;
  1992. context->ipc.has_perm = 1;
  1993. }
  1994. void __audit_bprm(struct linux_binprm *bprm)
  1995. {
  1996. struct audit_context *context = audit_context();
  1997. context->type = AUDIT_EXECVE;
  1998. context->execve.argc = bprm->argc;
  1999. }
  2000. /**
  2001. * __audit_socketcall - record audit data for sys_socketcall
  2002. * @nargs: number of args, which should not be more than AUDITSC_ARGS.
  2003. * @args: args array
  2004. *
  2005. */
  2006. int __audit_socketcall(int nargs, unsigned long *args)
  2007. {
  2008. struct audit_context *context = audit_context();
  2009. if (nargs <= 0 || nargs > AUDITSC_ARGS || !args)
  2010. return -EINVAL;
  2011. context->type = AUDIT_SOCKETCALL;
  2012. context->socketcall.nargs = nargs;
  2013. memcpy(context->socketcall.args, args, nargs * sizeof(unsigned long));
  2014. return 0;
  2015. }
  2016. /**
  2017. * __audit_fd_pair - record audit data for pipe and socketpair
  2018. * @fd1: the first file descriptor
  2019. * @fd2: the second file descriptor
  2020. *
  2021. */
  2022. void __audit_fd_pair(int fd1, int fd2)
  2023. {
  2024. struct audit_context *context = audit_context();
  2025. context->fds[0] = fd1;
  2026. context->fds[1] = fd2;
  2027. }
  2028. /**
  2029. * __audit_sockaddr - record audit data for sys_bind, sys_connect, sys_sendto
  2030. * @len: data length in user space
  2031. * @a: data address in kernel space
  2032. *
  2033. * Returns 0 for success or NULL context or < 0 on error.
  2034. */
  2035. int __audit_sockaddr(int len, void *a)
  2036. {
  2037. struct audit_context *context = audit_context();
  2038. if (!context->sockaddr) {
  2039. void *p = kmalloc(sizeof(struct sockaddr_storage), GFP_KERNEL);
  2040. if (!p)
  2041. return -ENOMEM;
  2042. context->sockaddr = p;
  2043. }
  2044. context->sockaddr_len = len;
  2045. memcpy(context->sockaddr, a, len);
  2046. return 0;
  2047. }
  2048. void __audit_ptrace(struct task_struct *t)
  2049. {
  2050. struct audit_context *context = audit_context();
  2051. context->target_pid = task_tgid_nr(t);
  2052. context->target_auid = audit_get_loginuid(t);
  2053. context->target_uid = task_uid(t);
  2054. context->target_sessionid = audit_get_sessionid(t);
  2055. security_task_getsecid(t, &context->target_sid);
  2056. memcpy(context->target_comm, t->comm, TASK_COMM_LEN);
  2057. }
  2058. /**
  2059. * audit_signal_info - record signal info for shutting down audit subsystem
  2060. * @sig: signal value
  2061. * @t: task being signaled
  2062. *
  2063. * If the audit subsystem is being terminated, record the task (pid)
  2064. * and uid that is doing that.
  2065. */
  2066. int audit_signal_info(int sig, struct task_struct *t)
  2067. {
  2068. struct audit_aux_data_pids *axp;
  2069. struct audit_context *ctx = audit_context();
  2070. kuid_t uid = current_uid(), auid, t_uid = task_uid(t);
  2071. if (auditd_test_task(t) &&
  2072. (sig == SIGTERM || sig == SIGHUP ||
  2073. sig == SIGUSR1 || sig == SIGUSR2)) {
  2074. audit_sig_pid = task_tgid_nr(current);
  2075. auid = audit_get_loginuid(current);
  2076. if (uid_valid(auid))
  2077. audit_sig_uid = auid;
  2078. else
  2079. audit_sig_uid = uid;
  2080. security_task_getsecid(current, &audit_sig_sid);
  2081. }
  2082. if (!audit_signals || audit_dummy_context())
  2083. return 0;
  2084. /* optimize the common case by putting first signal recipient directly
  2085. * in audit_context */
  2086. if (!ctx->target_pid) {
  2087. ctx->target_pid = task_tgid_nr(t);
  2088. ctx->target_auid = audit_get_loginuid(t);
  2089. ctx->target_uid = t_uid;
  2090. ctx->target_sessionid = audit_get_sessionid(t);
  2091. security_task_getsecid(t, &ctx->target_sid);
  2092. memcpy(ctx->target_comm, t->comm, TASK_COMM_LEN);
  2093. return 0;
  2094. }
  2095. axp = (void *)ctx->aux_pids;
  2096. if (!axp || axp->pid_count == AUDIT_AUX_PIDS) {
  2097. axp = kzalloc(sizeof(*axp), GFP_ATOMIC);
  2098. if (!axp)
  2099. return -ENOMEM;
  2100. axp->d.type = AUDIT_OBJ_PID;
  2101. axp->d.next = ctx->aux_pids;
  2102. ctx->aux_pids = (void *)axp;
  2103. }
  2104. BUG_ON(axp->pid_count >= AUDIT_AUX_PIDS);
  2105. axp->target_pid[axp->pid_count] = task_tgid_nr(t);
  2106. axp->target_auid[axp->pid_count] = audit_get_loginuid(t);
  2107. axp->target_uid[axp->pid_count] = t_uid;
  2108. axp->target_sessionid[axp->pid_count] = audit_get_sessionid(t);
  2109. security_task_getsecid(t, &axp->target_sid[axp->pid_count]);
  2110. memcpy(axp->target_comm[axp->pid_count], t->comm, TASK_COMM_LEN);
  2111. axp->pid_count++;
  2112. return 0;
  2113. }
  2114. /**
  2115. * __audit_log_bprm_fcaps - store information about a loading bprm and relevant fcaps
  2116. * @bprm: pointer to the bprm being processed
  2117. * @new: the proposed new credentials
  2118. * @old: the old credentials
  2119. *
  2120. * Simply check if the proc already has the caps given by the file and if not
  2121. * store the priv escalation info for later auditing at the end of the syscall
  2122. *
  2123. * -Eric
  2124. */
  2125. int __audit_log_bprm_fcaps(struct linux_binprm *bprm,
  2126. const struct cred *new, const struct cred *old)
  2127. {
  2128. struct audit_aux_data_bprm_fcaps *ax;
  2129. struct audit_context *context = audit_context();
  2130. struct cpu_vfs_cap_data vcaps;
  2131. ax = kmalloc(sizeof(*ax), GFP_KERNEL);
  2132. if (!ax)
  2133. return -ENOMEM;
  2134. ax->d.type = AUDIT_BPRM_FCAPS;
  2135. ax->d.next = context->aux;
  2136. context->aux = (void *)ax;
  2137. get_vfs_caps_from_disk(bprm->file->f_path.dentry, &vcaps);
  2138. ax->fcap.permitted = vcaps.permitted;
  2139. ax->fcap.inheritable = vcaps.inheritable;
  2140. ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
  2141. ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
  2142. ax->old_pcap.permitted = old->cap_permitted;
  2143. ax->old_pcap.inheritable = old->cap_inheritable;
  2144. ax->old_pcap.effective = old->cap_effective;
  2145. ax->old_pcap.ambient = old->cap_ambient;
  2146. ax->new_pcap.permitted = new->cap_permitted;
  2147. ax->new_pcap.inheritable = new->cap_inheritable;
  2148. ax->new_pcap.effective = new->cap_effective;
  2149. ax->new_pcap.ambient = new->cap_ambient;
  2150. return 0;
  2151. }
  2152. /**
  2153. * __audit_log_capset - store information about the arguments to the capset syscall
  2154. * @new: the new credentials
  2155. * @old: the old (current) credentials
  2156. *
  2157. * Record the arguments userspace sent to sys_capset for later printing by the
  2158. * audit system if applicable
  2159. */
  2160. void __audit_log_capset(const struct cred *new, const struct cred *old)
  2161. {
  2162. struct audit_context *context = audit_context();
  2163. context->capset.pid = task_tgid_nr(current);
  2164. context->capset.cap.effective = new->cap_effective;
  2165. context->capset.cap.inheritable = new->cap_effective;
  2166. context->capset.cap.permitted = new->cap_permitted;
  2167. context->capset.cap.ambient = new->cap_ambient;
  2168. context->type = AUDIT_CAPSET;
  2169. }
  2170. void __audit_mmap_fd(int fd, int flags)
  2171. {
  2172. struct audit_context *context = audit_context();
  2173. context->mmap.fd = fd;
  2174. context->mmap.flags = flags;
  2175. context->type = AUDIT_MMAP;
  2176. }
  2177. void __audit_log_kern_module(char *name)
  2178. {
  2179. struct audit_context *context = audit_context();
  2180. context->module.name = kstrdup(name, GFP_KERNEL);
  2181. if (!context->module.name)
  2182. audit_log_lost("out of memory in __audit_log_kern_module");
  2183. context->type = AUDIT_KERN_MODULE;
  2184. }
  2185. void __audit_fanotify(unsigned int response)
  2186. {
  2187. audit_log(audit_context(), GFP_KERNEL,
  2188. AUDIT_FANOTIFY, "resp=%u", response);
  2189. }
  2190. static void audit_log_task(struct audit_buffer *ab)
  2191. {
  2192. kuid_t auid, uid;
  2193. kgid_t gid;
  2194. unsigned int sessionid;
  2195. char comm[sizeof(current->comm)];
  2196. auid = audit_get_loginuid(current);
  2197. sessionid = audit_get_sessionid(current);
  2198. current_uid_gid(&uid, &gid);
  2199. audit_log_format(ab, "auid=%u uid=%u gid=%u ses=%u",
  2200. from_kuid(&init_user_ns, auid),
  2201. from_kuid(&init_user_ns, uid),
  2202. from_kgid(&init_user_ns, gid),
  2203. sessionid);
  2204. audit_log_task_context(ab);
  2205. audit_log_format(ab, " pid=%d comm=", task_tgid_nr(current));
  2206. audit_log_untrustedstring(ab, get_task_comm(comm, current));
  2207. audit_log_d_path_exe(ab, current->mm);
  2208. }
  2209. /**
  2210. * audit_core_dumps - record information about processes that end abnormally
  2211. * @signr: signal value
  2212. *
  2213. * If a process ends with a core dump, something fishy is going on and we
  2214. * should record the event for investigation.
  2215. */
  2216. void audit_core_dumps(long signr)
  2217. {
  2218. struct audit_buffer *ab;
  2219. if (!audit_enabled)
  2220. return;
  2221. if (signr == SIGQUIT) /* don't care for those */
  2222. return;
  2223. ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_ANOM_ABEND);
  2224. if (unlikely(!ab))
  2225. return;
  2226. audit_log_task(ab);
  2227. audit_log_format(ab, " sig=%ld res=1", signr);
  2228. audit_log_end(ab);
  2229. }
  2230. /**
  2231. * audit_seccomp - record information about a seccomp action
  2232. * @syscall: syscall number
  2233. * @signr: signal value
  2234. * @code: the seccomp action
  2235. *
  2236. * Record the information associated with a seccomp action. Event filtering for
  2237. * seccomp actions that are not to be logged is done in seccomp_log().
  2238. * Therefore, this function forces auditing independent of the audit_enabled
  2239. * and dummy context state because seccomp actions should be logged even when
  2240. * audit is not in use.
  2241. */
  2242. void audit_seccomp(unsigned long syscall, long signr, int code)
  2243. {
  2244. struct audit_buffer *ab;
  2245. ab = audit_log_start(audit_context(), GFP_KERNEL, AUDIT_SECCOMP);
  2246. if (unlikely(!ab))
  2247. return;
  2248. audit_log_task(ab);
  2249. audit_log_format(ab, " sig=%ld arch=%x syscall=%ld compat=%d ip=0x%lx code=0x%x",
  2250. signr, syscall_get_arch(), syscall,
  2251. in_compat_syscall(), KSTK_EIP(current), code);
  2252. audit_log_end(ab);
  2253. }
  2254. void audit_seccomp_actions_logged(const char *names, const char *old_names,
  2255. int res)
  2256. {
  2257. struct audit_buffer *ab;
  2258. if (!audit_enabled)
  2259. return;
  2260. ab = audit_log_start(audit_context(), GFP_KERNEL,
  2261. AUDIT_CONFIG_CHANGE);
  2262. if (unlikely(!ab))
  2263. return;
  2264. audit_log_format(ab, "op=seccomp-logging");
  2265. audit_log_format(ab, " actions=%s", names);
  2266. audit_log_format(ab, " old-actions=%s", old_names);
  2267. audit_log_format(ab, " res=%d", res);
  2268. audit_log_end(ab);
  2269. }
  2270. struct list_head *audit_killed_trees(void)
  2271. {
  2272. struct audit_context *ctx = audit_context();
  2273. if (likely(!ctx || !ctx->in_syscall))
  2274. return NULL;
  2275. return &ctx->killed_trees;
  2276. }