blob: 6fdf88ae2353b67be38c307fd8d4cb114594e624 [file] [log] [blame]
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +01001/* Copyright (C) 2003-2011 Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
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/* Get Layer-4 data from the packets */
9
10#include <linux/ip.h>
11#include <linux/skbuff.h>
12#include <linux/icmp.h>
13#include <linux/icmpv6.h>
Jozsef Kadlecsik91eb7c02011-04-13 13:51:38 +020014#include <linux/sctp.h>
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010015#include <linux/netfilter_ipv6/ip6_tables.h>
16#include <net/ip.h>
Patrick McHardy724bab42011-02-02 23:50:01 +010017#include <net/ipv6.h>
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010018
19#include <linux/netfilter/ipset/ip_set_getport.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040020#include <linux/export.h>
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010021
22/* We must handle non-linear skbs */
23static bool
24get_port(const struct sk_buff *skb, int protocol, unsigned int protooff,
25 bool src, __be16 *port, u8 *proto)
26{
27 switch (protocol) {
28 case IPPROTO_TCP: {
29 struct tcphdr _tcph;
30 const struct tcphdr *th;
31
32 th = skb_header_pointer(skb, protooff, sizeof(_tcph), &_tcph);
33 if (th == NULL)
34 /* No choice either */
35 return false;
36
37 *port = src ? th->source : th->dest;
38 break;
39 }
Jozsef Kadlecsik91eb7c02011-04-13 13:51:38 +020040 case IPPROTO_SCTP: {
41 sctp_sctphdr_t _sh;
42 const sctp_sctphdr_t *sh;
43
44 sh = skb_header_pointer(skb, protooff, sizeof(_sh), &_sh);
45 if (sh == NULL)
46 /* No choice either */
47 return false;
48
49 *port = src ? sh->source : sh->dest;
50 break;
51 }
52 case IPPROTO_UDP:
53 case IPPROTO_UDPLITE: {
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +010054 struct udphdr _udph;
55 const struct udphdr *uh;
56
57 uh = skb_header_pointer(skb, protooff, sizeof(_udph), &_udph);
58 if (uh == NULL)
59 /* No choice either */
60 return false;
61
62 *port = src ? uh->source : uh->dest;
63 break;
64 }
65 case IPPROTO_ICMP: {
66 struct icmphdr _ich;
67 const struct icmphdr *ic;
68
69 ic = skb_header_pointer(skb, protooff, sizeof(_ich), &_ich);
70 if (ic == NULL)
71 return false;
72
73 *port = (__force __be16)htons((ic->type << 8) | ic->code);
74 break;
75 }
76 case IPPROTO_ICMPV6: {
77 struct icmp6hdr _ich;
78 const struct icmp6hdr *ic;
79
80 ic = skb_header_pointer(skb, protooff, sizeof(_ich), &_ich);
81 if (ic == NULL)
82 return false;
83
84 *port = (__force __be16)
85 htons((ic->icmp6_type << 8) | ic->icmp6_code);
86 break;
87 }
88 default:
89 break;
90 }
91 *proto = protocol;
92
93 return true;
94}
95
96bool
97ip_set_get_ip4_port(const struct sk_buff *skb, bool src,
98 __be16 *port, u8 *proto)
99{
100 const struct iphdr *iph = ip_hdr(skb);
101 unsigned int protooff = ip_hdrlen(skb);
102 int protocol = iph->protocol;
103
104 /* See comments at tcp_match in ip_tables.c */
105 if (protocol <= 0 || (ntohs(iph->frag_off) & IP_OFFSET))
106 return false;
107
108 return get_port(skb, protocol, protooff, src, port, proto);
109}
110EXPORT_SYMBOL_GPL(ip_set_get_ip4_port);
111
Igor Maravićc0cd1152011-12-12 02:58:24 +0000112#if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100113bool
114ip_set_get_ip6_port(const struct sk_buff *skb, bool src,
115 __be16 *port, u8 *proto)
116{
Patrick McHardy724bab42011-02-02 23:50:01 +0100117 int protoff;
118 u8 nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800119 __be16 frag_off;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100120
Patrick McHardy724bab42011-02-02 23:50:01 +0100121 nexthdr = ipv6_hdr(skb)->nexthdr;
Jesse Gross75f28112011-11-30 17:05:51 -0800122 protoff = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &nexthdr,
123 &frag_off);
Patrick McHardy724bab42011-02-02 23:50:01 +0100124 if (protoff < 0)
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100125 return false;
126
Patrick McHardy724bab42011-02-02 23:50:01 +0100127 return get_port(skb, nexthdr, protoff, src, port, proto);
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100128}
129EXPORT_SYMBOL_GPL(ip_set_get_ip6_port);
Patrick McHardy724bab42011-02-02 23:50:01 +0100130#endif
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100131
132bool
133ip_set_get_ip_port(const struct sk_buff *skb, u8 pf, bool src, __be16 *port)
134{
135 bool ret;
136 u8 proto;
137
138 switch (pf) {
Jan Engelhardtc15f1c82012-02-14 00:24:10 +0100139 case NFPROTO_IPV4:
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100140 ret = ip_set_get_ip4_port(skb, src, port, &proto);
Patrick McHardy316ed382011-02-02 09:31:37 +0100141 break;
Jan Engelhardtc15f1c82012-02-14 00:24:10 +0100142 case NFPROTO_IPV6:
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100143 ret = ip_set_get_ip6_port(skb, src, port, &proto);
Patrick McHardy316ed382011-02-02 09:31:37 +0100144 break;
Jozsef Kadlecsika7b4f982011-02-01 15:28:35 +0100145 default:
146 return false;
147 }
148 if (!ret)
149 return ret;
150 switch (proto) {
151 case IPPROTO_TCP:
152 case IPPROTO_UDP:
153 return true;
154 default:
155 return false;
156 }
157}
158EXPORT_SYMBOL_GPL(ip_set_get_ip_port);