1 /* Kernel module to match AH parameters. */
2 /* (C) 1999-2000 Yon Uriarte <yon@astaro.de>
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.
10 #include <linux/module.h>
11 #include <linux/skbuff.h>
14 #include <linux/netfilter_ipv4/ipt_ah.h>
15 #include <linux/netfilter/x_tables.h>
17 MODULE_LICENSE("GPL");
18 MODULE_AUTHOR("Yon Uriarte <yon@astaro.de>");
19 MODULE_DESCRIPTION("Xtables: IPv4 IPsec-AH SPI match");
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
, bool invert
)
32 duprintf("ah 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 ah_mt(const struct sk_buff
*skb
, const struct net_device
*in
,
41 const struct net_device
*out
, const struct xt_match
*match
,
42 const void *matchinfo
, int offset
, unsigned int protoff
, bool *hotdrop
)
44 struct ip_auth_hdr _ahdr
;
45 const struct ip_auth_hdr
*ah
;
46 const struct ipt_ah
*ahinfo
= matchinfo
;
48 /* Must not be a fragment. */
52 ah
= skb_header_pointer(skb
, protoff
,
53 sizeof(_ahdr
), &_ahdr
);
55 /* We've been asked to examine this packet, and we
56 * can't. Hence, no choice but to drop.
58 duprintf("Dropping evil AH tinygram.\n");
63 return spi_match(ahinfo
->spis
[0], ahinfo
->spis
[1],
65 !!(ahinfo
->invflags
& IPT_AH_INV_SPI
));
68 /* Called when user tries to insert an entry of this type. */
70 ah_mt_check(const char *tablename
, const void *ip_void
,
71 const struct xt_match
*match
, void *matchinfo
,
72 unsigned int hook_mask
)
74 const struct ipt_ah
*ahinfo
= matchinfo
;
76 /* Must specify no unknown invflags */
77 if (ahinfo
->invflags
& ~IPT_AH_INV_MASK
) {
78 duprintf("ipt_ah: unknown flags %X\n", ahinfo
->invflags
);
84 static struct xt_match ah_mt_reg __read_mostly
= {
88 .matchsize
= sizeof(struct ipt_ah
),
90 .checkentry
= ah_mt_check
,
94 static int __init
ah_mt_init(void)
96 return xt_register_match(&ah_mt_reg
);
99 static void __exit
ah_mt_exit(void)
101 xt_unregister_match(&ah_mt_reg
);
104 module_init(ah_mt_init
);
105 module_exit(ah_mt_exit
);