auditfilter.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392
  1. /* auditfilter.c -- filtering of audit events
  2. *
  3. * Copyright 2003-2004 Red Hat, Inc.
  4. * Copyright 2005 Hewlett-Packard Development Company, L.P.
  5. * Copyright 2005 IBM Corporation
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/audit.h>
  23. #include <linux/kthread.h>
  24. #include <linux/mutex.h>
  25. #include <linux/fs.h>
  26. #include <linux/namei.h>
  27. #include <linux/netlink.h>
  28. #include <linux/sched.h>
  29. #include <linux/slab.h>
  30. #include <linux/security.h>
  31. #include "audit.h"
  32. /*
  33. * Locking model:
  34. *
  35. * audit_filter_mutex:
  36. * Synchronizes writes and blocking reads of audit's filterlist
  37. * data. Rcu is used to traverse the filterlist and access
  38. * contents of structs audit_entry, audit_watch and opaque
  39. * LSM rules during filtering. If modified, these structures
  40. * must be copied and replace their counterparts in the filterlist.
  41. * An audit_parent struct is not accessed during filtering, so may
  42. * be written directly provided audit_filter_mutex is held.
  43. */
  44. /* Audit filter lists, defined in <linux/audit.h> */
  45. struct list_head audit_filter_list[AUDIT_NR_FILTERS] = {
  46. LIST_HEAD_INIT(audit_filter_list[0]),
  47. LIST_HEAD_INIT(audit_filter_list[1]),
  48. LIST_HEAD_INIT(audit_filter_list[2]),
  49. LIST_HEAD_INIT(audit_filter_list[3]),
  50. LIST_HEAD_INIT(audit_filter_list[4]),
  51. LIST_HEAD_INIT(audit_filter_list[5]),
  52. #if AUDIT_NR_FILTERS != 6
  53. #error Fix audit_filter_list initialiser
  54. #endif
  55. };
  56. static struct list_head audit_rules_list[AUDIT_NR_FILTERS] = {
  57. LIST_HEAD_INIT(audit_rules_list[0]),
  58. LIST_HEAD_INIT(audit_rules_list[1]),
  59. LIST_HEAD_INIT(audit_rules_list[2]),
  60. LIST_HEAD_INIT(audit_rules_list[3]),
  61. LIST_HEAD_INIT(audit_rules_list[4]),
  62. LIST_HEAD_INIT(audit_rules_list[5]),
  63. };
  64. DEFINE_MUTEX(audit_filter_mutex);
  65. static inline void audit_free_rule(struct audit_entry *e)
  66. {
  67. int i;
  68. struct audit_krule *erule = &e->rule;
  69. /* some rules don't have associated watches */
  70. if (erule->watch)
  71. audit_put_watch(erule->watch);
  72. if (erule->fields)
  73. for (i = 0; i < erule->field_count; i++) {
  74. struct audit_field *f = &erule->fields[i];
  75. kfree(f->lsm_str);
  76. security_audit_rule_free(f->lsm_rule);
  77. }
  78. kfree(erule->fields);
  79. kfree(erule->filterkey);
  80. kfree(e);
  81. }
  82. void audit_free_rule_rcu(struct rcu_head *head)
  83. {
  84. struct audit_entry *e = container_of(head, struct audit_entry, rcu);
  85. audit_free_rule(e);
  86. }
  87. /* Initialize an audit filterlist entry. */
  88. static inline struct audit_entry *audit_init_entry(u32 field_count)
  89. {
  90. struct audit_entry *entry;
  91. struct audit_field *fields;
  92. entry = kzalloc(sizeof(*entry), GFP_KERNEL);
  93. if (unlikely(!entry))
  94. return NULL;
  95. fields = kzalloc(sizeof(*fields) * field_count, GFP_KERNEL);
  96. if (unlikely(!fields)) {
  97. kfree(entry);
  98. return NULL;
  99. }
  100. entry->rule.fields = fields;
  101. return entry;
  102. }
  103. /* Unpack a filter field's string representation from user-space
  104. * buffer. */
  105. char *audit_unpack_string(void **bufp, size_t *remain, size_t len)
  106. {
  107. char *str;
  108. if (!*bufp || (len == 0) || (len > *remain))
  109. return ERR_PTR(-EINVAL);
  110. /* Of the currently implemented string fields, PATH_MAX
  111. * defines the longest valid length.
  112. */
  113. if (len > PATH_MAX)
  114. return ERR_PTR(-ENAMETOOLONG);
  115. str = kmalloc(len + 1, GFP_KERNEL);
  116. if (unlikely(!str))
  117. return ERR_PTR(-ENOMEM);
  118. memcpy(str, *bufp, len);
  119. str[len] = 0;
  120. *bufp += len;
  121. *remain -= len;
  122. return str;
  123. }
  124. /* Translate an inode field to kernel respresentation. */
  125. static inline int audit_to_inode(struct audit_krule *krule,
  126. struct audit_field *f)
  127. {
  128. if (krule->listnr != AUDIT_FILTER_EXIT ||
  129. krule->watch || krule->inode_f || krule->tree ||
  130. (f->op != Audit_equal && f->op != Audit_not_equal))
  131. return -EINVAL;
  132. krule->inode_f = f;
  133. return 0;
  134. }
  135. static __u32 *classes[AUDIT_SYSCALL_CLASSES];
  136. int __init audit_register_class(int class, unsigned *list)
  137. {
  138. __u32 *p = kzalloc(AUDIT_BITMASK_SIZE * sizeof(__u32), GFP_KERNEL);
  139. if (!p)
  140. return -ENOMEM;
  141. while (*list != ~0U) {
  142. unsigned n = *list++;
  143. if (n >= AUDIT_BITMASK_SIZE * 32 - AUDIT_SYSCALL_CLASSES) {
  144. kfree(p);
  145. return -EINVAL;
  146. }
  147. p[AUDIT_WORD(n)] |= AUDIT_BIT(n);
  148. }
  149. if (class >= AUDIT_SYSCALL_CLASSES || classes[class]) {
  150. kfree(p);
  151. return -EINVAL;
  152. }
  153. classes[class] = p;
  154. return 0;
  155. }
  156. int audit_match_class(int class, unsigned syscall)
  157. {
  158. if (unlikely(syscall >= AUDIT_BITMASK_SIZE * 32))
  159. return 0;
  160. if (unlikely(class >= AUDIT_SYSCALL_CLASSES || !classes[class]))
  161. return 0;
  162. return classes[class][AUDIT_WORD(syscall)] & AUDIT_BIT(syscall);
  163. }
  164. #ifdef CONFIG_AUDITSYSCALL
  165. static inline int audit_match_class_bits(int class, u32 *mask)
  166. {
  167. int i;
  168. if (classes[class]) {
  169. for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
  170. if (mask[i] & classes[class][i])
  171. return 0;
  172. }
  173. return 1;
  174. }
  175. static int audit_match_signal(struct audit_entry *entry)
  176. {
  177. struct audit_field *arch = entry->rule.arch_f;
  178. if (!arch) {
  179. /* When arch is unspecified, we must check both masks on biarch
  180. * as syscall number alone is ambiguous. */
  181. return (audit_match_class_bits(AUDIT_CLASS_SIGNAL,
  182. entry->rule.mask) &&
  183. audit_match_class_bits(AUDIT_CLASS_SIGNAL_32,
  184. entry->rule.mask));
  185. }
  186. switch(audit_classify_arch(arch->val)) {
  187. case 0: /* native */
  188. return (audit_match_class_bits(AUDIT_CLASS_SIGNAL,
  189. entry->rule.mask));
  190. case 1: /* 32bit on biarch */
  191. return (audit_match_class_bits(AUDIT_CLASS_SIGNAL_32,
  192. entry->rule.mask));
  193. default:
  194. return 1;
  195. }
  196. }
  197. #endif
  198. /* Common user-space to kernel rule translation. */
  199. static inline struct audit_entry *audit_to_entry_common(struct audit_rule *rule)
  200. {
  201. unsigned listnr;
  202. struct audit_entry *entry;
  203. int i, err;
  204. err = -EINVAL;
  205. listnr = rule->flags & ~AUDIT_FILTER_PREPEND;
  206. switch(listnr) {
  207. default:
  208. goto exit_err;
  209. #ifdef CONFIG_AUDITSYSCALL
  210. case AUDIT_FILTER_ENTRY:
  211. if (rule->action == AUDIT_ALWAYS)
  212. goto exit_err;
  213. case AUDIT_FILTER_EXIT:
  214. case AUDIT_FILTER_TASK:
  215. #endif
  216. case AUDIT_FILTER_USER:
  217. case AUDIT_FILTER_TYPE:
  218. ;
  219. }
  220. if (unlikely(rule->action == AUDIT_POSSIBLE)) {
  221. printk(KERN_ERR "AUDIT_POSSIBLE is deprecated\n");
  222. goto exit_err;
  223. }
  224. if (rule->action != AUDIT_NEVER && rule->action != AUDIT_ALWAYS)
  225. goto exit_err;
  226. if (rule->field_count > AUDIT_MAX_FIELDS)
  227. goto exit_err;
  228. err = -ENOMEM;
  229. entry = audit_init_entry(rule->field_count);
  230. if (!entry)
  231. goto exit_err;
  232. entry->rule.flags = rule->flags & AUDIT_FILTER_PREPEND;
  233. entry->rule.listnr = listnr;
  234. entry->rule.action = rule->action;
  235. entry->rule.field_count = rule->field_count;
  236. for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
  237. entry->rule.mask[i] = rule->mask[i];
  238. for (i = 0; i < AUDIT_SYSCALL_CLASSES; i++) {
  239. int bit = AUDIT_BITMASK_SIZE * 32 - i - 1;
  240. __u32 *p = &entry->rule.mask[AUDIT_WORD(bit)];
  241. __u32 *class;
  242. if (!(*p & AUDIT_BIT(bit)))
  243. continue;
  244. *p &= ~AUDIT_BIT(bit);
  245. class = classes[i];
  246. if (class) {
  247. int j;
  248. for (j = 0; j < AUDIT_BITMASK_SIZE; j++)
  249. entry->rule.mask[j] |= class[j];
  250. }
  251. }
  252. return entry;
  253. exit_err:
  254. return ERR_PTR(err);
  255. }
  256. static u32 audit_ops[] =
  257. {
  258. [Audit_equal] = AUDIT_EQUAL,
  259. [Audit_not_equal] = AUDIT_NOT_EQUAL,
  260. [Audit_bitmask] = AUDIT_BIT_MASK,
  261. [Audit_bittest] = AUDIT_BIT_TEST,
  262. [Audit_lt] = AUDIT_LESS_THAN,
  263. [Audit_gt] = AUDIT_GREATER_THAN,
  264. [Audit_le] = AUDIT_LESS_THAN_OR_EQUAL,
  265. [Audit_ge] = AUDIT_GREATER_THAN_OR_EQUAL,
  266. };
  267. static u32 audit_to_op(u32 op)
  268. {
  269. u32 n;
  270. for (n = Audit_equal; n < Audit_bad && audit_ops[n] != op; n++)
  271. ;
  272. return n;
  273. }
  274. /* check if an audit field is valid */
  275. static int audit_field_valid(struct audit_entry *entry, struct audit_field *f)
  276. {
  277. switch(f->type) {
  278. case AUDIT_MSGTYPE:
  279. if (entry->rule.listnr != AUDIT_FILTER_TYPE &&
  280. entry->rule.listnr != AUDIT_FILTER_USER)
  281. return -EINVAL;
  282. break;
  283. };
  284. switch(f->type) {
  285. default:
  286. return -EINVAL;
  287. case AUDIT_UID:
  288. case AUDIT_EUID:
  289. case AUDIT_SUID:
  290. case AUDIT_FSUID:
  291. case AUDIT_LOGINUID:
  292. case AUDIT_OBJ_UID:
  293. case AUDIT_GID:
  294. case AUDIT_EGID:
  295. case AUDIT_SGID:
  296. case AUDIT_FSGID:
  297. case AUDIT_OBJ_GID:
  298. case AUDIT_PID:
  299. case AUDIT_PERS:
  300. case AUDIT_MSGTYPE:
  301. case AUDIT_PPID:
  302. case AUDIT_DEVMAJOR:
  303. case AUDIT_DEVMINOR:
  304. case AUDIT_EXIT:
  305. case AUDIT_SUCCESS:
  306. case AUDIT_INODE:
  307. /* bit ops are only useful on syscall args */
  308. if (f->op == Audit_bitmask || f->op == Audit_bittest)
  309. return -EINVAL;
  310. break;
  311. case AUDIT_ARG0:
  312. case AUDIT_ARG1:
  313. case AUDIT_ARG2:
  314. case AUDIT_ARG3:
  315. case AUDIT_SUBJ_USER:
  316. case AUDIT_SUBJ_ROLE:
  317. case AUDIT_SUBJ_TYPE:
  318. case AUDIT_SUBJ_SEN:
  319. case AUDIT_SUBJ_CLR:
  320. case AUDIT_OBJ_USER:
  321. case AUDIT_OBJ_ROLE:
  322. case AUDIT_OBJ_TYPE:
  323. case AUDIT_OBJ_LEV_LOW:
  324. case AUDIT_OBJ_LEV_HIGH:
  325. case AUDIT_WATCH:
  326. case AUDIT_DIR:
  327. case AUDIT_FILTERKEY:
  328. break;
  329. case AUDIT_LOGINUID_SET:
  330. if ((f->val != 0) && (f->val != 1))
  331. return -EINVAL;
  332. /* FALL THROUGH */
  333. case AUDIT_ARCH:
  334. if (f->op != Audit_not_equal && f->op != Audit_equal)
  335. return -EINVAL;
  336. break;
  337. case AUDIT_PERM:
  338. if (f->val & ~15)
  339. return -EINVAL;
  340. break;
  341. case AUDIT_FILETYPE:
  342. if (f->val & ~S_IFMT)
  343. return -EINVAL;
  344. break;
  345. case AUDIT_FIELD_COMPARE:
  346. if (f->val > AUDIT_MAX_FIELD_COMPARE)
  347. return -EINVAL;
  348. break;
  349. };
  350. return 0;
  351. }
  352. /* Translate struct audit_rule_data to kernel's rule respresentation. */
  353. static struct audit_entry *audit_data_to_entry(struct audit_rule_data *data,
  354. size_t datasz)
  355. {
  356. int err = 0;
  357. struct audit_entry *entry;
  358. void *bufp;
  359. size_t remain = datasz - sizeof(struct audit_rule_data);
  360. int i;
  361. char *str;
  362. entry = audit_to_entry_common((struct audit_rule *)data);
  363. if (IS_ERR(entry))
  364. goto exit_nofree;
  365. bufp = data->buf;
  366. entry->rule.vers_ops = 2;
  367. for (i = 0; i < data->field_count; i++) {
  368. struct audit_field *f = &entry->rule.fields[i];
  369. err = -EINVAL;
  370. f->op = audit_to_op(data->fieldflags[i]);
  371. if (f->op == Audit_bad)
  372. goto exit_free;
  373. f->type = data->fields[i];
  374. f->val = data->values[i];
  375. f->uid = INVALID_UID;
  376. f->gid = INVALID_GID;
  377. f->lsm_str = NULL;
  378. f->lsm_rule = NULL;
  379. /* Support legacy tests for a valid loginuid */
  380. if ((f->type == AUDIT_LOGINUID) && (f->val == AUDIT_UID_UNSET)) {
  381. f->type = AUDIT_LOGINUID_SET;
  382. f->val = 0;
  383. }
  384. err = audit_field_valid(entry, f);
  385. if (err)
  386. goto exit_free;
  387. err = -EINVAL;
  388. switch (f->type) {
  389. case AUDIT_LOGINUID:
  390. case AUDIT_UID:
  391. case AUDIT_EUID:
  392. case AUDIT_SUID:
  393. case AUDIT_FSUID:
  394. case AUDIT_OBJ_UID:
  395. f->uid = make_kuid(current_user_ns(), f->val);
  396. if (!uid_valid(f->uid))
  397. goto exit_free;
  398. break;
  399. case AUDIT_GID:
  400. case AUDIT_EGID:
  401. case AUDIT_SGID:
  402. case AUDIT_FSGID:
  403. case AUDIT_OBJ_GID:
  404. f->gid = make_kgid(current_user_ns(), f->val);
  405. if (!gid_valid(f->gid))
  406. goto exit_free;
  407. break;
  408. case AUDIT_ARCH:
  409. entry->rule.arch_f = f;
  410. break;
  411. case AUDIT_SUBJ_USER:
  412. case AUDIT_SUBJ_ROLE:
  413. case AUDIT_SUBJ_TYPE:
  414. case AUDIT_SUBJ_SEN:
  415. case AUDIT_SUBJ_CLR:
  416. case AUDIT_OBJ_USER:
  417. case AUDIT_OBJ_ROLE:
  418. case AUDIT_OBJ_TYPE:
  419. case AUDIT_OBJ_LEV_LOW:
  420. case AUDIT_OBJ_LEV_HIGH:
  421. str = audit_unpack_string(&bufp, &remain, f->val);
  422. if (IS_ERR(str))
  423. goto exit_free;
  424. entry->rule.buflen += f->val;
  425. err = security_audit_rule_init(f->type, f->op, str,
  426. (void **)&f->lsm_rule);
  427. /* Keep currently invalid fields around in case they
  428. * become valid after a policy reload. */
  429. if (err == -EINVAL) {
  430. printk(KERN_WARNING "audit rule for LSM "
  431. "\'%s\' is invalid\n", str);
  432. err = 0;
  433. }
  434. if (err) {
  435. kfree(str);
  436. goto exit_free;
  437. } else
  438. f->lsm_str = str;
  439. break;
  440. case AUDIT_WATCH:
  441. str = audit_unpack_string(&bufp, &remain, f->val);
  442. if (IS_ERR(str))
  443. goto exit_free;
  444. entry->rule.buflen += f->val;
  445. err = audit_to_watch(&entry->rule, str, f->val, f->op);
  446. if (err) {
  447. kfree(str);
  448. goto exit_free;
  449. }
  450. break;
  451. case AUDIT_DIR:
  452. str = audit_unpack_string(&bufp, &remain, f->val);
  453. if (IS_ERR(str))
  454. goto exit_free;
  455. entry->rule.buflen += f->val;
  456. err = audit_make_tree(&entry->rule, str, f->op);
  457. kfree(str);
  458. if (err)
  459. goto exit_free;
  460. break;
  461. case AUDIT_INODE:
  462. err = audit_to_inode(&entry->rule, f);
  463. if (err)
  464. goto exit_free;
  465. break;
  466. case AUDIT_FILTERKEY:
  467. if (entry->rule.filterkey || f->val > AUDIT_MAX_KEY_LEN)
  468. goto exit_free;
  469. str = audit_unpack_string(&bufp, &remain, f->val);
  470. if (IS_ERR(str))
  471. goto exit_free;
  472. entry->rule.buflen += f->val;
  473. entry->rule.filterkey = str;
  474. break;
  475. }
  476. }
  477. if (entry->rule.inode_f && entry->rule.inode_f->op == Audit_not_equal)
  478. entry->rule.inode_f = NULL;
  479. exit_nofree:
  480. return entry;
  481. exit_free:
  482. if (entry->rule.watch)
  483. audit_put_watch(entry->rule.watch); /* matches initial get */
  484. if (entry->rule.tree)
  485. audit_put_tree(entry->rule.tree); /* that's the temporary one */
  486. audit_free_rule(entry);
  487. return ERR_PTR(err);
  488. }
  489. /* Pack a filter field's string representation into data block. */
  490. static inline size_t audit_pack_string(void **bufp, const char *str)
  491. {
  492. size_t len = strlen(str);
  493. memcpy(*bufp, str, len);
  494. *bufp += len;
  495. return len;
  496. }
  497. /* Translate kernel rule respresentation to struct audit_rule_data. */
  498. static struct audit_rule_data *audit_krule_to_data(struct audit_krule *krule)
  499. {
  500. struct audit_rule_data *data;
  501. void *bufp;
  502. int i;
  503. data = kmalloc(sizeof(*data) + krule->buflen, GFP_KERNEL);
  504. if (unlikely(!data))
  505. return NULL;
  506. memset(data, 0, sizeof(*data));
  507. data->flags = krule->flags | krule->listnr;
  508. data->action = krule->action;
  509. data->field_count = krule->field_count;
  510. bufp = data->buf;
  511. for (i = 0; i < data->field_count; i++) {
  512. struct audit_field *f = &krule->fields[i];
  513. data->fields[i] = f->type;
  514. data->fieldflags[i] = audit_ops[f->op];
  515. switch(f->type) {
  516. case AUDIT_SUBJ_USER:
  517. case AUDIT_SUBJ_ROLE:
  518. case AUDIT_SUBJ_TYPE:
  519. case AUDIT_SUBJ_SEN:
  520. case AUDIT_SUBJ_CLR:
  521. case AUDIT_OBJ_USER:
  522. case AUDIT_OBJ_ROLE:
  523. case AUDIT_OBJ_TYPE:
  524. case AUDIT_OBJ_LEV_LOW:
  525. case AUDIT_OBJ_LEV_HIGH:
  526. data->buflen += data->values[i] =
  527. audit_pack_string(&bufp, f->lsm_str);
  528. break;
  529. case AUDIT_WATCH:
  530. data->buflen += data->values[i] =
  531. audit_pack_string(&bufp,
  532. audit_watch_path(krule->watch));
  533. break;
  534. case AUDIT_DIR:
  535. data->buflen += data->values[i] =
  536. audit_pack_string(&bufp,
  537. audit_tree_path(krule->tree));
  538. break;
  539. case AUDIT_FILTERKEY:
  540. data->buflen += data->values[i] =
  541. audit_pack_string(&bufp, krule->filterkey);
  542. break;
  543. default:
  544. data->values[i] = f->val;
  545. }
  546. }
  547. for (i = 0; i < AUDIT_BITMASK_SIZE; i++) data->mask[i] = krule->mask[i];
  548. return data;
  549. }
  550. /* Compare two rules in kernel format. Considered success if rules
  551. * don't match. */
  552. static int audit_compare_rule(struct audit_krule *a, struct audit_krule *b)
  553. {
  554. int i;
  555. if (a->flags != b->flags ||
  556. a->listnr != b->listnr ||
  557. a->action != b->action ||
  558. a->field_count != b->field_count)
  559. return 1;
  560. for (i = 0; i < a->field_count; i++) {
  561. if (a->fields[i].type != b->fields[i].type ||
  562. a->fields[i].op != b->fields[i].op)
  563. return 1;
  564. switch(a->fields[i].type) {
  565. case AUDIT_SUBJ_USER:
  566. case AUDIT_SUBJ_ROLE:
  567. case AUDIT_SUBJ_TYPE:
  568. case AUDIT_SUBJ_SEN:
  569. case AUDIT_SUBJ_CLR:
  570. case AUDIT_OBJ_USER:
  571. case AUDIT_OBJ_ROLE:
  572. case AUDIT_OBJ_TYPE:
  573. case AUDIT_OBJ_LEV_LOW:
  574. case AUDIT_OBJ_LEV_HIGH:
  575. if (strcmp(a->fields[i].lsm_str, b->fields[i].lsm_str))
  576. return 1;
  577. break;
  578. case AUDIT_WATCH:
  579. if (strcmp(audit_watch_path(a->watch),
  580. audit_watch_path(b->watch)))
  581. return 1;
  582. break;
  583. case AUDIT_DIR:
  584. if (strcmp(audit_tree_path(a->tree),
  585. audit_tree_path(b->tree)))
  586. return 1;
  587. break;
  588. case AUDIT_FILTERKEY:
  589. /* both filterkeys exist based on above type compare */
  590. if (strcmp(a->filterkey, b->filterkey))
  591. return 1;
  592. break;
  593. case AUDIT_UID:
  594. case AUDIT_EUID:
  595. case AUDIT_SUID:
  596. case AUDIT_FSUID:
  597. case AUDIT_LOGINUID:
  598. case AUDIT_OBJ_UID:
  599. if (!uid_eq(a->fields[i].uid, b->fields[i].uid))
  600. return 1;
  601. break;
  602. case AUDIT_GID:
  603. case AUDIT_EGID:
  604. case AUDIT_SGID:
  605. case AUDIT_FSGID:
  606. case AUDIT_OBJ_GID:
  607. if (!gid_eq(a->fields[i].gid, b->fields[i].gid))
  608. return 1;
  609. break;
  610. default:
  611. if (a->fields[i].val != b->fields[i].val)
  612. return 1;
  613. }
  614. }
  615. for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
  616. if (a->mask[i] != b->mask[i])
  617. return 1;
  618. return 0;
  619. }
  620. /* Duplicate LSM field information. The lsm_rule is opaque, so must be
  621. * re-initialized. */
  622. static inline int audit_dupe_lsm_field(struct audit_field *df,
  623. struct audit_field *sf)
  624. {
  625. int ret = 0;
  626. char *lsm_str;
  627. /* our own copy of lsm_str */
  628. lsm_str = kstrdup(sf->lsm_str, GFP_KERNEL);
  629. if (unlikely(!lsm_str))
  630. return -ENOMEM;
  631. df->lsm_str = lsm_str;
  632. /* our own (refreshed) copy of lsm_rule */
  633. ret = security_audit_rule_init(df->type, df->op, df->lsm_str,
  634. (void **)&df->lsm_rule);
  635. /* Keep currently invalid fields around in case they
  636. * become valid after a policy reload. */
  637. if (ret == -EINVAL) {
  638. printk(KERN_WARNING "audit rule for LSM \'%s\' is "
  639. "invalid\n", df->lsm_str);
  640. ret = 0;
  641. }
  642. return ret;
  643. }
  644. /* Duplicate an audit rule. This will be a deep copy with the exception
  645. * of the watch - that pointer is carried over. The LSM specific fields
  646. * will be updated in the copy. The point is to be able to replace the old
  647. * rule with the new rule in the filterlist, then free the old rule.
  648. * The rlist element is undefined; list manipulations are handled apart from
  649. * the initial copy. */
  650. struct audit_entry *audit_dupe_rule(struct audit_krule *old)
  651. {
  652. u32 fcount = old->field_count;
  653. struct audit_entry *entry;
  654. struct audit_krule *new;
  655. char *fk;
  656. int i, err = 0;
  657. entry = audit_init_entry(fcount);
  658. if (unlikely(!entry))
  659. return ERR_PTR(-ENOMEM);
  660. new = &entry->rule;
  661. new->vers_ops = old->vers_ops;
  662. new->flags = old->flags;
  663. new->listnr = old->listnr;
  664. new->action = old->action;
  665. for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
  666. new->mask[i] = old->mask[i];
  667. new->prio = old->prio;
  668. new->buflen = old->buflen;
  669. new->inode_f = old->inode_f;
  670. new->field_count = old->field_count;
  671. /*
  672. * note that we are OK with not refcounting here; audit_match_tree()
  673. * never dereferences tree and we can't get false positives there
  674. * since we'd have to have rule gone from the list *and* removed
  675. * before the chunks found by lookup had been allocated, i.e. before
  676. * the beginning of list scan.
  677. */
  678. new->tree = old->tree;
  679. memcpy(new->fields, old->fields, sizeof(struct audit_field) * fcount);
  680. /* deep copy this information, updating the lsm_rule fields, because
  681. * the originals will all be freed when the old rule is freed. */
  682. for (i = 0; i < fcount; i++) {
  683. switch (new->fields[i].type) {
  684. case AUDIT_SUBJ_USER:
  685. case AUDIT_SUBJ_ROLE:
  686. case AUDIT_SUBJ_TYPE:
  687. case AUDIT_SUBJ_SEN:
  688. case AUDIT_SUBJ_CLR:
  689. case AUDIT_OBJ_USER:
  690. case AUDIT_OBJ_ROLE:
  691. case AUDIT_OBJ_TYPE:
  692. case AUDIT_OBJ_LEV_LOW:
  693. case AUDIT_OBJ_LEV_HIGH:
  694. err = audit_dupe_lsm_field(&new->fields[i],
  695. &old->fields[i]);
  696. break;
  697. case AUDIT_FILTERKEY:
  698. fk = kstrdup(old->filterkey, GFP_KERNEL);
  699. if (unlikely(!fk))
  700. err = -ENOMEM;
  701. else
  702. new->filterkey = fk;
  703. }
  704. if (err) {
  705. audit_free_rule(entry);
  706. return ERR_PTR(err);
  707. }
  708. }
  709. if (old->watch) {
  710. audit_get_watch(old->watch);
  711. new->watch = old->watch;
  712. }
  713. return entry;
  714. }
  715. /* Find an existing audit rule.
  716. * Caller must hold audit_filter_mutex to prevent stale rule data. */
  717. static struct audit_entry *audit_find_rule(struct audit_entry *entry,
  718. struct list_head **p)
  719. {
  720. struct audit_entry *e, *found = NULL;
  721. struct list_head *list;
  722. int h;
  723. if (entry->rule.inode_f) {
  724. h = audit_hash_ino(entry->rule.inode_f->val);
  725. *p = list = &audit_inode_hash[h];
  726. } else if (entry->rule.watch) {
  727. /* we don't know the inode number, so must walk entire hash */
  728. for (h = 0; h < AUDIT_INODE_BUCKETS; h++) {
  729. list = &audit_inode_hash[h];
  730. list_for_each_entry(e, list, list)
  731. if (!audit_compare_rule(&entry->rule, &e->rule)) {
  732. found = e;
  733. goto out;
  734. }
  735. }
  736. goto out;
  737. } else {
  738. *p = list = &audit_filter_list[entry->rule.listnr];
  739. }
  740. list_for_each_entry(e, list, list)
  741. if (!audit_compare_rule(&entry->rule, &e->rule)) {
  742. found = e;
  743. goto out;
  744. }
  745. out:
  746. return found;
  747. }
  748. static u64 prio_low = ~0ULL/2;
  749. static u64 prio_high = ~0ULL/2 - 1;
  750. /* Add rule to given filterlist if not a duplicate. */
  751. static inline int audit_add_rule(struct audit_entry *entry)
  752. {
  753. struct audit_entry *e;
  754. struct audit_watch *watch = entry->rule.watch;
  755. struct audit_tree *tree = entry->rule.tree;
  756. struct list_head *list;
  757. int err;
  758. #ifdef CONFIG_AUDITSYSCALL
  759. int dont_count = 0;
  760. /* If either of these, don't count towards total */
  761. if (entry->rule.listnr == AUDIT_FILTER_USER ||
  762. entry->rule.listnr == AUDIT_FILTER_TYPE)
  763. dont_count = 1;
  764. #endif
  765. mutex_lock(&audit_filter_mutex);
  766. e = audit_find_rule(entry, &list);
  767. if (e) {
  768. mutex_unlock(&audit_filter_mutex);
  769. err = -EEXIST;
  770. /* normally audit_add_tree_rule() will free it on failure */
  771. if (tree)
  772. audit_put_tree(tree);
  773. goto error;
  774. }
  775. if (watch) {
  776. /* audit_filter_mutex is dropped and re-taken during this call */
  777. err = audit_add_watch(&entry->rule, &list);
  778. if (err) {
  779. mutex_unlock(&audit_filter_mutex);
  780. /*
  781. * normally audit_add_tree_rule() will free it
  782. * on failure
  783. */
  784. if (tree)
  785. audit_put_tree(tree);
  786. goto error;
  787. }
  788. }
  789. if (tree) {
  790. err = audit_add_tree_rule(&entry->rule);
  791. if (err) {
  792. mutex_unlock(&audit_filter_mutex);
  793. goto error;
  794. }
  795. }
  796. entry->rule.prio = ~0ULL;
  797. if (entry->rule.listnr == AUDIT_FILTER_EXIT) {
  798. if (entry->rule.flags & AUDIT_FILTER_PREPEND)
  799. entry->rule.prio = ++prio_high;
  800. else
  801. entry->rule.prio = --prio_low;
  802. }
  803. if (entry->rule.flags & AUDIT_FILTER_PREPEND) {
  804. list_add(&entry->rule.list,
  805. &audit_rules_list[entry->rule.listnr]);
  806. list_add_rcu(&entry->list, list);
  807. entry->rule.flags &= ~AUDIT_FILTER_PREPEND;
  808. } else {
  809. list_add_tail(&entry->rule.list,
  810. &audit_rules_list[entry->rule.listnr]);
  811. list_add_tail_rcu(&entry->list, list);
  812. }
  813. #ifdef CONFIG_AUDITSYSCALL
  814. if (!dont_count)
  815. audit_n_rules++;
  816. if (!audit_match_signal(entry))
  817. audit_signals++;
  818. #endif
  819. mutex_unlock(&audit_filter_mutex);
  820. return 0;
  821. error:
  822. if (watch)
  823. audit_put_watch(watch); /* tmp watch, matches initial get */
  824. return err;
  825. }
  826. /* Remove an existing rule from filterlist. */
  827. static inline int audit_del_rule(struct audit_entry *entry)
  828. {
  829. struct audit_entry *e;
  830. struct audit_watch *watch = entry->rule.watch;
  831. struct audit_tree *tree = entry->rule.tree;
  832. struct list_head *list;
  833. int ret = 0;
  834. #ifdef CONFIG_AUDITSYSCALL
  835. int dont_count = 0;
  836. /* If either of these, don't count towards total */
  837. if (entry->rule.listnr == AUDIT_FILTER_USER ||
  838. entry->rule.listnr == AUDIT_FILTER_TYPE)
  839. dont_count = 1;
  840. #endif
  841. mutex_lock(&audit_filter_mutex);
  842. e = audit_find_rule(entry, &list);
  843. if (!e) {
  844. mutex_unlock(&audit_filter_mutex);
  845. ret = -ENOENT;
  846. goto out;
  847. }
  848. if (e->rule.watch)
  849. audit_remove_watch_rule(&e->rule);
  850. if (e->rule.tree)
  851. audit_remove_tree_rule(&e->rule);
  852. list_del_rcu(&e->list);
  853. list_del(&e->rule.list);
  854. call_rcu(&e->rcu, audit_free_rule_rcu);
  855. #ifdef CONFIG_AUDITSYSCALL
  856. if (!dont_count)
  857. audit_n_rules--;
  858. if (!audit_match_signal(entry))
  859. audit_signals--;
  860. #endif
  861. mutex_unlock(&audit_filter_mutex);
  862. out:
  863. if (watch)
  864. audit_put_watch(watch); /* match initial get */
  865. if (tree)
  866. audit_put_tree(tree); /* that's the temporary one */
  867. return ret;
  868. }
  869. /* List rules using struct audit_rule_data. */
  870. static void audit_list_rules(__u32 portid, int seq, struct sk_buff_head *q)
  871. {
  872. struct sk_buff *skb;
  873. struct audit_krule *r;
  874. int i;
  875. /* This is a blocking read, so use audit_filter_mutex instead of rcu
  876. * iterator to sync with list writers. */
  877. for (i=0; i<AUDIT_NR_FILTERS; i++) {
  878. list_for_each_entry(r, &audit_rules_list[i], list) {
  879. struct audit_rule_data *data;
  880. data = audit_krule_to_data(r);
  881. if (unlikely(!data))
  882. break;
  883. skb = audit_make_reply(portid, seq, AUDIT_LIST_RULES,
  884. 0, 1, data,
  885. sizeof(*data) + data->buflen);
  886. if (skb)
  887. skb_queue_tail(q, skb);
  888. kfree(data);
  889. }
  890. }
  891. skb = audit_make_reply(portid, seq, AUDIT_LIST_RULES, 1, 1, NULL, 0);
  892. if (skb)
  893. skb_queue_tail(q, skb);
  894. }
  895. /* Log rule additions and removals */
  896. static void audit_log_rule_change(char *action, struct audit_krule *rule, int res)
  897. {
  898. struct audit_buffer *ab;
  899. uid_t loginuid = from_kuid(&init_user_ns, audit_get_loginuid(current));
  900. unsigned int sessionid = audit_get_sessionid(current);
  901. if (!audit_enabled)
  902. return;
  903. ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
  904. if (!ab)
  905. return;
  906. audit_log_format(ab, "auid=%u ses=%u" ,loginuid, sessionid);
  907. audit_log_task_context(ab);
  908. audit_log_format(ab, " op=");
  909. audit_log_string(ab, action);
  910. audit_log_key(ab, rule->filterkey);
  911. audit_log_format(ab, " list=%d res=%d", rule->listnr, res);
  912. audit_log_end(ab);
  913. }
  914. /**
  915. * audit_rule_change - apply all rules to the specified message type
  916. * @type: audit message type
  917. * @portid: target port id for netlink audit messages
  918. * @seq: netlink audit message sequence (serial) number
  919. * @data: payload data
  920. * @datasz: size of payload data
  921. */
  922. int audit_rule_change(int type, __u32 portid, int seq, void *data,
  923. size_t datasz)
  924. {
  925. int err = 0;
  926. struct audit_entry *entry;
  927. switch (type) {
  928. case AUDIT_ADD_RULE:
  929. entry = audit_data_to_entry(data, datasz);
  930. if (IS_ERR(entry))
  931. return PTR_ERR(entry);
  932. err = audit_add_rule(entry);
  933. audit_log_rule_change("add rule", &entry->rule, !err);
  934. if (err)
  935. audit_free_rule(entry);
  936. break;
  937. case AUDIT_DEL_RULE:
  938. entry = audit_data_to_entry(data, datasz);
  939. if (IS_ERR(entry))
  940. return PTR_ERR(entry);
  941. err = audit_del_rule(entry);
  942. audit_log_rule_change("remove rule", &entry->rule, !err);
  943. audit_free_rule(entry);
  944. break;
  945. default:
  946. return -EINVAL;
  947. }
  948. return err;
  949. }
  950. /**
  951. * audit_list_rules_send - list the audit rules
  952. * @portid: target portid for netlink audit messages
  953. * @seq: netlink audit message sequence (serial) number
  954. */
  955. int audit_list_rules_send(__u32 portid, int seq)
  956. {
  957. struct task_struct *tsk;
  958. struct audit_netlink_list *dest;
  959. int err = 0;
  960. /* We can't just spew out the rules here because we might fill
  961. * the available socket buffer space and deadlock waiting for
  962. * auditctl to read from it... which isn't ever going to
  963. * happen if we're actually running in the context of auditctl
  964. * trying to _send_ the stuff */
  965. dest = kmalloc(sizeof(struct audit_netlink_list), GFP_KERNEL);
  966. if (!dest)
  967. return -ENOMEM;
  968. dest->portid = portid;
  969. dest->pid = task_pid_vnr(current);
  970. skb_queue_head_init(&dest->q);
  971. mutex_lock(&audit_filter_mutex);
  972. audit_list_rules(portid, seq, &dest->q);
  973. mutex_unlock(&audit_filter_mutex);
  974. tsk = kthread_run(audit_send_list, dest, "audit_send_list");
  975. if (IS_ERR(tsk)) {
  976. skb_queue_purge(&dest->q);
  977. kfree(dest);
  978. err = PTR_ERR(tsk);
  979. }
  980. return err;
  981. }
  982. int audit_comparator(u32 left, u32 op, u32 right)
  983. {
  984. switch (op) {
  985. case Audit_equal:
  986. return (left == right);
  987. case Audit_not_equal:
  988. return (left != right);
  989. case Audit_lt:
  990. return (left < right);
  991. case Audit_le:
  992. return (left <= right);
  993. case Audit_gt:
  994. return (left > right);
  995. case Audit_ge:
  996. return (left >= right);
  997. case Audit_bitmask:
  998. return (left & right);
  999. case Audit_bittest:
  1000. return ((left & right) == right);
  1001. default:
  1002. BUG();
  1003. return 0;
  1004. }
  1005. }
  1006. int audit_uid_comparator(kuid_t left, u32 op, kuid_t right)
  1007. {
  1008. switch (op) {
  1009. case Audit_equal:
  1010. return uid_eq(left, right);
  1011. case Audit_not_equal:
  1012. return !uid_eq(left, right);
  1013. case Audit_lt:
  1014. return uid_lt(left, right);
  1015. case Audit_le:
  1016. return uid_lte(left, right);
  1017. case Audit_gt:
  1018. return uid_gt(left, right);
  1019. case Audit_ge:
  1020. return uid_gte(left, right);
  1021. case Audit_bitmask:
  1022. case Audit_bittest:
  1023. default:
  1024. BUG();
  1025. return 0;
  1026. }
  1027. }
  1028. int audit_gid_comparator(kgid_t left, u32 op, kgid_t right)
  1029. {
  1030. switch (op) {
  1031. case Audit_equal:
  1032. return gid_eq(left, right);
  1033. case Audit_not_equal:
  1034. return !gid_eq(left, right);
  1035. case Audit_lt:
  1036. return gid_lt(left, right);
  1037. case Audit_le:
  1038. return gid_lte(left, right);
  1039. case Audit_gt:
  1040. return gid_gt(left, right);
  1041. case Audit_ge:
  1042. return gid_gte(left, right);
  1043. case Audit_bitmask:
  1044. case Audit_bittest:
  1045. default:
  1046. BUG();
  1047. return 0;
  1048. }
  1049. }
  1050. /**
  1051. * parent_len - find the length of the parent portion of a pathname
  1052. * @path: pathname of which to determine length
  1053. */
  1054. int parent_len(const char *path)
  1055. {
  1056. int plen;
  1057. const char *p;
  1058. plen = strlen(path);
  1059. if (plen == 0)
  1060. return plen;
  1061. /* disregard trailing slashes */
  1062. p = path + plen - 1;
  1063. while ((*p == '/') && (p > path))
  1064. p--;
  1065. /* walk backward until we find the next slash or hit beginning */
  1066. while ((*p != '/') && (p > path))
  1067. p--;
  1068. /* did we find a slash? Then increment to include it in path */
  1069. if (*p == '/')
  1070. p++;
  1071. return p - path;
  1072. }
  1073. /**
  1074. * audit_compare_dname_path - compare given dentry name with last component in
  1075. * given path. Return of 0 indicates a match.
  1076. * @dname: dentry name that we're comparing
  1077. * @path: full pathname that we're comparing
  1078. * @parentlen: length of the parent if known. Passing in AUDIT_NAME_FULL
  1079. * here indicates that we must compute this value.
  1080. */
  1081. int audit_compare_dname_path(const char *dname, const char *path, int parentlen)
  1082. {
  1083. int dlen, pathlen;
  1084. const char *p;
  1085. dlen = strlen(dname);
  1086. pathlen = strlen(path);
  1087. if (pathlen < dlen)
  1088. return 1;
  1089. parentlen = parentlen == AUDIT_NAME_FULL ? parent_len(path) : parentlen;
  1090. if (pathlen - parentlen != dlen)
  1091. return 1;
  1092. p = path + parentlen;
  1093. return strncmp(p, dname, dlen);
  1094. }
  1095. static int audit_filter_user_rules(struct audit_krule *rule, int type,
  1096. enum audit_state *state)
  1097. {
  1098. int i;
  1099. for (i = 0; i < rule->field_count; i++) {
  1100. struct audit_field *f = &rule->fields[i];
  1101. int result = 0;
  1102. u32 sid;
  1103. switch (f->type) {
  1104. case AUDIT_PID:
  1105. result = audit_comparator(task_pid_vnr(current), f->op, f->val);
  1106. break;
  1107. case AUDIT_UID:
  1108. result = audit_uid_comparator(current_uid(), f->op, f->uid);
  1109. break;
  1110. case AUDIT_GID:
  1111. result = audit_gid_comparator(current_gid(), f->op, f->gid);
  1112. break;
  1113. case AUDIT_LOGINUID:
  1114. result = audit_uid_comparator(audit_get_loginuid(current),
  1115. f->op, f->uid);
  1116. break;
  1117. case AUDIT_LOGINUID_SET:
  1118. result = audit_comparator(audit_loginuid_set(current),
  1119. f->op, f->val);
  1120. break;
  1121. case AUDIT_MSGTYPE:
  1122. result = audit_comparator(type, f->op, f->val);
  1123. break;
  1124. case AUDIT_SUBJ_USER:
  1125. case AUDIT_SUBJ_ROLE:
  1126. case AUDIT_SUBJ_TYPE:
  1127. case AUDIT_SUBJ_SEN:
  1128. case AUDIT_SUBJ_CLR:
  1129. if (f->lsm_rule) {
  1130. security_task_getsecid(current, &sid);
  1131. result = security_audit_rule_match(sid,
  1132. f->type,
  1133. f->op,
  1134. f->lsm_rule,
  1135. NULL);
  1136. }
  1137. break;
  1138. }
  1139. if (!result)
  1140. return 0;
  1141. }
  1142. switch (rule->action) {
  1143. case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
  1144. case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
  1145. }
  1146. return 1;
  1147. }
  1148. int audit_filter_user(int type)
  1149. {
  1150. enum audit_state state = AUDIT_DISABLED;
  1151. struct audit_entry *e;
  1152. int rc, ret;
  1153. ret = 1; /* Audit by default */
  1154. rcu_read_lock();
  1155. list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_USER], list) {
  1156. rc = audit_filter_user_rules(&e->rule, type, &state);
  1157. if (rc) {
  1158. if (rc > 0 && state == AUDIT_DISABLED)
  1159. ret = 0;
  1160. break;
  1161. }
  1162. }
  1163. rcu_read_unlock();
  1164. return ret;
  1165. }
  1166. int audit_filter_type(int type)
  1167. {
  1168. struct audit_entry *e;
  1169. int result = 0;
  1170. rcu_read_lock();
  1171. if (list_empty(&audit_filter_list[AUDIT_FILTER_TYPE]))
  1172. goto unlock_and_return;
  1173. list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TYPE],
  1174. list) {
  1175. int i;
  1176. for (i = 0; i < e->rule.field_count; i++) {
  1177. struct audit_field *f = &e->rule.fields[i];
  1178. if (f->type == AUDIT_MSGTYPE) {
  1179. result = audit_comparator(type, f->op, f->val);
  1180. if (!result)
  1181. break;
  1182. }
  1183. }
  1184. if (result)
  1185. goto unlock_and_return;
  1186. }
  1187. unlock_and_return:
  1188. rcu_read_unlock();
  1189. return result;
  1190. }
  1191. static int update_lsm_rule(struct audit_krule *r)
  1192. {
  1193. struct audit_entry *entry = container_of(r, struct audit_entry, rule);
  1194. struct audit_entry *nentry;
  1195. int err = 0;
  1196. if (!security_audit_rule_known(r))
  1197. return 0;
  1198. nentry = audit_dupe_rule(r);
  1199. if (IS_ERR(nentry)) {
  1200. /* save the first error encountered for the
  1201. * return value */
  1202. err = PTR_ERR(nentry);
  1203. audit_panic("error updating LSM filters");
  1204. if (r->watch)
  1205. list_del(&r->rlist);
  1206. list_del_rcu(&entry->list);
  1207. list_del(&r->list);
  1208. } else {
  1209. if (r->watch || r->tree)
  1210. list_replace_init(&r->rlist, &nentry->rule.rlist);
  1211. list_replace_rcu(&entry->list, &nentry->list);
  1212. list_replace(&r->list, &nentry->rule.list);
  1213. }
  1214. call_rcu(&entry->rcu, audit_free_rule_rcu);
  1215. return err;
  1216. }
  1217. /* This function will re-initialize the lsm_rule field of all applicable rules.
  1218. * It will traverse the filter lists serarching for rules that contain LSM
  1219. * specific filter fields. When such a rule is found, it is copied, the
  1220. * LSM field is re-initialized, and the old rule is replaced with the
  1221. * updated rule. */
  1222. int audit_update_lsm_rules(void)
  1223. {
  1224. struct audit_krule *r, *n;
  1225. int i, err = 0;
  1226. /* audit_filter_mutex synchronizes the writers */
  1227. mutex_lock(&audit_filter_mutex);
  1228. for (i = 0; i < AUDIT_NR_FILTERS; i++) {
  1229. list_for_each_entry_safe(r, n, &audit_rules_list[i], list) {
  1230. int res = update_lsm_rule(r);
  1231. if (!err)
  1232. err = res;
  1233. }
  1234. }
  1235. mutex_unlock(&audit_filter_mutex);
  1236. return err;
  1237. }