lsm_audit.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. /*
  2. * common LSM auditing functions
  3. *
  4. * Based on code written for SELinux by :
  5. * Stephen Smalley, <sds@epoch.ncsc.mil>
  6. * James Morris <jmorris@redhat.com>
  7. * Author : Etienne Basset, <etienne.basset@ensta.org>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2,
  11. * as published by the Free Software Foundation.
  12. */
  13. #include <linux/types.h>
  14. #include <linux/stddef.h>
  15. #include <linux/kernel.h>
  16. #include <linux/gfp.h>
  17. #include <linux/fs.h>
  18. #include <linux/init.h>
  19. #include <net/sock.h>
  20. #include <linux/un.h>
  21. #include <net/af_unix.h>
  22. #include <linux/audit.h>
  23. #include <linux/ipv6.h>
  24. #include <linux/ip.h>
  25. #include <net/ip.h>
  26. #include <net/ipv6.h>
  27. #include <linux/tcp.h>
  28. #include <linux/udp.h>
  29. #include <linux/dccp.h>
  30. #include <linux/sctp.h>
  31. #include <linux/lsm_audit.h>
  32. /**
  33. * ipv4_skb_to_auditdata : fill auditdata from skb
  34. * @skb : the skb
  35. * @ad : the audit data to fill
  36. * @proto : the layer 4 protocol
  37. *
  38. * return 0 on success
  39. */
  40. int ipv4_skb_to_auditdata(struct sk_buff *skb,
  41. struct common_audit_data *ad, u8 *proto)
  42. {
  43. int ret = 0;
  44. struct iphdr *ih;
  45. ih = ip_hdr(skb);
  46. if (ih == NULL)
  47. return -EINVAL;
  48. ad->u.net->v4info.saddr = ih->saddr;
  49. ad->u.net->v4info.daddr = ih->daddr;
  50. if (proto)
  51. *proto = ih->protocol;
  52. /* non initial fragment */
  53. if (ntohs(ih->frag_off) & IP_OFFSET)
  54. return 0;
  55. switch (ih->protocol) {
  56. case IPPROTO_TCP: {
  57. struct tcphdr *th = tcp_hdr(skb);
  58. if (th == NULL)
  59. break;
  60. ad->u.net->sport = th->source;
  61. ad->u.net->dport = th->dest;
  62. break;
  63. }
  64. case IPPROTO_UDP: {
  65. struct udphdr *uh = udp_hdr(skb);
  66. if (uh == NULL)
  67. break;
  68. ad->u.net->sport = uh->source;
  69. ad->u.net->dport = uh->dest;
  70. break;
  71. }
  72. case IPPROTO_DCCP: {
  73. struct dccp_hdr *dh = dccp_hdr(skb);
  74. if (dh == NULL)
  75. break;
  76. ad->u.net->sport = dh->dccph_sport;
  77. ad->u.net->dport = dh->dccph_dport;
  78. break;
  79. }
  80. case IPPROTO_SCTP: {
  81. struct sctphdr *sh = sctp_hdr(skb);
  82. if (sh == NULL)
  83. break;
  84. ad->u.net->sport = sh->source;
  85. ad->u.net->dport = sh->dest;
  86. break;
  87. }
  88. default:
  89. ret = -EINVAL;
  90. }
  91. return ret;
  92. }
  93. #if IS_ENABLED(CONFIG_IPV6)
  94. /**
  95. * ipv6_skb_to_auditdata : fill auditdata from skb
  96. * @skb : the skb
  97. * @ad : the audit data to fill
  98. * @proto : the layer 4 protocol
  99. *
  100. * return 0 on success
  101. */
  102. int ipv6_skb_to_auditdata(struct sk_buff *skb,
  103. struct common_audit_data *ad, u8 *proto)
  104. {
  105. int offset, ret = 0;
  106. struct ipv6hdr *ip6;
  107. u8 nexthdr;
  108. __be16 frag_off;
  109. ip6 = ipv6_hdr(skb);
  110. if (ip6 == NULL)
  111. return -EINVAL;
  112. ad->u.net->v6info.saddr = ip6->saddr;
  113. ad->u.net->v6info.daddr = ip6->daddr;
  114. ret = 0;
  115. /* IPv6 can have several extension header before the Transport header
  116. * skip them */
  117. offset = skb_network_offset(skb);
  118. offset += sizeof(*ip6);
  119. nexthdr = ip6->nexthdr;
  120. offset = ipv6_skip_exthdr(skb, offset, &nexthdr, &frag_off);
  121. if (offset < 0)
  122. return 0;
  123. if (proto)
  124. *proto = nexthdr;
  125. switch (nexthdr) {
  126. case IPPROTO_TCP: {
  127. struct tcphdr _tcph, *th;
  128. th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
  129. if (th == NULL)
  130. break;
  131. ad->u.net->sport = th->source;
  132. ad->u.net->dport = th->dest;
  133. break;
  134. }
  135. case IPPROTO_UDP: {
  136. struct udphdr _udph, *uh;
  137. uh = skb_header_pointer(skb, offset, sizeof(_udph), &_udph);
  138. if (uh == NULL)
  139. break;
  140. ad->u.net->sport = uh->source;
  141. ad->u.net->dport = uh->dest;
  142. break;
  143. }
  144. case IPPROTO_DCCP: {
  145. struct dccp_hdr _dccph, *dh;
  146. dh = skb_header_pointer(skb, offset, sizeof(_dccph), &_dccph);
  147. if (dh == NULL)
  148. break;
  149. ad->u.net->sport = dh->dccph_sport;
  150. ad->u.net->dport = dh->dccph_dport;
  151. break;
  152. }
  153. case IPPROTO_SCTP: {
  154. struct sctphdr _sctph, *sh;
  155. sh = skb_header_pointer(skb, offset, sizeof(_sctph), &_sctph);
  156. if (sh == NULL)
  157. break;
  158. ad->u.net->sport = sh->source;
  159. ad->u.net->dport = sh->dest;
  160. break;
  161. }
  162. default:
  163. ret = -EINVAL;
  164. }
  165. return ret;
  166. }
  167. #endif
  168. static inline void print_ipv6_addr(struct audit_buffer *ab,
  169. struct in6_addr *addr, __be16 port,
  170. char *name1, char *name2)
  171. {
  172. if (!ipv6_addr_any(addr))
  173. audit_log_format(ab, " %s=%pI6c", name1, addr);
  174. if (port)
  175. audit_log_format(ab, " %s=%d", name2, ntohs(port));
  176. }
  177. static inline void print_ipv4_addr(struct audit_buffer *ab, __be32 addr,
  178. __be16 port, char *name1, char *name2)
  179. {
  180. if (addr)
  181. audit_log_format(ab, " %s=%pI4", name1, &addr);
  182. if (port)
  183. audit_log_format(ab, " %s=%d", name2, ntohs(port));
  184. }
  185. /**
  186. * dump_common_audit_data - helper to dump common audit data
  187. * @a : common audit data
  188. *
  189. */
  190. static void dump_common_audit_data(struct audit_buffer *ab,
  191. struct common_audit_data *a)
  192. {
  193. char comm[sizeof(current->comm)];
  194. /*
  195. * To keep stack sizes in check force programers to notice if they
  196. * start making this union too large! See struct lsm_network_audit
  197. * as an example of how to deal with large data.
  198. */
  199. BUILD_BUG_ON(sizeof(a->u) > sizeof(void *)*2);
  200. audit_log_format(ab, " pid=%d comm=", task_tgid_nr(current));
  201. audit_log_untrustedstring(ab, memcpy(comm, current->comm, sizeof(comm)));
  202. switch (a->type) {
  203. case LSM_AUDIT_DATA_NONE:
  204. return;
  205. case LSM_AUDIT_DATA_IPC:
  206. audit_log_format(ab, " key=%d ", a->u.ipc_id);
  207. break;
  208. case LSM_AUDIT_DATA_CAP:
  209. audit_log_format(ab, " capability=%d ", a->u.cap);
  210. break;
  211. case LSM_AUDIT_DATA_PATH: {
  212. struct inode *inode;
  213. audit_log_d_path(ab, " path=", &a->u.path);
  214. inode = d_backing_inode(a->u.path.dentry);
  215. if (inode) {
  216. audit_log_format(ab, " dev=");
  217. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  218. audit_log_format(ab, " ino=%lu", inode->i_ino);
  219. }
  220. break;
  221. }
  222. case LSM_AUDIT_DATA_FILE: {
  223. struct inode *inode;
  224. audit_log_d_path(ab, " path=", &a->u.file->f_path);
  225. inode = file_inode(a->u.file);
  226. if (inode) {
  227. audit_log_format(ab, " dev=");
  228. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  229. audit_log_format(ab, " ino=%lu", inode->i_ino);
  230. }
  231. break;
  232. }
  233. case LSM_AUDIT_DATA_IOCTL_OP: {
  234. struct inode *inode;
  235. audit_log_d_path(ab, " path=", &a->u.op->path);
  236. inode = a->u.op->path.dentry->d_inode;
  237. if (inode) {
  238. audit_log_format(ab, " dev=");
  239. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  240. audit_log_format(ab, " ino=%lu", inode->i_ino);
  241. }
  242. audit_log_format(ab, " ioctlcmd=0x%hx", a->u.op->cmd);
  243. break;
  244. }
  245. case LSM_AUDIT_DATA_DENTRY: {
  246. struct inode *inode;
  247. audit_log_format(ab, " name=");
  248. audit_log_untrustedstring(ab, a->u.dentry->d_name.name);
  249. inode = d_backing_inode(a->u.dentry);
  250. if (inode) {
  251. audit_log_format(ab, " dev=");
  252. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  253. audit_log_format(ab, " ino=%lu", inode->i_ino);
  254. }
  255. break;
  256. }
  257. case LSM_AUDIT_DATA_INODE: {
  258. struct dentry *dentry;
  259. struct inode *inode;
  260. inode = a->u.inode;
  261. dentry = d_find_alias(inode);
  262. if (dentry) {
  263. audit_log_format(ab, " name=");
  264. audit_log_untrustedstring(ab,
  265. dentry->d_name.name);
  266. dput(dentry);
  267. }
  268. audit_log_format(ab, " dev=");
  269. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  270. audit_log_format(ab, " ino=%lu", inode->i_ino);
  271. break;
  272. }
  273. case LSM_AUDIT_DATA_TASK: {
  274. struct task_struct *tsk = a->u.tsk;
  275. if (tsk) {
  276. pid_t pid = task_tgid_nr(tsk);
  277. if (pid) {
  278. char comm[sizeof(tsk->comm)];
  279. audit_log_format(ab, " opid=%d ocomm=", pid);
  280. audit_log_untrustedstring(ab,
  281. memcpy(comm, tsk->comm, sizeof(comm)));
  282. }
  283. }
  284. break;
  285. }
  286. case LSM_AUDIT_DATA_NET:
  287. if (a->u.net->sk) {
  288. struct sock *sk = a->u.net->sk;
  289. struct unix_sock *u;
  290. int len = 0;
  291. char *p = NULL;
  292. switch (sk->sk_family) {
  293. case AF_INET: {
  294. struct inet_sock *inet = inet_sk(sk);
  295. print_ipv4_addr(ab, inet->inet_rcv_saddr,
  296. inet->inet_sport,
  297. "laddr", "lport");
  298. print_ipv4_addr(ab, inet->inet_daddr,
  299. inet->inet_dport,
  300. "faddr", "fport");
  301. break;
  302. }
  303. #if IS_ENABLED(CONFIG_IPV6)
  304. case AF_INET6: {
  305. struct inet_sock *inet = inet_sk(sk);
  306. print_ipv6_addr(ab, &sk->sk_v6_rcv_saddr,
  307. inet->inet_sport,
  308. "laddr", "lport");
  309. print_ipv6_addr(ab, &sk->sk_v6_daddr,
  310. inet->inet_dport,
  311. "faddr", "fport");
  312. break;
  313. }
  314. #endif
  315. case AF_UNIX:
  316. u = unix_sk(sk);
  317. if (u->path.dentry) {
  318. audit_log_d_path(ab, " path=", &u->path);
  319. break;
  320. }
  321. if (!u->addr)
  322. break;
  323. len = u->addr->len-sizeof(short);
  324. p = &u->addr->name->sun_path[0];
  325. audit_log_format(ab, " path=");
  326. if (*p)
  327. audit_log_untrustedstring(ab, p);
  328. else
  329. audit_log_n_hex(ab, p, len);
  330. break;
  331. }
  332. }
  333. switch (a->u.net->family) {
  334. case AF_INET:
  335. print_ipv4_addr(ab, a->u.net->v4info.saddr,
  336. a->u.net->sport,
  337. "saddr", "src");
  338. print_ipv4_addr(ab, a->u.net->v4info.daddr,
  339. a->u.net->dport,
  340. "daddr", "dest");
  341. break;
  342. case AF_INET6:
  343. print_ipv6_addr(ab, &a->u.net->v6info.saddr,
  344. a->u.net->sport,
  345. "saddr", "src");
  346. print_ipv6_addr(ab, &a->u.net->v6info.daddr,
  347. a->u.net->dport,
  348. "daddr", "dest");
  349. break;
  350. }
  351. if (a->u.net->netif > 0) {
  352. struct net_device *dev;
  353. /* NOTE: we always use init's namespace */
  354. dev = dev_get_by_index(&init_net, a->u.net->netif);
  355. if (dev) {
  356. audit_log_format(ab, " netif=%s", dev->name);
  357. dev_put(dev);
  358. }
  359. }
  360. break;
  361. #ifdef CONFIG_KEYS
  362. case LSM_AUDIT_DATA_KEY:
  363. audit_log_format(ab, " key_serial=%u", a->u.key_struct.key);
  364. if (a->u.key_struct.key_desc) {
  365. audit_log_format(ab, " key_desc=");
  366. audit_log_untrustedstring(ab, a->u.key_struct.key_desc);
  367. }
  368. break;
  369. #endif
  370. case LSM_AUDIT_DATA_KMOD:
  371. audit_log_format(ab, " kmod=");
  372. audit_log_untrustedstring(ab, a->u.kmod_name);
  373. break;
  374. } /* switch (a->type) */
  375. }
  376. /**
  377. * common_lsm_audit - generic LSM auditing function
  378. * @a: auxiliary audit data
  379. * @pre_audit: lsm-specific pre-audit callback
  380. * @post_audit: lsm-specific post-audit callback
  381. *
  382. * setup the audit buffer for common security information
  383. * uses callback to print LSM specific information
  384. */
  385. void common_lsm_audit(struct common_audit_data *a,
  386. void (*pre_audit)(struct audit_buffer *, void *),
  387. void (*post_audit)(struct audit_buffer *, void *))
  388. {
  389. struct audit_buffer *ab;
  390. if (a == NULL)
  391. return;
  392. /* we use GFP_ATOMIC so we won't sleep */
  393. ab = audit_log_start(current->audit_context, GFP_ATOMIC | __GFP_NOWARN,
  394. AUDIT_AVC);
  395. if (ab == NULL)
  396. return;
  397. if (pre_audit)
  398. pre_audit(ab, a);
  399. dump_common_audit_data(ab, a);
  400. if (post_audit)
  401. post_audit(ab, a);
  402. audit_log_end(ab);
  403. }