blob: 34bd87259a09fea8b84671104c6a314cad5aafbd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/module.h>
2#include <linux/skbuff.h>
3#include <net/ip.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -08004#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/sctp.h>
6
Harald Welte2e4e6a12006-01-12 13:30:04 -08007#include <linux/netfilter/x_tables.h>
8#include <linux/netfilter/xt_sctp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/netfilter_ipv4/ip_tables.h>
Harald Welte2e4e6a12006-01-12 13:30:04 -080010#include <linux/netfilter_ipv6/ip6_tables.h>
11
12MODULE_LICENSE("GPL");
13MODULE_AUTHOR("Kiran Kumar Immidi");
14MODULE_DESCRIPTION("Match for SCTP protocol packets");
15MODULE_ALIAS("ipt_sctp");
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#ifdef DEBUG_SCTP
18#define duprintf(format, args...) printk(format , ## args)
19#else
20#define duprintf(format, args...)
21#endif
22
23#define SCCHECK(cond, option, flag, invflag) (!((flag) & (option)) \
24 || (!!((invflag) & (option)) ^ (cond)))
25
26static int
Harald Welte2e4e6a12006-01-12 13:30:04 -080027match_flags(const struct xt_sctp_flag_info *flag_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 const int flag_count,
29 u_int8_t chunktype,
30 u_int8_t chunkflags)
31{
32 int i;
33
34 for (i = 0; i < flag_count; i++) {
35 if (flag_info[i].chunktype == chunktype) {
36 return (chunkflags & flag_info[i].flag_mask) == flag_info[i].flag;
37 }
38 }
39
40 return 1;
41}
42
Harald Welte2e4e6a12006-01-12 13:30:04 -080043static inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -070044match_packet(const struct sk_buff *skb,
Harald Welte2e4e6a12006-01-12 13:30:04 -080045 unsigned int offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 const u_int32_t *chunkmap,
47 int chunk_match_type,
Harald Welte2e4e6a12006-01-12 13:30:04 -080048 const struct xt_sctp_flag_info *flag_info,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 const int flag_count,
50 int *hotdrop)
51{
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 u_int32_t chunkmapcopy[256 / sizeof (u_int32_t)];
53 sctp_chunkhdr_t _sch, *sch;
54
55#ifdef DEBUG_SCTP
56 int i = 0;
57#endif
58
59 if (chunk_match_type == SCTP_CHUNK_MATCH_ALL) {
60 SCTP_CHUNKMAP_COPY(chunkmapcopy, chunkmap);
61 }
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 do {
64 sch = skb_header_pointer(skb, offset, sizeof(_sch), &_sch);
65 if (sch == NULL) {
66 duprintf("Dropping invalid SCTP packet.\n");
67 *hotdrop = 1;
68 return 0;
69 }
70
71 duprintf("Chunk num: %d\toffset: %d\ttype: %d\tlength: %d\tflags: %x\n",
72 ++i, offset, sch->type, htons(sch->length), sch->flags);
73
74 offset += (htons(sch->length) + 3) & ~3;
75
76 duprintf("skb->len: %d\toffset: %d\n", skb->len, offset);
77
78 if (SCTP_CHUNKMAP_IS_SET(chunkmap, sch->type)) {
79 switch (chunk_match_type) {
80 case SCTP_CHUNK_MATCH_ANY:
81 if (match_flags(flag_info, flag_count,
82 sch->type, sch->flags)) {
83 return 1;
84 }
85 break;
86
87 case SCTP_CHUNK_MATCH_ALL:
88 if (match_flags(flag_info, flag_count,
89 sch->type, sch->flags)) {
90 SCTP_CHUNKMAP_CLEAR(chunkmapcopy, sch->type);
91 }
92 break;
93
94 case SCTP_CHUNK_MATCH_ONLY:
95 if (!match_flags(flag_info, flag_count,
96 sch->type, sch->flags)) {
97 return 0;
98 }
99 break;
100 }
101 } else {
102 switch (chunk_match_type) {
103 case SCTP_CHUNK_MATCH_ONLY:
104 return 0;
105 }
106 }
107 } while (offset < skb->len);
108
109 switch (chunk_match_type) {
110 case SCTP_CHUNK_MATCH_ALL:
111 return SCTP_CHUNKMAP_IS_CLEAR(chunkmap);
112 case SCTP_CHUNK_MATCH_ANY:
113 return 0;
114 case SCTP_CHUNK_MATCH_ONLY:
115 return 1;
116 }
117
118 /* This will never be reached, but required to stop compiler whine */
119 return 0;
120}
121
122static int
123match(const struct sk_buff *skb,
124 const struct net_device *in,
125 const struct net_device *out,
Patrick McHardyc4986732006-03-20 18:02:56 -0800126 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 const void *matchinfo,
128 int offset,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800129 unsigned int protoff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int *hotdrop)
131{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800132 const struct xt_sctp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 sctp_sctphdr_t _sh, *sh;
134
Harald Welte2e4e6a12006-01-12 13:30:04 -0800135 info = (const struct xt_sctp_info *)matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 if (offset) {
138 duprintf("Dropping non-first fragment.. FIXME\n");
139 return 0;
140 }
141
Harald Welte2e4e6a12006-01-12 13:30:04 -0800142 sh = skb_header_pointer(skb, protoff, sizeof(_sh), &_sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (sh == NULL) {
144 duprintf("Dropping evil TCP offset=0 tinygram.\n");
145 *hotdrop = 1;
146 return 0;
147 }
148 duprintf("spt: %d\tdpt: %d\n", ntohs(sh->source), ntohs(sh->dest));
149
150 return SCCHECK(((ntohs(sh->source) >= info->spts[0])
151 && (ntohs(sh->source) <= info->spts[1])),
Harald Welte2e4e6a12006-01-12 13:30:04 -0800152 XT_SCTP_SRC_PORTS, info->flags, info->invflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 && SCCHECK(((ntohs(sh->dest) >= info->dpts[0])
154 && (ntohs(sh->dest) <= info->dpts[1])),
Harald Welte2e4e6a12006-01-12 13:30:04 -0800155 XT_SCTP_DEST_PORTS, info->flags, info->invflags)
156 && SCCHECK(match_packet(skb, protoff,
157 info->chunkmap, info->chunk_match_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 info->flag_info, info->flag_count,
159 hotdrop),
Harald Welte2e4e6a12006-01-12 13:30:04 -0800160 XT_SCTP_CHUNK_TYPES, info->flags, info->invflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
162
163static int
164checkentry(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800165 const void *inf,
Patrick McHardyc4986732006-03-20 18:02:56 -0800166 const struct xt_match *match,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 void *matchinfo,
168 unsigned int matchsize,
169 unsigned int hook_mask)
170{
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800171 const struct xt_sctp_info *info = matchinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800173 return !(info->flags & ~XT_SCTP_VALID_FLAGS)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800174 && !(info->invflags & ~XT_SCTP_VALID_FLAGS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 && !(info->invflags & ~info->flags)
Harald Welte2e4e6a12006-01-12 13:30:04 -0800176 && ((!(info->flags & XT_SCTP_CHUNK_TYPES)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 (info->chunk_match_type &
178 (SCTP_CHUNK_MATCH_ALL
179 | SCTP_CHUNK_MATCH_ANY
180 | SCTP_CHUNK_MATCH_ONLY)));
181}
182
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800183static struct xt_match sctp_match = {
184 .name = "sctp",
185 .match = match,
186 .matchsize = sizeof(struct xt_sctp_info),
187 .proto = IPPROTO_SCTP,
188 .checkentry = checkentry,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800189 .family = AF_INET,
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800190 .me = THIS_MODULE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191};
192
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800193static struct xt_match sctp6_match = {
194 .name = "sctp",
195 .match = match,
196 .matchsize = sizeof(struct xt_sctp_info),
197 .proto = IPPROTO_SCTP,
198 .checkentry = checkentry,
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800199 .family = AF_INET6,
Patrick McHardy5d04bff2006-03-20 18:01:58 -0800200 .me = THIS_MODULE
201};
Harald Welte2e4e6a12006-01-12 13:30:04 -0800202
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800203static int __init xt_sctp_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Harald Welte2e4e6a12006-01-12 13:30:04 -0800205 int ret;
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800206 ret = xt_register_match(&sctp_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800207 if (ret)
208 return ret;
209
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800210 ret = xt_register_match(&sctp6_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800211 if (ret)
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800212 xt_unregister_match(&sctp_match);
Harald Welte2e4e6a12006-01-12 13:30:04 -0800213
214 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800217static void __exit xt_sctp_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Pablo Neira Ayusoa45049c2006-03-22 13:55:40 -0800219 xt_unregister_match(&sctp6_match);
220 xt_unregister_match(&sctp_match);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800223module_init(xt_sctp_init);
224module_exit(xt_sctp_fini);