blob: 71c7c378526697da8ec274253e72a45e0acceb13 [file] [log] [blame]
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -08001/* Kernel module to match ESP parameters. */
2
3/* (C) 1999-2000 Yon Uriarte <yon@astaro.de>
4 *
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.
8 */
9
10#include <linux/module.h>
11#include <linux/skbuff.h>
12#include <linux/in.h>
13#include <linux/ip.h>
14
15#include <linux/netfilter/xt_esp.h>
16#include <linux/netfilter/x_tables.h>
17
18#include <linux/netfilter_ipv4/ip_tables.h>
19#include <linux/netfilter_ipv6/ip6_tables.h>
20
21MODULE_LICENSE("GPL");
22MODULE_AUTHOR("Yon Uriarte <yon@astaro.de>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080023MODULE_DESCRIPTION("Xtables: IPsec-ESP packet match");
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080024MODULE_ALIAS("ipt_esp");
25MODULE_ALIAS("ip6t_esp");
26
27#if 0
28#define duprintf(format, args...) printk(format , ## args)
29#else
30#define duprintf(format, args...)
31#endif
32
33/* Returns 1 if the spi is matched by the range, 0 otherwise */
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070034static inline bool
35spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, bool invert)
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080036{
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070037 bool r;
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080038 duprintf("esp spi_match:%c 0x%x <= 0x%x <= 0x%x", invert ? '!' : ' ',
39 min, spi, max);
40 r = (spi >= min && spi <= max) ^ invert;
41 duprintf(" result %s\n", r ? "PASS" : "FAILED");
42 return r;
43}
44
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070045static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080046esp_mt(const struct sk_buff *skb, const struct net_device *in,
47 const struct net_device *out, const struct xt_match *match,
48 const void *matchinfo, int offset, unsigned int protoff, bool *hotdrop)
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080049{
50 struct ip_esp_hdr _esp, *eh;
51 const struct xt_esp *espinfo = matchinfo;
52
53 /* Must not be a fragment. */
54 if (offset)
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070055 return false;
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080056
57 eh = skb_header_pointer(skb, protoff, sizeof(_esp), &_esp);
58 if (eh == NULL) {
59 /* We've been asked to examine this packet, and we
60 * can't. Hence, no choice but to drop.
61 */
62 duprintf("Dropping evil ESP tinygram.\n");
Jan Engelhardtcff533a2007-07-07 22:15:12 -070063 *hotdrop = true;
Jan Engelhardt1d93a9c2007-07-07 22:15:35 -070064 return false;
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080065 }
66
67 return spi_match(espinfo->spis[0], espinfo->spis[1], ntohl(eh->spi),
68 !!(espinfo->invflags & XT_ESP_INV_SPI));
69}
70
71/* Called when user tries to insert an entry of this type. */
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070072static bool
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080073esp_mt_check(const char *tablename, const void *ip_void,
74 const struct xt_match *match, void *matchinfo,
75 unsigned int hook_mask)
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080076{
77 const struct xt_esp *espinfo = matchinfo;
78
79 if (espinfo->invflags & ~XT_ESP_INV_MASK) {
80 duprintf("xt_esp: unknown flags %X\n", espinfo->invflags);
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070081 return false;
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080082 }
83
Jan Engelhardtccb79bd2007-07-07 22:16:00 -070084 return true;
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -080085}
86
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080087static struct xt_match esp_mt_reg[] __read_mostly = {
Patrick McHardy4470bbc2006-08-22 00:34:04 -070088 {
89 .name = "esp",
90 .family = AF_INET,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -080091 .checkentry = esp_mt_check,
92 .match = esp_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -070093 .matchsize = sizeof(struct xt_esp),
94 .proto = IPPROTO_ESP,
95 .me = THIS_MODULE,
96 },
97 {
98 .name = "esp",
99 .family = AF_INET6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800100 .checkentry = esp_mt_check,
101 .match = esp_mt,
Patrick McHardy4470bbc2006-08-22 00:34:04 -0700102 .matchsize = sizeof(struct xt_esp),
103 .proto = IPPROTO_ESP,
104 .me = THIS_MODULE,
105 },
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800106};
107
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800108static int __init esp_mt_init(void)
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800109{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800110 return xt_register_matches(esp_mt_reg, ARRAY_SIZE(esp_mt_reg));
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800111}
112
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800113static void __exit esp_mt_exit(void)
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800114{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800115 xt_unregister_matches(esp_mt_reg, ARRAY_SIZE(esp_mt_reg));
Yasuyuki Kozakaidc5ab2f2006-04-01 02:22:30 -0800116}
117
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800118module_init(esp_mt_init);
119module_exit(esp_mt_exit);