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