1 /* Kernel module to match ESP parameters. */
 
   2 /* (C) 2001-2002 Andras Kis-Szabo <kisza@sch.bme.hu>
 
   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>
 
  13 #include <linux/ipv6.h>
 
  14 #include <linux/types.h>
 
  15 #include <net/checksum.h>
 
  18 #include <linux/netfilter_ipv6/ip6_tables.h>
 
  19 #include <linux/netfilter_ipv6/ip6t_esp.h>
 
  21 MODULE_LICENSE("GPL");
 
  22 MODULE_DESCRIPTION("IPv6 ESP match");
 
  23 MODULE_AUTHOR("Andras Kis-Szabo <kisza@sch.bme.hu>");
 
  28 #define DEBUGP(format, args...)
 
  31 /* Returns 1 if the spi is matched by the range, 0 otherwise */
 
  33 spi_match(u_int32_t min, u_int32_t max, u_int32_t spi, int invert)
 
  36         DEBUGP("esp spi_match:%c 0x%x <= 0x%x <= 0x%x",invert? '!':' ',
 
  38         r=(spi >= min && spi <= max) ^ invert;
 
  39         DEBUGP(" result %s\n",r? "PASS\n" : "FAILED\n");
 
  44 match(const struct sk_buff *skb,
 
  45       const struct net_device *in,
 
  46       const struct net_device *out,
 
  47       const struct xt_match *match,
 
  48       const void *matchinfo,
 
  53         struct ip_esp_hdr _esp, *eh;
 
  54         const struct ip6t_esp *espinfo = matchinfo;
 
  57         /* Make sure this isn't an evil packet */
 
  58         /*DEBUGP("ipv6_esp entered \n");*/
 
  60         if (ipv6_find_hdr(skb, &ptr, NEXTHDR_ESP, NULL) < 0)
 
  63         eh = skb_header_pointer(skb, ptr, sizeof(_esp), &_esp);
 
  69         DEBUGP("IPv6 ESP SPI %u %08X\n", ntohl(eh->spi), ntohl(eh->spi));
 
  72                 && spi_match(espinfo->spis[0], espinfo->spis[1],
 
  74                               !!(espinfo->invflags & IP6T_ESP_INV_SPI));
 
  77 /* Called when user tries to insert an entry of this type. */
 
  79 checkentry(const char *tablename,
 
  81            const struct xt_match *match,
 
  83            unsigned int matchinfosize,
 
  84            unsigned int hook_mask)
 
  86         const struct ip6t_esp *espinfo = matchinfo;
 
  88         if (espinfo->invflags & ~IP6T_ESP_INV_MASK) {
 
  89                 DEBUGP("ip6t_esp: unknown flags %X\n",
 
  96 static struct ip6t_match esp_match = {
 
  99         .matchsize      = sizeof(struct ip6t_esp),
 
 100         .checkentry     = checkentry,
 
 104 static int __init ip6t_esp_init(void)
 
 106         return ip6t_register_match(&esp_match);
 
 109 static void __exit ip6t_esp_fini(void)
 
 111         ip6t_unregister_match(&esp_match);
 
 114 module_init(ip6t_esp_init);
 
 115 module_exit(ip6t_esp_fini);