audit.c 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076
  1. /* audit.c -- Auditing support
  2. * Gateway between the kernel (e.g., selinux) and the user-space audit daemon.
  3. * System-call specific features have moved to auditsc.c
  4. *
  5. * Copyright 2003-2007 Red Hat Inc., Durham, North Carolina.
  6. * All Rights Reserved.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. * Written by Rickard E. (Rik) Faith <faith@redhat.com>
  23. *
  24. * Goals: 1) Integrate fully with Security Modules.
  25. * 2) Minimal run-time overhead:
  26. * a) Minimal when syscall auditing is disabled (audit_enable=0).
  27. * b) Small when syscall auditing is enabled and no audit record
  28. * is generated (defer as much work as possible to record
  29. * generation time):
  30. * i) context is allocated,
  31. * ii) names from getname are stored without a copy, and
  32. * iii) inode information stored from path_lookup.
  33. * 3) Ability to disable syscall auditing at boot time (audit=0).
  34. * 4) Usable by other parts of the kernel (if audit_log* is called,
  35. * then a syscall record will be generated automatically for the
  36. * current syscall).
  37. * 5) Netlink interface to user-space.
  38. * 6) Support low-overhead kernel-based filtering to minimize the
  39. * information that must be passed to user-space.
  40. *
  41. * Example user-space utilities: http://people.redhat.com/sgrubb/audit/
  42. */
  43. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  44. #include <linux/file.h>
  45. #include <linux/init.h>
  46. #include <linux/types.h>
  47. #include <linux/atomic.h>
  48. #include <linux/mm.h>
  49. #include <linux/export.h>
  50. #include <linux/slab.h>
  51. #include <linux/err.h>
  52. #include <linux/kthread.h>
  53. #include <linux/kernel.h>
  54. #include <linux/syscalls.h>
  55. #include <linux/audit.h>
  56. #include <net/sock.h>
  57. #include <net/netlink.h>
  58. #include <linux/skbuff.h>
  59. #ifdef CONFIG_SECURITY
  60. #include <linux/security.h>
  61. #endif
  62. #include <linux/freezer.h>
  63. #include <linux/pid_namespace.h>
  64. #include <net/netns/generic.h>
  65. #include "audit.h"
  66. /* No auditing will take place until audit_initialized == AUDIT_INITIALIZED.
  67. * (Initialization happens after skb_init is called.) */
  68. #define AUDIT_DISABLED -1
  69. #define AUDIT_UNINITIALIZED 0
  70. #define AUDIT_INITIALIZED 1
  71. static int audit_initialized;
  72. #define AUDIT_OFF 0
  73. #define AUDIT_ON 1
  74. #define AUDIT_LOCKED 2
  75. u32 audit_enabled;
  76. u32 audit_ever_enabled;
  77. EXPORT_SYMBOL_GPL(audit_enabled);
  78. /* Default state when kernel boots without any parameters. */
  79. static u32 audit_default;
  80. /* If auditing cannot proceed, audit_failure selects what happens. */
  81. static u32 audit_failure = AUDIT_FAIL_PRINTK;
  82. /*
  83. * If audit records are to be written to the netlink socket, audit_pid
  84. * contains the pid of the auditd process and audit_nlk_portid contains
  85. * the portid to use to send netlink messages to that process.
  86. */
  87. int audit_pid;
  88. static __u32 audit_nlk_portid;
  89. /* If audit_rate_limit is non-zero, limit the rate of sending audit records
  90. * to that number per second. This prevents DoS attacks, but results in
  91. * audit records being dropped. */
  92. static u32 audit_rate_limit;
  93. /* Number of outstanding audit_buffers allowed.
  94. * When set to zero, this means unlimited. */
  95. static u32 audit_backlog_limit = 64;
  96. #define AUDIT_BACKLOG_WAIT_TIME (60 * HZ)
  97. static u32 audit_backlog_wait_time_master = AUDIT_BACKLOG_WAIT_TIME;
  98. static u32 audit_backlog_wait_time = AUDIT_BACKLOG_WAIT_TIME;
  99. /* The identity of the user shutting down the audit system. */
  100. kuid_t audit_sig_uid = INVALID_UID;
  101. pid_t audit_sig_pid = -1;
  102. u32 audit_sig_sid = 0;
  103. /* Records can be lost in several ways:
  104. 0) [suppressed in audit_alloc]
  105. 1) out of memory in audit_log_start [kmalloc of struct audit_buffer]
  106. 2) out of memory in audit_log_move [alloc_skb]
  107. 3) suppressed due to audit_rate_limit
  108. 4) suppressed due to audit_backlog_limit
  109. */
  110. static atomic_t audit_lost = ATOMIC_INIT(0);
  111. /* The netlink socket. */
  112. static struct sock *audit_sock;
  113. static unsigned int audit_net_id;
  114. /* Hash for inode-based rules */
  115. struct list_head audit_inode_hash[AUDIT_INODE_BUCKETS];
  116. /* The audit_freelist is a list of pre-allocated audit buffers (if more
  117. * than AUDIT_MAXFREE are in use, the audit buffer is freed instead of
  118. * being placed on the freelist). */
  119. static DEFINE_SPINLOCK(audit_freelist_lock);
  120. static int audit_freelist_count;
  121. static LIST_HEAD(audit_freelist);
  122. static struct sk_buff_head audit_skb_queue;
  123. /* queue of skbs to send to auditd when/if it comes back */
  124. static struct sk_buff_head audit_skb_hold_queue;
  125. static struct task_struct *kauditd_task;
  126. static DECLARE_WAIT_QUEUE_HEAD(kauditd_wait);
  127. static DECLARE_WAIT_QUEUE_HEAD(audit_backlog_wait);
  128. static struct audit_features af = {.vers = AUDIT_FEATURE_VERSION,
  129. .mask = -1,
  130. .features = 0,
  131. .lock = 0,};
  132. static char *audit_feature_names[2] = {
  133. "only_unset_loginuid",
  134. "loginuid_immutable",
  135. };
  136. /* Serialize requests from userspace. */
  137. DEFINE_MUTEX(audit_cmd_mutex);
  138. /* AUDIT_BUFSIZ is the size of the temporary buffer used for formatting
  139. * audit records. Since printk uses a 1024 byte buffer, this buffer
  140. * should be at least that large. */
  141. #define AUDIT_BUFSIZ 1024
  142. /* AUDIT_MAXFREE is the number of empty audit_buffers we keep on the
  143. * audit_freelist. Doing so eliminates many kmalloc/kfree calls. */
  144. #define AUDIT_MAXFREE (2*NR_CPUS)
  145. /* The audit_buffer is used when formatting an audit record. The caller
  146. * locks briefly to get the record off the freelist or to allocate the
  147. * buffer, and locks briefly to send the buffer to the netlink layer or
  148. * to place it on a transmit queue. Multiple audit_buffers can be in
  149. * use simultaneously. */
  150. struct audit_buffer {
  151. struct list_head list;
  152. struct sk_buff *skb; /* formatted skb ready to send */
  153. struct audit_context *ctx; /* NULL or associated context */
  154. gfp_t gfp_mask;
  155. };
  156. struct audit_reply {
  157. __u32 portid;
  158. struct net *net;
  159. struct sk_buff *skb;
  160. };
  161. static void audit_set_portid(struct audit_buffer *ab, __u32 portid)
  162. {
  163. if (ab) {
  164. struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
  165. nlh->nlmsg_pid = portid;
  166. }
  167. }
  168. void audit_panic(const char *message)
  169. {
  170. switch (audit_failure) {
  171. case AUDIT_FAIL_SILENT:
  172. break;
  173. case AUDIT_FAIL_PRINTK:
  174. if (printk_ratelimit())
  175. pr_err("%s\n", message);
  176. break;
  177. case AUDIT_FAIL_PANIC:
  178. /* test audit_pid since printk is always losey, why bother? */
  179. if (audit_pid)
  180. panic("audit: %s\n", message);
  181. break;
  182. }
  183. }
  184. static inline int audit_rate_check(void)
  185. {
  186. static unsigned long last_check = 0;
  187. static int messages = 0;
  188. static DEFINE_SPINLOCK(lock);
  189. unsigned long flags;
  190. unsigned long now;
  191. unsigned long elapsed;
  192. int retval = 0;
  193. if (!audit_rate_limit) return 1;
  194. spin_lock_irqsave(&lock, flags);
  195. if (++messages < audit_rate_limit) {
  196. retval = 1;
  197. } else {
  198. now = jiffies;
  199. elapsed = now - last_check;
  200. if (elapsed > HZ) {
  201. last_check = now;
  202. messages = 0;
  203. retval = 1;
  204. }
  205. }
  206. spin_unlock_irqrestore(&lock, flags);
  207. return retval;
  208. }
  209. /**
  210. * audit_log_lost - conditionally log lost audit message event
  211. * @message: the message stating reason for lost audit message
  212. *
  213. * Emit at least 1 message per second, even if audit_rate_check is
  214. * throttling.
  215. * Always increment the lost messages counter.
  216. */
  217. void audit_log_lost(const char *message)
  218. {
  219. static unsigned long last_msg = 0;
  220. static DEFINE_SPINLOCK(lock);
  221. unsigned long flags;
  222. unsigned long now;
  223. int print;
  224. atomic_inc(&audit_lost);
  225. print = (audit_failure == AUDIT_FAIL_PANIC || !audit_rate_limit);
  226. if (!print) {
  227. spin_lock_irqsave(&lock, flags);
  228. now = jiffies;
  229. if (now - last_msg > HZ) {
  230. print = 1;
  231. last_msg = now;
  232. }
  233. spin_unlock_irqrestore(&lock, flags);
  234. }
  235. if (print) {
  236. if (printk_ratelimit())
  237. pr_warn("audit_lost=%u audit_rate_limit=%u audit_backlog_limit=%u\n",
  238. atomic_read(&audit_lost),
  239. audit_rate_limit,
  240. audit_backlog_limit);
  241. audit_panic(message);
  242. }
  243. }
  244. static int audit_log_config_change(char *function_name, u32 new, u32 old,
  245. int allow_changes)
  246. {
  247. struct audit_buffer *ab;
  248. int rc = 0;
  249. ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_CONFIG_CHANGE);
  250. if (unlikely(!ab))
  251. return rc;
  252. audit_log_format(ab, "%s=%u old=%u", function_name, new, old);
  253. audit_log_session_info(ab);
  254. rc = audit_log_task_context(ab);
  255. if (rc)
  256. allow_changes = 0; /* Something weird, deny request */
  257. audit_log_format(ab, " res=%d", allow_changes);
  258. audit_log_end(ab);
  259. return rc;
  260. }
  261. static int audit_do_config_change(char *function_name, u32 *to_change, u32 new)
  262. {
  263. int allow_changes, rc = 0;
  264. u32 old = *to_change;
  265. /* check if we are locked */
  266. if (audit_enabled == AUDIT_LOCKED)
  267. allow_changes = 0;
  268. else
  269. allow_changes = 1;
  270. if (audit_enabled != AUDIT_OFF) {
  271. rc = audit_log_config_change(function_name, new, old, allow_changes);
  272. if (rc)
  273. allow_changes = 0;
  274. }
  275. /* If we are allowed, make the change */
  276. if (allow_changes == 1)
  277. *to_change = new;
  278. /* Not allowed, update reason */
  279. else if (rc == 0)
  280. rc = -EPERM;
  281. return rc;
  282. }
  283. static int audit_set_rate_limit(u32 limit)
  284. {
  285. return audit_do_config_change("audit_rate_limit", &audit_rate_limit, limit);
  286. }
  287. static int audit_set_backlog_limit(u32 limit)
  288. {
  289. return audit_do_config_change("audit_backlog_limit", &audit_backlog_limit, limit);
  290. }
  291. static int audit_set_backlog_wait_time(u32 timeout)
  292. {
  293. return audit_do_config_change("audit_backlog_wait_time",
  294. &audit_backlog_wait_time_master, timeout);
  295. }
  296. static int audit_set_enabled(u32 state)
  297. {
  298. int rc;
  299. if (state > AUDIT_LOCKED)
  300. return -EINVAL;
  301. rc = audit_do_config_change("audit_enabled", &audit_enabled, state);
  302. if (!rc)
  303. audit_ever_enabled |= !!state;
  304. return rc;
  305. }
  306. static int audit_set_failure(u32 state)
  307. {
  308. if (state != AUDIT_FAIL_SILENT
  309. && state != AUDIT_FAIL_PRINTK
  310. && state != AUDIT_FAIL_PANIC)
  311. return -EINVAL;
  312. return audit_do_config_change("audit_failure", &audit_failure, state);
  313. }
  314. /*
  315. * Queue skbs to be sent to auditd when/if it comes back. These skbs should
  316. * already have been sent via prink/syslog and so if these messages are dropped
  317. * it is not a huge concern since we already passed the audit_log_lost()
  318. * notification and stuff. This is just nice to get audit messages during
  319. * boot before auditd is running or messages generated while auditd is stopped.
  320. * This only holds messages is audit_default is set, aka booting with audit=1
  321. * or building your kernel that way.
  322. */
  323. static void audit_hold_skb(struct sk_buff *skb)
  324. {
  325. if (audit_default &&
  326. (!audit_backlog_limit ||
  327. skb_queue_len(&audit_skb_hold_queue) < audit_backlog_limit))
  328. skb_queue_tail(&audit_skb_hold_queue, skb);
  329. else
  330. kfree_skb(skb);
  331. }
  332. /*
  333. * For one reason or another this nlh isn't getting delivered to the userspace
  334. * audit daemon, just send it to printk.
  335. */
  336. static void audit_printk_skb(struct sk_buff *skb)
  337. {
  338. struct nlmsghdr *nlh = nlmsg_hdr(skb);
  339. char *data = nlmsg_data(nlh);
  340. if (nlh->nlmsg_type != AUDIT_EOE) {
  341. if (printk_ratelimit())
  342. pr_notice("type=%d %s\n", nlh->nlmsg_type, data);
  343. else
  344. audit_log_lost("printk limit exceeded");
  345. }
  346. audit_hold_skb(skb);
  347. }
  348. static void kauditd_send_skb(struct sk_buff *skb)
  349. {
  350. int err;
  351. int attempts = 0;
  352. #define AUDITD_RETRIES 5
  353. restart:
  354. /* take a reference in case we can't send it and we want to hold it */
  355. skb_get(skb);
  356. err = netlink_unicast(audit_sock, skb, audit_nlk_portid, 0);
  357. if (err < 0) {
  358. pr_err("netlink_unicast sending to audit_pid=%d returned error: %d\n",
  359. audit_pid, err);
  360. if (audit_pid) {
  361. if (err == -ECONNREFUSED || err == -EPERM
  362. || ++attempts >= AUDITD_RETRIES) {
  363. char s[32];
  364. snprintf(s, sizeof(s), "audit_pid=%d reset", audit_pid);
  365. audit_log_lost(s);
  366. audit_pid = 0;
  367. audit_sock = NULL;
  368. } else {
  369. pr_warn("re-scheduling(#%d) write to audit_pid=%d\n",
  370. attempts, audit_pid);
  371. set_current_state(TASK_INTERRUPTIBLE);
  372. schedule();
  373. goto restart;
  374. }
  375. }
  376. /* we might get lucky and get this in the next auditd */
  377. audit_hold_skb(skb);
  378. } else
  379. /* drop the extra reference if sent ok */
  380. consume_skb(skb);
  381. }
  382. /*
  383. * kauditd_send_multicast_skb - send the skb to multicast userspace listeners
  384. *
  385. * This function doesn't consume an skb as might be expected since it has to
  386. * copy it anyways.
  387. */
  388. static void kauditd_send_multicast_skb(struct sk_buff *skb, gfp_t gfp_mask)
  389. {
  390. struct sk_buff *copy;
  391. struct audit_net *aunet = net_generic(&init_net, audit_net_id);
  392. struct sock *sock = aunet->nlsk;
  393. if (!netlink_has_listeners(sock, AUDIT_NLGRP_READLOG))
  394. return;
  395. /*
  396. * The seemingly wasteful skb_copy() rather than bumping the refcount
  397. * using skb_get() is necessary because non-standard mods are made to
  398. * the skb by the original kaudit unicast socket send routine. The
  399. * existing auditd daemon assumes this breakage. Fixing this would
  400. * require co-ordinating a change in the established protocol between
  401. * the kaudit kernel subsystem and the auditd userspace code. There is
  402. * no reason for new multicast clients to continue with this
  403. * non-compliance.
  404. */
  405. copy = skb_copy(skb, gfp_mask);
  406. if (!copy)
  407. return;
  408. nlmsg_multicast(sock, copy, 0, AUDIT_NLGRP_READLOG, gfp_mask);
  409. }
  410. /*
  411. * flush_hold_queue - empty the hold queue if auditd appears
  412. *
  413. * If auditd just started, drain the queue of messages already
  414. * sent to syslog/printk. Remember loss here is ok. We already
  415. * called audit_log_lost() if it didn't go out normally. so the
  416. * race between the skb_dequeue and the next check for audit_pid
  417. * doesn't matter.
  418. *
  419. * If you ever find kauditd to be too slow we can get a perf win
  420. * by doing our own locking and keeping better track if there
  421. * are messages in this queue. I don't see the need now, but
  422. * in 5 years when I want to play with this again I'll see this
  423. * note and still have no friggin idea what i'm thinking today.
  424. */
  425. static void flush_hold_queue(void)
  426. {
  427. struct sk_buff *skb;
  428. if (!audit_default || !audit_pid)
  429. return;
  430. skb = skb_dequeue(&audit_skb_hold_queue);
  431. if (likely(!skb))
  432. return;
  433. while (skb && audit_pid) {
  434. kauditd_send_skb(skb);
  435. skb = skb_dequeue(&audit_skb_hold_queue);
  436. }
  437. /*
  438. * if auditd just disappeared but we
  439. * dequeued an skb we need to drop ref
  440. */
  441. consume_skb(skb);
  442. }
  443. static int kauditd_thread(void *dummy)
  444. {
  445. set_freezable();
  446. while (!kthread_should_stop()) {
  447. struct sk_buff *skb;
  448. flush_hold_queue();
  449. skb = skb_dequeue(&audit_skb_queue);
  450. if (skb) {
  451. if (!audit_backlog_limit ||
  452. (skb_queue_len(&audit_skb_queue) <= audit_backlog_limit))
  453. wake_up(&audit_backlog_wait);
  454. if (audit_pid)
  455. kauditd_send_skb(skb);
  456. else
  457. audit_printk_skb(skb);
  458. continue;
  459. }
  460. wait_event_freezable(kauditd_wait, skb_queue_len(&audit_skb_queue));
  461. }
  462. return 0;
  463. }
  464. int audit_send_list(void *_dest)
  465. {
  466. struct audit_netlink_list *dest = _dest;
  467. struct sk_buff *skb;
  468. struct net *net = dest->net;
  469. struct audit_net *aunet = net_generic(net, audit_net_id);
  470. /* wait for parent to finish and send an ACK */
  471. mutex_lock(&audit_cmd_mutex);
  472. mutex_unlock(&audit_cmd_mutex);
  473. while ((skb = __skb_dequeue(&dest->q)) != NULL)
  474. netlink_unicast(aunet->nlsk, skb, dest->portid, 0);
  475. put_net(net);
  476. kfree(dest);
  477. return 0;
  478. }
  479. struct sk_buff *audit_make_reply(__u32 portid, int seq, int type, int done,
  480. int multi, const void *payload, int size)
  481. {
  482. struct sk_buff *skb;
  483. struct nlmsghdr *nlh;
  484. void *data;
  485. int flags = multi ? NLM_F_MULTI : 0;
  486. int t = done ? NLMSG_DONE : type;
  487. skb = nlmsg_new(size, GFP_KERNEL);
  488. if (!skb)
  489. return NULL;
  490. nlh = nlmsg_put(skb, portid, seq, t, size, flags);
  491. if (!nlh)
  492. goto out_kfree_skb;
  493. data = nlmsg_data(nlh);
  494. memcpy(data, payload, size);
  495. return skb;
  496. out_kfree_skb:
  497. kfree_skb(skb);
  498. return NULL;
  499. }
  500. static int audit_send_reply_thread(void *arg)
  501. {
  502. struct audit_reply *reply = (struct audit_reply *)arg;
  503. struct net *net = reply->net;
  504. struct audit_net *aunet = net_generic(net, audit_net_id);
  505. mutex_lock(&audit_cmd_mutex);
  506. mutex_unlock(&audit_cmd_mutex);
  507. /* Ignore failure. It'll only happen if the sender goes away,
  508. because our timeout is set to infinite. */
  509. netlink_unicast(aunet->nlsk , reply->skb, reply->portid, 0);
  510. put_net(net);
  511. kfree(reply);
  512. return 0;
  513. }
  514. /**
  515. * audit_send_reply - send an audit reply message via netlink
  516. * @request_skb: skb of request we are replying to (used to target the reply)
  517. * @seq: sequence number
  518. * @type: audit message type
  519. * @done: done (last) flag
  520. * @multi: multi-part message flag
  521. * @payload: payload data
  522. * @size: payload size
  523. *
  524. * Allocates an skb, builds the netlink message, and sends it to the port id.
  525. * No failure notifications.
  526. */
  527. static void audit_send_reply(struct sk_buff *request_skb, int seq, int type, int done,
  528. int multi, const void *payload, int size)
  529. {
  530. u32 portid = NETLINK_CB(request_skb).portid;
  531. struct net *net = sock_net(NETLINK_CB(request_skb).sk);
  532. struct sk_buff *skb;
  533. struct task_struct *tsk;
  534. struct audit_reply *reply = kmalloc(sizeof(struct audit_reply),
  535. GFP_KERNEL);
  536. if (!reply)
  537. return;
  538. skb = audit_make_reply(portid, seq, type, done, multi, payload, size);
  539. if (!skb)
  540. goto out;
  541. reply->net = get_net(net);
  542. reply->portid = portid;
  543. reply->skb = skb;
  544. tsk = kthread_run(audit_send_reply_thread, reply, "audit_send_reply");
  545. if (!IS_ERR(tsk))
  546. return;
  547. kfree_skb(skb);
  548. out:
  549. kfree(reply);
  550. }
  551. /*
  552. * Check for appropriate CAP_AUDIT_ capabilities on incoming audit
  553. * control messages.
  554. */
  555. static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
  556. {
  557. int err = 0;
  558. /* Only support initial user namespace for now. */
  559. /*
  560. * We return ECONNREFUSED because it tricks userspace into thinking
  561. * that audit was not configured into the kernel. Lots of users
  562. * configure their PAM stack (because that's what the distro does)
  563. * to reject login if unable to send messages to audit. If we return
  564. * ECONNREFUSED the PAM stack thinks the kernel does not have audit
  565. * configured in and will let login proceed. If we return EPERM
  566. * userspace will reject all logins. This should be removed when we
  567. * support non init namespaces!!
  568. */
  569. if (current_user_ns() != &init_user_ns)
  570. return -ECONNREFUSED;
  571. switch (msg_type) {
  572. case AUDIT_LIST:
  573. case AUDIT_ADD:
  574. case AUDIT_DEL:
  575. return -EOPNOTSUPP;
  576. case AUDIT_GET:
  577. case AUDIT_SET:
  578. case AUDIT_GET_FEATURE:
  579. case AUDIT_SET_FEATURE:
  580. case AUDIT_LIST_RULES:
  581. case AUDIT_ADD_RULE:
  582. case AUDIT_DEL_RULE:
  583. case AUDIT_SIGNAL_INFO:
  584. case AUDIT_TTY_GET:
  585. case AUDIT_TTY_SET:
  586. case AUDIT_TRIM:
  587. case AUDIT_MAKE_EQUIV:
  588. /* Only support auditd and auditctl in initial pid namespace
  589. * for now. */
  590. if (task_active_pid_ns(current) != &init_pid_ns)
  591. return -EPERM;
  592. if (!netlink_capable(skb, CAP_AUDIT_CONTROL))
  593. err = -EPERM;
  594. break;
  595. case AUDIT_USER:
  596. case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
  597. case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
  598. if (!netlink_capable(skb, CAP_AUDIT_WRITE))
  599. err = -EPERM;
  600. break;
  601. default: /* bad msg */
  602. err = -EINVAL;
  603. }
  604. return err;
  605. }
  606. static void audit_log_common_recv_msg(struct audit_buffer **ab, u16 msg_type)
  607. {
  608. uid_t uid = from_kuid(&init_user_ns, current_uid());
  609. pid_t pid = task_tgid_nr(current);
  610. if (!audit_enabled && msg_type != AUDIT_USER_AVC) {
  611. *ab = NULL;
  612. return;
  613. }
  614. *ab = audit_log_start(NULL, GFP_KERNEL, msg_type);
  615. if (unlikely(!*ab))
  616. return;
  617. audit_log_format(*ab, "pid=%d uid=%u", pid, uid);
  618. audit_log_session_info(*ab);
  619. audit_log_task_context(*ab);
  620. }
  621. int is_audit_feature_set(int i)
  622. {
  623. return af.features & AUDIT_FEATURE_TO_MASK(i);
  624. }
  625. static int audit_get_feature(struct sk_buff *skb)
  626. {
  627. u32 seq;
  628. seq = nlmsg_hdr(skb)->nlmsg_seq;
  629. audit_send_reply(skb, seq, AUDIT_GET_FEATURE, 0, 0, &af, sizeof(af));
  630. return 0;
  631. }
  632. static void audit_log_feature_change(int which, u32 old_feature, u32 new_feature,
  633. u32 old_lock, u32 new_lock, int res)
  634. {
  635. struct audit_buffer *ab;
  636. if (audit_enabled == AUDIT_OFF)
  637. return;
  638. ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_FEATURE_CHANGE);
  639. audit_log_task_info(ab, current);
  640. audit_log_format(ab, " feature=%s old=%u new=%u old_lock=%u new_lock=%u res=%d",
  641. audit_feature_names[which], !!old_feature, !!new_feature,
  642. !!old_lock, !!new_lock, res);
  643. audit_log_end(ab);
  644. }
  645. static int audit_set_feature(struct sk_buff *skb)
  646. {
  647. struct audit_features *uaf;
  648. int i;
  649. BUILD_BUG_ON(AUDIT_LAST_FEATURE + 1 > ARRAY_SIZE(audit_feature_names));
  650. uaf = nlmsg_data(nlmsg_hdr(skb));
  651. /* if there is ever a version 2 we should handle that here */
  652. for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
  653. u32 feature = AUDIT_FEATURE_TO_MASK(i);
  654. u32 old_feature, new_feature, old_lock, new_lock;
  655. /* if we are not changing this feature, move along */
  656. if (!(feature & uaf->mask))
  657. continue;
  658. old_feature = af.features & feature;
  659. new_feature = uaf->features & feature;
  660. new_lock = (uaf->lock | af.lock) & feature;
  661. old_lock = af.lock & feature;
  662. /* are we changing a locked feature? */
  663. if (old_lock && (new_feature != old_feature)) {
  664. audit_log_feature_change(i, old_feature, new_feature,
  665. old_lock, new_lock, 0);
  666. return -EPERM;
  667. }
  668. }
  669. /* nothing invalid, do the changes */
  670. for (i = 0; i <= AUDIT_LAST_FEATURE; i++) {
  671. u32 feature = AUDIT_FEATURE_TO_MASK(i);
  672. u32 old_feature, new_feature, old_lock, new_lock;
  673. /* if we are not changing this feature, move along */
  674. if (!(feature & uaf->mask))
  675. continue;
  676. old_feature = af.features & feature;
  677. new_feature = uaf->features & feature;
  678. old_lock = af.lock & feature;
  679. new_lock = (uaf->lock | af.lock) & feature;
  680. if (new_feature != old_feature)
  681. audit_log_feature_change(i, old_feature, new_feature,
  682. old_lock, new_lock, 1);
  683. if (new_feature)
  684. af.features |= feature;
  685. else
  686. af.features &= ~feature;
  687. af.lock |= new_lock;
  688. }
  689. return 0;
  690. }
  691. static int audit_replace(pid_t pid)
  692. {
  693. struct sk_buff *skb = audit_make_reply(0, 0, AUDIT_REPLACE, 0, 0,
  694. &pid, sizeof(pid));
  695. if (!skb)
  696. return -ENOMEM;
  697. return netlink_unicast(audit_sock, skb, audit_nlk_portid, 0);
  698. }
  699. static int audit_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
  700. {
  701. u32 seq;
  702. void *data;
  703. int err;
  704. struct audit_buffer *ab;
  705. u16 msg_type = nlh->nlmsg_type;
  706. struct audit_sig_info *sig_data;
  707. char *ctx = NULL;
  708. u32 len;
  709. err = audit_netlink_ok(skb, msg_type);
  710. if (err)
  711. return err;
  712. /* As soon as there's any sign of userspace auditd,
  713. * start kauditd to talk to it */
  714. if (!kauditd_task) {
  715. kauditd_task = kthread_run(kauditd_thread, NULL, "kauditd");
  716. if (IS_ERR(kauditd_task)) {
  717. err = PTR_ERR(kauditd_task);
  718. kauditd_task = NULL;
  719. return err;
  720. }
  721. }
  722. seq = nlh->nlmsg_seq;
  723. data = nlmsg_data(nlh);
  724. switch (msg_type) {
  725. case AUDIT_GET: {
  726. struct audit_status s;
  727. memset(&s, 0, sizeof(s));
  728. s.enabled = audit_enabled;
  729. s.failure = audit_failure;
  730. s.pid = audit_pid;
  731. s.rate_limit = audit_rate_limit;
  732. s.backlog_limit = audit_backlog_limit;
  733. s.lost = atomic_read(&audit_lost);
  734. s.backlog = skb_queue_len(&audit_skb_queue);
  735. s.feature_bitmap = AUDIT_FEATURE_BITMAP_ALL;
  736. s.backlog_wait_time = audit_backlog_wait_time_master;
  737. audit_send_reply(skb, seq, AUDIT_GET, 0, 0, &s, sizeof(s));
  738. break;
  739. }
  740. case AUDIT_SET: {
  741. struct audit_status s;
  742. memset(&s, 0, sizeof(s));
  743. /* guard against past and future API changes */
  744. memcpy(&s, data, min_t(size_t, sizeof(s), nlmsg_len(nlh)));
  745. if (s.mask & AUDIT_STATUS_ENABLED) {
  746. err = audit_set_enabled(s.enabled);
  747. if (err < 0)
  748. return err;
  749. }
  750. if (s.mask & AUDIT_STATUS_FAILURE) {
  751. err = audit_set_failure(s.failure);
  752. if (err < 0)
  753. return err;
  754. }
  755. if (s.mask & AUDIT_STATUS_PID) {
  756. /* NOTE: we are using task_tgid_vnr() below because
  757. * the s.pid value is relative to the namespace
  758. * of the caller; at present this doesn't matter
  759. * much since you can really only run auditd
  760. * from the initial pid namespace, but something
  761. * to keep in mind if this changes */
  762. int new_pid = s.pid;
  763. pid_t requesting_pid = task_tgid_vnr(current);
  764. if ((!new_pid) && (requesting_pid != audit_pid)) {
  765. audit_log_config_change("audit_pid", new_pid, audit_pid, 0);
  766. return -EACCES;
  767. }
  768. if (audit_pid && new_pid &&
  769. audit_replace(requesting_pid) != -ECONNREFUSED) {
  770. audit_log_config_change("audit_pid", new_pid, audit_pid, 0);
  771. return -EEXIST;
  772. }
  773. if (audit_enabled != AUDIT_OFF)
  774. audit_log_config_change("audit_pid", new_pid, audit_pid, 1);
  775. audit_pid = new_pid;
  776. audit_nlk_portid = NETLINK_CB(skb).portid;
  777. audit_sock = skb->sk;
  778. }
  779. if (s.mask & AUDIT_STATUS_RATE_LIMIT) {
  780. err = audit_set_rate_limit(s.rate_limit);
  781. if (err < 0)
  782. return err;
  783. }
  784. if (s.mask & AUDIT_STATUS_BACKLOG_LIMIT) {
  785. err = audit_set_backlog_limit(s.backlog_limit);
  786. if (err < 0)
  787. return err;
  788. }
  789. if (s.mask & AUDIT_STATUS_BACKLOG_WAIT_TIME) {
  790. if (sizeof(s) > (size_t)nlh->nlmsg_len)
  791. return -EINVAL;
  792. if (s.backlog_wait_time > 10*AUDIT_BACKLOG_WAIT_TIME)
  793. return -EINVAL;
  794. err = audit_set_backlog_wait_time(s.backlog_wait_time);
  795. if (err < 0)
  796. return err;
  797. }
  798. break;
  799. }
  800. case AUDIT_GET_FEATURE:
  801. err = audit_get_feature(skb);
  802. if (err)
  803. return err;
  804. break;
  805. case AUDIT_SET_FEATURE:
  806. err = audit_set_feature(skb);
  807. if (err)
  808. return err;
  809. break;
  810. case AUDIT_USER:
  811. case AUDIT_FIRST_USER_MSG ... AUDIT_LAST_USER_MSG:
  812. case AUDIT_FIRST_USER_MSG2 ... AUDIT_LAST_USER_MSG2:
  813. if (!audit_enabled && msg_type != AUDIT_USER_AVC)
  814. return 0;
  815. err = audit_filter(msg_type, AUDIT_FILTER_USER);
  816. if (err == 1) { /* match or error */
  817. err = 0;
  818. if (msg_type == AUDIT_USER_TTY) {
  819. err = tty_audit_push();
  820. if (err)
  821. break;
  822. }
  823. mutex_unlock(&audit_cmd_mutex);
  824. audit_log_common_recv_msg(&ab, msg_type);
  825. if (msg_type != AUDIT_USER_TTY)
  826. audit_log_format(ab, " msg='%.*s'",
  827. AUDIT_MESSAGE_TEXT_MAX,
  828. (char *)data);
  829. else {
  830. int size;
  831. audit_log_format(ab, " data=");
  832. size = nlmsg_len(nlh);
  833. if (size > 0 &&
  834. ((unsigned char *)data)[size - 1] == '\0')
  835. size--;
  836. audit_log_n_untrustedstring(ab, data, size);
  837. }
  838. audit_set_portid(ab, NETLINK_CB(skb).portid);
  839. audit_log_end(ab);
  840. mutex_lock(&audit_cmd_mutex);
  841. }
  842. break;
  843. case AUDIT_ADD_RULE:
  844. case AUDIT_DEL_RULE:
  845. if (nlmsg_len(nlh) < sizeof(struct audit_rule_data))
  846. return -EINVAL;
  847. if (audit_enabled == AUDIT_LOCKED) {
  848. audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
  849. audit_log_format(ab, " audit_enabled=%d res=0", audit_enabled);
  850. audit_log_end(ab);
  851. return -EPERM;
  852. }
  853. err = audit_rule_change(msg_type, NETLINK_CB(skb).portid,
  854. seq, data, nlmsg_len(nlh));
  855. break;
  856. case AUDIT_LIST_RULES:
  857. err = audit_list_rules_send(skb, seq);
  858. break;
  859. case AUDIT_TRIM:
  860. audit_trim_trees();
  861. audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
  862. audit_log_format(ab, " op=trim res=1");
  863. audit_log_end(ab);
  864. break;
  865. case AUDIT_MAKE_EQUIV: {
  866. void *bufp = data;
  867. u32 sizes[2];
  868. size_t msglen = nlmsg_len(nlh);
  869. char *old, *new;
  870. err = -EINVAL;
  871. if (msglen < 2 * sizeof(u32))
  872. break;
  873. memcpy(sizes, bufp, 2 * sizeof(u32));
  874. bufp += 2 * sizeof(u32);
  875. msglen -= 2 * sizeof(u32);
  876. old = audit_unpack_string(&bufp, &msglen, sizes[0]);
  877. if (IS_ERR(old)) {
  878. err = PTR_ERR(old);
  879. break;
  880. }
  881. new = audit_unpack_string(&bufp, &msglen, sizes[1]);
  882. if (IS_ERR(new)) {
  883. err = PTR_ERR(new);
  884. kfree(old);
  885. break;
  886. }
  887. /* OK, here comes... */
  888. err = audit_tag_tree(old, new);
  889. audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
  890. audit_log_format(ab, " op=make_equiv old=");
  891. audit_log_untrustedstring(ab, old);
  892. audit_log_format(ab, " new=");
  893. audit_log_untrustedstring(ab, new);
  894. audit_log_format(ab, " res=%d", !err);
  895. audit_log_end(ab);
  896. kfree(old);
  897. kfree(new);
  898. break;
  899. }
  900. case AUDIT_SIGNAL_INFO:
  901. len = 0;
  902. if (audit_sig_sid) {
  903. err = security_secid_to_secctx(audit_sig_sid, &ctx, &len);
  904. if (err)
  905. return err;
  906. }
  907. sig_data = kmalloc(sizeof(*sig_data) + len, GFP_KERNEL);
  908. if (!sig_data) {
  909. if (audit_sig_sid)
  910. security_release_secctx(ctx, len);
  911. return -ENOMEM;
  912. }
  913. sig_data->uid = from_kuid(&init_user_ns, audit_sig_uid);
  914. sig_data->pid = audit_sig_pid;
  915. if (audit_sig_sid) {
  916. memcpy(sig_data->ctx, ctx, len);
  917. security_release_secctx(ctx, len);
  918. }
  919. audit_send_reply(skb, seq, AUDIT_SIGNAL_INFO, 0, 0,
  920. sig_data, sizeof(*sig_data) + len);
  921. kfree(sig_data);
  922. break;
  923. case AUDIT_TTY_GET: {
  924. struct audit_tty_status s;
  925. unsigned int t;
  926. t = READ_ONCE(current->signal->audit_tty);
  927. s.enabled = t & AUDIT_TTY_ENABLE;
  928. s.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
  929. audit_send_reply(skb, seq, AUDIT_TTY_GET, 0, 0, &s, sizeof(s));
  930. break;
  931. }
  932. case AUDIT_TTY_SET: {
  933. struct audit_tty_status s, old;
  934. struct audit_buffer *ab;
  935. unsigned int t;
  936. memset(&s, 0, sizeof(s));
  937. /* guard against past and future API changes */
  938. memcpy(&s, data, min_t(size_t, sizeof(s), nlmsg_len(nlh)));
  939. /* check if new data is valid */
  940. if ((s.enabled != 0 && s.enabled != 1) ||
  941. (s.log_passwd != 0 && s.log_passwd != 1))
  942. err = -EINVAL;
  943. if (err)
  944. t = READ_ONCE(current->signal->audit_tty);
  945. else {
  946. t = s.enabled | (-s.log_passwd & AUDIT_TTY_LOG_PASSWD);
  947. t = xchg(&current->signal->audit_tty, t);
  948. }
  949. old.enabled = t & AUDIT_TTY_ENABLE;
  950. old.log_passwd = !!(t & AUDIT_TTY_LOG_PASSWD);
  951. audit_log_common_recv_msg(&ab, AUDIT_CONFIG_CHANGE);
  952. audit_log_format(ab, " op=tty_set old-enabled=%d new-enabled=%d"
  953. " old-log_passwd=%d new-log_passwd=%d res=%d",
  954. old.enabled, s.enabled, old.log_passwd,
  955. s.log_passwd, !err);
  956. audit_log_end(ab);
  957. break;
  958. }
  959. default:
  960. err = -EINVAL;
  961. break;
  962. }
  963. return err < 0 ? err : 0;
  964. }
  965. /*
  966. * Get message from skb. Each message is processed by audit_receive_msg.
  967. * Malformed skbs with wrong length are discarded silently.
  968. */
  969. static void audit_receive_skb(struct sk_buff *skb)
  970. {
  971. struct nlmsghdr *nlh;
  972. /*
  973. * len MUST be signed for nlmsg_next to be able to dec it below 0
  974. * if the nlmsg_len was not aligned
  975. */
  976. int len;
  977. int err;
  978. nlh = nlmsg_hdr(skb);
  979. len = skb->len;
  980. while (nlmsg_ok(nlh, len)) {
  981. err = audit_receive_msg(skb, nlh);
  982. /* if err or if this message says it wants a response */
  983. if (err || (nlh->nlmsg_flags & NLM_F_ACK))
  984. netlink_ack(skb, nlh, err);
  985. nlh = nlmsg_next(nlh, &len);
  986. }
  987. }
  988. /* Receive messages from netlink socket. */
  989. static void audit_receive(struct sk_buff *skb)
  990. {
  991. mutex_lock(&audit_cmd_mutex);
  992. audit_receive_skb(skb);
  993. mutex_unlock(&audit_cmd_mutex);
  994. }
  995. /* Run custom bind function on netlink socket group connect or bind requests. */
  996. static int audit_bind(struct net *net, int group)
  997. {
  998. if (!capable(CAP_AUDIT_READ))
  999. return -EPERM;
  1000. return 0;
  1001. }
  1002. static int __net_init audit_net_init(struct net *net)
  1003. {
  1004. struct netlink_kernel_cfg cfg = {
  1005. .input = audit_receive,
  1006. .bind = audit_bind,
  1007. .flags = NL_CFG_F_NONROOT_RECV,
  1008. .groups = AUDIT_NLGRP_MAX,
  1009. };
  1010. struct audit_net *aunet = net_generic(net, audit_net_id);
  1011. aunet->nlsk = netlink_kernel_create(net, NETLINK_AUDIT, &cfg);
  1012. if (aunet->nlsk == NULL) {
  1013. audit_panic("cannot initialize netlink socket in namespace");
  1014. return -ENOMEM;
  1015. }
  1016. aunet->nlsk->sk_sndtimeo = MAX_SCHEDULE_TIMEOUT;
  1017. return 0;
  1018. }
  1019. static void __net_exit audit_net_exit(struct net *net)
  1020. {
  1021. struct audit_net *aunet = net_generic(net, audit_net_id);
  1022. struct sock *sock = aunet->nlsk;
  1023. if (sock == audit_sock) {
  1024. audit_pid = 0;
  1025. audit_sock = NULL;
  1026. }
  1027. netlink_kernel_release(sock);
  1028. aunet->nlsk = NULL;
  1029. }
  1030. static struct pernet_operations audit_net_ops __net_initdata = {
  1031. .init = audit_net_init,
  1032. .exit = audit_net_exit,
  1033. .id = &audit_net_id,
  1034. .size = sizeof(struct audit_net),
  1035. };
  1036. /* Initialize audit support at boot time. */
  1037. static int __init audit_init(void)
  1038. {
  1039. int i;
  1040. if (audit_initialized == AUDIT_DISABLED)
  1041. return 0;
  1042. pr_info("initializing netlink subsys (%s)\n",
  1043. audit_default ? "enabled" : "disabled");
  1044. register_pernet_subsys(&audit_net_ops);
  1045. skb_queue_head_init(&audit_skb_queue);
  1046. skb_queue_head_init(&audit_skb_hold_queue);
  1047. audit_initialized = AUDIT_INITIALIZED;
  1048. audit_enabled = audit_default;
  1049. audit_ever_enabled |= !!audit_default;
  1050. audit_log(NULL, GFP_KERNEL, AUDIT_KERNEL, "initialized");
  1051. for (i = 0; i < AUDIT_INODE_BUCKETS; i++)
  1052. INIT_LIST_HEAD(&audit_inode_hash[i]);
  1053. return 0;
  1054. }
  1055. __initcall(audit_init);
  1056. /* Process kernel command-line parameter at boot time. audit=0 or audit=1. */
  1057. static int __init audit_enable(char *str)
  1058. {
  1059. audit_default = !!simple_strtol(str, NULL, 0);
  1060. if (!audit_default)
  1061. audit_initialized = AUDIT_DISABLED;
  1062. pr_info("%s\n", audit_default ?
  1063. "enabled (after initialization)" : "disabled (until reboot)");
  1064. return 1;
  1065. }
  1066. __setup("audit=", audit_enable);
  1067. /* Process kernel command-line parameter at boot time.
  1068. * audit_backlog_limit=<n> */
  1069. static int __init audit_backlog_limit_set(char *str)
  1070. {
  1071. u32 audit_backlog_limit_arg;
  1072. pr_info("audit_backlog_limit: ");
  1073. if (kstrtouint(str, 0, &audit_backlog_limit_arg)) {
  1074. pr_cont("using default of %u, unable to parse %s\n",
  1075. audit_backlog_limit, str);
  1076. return 1;
  1077. }
  1078. audit_backlog_limit = audit_backlog_limit_arg;
  1079. pr_cont("%d\n", audit_backlog_limit);
  1080. return 1;
  1081. }
  1082. __setup("audit_backlog_limit=", audit_backlog_limit_set);
  1083. static void audit_buffer_free(struct audit_buffer *ab)
  1084. {
  1085. unsigned long flags;
  1086. if (!ab)
  1087. return;
  1088. kfree_skb(ab->skb);
  1089. spin_lock_irqsave(&audit_freelist_lock, flags);
  1090. if (audit_freelist_count > AUDIT_MAXFREE)
  1091. kfree(ab);
  1092. else {
  1093. audit_freelist_count++;
  1094. list_add(&ab->list, &audit_freelist);
  1095. }
  1096. spin_unlock_irqrestore(&audit_freelist_lock, flags);
  1097. }
  1098. static struct audit_buffer * audit_buffer_alloc(struct audit_context *ctx,
  1099. gfp_t gfp_mask, int type)
  1100. {
  1101. unsigned long flags;
  1102. struct audit_buffer *ab = NULL;
  1103. struct nlmsghdr *nlh;
  1104. spin_lock_irqsave(&audit_freelist_lock, flags);
  1105. if (!list_empty(&audit_freelist)) {
  1106. ab = list_entry(audit_freelist.next,
  1107. struct audit_buffer, list);
  1108. list_del(&ab->list);
  1109. --audit_freelist_count;
  1110. }
  1111. spin_unlock_irqrestore(&audit_freelist_lock, flags);
  1112. if (!ab) {
  1113. ab = kmalloc(sizeof(*ab), gfp_mask);
  1114. if (!ab)
  1115. goto err;
  1116. }
  1117. ab->ctx = ctx;
  1118. ab->gfp_mask = gfp_mask;
  1119. ab->skb = nlmsg_new(AUDIT_BUFSIZ, gfp_mask);
  1120. if (!ab->skb)
  1121. goto err;
  1122. nlh = nlmsg_put(ab->skb, 0, 0, type, 0, 0);
  1123. if (!nlh)
  1124. goto out_kfree_skb;
  1125. return ab;
  1126. out_kfree_skb:
  1127. kfree_skb(ab->skb);
  1128. ab->skb = NULL;
  1129. err:
  1130. audit_buffer_free(ab);
  1131. return NULL;
  1132. }
  1133. /**
  1134. * audit_serial - compute a serial number for the audit record
  1135. *
  1136. * Compute a serial number for the audit record. Audit records are
  1137. * written to user-space as soon as they are generated, so a complete
  1138. * audit record may be written in several pieces. The timestamp of the
  1139. * record and this serial number are used by the user-space tools to
  1140. * determine which pieces belong to the same audit record. The
  1141. * (timestamp,serial) tuple is unique for each syscall and is live from
  1142. * syscall entry to syscall exit.
  1143. *
  1144. * NOTE: Another possibility is to store the formatted records off the
  1145. * audit context (for those records that have a context), and emit them
  1146. * all at syscall exit. However, this could delay the reporting of
  1147. * significant errors until syscall exit (or never, if the system
  1148. * halts).
  1149. */
  1150. unsigned int audit_serial(void)
  1151. {
  1152. static atomic_t serial = ATOMIC_INIT(0);
  1153. return atomic_add_return(1, &serial);
  1154. }
  1155. static inline void audit_get_stamp(struct audit_context *ctx,
  1156. struct timespec *t, unsigned int *serial)
  1157. {
  1158. if (!ctx || !auditsc_get_stamp(ctx, t, serial)) {
  1159. *t = CURRENT_TIME;
  1160. *serial = audit_serial();
  1161. }
  1162. }
  1163. /*
  1164. * Wait for auditd to drain the queue a little
  1165. */
  1166. static long wait_for_auditd(long sleep_time)
  1167. {
  1168. DECLARE_WAITQUEUE(wait, current);
  1169. if (audit_backlog_limit &&
  1170. skb_queue_len(&audit_skb_queue) > audit_backlog_limit) {
  1171. add_wait_queue_exclusive(&audit_backlog_wait, &wait);
  1172. set_current_state(TASK_UNINTERRUPTIBLE);
  1173. sleep_time = schedule_timeout(sleep_time);
  1174. remove_wait_queue(&audit_backlog_wait, &wait);
  1175. }
  1176. return sleep_time;
  1177. }
  1178. /**
  1179. * audit_log_start - obtain an audit buffer
  1180. * @ctx: audit_context (may be NULL)
  1181. * @gfp_mask: type of allocation
  1182. * @type: audit message type
  1183. *
  1184. * Returns audit_buffer pointer on success or NULL on error.
  1185. *
  1186. * Obtain an audit buffer. This routine does locking to obtain the
  1187. * audit buffer, but then no locking is required for calls to
  1188. * audit_log_*format. If the task (ctx) is a task that is currently in a
  1189. * syscall, then the syscall is marked as auditable and an audit record
  1190. * will be written at syscall exit. If there is no associated task, then
  1191. * task context (ctx) should be NULL.
  1192. */
  1193. struct audit_buffer *audit_log_start(struct audit_context *ctx, gfp_t gfp_mask,
  1194. int type)
  1195. {
  1196. struct audit_buffer *ab = NULL;
  1197. struct timespec t;
  1198. unsigned int uninitialized_var(serial);
  1199. int reserve = 5; /* Allow atomic callers to go up to five
  1200. entries over the normal backlog limit */
  1201. unsigned long timeout_start = jiffies;
  1202. if (audit_initialized != AUDIT_INITIALIZED)
  1203. return NULL;
  1204. if (unlikely(!audit_filter(type, AUDIT_FILTER_TYPE)))
  1205. return NULL;
  1206. if (gfp_mask & __GFP_DIRECT_RECLAIM) {
  1207. if (audit_pid && audit_pid == current->tgid)
  1208. gfp_mask &= ~__GFP_DIRECT_RECLAIM;
  1209. else
  1210. reserve = 0;
  1211. }
  1212. while (audit_backlog_limit
  1213. && skb_queue_len(&audit_skb_queue) > audit_backlog_limit + reserve) {
  1214. if (gfp_mask & __GFP_DIRECT_RECLAIM && audit_backlog_wait_time) {
  1215. long sleep_time;
  1216. sleep_time = timeout_start + audit_backlog_wait_time - jiffies;
  1217. if (sleep_time > 0) {
  1218. sleep_time = wait_for_auditd(sleep_time);
  1219. if (sleep_time > 0)
  1220. continue;
  1221. }
  1222. }
  1223. if (audit_rate_check() && printk_ratelimit())
  1224. pr_warn("audit_backlog=%d > audit_backlog_limit=%d\n",
  1225. skb_queue_len(&audit_skb_queue),
  1226. audit_backlog_limit);
  1227. audit_log_lost("backlog limit exceeded");
  1228. audit_backlog_wait_time = 0;
  1229. wake_up(&audit_backlog_wait);
  1230. return NULL;
  1231. }
  1232. if (!reserve && !audit_backlog_wait_time)
  1233. audit_backlog_wait_time = audit_backlog_wait_time_master;
  1234. ab = audit_buffer_alloc(ctx, gfp_mask, type);
  1235. if (!ab) {
  1236. audit_log_lost("out of memory in audit_log_start");
  1237. return NULL;
  1238. }
  1239. audit_get_stamp(ab->ctx, &t, &serial);
  1240. audit_log_format(ab, "audit(%lu.%03lu:%u): ",
  1241. t.tv_sec, t.tv_nsec/1000000, serial);
  1242. return ab;
  1243. }
  1244. /**
  1245. * audit_expand - expand skb in the audit buffer
  1246. * @ab: audit_buffer
  1247. * @extra: space to add at tail of the skb
  1248. *
  1249. * Returns 0 (no space) on failed expansion, or available space if
  1250. * successful.
  1251. */
  1252. static inline int audit_expand(struct audit_buffer *ab, int extra)
  1253. {
  1254. struct sk_buff *skb = ab->skb;
  1255. int oldtail = skb_tailroom(skb);
  1256. int ret = pskb_expand_head(skb, 0, extra, ab->gfp_mask);
  1257. int newtail = skb_tailroom(skb);
  1258. if (ret < 0) {
  1259. audit_log_lost("out of memory in audit_expand");
  1260. return 0;
  1261. }
  1262. skb->truesize += newtail - oldtail;
  1263. return newtail;
  1264. }
  1265. /*
  1266. * Format an audit message into the audit buffer. If there isn't enough
  1267. * room in the audit buffer, more room will be allocated and vsnprint
  1268. * will be called a second time. Currently, we assume that a printk
  1269. * can't format message larger than 1024 bytes, so we don't either.
  1270. */
  1271. static void audit_log_vformat(struct audit_buffer *ab, const char *fmt,
  1272. va_list args)
  1273. {
  1274. int len, avail;
  1275. struct sk_buff *skb;
  1276. va_list args2;
  1277. if (!ab)
  1278. return;
  1279. BUG_ON(!ab->skb);
  1280. skb = ab->skb;
  1281. avail = skb_tailroom(skb);
  1282. if (avail == 0) {
  1283. avail = audit_expand(ab, AUDIT_BUFSIZ);
  1284. if (!avail)
  1285. goto out;
  1286. }
  1287. va_copy(args2, args);
  1288. len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args);
  1289. if (len >= avail) {
  1290. /* The printk buffer is 1024 bytes long, so if we get
  1291. * here and AUDIT_BUFSIZ is at least 1024, then we can
  1292. * log everything that printk could have logged. */
  1293. avail = audit_expand(ab,
  1294. max_t(unsigned, AUDIT_BUFSIZ, 1+len-avail));
  1295. if (!avail)
  1296. goto out_va_end;
  1297. len = vsnprintf(skb_tail_pointer(skb), avail, fmt, args2);
  1298. }
  1299. if (len > 0)
  1300. skb_put(skb, len);
  1301. out_va_end:
  1302. va_end(args2);
  1303. out:
  1304. return;
  1305. }
  1306. /**
  1307. * audit_log_format - format a message into the audit buffer.
  1308. * @ab: audit_buffer
  1309. * @fmt: format string
  1310. * @...: optional parameters matching @fmt string
  1311. *
  1312. * All the work is done in audit_log_vformat.
  1313. */
  1314. void audit_log_format(struct audit_buffer *ab, const char *fmt, ...)
  1315. {
  1316. va_list args;
  1317. if (!ab)
  1318. return;
  1319. va_start(args, fmt);
  1320. audit_log_vformat(ab, fmt, args);
  1321. va_end(args);
  1322. }
  1323. /**
  1324. * audit_log_hex - convert a buffer to hex and append it to the audit skb
  1325. * @ab: the audit_buffer
  1326. * @buf: buffer to convert to hex
  1327. * @len: length of @buf to be converted
  1328. *
  1329. * No return value; failure to expand is silently ignored.
  1330. *
  1331. * This function will take the passed buf and convert it into a string of
  1332. * ascii hex digits. The new string is placed onto the skb.
  1333. */
  1334. void audit_log_n_hex(struct audit_buffer *ab, const unsigned char *buf,
  1335. size_t len)
  1336. {
  1337. int i, avail, new_len;
  1338. unsigned char *ptr;
  1339. struct sk_buff *skb;
  1340. if (!ab)
  1341. return;
  1342. BUG_ON(!ab->skb);
  1343. skb = ab->skb;
  1344. avail = skb_tailroom(skb);
  1345. new_len = len<<1;
  1346. if (new_len >= avail) {
  1347. /* Round the buffer request up to the next multiple */
  1348. new_len = AUDIT_BUFSIZ*(((new_len-avail)/AUDIT_BUFSIZ) + 1);
  1349. avail = audit_expand(ab, new_len);
  1350. if (!avail)
  1351. return;
  1352. }
  1353. ptr = skb_tail_pointer(skb);
  1354. for (i = 0; i < len; i++)
  1355. ptr = hex_byte_pack_upper(ptr, buf[i]);
  1356. *ptr = 0;
  1357. skb_put(skb, len << 1); /* new string is twice the old string */
  1358. }
  1359. /*
  1360. * Format a string of no more than slen characters into the audit buffer,
  1361. * enclosed in quote marks.
  1362. */
  1363. void audit_log_n_string(struct audit_buffer *ab, const char *string,
  1364. size_t slen)
  1365. {
  1366. int avail, new_len;
  1367. unsigned char *ptr;
  1368. struct sk_buff *skb;
  1369. if (!ab)
  1370. return;
  1371. BUG_ON(!ab->skb);
  1372. skb = ab->skb;
  1373. avail = skb_tailroom(skb);
  1374. new_len = slen + 3; /* enclosing quotes + null terminator */
  1375. if (new_len > avail) {
  1376. avail = audit_expand(ab, new_len);
  1377. if (!avail)
  1378. return;
  1379. }
  1380. ptr = skb_tail_pointer(skb);
  1381. *ptr++ = '"';
  1382. memcpy(ptr, string, slen);
  1383. ptr += slen;
  1384. *ptr++ = '"';
  1385. *ptr = 0;
  1386. skb_put(skb, slen + 2); /* don't include null terminator */
  1387. }
  1388. /**
  1389. * audit_string_contains_control - does a string need to be logged in hex
  1390. * @string: string to be checked
  1391. * @len: max length of the string to check
  1392. */
  1393. bool audit_string_contains_control(const char *string, size_t len)
  1394. {
  1395. const unsigned char *p;
  1396. for (p = string; p < (const unsigned char *)string + len; p++) {
  1397. if (*p == '"' || *p < 0x21 || *p > 0x7e)
  1398. return true;
  1399. }
  1400. return false;
  1401. }
  1402. /**
  1403. * audit_log_n_untrustedstring - log a string that may contain random characters
  1404. * @ab: audit_buffer
  1405. * @len: length of string (not including trailing null)
  1406. * @string: string to be logged
  1407. *
  1408. * This code will escape a string that is passed to it if the string
  1409. * contains a control character, unprintable character, double quote mark,
  1410. * or a space. Unescaped strings will start and end with a double quote mark.
  1411. * Strings that are escaped are printed in hex (2 digits per char).
  1412. *
  1413. * The caller specifies the number of characters in the string to log, which may
  1414. * or may not be the entire string.
  1415. */
  1416. void audit_log_n_untrustedstring(struct audit_buffer *ab, const char *string,
  1417. size_t len)
  1418. {
  1419. if (audit_string_contains_control(string, len))
  1420. audit_log_n_hex(ab, string, len);
  1421. else
  1422. audit_log_n_string(ab, string, len);
  1423. }
  1424. /**
  1425. * audit_log_untrustedstring - log a string that may contain random characters
  1426. * @ab: audit_buffer
  1427. * @string: string to be logged
  1428. *
  1429. * Same as audit_log_n_untrustedstring(), except that strlen is used to
  1430. * determine string length.
  1431. */
  1432. void audit_log_untrustedstring(struct audit_buffer *ab, const char *string)
  1433. {
  1434. audit_log_n_untrustedstring(ab, string, strlen(string));
  1435. }
  1436. /* This is a helper-function to print the escaped d_path */
  1437. void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
  1438. const struct path *path)
  1439. {
  1440. char *p, *pathname;
  1441. if (prefix)
  1442. audit_log_format(ab, "%s", prefix);
  1443. /* We will allow 11 spaces for ' (deleted)' to be appended */
  1444. pathname = kmalloc(PATH_MAX+11, ab->gfp_mask);
  1445. if (!pathname) {
  1446. audit_log_string(ab, "<no_memory>");
  1447. return;
  1448. }
  1449. p = d_path(path, pathname, PATH_MAX+11);
  1450. if (IS_ERR(p)) { /* Should never happen since we send PATH_MAX */
  1451. /* FIXME: can we save some information here? */
  1452. audit_log_string(ab, "<too_long>");
  1453. } else
  1454. audit_log_untrustedstring(ab, p);
  1455. kfree(pathname);
  1456. }
  1457. void audit_log_session_info(struct audit_buffer *ab)
  1458. {
  1459. unsigned int sessionid = audit_get_sessionid(current);
  1460. uid_t auid = from_kuid(&init_user_ns, audit_get_loginuid(current));
  1461. audit_log_format(ab, " auid=%u ses=%u", auid, sessionid);
  1462. }
  1463. void audit_log_key(struct audit_buffer *ab, char *key)
  1464. {
  1465. audit_log_format(ab, " key=");
  1466. if (key)
  1467. audit_log_untrustedstring(ab, key);
  1468. else
  1469. audit_log_format(ab, "(null)");
  1470. }
  1471. void audit_log_cap(struct audit_buffer *ab, char *prefix, kernel_cap_t *cap)
  1472. {
  1473. int i;
  1474. audit_log_format(ab, " %s=", prefix);
  1475. CAP_FOR_EACH_U32(i) {
  1476. audit_log_format(ab, "%08x",
  1477. cap->cap[CAP_LAST_U32 - i]);
  1478. }
  1479. }
  1480. static void audit_log_fcaps(struct audit_buffer *ab, struct audit_names *name)
  1481. {
  1482. kernel_cap_t *perm = &name->fcap.permitted;
  1483. kernel_cap_t *inh = &name->fcap.inheritable;
  1484. int log = 0;
  1485. if (!cap_isclear(*perm)) {
  1486. audit_log_cap(ab, "cap_fp", perm);
  1487. log = 1;
  1488. }
  1489. if (!cap_isclear(*inh)) {
  1490. audit_log_cap(ab, "cap_fi", inh);
  1491. log = 1;
  1492. }
  1493. if (log)
  1494. audit_log_format(ab, " cap_fe=%d cap_fver=%x",
  1495. name->fcap.fE, name->fcap_ver);
  1496. }
  1497. static inline int audit_copy_fcaps(struct audit_names *name,
  1498. const struct dentry *dentry)
  1499. {
  1500. struct cpu_vfs_cap_data caps;
  1501. int rc;
  1502. if (!dentry)
  1503. return 0;
  1504. rc = get_vfs_caps_from_disk(dentry, &caps);
  1505. if (rc)
  1506. return rc;
  1507. name->fcap.permitted = caps.permitted;
  1508. name->fcap.inheritable = caps.inheritable;
  1509. name->fcap.fE = !!(caps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
  1510. name->fcap_ver = (caps.magic_etc & VFS_CAP_REVISION_MASK) >>
  1511. VFS_CAP_REVISION_SHIFT;
  1512. return 0;
  1513. }
  1514. /* Copy inode data into an audit_names. */
  1515. void audit_copy_inode(struct audit_names *name, const struct dentry *dentry,
  1516. struct inode *inode)
  1517. {
  1518. name->ino = inode->i_ino;
  1519. name->dev = inode->i_sb->s_dev;
  1520. name->mode = inode->i_mode;
  1521. name->uid = inode->i_uid;
  1522. name->gid = inode->i_gid;
  1523. name->rdev = inode->i_rdev;
  1524. security_inode_getsecid(inode, &name->osid);
  1525. audit_copy_fcaps(name, dentry);
  1526. }
  1527. /**
  1528. * audit_log_name - produce AUDIT_PATH record from struct audit_names
  1529. * @context: audit_context for the task
  1530. * @n: audit_names structure with reportable details
  1531. * @path: optional path to report instead of audit_names->name
  1532. * @record_num: record number to report when handling a list of names
  1533. * @call_panic: optional pointer to int that will be updated if secid fails
  1534. */
  1535. void audit_log_name(struct audit_context *context, struct audit_names *n,
  1536. struct path *path, int record_num, int *call_panic)
  1537. {
  1538. struct audit_buffer *ab;
  1539. ab = audit_log_start(context, GFP_KERNEL, AUDIT_PATH);
  1540. if (!ab)
  1541. return;
  1542. audit_log_format(ab, "item=%d", record_num);
  1543. if (path)
  1544. audit_log_d_path(ab, " name=", path);
  1545. else if (n->name) {
  1546. switch (n->name_len) {
  1547. case AUDIT_NAME_FULL:
  1548. /* log the full path */
  1549. audit_log_format(ab, " name=");
  1550. audit_log_untrustedstring(ab, n->name->name);
  1551. break;
  1552. case 0:
  1553. /* name was specified as a relative path and the
  1554. * directory component is the cwd */
  1555. audit_log_d_path(ab, " name=", &context->pwd);
  1556. break;
  1557. default:
  1558. /* log the name's directory component */
  1559. audit_log_format(ab, " name=");
  1560. audit_log_n_untrustedstring(ab, n->name->name,
  1561. n->name_len);
  1562. }
  1563. } else
  1564. audit_log_format(ab, " name=(null)");
  1565. if (n->ino != AUDIT_INO_UNSET)
  1566. audit_log_format(ab, " inode=%lu"
  1567. " dev=%02x:%02x mode=%#ho"
  1568. " ouid=%u ogid=%u rdev=%02x:%02x",
  1569. n->ino,
  1570. MAJOR(n->dev),
  1571. MINOR(n->dev),
  1572. n->mode,
  1573. from_kuid(&init_user_ns, n->uid),
  1574. from_kgid(&init_user_ns, n->gid),
  1575. MAJOR(n->rdev),
  1576. MINOR(n->rdev));
  1577. if (n->osid != 0) {
  1578. char *ctx = NULL;
  1579. u32 len;
  1580. if (security_secid_to_secctx(
  1581. n->osid, &ctx, &len)) {
  1582. audit_log_format(ab, " osid=%u", n->osid);
  1583. if (call_panic)
  1584. *call_panic = 2;
  1585. } else {
  1586. audit_log_format(ab, " obj=%s", ctx);
  1587. security_release_secctx(ctx, len);
  1588. }
  1589. }
  1590. /* log the audit_names record type */
  1591. audit_log_format(ab, " nametype=");
  1592. switch(n->type) {
  1593. case AUDIT_TYPE_NORMAL:
  1594. audit_log_format(ab, "NORMAL");
  1595. break;
  1596. case AUDIT_TYPE_PARENT:
  1597. audit_log_format(ab, "PARENT");
  1598. break;
  1599. case AUDIT_TYPE_CHILD_DELETE:
  1600. audit_log_format(ab, "DELETE");
  1601. break;
  1602. case AUDIT_TYPE_CHILD_CREATE:
  1603. audit_log_format(ab, "CREATE");
  1604. break;
  1605. default:
  1606. audit_log_format(ab, "UNKNOWN");
  1607. break;
  1608. }
  1609. audit_log_fcaps(ab, n);
  1610. audit_log_end(ab);
  1611. }
  1612. int audit_log_task_context(struct audit_buffer *ab)
  1613. {
  1614. char *ctx = NULL;
  1615. unsigned len;
  1616. int error;
  1617. u32 sid;
  1618. security_task_getsecid(current, &sid);
  1619. if (!sid)
  1620. return 0;
  1621. error = security_secid_to_secctx(sid, &ctx, &len);
  1622. if (error) {
  1623. if (error != -EINVAL)
  1624. goto error_path;
  1625. return 0;
  1626. }
  1627. audit_log_format(ab, " subj=%s", ctx);
  1628. security_release_secctx(ctx, len);
  1629. return 0;
  1630. error_path:
  1631. audit_panic("error in audit_log_task_context");
  1632. return error;
  1633. }
  1634. EXPORT_SYMBOL(audit_log_task_context);
  1635. void audit_log_d_path_exe(struct audit_buffer *ab,
  1636. struct mm_struct *mm)
  1637. {
  1638. struct file *exe_file;
  1639. if (!mm)
  1640. goto out_null;
  1641. exe_file = get_mm_exe_file(mm);
  1642. if (!exe_file)
  1643. goto out_null;
  1644. audit_log_d_path(ab, " exe=", &exe_file->f_path);
  1645. fput(exe_file);
  1646. return;
  1647. out_null:
  1648. audit_log_format(ab, " exe=(null)");
  1649. }
  1650. struct tty_struct *audit_get_tty(struct task_struct *tsk)
  1651. {
  1652. struct tty_struct *tty = NULL;
  1653. unsigned long flags;
  1654. spin_lock_irqsave(&tsk->sighand->siglock, flags);
  1655. if (tsk->signal)
  1656. tty = tty_kref_get(tsk->signal->tty);
  1657. spin_unlock_irqrestore(&tsk->sighand->siglock, flags);
  1658. return tty;
  1659. }
  1660. void audit_put_tty(struct tty_struct *tty)
  1661. {
  1662. tty_kref_put(tty);
  1663. }
  1664. void audit_log_task_info(struct audit_buffer *ab, struct task_struct *tsk)
  1665. {
  1666. const struct cred *cred;
  1667. char comm[sizeof(tsk->comm)];
  1668. struct tty_struct *tty;
  1669. if (!ab)
  1670. return;
  1671. /* tsk == current */
  1672. cred = current_cred();
  1673. tty = audit_get_tty(tsk);
  1674. audit_log_format(ab,
  1675. " ppid=%d pid=%d auid=%u uid=%u gid=%u"
  1676. " euid=%u suid=%u fsuid=%u"
  1677. " egid=%u sgid=%u fsgid=%u tty=%s ses=%u",
  1678. task_ppid_nr(tsk),
  1679. task_tgid_nr(tsk),
  1680. from_kuid(&init_user_ns, audit_get_loginuid(tsk)),
  1681. from_kuid(&init_user_ns, cred->uid),
  1682. from_kgid(&init_user_ns, cred->gid),
  1683. from_kuid(&init_user_ns, cred->euid),
  1684. from_kuid(&init_user_ns, cred->suid),
  1685. from_kuid(&init_user_ns, cred->fsuid),
  1686. from_kgid(&init_user_ns, cred->egid),
  1687. from_kgid(&init_user_ns, cred->sgid),
  1688. from_kgid(&init_user_ns, cred->fsgid),
  1689. tty ? tty_name(tty) : "(none)",
  1690. audit_get_sessionid(tsk));
  1691. audit_put_tty(tty);
  1692. audit_log_format(ab, " comm=");
  1693. audit_log_untrustedstring(ab, get_task_comm(comm, tsk));
  1694. audit_log_d_path_exe(ab, tsk->mm);
  1695. audit_log_task_context(ab);
  1696. }
  1697. EXPORT_SYMBOL(audit_log_task_info);
  1698. /**
  1699. * audit_log_link_denied - report a link restriction denial
  1700. * @operation: specific link operation
  1701. * @link: the path that triggered the restriction
  1702. */
  1703. void audit_log_link_denied(const char *operation, struct path *link)
  1704. {
  1705. struct audit_buffer *ab;
  1706. struct audit_names *name;
  1707. name = kzalloc(sizeof(*name), GFP_NOFS);
  1708. if (!name)
  1709. return;
  1710. /* Generate AUDIT_ANOM_LINK with subject, operation, outcome. */
  1711. ab = audit_log_start(current->audit_context, GFP_KERNEL,
  1712. AUDIT_ANOM_LINK);
  1713. if (!ab)
  1714. goto out;
  1715. audit_log_format(ab, "op=%s", operation);
  1716. audit_log_task_info(ab, current);
  1717. audit_log_format(ab, " res=0");
  1718. audit_log_end(ab);
  1719. /* Generate AUDIT_PATH record with object. */
  1720. name->type = AUDIT_TYPE_NORMAL;
  1721. audit_copy_inode(name, link->dentry, d_backing_inode(link->dentry));
  1722. audit_log_name(current->audit_context, name, link, 0, NULL);
  1723. out:
  1724. kfree(name);
  1725. }
  1726. /**
  1727. * audit_log_end - end one audit record
  1728. * @ab: the audit_buffer
  1729. *
  1730. * netlink_unicast() cannot be called inside an irq context because it blocks
  1731. * (last arg, flags, is not set to MSG_DONTWAIT), so the audit buffer is placed
  1732. * on a queue and a tasklet is scheduled to remove them from the queue outside
  1733. * the irq context. May be called in any context.
  1734. */
  1735. void audit_log_end(struct audit_buffer *ab)
  1736. {
  1737. if (!ab)
  1738. return;
  1739. if (!audit_rate_check()) {
  1740. audit_log_lost("rate limit exceeded");
  1741. } else {
  1742. struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
  1743. nlh->nlmsg_len = ab->skb->len;
  1744. kauditd_send_multicast_skb(ab->skb, ab->gfp_mask);
  1745. /*
  1746. * The original kaudit unicast socket sends up messages with
  1747. * nlmsg_len set to the payload length rather than the entire
  1748. * message length. This breaks the standard set by netlink.
  1749. * The existing auditd daemon assumes this breakage. Fixing
  1750. * this would require co-ordinating a change in the established
  1751. * protocol between the kaudit kernel subsystem and the auditd
  1752. * userspace code.
  1753. */
  1754. nlh->nlmsg_len -= NLMSG_HDRLEN;
  1755. if (audit_pid) {
  1756. skb_queue_tail(&audit_skb_queue, ab->skb);
  1757. wake_up_interruptible(&kauditd_wait);
  1758. } else {
  1759. audit_printk_skb(ab->skb);
  1760. }
  1761. ab->skb = NULL;
  1762. }
  1763. audit_buffer_free(ab);
  1764. }
  1765. /**
  1766. * audit_log - Log an audit record
  1767. * @ctx: audit context
  1768. * @gfp_mask: type of allocation
  1769. * @type: audit message type
  1770. * @fmt: format string to use
  1771. * @...: variable parameters matching the format string
  1772. *
  1773. * This is a convenience function that calls audit_log_start,
  1774. * audit_log_vformat, and audit_log_end. It may be called
  1775. * in any context.
  1776. */
  1777. void audit_log(struct audit_context *ctx, gfp_t gfp_mask, int type,
  1778. const char *fmt, ...)
  1779. {
  1780. struct audit_buffer *ab;
  1781. va_list args;
  1782. ab = audit_log_start(ctx, gfp_mask, type);
  1783. if (ab) {
  1784. va_start(args, fmt);
  1785. audit_log_vformat(ab, fmt, args);
  1786. va_end(args);
  1787. audit_log_end(ab);
  1788. }
  1789. }
  1790. #ifdef CONFIG_SECURITY
  1791. /**
  1792. * audit_log_secctx - Converts and logs SELinux context
  1793. * @ab: audit_buffer
  1794. * @secid: security number
  1795. *
  1796. * This is a helper function that calls security_secid_to_secctx to convert
  1797. * secid to secctx and then adds the (converted) SELinux context to the audit
  1798. * log by calling audit_log_format, thus also preventing leak of internal secid
  1799. * to userspace. If secid cannot be converted audit_panic is called.
  1800. */
  1801. void audit_log_secctx(struct audit_buffer *ab, u32 secid)
  1802. {
  1803. u32 len;
  1804. char *secctx;
  1805. if (security_secid_to_secctx(secid, &secctx, &len)) {
  1806. audit_panic("Cannot convert secid to context");
  1807. } else {
  1808. audit_log_format(ab, " obj=%s", secctx);
  1809. security_release_secctx(secctx, len);
  1810. }
  1811. }
  1812. EXPORT_SYMBOL(audit_log_secctx);
  1813. #endif
  1814. EXPORT_SYMBOL(audit_log_start);
  1815. EXPORT_SYMBOL(audit_log_end);
  1816. EXPORT_SYMBOL(audit_log_format);
  1817. EXPORT_SYMBOL(audit_log);