lsm_audit.c 9.3 KB

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