openvswitch: Fix double-free on ip_defrag() errors
[linux-drm-fsl-dcu.git] / net / openvswitch / conntrack.c
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/module.h>
15 #include <linux/openvswitch.h>
16 #include <net/ip.h>
17 #include <net/netfilter/nf_conntrack_core.h>
18 #include <net/netfilter/nf_conntrack_helper.h>
19 #include <net/netfilter/nf_conntrack_labels.h>
20 #include <net/netfilter/nf_conntrack_zones.h>
21 #include <net/netfilter/ipv6/nf_defrag_ipv6.h>
22
23 #include "datapath.h"
24 #include "conntrack.h"
25 #include "flow.h"
26 #include "flow_netlink.h"
27
28 struct ovs_ct_len_tbl {
29         size_t maxlen;
30         size_t minlen;
31 };
32
33 /* Metadata mark for masked write to conntrack mark */
34 struct md_mark {
35         u32 value;
36         u32 mask;
37 };
38
39 /* Metadata label for masked write to conntrack label. */
40 struct md_labels {
41         struct ovs_key_ct_labels value;
42         struct ovs_key_ct_labels mask;
43 };
44
45 /* Conntrack action context for execution. */
46 struct ovs_conntrack_info {
47         struct nf_conntrack_helper *helper;
48         struct nf_conntrack_zone zone;
49         struct nf_conn *ct;
50         u8 commit : 1;
51         u16 family;
52         struct md_mark mark;
53         struct md_labels labels;
54 };
55
56 static u16 key_to_nfproto(const struct sw_flow_key *key)
57 {
58         switch (ntohs(key->eth.type)) {
59         case ETH_P_IP:
60                 return NFPROTO_IPV4;
61         case ETH_P_IPV6:
62                 return NFPROTO_IPV6;
63         default:
64                 return NFPROTO_UNSPEC;
65         }
66 }
67
68 /* Map SKB connection state into the values used by flow definition. */
69 static u8 ovs_ct_get_state(enum ip_conntrack_info ctinfo)
70 {
71         u8 ct_state = OVS_CS_F_TRACKED;
72
73         switch (ctinfo) {
74         case IP_CT_ESTABLISHED_REPLY:
75         case IP_CT_RELATED_REPLY:
76         case IP_CT_NEW_REPLY:
77                 ct_state |= OVS_CS_F_REPLY_DIR;
78                 break;
79         default:
80                 break;
81         }
82
83         switch (ctinfo) {
84         case IP_CT_ESTABLISHED:
85         case IP_CT_ESTABLISHED_REPLY:
86                 ct_state |= OVS_CS_F_ESTABLISHED;
87                 break;
88         case IP_CT_RELATED:
89         case IP_CT_RELATED_REPLY:
90                 ct_state |= OVS_CS_F_RELATED;
91                 break;
92         case IP_CT_NEW:
93         case IP_CT_NEW_REPLY:
94                 ct_state |= OVS_CS_F_NEW;
95                 break;
96         default:
97                 break;
98         }
99
100         return ct_state;
101 }
102
103 static u32 ovs_ct_get_mark(const struct nf_conn *ct)
104 {
105 #if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
106         return ct ? ct->mark : 0;
107 #else
108         return 0;
109 #endif
110 }
111
112 static void ovs_ct_get_labels(const struct nf_conn *ct,
113                               struct ovs_key_ct_labels *labels)
114 {
115         struct nf_conn_labels *cl = ct ? nf_ct_labels_find(ct) : NULL;
116
117         if (cl) {
118                 size_t len = cl->words * sizeof(long);
119
120                 if (len > OVS_CT_LABELS_LEN)
121                         len = OVS_CT_LABELS_LEN;
122                 else if (len < OVS_CT_LABELS_LEN)
123                         memset(labels, 0, OVS_CT_LABELS_LEN);
124                 memcpy(labels, cl->bits, len);
125         } else {
126                 memset(labels, 0, OVS_CT_LABELS_LEN);
127         }
128 }
129
130 static void __ovs_ct_update_key(struct sw_flow_key *key, u8 state,
131                                 const struct nf_conntrack_zone *zone,
132                                 const struct nf_conn *ct)
133 {
134         key->ct.state = state;
135         key->ct.zone = zone->id;
136         key->ct.mark = ovs_ct_get_mark(ct);
137         ovs_ct_get_labels(ct, &key->ct.labels);
138 }
139
140 /* Update 'key' based on skb->nfct. If 'post_ct' is true, then OVS has
141  * previously sent the packet to conntrack via the ct action.
142  */
143 static void ovs_ct_update_key(const struct sk_buff *skb,
144                               struct sw_flow_key *key, bool post_ct)
145 {
146         const struct nf_conntrack_zone *zone = &nf_ct_zone_dflt;
147         enum ip_conntrack_info ctinfo;
148         struct nf_conn *ct;
149         u8 state = 0;
150
151         ct = nf_ct_get(skb, &ctinfo);
152         if (ct) {
153                 state = ovs_ct_get_state(ctinfo);
154                 if (!nf_ct_is_confirmed(ct))
155                         state |= OVS_CS_F_NEW;
156                 if (ct->master)
157                         state |= OVS_CS_F_RELATED;
158                 zone = nf_ct_zone(ct);
159         } else if (post_ct) {
160                 state = OVS_CS_F_TRACKED | OVS_CS_F_INVALID;
161         }
162         __ovs_ct_update_key(key, state, zone, ct);
163 }
164
165 void ovs_ct_fill_key(const struct sk_buff *skb, struct sw_flow_key *key)
166 {
167         ovs_ct_update_key(skb, key, false);
168 }
169
170 int ovs_ct_put_key(const struct sw_flow_key *key, struct sk_buff *skb)
171 {
172         if (nla_put_u32(skb, OVS_KEY_ATTR_CT_STATE, key->ct.state))
173                 return -EMSGSIZE;
174
175         if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
176             nla_put_u16(skb, OVS_KEY_ATTR_CT_ZONE, key->ct.zone))
177                 return -EMSGSIZE;
178
179         if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) &&
180             nla_put_u32(skb, OVS_KEY_ATTR_CT_MARK, key->ct.mark))
181                 return -EMSGSIZE;
182
183         if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
184             nla_put(skb, OVS_KEY_ATTR_CT_LABELS, sizeof(key->ct.labels),
185                     &key->ct.labels))
186                 return -EMSGSIZE;
187
188         return 0;
189 }
190
191 static int ovs_ct_set_mark(struct sk_buff *skb, struct sw_flow_key *key,
192                            u32 ct_mark, u32 mask)
193 {
194 #if IS_ENABLED(CONFIG_NF_CONNTRACK_MARK)
195         enum ip_conntrack_info ctinfo;
196         struct nf_conn *ct;
197         u32 new_mark;
198
199
200         /* The connection could be invalid, in which case set_mark is no-op. */
201         ct = nf_ct_get(skb, &ctinfo);
202         if (!ct)
203                 return 0;
204
205         new_mark = ct_mark | (ct->mark & ~(mask));
206         if (ct->mark != new_mark) {
207                 ct->mark = new_mark;
208                 nf_conntrack_event_cache(IPCT_MARK, ct);
209                 key->ct.mark = new_mark;
210         }
211
212         return 0;
213 #else
214         return -ENOTSUPP;
215 #endif
216 }
217
218 static int ovs_ct_set_labels(struct sk_buff *skb, struct sw_flow_key *key,
219                              const struct ovs_key_ct_labels *labels,
220                              const struct ovs_key_ct_labels *mask)
221 {
222         enum ip_conntrack_info ctinfo;
223         struct nf_conn_labels *cl;
224         struct nf_conn *ct;
225         int err;
226
227         /* The connection could be invalid, in which case set_label is no-op.*/
228         ct = nf_ct_get(skb, &ctinfo);
229         if (!ct)
230                 return 0;
231
232         cl = nf_ct_labels_find(ct);
233         if (!cl) {
234                 nf_ct_labels_ext_add(ct);
235                 cl = nf_ct_labels_find(ct);
236         }
237         if (!cl || cl->words * sizeof(long) < OVS_CT_LABELS_LEN)
238                 return -ENOSPC;
239
240         err = nf_connlabels_replace(ct, (u32 *)labels, (u32 *)mask,
241                                     OVS_CT_LABELS_LEN / sizeof(u32));
242         if (err)
243                 return err;
244
245         ovs_ct_get_labels(ct, &key->ct.labels);
246         return 0;
247 }
248
249 /* 'skb' should already be pulled to nh_ofs. */
250 static int ovs_ct_helper(struct sk_buff *skb, u16 proto)
251 {
252         const struct nf_conntrack_helper *helper;
253         const struct nf_conn_help *help;
254         enum ip_conntrack_info ctinfo;
255         unsigned int protoff;
256         struct nf_conn *ct;
257
258         ct = nf_ct_get(skb, &ctinfo);
259         if (!ct || ctinfo == IP_CT_RELATED_REPLY)
260                 return NF_ACCEPT;
261
262         help = nfct_help(ct);
263         if (!help)
264                 return NF_ACCEPT;
265
266         helper = rcu_dereference(help->helper);
267         if (!helper)
268                 return NF_ACCEPT;
269
270         switch (proto) {
271         case NFPROTO_IPV4:
272                 protoff = ip_hdrlen(skb);
273                 break;
274         case NFPROTO_IPV6: {
275                 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
276                 __be16 frag_off;
277                 int ofs;
278
279                 ofs = ipv6_skip_exthdr(skb, sizeof(struct ipv6hdr), &nexthdr,
280                                        &frag_off);
281                 if (ofs < 0 || (frag_off & htons(~0x7)) != 0) {
282                         pr_debug("proto header not found\n");
283                         return NF_ACCEPT;
284                 }
285                 protoff = ofs;
286                 break;
287         }
288         default:
289                 WARN_ONCE(1, "helper invoked on non-IP family!");
290                 return NF_DROP;
291         }
292
293         return helper->help(skb, protoff, ct, ctinfo);
294 }
295
296 /* Returns 0 on success, -EINPROGRESS if 'skb' is stolen, or other nonzero
297  * value if 'skb' is freed.
298  */
299 static int handle_fragments(struct net *net, struct sw_flow_key *key,
300                             u16 zone, struct sk_buff *skb)
301 {
302         struct ovs_skb_cb ovs_cb = *OVS_CB(skb);
303
304         if (key->eth.type == htons(ETH_P_IP)) {
305                 enum ip_defrag_users user = IP_DEFRAG_CONNTRACK_IN + zone;
306                 int err;
307
308                 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
309                 err = ip_defrag(skb, user);
310                 if (err)
311                         return err;
312
313                 ovs_cb.mru = IPCB(skb)->frag_max_size;
314 #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV6)
315         } else if (key->eth.type == htons(ETH_P_IPV6)) {
316                 enum ip6_defrag_users user = IP6_DEFRAG_CONNTRACK_IN + zone;
317                 struct sk_buff *reasm;
318
319                 memset(IP6CB(skb), 0, sizeof(struct inet6_skb_parm));
320                 reasm = nf_ct_frag6_gather(skb, user);
321                 if (!reasm)
322                         return -EINPROGRESS;
323
324                 if (skb == reasm) {
325                         kfree_skb(skb);
326                         return -EINVAL;
327                 }
328
329                 key->ip.proto = ipv6_hdr(reasm)->nexthdr;
330                 skb_morph(skb, reasm);
331                 consume_skb(reasm);
332                 ovs_cb.mru = IP6CB(skb)->frag_max_size;
333 #endif
334         } else {
335                 kfree_skb(skb);
336                 return -EPFNOSUPPORT;
337         }
338
339         key->ip.frag = OVS_FRAG_TYPE_NONE;
340         skb_clear_hash(skb);
341         skb->ignore_df = 1;
342         *OVS_CB(skb) = ovs_cb;
343
344         return 0;
345 }
346
347 static struct nf_conntrack_expect *
348 ovs_ct_expect_find(struct net *net, const struct nf_conntrack_zone *zone,
349                    u16 proto, const struct sk_buff *skb)
350 {
351         struct nf_conntrack_tuple tuple;
352
353         if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb), proto, &tuple))
354                 return NULL;
355         return __nf_ct_expect_find(net, zone, &tuple);
356 }
357
358 /* Determine whether skb->nfct is equal to the result of conntrack lookup. */
359 static bool skb_nfct_cached(const struct net *net, const struct sk_buff *skb,
360                             const struct ovs_conntrack_info *info)
361 {
362         enum ip_conntrack_info ctinfo;
363         struct nf_conn *ct;
364
365         ct = nf_ct_get(skb, &ctinfo);
366         if (!ct)
367                 return false;
368         if (!net_eq(net, read_pnet(&ct->ct_net)))
369                 return false;
370         if (!nf_ct_zone_equal_any(info->ct, nf_ct_zone(ct)))
371                 return false;
372         if (info->helper) {
373                 struct nf_conn_help *help;
374
375                 help = nf_ct_ext_find(ct, NF_CT_EXT_HELPER);
376                 if (help && rcu_access_pointer(help->helper) != info->helper)
377                         return false;
378         }
379
380         return true;
381 }
382
383 static int __ovs_ct_lookup(struct net *net, struct sw_flow_key *key,
384                            const struct ovs_conntrack_info *info,
385                            struct sk_buff *skb)
386 {
387         /* If we are recirculating packets to match on conntrack fields and
388          * committing with a separate conntrack action,  then we don't need to
389          * actually run the packet through conntrack twice unless it's for a
390          * different zone.
391          */
392         if (!skb_nfct_cached(net, skb, info)) {
393                 struct nf_conn *tmpl = info->ct;
394
395                 /* Associate skb with specified zone. */
396                 if (tmpl) {
397                         if (skb->nfct)
398                                 nf_conntrack_put(skb->nfct);
399                         nf_conntrack_get(&tmpl->ct_general);
400                         skb->nfct = &tmpl->ct_general;
401                         skb->nfctinfo = IP_CT_NEW;
402                 }
403
404                 if (nf_conntrack_in(net, info->family, NF_INET_PRE_ROUTING,
405                                     skb) != NF_ACCEPT)
406                         return -ENOENT;
407
408                 if (ovs_ct_helper(skb, info->family) != NF_ACCEPT) {
409                         WARN_ONCE(1, "helper rejected packet");
410                         return -EINVAL;
411                 }
412         }
413
414         ovs_ct_update_key(skb, key, true);
415
416         return 0;
417 }
418
419 /* Lookup connection and read fields into key. */
420 static int ovs_ct_lookup(struct net *net, struct sw_flow_key *key,
421                          const struct ovs_conntrack_info *info,
422                          struct sk_buff *skb)
423 {
424         struct nf_conntrack_expect *exp;
425
426         exp = ovs_ct_expect_find(net, &info->zone, info->family, skb);
427         if (exp) {
428                 u8 state;
429
430                 state = OVS_CS_F_TRACKED | OVS_CS_F_NEW | OVS_CS_F_RELATED;
431                 __ovs_ct_update_key(key, state, &info->zone, exp->master);
432         } else {
433                 int err;
434
435                 err = __ovs_ct_lookup(net, key, info, skb);
436                 if (err)
437                         return err;
438         }
439
440         return 0;
441 }
442
443 /* Lookup connection and confirm if unconfirmed. */
444 static int ovs_ct_commit(struct net *net, struct sw_flow_key *key,
445                          const struct ovs_conntrack_info *info,
446                          struct sk_buff *skb)
447 {
448         u8 state;
449         int err;
450
451         state = key->ct.state;
452         if (key->ct.zone == info->zone.id &&
453             ((state & OVS_CS_F_TRACKED) && !(state & OVS_CS_F_NEW))) {
454                 /* Previous lookup has shown that this connection is already
455                  * tracked and committed. Skip committing.
456                  */
457                 return 0;
458         }
459
460         err = __ovs_ct_lookup(net, key, info, skb);
461         if (err)
462                 return err;
463         if (nf_conntrack_confirm(skb) != NF_ACCEPT)
464                 return -EINVAL;
465
466         return 0;
467 }
468
469 static bool labels_nonzero(const struct ovs_key_ct_labels *labels)
470 {
471         size_t i;
472
473         for (i = 0; i < sizeof(*labels); i++)
474                 if (labels->ct_labels[i])
475                         return true;
476
477         return false;
478 }
479
480 /* Returns 0 on success, -EINPROGRESS if 'skb' is stolen, or other nonzero
481  * value if 'skb' is freed.
482  */
483 int ovs_ct_execute(struct net *net, struct sk_buff *skb,
484                    struct sw_flow_key *key,
485                    const struct ovs_conntrack_info *info)
486 {
487         int nh_ofs;
488         int err;
489
490         /* The conntrack module expects to be working at L3. */
491         nh_ofs = skb_network_offset(skb);
492         skb_pull(skb, nh_ofs);
493
494         if (key->ip.frag != OVS_FRAG_TYPE_NONE) {
495                 err = handle_fragments(net, key, info->zone.id, skb);
496                 if (err)
497                         return err;
498         }
499
500         if (info->commit)
501                 err = ovs_ct_commit(net, key, info, skb);
502         else
503                 err = ovs_ct_lookup(net, key, info, skb);
504         if (err)
505                 goto err;
506
507         if (info->mark.mask) {
508                 err = ovs_ct_set_mark(skb, key, info->mark.value,
509                                       info->mark.mask);
510                 if (err)
511                         goto err;
512         }
513         if (labels_nonzero(&info->labels.mask))
514                 err = ovs_ct_set_labels(skb, key, &info->labels.value,
515                                         &info->labels.mask);
516 err:
517         skb_push(skb, nh_ofs);
518         if (err)
519                 kfree_skb(skb);
520         return err;
521 }
522
523 static int ovs_ct_add_helper(struct ovs_conntrack_info *info, const char *name,
524                              const struct sw_flow_key *key, bool log)
525 {
526         struct nf_conntrack_helper *helper;
527         struct nf_conn_help *help;
528
529         helper = nf_conntrack_helper_try_module_get(name, info->family,
530                                                     key->ip.proto);
531         if (!helper) {
532                 OVS_NLERR(log, "Unknown helper \"%s\"", name);
533                 return -EINVAL;
534         }
535
536         help = nf_ct_helper_ext_add(info->ct, helper, GFP_KERNEL);
537         if (!help) {
538                 module_put(helper->me);
539                 return -ENOMEM;
540         }
541
542         rcu_assign_pointer(help->helper, helper);
543         info->helper = helper;
544         return 0;
545 }
546
547 static const struct ovs_ct_len_tbl ovs_ct_attr_lens[OVS_CT_ATTR_MAX + 1] = {
548         [OVS_CT_ATTR_COMMIT]    = { .minlen = 0, .maxlen = 0 },
549         [OVS_CT_ATTR_ZONE]      = { .minlen = sizeof(u16),
550                                     .maxlen = sizeof(u16) },
551         [OVS_CT_ATTR_MARK]      = { .minlen = sizeof(struct md_mark),
552                                     .maxlen = sizeof(struct md_mark) },
553         [OVS_CT_ATTR_LABELS]    = { .minlen = sizeof(struct md_labels),
554                                     .maxlen = sizeof(struct md_labels) },
555         [OVS_CT_ATTR_HELPER]    = { .minlen = 1,
556                                     .maxlen = NF_CT_HELPER_NAME_LEN }
557 };
558
559 static int parse_ct(const struct nlattr *attr, struct ovs_conntrack_info *info,
560                     const char **helper, bool log)
561 {
562         struct nlattr *a;
563         int rem;
564
565         nla_for_each_nested(a, attr, rem) {
566                 int type = nla_type(a);
567                 int maxlen = ovs_ct_attr_lens[type].maxlen;
568                 int minlen = ovs_ct_attr_lens[type].minlen;
569
570                 if (type > OVS_CT_ATTR_MAX) {
571                         OVS_NLERR(log,
572                                   "Unknown conntrack attr (type=%d, max=%d)",
573                                   type, OVS_CT_ATTR_MAX);
574                         return -EINVAL;
575                 }
576                 if (nla_len(a) < minlen || nla_len(a) > maxlen) {
577                         OVS_NLERR(log,
578                                   "Conntrack attr type has unexpected length (type=%d, length=%d, expected=%d)",
579                                   type, nla_len(a), maxlen);
580                         return -EINVAL;
581                 }
582
583                 switch (type) {
584                 case OVS_CT_ATTR_COMMIT:
585                         info->commit = true;
586                         break;
587 #ifdef CONFIG_NF_CONNTRACK_ZONES
588                 case OVS_CT_ATTR_ZONE:
589                         info->zone.id = nla_get_u16(a);
590                         break;
591 #endif
592 #ifdef CONFIG_NF_CONNTRACK_MARK
593                 case OVS_CT_ATTR_MARK: {
594                         struct md_mark *mark = nla_data(a);
595
596                         if (!mark->mask) {
597                                 OVS_NLERR(log, "ct_mark mask cannot be 0");
598                                 return -EINVAL;
599                         }
600                         info->mark = *mark;
601                         break;
602                 }
603 #endif
604 #ifdef CONFIG_NF_CONNTRACK_LABELS
605                 case OVS_CT_ATTR_LABELS: {
606                         struct md_labels *labels = nla_data(a);
607
608                         if (!labels_nonzero(&labels->mask)) {
609                                 OVS_NLERR(log, "ct_labels mask cannot be 0");
610                                 return -EINVAL;
611                         }
612                         info->labels = *labels;
613                         break;
614                 }
615 #endif
616                 case OVS_CT_ATTR_HELPER:
617                         *helper = nla_data(a);
618                         if (!memchr(*helper, '\0', nla_len(a))) {
619                                 OVS_NLERR(log, "Invalid conntrack helper");
620                                 return -EINVAL;
621                         }
622                         break;
623                 default:
624                         OVS_NLERR(log, "Unknown conntrack attr (%d)",
625                                   type);
626                         return -EINVAL;
627                 }
628         }
629
630         if (rem > 0) {
631                 OVS_NLERR(log, "Conntrack attr has %d unknown bytes", rem);
632                 return -EINVAL;
633         }
634
635         return 0;
636 }
637
638 bool ovs_ct_verify(struct net *net, enum ovs_key_attr attr)
639 {
640         if (attr == OVS_KEY_ATTR_CT_STATE)
641                 return true;
642         if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
643             attr == OVS_KEY_ATTR_CT_ZONE)
644                 return true;
645         if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) &&
646             attr == OVS_KEY_ATTR_CT_MARK)
647                 return true;
648         if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
649             attr == OVS_KEY_ATTR_CT_LABELS) {
650                 struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
651
652                 return ovs_net->xt_label;
653         }
654
655         return false;
656 }
657
658 int ovs_ct_copy_action(struct net *net, const struct nlattr *attr,
659                        const struct sw_flow_key *key,
660                        struct sw_flow_actions **sfa,  bool log)
661 {
662         struct ovs_conntrack_info ct_info;
663         const char *helper = NULL;
664         u16 family;
665         int err;
666
667         family = key_to_nfproto(key);
668         if (family == NFPROTO_UNSPEC) {
669                 OVS_NLERR(log, "ct family unspecified");
670                 return -EINVAL;
671         }
672
673         memset(&ct_info, 0, sizeof(ct_info));
674         ct_info.family = family;
675
676         nf_ct_zone_init(&ct_info.zone, NF_CT_DEFAULT_ZONE_ID,
677                         NF_CT_DEFAULT_ZONE_DIR, 0);
678
679         err = parse_ct(attr, &ct_info, &helper, log);
680         if (err)
681                 return err;
682
683         /* Set up template for tracking connections in specific zones. */
684         ct_info.ct = nf_ct_tmpl_alloc(net, &ct_info.zone, GFP_KERNEL);
685         if (!ct_info.ct) {
686                 OVS_NLERR(log, "Failed to allocate conntrack template");
687                 return -ENOMEM;
688         }
689         if (helper) {
690                 err = ovs_ct_add_helper(&ct_info, helper, key, log);
691                 if (err)
692                         goto err_free_ct;
693         }
694
695         err = ovs_nla_add_action(sfa, OVS_ACTION_ATTR_CT, &ct_info,
696                                  sizeof(ct_info), log);
697         if (err)
698                 goto err_free_ct;
699
700         __set_bit(IPS_CONFIRMED_BIT, &ct_info.ct->status);
701         nf_conntrack_get(&ct_info.ct->ct_general);
702         return 0;
703 err_free_ct:
704         nf_conntrack_free(ct_info.ct);
705         return err;
706 }
707
708 int ovs_ct_action_to_attr(const struct ovs_conntrack_info *ct_info,
709                           struct sk_buff *skb)
710 {
711         struct nlattr *start;
712
713         start = nla_nest_start(skb, OVS_ACTION_ATTR_CT);
714         if (!start)
715                 return -EMSGSIZE;
716
717         if (ct_info->commit && nla_put_flag(skb, OVS_CT_ATTR_COMMIT))
718                 return -EMSGSIZE;
719         if (IS_ENABLED(CONFIG_NF_CONNTRACK_ZONES) &&
720             nla_put_u16(skb, OVS_CT_ATTR_ZONE, ct_info->zone.id))
721                 return -EMSGSIZE;
722         if (IS_ENABLED(CONFIG_NF_CONNTRACK_MARK) && ct_info->mark.mask &&
723             nla_put(skb, OVS_CT_ATTR_MARK, sizeof(ct_info->mark),
724                     &ct_info->mark))
725                 return -EMSGSIZE;
726         if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
727             labels_nonzero(&ct_info->labels.mask) &&
728             nla_put(skb, OVS_CT_ATTR_LABELS, sizeof(ct_info->labels),
729                     &ct_info->labels))
730                 return -EMSGSIZE;
731         if (ct_info->helper) {
732                 if (nla_put_string(skb, OVS_CT_ATTR_HELPER,
733                                    ct_info->helper->name))
734                         return -EMSGSIZE;
735         }
736
737         nla_nest_end(skb, start);
738
739         return 0;
740 }
741
742 void ovs_ct_free_action(const struct nlattr *a)
743 {
744         struct ovs_conntrack_info *ct_info = nla_data(a);
745
746         if (ct_info->helper)
747                 module_put(ct_info->helper->me);
748         if (ct_info->ct)
749                 nf_ct_put(ct_info->ct);
750 }
751
752 void ovs_ct_init(struct net *net)
753 {
754         unsigned int n_bits = sizeof(struct ovs_key_ct_labels) * BITS_PER_BYTE;
755         struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
756
757         if (nf_connlabels_get(net, n_bits)) {
758                 ovs_net->xt_label = false;
759                 OVS_NLERR(true, "Failed to set connlabel length");
760         } else {
761                 ovs_net->xt_label = true;
762         }
763 }
764
765 void ovs_ct_exit(struct net *net)
766 {
767         struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
768
769         if (ovs_net->xt_label)
770                 nf_connlabels_put(net);
771 }