auditfilter.c 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418
  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. entry->rule.pflags |= AUDIT_LOGINUID_LEGACY;
  397. }
  398. err = audit_field_valid(entry, f);
  399. if (err)
  400. goto exit_free;
  401. err = -EINVAL;
  402. switch (f->type) {
  403. case AUDIT_LOGINUID:
  404. case AUDIT_UID:
  405. case AUDIT_EUID:
  406. case AUDIT_SUID:
  407. case AUDIT_FSUID:
  408. case AUDIT_OBJ_UID:
  409. f->uid = make_kuid(current_user_ns(), f->val);
  410. if (!uid_valid(f->uid))
  411. goto exit_free;
  412. break;
  413. case AUDIT_GID:
  414. case AUDIT_EGID:
  415. case AUDIT_SGID:
  416. case AUDIT_FSGID:
  417. case AUDIT_OBJ_GID:
  418. f->gid = make_kgid(current_user_ns(), f->val);
  419. if (!gid_valid(f->gid))
  420. goto exit_free;
  421. break;
  422. case AUDIT_ARCH:
  423. entry->rule.arch_f = f;
  424. break;
  425. case AUDIT_SUBJ_USER:
  426. case AUDIT_SUBJ_ROLE:
  427. case AUDIT_SUBJ_TYPE:
  428. case AUDIT_SUBJ_SEN:
  429. case AUDIT_SUBJ_CLR:
  430. case AUDIT_OBJ_USER:
  431. case AUDIT_OBJ_ROLE:
  432. case AUDIT_OBJ_TYPE:
  433. case AUDIT_OBJ_LEV_LOW:
  434. case AUDIT_OBJ_LEV_HIGH:
  435. str = audit_unpack_string(&bufp, &remain, f->val);
  436. if (IS_ERR(str))
  437. goto exit_free;
  438. entry->rule.buflen += f->val;
  439. err = security_audit_rule_init(f->type, f->op, str,
  440. (void **)&f->lsm_rule);
  441. /* Keep currently invalid fields around in case they
  442. * become valid after a policy reload. */
  443. if (err == -EINVAL) {
  444. pr_warn("audit rule for LSM \'%s\' is invalid\n",
  445. str);
  446. err = 0;
  447. }
  448. if (err) {
  449. kfree(str);
  450. goto exit_free;
  451. } else
  452. f->lsm_str = str;
  453. break;
  454. case AUDIT_WATCH:
  455. str = audit_unpack_string(&bufp, &remain, f->val);
  456. if (IS_ERR(str))
  457. goto exit_free;
  458. entry->rule.buflen += f->val;
  459. err = audit_to_watch(&entry->rule, str, f->val, f->op);
  460. if (err) {
  461. kfree(str);
  462. goto exit_free;
  463. }
  464. break;
  465. case AUDIT_DIR:
  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_make_tree(&entry->rule, str, f->op);
  471. kfree(str);
  472. if (err)
  473. goto exit_free;
  474. break;
  475. case AUDIT_INODE:
  476. err = audit_to_inode(&entry->rule, f);
  477. if (err)
  478. goto exit_free;
  479. break;
  480. case AUDIT_FILTERKEY:
  481. if (entry->rule.filterkey || f->val > AUDIT_MAX_KEY_LEN)
  482. goto exit_free;
  483. str = audit_unpack_string(&bufp, &remain, f->val);
  484. if (IS_ERR(str))
  485. goto exit_free;
  486. entry->rule.buflen += f->val;
  487. entry->rule.filterkey = str;
  488. break;
  489. }
  490. }
  491. if (entry->rule.inode_f && entry->rule.inode_f->op == Audit_not_equal)
  492. entry->rule.inode_f = NULL;
  493. exit_nofree:
  494. return entry;
  495. exit_free:
  496. if (entry->rule.watch)
  497. audit_put_watch(entry->rule.watch); /* matches initial get */
  498. if (entry->rule.tree)
  499. audit_put_tree(entry->rule.tree); /* that's the temporary one */
  500. audit_free_rule(entry);
  501. return ERR_PTR(err);
  502. }
  503. /* Pack a filter field's string representation into data block. */
  504. static inline size_t audit_pack_string(void **bufp, const char *str)
  505. {
  506. size_t len = strlen(str);
  507. memcpy(*bufp, str, len);
  508. *bufp += len;
  509. return len;
  510. }
  511. /* Translate kernel rule respresentation to struct audit_rule_data. */
  512. static struct audit_rule_data *audit_krule_to_data(struct audit_krule *krule)
  513. {
  514. struct audit_rule_data *data;
  515. void *bufp;
  516. int i;
  517. data = kmalloc(sizeof(*data) + krule->buflen, GFP_KERNEL);
  518. if (unlikely(!data))
  519. return NULL;
  520. memset(data, 0, sizeof(*data));
  521. data->flags = krule->flags | krule->listnr;
  522. data->action = krule->action;
  523. data->field_count = krule->field_count;
  524. bufp = data->buf;
  525. for (i = 0; i < data->field_count; i++) {
  526. struct audit_field *f = &krule->fields[i];
  527. data->fields[i] = f->type;
  528. data->fieldflags[i] = audit_ops[f->op];
  529. switch(f->type) {
  530. case AUDIT_SUBJ_USER:
  531. case AUDIT_SUBJ_ROLE:
  532. case AUDIT_SUBJ_TYPE:
  533. case AUDIT_SUBJ_SEN:
  534. case AUDIT_SUBJ_CLR:
  535. case AUDIT_OBJ_USER:
  536. case AUDIT_OBJ_ROLE:
  537. case AUDIT_OBJ_TYPE:
  538. case AUDIT_OBJ_LEV_LOW:
  539. case AUDIT_OBJ_LEV_HIGH:
  540. data->buflen += data->values[i] =
  541. audit_pack_string(&bufp, f->lsm_str);
  542. break;
  543. case AUDIT_WATCH:
  544. data->buflen += data->values[i] =
  545. audit_pack_string(&bufp,
  546. audit_watch_path(krule->watch));
  547. break;
  548. case AUDIT_DIR:
  549. data->buflen += data->values[i] =
  550. audit_pack_string(&bufp,
  551. audit_tree_path(krule->tree));
  552. break;
  553. case AUDIT_FILTERKEY:
  554. data->buflen += data->values[i] =
  555. audit_pack_string(&bufp, krule->filterkey);
  556. break;
  557. case AUDIT_LOGINUID_SET:
  558. if (krule->pflags & AUDIT_LOGINUID_LEGACY && !f->val) {
  559. data->fields[i] = AUDIT_LOGINUID;
  560. data->values[i] = AUDIT_UID_UNSET;
  561. break;
  562. }
  563. /* fallthrough if set */
  564. default:
  565. data->values[i] = f->val;
  566. }
  567. }
  568. for (i = 0; i < AUDIT_BITMASK_SIZE; i++) data->mask[i] = krule->mask[i];
  569. return data;
  570. }
  571. /* Compare two rules in kernel format. Considered success if rules
  572. * don't match. */
  573. static int audit_compare_rule(struct audit_krule *a, struct audit_krule *b)
  574. {
  575. int i;
  576. if (a->flags != b->flags ||
  577. a->pflags != b->pflags ||
  578. a->listnr != b->listnr ||
  579. a->action != b->action ||
  580. a->field_count != b->field_count)
  581. return 1;
  582. for (i = 0; i < a->field_count; i++) {
  583. if (a->fields[i].type != b->fields[i].type ||
  584. a->fields[i].op != b->fields[i].op)
  585. return 1;
  586. switch(a->fields[i].type) {
  587. case AUDIT_SUBJ_USER:
  588. case AUDIT_SUBJ_ROLE:
  589. case AUDIT_SUBJ_TYPE:
  590. case AUDIT_SUBJ_SEN:
  591. case AUDIT_SUBJ_CLR:
  592. case AUDIT_OBJ_USER:
  593. case AUDIT_OBJ_ROLE:
  594. case AUDIT_OBJ_TYPE:
  595. case AUDIT_OBJ_LEV_LOW:
  596. case AUDIT_OBJ_LEV_HIGH:
  597. if (strcmp(a->fields[i].lsm_str, b->fields[i].lsm_str))
  598. return 1;
  599. break;
  600. case AUDIT_WATCH:
  601. if (strcmp(audit_watch_path(a->watch),
  602. audit_watch_path(b->watch)))
  603. return 1;
  604. break;
  605. case AUDIT_DIR:
  606. if (strcmp(audit_tree_path(a->tree),
  607. audit_tree_path(b->tree)))
  608. return 1;
  609. break;
  610. case AUDIT_FILTERKEY:
  611. /* both filterkeys exist based on above type compare */
  612. if (strcmp(a->filterkey, b->filterkey))
  613. return 1;
  614. break;
  615. case AUDIT_UID:
  616. case AUDIT_EUID:
  617. case AUDIT_SUID:
  618. case AUDIT_FSUID:
  619. case AUDIT_LOGINUID:
  620. case AUDIT_OBJ_UID:
  621. if (!uid_eq(a->fields[i].uid, b->fields[i].uid))
  622. return 1;
  623. break;
  624. case AUDIT_GID:
  625. case AUDIT_EGID:
  626. case AUDIT_SGID:
  627. case AUDIT_FSGID:
  628. case AUDIT_OBJ_GID:
  629. if (!gid_eq(a->fields[i].gid, b->fields[i].gid))
  630. return 1;
  631. break;
  632. default:
  633. if (a->fields[i].val != b->fields[i].val)
  634. return 1;
  635. }
  636. }
  637. for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
  638. if (a->mask[i] != b->mask[i])
  639. return 1;
  640. return 0;
  641. }
  642. /* Duplicate LSM field information. The lsm_rule is opaque, so must be
  643. * re-initialized. */
  644. static inline int audit_dupe_lsm_field(struct audit_field *df,
  645. struct audit_field *sf)
  646. {
  647. int ret = 0;
  648. char *lsm_str;
  649. /* our own copy of lsm_str */
  650. lsm_str = kstrdup(sf->lsm_str, GFP_KERNEL);
  651. if (unlikely(!lsm_str))
  652. return -ENOMEM;
  653. df->lsm_str = lsm_str;
  654. /* our own (refreshed) copy of lsm_rule */
  655. ret = security_audit_rule_init(df->type, df->op, df->lsm_str,
  656. (void **)&df->lsm_rule);
  657. /* Keep currently invalid fields around in case they
  658. * become valid after a policy reload. */
  659. if (ret == -EINVAL) {
  660. pr_warn("audit rule for LSM \'%s\' is invalid\n",
  661. df->lsm_str);
  662. ret = 0;
  663. }
  664. return ret;
  665. }
  666. /* Duplicate an audit rule. This will be a deep copy with the exception
  667. * of the watch - that pointer is carried over. The LSM specific fields
  668. * will be updated in the copy. The point is to be able to replace the old
  669. * rule with the new rule in the filterlist, then free the old rule.
  670. * The rlist element is undefined; list manipulations are handled apart from
  671. * the initial copy. */
  672. struct audit_entry *audit_dupe_rule(struct audit_krule *old)
  673. {
  674. u32 fcount = old->field_count;
  675. struct audit_entry *entry;
  676. struct audit_krule *new;
  677. char *fk;
  678. int i, err = 0;
  679. entry = audit_init_entry(fcount);
  680. if (unlikely(!entry))
  681. return ERR_PTR(-ENOMEM);
  682. new = &entry->rule;
  683. new->vers_ops = old->vers_ops;
  684. new->flags = old->flags;
  685. new->pflags = old->pflags;
  686. new->listnr = old->listnr;
  687. new->action = old->action;
  688. for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
  689. new->mask[i] = old->mask[i];
  690. new->prio = old->prio;
  691. new->buflen = old->buflen;
  692. new->inode_f = old->inode_f;
  693. new->field_count = old->field_count;
  694. /*
  695. * note that we are OK with not refcounting here; audit_match_tree()
  696. * never dereferences tree and we can't get false positives there
  697. * since we'd have to have rule gone from the list *and* removed
  698. * before the chunks found by lookup had been allocated, i.e. before
  699. * the beginning of list scan.
  700. */
  701. new->tree = old->tree;
  702. memcpy(new->fields, old->fields, sizeof(struct audit_field) * fcount);
  703. /* deep copy this information, updating the lsm_rule fields, because
  704. * the originals will all be freed when the old rule is freed. */
  705. for (i = 0; i < fcount; i++) {
  706. switch (new->fields[i].type) {
  707. case AUDIT_SUBJ_USER:
  708. case AUDIT_SUBJ_ROLE:
  709. case AUDIT_SUBJ_TYPE:
  710. case AUDIT_SUBJ_SEN:
  711. case AUDIT_SUBJ_CLR:
  712. case AUDIT_OBJ_USER:
  713. case AUDIT_OBJ_ROLE:
  714. case AUDIT_OBJ_TYPE:
  715. case AUDIT_OBJ_LEV_LOW:
  716. case AUDIT_OBJ_LEV_HIGH:
  717. err = audit_dupe_lsm_field(&new->fields[i],
  718. &old->fields[i]);
  719. break;
  720. case AUDIT_FILTERKEY:
  721. fk = kstrdup(old->filterkey, GFP_KERNEL);
  722. if (unlikely(!fk))
  723. err = -ENOMEM;
  724. else
  725. new->filterkey = fk;
  726. }
  727. if (err) {
  728. audit_free_rule(entry);
  729. return ERR_PTR(err);
  730. }
  731. }
  732. if (old->watch) {
  733. audit_get_watch(old->watch);
  734. new->watch = old->watch;
  735. }
  736. return entry;
  737. }
  738. /* Find an existing audit rule.
  739. * Caller must hold audit_filter_mutex to prevent stale rule data. */
  740. static struct audit_entry *audit_find_rule(struct audit_entry *entry,
  741. struct list_head **p)
  742. {
  743. struct audit_entry *e, *found = NULL;
  744. struct list_head *list;
  745. int h;
  746. if (entry->rule.inode_f) {
  747. h = audit_hash_ino(entry->rule.inode_f->val);
  748. *p = list = &audit_inode_hash[h];
  749. } else if (entry->rule.watch) {
  750. /* we don't know the inode number, so must walk entire hash */
  751. for (h = 0; h < AUDIT_INODE_BUCKETS; h++) {
  752. list = &audit_inode_hash[h];
  753. list_for_each_entry(e, list, list)
  754. if (!audit_compare_rule(&entry->rule, &e->rule)) {
  755. found = e;
  756. goto out;
  757. }
  758. }
  759. goto out;
  760. } else {
  761. *p = list = &audit_filter_list[entry->rule.listnr];
  762. }
  763. list_for_each_entry(e, list, list)
  764. if (!audit_compare_rule(&entry->rule, &e->rule)) {
  765. found = e;
  766. goto out;
  767. }
  768. out:
  769. return found;
  770. }
  771. static u64 prio_low = ~0ULL/2;
  772. static u64 prio_high = ~0ULL/2 - 1;
  773. /* Add rule to given filterlist if not a duplicate. */
  774. static inline int audit_add_rule(struct audit_entry *entry)
  775. {
  776. struct audit_entry *e;
  777. struct audit_watch *watch = entry->rule.watch;
  778. struct audit_tree *tree = entry->rule.tree;
  779. struct list_head *list;
  780. int err;
  781. #ifdef CONFIG_AUDITSYSCALL
  782. int dont_count = 0;
  783. /* If either of these, don't count towards total */
  784. if (entry->rule.listnr == AUDIT_FILTER_USER ||
  785. entry->rule.listnr == AUDIT_FILTER_TYPE)
  786. dont_count = 1;
  787. #endif
  788. mutex_lock(&audit_filter_mutex);
  789. e = audit_find_rule(entry, &list);
  790. if (e) {
  791. mutex_unlock(&audit_filter_mutex);
  792. err = -EEXIST;
  793. /* normally audit_add_tree_rule() will free it on failure */
  794. if (tree)
  795. audit_put_tree(tree);
  796. goto error;
  797. }
  798. if (watch) {
  799. /* audit_filter_mutex is dropped and re-taken during this call */
  800. err = audit_add_watch(&entry->rule, &list);
  801. if (err) {
  802. mutex_unlock(&audit_filter_mutex);
  803. /*
  804. * normally audit_add_tree_rule() will free it
  805. * on failure
  806. */
  807. if (tree)
  808. audit_put_tree(tree);
  809. goto error;
  810. }
  811. }
  812. if (tree) {
  813. err = audit_add_tree_rule(&entry->rule);
  814. if (err) {
  815. mutex_unlock(&audit_filter_mutex);
  816. goto error;
  817. }
  818. }
  819. entry->rule.prio = ~0ULL;
  820. if (entry->rule.listnr == AUDIT_FILTER_EXIT) {
  821. if (entry->rule.flags & AUDIT_FILTER_PREPEND)
  822. entry->rule.prio = ++prio_high;
  823. else
  824. entry->rule.prio = --prio_low;
  825. }
  826. if (entry->rule.flags & AUDIT_FILTER_PREPEND) {
  827. list_add(&entry->rule.list,
  828. &audit_rules_list[entry->rule.listnr]);
  829. list_add_rcu(&entry->list, list);
  830. entry->rule.flags &= ~AUDIT_FILTER_PREPEND;
  831. } else {
  832. list_add_tail(&entry->rule.list,
  833. &audit_rules_list[entry->rule.listnr]);
  834. list_add_tail_rcu(&entry->list, list);
  835. }
  836. #ifdef CONFIG_AUDITSYSCALL
  837. if (!dont_count)
  838. audit_n_rules++;
  839. if (!audit_match_signal(entry))
  840. audit_signals++;
  841. #endif
  842. mutex_unlock(&audit_filter_mutex);
  843. return 0;
  844. error:
  845. if (watch)
  846. audit_put_watch(watch); /* tmp watch, matches initial get */
  847. return err;
  848. }
  849. /* Remove an existing rule from filterlist. */
  850. static inline int audit_del_rule(struct audit_entry *entry)
  851. {
  852. struct audit_entry *e;
  853. struct audit_watch *watch = entry->rule.watch;
  854. struct audit_tree *tree = entry->rule.tree;
  855. struct list_head *list;
  856. int ret = 0;
  857. #ifdef CONFIG_AUDITSYSCALL
  858. int dont_count = 0;
  859. /* If either of these, don't count towards total */
  860. if (entry->rule.listnr == AUDIT_FILTER_USER ||
  861. entry->rule.listnr == AUDIT_FILTER_TYPE)
  862. dont_count = 1;
  863. #endif
  864. mutex_lock(&audit_filter_mutex);
  865. e = audit_find_rule(entry, &list);
  866. if (!e) {
  867. mutex_unlock(&audit_filter_mutex);
  868. ret = -ENOENT;
  869. goto out;
  870. }
  871. if (e->rule.watch)
  872. audit_remove_watch_rule(&e->rule);
  873. if (e->rule.tree)
  874. audit_remove_tree_rule(&e->rule);
  875. list_del_rcu(&e->list);
  876. list_del(&e->rule.list);
  877. call_rcu(&e->rcu, audit_free_rule_rcu);
  878. #ifdef CONFIG_AUDITSYSCALL
  879. if (!dont_count)
  880. audit_n_rules--;
  881. if (!audit_match_signal(entry))
  882. audit_signals--;
  883. #endif
  884. mutex_unlock(&audit_filter_mutex);
  885. out:
  886. if (watch)
  887. audit_put_watch(watch); /* match initial get */
  888. if (tree)
  889. audit_put_tree(tree); /* that's the temporary one */
  890. return ret;
  891. }
  892. /* List rules using struct audit_rule_data. */
  893. static void audit_list_rules(__u32 portid, int seq, struct sk_buff_head *q)
  894. {
  895. struct sk_buff *skb;
  896. struct audit_krule *r;
  897. int i;
  898. /* This is a blocking read, so use audit_filter_mutex instead of rcu
  899. * iterator to sync with list writers. */
  900. for (i=0; i<AUDIT_NR_FILTERS; i++) {
  901. list_for_each_entry(r, &audit_rules_list[i], list) {
  902. struct audit_rule_data *data;
  903. data = audit_krule_to_data(r);
  904. if (unlikely(!data))
  905. break;
  906. skb = audit_make_reply(portid, seq, AUDIT_LIST_RULES,
  907. 0, 1, data,
  908. sizeof(*data) + data->buflen);
  909. if (skb)
  910. skb_queue_tail(q, skb);
  911. kfree(data);
  912. }
  913. }
  914. skb = audit_make_reply(portid, seq, AUDIT_LIST_RULES, 1, 1, NULL, 0);
  915. if (skb)
  916. skb_queue_tail(q, skb);
  917. }
  918. /* Log rule additions and removals */
  919. static void audit_log_rule_change(char *action, struct audit_krule *rule, int res)
  920. {
  921. struct audit_buffer *ab;
  922. uid_t loginuid = from_kuid(&init_user_ns, audit_get_loginuid(current));
  923. unsigned int sessionid = audit_get_sessionid(current);
  924. if (!audit_enabled)
  925. return;
  926. ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
  927. if (!ab)
  928. return;
  929. audit_log_format(ab, "auid=%u ses=%u" ,loginuid, sessionid);
  930. audit_log_task_context(ab);
  931. audit_log_format(ab, " op=");
  932. audit_log_string(ab, action);
  933. audit_log_key(ab, rule->filterkey);
  934. audit_log_format(ab, " list=%d res=%d", rule->listnr, res);
  935. audit_log_end(ab);
  936. }
  937. /**
  938. * audit_rule_change - apply all rules to the specified message type
  939. * @type: audit message type
  940. * @portid: target port id for netlink audit messages
  941. * @seq: netlink audit message sequence (serial) number
  942. * @data: payload data
  943. * @datasz: size of payload data
  944. */
  945. int audit_rule_change(int type, __u32 portid, int seq, void *data,
  946. size_t datasz)
  947. {
  948. int err = 0;
  949. struct audit_entry *entry;
  950. entry = audit_data_to_entry(data, datasz);
  951. if (IS_ERR(entry))
  952. return PTR_ERR(entry);
  953. switch (type) {
  954. case AUDIT_ADD_RULE:
  955. err = audit_add_rule(entry);
  956. audit_log_rule_change("add_rule", &entry->rule, !err);
  957. break;
  958. case AUDIT_DEL_RULE:
  959. err = audit_del_rule(entry);
  960. audit_log_rule_change("remove_rule", &entry->rule, !err);
  961. break;
  962. default:
  963. err = -EINVAL;
  964. WARN_ON(1);
  965. }
  966. if (err || type == AUDIT_DEL_RULE)
  967. audit_free_rule(entry);
  968. return err;
  969. }
  970. /**
  971. * audit_list_rules_send - list the audit rules
  972. * @request_skb: skb of request we are replying to (used to target the reply)
  973. * @seq: netlink audit message sequence (serial) number
  974. */
  975. int audit_list_rules_send(struct sk_buff *request_skb, int seq)
  976. {
  977. u32 portid = NETLINK_CB(request_skb).portid;
  978. struct net *net = sock_net(NETLINK_CB(request_skb).sk);
  979. struct task_struct *tsk;
  980. struct audit_netlink_list *dest;
  981. int err = 0;
  982. /* We can't just spew out the rules here because we might fill
  983. * the available socket buffer space and deadlock waiting for
  984. * auditctl to read from it... which isn't ever going to
  985. * happen if we're actually running in the context of auditctl
  986. * trying to _send_ the stuff */
  987. dest = kmalloc(sizeof(struct audit_netlink_list), GFP_KERNEL);
  988. if (!dest)
  989. return -ENOMEM;
  990. dest->net = get_net(net);
  991. dest->portid = portid;
  992. skb_queue_head_init(&dest->q);
  993. mutex_lock(&audit_filter_mutex);
  994. audit_list_rules(portid, seq, &dest->q);
  995. mutex_unlock(&audit_filter_mutex);
  996. tsk = kthread_run(audit_send_list, dest, "audit_send_list");
  997. if (IS_ERR(tsk)) {
  998. skb_queue_purge(&dest->q);
  999. kfree(dest);
  1000. err = PTR_ERR(tsk);
  1001. }
  1002. return err;
  1003. }
  1004. int audit_comparator(u32 left, u32 op, u32 right)
  1005. {
  1006. switch (op) {
  1007. case Audit_equal:
  1008. return (left == right);
  1009. case Audit_not_equal:
  1010. return (left != right);
  1011. case Audit_lt:
  1012. return (left < right);
  1013. case Audit_le:
  1014. return (left <= right);
  1015. case Audit_gt:
  1016. return (left > right);
  1017. case Audit_ge:
  1018. return (left >= right);
  1019. case Audit_bitmask:
  1020. return (left & right);
  1021. case Audit_bittest:
  1022. return ((left & right) == right);
  1023. default:
  1024. BUG();
  1025. return 0;
  1026. }
  1027. }
  1028. int audit_uid_comparator(kuid_t left, u32 op, kuid_t right)
  1029. {
  1030. switch (op) {
  1031. case Audit_equal:
  1032. return uid_eq(left, right);
  1033. case Audit_not_equal:
  1034. return !uid_eq(left, right);
  1035. case Audit_lt:
  1036. return uid_lt(left, right);
  1037. case Audit_le:
  1038. return uid_lte(left, right);
  1039. case Audit_gt:
  1040. return uid_gt(left, right);
  1041. case Audit_ge:
  1042. return uid_gte(left, right);
  1043. case Audit_bitmask:
  1044. case Audit_bittest:
  1045. default:
  1046. BUG();
  1047. return 0;
  1048. }
  1049. }
  1050. int audit_gid_comparator(kgid_t left, u32 op, kgid_t right)
  1051. {
  1052. switch (op) {
  1053. case Audit_equal:
  1054. return gid_eq(left, right);
  1055. case Audit_not_equal:
  1056. return !gid_eq(left, right);
  1057. case Audit_lt:
  1058. return gid_lt(left, right);
  1059. case Audit_le:
  1060. return gid_lte(left, right);
  1061. case Audit_gt:
  1062. return gid_gt(left, right);
  1063. case Audit_ge:
  1064. return gid_gte(left, right);
  1065. case Audit_bitmask:
  1066. case Audit_bittest:
  1067. default:
  1068. BUG();
  1069. return 0;
  1070. }
  1071. }
  1072. /**
  1073. * parent_len - find the length of the parent portion of a pathname
  1074. * @path: pathname of which to determine length
  1075. */
  1076. int parent_len(const char *path)
  1077. {
  1078. int plen;
  1079. const char *p;
  1080. plen = strlen(path);
  1081. if (plen == 0)
  1082. return plen;
  1083. /* disregard trailing slashes */
  1084. p = path + plen - 1;
  1085. while ((*p == '/') && (p > path))
  1086. p--;
  1087. /* walk backward until we find the next slash or hit beginning */
  1088. while ((*p != '/') && (p > path))
  1089. p--;
  1090. /* did we find a slash? Then increment to include it in path */
  1091. if (*p == '/')
  1092. p++;
  1093. return p - path;
  1094. }
  1095. /**
  1096. * audit_compare_dname_path - compare given dentry name with last component in
  1097. * given path. Return of 0 indicates a match.
  1098. * @dname: dentry name that we're comparing
  1099. * @path: full pathname that we're comparing
  1100. * @parentlen: length of the parent if known. Passing in AUDIT_NAME_FULL
  1101. * here indicates that we must compute this value.
  1102. */
  1103. int audit_compare_dname_path(const char *dname, const char *path, int parentlen)
  1104. {
  1105. int dlen, pathlen;
  1106. const char *p;
  1107. dlen = strlen(dname);
  1108. pathlen = strlen(path);
  1109. if (pathlen < dlen)
  1110. return 1;
  1111. parentlen = parentlen == AUDIT_NAME_FULL ? parent_len(path) : parentlen;
  1112. if (pathlen - parentlen != dlen)
  1113. return 1;
  1114. p = path + parentlen;
  1115. return strncmp(p, dname, dlen);
  1116. }
  1117. static int audit_filter_user_rules(struct audit_krule *rule, int type,
  1118. enum audit_state *state)
  1119. {
  1120. int i;
  1121. for (i = 0; i < rule->field_count; i++) {
  1122. struct audit_field *f = &rule->fields[i];
  1123. pid_t pid;
  1124. int result = 0;
  1125. u32 sid;
  1126. switch (f->type) {
  1127. case AUDIT_PID:
  1128. pid = task_pid_nr(current);
  1129. result = audit_comparator(pid, f->op, f->val);
  1130. break;
  1131. case AUDIT_UID:
  1132. result = audit_uid_comparator(current_uid(), f->op, f->uid);
  1133. break;
  1134. case AUDIT_GID:
  1135. result = audit_gid_comparator(current_gid(), f->op, f->gid);
  1136. break;
  1137. case AUDIT_LOGINUID:
  1138. result = audit_uid_comparator(audit_get_loginuid(current),
  1139. f->op, f->uid);
  1140. break;
  1141. case AUDIT_LOGINUID_SET:
  1142. result = audit_comparator(audit_loginuid_set(current),
  1143. f->op, f->val);
  1144. break;
  1145. case AUDIT_MSGTYPE:
  1146. result = audit_comparator(type, f->op, f->val);
  1147. break;
  1148. case AUDIT_SUBJ_USER:
  1149. case AUDIT_SUBJ_ROLE:
  1150. case AUDIT_SUBJ_TYPE:
  1151. case AUDIT_SUBJ_SEN:
  1152. case AUDIT_SUBJ_CLR:
  1153. if (f->lsm_rule) {
  1154. security_task_getsecid(current, &sid);
  1155. result = security_audit_rule_match(sid,
  1156. f->type,
  1157. f->op,
  1158. f->lsm_rule,
  1159. NULL);
  1160. }
  1161. break;
  1162. }
  1163. if (!result)
  1164. return 0;
  1165. }
  1166. switch (rule->action) {
  1167. case AUDIT_NEVER: *state = AUDIT_DISABLED; break;
  1168. case AUDIT_ALWAYS: *state = AUDIT_RECORD_CONTEXT; break;
  1169. }
  1170. return 1;
  1171. }
  1172. int audit_filter_user(int type)
  1173. {
  1174. enum audit_state state = AUDIT_DISABLED;
  1175. struct audit_entry *e;
  1176. int rc, ret;
  1177. ret = 1; /* Audit by default */
  1178. rcu_read_lock();
  1179. list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_USER], list) {
  1180. rc = audit_filter_user_rules(&e->rule, type, &state);
  1181. if (rc) {
  1182. if (rc > 0 && state == AUDIT_DISABLED)
  1183. ret = 0;
  1184. break;
  1185. }
  1186. }
  1187. rcu_read_unlock();
  1188. return ret;
  1189. }
  1190. int audit_filter_type(int type)
  1191. {
  1192. struct audit_entry *e;
  1193. int result = 0;
  1194. rcu_read_lock();
  1195. if (list_empty(&audit_filter_list[AUDIT_FILTER_TYPE]))
  1196. goto unlock_and_return;
  1197. list_for_each_entry_rcu(e, &audit_filter_list[AUDIT_FILTER_TYPE],
  1198. list) {
  1199. int i;
  1200. for (i = 0; i < e->rule.field_count; i++) {
  1201. struct audit_field *f = &e->rule.fields[i];
  1202. if (f->type == AUDIT_MSGTYPE) {
  1203. result = audit_comparator(type, f->op, f->val);
  1204. if (!result)
  1205. break;
  1206. }
  1207. }
  1208. if (result)
  1209. goto unlock_and_return;
  1210. }
  1211. unlock_and_return:
  1212. rcu_read_unlock();
  1213. return result;
  1214. }
  1215. static int update_lsm_rule(struct audit_krule *r)
  1216. {
  1217. struct audit_entry *entry = container_of(r, struct audit_entry, rule);
  1218. struct audit_entry *nentry;
  1219. int err = 0;
  1220. if (!security_audit_rule_known(r))
  1221. return 0;
  1222. nentry = audit_dupe_rule(r);
  1223. if (IS_ERR(nentry)) {
  1224. /* save the first error encountered for the
  1225. * return value */
  1226. err = PTR_ERR(nentry);
  1227. audit_panic("error updating LSM filters");
  1228. if (r->watch)
  1229. list_del(&r->rlist);
  1230. list_del_rcu(&entry->list);
  1231. list_del(&r->list);
  1232. } else {
  1233. if (r->watch || r->tree)
  1234. list_replace_init(&r->rlist, &nentry->rule.rlist);
  1235. list_replace_rcu(&entry->list, &nentry->list);
  1236. list_replace(&r->list, &nentry->rule.list);
  1237. }
  1238. call_rcu(&entry->rcu, audit_free_rule_rcu);
  1239. return err;
  1240. }
  1241. /* This function will re-initialize the lsm_rule field of all applicable rules.
  1242. * It will traverse the filter lists serarching for rules that contain LSM
  1243. * specific filter fields. When such a rule is found, it is copied, the
  1244. * LSM field is re-initialized, and the old rule is replaced with the
  1245. * updated rule. */
  1246. int audit_update_lsm_rules(void)
  1247. {
  1248. struct audit_krule *r, *n;
  1249. int i, err = 0;
  1250. /* audit_filter_mutex synchronizes the writers */
  1251. mutex_lock(&audit_filter_mutex);
  1252. for (i = 0; i < AUDIT_NR_FILTERS; i++) {
  1253. list_for_each_entry_safe(r, n, &audit_rules_list[i], list) {
  1254. int res = update_lsm_rule(r);
  1255. if (!err)
  1256. err = res;
  1257. }
  1258. }
  1259. mutex_unlock(&audit_filter_mutex);
  1260. return err;
  1261. }