ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / net / ipv4 / netfilter / ipt_ah.c
1 /* Kernel module to match AH parameters. */
2 /* (C) 1999-2000 Yon Uriarte <yon@astaro.de>
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 #include <linux/module.h>
10 #include <linux/skbuff.h>
11 #include <linux/ip.h>
12
13 #include <linux/netfilter_ipv4/ipt_ah.h>
14 #include <linux/netfilter_ipv4/ip_tables.h>
15
16 MODULE_LICENSE("GPL");
17 MODULE_AUTHOR("Yon Uriarte <yon@astaro.de>");
18 MODULE_DESCRIPTION("iptables AH SPI match module");
19
20 #ifdef DEBUG_CONNTRACK
21 #define duprintf(format, args...) printk(format , ## args)
22 #else
23 #define duprintf(format, args...)
24 #endif
25
26 /* Returns 1 if the spi is matched by the range, 0 otherwise */
27 static inline int
28 spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert)
29 {
30         int r=0;
31         duprintf("ah spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ',
32                 min,spi,max);
33         r=(spi >= min && spi <= max) ^ invert;
34         duprintf(" result %s\n",r? "PASS" : "FAILED");
35         return r;
36 }
37
38 static int
39 match(const struct sk_buff *skb,
40       const struct net_device *in,
41       const struct net_device *out,
42       const void *matchinfo,
43       int offset,
44       int *hotdrop)
45 {
46         struct ip_auth_hdr ah;
47         const struct ipt_ah *ahinfo = matchinfo;
48
49         /* Must not be a fragment. */
50         if (offset)
51                 return 0;
52
53         if (skb_copy_bits(skb, skb->nh.iph->ihl*4, &ah, sizeof(ah)) < 0) {
54                 /* We've been asked to examine this packet, and we
55                    can't.  Hence, no choice but to drop. */
56                 duprintf("Dropping evil AH tinygram.\n");
57                 *hotdrop = 1;
58                 return 0;
59         }
60
61         return spi_match(ahinfo->spis[0], ahinfo->spis[1],
62                          ntohl(ah.spi),
63                          !!(ahinfo->invflags & IPT_AH_INV_SPI));
64 }
65
66 /* Called when user tries to insert an entry of this type. */
67 static int
68 checkentry(const char *tablename,
69            const struct ipt_ip *ip,
70            void *matchinfo,
71            unsigned int matchinfosize,
72            unsigned int hook_mask)
73 {
74         const struct ipt_ah *ahinfo = matchinfo;
75
76         /* Must specify proto == AH, and no unknown invflags */
77         if (ip->proto != IPPROTO_AH || (ip->invflags & IPT_INV_PROTO)) {
78                 duprintf("ipt_ah: Protocol %u != %u\n", ip->proto,
79                          IPPROTO_AH);
80                 return 0;
81         }
82         if (matchinfosize != IPT_ALIGN(sizeof(struct ipt_ah))) {
83                 duprintf("ipt_ah: matchsize %u != %u\n",
84                          matchinfosize, IPT_ALIGN(sizeof(struct ipt_ah)));
85                 return 0;
86         }
87         if (ahinfo->invflags & ~IPT_AH_INV_MASK) {
88                 duprintf("ipt_ah: unknown flags %X\n",
89                          ahinfo->invflags);
90                 return 0;
91         }
92
93         return 1;
94 }
95
96 static struct ipt_match ah_match = {
97         .name           = "ah",
98         .match          = &match,
99         .checkentry     = &checkentry,
100         .me             = THIS_MODULE,
101 };
102
103 static int __init init(void)
104 {
105         return ipt_register_match(&ah_match);
106 }
107
108 static void __exit cleanup(void)
109 {
110         ipt_unregister_match(&ah_match);
111 }
112
113 module_init(init);
114 module_exit(cleanup);