ip6t_LOG.c 11.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * This is a module which is used for logging packets.
 */

/* (C) 2001 Jan Rekorajski <baggins@pld.org.pl>
 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/skbuff.h>
16
#include <linux/if_arp.h>
L
Linus Torvalds 已提交
17 18 19 20 21 22 23
#include <linux/ip.h>
#include <linux/spinlock.h>
#include <linux/icmpv6.h>
#include <net/udp.h>
#include <net/tcp.h>
#include <net/ipv6.h>
#include <linux/netfilter.h>
24
#include <linux/netfilter/x_tables.h>
L
Linus Torvalds 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
#include <linux/netfilter_ipv6/ip6_tables.h>

MODULE_AUTHOR("Jan Rekorajski <baggins@pld.org.pl>");
MODULE_DESCRIPTION("IP6 tables LOG target module");
MODULE_LICENSE("GPL");

struct in_device;
#include <net/route.h>
#include <linux/netfilter_ipv6/ip6t_LOG.h>

#if 0
#define DEBUGP printk
#else
#define DEBUGP(format, args...)
#endif

/* Use lock to serialize, so printks don't overlap */
static DEFINE_SPINLOCK(log_lock);

/* One level of recursion won't kill us */
45
static void dump_packet(const struct nf_loginfo *info,
L
Linus Torvalds 已提交
46 47 48 49 50
			const struct sk_buff *skb, unsigned int ip6hoff,
			int recurse)
{
	u_int8_t currenthdr;
	int fragment;
51 52
	struct ipv6hdr _ip6h;
	const struct ipv6hdr *ih;
L
Linus Torvalds 已提交
53 54
	unsigned int ptr;
	unsigned int hdrlen = 0;
55 56 57 58 59 60
	unsigned int logflags;

	if (info->type == NF_LOG_TYPE_LOG)
		logflags = info->u.log.logflags;
	else
		logflags = NF_LOG_MASK;
L
Linus Torvalds 已提交
61 62 63 64 65 66 67

	ih = skb_header_pointer(skb, ip6hoff, sizeof(_ip6h), &_ip6h);
	if (ih == NULL) {
		printk("TRUNCATED");
		return;
	}

J
Joe Perches 已提交
68 69
	/* Max length: 88 "SRC=0000.0000.0000.0000.0000.0000.0000.0000 DST=0000.0000.0000.0000.0000.0000.0000.0000 " */
	printk("SRC=" NIP6_FMT " DST=" NIP6_FMT " ", NIP6(ih->saddr), NIP6(ih->daddr));
L
Linus Torvalds 已提交
70 71 72 73

	/* Max length: 44 "LEN=65535 TC=255 HOPLIMIT=255 FLOWLBL=FFFFF " */
	printk("LEN=%Zu TC=%u HOPLIMIT=%u FLOWLBL=%u ",
	       ntohs(ih->payload_len) + sizeof(struct ipv6hdr),
A
Al Viro 已提交
74
	       (ntohl(*(__be32 *)ih) & 0x0ff00000) >> 20,
L
Linus Torvalds 已提交
75
	       ih->hop_limit,
A
Al Viro 已提交
76
	       (ntohl(*(__be32 *)ih) & 0x000fffff));
L
Linus Torvalds 已提交
77 78 79 80 81

	fragment = 0;
	ptr = ip6hoff + sizeof(struct ipv6hdr);
	currenthdr = ih->nexthdr;
	while (currenthdr != NEXTHDR_NONE && ip6t_ext_hdr(currenthdr)) {
82 83
		struct ipv6_opt_hdr _hdr;
		const struct ipv6_opt_hdr *hp;
L
Linus Torvalds 已提交
84 85 86 87 88 89 90 91

		hp = skb_header_pointer(skb, ptr, sizeof(_hdr), &_hdr);
		if (hp == NULL) {
			printk("TRUNCATED");
			return;
		}

		/* Max length: 48 "OPT (...) " */
92
		if (logflags & IP6T_LOG_IPOPT)
L
Linus Torvalds 已提交
93 94 95 96
			printk("OPT ( ");

		switch (currenthdr) {
		case IPPROTO_FRAGMENT: {
97 98
			struct frag_hdr _fhdr;
			const struct frag_hdr *fh;
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127

			printk("FRAG:");
			fh = skb_header_pointer(skb, ptr, sizeof(_fhdr),
						&_fhdr);
			if (fh == NULL) {
				printk("TRUNCATED ");
				return;
			}

			/* Max length: 6 "65535 " */
			printk("%u ", ntohs(fh->frag_off) & 0xFFF8);

			/* Max length: 11 "INCOMPLETE " */
			if (fh->frag_off & htons(0x0001))
				printk("INCOMPLETE ");

			printk("ID:%08x ", ntohl(fh->identification));

			if (ntohs(fh->frag_off) & 0xFFF8)
				fragment = 1;

			hdrlen = 8;

			break;
		}
		case IPPROTO_DSTOPTS:
		case IPPROTO_ROUTING:
		case IPPROTO_HOPOPTS:
			if (fragment) {
128
				if (logflags & IP6T_LOG_IPOPT)
L
Linus Torvalds 已提交
129 130 131 132 133 134 135
					printk(")");
				return;
			}
			hdrlen = ipv6_optlen(hp);
			break;
		/* Max Length */
		case IPPROTO_AH:
136
			if (logflags & IP6T_LOG_IPOPT) {
137 138
				struct ip_auth_hdr _ahdr;
				const struct ip_auth_hdr *ah;
L
Linus Torvalds 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151

				/* Max length: 3 "AH " */
				printk("AH ");

				if (fragment) {
					printk(")");
					return;
				}

				ah = skb_header_pointer(skb, ptr, sizeof(_ahdr),
							&_ahdr);
				if (ah == NULL) {
					/*
152
					 * Max length: 26 "INCOMPLETE [65535
L
Linus Torvalds 已提交
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
					 *  bytes] )"
					 */
					printk("INCOMPLETE [%u bytes] )",
					       skb->len - ptr);
					return;
				}

				/* Length: 15 "SPI=0xF1234567 */
				printk("SPI=0x%x ", ntohl(ah->spi));

			}

			hdrlen = (hp->hdrlen+2)<<2;
			break;
		case IPPROTO_ESP:
168
			if (logflags & IP6T_LOG_IPOPT) {
169 170
				struct ip_esp_hdr _esph;
				const struct ip_esp_hdr *eh;
L
Linus Torvalds 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200

				/* Max length: 4 "ESP " */
				printk("ESP ");

				if (fragment) {
					printk(")");
					return;
				}

				/*
				 * Max length: 26 "INCOMPLETE [65535 bytes] )"
				 */
				eh = skb_header_pointer(skb, ptr, sizeof(_esph),
							&_esph);
				if (eh == NULL) {
					printk("INCOMPLETE [%u bytes] )",
					       skb->len - ptr);
					return;
				}

				/* Length: 16 "SPI=0xF1234567 )" */
				printk("SPI=0x%x )", ntohl(eh->spi) );

			}
			return;
		default:
			/* Max length: 20 "Unknown Ext Hdr 255" */
			printk("Unknown Ext Hdr %u", currenthdr);
			return;
		}
201
		if (logflags & IP6T_LOG_IPOPT)
L
Linus Torvalds 已提交
202 203 204 205 206 207 208 209
			printk(") ");

		currenthdr = hp->nexthdr;
		ptr += hdrlen;
	}

	switch (currenthdr) {
	case IPPROTO_TCP: {
210 211
		struct tcphdr _tcph;
		const struct tcphdr *th;
L
Linus Torvalds 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229

		/* Max length: 10 "PROTO=TCP " */
		printk("PROTO=TCP ");

		if (fragment)
			break;

		/* Max length: 25 "INCOMPLETE [65535 bytes] " */
		th = skb_header_pointer(skb, ptr, sizeof(_tcph), &_tcph);
		if (th == NULL) {
			printk("INCOMPLETE [%u bytes] ", skb->len - ptr);
			return;
		}

		/* Max length: 20 "SPT=65535 DPT=65535 " */
		printk("SPT=%u DPT=%u ",
		       ntohs(th->source), ntohs(th->dest));
		/* Max length: 30 "SEQ=4294967295 ACK=4294967295 " */
230
		if (logflags & IP6T_LOG_TCPSEQ)
L
Linus Torvalds 已提交
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
			printk("SEQ=%u ACK=%u ",
			       ntohl(th->seq), ntohl(th->ack_seq));
		/* Max length: 13 "WINDOW=65535 " */
		printk("WINDOW=%u ", ntohs(th->window));
		/* Max length: 9 "RES=0x3C " */
		printk("RES=0x%02x ", (u_int8_t)(ntohl(tcp_flag_word(th) & TCP_RESERVED_BITS) >> 22));
		/* Max length: 32 "CWR ECE URG ACK PSH RST SYN FIN " */
		if (th->cwr)
			printk("CWR ");
		if (th->ece)
			printk("ECE ");
		if (th->urg)
			printk("URG ");
		if (th->ack)
			printk("ACK ");
		if (th->psh)
			printk("PSH ");
		if (th->rst)
			printk("RST ");
		if (th->syn)
			printk("SYN ");
		if (th->fin)
			printk("FIN ");
		/* Max length: 11 "URGP=65535 " */
		printk("URGP=%u ", ntohs(th->urg_ptr));

257
		if ((logflags & IP6T_LOG_TCPOPT)
L
Linus Torvalds 已提交
258
		    && th->doff * 4 > sizeof(struct tcphdr)) {
259 260
			u_int8_t _opt[60 - sizeof(struct tcphdr)];
			const u_int8_t *op;
L
Linus Torvalds 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
			unsigned int i;
			unsigned int optsize = th->doff * 4
					       - sizeof(struct tcphdr);

			op = skb_header_pointer(skb,
						ptr + sizeof(struct tcphdr),
						optsize, _opt);
			if (op == NULL) {
				printk("OPT (TRUNCATED)");
				return;
			}

			/* Max length: 127 "OPT (" 15*4*2chars ") " */
			printk("OPT (");
			for (i =0; i < optsize; i++)
				printk("%02X", op[i]);
			printk(") ");
		}
		break;
	}
281 282
	case IPPROTO_UDP:
	case IPPROTO_UDPLITE: {
283 284
		struct udphdr _udph;
		const struct udphdr *uh;
L
Linus Torvalds 已提交
285

286 287 288 289 290
		if (currenthdr == IPPROTO_UDP)
			/* Max length: 10 "PROTO=UDP "     */
			printk("PROTO=UDP " );
		else	/* Max length: 14 "PROTO=UDPLITE " */
			printk("PROTO=UDPLITE ");
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308

		if (fragment)
			break;

		/* Max length: 25 "INCOMPLETE [65535 bytes] " */
		uh = skb_header_pointer(skb, ptr, sizeof(_udph), &_udph);
		if (uh == NULL) {
			printk("INCOMPLETE [%u bytes] ", skb->len - ptr);
			return;
		}

		/* Max length: 20 "SPT=65535 DPT=65535 " */
		printk("SPT=%u DPT=%u LEN=%u ",
		       ntohs(uh->source), ntohs(uh->dest),
		       ntohs(uh->len));
		break;
	}
	case IPPROTO_ICMPV6: {
309 310
		struct icmp6hdr _icmp6h;
		const struct icmp6hdr *ic;
L
Linus Torvalds 已提交
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367

		/* Max length: 13 "PROTO=ICMPv6 " */
		printk("PROTO=ICMPv6 ");

		if (fragment)
			break;

		/* Max length: 25 "INCOMPLETE [65535 bytes] " */
		ic = skb_header_pointer(skb, ptr, sizeof(_icmp6h), &_icmp6h);
		if (ic == NULL) {
			printk("INCOMPLETE [%u bytes] ", skb->len - ptr);
			return;
		}

		/* Max length: 18 "TYPE=255 CODE=255 " */
		printk("TYPE=%u CODE=%u ", ic->icmp6_type, ic->icmp6_code);

		switch (ic->icmp6_type) {
		case ICMPV6_ECHO_REQUEST:
		case ICMPV6_ECHO_REPLY:
			/* Max length: 19 "ID=65535 SEQ=65535 " */
			printk("ID=%u SEQ=%u ",
				ntohs(ic->icmp6_identifier),
				ntohs(ic->icmp6_sequence));
			break;
		case ICMPV6_MGM_QUERY:
		case ICMPV6_MGM_REPORT:
		case ICMPV6_MGM_REDUCTION:
			break;

		case ICMPV6_PARAMPROB:
			/* Max length: 17 "POINTER=ffffffff " */
			printk("POINTER=%08x ", ntohl(ic->icmp6_pointer));
			/* Fall through */
		case ICMPV6_DEST_UNREACH:
		case ICMPV6_PKT_TOOBIG:
		case ICMPV6_TIME_EXCEED:
			/* Max length: 3+maxlen */
			if (recurse) {
				printk("[");
				dump_packet(info, skb, ptr + sizeof(_icmp6h),
					    0);
				printk("] ");
			}

			/* Max length: 10 "MTU=65535 " */
			if (ic->icmp6_type == ICMPV6_PKT_TOOBIG)
				printk("MTU=%u ", ntohl(ic->icmp6_mtu));
		}
		break;
	}
	/* Max length: 10 "PROTO=255 " */
	default:
		printk("PROTO=%u ", currenthdr);
	}

	/* Max length: 15 "UID=4294967295 " */
368
	if ((logflags & IP6T_LOG_UID) && recurse && skb->sk) {
L
Linus Torvalds 已提交
369 370 371 372 373 374 375
		read_lock_bh(&skb->sk->sk_callback_lock);
		if (skb->sk->sk_socket && skb->sk->sk_socket->file)
			printk("UID=%u ", skb->sk->sk_socket->file->f_uid);
		read_unlock_bh(&skb->sk->sk_callback_lock);
	}
}

376 377 378 379 380 381 382 383 384 385
static struct nf_loginfo default_loginfo = {
	.type	= NF_LOG_TYPE_LOG,
	.u = {
		.log = {
			.level	  = 0,
			.logflags = NF_LOG_MASK,
		},
	},
};

L
Linus Torvalds 已提交
386
static void
387 388
ip6t_log_packet(unsigned int pf,
		unsigned int hooknum,
L
Linus Torvalds 已提交
389 390 391
		const struct sk_buff *skb,
		const struct net_device *in,
		const struct net_device *out,
392
		const struct nf_loginfo *loginfo,
L
Linus Torvalds 已提交
393 394
		const char *prefix)
{
395 396 397
	if (!loginfo)
		loginfo = &default_loginfo;

L
Linus Torvalds 已提交
398
	spin_lock_bh(&log_lock);
399
	printk("<%d>%sIN=%s OUT=%s ", loginfo->u.log.level,
400
		prefix,
L
Linus Torvalds 已提交
401 402 403
		in ? in->name : "",
		out ? out->name : "");
	if (in && !out) {
404
		unsigned int len;
L
Linus Torvalds 已提交
405 406
		/* MAC logging for input chain only. */
		printk("MAC=");
407
		if (skb->dev && (len = skb->dev->hard_header_len) &&
408
		    skb->mac_header != skb->network_header) {
409
			const unsigned char *p = skb_mac_header(skb);
410 411 412 413 414 415
			int i;

			if (skb->dev->type == ARPHRD_SIT &&
			    (p -= ETH_HLEN) < skb->head)
				p = NULL;

416 417 418 419 420
			if (p != NULL) {
				for (i = 0; i < len; i++)
					printk("%02x%s", p[i],
					       i == len - 1 ? "" : ":");
			}
421 422 423
			printk(" ");

			if (skb->dev->type == ARPHRD_SIT) {
424 425
				const struct iphdr *iph =
					(struct iphdr *)skb_mac_header(skb);
426 427 428
				printk("TUNNEL=%u.%u.%u.%u->%u.%u.%u.%u ",
				       NIPQUAD(iph->saddr),
				       NIPQUAD(iph->daddr));
L
Linus Torvalds 已提交
429 430 431 432 433
			}
		} else
			printk(" ");
	}

434
	dump_packet(loginfo, skb, skb_network_offset(skb), 1);
L
Linus Torvalds 已提交
435 436 437 438 439 440 441 442 443
	printk("\n");
	spin_unlock_bh(&log_lock);
}

static unsigned int
ip6t_log_target(struct sk_buff **pskb,
		const struct net_device *in,
		const struct net_device *out,
		unsigned int hooknum,
444
		const struct xt_target *target,
445
		const void *targinfo)
L
Linus Torvalds 已提交
446 447
{
	const struct ip6t_log_info *loginfo = targinfo;
448 449 450 451 452
	struct nf_loginfo li;

	li.type = NF_LOG_TYPE_LOG;
	li.u.log.level = loginfo->level;
	li.u.log.logflags = loginfo->logflags;
L
Linus Torvalds 已提交
453

454
	ip6t_log_packet(PF_INET6, hooknum, *pskb, in, out, &li,
455
			loginfo->prefix);
456
	return XT_CONTINUE;
L
Linus Torvalds 已提交
457 458 459
}


460 461 462 463 464
static bool ip6t_log_checkentry(const char *tablename,
				const void *entry,
				const struct xt_target *target,
				void *targinfo,
				unsigned int hook_mask)
L
Linus Torvalds 已提交
465 466 467 468 469
{
	const struct ip6t_log_info *loginfo = targinfo;

	if (loginfo->level >= 8) {
		DEBUGP("LOG: level %u >= 8\n", loginfo->level);
470
		return false;
L
Linus Torvalds 已提交
471 472 473 474
	}
	if (loginfo->prefix[sizeof(loginfo->prefix)-1] != '\0') {
		DEBUGP("LOG: prefix term %i\n",
		       loginfo->prefix[sizeof(loginfo->prefix)-1]);
475
		return false;
L
Linus Torvalds 已提交
476
	}
477
	return true;
L
Linus Torvalds 已提交
478 479
}

480
static struct xt_target ip6t_log_reg __read_mostly = {
L
Linus Torvalds 已提交
481
	.name 		= "LOG",
482
	.family		= AF_INET6,
483
	.target 	= ip6t_log_target,
484
	.targetsize	= sizeof(struct ip6t_log_info),
485
	.checkentry	= ip6t_log_checkentry,
L
Linus Torvalds 已提交
486 487 488
	.me 		= THIS_MODULE,
};

489 490 491 492 493 494
static struct nf_logger ip6t_logger = {
	.name		= "ip6t_LOG",
	.logfn		= &ip6t_log_packet,
	.me		= THIS_MODULE,
};

495
static int __init ip6t_log_init(void)
L
Linus Torvalds 已提交
496
{
497 498
	int ret;

499
	ret = xt_register_target(&ip6t_log_reg);
500 501
	if (ret < 0)
		return ret;
502 503 504 505
	ret = nf_log_register(PF_INET6, &ip6t_logger);
	if (ret < 0 && ret != -EEXIST)
		xt_unregister_target(&ip6t_log_reg);
	return ret;
L
Linus Torvalds 已提交
506 507
}

508
static void __exit ip6t_log_fini(void)
L
Linus Torvalds 已提交
509
{
510
	nf_log_unregister(&ip6t_logger);
511
	xt_unregister_target(&ip6t_log_reg);
L
Linus Torvalds 已提交
512 513
}

514 515
module_init(ip6t_log_init);
module_exit(ip6t_log_fini);