]> git.proxmox.com Git - mirror_ovs.git/blame - datapath/conntrack.c
datapath: add and use nf_ct_set helper
[mirror_ovs.git] / datapath / conntrack.c
CommitLineData
a94ebc39
JS
1/*
2 * Copyright (c) 2015 Nicira, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 */
13
14#include <linux/kconfig.h>
15#include <linux/version.h>
16
8063e095 17#if IS_ENABLED(CONFIG_NF_CONNTRACK)
a94ebc39
JS
18
19#include <linux/module.h>
20#include <linux/openvswitch.h>
f8f97cdc
JR
21#include <linux/tcp.h>
22#include <linux/udp.h>
23#include <linux/sctp.h>
a94ebc39
JS
24#include <net/ip.h>
25#include <net/netfilter/nf_conntrack_core.h>
11251c17 26#include <net/netfilter/nf_conntrack_helper.h>
038e34ab 27#include <net/netfilter/nf_conntrack_labels.h>
f8f97cdc 28#include <net/netfilter/nf_conntrack_seqadj.h>
a94ebc39
JS
29#include <net/netfilter/nf_conntrack_zones.h>
30#include <net/netfilter/ipv6/nf_defrag_ipv6.h>
31
f8f97cdc
JR
32#ifdef CONFIG_NF_NAT_NEEDED
33#include <linux/netfilter/nf_nat.h>
34#include <net/netfilter/nf_nat_core.h>
35#include <net/netfilter/nf_nat_l3proto.h>
36#endif
37
a94ebc39
JS
38#include "datapath.h"
39#include "conntrack.h"
40#include "flow.h"
41#include "flow_netlink.h"
86c2eb45 42#include "gso.h"
a94ebc39
JS
43
44struct ovs_ct_len_tbl {
f8f97cdc
JR
45 int maxlen;
46 int minlen;
a94ebc39
JS
47};
48
372ce973
JS
49/* Metadata mark for masked write to conntrack mark */
50struct md_mark {
51 u32 value;
52 u32 mask;
53};
54
038e34ab 55/* Metadata label for masked write to conntrack label. */
c05e2094
JS
56struct md_labels {
57 struct ovs_key_ct_labels value;
58 struct ovs_key_ct_labels mask;
038e34ab
JS
59};
60
f8f97cdc
JR
61enum ovs_ct_nat {
62 OVS_CT_NAT = 1 << 0, /* NAT for committed connections only. */
63 OVS_CT_SRC_NAT = 1 << 1, /* Source NAT for NEW connections. */
64 OVS_CT_DST_NAT = 1 << 2, /* Destination NAT for NEW connections. */
65};
66
a94ebc39
JS
67/* Conntrack action context for execution. */
68struct ovs_conntrack_info {
11251c17 69 struct nf_conntrack_helper *helper;
a94ebc39
JS
70 struct nf_conntrack_zone zone;
71 struct nf_conn *ct;
c05e2094 72 u8 commit : 1;
f8f97cdc 73 u8 nat : 3; /* enum ovs_ct_nat */
9f1de150 74 u8 random_fully_compat : 1; /* bool */
a94ebc39 75 u16 family;
372ce973 76 struct md_mark mark;
c05e2094 77 struct md_labels labels;
f8f97cdc
JR
78#ifdef CONFIG_NF_NAT_NEEDED
79 struct nf_nat_range range; /* Only present for SRC NAT and DST NAT. */
80#endif
a94ebc39
JS
81};
82
11251c17
JS
83static void __ovs_ct_free_action(struct ovs_conntrack_info *ct_info);
84
a94ebc39
JS
85static u16 key_to_nfproto(const struct sw_flow_key *key)
86{
87 switch (ntohs(key->eth.type)) {
88 case ETH_P_IP:
89 return NFPROTO_IPV4;
90 case ETH_P_IPV6:
91 return NFPROTO_IPV6;
92 default:
93 return NFPROTO_UNSPEC;
94 }
95}
96
97/* Map SKB connection state into the values used by flow definition. */
98static u8 ovs_ct_get_state(enum ip_conntrack_info ctinfo)
99{
100 u8 ct_state = OVS_CS_F_TRACKED;
101
102 switch (ctinfo) {
103 case IP_CT_ESTABLISHED_REPLY:
104 case IP_CT_RELATED_REPLY:
a94ebc39
JS
105 ct_state |= OVS_CS_F_REPLY_DIR;
106 break;
107 default:
108 break;
109 }
110
111 switch (ctinfo) {
112 case IP_CT_ESTABLISHED:
113 case IP_CT_ESTABLISHED_REPLY:
114 ct_state |= OVS_CS_F_ESTABLISHED;
115 break;
116 case IP_CT_RELATED:
117 case IP_CT_RELATED_REPLY:
118 ct_state |= OVS_CS_F_RELATED;
119 break;
120 case IP_CT_NEW:
a94ebc39
JS
121 ct_state |= OVS_CS_F_NEW;
122 break;
123 default:
124 break;
125 }
126
127 return ct_state;
128}
129
c05e2094
JS
130static u32 ovs_ct_get_mark(const struct nf_conn *ct)
131{
132#if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
133 return ct ? ct->mark : 0;
134#else
135 return 0;
136#endif
137}
138
9f04eabe
JR
139static size_t ovs_ct_get_labels_len(struct nf_conn_labels *cl)
140{
141#ifdef HAVE_NF_CONN_LABELS_WITH_WORDS
142 return cl->words * sizeof(long);
143#else
144 return sizeof(cl->bits);
145#endif
146}
147
c05e2094
JS
148static void ovs_ct_get_labels(const struct nf_conn *ct,
149 struct ovs_key_ct_labels *labels)
038e34ab
JS
150{
151 struct nf_conn_labels *cl = ct ? nf_ct_labels_find(ct) : NULL;
152
153 if (cl) {
9f04eabe 154 size_t len = ovs_ct_get_labels_len(cl);
038e34ab 155
c05e2094
JS
156 if (len > OVS_CT_LABELS_LEN)
157 len = OVS_CT_LABELS_LEN;
158 else if (len < OVS_CT_LABELS_LEN)
159 memset(labels, 0, OVS_CT_LABELS_LEN);
160 memcpy(labels, cl->bits, len);
038e34ab 161 } else {
c05e2094 162 memset(labels, 0, OVS_CT_LABELS_LEN);
038e34ab
JS
163 }
164}
165
a94ebc39 166static void __ovs_ct_update_key(struct sw_flow_key *key, u8 state,
372ce973
JS
167 const struct nf_conntrack_zone *zone,
168 const struct nf_conn *ct)
a94ebc39
JS
169{
170 key->ct.state = state;
171 key->ct.zone = zone->id;
c05e2094
JS
172 key->ct.mark = ovs_ct_get_mark(ct);
173 ovs_ct_get_labels(ct, &key->ct.labels);
a94ebc39
JS
174}
175
f8f97cdc
JR
176/* Update 'key' based on skb->nfct. If 'post_ct' is true, then OVS has
177 * previously sent the packet to conntrack via the ct action. If
178 * 'keep_nat_flags' is true, the existing NAT flags retained, else they are
179 * initialized from the connection status.
a94ebc39
JS
180 */
181static void ovs_ct_update_key(const struct sk_buff *skb,
f23593a1 182 const struct ovs_conntrack_info *info,
f8f97cdc
JR
183 struct sw_flow_key *key, bool post_ct,
184 bool keep_nat_flags)
a94ebc39
JS
185{
186 const struct nf_conntrack_zone *zone = &nf_ct_zone_dflt;
187 enum ip_conntrack_info ctinfo;
188 struct nf_conn *ct;
189 u8 state = 0;
190
191 ct = nf_ct_get(skb, &ctinfo);
192 if (ct) {
193 state = ovs_ct_get_state(ctinfo);
b0f251cd 194 /* All unconfirmed entries are NEW connections. */
c05e2094
JS
195 if (!nf_ct_is_confirmed(ct))
196 state |= OVS_CS_F_NEW;
b0f251cd
JR
197 /* OVS persists the related flag for the duration of the
198 * connection.
199 */
a94ebc39
JS
200 if (ct->master)
201 state |= OVS_CS_F_RELATED;
f8f97cdc
JR
202 if (keep_nat_flags) {
203 state |= key->ct.state & OVS_CS_F_NAT_MASK;
204 } else {
205 if (ct->status & IPS_SRC_NAT)
206 state |= OVS_CS_F_SRC_NAT;
207 if (ct->status & IPS_DST_NAT)
208 state |= OVS_CS_F_DST_NAT;
209 }
a94ebc39
JS
210 zone = nf_ct_zone(ct);
211 } else if (post_ct) {
212 state = OVS_CS_F_TRACKED | OVS_CS_F_INVALID;
f23593a1
JS
213 if (info)
214 zone = &info->zone;
a94ebc39 215 }
372ce973 216 __ovs_ct_update_key(key, state, zone, ct);
a94ebc39
JS
217}
218
b0f251cd
JR
219/* This is called to initialize CT key fields possibly coming in from the local
220 * stack.
221 */
a94ebc39
JS
222void ovs_ct_fill_key(const struct sk_buff *skb, struct sw_flow_key *key)
223{
f8f97cdc 224 ovs_ct_update_key(skb, NULL, key, false, false);
a94ebc39
JS
225}
226
227int ovs_ct_put_key(const struct sw_flow_key *key, struct sk_buff *skb)
228{
c05e2094 229 if (nla_put_u32(skb, OVS_KEY_ATTR_CT_STATE, key->ct.state))
a94ebc39
JS
230 return -EMSGSIZE;
231
232 if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
233 nla_put_u16(skb, OVS_KEY_ATTR_CT_ZONE, key->ct.zone))
234 return -EMSGSIZE;
235
372ce973
JS
236 if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) &&
237 nla_put_u32(skb, OVS_KEY_ATTR_CT_MARK, key->ct.mark))
238 return -EMSGSIZE;
239
c05e2094
JS
240 if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
241 nla_put(skb, OVS_KEY_ATTR_CT_LABELS, sizeof(key->ct.labels),
242 &key->ct.labels))
038e34ab
JS
243 return -EMSGSIZE;
244
372ce973
JS
245 return 0;
246}
247
248static int ovs_ct_set_mark(struct sk_buff *skb, struct sw_flow_key *key,
249 u32 ct_mark, u32 mask)
250{
c05e2094 251#if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
372ce973
JS
252 enum ip_conntrack_info ctinfo;
253 struct nf_conn *ct;
254 u32 new_mark;
255
372ce973
JS
256 /* The connection could be invalid, in which case set_mark is no-op. */
257 ct = nf_ct_get(skb, &ctinfo);
258 if (!ct)
259 return 0;
260
261 new_mark = ct_mark | (ct->mark & ~(mask));
262 if (ct->mark != new_mark) {
263 ct->mark = new_mark;
264 nf_conntrack_event_cache(IPCT_MARK, ct);
265 key->ct.mark = new_mark;
266 }
267
a94ebc39 268 return 0;
c05e2094
JS
269#else
270 return -ENOTSUPP;
271#endif
a94ebc39
JS
272}
273
c05e2094
JS
274static int ovs_ct_set_labels(struct sk_buff *skb, struct sw_flow_key *key,
275 const struct ovs_key_ct_labels *labels,
276 const struct ovs_key_ct_labels *mask)
038e34ab
JS
277{
278 enum ip_conntrack_info ctinfo;
279 struct nf_conn_labels *cl;
280 struct nf_conn *ct;
281 int err;
282
038e34ab
JS
283 /* The connection could be invalid, in which case set_label is no-op.*/
284 ct = nf_ct_get(skb, &ctinfo);
285 if (!ct)
286 return 0;
287
288 cl = nf_ct_labels_find(ct);
289 if (!cl) {
290 nf_ct_labels_ext_add(ct);
291 cl = nf_ct_labels_find(ct);
292 }
9f04eabe
JR
293
294 if (!cl || ovs_ct_get_labels_len(cl) < OVS_CT_LABELS_LEN)
038e34ab
JS
295 return -ENOSPC;
296
c05e2094
JS
297 err = nf_connlabels_replace(ct, (u32 *)labels, (u32 *)mask,
298 OVS_CT_LABELS_LEN / sizeof(u32));
038e34ab
JS
299 if (err)
300 return err;
301
c05e2094 302 ovs_ct_get_labels(ct, &key->ct.labels);
038e34ab
JS
303 return 0;
304}
305
11251c17
JS
306/* 'skb' should already be pulled to nh_ofs. */
307static int ovs_ct_helper(struct sk_buff *skb, u16 proto)
308{
309 const struct nf_conntrack_helper *helper;
310 const struct nf_conn_help *help;
311 enum ip_conntrack_info ctinfo;
312 unsigned int protoff;
313 struct nf_conn *ct;
4cc85f28 314 u8 nexthdr;
f8f97cdc 315 int err;
11251c17 316
3d47fa46
JH
317#if LINUX_VERSION_CODE < KERNEL_VERSION(4,6,0)
318 bool dst_set = false;
319 struct rtable rt = { .rt_flags = 0 };
320#endif
321
11251c17
JS
322 ct = nf_ct_get(skb, &ctinfo);
323 if (!ct || ctinfo == IP_CT_RELATED_REPLY)
324 return NF_ACCEPT;
325
326 help = nfct_help(ct);
327 if (!help)
328 return NF_ACCEPT;
329
330 helper = rcu_dereference(help->helper);
331 if (!helper)
332 return NF_ACCEPT;
333
334 switch (proto) {
335 case NFPROTO_IPV4:
336 protoff = ip_hdrlen(skb);
337 break;
338 case NFPROTO_IPV6: {
11251c17 339 __be16 frag_off;
c05e2094 340 int ofs;
11251c17 341
4cc85f28 342 nexthdr = ipv6_hdr(skb)->nexthdr;
c05e2094
JS
343 ofs = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &nexthdr,
344 &frag_off);
345 if (ofs < 0 || (frag_off & htons(~0x7)) != 0) {
11251c17
JS
346 pr_debug("proto header not found\n");
347 return NF_ACCEPT;
348 }
c05e2094 349 protoff = ofs;
11251c17
JS
350 break;
351 }
352 default:
353 WARN_ONCE(1, "helper invoked on non-IP family!");
354 return NF_DROP;
355 }
356
4cc85f28
JR
357#if LINUX_VERSION_CODE < KERNEL_VERSION(4,6,0)
358 /* Linux 4.5 and older depend on skb_dst being set when recalculating
359 * checksums after NAT helper has mangled TCP or UDP packet payload.
3d47fa46
JH
360 * skb_dst is cast to a rtable struct and the flags examined.
361 * Forcing these flags to have RTCF_LOCAL not set ensures checksum mod
362 * is carried out in the same way as kernel versions > 4.5
4cc85f28 363 */
3d47fa46
JH
364 if (ct->status & IPS_NAT_MASK && skb->ip_summed != CHECKSUM_PARTIAL
365 && !skb_dst(skb)) {
366 dst_set = true;
367 skb_dst_set(skb, &rt.dst);
4cc85f28
JR
368 }
369#endif
f8f97cdc
JR
370 err = helper->help(skb, protoff, ct, ctinfo);
371 if (err != NF_ACCEPT)
372 return err;
373
3d47fa46
JH
374#if LINUX_VERSION_CODE < KERNEL_VERSION(4,6,0)
375 if (dst_set)
376 skb_dst_set(skb, NULL);
377#endif
378
f8f97cdc
JR
379 /* Adjust seqs after helper. This is needed due to some helpers (e.g.,
380 * FTP with NAT) adusting the TCP payload size when mangling IP
381 * addresses and/or port numbers in the text-based control connection.
382 */
383 if (test_bit(IPS_SEQ_ADJUST_BIT, &ct->status) &&
384 !nf_ct_seq_adjust(skb, ct, ctinfo, protoff))
385 return NF_DROP;
386 return NF_ACCEPT;
11251c17
JS
387}
388
c05e2094
JS
389/* Returns 0 on success, -EINPROGRESS if 'skb' is stolen, or other nonzero
390 * value if 'skb' is freed.
391 */
a94ebc39
JS
392static int handle_fragments(struct net *net, struct sw_flow_key *key,
393 u16 zone, struct sk_buff *skb)
394{
86c2eb45 395 struct ovs_gso_cb ovs_cb = *OVS_GSO_CB(skb);
2e602ea3 396 int err;
a94ebc39 397
a94ebc39
JS
398 if (key->eth.type == htons(ETH_P_IP)) {
399 enum ip_defrag_users user = IP_DEFRAG_CONNTRACK_IN + zone;
a94ebc39
JS
400
401 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
39c0ff22 402 err = ip_defrag(net, skb, user);
a94ebc39
JS
403 if (err)
404 return err;
405
86c2eb45 406 ovs_cb.dp_cb.mru = IPCB(skb)->frag_max_size;
a94ebc39 407#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
c05e2094 408 } else if (key->eth.type == htons(ETH_P_IPV6)) {
a94ebc39 409 enum ip6_defrag_users user = IP6_DEFRAG_CONNTRACK_IN + zone;
a94ebc39 410
66ec6da8 411 skb_orphan(skb);
a94ebc39 412 memset(IP6CB(skb), 0, sizeof(struct inet6_skb_parm));
2e602ea3 413 err = nf_ct_frag6_gather(net, skb, user);
6b4fe5a9
DDP
414 if (err) {
415 if (err != -EINPROGRESS)
416 kfree_skb(skb);
2e602ea3 417 return err;
6b4fe5a9 418 }
a94ebc39 419
2e602ea3 420 key->ip.proto = ipv6_hdr(skb)->nexthdr;
86c2eb45 421 ovs_cb.dp_cb.mru = IP6CB(skb)->frag_max_size;
a94ebc39
JS
422#endif /* IP frag support */
423 } else {
c05e2094 424 kfree_skb(skb);
a94ebc39
JS
425 return -EPFNOSUPPORT;
426 }
427
428 key->ip.frag = OVS_FRAG_TYPE_NONE;
429 skb_clear_hash(skb);
430 skb->ignore_df = 1;
86c2eb45 431 *OVS_GSO_CB(skb) = ovs_cb;
a94ebc39
JS
432
433 return 0;
434}
435
436static struct nf_conntrack_expect *
437ovs_ct_expect_find(struct net *net, const struct nf_conntrack_zone *zone,
438 u16 proto, const struct sk_buff *skb)
439{
440 struct nf_conntrack_tuple tuple;
441
fa67f8e0 442 if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb), proto, net, &tuple))
a94ebc39
JS
443 return NULL;
444 return __nf_ct_expect_find(net, zone, &tuple);
445}
446
3dd9e118
JR
447/* This replicates logic from nf_conntrack_core.c that is not exported. */
448static enum ip_conntrack_info
449ovs_ct_get_info(const struct nf_conntrack_tuple_hash *h)
450{
451 const struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(h);
452
453 if (NF_CT_DIRECTION(h) == IP_CT_DIR_REPLY)
454 return IP_CT_ESTABLISHED_REPLY;
455 /* Once we've had two way comms, always ESTABLISHED. */
456 if (test_bit(IPS_SEEN_REPLY_BIT, &ct->status))
457 return IP_CT_ESTABLISHED;
458 if (test_bit(IPS_EXPECTED_BIT, &ct->status))
459 return IP_CT_RELATED;
460 return IP_CT_NEW;
461}
462
463/* Find an existing connection which this packet belongs to without
464 * re-attributing statistics or modifying the connection state. This allows an
465 * skb->nfct lost due to an upcall to be recovered during actions execution.
466 *
467 * Must be called with rcu_read_lock.
468 *
469 * On success, populates skb->nfct and skb->nfctinfo, and returns the
470 * connection. Returns NULL if there is no existing entry.
471 */
472static struct nf_conn *
473ovs_ct_find_existing(struct net *net, const struct nf_conntrack_zone *zone,
474 u8 l3num, struct sk_buff *skb)
475{
476 struct nf_conntrack_l3proto *l3proto;
477 struct nf_conntrack_l4proto *l4proto;
478 struct nf_conntrack_tuple tuple;
479 struct nf_conntrack_tuple_hash *h;
3dd9e118
JR
480 struct nf_conn *ct;
481 unsigned int dataoff;
482 u8 protonum;
483
484 l3proto = __nf_ct_l3proto_find(l3num);
3dd9e118
JR
485 if (l3proto->get_l4proto(skb, skb_network_offset(skb), &dataoff,
486 &protonum) <= 0) {
487 pr_debug("ovs_ct_find_existing: Can't get protonum\n");
488 return NULL;
489 }
490 l4proto = __nf_ct_l4proto_find(l3num, protonum);
3dd9e118
JR
491 if (!nf_ct_get_tuple(skb, skb_network_offset(skb), dataoff, l3num,
492 protonum, net, &tuple, l3proto, l4proto)) {
493 pr_debug("ovs_ct_find_existing: Can't get tuple\n");
494 return NULL;
495 }
496
497 /* look for tuple match */
498 h = nf_conntrack_find_get(net, zone, &tuple);
499 if (!h)
500 return NULL; /* Not found. */
501
502 ct = nf_ct_tuplehash_to_ctrack(h);
503
dfa791b2 504 nf_ct_set(skb, ct, ovs_ct_get_info(h));
3dd9e118
JR
505 return ct;
506}
507
a94ebc39 508/* Determine whether skb->nfct is equal to the result of conntrack lookup. */
3dd9e118
JR
509static bool skb_nfct_cached(struct net *net,
510 const struct sw_flow_key *key,
511 const struct ovs_conntrack_info *info,
512 struct sk_buff *skb)
a94ebc39
JS
513{
514 enum ip_conntrack_info ctinfo;
515 struct nf_conn *ct;
516
517 ct = nf_ct_get(skb, &ctinfo);
3dd9e118
JR
518 /* If no ct, check if we have evidence that an existing conntrack entry
519 * might be found for this skb. This happens when we lose a skb->nfct
520 * due to an upcall. If the connection was not confirmed, it is not
521 * cached and needs to be run through conntrack again.
522 */
523 if (!ct && key->ct.state & OVS_CS_F_TRACKED &&
524 !(key->ct.state & OVS_CS_F_INVALID) &&
525 key->ct.zone == info->zone.id)
526 ct = ovs_ct_find_existing(net, &info->zone, info->family, skb);
a94ebc39
JS
527 if (!ct)
528 return false;
529 if (!net_eq(net, read_pnet(&ct->ct_net)))
530 return false;
531 if (!nf_ct_zone_equal_any(info->ct, nf_ct_zone(ct)))
532 return false;
11251c17
JS
533 if (info->helper) {
534 struct nf_conn_help *help;
535
536 help = nf_ct_ext_find(ct, NF_CT_EXT_HELPER);
537 if (help && rcu_access_pointer(help->helper) != info->helper)
538 return false;
539 }
a94ebc39
JS
540
541 return true;
542}
543
f8f97cdc
JR
544#ifdef CONFIG_NF_NAT_NEEDED
545/* Modelled after nf_nat_ipv[46]_fn().
546 * range is only used for new, uninitialized NAT state.
547 * Returns either NF_ACCEPT or NF_DROP.
548 */
549static int ovs_ct_nat_execute(struct sk_buff *skb, struct nf_conn *ct,
550 enum ip_conntrack_info ctinfo,
551 const struct nf_nat_range *range,
552 enum nf_nat_manip_type maniptype)
553{
554 int hooknum, nh_off, err = NF_ACCEPT;
555
556 nh_off = skb_network_offset(skb);
073c7b86 557 skb_pull_rcsum(skb, nh_off);
f8f97cdc
JR
558
559 /* See HOOK2MANIP(). */
560 if (maniptype == NF_NAT_MANIP_SRC)
561 hooknum = NF_INET_LOCAL_IN; /* Source NAT */
562 else
563 hooknum = NF_INET_LOCAL_OUT; /* Destination NAT */
564
565 switch (ctinfo) {
566 case IP_CT_RELATED:
567 case IP_CT_RELATED_REPLY:
90b01477
AB
568 if (IS_ENABLED(CONFIG_NF_NAT_IPV4) &&
569 skb->protocol == htons(ETH_P_IP) &&
f8f97cdc
JR
570 ip_hdr(skb)->protocol == IPPROTO_ICMP) {
571 if (!nf_nat_icmp_reply_translation(skb, ct, ctinfo,
572 hooknum))
573 err = NF_DROP;
574 goto push;
90b01477
AB
575 } else if (IS_ENABLED(CONFIG_NF_NAT_IPV6) &&
576 skb->protocol == htons(ETH_P_IPV6)) {
f8f97cdc
JR
577 __be16 frag_off;
578 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
579 int hdrlen = ipv6_skip_exthdr(skb,
580 sizeof(struct ipv6hdr),
581 &nexthdr, &frag_off);
582
583 if (hdrlen >= 0 && nexthdr == IPPROTO_ICMPV6) {
584 if (!nf_nat_icmpv6_reply_translation(skb, ct,
585 ctinfo,
586 hooknum,
587 hdrlen))
588 err = NF_DROP;
589 goto push;
590 }
f8f97cdc
JR
591 }
592 /* Non-ICMP, fall thru to initialize if needed. */
593 case IP_CT_NEW:
594 /* Seen it before? This can happen for loopback, retrans,
595 * or local packets.
596 */
597 if (!nf_nat_initialized(ct, maniptype)) {
598 /* Initialize according to the NAT action. */
599 err = (range && range->flags & NF_NAT_RANGE_MAP_IPS)
600 /* Action is set up to establish a new
601 * mapping.
602 */
603 ? nf_nat_setup_info(ct, range, maniptype)
604 : nf_nat_alloc_null_binding(ct, hooknum);
605 if (err != NF_ACCEPT)
606 goto push;
607 }
608 break;
609
610 case IP_CT_ESTABLISHED:
611 case IP_CT_ESTABLISHED_REPLY:
612 break;
613
614 default:
615 err = NF_DROP;
616 goto push;
617 }
618
619 err = nf_nat_packet(ct, ctinfo, hooknum, skb);
620push:
621 skb_push(skb, nh_off);
073c7b86 622 skb_postpush_rcsum(skb, skb->data, nh_off);
f8f97cdc
JR
623
624 return err;
625}
626
627static void ovs_nat_update_key(struct sw_flow_key *key,
628 const struct sk_buff *skb,
629 enum nf_nat_manip_type maniptype)
630{
631 if (maniptype == NF_NAT_MANIP_SRC) {
632 __be16 src;
633
634 key->ct.state |= OVS_CS_F_SRC_NAT;
635 if (key->eth.type == htons(ETH_P_IP))
636 key->ipv4.addr.src = ip_hdr(skb)->saddr;
637 else if (key->eth.type == htons(ETH_P_IPV6))
638 memcpy(&key->ipv6.addr.src, &ipv6_hdr(skb)->saddr,
639 sizeof(key->ipv6.addr.src));
640 else
641 return;
642
643 if (key->ip.proto == IPPROTO_UDP)
644 src = udp_hdr(skb)->source;
645 else if (key->ip.proto == IPPROTO_TCP)
646 src = tcp_hdr(skb)->source;
647 else if (key->ip.proto == IPPROTO_SCTP)
648 src = sctp_hdr(skb)->source;
649 else
650 return;
651
652 key->tp.src = src;
653 } else {
654 __be16 dst;
655
656 key->ct.state |= OVS_CS_F_DST_NAT;
657 if (key->eth.type == htons(ETH_P_IP))
658 key->ipv4.addr.dst = ip_hdr(skb)->daddr;
659 else if (key->eth.type == htons(ETH_P_IPV6))
660 memcpy(&key->ipv6.addr.dst, &ipv6_hdr(skb)->daddr,
661 sizeof(key->ipv6.addr.dst));
662 else
663 return;
664
665 if (key->ip.proto == IPPROTO_UDP)
666 dst = udp_hdr(skb)->dest;
667 else if (key->ip.proto == IPPROTO_TCP)
668 dst = tcp_hdr(skb)->dest;
669 else if (key->ip.proto == IPPROTO_SCTP)
670 dst = sctp_hdr(skb)->dest;
671 else
672 return;
673
674 key->tp.dst = dst;
675 }
676}
677
678/* Returns NF_DROP if the packet should be dropped, NF_ACCEPT otherwise. */
679static int ovs_ct_nat(struct net *net, struct sw_flow_key *key,
680 const struct ovs_conntrack_info *info,
681 struct sk_buff *skb, struct nf_conn *ct,
682 enum ip_conntrack_info ctinfo)
683{
684 enum nf_nat_manip_type maniptype;
685 int err;
686
687 if (nf_ct_is_untracked(ct)) {
688 /* A NAT action may only be performed on tracked packets. */
689 return NF_ACCEPT;
690 }
691
692 /* Add NAT extension if not confirmed yet. */
693 if (!nf_ct_is_confirmed(ct) && !nf_ct_nat_ext_add(ct))
694 return NF_ACCEPT; /* Can't NAT. */
695
696 /* Determine NAT type.
697 * Check if the NAT type can be deduced from the tracked connection.
d2e8b514
JR
698 * Make sure new expected connections (IP_CT_RELATED) are NATted only
699 * when committing.
f8f97cdc
JR
700 */
701 if (info->nat & OVS_CT_NAT && ctinfo != IP_CT_NEW &&
702 ct->status & IPS_NAT_MASK &&
d2e8b514 703 (ctinfo != IP_CT_RELATED || info->commit)) {
f8f97cdc
JR
704 /* NAT an established or related connection like before. */
705 if (CTINFO2DIR(ctinfo) == IP_CT_DIR_REPLY)
706 /* This is the REPLY direction for a connection
707 * for which NAT was applied in the forward
708 * direction. Do the reverse NAT.
709 */
710 maniptype = ct->status & IPS_SRC_NAT
711 ? NF_NAT_MANIP_DST : NF_NAT_MANIP_SRC;
712 else
713 maniptype = ct->status & IPS_SRC_NAT
714 ? NF_NAT_MANIP_SRC : NF_NAT_MANIP_DST;
715 } else if (info->nat & OVS_CT_SRC_NAT) {
716 maniptype = NF_NAT_MANIP_SRC;
717 } else if (info->nat & OVS_CT_DST_NAT) {
718 maniptype = NF_NAT_MANIP_DST;
719 } else {
720 return NF_ACCEPT; /* Connection is not NATed. */
721 }
722 err = ovs_ct_nat_execute(skb, ct, ctinfo, &info->range, maniptype);
723
724 /* Mark NAT done if successful and update the flow key. */
725 if (err == NF_ACCEPT)
726 ovs_nat_update_key(key, skb, maniptype);
727
728 return err;
729}
730#else /* !CONFIG_NF_NAT_NEEDED */
731static int ovs_ct_nat(struct net *net, struct sw_flow_key *key,
732 const struct ovs_conntrack_info *info,
733 struct sk_buff *skb, struct nf_conn *ct,
734 enum ip_conntrack_info ctinfo)
735{
736 return NF_ACCEPT;
737}
738#endif
739
b0f251cd 740/* Pass 'skb' through conntrack in 'net', using zone configured in 'info', if
a04a5794
JR
741 * not done already. Update key with new CT state after passing the packet
742 * through conntrack.
b0f251cd
JR
743 * Note that if the packet is deemed invalid by conntrack, skb->nfct will be
744 * set to NULL and 0 will be returned.
745 */
c05e2094 746static int __ovs_ct_lookup(struct net *net, struct sw_flow_key *key,
a94ebc39
JS
747 const struct ovs_conntrack_info *info,
748 struct sk_buff *skb)
749{
750 /* If we are recirculating packets to match on conntrack fields and
751 * committing with a separate conntrack action, then we don't need to
752 * actually run the packet through conntrack twice unless it's for a
753 * different zone.
754 */
b21d237e
JR
755 bool cached = skb_nfct_cached(net, key, info, skb);
756 enum ip_conntrack_info ctinfo;
757 struct nf_conn *ct;
758
759 if (!cached) {
a94ebc39 760 struct nf_conn *tmpl = info->ct;
9bf67b92 761 int err;
a94ebc39
JS
762
763 /* Associate skb with specified zone. */
764 if (tmpl) {
d3c313c1
FW
765 if (skb_nfct(skb))
766 nf_conntrack_put(skb_nfct(skb));
a94ebc39 767 nf_conntrack_get(&tmpl->ct_general);
dfa791b2 768 nf_ct_set(skb, tmpl, IP_CT_NEW);
a94ebc39
JS
769 }
770
a6d28f7c
PNA
771 err = nf_conntrack_in(net, info->family,
772 NF_INET_PRE_ROUTING, skb);
9bf67b92 773 if (err != NF_ACCEPT)
a94ebc39 774 return -ENOENT;
11251c17 775
f8f97cdc
JR
776 /* Clear CT state NAT flags to mark that we have not yet done
777 * NAT after the nf_conntrack_in() call. We can actually clear
778 * the whole state, as it will be re-initialized below.
779 */
780 key->ct.state = 0;
781
782 /* Update the key, but keep the NAT flags. */
783 ovs_ct_update_key(skb, info, key, true, true);
b21d237e 784 }
a04a5794 785
b21d237e 786 ct = nf_ct_get(skb, &ctinfo);
f8f97cdc
JR
787 if (ct) {
788 /* Packets starting a new connection must be NATted before the
789 * helper, so that the helper knows about the NAT. We enforce
790 * this by delaying both NAT and helper calls for unconfirmed
791 * connections until the committing CT action. For later
792 * packets NAT and Helper may be called in either order.
793 *
794 * NAT will be done only if the CT action has NAT, and only
795 * once per packet (per zone), as guarded by the NAT bits in
796 * the key->ct.state.
797 */
798 if (info->nat && !(key->ct.state & OVS_CS_F_NAT_MASK) &&
799 (nf_ct_is_confirmed(ct) || info->commit) &&
800 ovs_ct_nat(net, key, info, skb, ct, ctinfo) != NF_ACCEPT) {
801 return -EINVAL;
802 }
803
b87a5aac
JS
804 /* Userspace may decide to perform a ct lookup without a helper
805 * specified followed by a (recirculate and) commit with one.
806 * Therefore, for unconfirmed connections which we will commit,
807 * we need to attach the helper here.
808 */
809 if (!nf_ct_is_confirmed(ct) && info->commit &&
810 info->helper && !nfct_help(ct)) {
811 int err = __nf_ct_try_assign_helper(ct, info->ct,
812 GFP_ATOMIC);
813 if (err)
814 return err;
815 }
816
f8f97cdc
JR
817 /* Call the helper only if:
818 * - nf_conntrack_in() was executed above ("!cached") for a
819 * confirmed connection, or
820 * - When committing an unconfirmed connection.
821 */
822 if ((nf_ct_is_confirmed(ct) ? !cached : info->commit) &&
823 ovs_ct_helper(skb, info->family) != NF_ACCEPT) {
824 return -EINVAL;
825 }
a94ebc39
JS
826 }
827
828 return 0;
829}
830
831/* Lookup connection and read fields into key. */
832static int ovs_ct_lookup(struct net *net, struct sw_flow_key *key,
833 const struct ovs_conntrack_info *info,
834 struct sk_buff *skb)
835{
836 struct nf_conntrack_expect *exp;
837
b0f251cd
JR
838 /* If we pass an expected packet through nf_conntrack_in() the
839 * expectation is typically removed, but the packet could still be
840 * lost in upcall processing. To prevent this from happening we
841 * perform an explicit expectation lookup. Expected connections are
842 * always new, and will be passed through conntrack only when they are
843 * committed, as it is OK to remove the expectation at that time.
844 */
a94ebc39
JS
845 exp = ovs_ct_expect_find(net, &info->zone, info->family, skb);
846 if (exp) {
847 u8 state;
848
f8f97cdc
JR
849 /* NOTE: New connections are NATted and Helped only when
850 * committed, so we are not calling into NAT here.
851 */
a94ebc39 852 state = OVS_CS_F_TRACKED | OVS_CS_F_NEW | OVS_CS_F_RELATED;
372ce973 853 __ovs_ct_update_key(key, state, &info->zone, exp->master);
f325530e
PS
854 } else {
855 struct nf_conn *ct;
856 int err;
857
858 err = __ovs_ct_lookup(net, key, info, skb);
859 if (err)
860 return err;
861
d3c313c1 862 ct = (struct nf_conn *)skb_nfct(skb);
f325530e
PS
863 if (ct)
864 nf_ct_deliver_cached_events(ct);
865 }
a94ebc39
JS
866
867 return 0;
868}
869
c05e2094 870static bool labels_nonzero(const struct ovs_key_ct_labels *labels)
038e34ab
JS
871{
872 size_t i;
873
c05e2094
JS
874 for (i = 0; i < sizeof(*labels); i++)
875 if (labels->ct_labels[i])
038e34ab
JS
876 return true;
877
878 return false;
879}
880
39a6542b
JR
881/* Lookup connection and confirm if unconfirmed. */
882static int ovs_ct_commit(struct net *net, struct sw_flow_key *key,
883 const struct ovs_conntrack_info *info,
884 struct sk_buff *skb)
885{
886 int err;
887
888 err = __ovs_ct_lookup(net, key, info, skb);
889 if (err)
890 return err;
891
892 /* Apply changes before confirming the connection so that the initial
893 * conntrack NEW netlink event carries the values given in the CT
894 * action.
895 */
896 if (info->mark.mask) {
897 err = ovs_ct_set_mark(skb, key, info->mark.value,
898 info->mark.mask);
899 if (err)
900 return err;
901 }
902 if (labels_nonzero(&info->labels.mask)) {
903 err = ovs_ct_set_labels(skb, key, &info->labels.value,
904 &info->labels.mask);
905 if (err)
906 return err;
907 }
908 /* This will take care of sending queued events even if the connection
909 * is already confirmed.
910 */
911 if (nf_conntrack_confirm(skb) != NF_ACCEPT)
912 return -EINVAL;
913
914 return 0;
915}
916
c05e2094
JS
917/* Returns 0 on success, -EINPROGRESS if 'skb' is stolen, or other nonzero
918 * value if 'skb' is freed.
919 */
a94ebc39
JS
920int ovs_ct_execute(struct net *net, struct sk_buff *skb,
921 struct sw_flow_key *key,
922 const struct ovs_conntrack_info *info)
923{
924 int nh_ofs;
925 int err;
926
927 /* The conntrack module expects to be working at L3. */
928 nh_ofs = skb_network_offset(skb);
073c7b86 929 skb_pull_rcsum(skb, nh_ofs);
a94ebc39
JS
930
931 if (key->ip.frag != OVS_FRAG_TYPE_NONE) {
932 err = handle_fragments(net, key, info->zone.id, skb);
933 if (err)
934 return err;
935 }
936
c05e2094 937 if (info->commit)
39a6542b 938 err = ovs_ct_commit(net, key, info, skb);
a94ebc39
JS
939 else
940 err = ovs_ct_lookup(net, key, info, skb);
941
942 skb_push(skb, nh_ofs);
073c7b86 943 skb_postpush_rcsum(skb, skb->data, nh_ofs);
c05e2094
JS
944 if (err)
945 kfree_skb(skb);
a94ebc39
JS
946 return err;
947}
948
11251c17
JS
949static int ovs_ct_add_helper(struct ovs_conntrack_info *info, const char *name,
950 const struct sw_flow_key *key, bool log)
951{
952 struct nf_conntrack_helper *helper;
953 struct nf_conn_help *help;
954
955 helper = nf_conntrack_helper_try_module_get(name, info->family,
956 key->ip.proto);
957 if (!helper) {
958 OVS_NLERR(log, "Unknown helper \"%s\"", name);
959 return -EINVAL;
960 }
961
962 help = nf_ct_helper_ext_add(info->ct, helper, GFP_KERNEL);
963 if (!help) {
964 module_put(helper->me);
965 return -ENOMEM;
966 }
967
968 rcu_assign_pointer(help->helper, helper);
969 info->helper = helper;
970 return 0;
971}
972
f8f97cdc
JR
973#ifdef CONFIG_NF_NAT_NEEDED
974static int parse_nat(const struct nlattr *attr,
975 struct ovs_conntrack_info *info, bool log)
976{
977 struct nlattr *a;
978 int rem;
979 bool have_ip_max = false;
980 bool have_proto_max = false;
981 bool ip_vers = (info->family == NFPROTO_IPV6);
982
983 nla_for_each_nested(a, attr, rem) {
984 static const int ovs_nat_attr_lens[OVS_NAT_ATTR_MAX + 1][2] = {
985 [OVS_NAT_ATTR_SRC] = {0, 0},
986 [OVS_NAT_ATTR_DST] = {0, 0},
987 [OVS_NAT_ATTR_IP_MIN] = {sizeof(struct in_addr),
988 sizeof(struct in6_addr)},
989 [OVS_NAT_ATTR_IP_MAX] = {sizeof(struct in_addr),
990 sizeof(struct in6_addr)},
991 [OVS_NAT_ATTR_PROTO_MIN] = {sizeof(u16), sizeof(u16)},
992 [OVS_NAT_ATTR_PROTO_MAX] = {sizeof(u16), sizeof(u16)},
993 [OVS_NAT_ATTR_PERSISTENT] = {0, 0},
994 [OVS_NAT_ATTR_PROTO_HASH] = {0, 0},
995 [OVS_NAT_ATTR_PROTO_RANDOM] = {0, 0},
996 };
997 int type = nla_type(a);
998
999 if (type > OVS_NAT_ATTR_MAX) {
1000 OVS_NLERR(log,
1001 "Unknown NAT attribute (type=%d, max=%d).\n",
1002 type, OVS_NAT_ATTR_MAX);
1003 return -EINVAL;
1004 }
1005
1006 if (nla_len(a) != ovs_nat_attr_lens[type][ip_vers]) {
1007 OVS_NLERR(log,
1008 "NAT attribute type %d has unexpected length (%d != %d).\n",
1009 type, nla_len(a),
1010 ovs_nat_attr_lens[type][ip_vers]);
1011 return -EINVAL;
1012 }
1013
1014 switch (type) {
1015 case OVS_NAT_ATTR_SRC:
1016 case OVS_NAT_ATTR_DST:
1017 if (info->nat) {
1018 OVS_NLERR(log,
1019 "Only one type of NAT may be specified.\n"
1020 );
1021 return -ERANGE;
1022 }
1023 info->nat |= OVS_CT_NAT;
1024 info->nat |= ((type == OVS_NAT_ATTR_SRC)
1025 ? OVS_CT_SRC_NAT : OVS_CT_DST_NAT);
1026 break;
1027
1028 case OVS_NAT_ATTR_IP_MIN:
70e71d27
HY
1029 nla_memcpy(&info->range.min_addr, a,
1030 sizeof(info->range.min_addr));
f8f97cdc
JR
1031 info->range.flags |= NF_NAT_RANGE_MAP_IPS;
1032 break;
1033
1034 case OVS_NAT_ATTR_IP_MAX:
1035 have_ip_max = true;
1036 nla_memcpy(&info->range.max_addr, a,
1037 sizeof(info->range.max_addr));
1038 info->range.flags |= NF_NAT_RANGE_MAP_IPS;
1039 break;
1040
1041 case OVS_NAT_ATTR_PROTO_MIN:
1042 info->range.min_proto.all = htons(nla_get_u16(a));
1043 info->range.flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
1044 break;
1045
1046 case OVS_NAT_ATTR_PROTO_MAX:
1047 have_proto_max = true;
1048 info->range.max_proto.all = htons(nla_get_u16(a));
1049 info->range.flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
1050 break;
1051
1052 case OVS_NAT_ATTR_PERSISTENT:
1053 info->range.flags |= NF_NAT_RANGE_PERSISTENT;
1054 break;
1055
1056 case OVS_NAT_ATTR_PROTO_HASH:
1057 info->range.flags |= NF_NAT_RANGE_PROTO_RANDOM;
1058 break;
1059
1060 case OVS_NAT_ATTR_PROTO_RANDOM:
9f1de150 1061#ifdef NF_NAT_RANGE_PROTO_RANDOM_FULLY
f8f97cdc 1062 info->range.flags |= NF_NAT_RANGE_PROTO_RANDOM_FULLY;
9f1de150
JR
1063#else
1064 info->range.flags |= NF_NAT_RANGE_PROTO_RANDOM;
1065 info->random_fully_compat = true;
1066#endif
f8f97cdc
JR
1067 break;
1068
1069 default:
1070 OVS_NLERR(log, "Unknown nat attribute (%d).\n", type);
1071 return -EINVAL;
1072 }
1073 }
1074
1075 if (rem > 0) {
1076 OVS_NLERR(log, "NAT attribute has %d unknown bytes.\n", rem);
1077 return -EINVAL;
1078 }
1079 if (!info->nat) {
1080 /* Do not allow flags if no type is given. */
1081 if (info->range.flags) {
1082 OVS_NLERR(log,
1083 "NAT flags may be given only when NAT range (SRC or DST) is also specified.\n"
1084 );
1085 return -EINVAL;
1086 }
1087 info->nat = OVS_CT_NAT; /* NAT existing connections. */
1088 } else if (!info->commit) {
1089 OVS_NLERR(log,
1090 "NAT attributes may be specified only when CT COMMIT flag is also specified.\n"
1091 );
1092 return -EINVAL;
1093 }
1094 /* Allow missing IP_MAX. */
1095 if (info->range.flags & NF_NAT_RANGE_MAP_IPS && !have_ip_max) {
1096 memcpy(&info->range.max_addr, &info->range.min_addr,
1097 sizeof(info->range.max_addr));
1098 }
1099 /* Allow missing PROTO_MAX. */
1100 if (info->range.flags & NF_NAT_RANGE_PROTO_SPECIFIED &&
1101 !have_proto_max) {
1102 info->range.max_proto.all = info->range.min_proto.all;
1103 }
1104 return 0;
1105}
1106#endif
1107
a94ebc39 1108static const struct ovs_ct_len_tbl ovs_ct_attr_lens[OVS_CT_ATTR_MAX + 1] = {
c05e2094 1109 [OVS_CT_ATTR_COMMIT] = { .minlen = 0, .maxlen = 0 },
a94ebc39
JS
1110 [OVS_CT_ATTR_ZONE] = { .minlen = sizeof(u16),
1111 .maxlen = sizeof(u16) },
372ce973
JS
1112 [OVS_CT_ATTR_MARK] = { .minlen = sizeof(struct md_mark),
1113 .maxlen = sizeof(struct md_mark) },
c05e2094
JS
1114 [OVS_CT_ATTR_LABELS] = { .minlen = sizeof(struct md_labels),
1115 .maxlen = sizeof(struct md_labels) },
11251c17 1116 [OVS_CT_ATTR_HELPER] = { .minlen = 1,
f8f97cdc
JR
1117 .maxlen = NF_CT_HELPER_NAME_LEN },
1118#ifdef CONFIG_NF_NAT_NEEDED
1119 /* NAT length is checked when parsing the nested attributes. */
1120 [OVS_CT_ATTR_NAT] = { .minlen = 0, .maxlen = INT_MAX },
1121#endif
a94ebc39
JS
1122};
1123
1124static int parse_ct(const struct nlattr *attr, struct ovs_conntrack_info *info,
11251c17 1125 const char **helper, bool log)
a94ebc39
JS
1126{
1127 struct nlattr *a;
1128 int rem;
1129
1130 nla_for_each_nested(a, attr, rem) {
1131 int type = nla_type(a);
1132 int maxlen = ovs_ct_attr_lens[type].maxlen;
1133 int minlen = ovs_ct_attr_lens[type].minlen;
1134
1135 if (type > OVS_CT_ATTR_MAX) {
1136 OVS_NLERR(log,
1137 "Unknown conntrack attr (type=%d, max=%d)",
1138 type, OVS_CT_ATTR_MAX);
1139 return -EINVAL;
1140 }
1141 if (nla_len(a) < minlen || nla_len(a) > maxlen) {
1142 OVS_NLERR(log,
1143 "Conntrack attr type has unexpected length (type=%d, length=%d, expected=%d)",
1144 type, nla_len(a), maxlen);
1145 return -EINVAL;
1146 }
1147
1148 switch (type) {
c05e2094
JS
1149 case OVS_CT_ATTR_COMMIT:
1150 info->commit = true;
a94ebc39
JS
1151 break;
1152#ifdef CONFIG_NF_CONNTRACK_ZONES
1153 case OVS_CT_ATTR_ZONE:
1154 info->zone.id = nla_get_u16(a);
1155 break;
372ce973
JS
1156#endif
1157#ifdef CONFIG_NF_CONNTRACK_MARK
1158 case OVS_CT_ATTR_MARK: {
1159 struct md_mark *mark = nla_data(a);
1160
c05e2094
JS
1161 if (!mark->mask) {
1162 OVS_NLERR(log, "ct_mark mask cannot be 0");
1163 return -EINVAL;
1164 }
372ce973
JS
1165 info->mark = *mark;
1166 break;
1167 }
038e34ab
JS
1168#endif
1169#ifdef CONFIG_NF_CONNTRACK_LABELS
c05e2094
JS
1170 case OVS_CT_ATTR_LABELS: {
1171 struct md_labels *labels = nla_data(a);
038e34ab 1172
c05e2094
JS
1173 if (!labels_nonzero(&labels->mask)) {
1174 OVS_NLERR(log, "ct_labels mask cannot be 0");
1175 return -EINVAL;
1176 }
1177 info->labels = *labels;
038e34ab
JS
1178 break;
1179 }
a94ebc39 1180#endif
11251c17
JS
1181 case OVS_CT_ATTR_HELPER:
1182 *helper = nla_data(a);
1183 if (!memchr(*helper, '\0', nla_len(a))) {
1184 OVS_NLERR(log, "Invalid conntrack helper");
1185 return -EINVAL;
1186 }
1187 break;
f8f97cdc
JR
1188#ifdef CONFIG_NF_NAT_NEEDED
1189 case OVS_CT_ATTR_NAT: {
1190 int err = parse_nat(a, info, log);
1191
1192 if (err)
1193 return err;
1194 break;
1195 }
1196#endif
a94ebc39
JS
1197 default:
1198 OVS_NLERR(log, "Unknown conntrack attr (%d)",
1199 type);
1200 return -EINVAL;
1201 }
1202 }
1203
39a6542b
JR
1204#ifdef CONFIG_NF_CONNTRACK_MARK
1205 if (!info->commit && info->mark.mask) {
1206 OVS_NLERR(log,
1207 "Setting conntrack mark requires 'commit' flag.");
1208 return -EINVAL;
1209 }
1210#endif
1211#ifdef CONFIG_NF_CONNTRACK_LABELS
1212 if (!info->commit && labels_nonzero(&info->labels.mask)) {
1213 OVS_NLERR(log,
1214 "Setting conntrack labels requires 'commit' flag.");
1215 return -EINVAL;
1216 }
1217#endif
a94ebc39
JS
1218 if (rem > 0) {
1219 OVS_NLERR(log, "Conntrack attr has %d unknown bytes", rem);
1220 return -EINVAL;
1221 }
1222
1223 return 0;
1224}
1225
038e34ab 1226bool ovs_ct_verify(struct net *net, enum ovs_key_attr attr)
a94ebc39
JS
1227{
1228 if (attr == OVS_KEY_ATTR_CT_STATE)
1229 return true;
1230 if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
1231 attr == OVS_KEY_ATTR_CT_ZONE)
1232 return true;
372ce973
JS
1233 if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) &&
1234 attr == OVS_KEY_ATTR_CT_MARK)
1235 return true;
038e34ab 1236 if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
c05e2094 1237 attr == OVS_KEY_ATTR_CT_LABELS) {
038e34ab
JS
1238 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
1239
1240 return ovs_net->xt_label;
1241 }
a94ebc39
JS
1242
1243 return false;
1244}
1245
1246int ovs_ct_copy_action(struct net *net, const struct nlattr *attr,
1247 const struct sw_flow_key *key,
1248 struct sw_flow_actions **sfa, bool log)
1249{
1250 struct ovs_conntrack_info ct_info;
11251c17 1251 const char *helper = NULL;
a94ebc39
JS
1252 u16 family;
1253 int err;
1254
1255 family = key_to_nfproto(key);
1256 if (family == NFPROTO_UNSPEC) {
1257 OVS_NLERR(log, "ct family unspecified");
1258 return -EINVAL;
1259 }
1260
1261 memset(&ct_info, 0, sizeof(ct_info));
1262 ct_info.family = family;
1263
1264 nf_ct_zone_init(&ct_info.zone, NF_CT_DEFAULT_ZONE_ID,
1265 NF_CT_DEFAULT_ZONE_DIR, 0);
1266
11251c17 1267 err = parse_ct(attr, &ct_info, &helper, log);
a94ebc39
JS
1268 if (err)
1269 return err;
1270
1271 /* Set up template for tracking connections in specific zones. */
1272 ct_info.ct = nf_ct_tmpl_alloc(net, &ct_info.zone, GFP_KERNEL);
1273 if (!ct_info.ct) {
1274 OVS_NLERR(log, "Failed to allocate conntrack template");
1275 return -ENOMEM;
1276 }
a3a68d63
JS
1277
1278 __set_bit(IPS_CONFIRMED_BIT, &ct_info.ct->status);
1279 nf_conntrack_get(&ct_info.ct->ct_general);
1280
11251c17
JS
1281 if (helper) {
1282 err = ovs_ct_add_helper(&ct_info, helper, key, log);
1283 if (err)
1284 goto err_free_ct;
1285 }
a94ebc39
JS
1286
1287 err = ovs_nla_add_action(sfa, OVS_ACTION_ATTR_CT, &ct_info,
1288 sizeof(ct_info), log);
1289 if (err)
1290 goto err_free_ct;
1291
a94ebc39
JS
1292 return 0;
1293err_free_ct:
11251c17 1294 __ovs_ct_free_action(&ct_info);
a94ebc39
JS
1295 return err;
1296}
1297
f8f97cdc
JR
1298#ifdef CONFIG_NF_NAT_NEEDED
1299static bool ovs_ct_nat_to_attr(const struct ovs_conntrack_info *info,
1300 struct sk_buff *skb)
1301{
1302 struct nlattr *start;
1303
1304 start = nla_nest_start(skb, OVS_CT_ATTR_NAT);
1305 if (!start)
1306 return false;
1307
1308 if (info->nat & OVS_CT_SRC_NAT) {
1309 if (nla_put_flag(skb, OVS_NAT_ATTR_SRC))
1310 return false;
1311 } else if (info->nat & OVS_CT_DST_NAT) {
1312 if (nla_put_flag(skb, OVS_NAT_ATTR_DST))
1313 return false;
1314 } else {
1315 goto out;
1316 }
1317
1318 if (info->range.flags & NF_NAT_RANGE_MAP_IPS) {
90b01477
AB
1319 if (IS_ENABLED(CONFIG_NF_NAT_IPV4) &&
1320 info->family == NFPROTO_IPV4) {
f8f97cdc
JR
1321 if (nla_put_in_addr(skb, OVS_NAT_ATTR_IP_MIN,
1322 info->range.min_addr.ip) ||
1323 (info->range.max_addr.ip
1324 != info->range.min_addr.ip &&
1325 (nla_put_in_addr(skb, OVS_NAT_ATTR_IP_MAX,
1326 info->range.max_addr.ip))))
1327 return false;
90b01477
AB
1328 } else if (IS_ENABLED(CONFIG_NF_NAT_IPV6) &&
1329 info->family == NFPROTO_IPV6) {
f8f97cdc
JR
1330 if (nla_put_in6_addr(skb, OVS_NAT_ATTR_IP_MIN,
1331 &info->range.min_addr.in6) ||
1332 (memcmp(&info->range.max_addr.in6,
1333 &info->range.min_addr.in6,
1334 sizeof(info->range.max_addr.in6)) &&
1335 (nla_put_in6_addr(skb, OVS_NAT_ATTR_IP_MAX,
1336 &info->range.max_addr.in6))))
1337 return false;
f8f97cdc
JR
1338 } else {
1339 return false;
1340 }
1341 }
1342 if (info->range.flags & NF_NAT_RANGE_PROTO_SPECIFIED &&
1343 (nla_put_u16(skb, OVS_NAT_ATTR_PROTO_MIN,
1344 ntohs(info->range.min_proto.all)) ||
1345 (info->range.max_proto.all != info->range.min_proto.all &&
1346 nla_put_u16(skb, OVS_NAT_ATTR_PROTO_MAX,
1347 ntohs(info->range.max_proto.all)))))
1348 return false;
1349
1350 if (info->range.flags & NF_NAT_RANGE_PERSISTENT &&
1351 nla_put_flag(skb, OVS_NAT_ATTR_PERSISTENT))
1352 return false;
1353 if (info->range.flags & NF_NAT_RANGE_PROTO_RANDOM &&
9f1de150
JR
1354 nla_put_flag(skb, info->random_fully_compat
1355 ? OVS_NAT_ATTR_PROTO_RANDOM
1356 : OVS_NAT_ATTR_PROTO_HASH))
f8f97cdc 1357 return false;
9f1de150 1358#ifdef NF_NAT_RANGE_PROTO_RANDOM_FULLY
f8f97cdc
JR
1359 if (info->range.flags & NF_NAT_RANGE_PROTO_RANDOM_FULLY &&
1360 nla_put_flag(skb, OVS_NAT_ATTR_PROTO_RANDOM))
1361 return false;
9f1de150 1362#endif
f8f97cdc
JR
1363out:
1364 nla_nest_end(skb, start);
1365
1366 return true;
1367}
1368#endif
1369
a94ebc39
JS
1370int ovs_ct_action_to_attr(const struct ovs_conntrack_info *ct_info,
1371 struct sk_buff *skb)
1372{
1373 struct nlattr *start;
1374
1375 start = nla_nest_start(skb, OVS_ACTION_ATTR_CT);
1376 if (!start)
1377 return -EMSGSIZE;
1378
c05e2094 1379 if (ct_info->commit && nla_put_flag(skb, OVS_CT_ATTR_COMMIT))
a94ebc39
JS
1380 return -EMSGSIZE;
1381 if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
1382 nla_put_u16(skb, OVS_CT_ATTR_ZONE, ct_info->zone.id))
1383 return -EMSGSIZE;
c05e2094 1384 if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) && ct_info->mark.mask &&
372ce973
JS
1385 nla_put(skb, OVS_CT_ATTR_MARK, sizeof(ct_info->mark),
1386 &ct_info->mark))
1387 return -EMSGSIZE;
038e34ab 1388 if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
c05e2094
JS
1389 labels_nonzero(&ct_info->labels.mask) &&
1390 nla_put(skb, OVS_CT_ATTR_LABELS, sizeof(ct_info->labels),
1391 &ct_info->labels))
038e34ab 1392 return -EMSGSIZE;
11251c17
JS
1393 if (ct_info->helper) {
1394 if (nla_put_string(skb, OVS_CT_ATTR_HELPER,
1395 ct_info->helper->name))
1396 return -EMSGSIZE;
1397 }
f8f97cdc
JR
1398#ifdef CONFIG_NF_NAT_NEEDED
1399 if (ct_info->nat && !ovs_ct_nat_to_attr(ct_info, skb))
1400 return -EMSGSIZE;
1401#endif
a94ebc39
JS
1402 nla_nest_end(skb, start);
1403
1404 return 0;
1405}
1406
1407void ovs_ct_free_action(const struct nlattr *a)
1408{
1409 struct ovs_conntrack_info *ct_info = nla_data(a);
1410
11251c17
JS
1411 __ovs_ct_free_action(ct_info);
1412}
1413
1414static void __ovs_ct_free_action(struct ovs_conntrack_info *ct_info)
1415{
1416 if (ct_info->helper)
1417 module_put(ct_info->helper->me);
a94ebc39
JS
1418 if (ct_info->ct)
1419 nf_ct_tmpl_free(ct_info->ct);
1420}
1421
038e34ab
JS
1422void ovs_ct_init(struct net *net)
1423{
c05e2094 1424 unsigned int n_bits = sizeof(struct ovs_key_ct_labels) * BITS_PER_BYTE;
038e34ab
JS
1425 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
1426
7f2ab8cd 1427 if (nf_connlabels_get(net, n_bits - 1)) {
038e34ab
JS
1428 ovs_net->xt_label = false;
1429 OVS_NLERR(true, "Failed to set connlabel length");
1430 } else {
1431 ovs_net->xt_label = true;
1432 }
1433}
1434
1435void ovs_ct_exit(struct net *net)
1436{
1437 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
1438
1439 if (ovs_net->xt_label)
1440 nf_connlabels_put(net);
1441}
1442
8063e095 1443#endif /* CONFIG_NF_CONNTRACK */