blob: 3ac703b5cb8ffb9413d8c5a7f12f616d576189e3 [file] [log] [blame]
Harald Welte2e4e6a12006-01-12 13:30:04 -08001/* (C) 1999-2001 Michal Ludvig <michal@logix.cz>
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 as
5 * published by the Free Software Foundation.
6 */
7
8#include <linux/module.h>
9#include <linux/skbuff.h>
10#include <linux/if_ether.h>
11#include <linux/if_packet.h>
12
13#include <linux/netfilter/xt_pkttype.h>
14#include <linux/netfilter/x_tables.h>
15
16MODULE_LICENSE("GPL");
17MODULE_AUTHOR("Michal Ludvig <michal@logix.cz>");
18MODULE_DESCRIPTION("IP tables match to match on linklayer packet type");
19MODULE_ALIAS("ipt_pkttype");
20MODULE_ALIAS("ip6t_pkttype");
21
22static int match(const struct sk_buff *skb,
23 const struct net_device *in,
24 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -080025 const struct xt_match *match,
Harald Welte2e4e6a12006-01-12 13:30:04 -080026 const void *matchinfo,
27 int offset,
28 unsigned int protoff,
29 int *hotdrop)
30{
31 const struct xt_pkttype_info *info = matchinfo;
32
33 return (skb->pkt_type == info->pkttype) ^ info->invert;
34}
35
Harald Welte2e4e6a12006-01-12 13:30:04 -080036static struct xt_match pkttype_match = {
37 .name = "pkttype",
Patrick McHardy5d04bff2006-03-20 18:01:58 -080038 .match = match,
39 .matchsize = sizeof(struct xt_pkttype_info),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080040 .family = AF_INET,
Harald Welte2e4e6a12006-01-12 13:30:04 -080041 .me = THIS_MODULE,
42};
43
Patrick McHardy5d04bff2006-03-20 18:01:58 -080044static struct xt_match pkttype6_match = {
45 .name = "pkttype",
46 .match = match,
47 .matchsize = sizeof(struct xt_pkttype_info),
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080048 .family = AF_INET6,
Patrick McHardy5d04bff2006-03-20 18:01:58 -080049 .me = THIS_MODULE,
50};
Harald Welte2e4e6a12006-01-12 13:30:04 -080051
Andrew Morton65b4b4e2006-03-28 16:37:06 -080052static int __init xt_pkttype_init(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080053{
54 int ret;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080055 ret = xt_register_match(&pkttype_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -080056 if (ret)
57 return ret;
58
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080059 ret = xt_register_match(&pkttype6_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -080060 if (ret)
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080061 xt_unregister_match(&pkttype_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -080062
63 return ret;
64}
65
Andrew Morton65b4b4e2006-03-28 16:37:06 -080066static void __exit xt_pkttype_fini(void)
Harald Welte2e4e6a12006-01-12 13:30:04 -080067{
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -080068 xt_unregister_match(&pkttype_match);
69 xt_unregister_match(&pkttype6_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -080070}
71
Andrew Morton65b4b4e2006-03-28 16:37:06 -080072module_init(xt_pkttype_init);
73module_exit(xt_pkttype_fini);