blob: 36bedad2c6f74a4f2c7eca99e173c032a8316d77 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Kernel module to match ESP parameters. */
2/* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9
10#include <linux/module.h>
11#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020012#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/ipv6.h>
14#include <linux/types.h>
15#include <net/checksum.h>
16#include <net/ipv6.h>
17
18#include <linux/netfilter_ipv6/ip6_tables.h>
19#include <linux/netfilter_ipv6/ip6t_esp.h>
20
21MODULE_LICENSE("GPL");
22MODULE_DESCRIPTION("IPv6 ESP match");
23MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");
24
25#if 0
26#define DEBUGP printk
27#else
28#define DEBUGP(format, args...)
29#endif
30
31/* Returns 1 if the spi is matched by the range, 0 otherwise */
32static inline int
33spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert)
34{
35 int r=0;
36 DEBUGP("esp spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ',
37 min,spi,max);
38 r=(spi >= min && spi <= max) ^ invert;
39 DEBUGP(" result %s\n",r? "PASS\n" : "FAILED\n");
40 return r;
41}
42
43static int
44match(const struct sk_buff *skb,
45 const struct net_device *in,
46 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080047 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 const void *matchinfo,
49 int offset,
50 unsigned int protoff,
51 int *hotdrop)
52{
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -070053 struct ip_esp_hdr _esp, *eh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 const struct ip6t_esp *espinfo = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 unsigned int ptr;
56
57 /* Make sure this isn't an evil packet */
58 /*DEBUGP("ipv6_esp entered \n");*/
59
Patrick McHardyb777e0c2006-01-05 12:21:16 -080060 if (ipv6_find_hdr(skb, &ptr, NEXTHDR_ESP, NULL) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return 0;
62
Yasuyuki Kozakaie674d0f2005-09-19 15:34:40 -070063 eh = skb_header_pointer(skb, ptr, sizeof(_esp), &_esp);
64 if (eh == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *hotdrop = 1;
66 return 0;
67 }
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 DEBUGP("IPv6 ESP SPI %u %08X\n", ntohl(eh->spi), ntohl(eh->spi));
70
71 return (eh != NULL)
72 && spi_match(espinfo->spis[0], espinfo->spis[1],
73 ntohl(eh->spi),
74 !!(espinfo->invflags & IP6T_ESP_INV_SPI));
75}
76
77/* Called when user tries to insert an entry of this type. */
78static int
79checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -080080 const void *ip,
Patrick McHardyc4986732006-03-20 18:02:56 -080081 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 void *matchinfo,
83 unsigned int matchinfosize,
84 unsigned int hook_mask)
85{
86 const struct ip6t_esp *espinfo = matchinfo;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (espinfo->invflags & ~IP6T_ESP_INV_MASK) {
89 DEBUGP("ip6t_esp: unknown flags %X\n",
90 espinfo->invflags);
91 return 0;
92 }
93 return 1;
94}
95
96static struct ip6t_match esp_match = {
97 .name = "esp",
Patrick McHardy7f939712006-03-20 18:01:43 -080098 .match = match,
99 .matchsize = sizeof(struct ip6t_esp),
100 .checkentry = checkentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 .me = THIS_MODULE,
102};
103
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800104static int __init ip6t_esp_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 return ip6t_register_match(&esp_match);
107}
108
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800109static void __exit ip6t_esp_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 ip6t_unregister_match(&esp_match);
112}
113
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800114module_init(ip6t_esp_init);
115module_exit(ip6t_esp_fini);