auditfilter.c 34 KB

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