1 /* Kernel module to match ESP parameters. */
3 /* (C) 1999-2000 Yon Uriarte <yon@astaro.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
14 #include <linux/netfilter_ipv4/ipt_esp.h>
15 #include <linux/netfilter_ipv4/ip_tables.h>
17 MODULE_LICENSE("GPL");
18 MODULE_AUTHOR("Yon Uriarte <yon@astaro.de>");
19 MODULE_DESCRIPTION("iptables ESP SPI match module");
21 #ifdef DEBUG_CONNTRACK
22 #define duprintf(format, args...) printk(format , ## args)
24 #define duprintf(format, args...)
27 /* Returns 1 if the spi is matched by the range, 0 otherwise */
29 spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert)
32 duprintf("esp spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ',
34 r=(spi >= min && spi <= max) ^ invert;
35 duprintf(" result %s\n",r? "PASS" : "FAILED");
40 match(const struct sk_buff *skb,
41 const struct net_device *in,
42 const struct net_device *out,
43 const void *matchinfo,
48 struct ip_esp_hdr _esp, *eh;
49 const struct ipt_esp *espinfo = matchinfo;
51 /* Must not be a fragment. */
55 eh = skb_header_pointer(skb, protoff,
58 /* We've been asked to examine this packet, and we
59 * can't. Hence, no choice but to drop.
61 duprintf("Dropping evil ESP tinygram.\n");
66 return spi_match(espinfo->spis[0], espinfo->spis[1],
68 !!(espinfo->invflags & IPT_ESP_INV_SPI));
71 /* Called when user tries to insert an entry of this type. */
73 checkentry(const char *tablename,
76 unsigned int matchinfosize,
77 unsigned int hook_mask)
79 const struct ipt_esp *espinfo = matchinfo;
80 const struct ipt_ip *ip = ip_void;
82 /* Must specify proto == ESP, and no unknown invflags */
83 if (ip->proto != IPPROTO_ESP || (ip->invflags & IPT_INV_PROTO)) {
84 duprintf("ipt_esp: Protocol %u != %u\n", ip->proto,
88 if (matchinfosize != IPT_ALIGN(sizeof(struct ipt_esp))) {
89 duprintf("ipt_esp: matchsize %u != %u\n",
90 matchinfosize, IPT_ALIGN(sizeof(struct ipt_esp)));
93 if (espinfo->invflags & ~IPT_ESP_INV_MASK) {
94 duprintf("ipt_esp: unknown flags %X\n",
102 static struct ipt_match esp_match = {
105 .checkentry = &checkentry,
109 static int __init init(void)
111 return ipt_register_match(&esp_match);
114 static void __exit cleanup(void)
116 ipt_unregister_match(&esp_match);
120 module_exit(cleanup);