lsm_audit.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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 defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  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. struct task_struct *tsk = current;
  194. audit_log_format(ab, " pid=%d comm=", tsk->pid);
  195. audit_log_untrustedstring(ab, tsk->comm);
  196. switch (a->type) {
  197. case LSM_AUDIT_DATA_NONE:
  198. return;
  199. case LSM_AUDIT_DATA_IPC:
  200. audit_log_format(ab, " key=%d ", a->u.ipc_id);
  201. break;
  202. case LSM_AUDIT_DATA_CAP:
  203. audit_log_format(ab, " capability=%d ", a->u.cap);
  204. break;
  205. case LSM_AUDIT_DATA_PATH: {
  206. struct inode *inode;
  207. audit_log_d_path(ab, " path=", &a->u.path);
  208. inode = a->u.path.dentry->d_inode;
  209. if (inode) {
  210. audit_log_format(ab, " dev=");
  211. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  212. audit_log_format(ab, " ino=%lu", inode->i_ino);
  213. }
  214. break;
  215. }
  216. case LSM_AUDIT_DATA_DENTRY: {
  217. struct inode *inode;
  218. audit_log_format(ab, " name=");
  219. audit_log_untrustedstring(ab, a->u.dentry->d_name.name);
  220. inode = a->u.dentry->d_inode;
  221. if (inode) {
  222. audit_log_format(ab, " dev=");
  223. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  224. audit_log_format(ab, " ino=%lu", inode->i_ino);
  225. }
  226. break;
  227. }
  228. case LSM_AUDIT_DATA_INODE: {
  229. struct dentry *dentry;
  230. struct inode *inode;
  231. inode = a->u.inode;
  232. dentry = d_find_alias(inode);
  233. if (dentry) {
  234. audit_log_format(ab, " name=");
  235. audit_log_untrustedstring(ab,
  236. dentry->d_name.name);
  237. dput(dentry);
  238. }
  239. audit_log_format(ab, " dev=");
  240. audit_log_untrustedstring(ab, inode->i_sb->s_id);
  241. audit_log_format(ab, " ino=%lu", inode->i_ino);
  242. break;
  243. }
  244. case LSM_AUDIT_DATA_TASK:
  245. tsk = a->u.tsk;
  246. if (tsk && tsk->pid) {
  247. audit_log_format(ab, " pid=%d comm=", tsk->pid);
  248. audit_log_untrustedstring(ab, tsk->comm);
  249. }
  250. break;
  251. case LSM_AUDIT_DATA_NET:
  252. if (a->u.net->sk) {
  253. struct sock *sk = a->u.net->sk;
  254. struct unix_sock *u;
  255. int len = 0;
  256. char *p = NULL;
  257. switch (sk->sk_family) {
  258. case AF_INET: {
  259. struct inet_sock *inet = inet_sk(sk);
  260. print_ipv4_addr(ab, inet->inet_rcv_saddr,
  261. inet->inet_sport,
  262. "laddr", "lport");
  263. print_ipv4_addr(ab, inet->inet_daddr,
  264. inet->inet_dport,
  265. "faddr", "fport");
  266. break;
  267. }
  268. case AF_INET6: {
  269. struct inet_sock *inet = inet_sk(sk);
  270. struct ipv6_pinfo *inet6 = inet6_sk(sk);
  271. print_ipv6_addr(ab, &inet6->rcv_saddr,
  272. inet->inet_sport,
  273. "laddr", "lport");
  274. print_ipv6_addr(ab, &inet6->daddr,
  275. inet->inet_dport,
  276. "faddr", "fport");
  277. break;
  278. }
  279. case AF_UNIX:
  280. u = unix_sk(sk);
  281. if (u->path.dentry) {
  282. audit_log_d_path(ab, " path=", &u->path);
  283. break;
  284. }
  285. if (!u->addr)
  286. break;
  287. len = u->addr->len-sizeof(short);
  288. p = &u->addr->name->sun_path[0];
  289. audit_log_format(ab, " path=");
  290. if (*p)
  291. audit_log_untrustedstring(ab, p);
  292. else
  293. audit_log_n_hex(ab, p, len);
  294. break;
  295. }
  296. }
  297. switch (a->u.net->family) {
  298. case AF_INET:
  299. print_ipv4_addr(ab, a->u.net->v4info.saddr,
  300. a->u.net->sport,
  301. "saddr", "src");
  302. print_ipv4_addr(ab, a->u.net->v4info.daddr,
  303. a->u.net->dport,
  304. "daddr", "dest");
  305. break;
  306. case AF_INET6:
  307. print_ipv6_addr(ab, &a->u.net->v6info.saddr,
  308. a->u.net->sport,
  309. "saddr", "src");
  310. print_ipv6_addr(ab, &a->u.net->v6info.daddr,
  311. a->u.net->dport,
  312. "daddr", "dest");
  313. break;
  314. }
  315. if (a->u.net->netif > 0) {
  316. struct net_device *dev;
  317. /* NOTE: we always use init's namespace */
  318. dev = dev_get_by_index(&init_net, a->u.net->netif);
  319. if (dev) {
  320. audit_log_format(ab, " netif=%s", dev->name);
  321. dev_put(dev);
  322. }
  323. }
  324. break;
  325. #ifdef CONFIG_KEYS
  326. case LSM_AUDIT_DATA_KEY:
  327. audit_log_format(ab, " key_serial=%u", a->u.key_struct.key);
  328. if (a->u.key_struct.key_desc) {
  329. audit_log_format(ab, " key_desc=");
  330. audit_log_untrustedstring(ab, a->u.key_struct.key_desc);
  331. }
  332. break;
  333. #endif
  334. case LSM_AUDIT_DATA_KMOD:
  335. audit_log_format(ab, " kmod=");
  336. audit_log_untrustedstring(ab, a->u.kmod_name);
  337. break;
  338. } /* switch (a->type) */
  339. }
  340. /**
  341. * common_lsm_audit - generic LSM auditing function
  342. * @a: auxiliary audit data
  343. * @pre_audit: lsm-specific pre-audit callback
  344. * @post_audit: lsm-specific post-audit callback
  345. *
  346. * setup the audit buffer for common security information
  347. * uses callback to print LSM specific information
  348. */
  349. void common_lsm_audit(struct common_audit_data *a,
  350. void (*pre_audit)(struct audit_buffer *, void *),
  351. void (*post_audit)(struct audit_buffer *, void *))
  352. {
  353. struct audit_buffer *ab;
  354. if (a == NULL)
  355. return;
  356. /* we use GFP_ATOMIC so we won't sleep */
  357. ab = audit_log_start(current->audit_context, GFP_ATOMIC, AUDIT_AVC);
  358. if (ab == NULL)
  359. return;
  360. if (pre_audit)
  361. pre_audit(ab, a);
  362. dump_common_audit_data(ab, a);
  363. if (post_audit)
  364. post_audit(ab, a);
  365. audit_log_end(ab);
  366. }