OSDN Git Service

xfrm: Fix stack-out-of-bounds with misconfigured transport mode policies.
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / net / xfrm / xfrm_user.c
1 /* xfrm_user.c: User interface to configure xfrm engine.
2  *
3  * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4  *
5  * Changes:
6  *      Mitsuru KANDA @USAGI
7  *      Kazunori MIYAZAWA @USAGI
8  *      Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9  *              IPv6 support
10  *
11  */
12
13 #include <linux/crypto.h>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/slab.h>
18 #include <linux/socket.h>
19 #include <linux/string.h>
20 #include <linux/net.h>
21 #include <linux/skbuff.h>
22 #include <linux/pfkeyv2.h>
23 #include <linux/ipsec.h>
24 #include <linux/init.h>
25 #include <linux/security.h>
26 #include <net/sock.h>
27 #include <net/xfrm.h>
28 #include <net/netlink.h>
29 #include <net/ah.h>
30 #include <asm/uaccess.h>
31 #if IS_ENABLED(CONFIG_IPV6)
32 #include <linux/in6.h>
33 #endif
34 #include <asm/unaligned.h>
35
36 static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
37 {
38         struct nlattr *rt = attrs[type];
39         struct xfrm_algo *algp;
40
41         if (!rt)
42                 return 0;
43
44         algp = nla_data(rt);
45         if (nla_len(rt) < xfrm_alg_len(algp))
46                 return -EINVAL;
47
48         switch (type) {
49         case XFRMA_ALG_AUTH:
50         case XFRMA_ALG_CRYPT:
51         case XFRMA_ALG_COMP:
52                 break;
53
54         default:
55                 return -EINVAL;
56         }
57
58         algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
59         return 0;
60 }
61
62 static int verify_auth_trunc(struct nlattr **attrs)
63 {
64         struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
65         struct xfrm_algo_auth *algp;
66
67         if (!rt)
68                 return 0;
69
70         algp = nla_data(rt);
71         if (nla_len(rt) < xfrm_alg_auth_len(algp))
72                 return -EINVAL;
73
74         algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
75         return 0;
76 }
77
78 static int verify_aead(struct nlattr **attrs)
79 {
80         struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
81         struct xfrm_algo_aead *algp;
82
83         if (!rt)
84                 return 0;
85
86         algp = nla_data(rt);
87         if (nla_len(rt) < aead_len(algp))
88                 return -EINVAL;
89
90         algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
91         return 0;
92 }
93
94 static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
95                            xfrm_address_t **addrp)
96 {
97         struct nlattr *rt = attrs[type];
98
99         if (rt && addrp)
100                 *addrp = nla_data(rt);
101 }
102
103 static inline int verify_sec_ctx_len(struct nlattr **attrs)
104 {
105         struct nlattr *rt = attrs[XFRMA_SEC_CTX];
106         struct xfrm_user_sec_ctx *uctx;
107
108         if (!rt)
109                 return 0;
110
111         uctx = nla_data(rt);
112         if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
113                 return -EINVAL;
114
115         return 0;
116 }
117
118 static inline int verify_replay(struct xfrm_usersa_info *p,
119                                 struct nlattr **attrs)
120 {
121         struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
122         struct xfrm_replay_state_esn *rs;
123
124         if (p->flags & XFRM_STATE_ESN) {
125                 if (!rt)
126                         return -EINVAL;
127
128                 rs = nla_data(rt);
129
130                 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
131                         return -EINVAL;
132
133                 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
134                     nla_len(rt) != sizeof(*rs))
135                         return -EINVAL;
136         }
137
138         if (!rt)
139                 return 0;
140
141         /* As only ESP and AH support ESN feature. */
142         if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
143                 return -EINVAL;
144
145         if (p->replay_window != 0)
146                 return -EINVAL;
147
148         return 0;
149 }
150
151 static int verify_newsa_info(struct xfrm_usersa_info *p,
152                              struct nlattr **attrs)
153 {
154         int err;
155
156         err = -EINVAL;
157         switch (p->family) {
158         case AF_INET:
159                 break;
160
161         case AF_INET6:
162 #if IS_ENABLED(CONFIG_IPV6)
163                 break;
164 #else
165                 err = -EAFNOSUPPORT;
166                 goto out;
167 #endif
168
169         default:
170                 goto out;
171         }
172
173         err = -EINVAL;
174         switch (p->id.proto) {
175         case IPPROTO_AH:
176                 if ((!attrs[XFRMA_ALG_AUTH]     &&
177                      !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
178                     attrs[XFRMA_ALG_AEAD]       ||
179                     attrs[XFRMA_ALG_CRYPT]      ||
180                     attrs[XFRMA_ALG_COMP]       ||
181                     attrs[XFRMA_TFCPAD])
182                         goto out;
183                 break;
184
185         case IPPROTO_ESP:
186                 if (attrs[XFRMA_ALG_COMP])
187                         goto out;
188                 if (!attrs[XFRMA_ALG_AUTH] &&
189                     !attrs[XFRMA_ALG_AUTH_TRUNC] &&
190                     !attrs[XFRMA_ALG_CRYPT] &&
191                     !attrs[XFRMA_ALG_AEAD])
192                         goto out;
193                 if ((attrs[XFRMA_ALG_AUTH] ||
194                      attrs[XFRMA_ALG_AUTH_TRUNC] ||
195                      attrs[XFRMA_ALG_CRYPT]) &&
196                     attrs[XFRMA_ALG_AEAD])
197                         goto out;
198                 if (attrs[XFRMA_TFCPAD] &&
199                     p->mode != XFRM_MODE_TUNNEL)
200                         goto out;
201                 break;
202
203         case IPPROTO_COMP:
204                 if (!attrs[XFRMA_ALG_COMP]      ||
205                     attrs[XFRMA_ALG_AEAD]       ||
206                     attrs[XFRMA_ALG_AUTH]       ||
207                     attrs[XFRMA_ALG_AUTH_TRUNC] ||
208                     attrs[XFRMA_ALG_CRYPT]      ||
209                     attrs[XFRMA_TFCPAD]         ||
210                     (ntohl(p->id.spi) >= 0x10000))
211                         goto out;
212                 break;
213
214 #if IS_ENABLED(CONFIG_IPV6)
215         case IPPROTO_DSTOPTS:
216         case IPPROTO_ROUTING:
217                 if (attrs[XFRMA_ALG_COMP]       ||
218                     attrs[XFRMA_ALG_AUTH]       ||
219                     attrs[XFRMA_ALG_AUTH_TRUNC] ||
220                     attrs[XFRMA_ALG_AEAD]       ||
221                     attrs[XFRMA_ALG_CRYPT]      ||
222                     attrs[XFRMA_ENCAP]          ||
223                     attrs[XFRMA_SEC_CTX]        ||
224                     attrs[XFRMA_TFCPAD]         ||
225                     !attrs[XFRMA_COADDR])
226                         goto out;
227                 break;
228 #endif
229
230         default:
231                 goto out;
232         }
233
234         if ((err = verify_aead(attrs)))
235                 goto out;
236         if ((err = verify_auth_trunc(attrs)))
237                 goto out;
238         if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
239                 goto out;
240         if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
241                 goto out;
242         if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
243                 goto out;
244         if ((err = verify_sec_ctx_len(attrs)))
245                 goto out;
246         if ((err = verify_replay(p, attrs)))
247                 goto out;
248
249         err = -EINVAL;
250         switch (p->mode) {
251         case XFRM_MODE_TRANSPORT:
252         case XFRM_MODE_TUNNEL:
253         case XFRM_MODE_ROUTEOPTIMIZATION:
254         case XFRM_MODE_BEET:
255                 break;
256
257         default:
258                 goto out;
259         }
260
261         err = 0;
262
263 out:
264         return err;
265 }
266
267 static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
268                            struct xfrm_algo_desc *(*get_byname)(const char *, int),
269                            struct nlattr *rta)
270 {
271         struct xfrm_algo *p, *ualg;
272         struct xfrm_algo_desc *algo;
273
274         if (!rta)
275                 return 0;
276
277         ualg = nla_data(rta);
278
279         algo = get_byname(ualg->alg_name, 1);
280         if (!algo)
281                 return -ENOSYS;
282         *props = algo->desc.sadb_alg_id;
283
284         p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
285         if (!p)
286                 return -ENOMEM;
287
288         strcpy(p->alg_name, algo->name);
289         *algpp = p;
290         return 0;
291 }
292
293 static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
294 {
295         struct xfrm_algo *p, *ualg;
296         struct xfrm_algo_desc *algo;
297
298         if (!rta)
299                 return 0;
300
301         ualg = nla_data(rta);
302
303         algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
304         if (!algo)
305                 return -ENOSYS;
306         x->props.ealgo = algo->desc.sadb_alg_id;
307
308         p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
309         if (!p)
310                 return -ENOMEM;
311
312         strcpy(p->alg_name, algo->name);
313         x->ealg = p;
314         x->geniv = algo->uinfo.encr.geniv;
315         return 0;
316 }
317
318 static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
319                        struct nlattr *rta)
320 {
321         struct xfrm_algo *ualg;
322         struct xfrm_algo_auth *p;
323         struct xfrm_algo_desc *algo;
324
325         if (!rta)
326                 return 0;
327
328         ualg = nla_data(rta);
329
330         algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
331         if (!algo)
332                 return -ENOSYS;
333         *props = algo->desc.sadb_alg_id;
334
335         p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
336         if (!p)
337                 return -ENOMEM;
338
339         strcpy(p->alg_name, algo->name);
340         p->alg_key_len = ualg->alg_key_len;
341         p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
342         memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
343
344         *algpp = p;
345         return 0;
346 }
347
348 static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
349                              struct nlattr *rta)
350 {
351         struct xfrm_algo_auth *p, *ualg;
352         struct xfrm_algo_desc *algo;
353
354         if (!rta)
355                 return 0;
356
357         ualg = nla_data(rta);
358
359         algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
360         if (!algo)
361                 return -ENOSYS;
362         if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
363                 return -EINVAL;
364         *props = algo->desc.sadb_alg_id;
365
366         p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
367         if (!p)
368                 return -ENOMEM;
369
370         strcpy(p->alg_name, algo->name);
371         if (!p->alg_trunc_len)
372                 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
373
374         *algpp = p;
375         return 0;
376 }
377
378 static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
379 {
380         struct xfrm_algo_aead *p, *ualg;
381         struct xfrm_algo_desc *algo;
382
383         if (!rta)
384                 return 0;
385
386         ualg = nla_data(rta);
387
388         algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
389         if (!algo)
390                 return -ENOSYS;
391         x->props.ealgo = algo->desc.sadb_alg_id;
392
393         p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
394         if (!p)
395                 return -ENOMEM;
396
397         strcpy(p->alg_name, algo->name);
398         x->aead = p;
399         x->geniv = algo->uinfo.aead.geniv;
400         return 0;
401 }
402
403 static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
404                                          struct nlattr *rp)
405 {
406         struct xfrm_replay_state_esn *up;
407         int ulen;
408
409         if (!replay_esn || !rp)
410                 return 0;
411
412         up = nla_data(rp);
413         ulen = xfrm_replay_state_esn_len(up);
414
415         /* Check the overall length and the internal bitmap length to avoid
416          * potential overflow. */
417         if (nla_len(rp) < ulen ||
418             xfrm_replay_state_esn_len(replay_esn) != ulen ||
419             replay_esn->bmp_len != up->bmp_len)
420                 return -EINVAL;
421
422         if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
423                 return -EINVAL;
424
425         return 0;
426 }
427
428 static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
429                                        struct xfrm_replay_state_esn **preplay_esn,
430                                        struct nlattr *rta)
431 {
432         struct xfrm_replay_state_esn *p, *pp, *up;
433         int klen, ulen;
434
435         if (!rta)
436                 return 0;
437
438         up = nla_data(rta);
439         klen = xfrm_replay_state_esn_len(up);
440         ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
441
442         p = kzalloc(klen, GFP_KERNEL);
443         if (!p)
444                 return -ENOMEM;
445
446         pp = kzalloc(klen, GFP_KERNEL);
447         if (!pp) {
448                 kfree(p);
449                 return -ENOMEM;
450         }
451
452         memcpy(p, up, ulen);
453         memcpy(pp, up, ulen);
454
455         *replay_esn = p;
456         *preplay_esn = pp;
457
458         return 0;
459 }
460
461 static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
462 {
463         int len = 0;
464
465         if (xfrm_ctx) {
466                 len += sizeof(struct xfrm_user_sec_ctx);
467                 len += xfrm_ctx->ctx_len;
468         }
469         return len;
470 }
471
472 static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
473 {
474         memcpy(&x->id, &p->id, sizeof(x->id));
475         memcpy(&x->sel, &p->sel, sizeof(x->sel));
476         memcpy(&x->lft, &p->lft, sizeof(x->lft));
477         x->props.mode = p->mode;
478         x->props.replay_window = min_t(unsigned int, p->replay_window,
479                                         sizeof(x->replay.bitmap) * 8);
480         x->props.reqid = p->reqid;
481         x->props.family = p->family;
482         memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
483         x->props.flags = p->flags;
484
485         if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
486                 x->sel.family = p->family;
487 }
488
489 /*
490  * someday when pfkey also has support, we could have the code
491  * somehow made shareable and move it to xfrm_state.c - JHS
492  *
493 */
494 static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
495                                   int update_esn)
496 {
497         struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
498         struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
499         struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
500         struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
501         struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
502
503         if (re) {
504                 struct xfrm_replay_state_esn *replay_esn;
505                 replay_esn = nla_data(re);
506                 memcpy(x->replay_esn, replay_esn,
507                        xfrm_replay_state_esn_len(replay_esn));
508                 memcpy(x->preplay_esn, replay_esn,
509                        xfrm_replay_state_esn_len(replay_esn));
510         }
511
512         if (rp) {
513                 struct xfrm_replay_state *replay;
514                 replay = nla_data(rp);
515                 memcpy(&x->replay, replay, sizeof(*replay));
516                 memcpy(&x->preplay, replay, sizeof(*replay));
517         }
518
519         if (lt) {
520                 struct xfrm_lifetime_cur *ltime;
521                 ltime = nla_data(lt);
522                 x->curlft.bytes = ltime->bytes;
523                 x->curlft.packets = ltime->packets;
524                 x->curlft.add_time = ltime->add_time;
525                 x->curlft.use_time = ltime->use_time;
526         }
527
528         if (et)
529                 x->replay_maxage = nla_get_u32(et);
530
531         if (rt)
532                 x->replay_maxdiff = nla_get_u32(rt);
533 }
534
535 static struct xfrm_state *xfrm_state_construct(struct net *net,
536                                                struct xfrm_usersa_info *p,
537                                                struct nlattr **attrs,
538                                                int *errp)
539 {
540         struct xfrm_state *x = xfrm_state_alloc(net);
541         int err = -ENOMEM;
542
543         if (!x)
544                 goto error_no_put;
545
546         copy_from_user_state(x, p);
547
548         if (attrs[XFRMA_SA_EXTRA_FLAGS])
549                 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
550
551         if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
552                 goto error;
553         if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
554                                      attrs[XFRMA_ALG_AUTH_TRUNC])))
555                 goto error;
556         if (!x->props.aalgo) {
557                 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
558                                        attrs[XFRMA_ALG_AUTH])))
559                         goto error;
560         }
561         if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
562                 goto error;
563         if ((err = attach_one_algo(&x->calg, &x->props.calgo,
564                                    xfrm_calg_get_byname,
565                                    attrs[XFRMA_ALG_COMP])))
566                 goto error;
567
568         if (attrs[XFRMA_ENCAP]) {
569                 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
570                                    sizeof(*x->encap), GFP_KERNEL);
571                 if (x->encap == NULL)
572                         goto error;
573         }
574
575         if (attrs[XFRMA_TFCPAD])
576                 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
577
578         if (attrs[XFRMA_COADDR]) {
579                 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
580                                     sizeof(*x->coaddr), GFP_KERNEL);
581                 if (x->coaddr == NULL)
582                         goto error;
583         }
584
585         xfrm_mark_get(attrs, &x->mark);
586
587         err = __xfrm_init_state(x, false);
588         if (err)
589                 goto error;
590
591         if (attrs[XFRMA_SEC_CTX] &&
592             security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
593                 goto error;
594
595         if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
596                                                attrs[XFRMA_REPLAY_ESN_VAL])))
597                 goto error;
598
599         x->km.seq = p->seq;
600         x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
601         /* sysctl_xfrm_aevent_etime is in 100ms units */
602         x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
603
604         if ((err = xfrm_init_replay(x)))
605                 goto error;
606
607         /* override default values from above */
608         xfrm_update_ae_params(x, attrs, 0);
609
610         return x;
611
612 error:
613         x->km.state = XFRM_STATE_DEAD;
614         xfrm_state_put(x);
615 error_no_put:
616         *errp = err;
617         return NULL;
618 }
619
620 static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
621                 struct nlattr **attrs)
622 {
623         struct net *net = sock_net(skb->sk);
624         struct xfrm_usersa_info *p = nlmsg_data(nlh);
625         struct xfrm_state *x;
626         int err;
627         struct km_event c;
628
629         err = verify_newsa_info(p, attrs);
630         if (err)
631                 return err;
632
633         x = xfrm_state_construct(net, p, attrs, &err);
634         if (!x)
635                 return err;
636
637         xfrm_state_hold(x);
638         if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
639                 err = xfrm_state_add(x);
640         else
641                 err = xfrm_state_update(x);
642
643         xfrm_audit_state_add(x, err ? 0 : 1, true);
644
645         if (err < 0) {
646                 x->km.state = XFRM_STATE_DEAD;
647                 __xfrm_state_put(x);
648                 goto out;
649         }
650
651         c.seq = nlh->nlmsg_seq;
652         c.portid = nlh->nlmsg_pid;
653         c.event = nlh->nlmsg_type;
654
655         km_state_notify(x, &c);
656 out:
657         xfrm_state_put(x);
658         return err;
659 }
660
661 static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
662                                                  struct xfrm_usersa_id *p,
663                                                  struct nlattr **attrs,
664                                                  int *errp)
665 {
666         struct xfrm_state *x = NULL;
667         struct xfrm_mark m;
668         int err;
669         u32 mark = xfrm_mark_get(attrs, &m);
670
671         if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
672                 err = -ESRCH;
673                 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
674         } else {
675                 xfrm_address_t *saddr = NULL;
676
677                 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
678                 if (!saddr) {
679                         err = -EINVAL;
680                         goto out;
681                 }
682
683                 err = -ESRCH;
684                 x = xfrm_state_lookup_byaddr(net, mark,
685                                              &p->daddr, saddr,
686                                              p->proto, p->family);
687         }
688
689  out:
690         if (!x && errp)
691                 *errp = err;
692         return x;
693 }
694
695 static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
696                 struct nlattr **attrs)
697 {
698         struct net *net = sock_net(skb->sk);
699         struct xfrm_state *x;
700         int err = -ESRCH;
701         struct km_event c;
702         struct xfrm_usersa_id *p = nlmsg_data(nlh);
703
704         x = xfrm_user_state_lookup(net, p, attrs, &err);
705         if (x == NULL)
706                 return err;
707
708         if ((err = security_xfrm_state_delete(x)) != 0)
709                 goto out;
710
711         if (xfrm_state_kern(x)) {
712                 err = -EPERM;
713                 goto out;
714         }
715
716         err = xfrm_state_delete(x);
717
718         if (err < 0)
719                 goto out;
720
721         c.seq = nlh->nlmsg_seq;
722         c.portid = nlh->nlmsg_pid;
723         c.event = nlh->nlmsg_type;
724         km_state_notify(x, &c);
725
726 out:
727         xfrm_audit_state_delete(x, err ? 0 : 1, true);
728         xfrm_state_put(x);
729         return err;
730 }
731
732 static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
733 {
734         memset(p, 0, sizeof(*p));
735         memcpy(&p->id, &x->id, sizeof(p->id));
736         memcpy(&p->sel, &x->sel, sizeof(p->sel));
737         memcpy(&p->lft, &x->lft, sizeof(p->lft));
738         memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
739         put_unaligned(x->stats.replay_window, &p->stats.replay_window);
740         put_unaligned(x->stats.replay, &p->stats.replay);
741         put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
742         memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
743         p->mode = x->props.mode;
744         p->replay_window = x->props.replay_window;
745         p->reqid = x->props.reqid;
746         p->family = x->props.family;
747         p->flags = x->props.flags;
748         p->seq = x->km.seq;
749 }
750
751 struct xfrm_dump_info {
752         struct sk_buff *in_skb;
753         struct sk_buff *out_skb;
754         u32 nlmsg_seq;
755         u16 nlmsg_flags;
756 };
757
758 static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
759 {
760         struct xfrm_user_sec_ctx *uctx;
761         struct nlattr *attr;
762         int ctx_size = sizeof(*uctx) + s->ctx_len;
763
764         attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
765         if (attr == NULL)
766                 return -EMSGSIZE;
767
768         uctx = nla_data(attr);
769         uctx->exttype = XFRMA_SEC_CTX;
770         uctx->len = ctx_size;
771         uctx->ctx_doi = s->ctx_doi;
772         uctx->ctx_alg = s->ctx_alg;
773         uctx->ctx_len = s->ctx_len;
774         memcpy(uctx + 1, s->ctx_str, s->ctx_len);
775
776         return 0;
777 }
778
779 static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
780 {
781         struct xfrm_algo *algo;
782         struct nlattr *nla;
783
784         nla = nla_reserve(skb, XFRMA_ALG_AUTH,
785                           sizeof(*algo) + (auth->alg_key_len + 7) / 8);
786         if (!nla)
787                 return -EMSGSIZE;
788
789         algo = nla_data(nla);
790         strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
791         memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
792         algo->alg_key_len = auth->alg_key_len;
793
794         return 0;
795 }
796
797 /* Don't change this without updating xfrm_sa_len! */
798 static int copy_to_user_state_extra(struct xfrm_state *x,
799                                     struct xfrm_usersa_info *p,
800                                     struct sk_buff *skb)
801 {
802         int ret = 0;
803
804         copy_to_user_state(x, p);
805
806         if (x->props.extra_flags) {
807                 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
808                                   x->props.extra_flags);
809                 if (ret)
810                         goto out;
811         }
812
813         if (x->coaddr) {
814                 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
815                 if (ret)
816                         goto out;
817         }
818         if (x->lastused) {
819                 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
820                 if (ret)
821                         goto out;
822         }
823         if (x->aead) {
824                 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
825                 if (ret)
826                         goto out;
827         }
828         if (x->aalg) {
829                 ret = copy_to_user_auth(x->aalg, skb);
830                 if (!ret)
831                         ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
832                                       xfrm_alg_auth_len(x->aalg), x->aalg);
833                 if (ret)
834                         goto out;
835         }
836         if (x->ealg) {
837                 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
838                 if (ret)
839                         goto out;
840         }
841         if (x->calg) {
842                 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
843                 if (ret)
844                         goto out;
845         }
846         if (x->encap) {
847                 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
848                 if (ret)
849                         goto out;
850         }
851         if (x->tfcpad) {
852                 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
853                 if (ret)
854                         goto out;
855         }
856         ret = xfrm_mark_put(skb, &x->mark);
857         if (ret)
858                 goto out;
859         if (x->replay_esn)
860                 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
861                               xfrm_replay_state_esn_len(x->replay_esn),
862                               x->replay_esn);
863         else
864                 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
865                               &x->replay);
866         if (ret)
867                 goto out;
868         if (x->security)
869                 ret = copy_sec_ctx(x->security, skb);
870 out:
871         return ret;
872 }
873
874 static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
875 {
876         struct xfrm_dump_info *sp = ptr;
877         struct sk_buff *in_skb = sp->in_skb;
878         struct sk_buff *skb = sp->out_skb;
879         struct xfrm_usersa_info *p;
880         struct nlmsghdr *nlh;
881         int err;
882
883         nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
884                         XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
885         if (nlh == NULL)
886                 return -EMSGSIZE;
887
888         p = nlmsg_data(nlh);
889
890         err = copy_to_user_state_extra(x, p, skb);
891         if (err) {
892                 nlmsg_cancel(skb, nlh);
893                 return err;
894         }
895         nlmsg_end(skb, nlh);
896         return 0;
897 }
898
899 static int xfrm_dump_sa_done(struct netlink_callback *cb)
900 {
901         struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
902         struct sock *sk = cb->skb->sk;
903         struct net *net = sock_net(sk);
904
905         xfrm_state_walk_done(walk, net);
906         return 0;
907 }
908
909 static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
910 static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
911 {
912         struct net *net = sock_net(skb->sk);
913         struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
914         struct xfrm_dump_info info;
915
916         BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
917                      sizeof(cb->args) - sizeof(cb->args[0]));
918
919         info.in_skb = cb->skb;
920         info.out_skb = skb;
921         info.nlmsg_seq = cb->nlh->nlmsg_seq;
922         info.nlmsg_flags = NLM_F_MULTI;
923
924         if (!cb->args[0]) {
925                 struct nlattr *attrs[XFRMA_MAX+1];
926                 struct xfrm_address_filter *filter = NULL;
927                 u8 proto = 0;
928                 int err;
929
930                 cb->args[0] = 1;
931
932                 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
933                                   xfrma_policy);
934                 if (err < 0)
935                         return err;
936
937                 if (attrs[XFRMA_ADDRESS_FILTER]) {
938                         filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
939                                          sizeof(*filter), GFP_KERNEL);
940                         if (filter == NULL)
941                                 return -ENOMEM;
942                 }
943
944                 if (attrs[XFRMA_PROTO])
945                         proto = nla_get_u8(attrs[XFRMA_PROTO]);
946
947                 xfrm_state_walk_init(walk, proto, filter);
948         }
949
950         (void) xfrm_state_walk(net, walk, dump_one_state, &info);
951
952         return skb->len;
953 }
954
955 static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
956                                           struct xfrm_state *x, u32 seq)
957 {
958         struct xfrm_dump_info info;
959         struct sk_buff *skb;
960         int err;
961
962         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
963         if (!skb)
964                 return ERR_PTR(-ENOMEM);
965
966         info.in_skb = in_skb;
967         info.out_skb = skb;
968         info.nlmsg_seq = seq;
969         info.nlmsg_flags = 0;
970
971         err = dump_one_state(x, 0, &info);
972         if (err) {
973                 kfree_skb(skb);
974                 return ERR_PTR(err);
975         }
976
977         return skb;
978 }
979
980 /* A wrapper for nlmsg_multicast() checking that nlsk is still available.
981  * Must be called with RCU read lock.
982  */
983 static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
984                                        u32 pid, unsigned int group)
985 {
986         struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
987
988         if (nlsk)
989                 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
990         else
991                 return -1;
992 }
993
994 static inline size_t xfrm_spdinfo_msgsize(void)
995 {
996         return NLMSG_ALIGN(4)
997                + nla_total_size(sizeof(struct xfrmu_spdinfo))
998                + nla_total_size(sizeof(struct xfrmu_spdhinfo))
999                + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1000                + nla_total_size(sizeof(struct xfrmu_spdhthresh));
1001 }
1002
1003 static int build_spdinfo(struct sk_buff *skb, struct net *net,
1004                          u32 portid, u32 seq, u32 flags)
1005 {
1006         struct xfrmk_spdinfo si;
1007         struct xfrmu_spdinfo spc;
1008         struct xfrmu_spdhinfo sph;
1009         struct xfrmu_spdhthresh spt4, spt6;
1010         struct nlmsghdr *nlh;
1011         int err;
1012         u32 *f;
1013         unsigned lseq;
1014
1015         nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
1016         if (nlh == NULL) /* shouldn't really happen ... */
1017                 return -EMSGSIZE;
1018
1019         f = nlmsg_data(nlh);
1020         *f = flags;
1021         xfrm_spd_getinfo(net, &si);
1022         spc.incnt = si.incnt;
1023         spc.outcnt = si.outcnt;
1024         spc.fwdcnt = si.fwdcnt;
1025         spc.inscnt = si.inscnt;
1026         spc.outscnt = si.outscnt;
1027         spc.fwdscnt = si.fwdscnt;
1028         sph.spdhcnt = si.spdhcnt;
1029         sph.spdhmcnt = si.spdhmcnt;
1030
1031         do {
1032                 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1033
1034                 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1035                 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1036                 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1037                 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1038         } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1039
1040         err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1041         if (!err)
1042                 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
1043         if (!err)
1044                 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1045         if (!err)
1046                 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
1047         if (err) {
1048                 nlmsg_cancel(skb, nlh);
1049                 return err;
1050         }
1051
1052         nlmsg_end(skb, nlh);
1053         return 0;
1054 }
1055
1056 static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1057                             struct nlattr **attrs)
1058 {
1059         struct net *net = sock_net(skb->sk);
1060         struct xfrmu_spdhthresh *thresh4 = NULL;
1061         struct xfrmu_spdhthresh *thresh6 = NULL;
1062
1063         /* selector prefixlen thresholds to hash policies */
1064         if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1065                 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1066
1067                 if (nla_len(rta) < sizeof(*thresh4))
1068                         return -EINVAL;
1069                 thresh4 = nla_data(rta);
1070                 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1071                         return -EINVAL;
1072         }
1073         if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1074                 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1075
1076                 if (nla_len(rta) < sizeof(*thresh6))
1077                         return -EINVAL;
1078                 thresh6 = nla_data(rta);
1079                 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1080                         return -EINVAL;
1081         }
1082
1083         if (thresh4 || thresh6) {
1084                 write_seqlock(&net->xfrm.policy_hthresh.lock);
1085                 if (thresh4) {
1086                         net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1087                         net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1088                 }
1089                 if (thresh6) {
1090                         net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1091                         net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1092                 }
1093                 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1094
1095                 xfrm_policy_hash_rebuild(net);
1096         }
1097
1098         return 0;
1099 }
1100
1101 static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1102                 struct nlattr **attrs)
1103 {
1104         struct net *net = sock_net(skb->sk);
1105         struct sk_buff *r_skb;
1106         u32 *flags = nlmsg_data(nlh);
1107         u32 sportid = NETLINK_CB(skb).portid;
1108         u32 seq = nlh->nlmsg_seq;
1109
1110         r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
1111         if (r_skb == NULL)
1112                 return -ENOMEM;
1113
1114         if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
1115                 BUG();
1116
1117         return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
1118 }
1119
1120 static inline size_t xfrm_sadinfo_msgsize(void)
1121 {
1122         return NLMSG_ALIGN(4)
1123                + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1124                + nla_total_size(4); /* XFRMA_SAD_CNT */
1125 }
1126
1127 static int build_sadinfo(struct sk_buff *skb, struct net *net,
1128                          u32 portid, u32 seq, u32 flags)
1129 {
1130         struct xfrmk_sadinfo si;
1131         struct xfrmu_sadhinfo sh;
1132         struct nlmsghdr *nlh;
1133         int err;
1134         u32 *f;
1135
1136         nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
1137         if (nlh == NULL) /* shouldn't really happen ... */
1138                 return -EMSGSIZE;
1139
1140         f = nlmsg_data(nlh);
1141         *f = flags;
1142         xfrm_sad_getinfo(net, &si);
1143
1144         sh.sadhmcnt = si.sadhmcnt;
1145         sh.sadhcnt = si.sadhcnt;
1146
1147         err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1148         if (!err)
1149                 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1150         if (err) {
1151                 nlmsg_cancel(skb, nlh);
1152                 return err;
1153         }
1154
1155         nlmsg_end(skb, nlh);
1156         return 0;
1157 }
1158
1159 static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1160                 struct nlattr **attrs)
1161 {
1162         struct net *net = sock_net(skb->sk);
1163         struct sk_buff *r_skb;
1164         u32 *flags = nlmsg_data(nlh);
1165         u32 sportid = NETLINK_CB(skb).portid;
1166         u32 seq = nlh->nlmsg_seq;
1167
1168         r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
1169         if (r_skb == NULL)
1170                 return -ENOMEM;
1171
1172         if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
1173                 BUG();
1174
1175         return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
1176 }
1177
1178 static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
1179                 struct nlattr **attrs)
1180 {
1181         struct net *net = sock_net(skb->sk);
1182         struct xfrm_usersa_id *p = nlmsg_data(nlh);
1183         struct xfrm_state *x;
1184         struct sk_buff *resp_skb;
1185         int err = -ESRCH;
1186
1187         x = xfrm_user_state_lookup(net, p, attrs, &err);
1188         if (x == NULL)
1189                 goto out_noput;
1190
1191         resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1192         if (IS_ERR(resp_skb)) {
1193                 err = PTR_ERR(resp_skb);
1194         } else {
1195                 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
1196         }
1197         xfrm_state_put(x);
1198 out_noput:
1199         return err;
1200 }
1201
1202 static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
1203                 struct nlattr **attrs)
1204 {
1205         struct net *net = sock_net(skb->sk);
1206         struct xfrm_state *x;
1207         struct xfrm_userspi_info *p;
1208         struct sk_buff *resp_skb;
1209         xfrm_address_t *daddr;
1210         int family;
1211         int err;
1212         u32 mark;
1213         struct xfrm_mark m;
1214
1215         p = nlmsg_data(nlh);
1216         err = verify_spi_info(p->info.id.proto, p->min, p->max);
1217         if (err)
1218                 goto out_noput;
1219
1220         family = p->info.family;
1221         daddr = &p->info.id.daddr;
1222
1223         x = NULL;
1224
1225         mark = xfrm_mark_get(attrs, &m);
1226         if (p->info.seq) {
1227                 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
1228                 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
1229                         xfrm_state_put(x);
1230                         x = NULL;
1231                 }
1232         }
1233
1234         if (!x)
1235                 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
1236                                   p->info.id.proto, daddr,
1237                                   &p->info.saddr, 1,
1238                                   family);
1239         err = -ENOENT;
1240         if (x == NULL)
1241                 goto out_noput;
1242
1243         err = xfrm_alloc_spi(x, p->min, p->max);
1244         if (err)
1245                 goto out;
1246
1247         resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1248         if (IS_ERR(resp_skb)) {
1249                 err = PTR_ERR(resp_skb);
1250                 goto out;
1251         }
1252
1253         err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
1254
1255 out:
1256         xfrm_state_put(x);
1257 out_noput:
1258         return err;
1259 }
1260
1261 static int verify_policy_dir(u8 dir)
1262 {
1263         switch (dir) {
1264         case XFRM_POLICY_IN:
1265         case XFRM_POLICY_OUT:
1266         case XFRM_POLICY_FWD:
1267                 break;
1268
1269         default:
1270                 return -EINVAL;
1271         }
1272
1273         return 0;
1274 }
1275
1276 static int verify_policy_type(u8 type)
1277 {
1278         switch (type) {
1279         case XFRM_POLICY_TYPE_MAIN:
1280 #ifdef CONFIG_XFRM_SUB_POLICY
1281         case XFRM_POLICY_TYPE_SUB:
1282 #endif
1283                 break;
1284
1285         default:
1286                 return -EINVAL;
1287         }
1288
1289         return 0;
1290 }
1291
1292 static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1293 {
1294         int ret;
1295
1296         switch (p->share) {
1297         case XFRM_SHARE_ANY:
1298         case XFRM_SHARE_SESSION:
1299         case XFRM_SHARE_USER:
1300         case XFRM_SHARE_UNIQUE:
1301                 break;
1302
1303         default:
1304                 return -EINVAL;
1305         }
1306
1307         switch (p->action) {
1308         case XFRM_POLICY_ALLOW:
1309         case XFRM_POLICY_BLOCK:
1310                 break;
1311
1312         default:
1313                 return -EINVAL;
1314         }
1315
1316         switch (p->sel.family) {
1317         case AF_INET:
1318                 break;
1319
1320         case AF_INET6:
1321 #if IS_ENABLED(CONFIG_IPV6)
1322                 break;
1323 #else
1324                 return  -EAFNOSUPPORT;
1325 #endif
1326
1327         default:
1328                 return -EINVAL;
1329         }
1330
1331         ret = verify_policy_dir(p->dir);
1332         if (ret)
1333                 return ret;
1334         if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1335                 return -EINVAL;
1336
1337         return 0;
1338 }
1339
1340 static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
1341 {
1342         struct nlattr *rt = attrs[XFRMA_SEC_CTX];
1343         struct xfrm_user_sec_ctx *uctx;
1344
1345         if (!rt)
1346                 return 0;
1347
1348         uctx = nla_data(rt);
1349         return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
1350 }
1351
1352 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1353                            int nr)
1354 {
1355         int i;
1356
1357         xp->xfrm_nr = nr;
1358         for (i = 0; i < nr; i++, ut++) {
1359                 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1360
1361                 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1362                 memcpy(&t->saddr, &ut->saddr,
1363                        sizeof(xfrm_address_t));
1364                 t->reqid = ut->reqid;
1365                 t->mode = ut->mode;
1366                 t->share = ut->share;
1367                 t->optional = ut->optional;
1368                 t->aalgos = ut->aalgos;
1369                 t->ealgos = ut->ealgos;
1370                 t->calgos = ut->calgos;
1371                 /* If all masks are ~0, then we allow all algorithms. */
1372                 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
1373                 t->encap_family = ut->family;
1374         }
1375 }
1376
1377 static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1378 {
1379         u16 prev_family;
1380         int i;
1381
1382         if (nr > XFRM_MAX_DEPTH)
1383                 return -EINVAL;
1384
1385         prev_family = family;
1386
1387         for (i = 0; i < nr; i++) {
1388                 /* We never validated the ut->family value, so many
1389                  * applications simply leave it at zero.  The check was
1390                  * never made and ut->family was ignored because all
1391                  * templates could be assumed to have the same family as
1392                  * the policy itself.  Now that we will have ipv4-in-ipv6
1393                  * and ipv6-in-ipv4 tunnels, this is no longer true.
1394                  */
1395                 if (!ut[i].family)
1396                         ut[i].family = family;
1397
1398                 if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
1399                     (ut[i].family != prev_family))
1400                         return -EINVAL;
1401
1402                 prev_family = ut[i].family;
1403
1404                 switch (ut[i].family) {
1405                 case AF_INET:
1406                         break;
1407 #if IS_ENABLED(CONFIG_IPV6)
1408                 case AF_INET6:
1409                         break;
1410 #endif
1411                 default:
1412                         return -EINVAL;
1413                 }
1414
1415                 switch (ut[i].id.proto) {
1416                 case IPPROTO_AH:
1417                 case IPPROTO_ESP:
1418                 case IPPROTO_COMP:
1419 #if IS_ENABLED(CONFIG_IPV6)
1420                 case IPPROTO_ROUTING:
1421                 case IPPROTO_DSTOPTS:
1422 #endif
1423                 case IPSEC_PROTO_ANY:
1424                         break;
1425                 default:
1426                         return -EINVAL;
1427                 }
1428
1429         }
1430
1431         return 0;
1432 }
1433
1434 static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
1435 {
1436         struct nlattr *rt = attrs[XFRMA_TMPL];
1437
1438         if (!rt) {
1439                 pol->xfrm_nr = 0;
1440         } else {
1441                 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1442                 int nr = nla_len(rt) / sizeof(*utmpl);
1443                 int err;
1444
1445                 err = validate_tmpl(nr, utmpl, pol->family);
1446                 if (err)
1447                         return err;
1448
1449                 copy_templates(pol, utmpl, nr);
1450         }
1451         return 0;
1452 }
1453
1454 static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
1455 {
1456         struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
1457         struct xfrm_userpolicy_type *upt;
1458         u8 type = XFRM_POLICY_TYPE_MAIN;
1459         int err;
1460
1461         if (rt) {
1462                 upt = nla_data(rt);
1463                 type = upt->type;
1464         }
1465
1466         err = verify_policy_type(type);
1467         if (err)
1468                 return err;
1469
1470         *tp = type;
1471         return 0;
1472 }
1473
1474 static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1475 {
1476         xp->priority = p->priority;
1477         xp->index = p->index;
1478         memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1479         memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1480         xp->action = p->action;
1481         xp->flags = p->flags;
1482         xp->family = p->sel.family;
1483         /* XXX xp->share = p->share; */
1484 }
1485
1486 static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1487 {
1488         memset(p, 0, sizeof(*p));
1489         memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1490         memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1491         memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1492         p->priority = xp->priority;
1493         p->index = xp->index;
1494         p->sel.family = xp->family;
1495         p->dir = dir;
1496         p->action = xp->action;
1497         p->flags = xp->flags;
1498         p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1499 }
1500
1501 static struct xfrm_policy *xfrm_policy_construct(struct net *net, struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
1502 {
1503         struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
1504         int err;
1505
1506         if (!xp) {
1507                 *errp = -ENOMEM;
1508                 return NULL;
1509         }
1510
1511         copy_from_user_policy(xp, p);
1512
1513         err = copy_from_user_policy_type(&xp->type, attrs);
1514         if (err)
1515                 goto error;
1516
1517         if (!(err = copy_from_user_tmpl(xp, attrs)))
1518                 err = copy_from_user_sec_ctx(xp, attrs);
1519         if (err)
1520                 goto error;
1521
1522         xfrm_mark_get(attrs, &xp->mark);
1523
1524         return xp;
1525  error:
1526         *errp = err;
1527         xp->walk.dead = 1;
1528         xfrm_policy_destroy(xp);
1529         return NULL;
1530 }
1531
1532 static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1533                 struct nlattr **attrs)
1534 {
1535         struct net *net = sock_net(skb->sk);
1536         struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
1537         struct xfrm_policy *xp;
1538         struct km_event c;
1539         int err;
1540         int excl;
1541
1542         err = verify_newpolicy_info(p);
1543         if (err)
1544                 return err;
1545         err = verify_sec_ctx_len(attrs);
1546         if (err)
1547                 return err;
1548
1549         xp = xfrm_policy_construct(net, p, attrs, &err);
1550         if (!xp)
1551                 return err;
1552
1553         /* shouldn't excl be based on nlh flags??
1554          * Aha! this is anti-netlink really i.e  more pfkey derived
1555          * in netlink excl is a flag and you wouldnt need
1556          * a type XFRM_MSG_UPDPOLICY - JHS */
1557         excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1558         err = xfrm_policy_insert(p->dir, xp, excl);
1559         xfrm_audit_policy_add(xp, err ? 0 : 1, true);
1560
1561         if (err) {
1562                 security_xfrm_policy_free(xp->security);
1563                 kfree(xp);
1564                 return err;
1565         }
1566
1567         c.event = nlh->nlmsg_type;
1568         c.seq = nlh->nlmsg_seq;
1569         c.portid = nlh->nlmsg_pid;
1570         km_policy_notify(xp, p->dir, &c);
1571
1572         xfrm_pol_put(xp);
1573
1574         return 0;
1575 }
1576
1577 static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1578 {
1579         struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1580         int i;
1581
1582         if (xp->xfrm_nr == 0)
1583                 return 0;
1584
1585         for (i = 0; i < xp->xfrm_nr; i++) {
1586                 struct xfrm_user_tmpl *up = &vec[i];
1587                 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1588
1589                 memset(up, 0, sizeof(*up));
1590                 memcpy(&up->id, &kp->id, sizeof(up->id));
1591                 up->family = kp->encap_family;
1592                 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1593                 up->reqid = kp->reqid;
1594                 up->mode = kp->mode;
1595                 up->share = kp->share;
1596                 up->optional = kp->optional;
1597                 up->aalgos = kp->aalgos;
1598                 up->ealgos = kp->ealgos;
1599                 up->calgos = kp->calgos;
1600         }
1601
1602         return nla_put(skb, XFRMA_TMPL,
1603                        sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
1604 }
1605
1606 static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1607 {
1608         if (x->security) {
1609                 return copy_sec_ctx(x->security, skb);
1610         }
1611         return 0;
1612 }
1613
1614 static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1615 {
1616         if (xp->security)
1617                 return copy_sec_ctx(xp->security, skb);
1618         return 0;
1619 }
1620 static inline size_t userpolicy_type_attrsize(void)
1621 {
1622 #ifdef CONFIG_XFRM_SUB_POLICY
1623         return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1624 #else
1625         return 0;
1626 #endif
1627 }
1628
1629 #ifdef CONFIG_XFRM_SUB_POLICY
1630 static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1631 {
1632         struct xfrm_userpolicy_type upt = {
1633                 .type = type,
1634         };
1635
1636         return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
1637 }
1638
1639 #else
1640 static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1641 {
1642         return 0;
1643 }
1644 #endif
1645
1646 static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1647 {
1648         struct xfrm_dump_info *sp = ptr;
1649         struct xfrm_userpolicy_info *p;
1650         struct sk_buff *in_skb = sp->in_skb;
1651         struct sk_buff *skb = sp->out_skb;
1652         struct nlmsghdr *nlh;
1653         int err;
1654
1655         nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
1656                         XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1657         if (nlh == NULL)
1658                 return -EMSGSIZE;
1659
1660         p = nlmsg_data(nlh);
1661         copy_to_user_policy(xp, p, dir);
1662         err = copy_to_user_tmpl(xp, skb);
1663         if (!err)
1664                 err = copy_to_user_sec_ctx(xp, skb);
1665         if (!err)
1666                 err = copy_to_user_policy_type(xp->type, skb);
1667         if (!err)
1668                 err = xfrm_mark_put(skb, &xp->mark);
1669         if (err) {
1670                 nlmsg_cancel(skb, nlh);
1671                 return err;
1672         }
1673         nlmsg_end(skb, nlh);
1674         return 0;
1675 }
1676
1677 static int xfrm_dump_policy_done(struct netlink_callback *cb)
1678 {
1679         struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1680         struct net *net = sock_net(cb->skb->sk);
1681
1682         xfrm_policy_walk_done(walk, net);
1683         return 0;
1684 }
1685
1686 static int xfrm_dump_policy_start(struct netlink_callback *cb)
1687 {
1688         struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1689
1690         BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1691
1692         xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1693         return 0;
1694 }
1695
1696 static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1697 {
1698         struct net *net = sock_net(skb->sk);
1699         struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1700         struct xfrm_dump_info info;
1701
1702         info.in_skb = cb->skb;
1703         info.out_skb = skb;
1704         info.nlmsg_seq = cb->nlh->nlmsg_seq;
1705         info.nlmsg_flags = NLM_F_MULTI;
1706
1707         (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
1708
1709         return skb->len;
1710 }
1711
1712 static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1713                                           struct xfrm_policy *xp,
1714                                           int dir, u32 seq)
1715 {
1716         struct xfrm_dump_info info;
1717         struct sk_buff *skb;
1718         int err;
1719
1720         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1721         if (!skb)
1722                 return ERR_PTR(-ENOMEM);
1723
1724         info.in_skb = in_skb;
1725         info.out_skb = skb;
1726         info.nlmsg_seq = seq;
1727         info.nlmsg_flags = 0;
1728
1729         err = dump_one_policy(xp, dir, 0, &info);
1730         if (err) {
1731                 kfree_skb(skb);
1732                 return ERR_PTR(err);
1733         }
1734
1735         return skb;
1736 }
1737
1738 static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1739                 struct nlattr **attrs)
1740 {
1741         struct net *net = sock_net(skb->sk);
1742         struct xfrm_policy *xp;
1743         struct xfrm_userpolicy_id *p;
1744         u8 type = XFRM_POLICY_TYPE_MAIN;
1745         int err;
1746         struct km_event c;
1747         int delete;
1748         struct xfrm_mark m;
1749         u32 mark = xfrm_mark_get(attrs, &m);
1750
1751         p = nlmsg_data(nlh);
1752         delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1753
1754         err = copy_from_user_policy_type(&type, attrs);
1755         if (err)
1756                 return err;
1757
1758         err = verify_policy_dir(p->dir);
1759         if (err)
1760                 return err;
1761
1762         if (p->index)
1763                 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
1764         else {
1765                 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
1766                 struct xfrm_sec_ctx *ctx;
1767
1768                 err = verify_sec_ctx_len(attrs);
1769                 if (err)
1770                         return err;
1771
1772                 ctx = NULL;
1773                 if (rt) {
1774                         struct xfrm_user_sec_ctx *uctx = nla_data(rt);
1775
1776                         err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
1777                         if (err)
1778                                 return err;
1779                 }
1780                 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
1781                                            ctx, delete, &err);
1782                 security_xfrm_policy_free(ctx);
1783         }
1784         if (xp == NULL)
1785                 return -ENOENT;
1786
1787         if (!delete) {
1788                 struct sk_buff *resp_skb;
1789
1790                 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1791                 if (IS_ERR(resp_skb)) {
1792                         err = PTR_ERR(resp_skb);
1793                 } else {
1794                         err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
1795                                             NETLINK_CB(skb).portid);
1796                 }
1797         } else {
1798                 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
1799
1800                 if (err != 0)
1801                         goto out;
1802
1803                 c.data.byid = p->index;
1804                 c.event = nlh->nlmsg_type;
1805                 c.seq = nlh->nlmsg_seq;
1806                 c.portid = nlh->nlmsg_pid;
1807                 km_policy_notify(xp, p->dir, &c);
1808         }
1809
1810 out:
1811         xfrm_pol_put(xp);
1812         if (delete && err == 0)
1813                 xfrm_garbage_collect(net);
1814         return err;
1815 }
1816
1817 static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
1818                 struct nlattr **attrs)
1819 {
1820         struct net *net = sock_net(skb->sk);
1821         struct km_event c;
1822         struct xfrm_usersa_flush *p = nlmsg_data(nlh);
1823         int err;
1824
1825         err = xfrm_state_flush(net, p->proto, true);
1826         if (err) {
1827                 if (err == -ESRCH) /* empty table */
1828                         return 0;
1829                 return err;
1830         }
1831         c.data.proto = p->proto;
1832         c.event = nlh->nlmsg_type;
1833         c.seq = nlh->nlmsg_seq;
1834         c.portid = nlh->nlmsg_pid;
1835         c.net = net;
1836         km_state_notify(NULL, &c);
1837
1838         return 0;
1839 }
1840
1841 static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
1842 {
1843         size_t replay_size = x->replay_esn ?
1844                               xfrm_replay_state_esn_len(x->replay_esn) :
1845                               sizeof(struct xfrm_replay_state);
1846
1847         return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
1848                + nla_total_size(replay_size)
1849                + nla_total_size(sizeof(struct xfrm_lifetime_cur))
1850                + nla_total_size(sizeof(struct xfrm_mark))
1851                + nla_total_size(4) /* XFRM_AE_RTHR */
1852                + nla_total_size(4); /* XFRM_AE_ETHR */
1853 }
1854
1855 static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
1856 {
1857         struct xfrm_aevent_id *id;
1858         struct nlmsghdr *nlh;
1859         int err;
1860
1861         nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1862         if (nlh == NULL)
1863                 return -EMSGSIZE;
1864
1865         id = nlmsg_data(nlh);
1866         memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
1867         id->sa_id.spi = x->id.spi;
1868         id->sa_id.family = x->props.family;
1869         id->sa_id.proto = x->id.proto;
1870         memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
1871         id->reqid = x->props.reqid;
1872         id->flags = c->data.aevent;
1873
1874         if (x->replay_esn) {
1875                 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1876                               xfrm_replay_state_esn_len(x->replay_esn),
1877                               x->replay_esn);
1878         } else {
1879                 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1880                               &x->replay);
1881         }
1882         if (err)
1883                 goto out_cancel;
1884         err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1885         if (err)
1886                 goto out_cancel;
1887
1888         if (id->flags & XFRM_AE_RTHR) {
1889                 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1890                 if (err)
1891                         goto out_cancel;
1892         }
1893         if (id->flags & XFRM_AE_ETHR) {
1894                 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1895                                   x->replay_maxage * 10 / HZ);
1896                 if (err)
1897                         goto out_cancel;
1898         }
1899         err = xfrm_mark_put(skb, &x->mark);
1900         if (err)
1901                 goto out_cancel;
1902
1903         nlmsg_end(skb, nlh);
1904         return 0;
1905
1906 out_cancel:
1907         nlmsg_cancel(skb, nlh);
1908         return err;
1909 }
1910
1911 static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1912                 struct nlattr **attrs)
1913 {
1914         struct net *net = sock_net(skb->sk);
1915         struct xfrm_state *x;
1916         struct sk_buff *r_skb;
1917         int err;
1918         struct km_event c;
1919         u32 mark;
1920         struct xfrm_mark m;
1921         struct xfrm_aevent_id *p = nlmsg_data(nlh);
1922         struct xfrm_usersa_id *id = &p->sa_id;
1923
1924         mark = xfrm_mark_get(attrs, &m);
1925
1926         x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
1927         if (x == NULL)
1928                 return -ESRCH;
1929
1930         r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1931         if (r_skb == NULL) {
1932                 xfrm_state_put(x);
1933                 return -ENOMEM;
1934         }
1935
1936         /*
1937          * XXX: is this lock really needed - none of the other
1938          * gets lock (the concern is things getting updated
1939          * while we are still reading) - jhs
1940         */
1941         spin_lock_bh(&x->lock);
1942         c.data.aevent = p->flags;
1943         c.seq = nlh->nlmsg_seq;
1944         c.portid = nlh->nlmsg_pid;
1945
1946         if (build_aevent(r_skb, x, &c) < 0)
1947                 BUG();
1948         err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
1949         spin_unlock_bh(&x->lock);
1950         xfrm_state_put(x);
1951         return err;
1952 }
1953
1954 static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1955                 struct nlattr **attrs)
1956 {
1957         struct net *net = sock_net(skb->sk);
1958         struct xfrm_state *x;
1959         struct km_event c;
1960         int err = -EINVAL;
1961         u32 mark = 0;
1962         struct xfrm_mark m;
1963         struct xfrm_aevent_id *p = nlmsg_data(nlh);
1964         struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
1965         struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
1966         struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
1967         struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1968         struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
1969
1970         if (!lt && !rp && !re && !et && !rt)
1971                 return err;
1972
1973         /* pedantic mode - thou shalt sayeth replaceth */
1974         if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1975                 return err;
1976
1977         mark = xfrm_mark_get(attrs, &m);
1978
1979         x = xfrm_state_lookup(net, mark, &p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
1980         if (x == NULL)
1981                 return -ESRCH;
1982
1983         if (x->km.state != XFRM_STATE_VALID)
1984                 goto out;
1985
1986         err = xfrm_replay_verify_len(x->replay_esn, re);
1987         if (err)
1988                 goto out;
1989
1990         spin_lock_bh(&x->lock);
1991         xfrm_update_ae_params(x, attrs, 1);
1992         spin_unlock_bh(&x->lock);
1993
1994         c.event = nlh->nlmsg_type;
1995         c.seq = nlh->nlmsg_seq;
1996         c.portid = nlh->nlmsg_pid;
1997         c.data.aevent = XFRM_AE_CU;
1998         km_state_notify(x, &c);
1999         err = 0;
2000 out:
2001         xfrm_state_put(x);
2002         return err;
2003 }
2004
2005 static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
2006                 struct nlattr **attrs)
2007 {
2008         struct net *net = sock_net(skb->sk);
2009         struct km_event c;
2010         u8 type = XFRM_POLICY_TYPE_MAIN;
2011         int err;
2012
2013         err = copy_from_user_policy_type(&type, attrs);
2014         if (err)
2015                 return err;
2016
2017         err = xfrm_policy_flush(net, type, true);
2018         if (err) {
2019                 if (err == -ESRCH) /* empty table */
2020                         return 0;
2021                 return err;
2022         }
2023
2024         c.data.type = type;
2025         c.event = nlh->nlmsg_type;
2026         c.seq = nlh->nlmsg_seq;
2027         c.portid = nlh->nlmsg_pid;
2028         c.net = net;
2029         km_policy_notify(NULL, 0, &c);
2030         return 0;
2031 }
2032
2033 static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
2034                 struct nlattr **attrs)
2035 {
2036         struct net *net = sock_net(skb->sk);
2037         struct xfrm_policy *xp;
2038         struct xfrm_user_polexpire *up = nlmsg_data(nlh);
2039         struct xfrm_userpolicy_info *p = &up->pol;
2040         u8 type = XFRM_POLICY_TYPE_MAIN;
2041         int err = -ENOENT;
2042         struct xfrm_mark m;
2043         u32 mark = xfrm_mark_get(attrs, &m);
2044
2045         err = copy_from_user_policy_type(&type, attrs);
2046         if (err)
2047                 return err;
2048
2049         err = verify_policy_dir(p->dir);
2050         if (err)
2051                 return err;
2052
2053         if (p->index)
2054                 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
2055         else {
2056                 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
2057                 struct xfrm_sec_ctx *ctx;
2058
2059                 err = verify_sec_ctx_len(attrs);
2060                 if (err)
2061                         return err;
2062
2063                 ctx = NULL;
2064                 if (rt) {
2065                         struct xfrm_user_sec_ctx *uctx = nla_data(rt);
2066
2067                         err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
2068                         if (err)
2069                                 return err;
2070                 }
2071                 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
2072                                            &p->sel, ctx, 0, &err);
2073                 security_xfrm_policy_free(ctx);
2074         }
2075         if (xp == NULL)
2076                 return -ENOENT;
2077
2078         if (unlikely(xp->walk.dead))
2079                 goto out;
2080
2081         err = 0;
2082         if (up->hard) {
2083                 xfrm_policy_delete(xp, p->dir);
2084                 xfrm_audit_policy_delete(xp, 1, true);
2085         } else {
2086                 // reset the timers here?
2087                 WARN(1, "Don't know what to do with soft policy expire\n");
2088         }
2089         km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
2090
2091 out:
2092         xfrm_pol_put(xp);
2093         return err;
2094 }
2095
2096 static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
2097                 struct nlattr **attrs)
2098 {
2099         struct net *net = sock_net(skb->sk);
2100         struct xfrm_state *x;
2101         int err;
2102         struct xfrm_user_expire *ue = nlmsg_data(nlh);
2103         struct xfrm_usersa_info *p = &ue->state;
2104         struct xfrm_mark m;
2105         u32 mark = xfrm_mark_get(attrs, &m);
2106
2107         x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
2108
2109         err = -ENOENT;
2110         if (x == NULL)
2111                 return err;
2112
2113         spin_lock_bh(&x->lock);
2114         err = -EINVAL;
2115         if (x->km.state != XFRM_STATE_VALID)
2116                 goto out;
2117         km_state_expired(x, ue->hard, nlh->nlmsg_pid);
2118
2119         if (ue->hard) {
2120                 __xfrm_state_delete(x);
2121                 xfrm_audit_state_delete(x, 1, true);
2122         }
2123         err = 0;
2124 out:
2125         spin_unlock_bh(&x->lock);
2126         xfrm_state_put(x);
2127         return err;
2128 }
2129
2130 static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
2131                 struct nlattr **attrs)
2132 {
2133         struct net *net = sock_net(skb->sk);
2134         struct xfrm_policy *xp;
2135         struct xfrm_user_tmpl *ut;
2136         int i;
2137         struct nlattr *rt = attrs[XFRMA_TMPL];
2138         struct xfrm_mark mark;
2139
2140         struct xfrm_user_acquire *ua = nlmsg_data(nlh);
2141         struct xfrm_state *x = xfrm_state_alloc(net);
2142         int err = -ENOMEM;
2143
2144         if (!x)
2145                 goto nomem;
2146
2147         xfrm_mark_get(attrs, &mark);
2148
2149         err = verify_newpolicy_info(&ua->policy);
2150         if (err)
2151                 goto bad_policy;
2152
2153         /*   build an XP */
2154         xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
2155         if (!xp)
2156                 goto free_state;
2157
2158         memcpy(&x->id, &ua->id, sizeof(ua->id));
2159         memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2160         memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
2161         xp->mark.m = x->mark.m = mark.m;
2162         xp->mark.v = x->mark.v = mark.v;
2163         ut = nla_data(rt);
2164         /* extract the templates and for each call km_key */
2165         for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2166                 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2167                 memcpy(&x->id, &t->id, sizeof(x->id));
2168                 x->props.mode = t->mode;
2169                 x->props.reqid = t->reqid;
2170                 x->props.family = ut->family;
2171                 t->aalgos = ua->aalgos;
2172                 t->ealgos = ua->ealgos;
2173                 t->calgos = ua->calgos;
2174                 err = km_query(x, t, xp);
2175
2176         }
2177
2178         kfree(x);
2179         kfree(xp);
2180
2181         return 0;
2182
2183 bad_policy:
2184         WARN(1, "BAD policy passed\n");
2185 free_state:
2186         kfree(x);
2187 nomem:
2188         return err;
2189 }
2190
2191 #ifdef CONFIG_XFRM_MIGRATE
2192 static int copy_from_user_migrate(struct xfrm_migrate *ma,
2193                                   struct xfrm_kmaddress *k,
2194                                   struct nlattr **attrs, int *num)
2195 {
2196         struct nlattr *rt = attrs[XFRMA_MIGRATE];
2197         struct xfrm_user_migrate *um;
2198         int i, num_migrate;
2199
2200         if (k != NULL) {
2201                 struct xfrm_user_kmaddress *uk;
2202
2203                 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2204                 memcpy(&k->local, &uk->local, sizeof(k->local));
2205                 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2206                 k->family = uk->family;
2207                 k->reserved = uk->reserved;
2208         }
2209
2210         um = nla_data(rt);
2211         num_migrate = nla_len(rt) / sizeof(*um);
2212
2213         if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2214                 return -EINVAL;
2215
2216         for (i = 0; i < num_migrate; i++, um++, ma++) {
2217                 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2218                 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2219                 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2220                 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2221
2222                 ma->proto = um->proto;
2223                 ma->mode = um->mode;
2224                 ma->reqid = um->reqid;
2225
2226                 ma->old_family = um->old_family;
2227                 ma->new_family = um->new_family;
2228         }
2229
2230         *num = i;
2231         return 0;
2232 }
2233
2234 static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
2235                            struct nlattr **attrs)
2236 {
2237         struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
2238         struct xfrm_migrate m[XFRM_MAX_DEPTH];
2239         struct xfrm_kmaddress km, *kmp;
2240         u8 type;
2241         int err;
2242         int n = 0;
2243         struct net *net = sock_net(skb->sk);
2244
2245         if (attrs[XFRMA_MIGRATE] == NULL)
2246                 return -EINVAL;
2247
2248         kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2249
2250         err = copy_from_user_policy_type(&type, attrs);
2251         if (err)
2252                 return err;
2253
2254         err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
2255         if (err)
2256                 return err;
2257
2258         if (!n)
2259                 return 0;
2260
2261         xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
2262
2263         return 0;
2264 }
2265 #else
2266 static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
2267                            struct nlattr **attrs)
2268 {
2269         return -ENOPROTOOPT;
2270 }
2271 #endif
2272
2273 #ifdef CONFIG_XFRM_MIGRATE
2274 static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
2275 {
2276         struct xfrm_user_migrate um;
2277
2278         memset(&um, 0, sizeof(um));
2279         um.proto = m->proto;
2280         um.mode = m->mode;
2281         um.reqid = m->reqid;
2282         um.old_family = m->old_family;
2283         memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2284         memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2285         um.new_family = m->new_family;
2286         memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2287         memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2288
2289         return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
2290 }
2291
2292 static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
2293 {
2294         struct xfrm_user_kmaddress uk;
2295
2296         memset(&uk, 0, sizeof(uk));
2297         uk.family = k->family;
2298         uk.reserved = k->reserved;
2299         memcpy(&uk.local, &k->local, sizeof(uk.local));
2300         memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
2301
2302         return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2303 }
2304
2305 static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
2306 {
2307         return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
2308               + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2309               + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2310               + userpolicy_type_attrsize();
2311 }
2312
2313 static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2314                          int num_migrate, const struct xfrm_kmaddress *k,
2315                          const struct xfrm_selector *sel, u8 dir, u8 type)
2316 {
2317         const struct xfrm_migrate *mp;
2318         struct xfrm_userpolicy_id *pol_id;
2319         struct nlmsghdr *nlh;
2320         int i, err;
2321
2322         nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2323         if (nlh == NULL)
2324                 return -EMSGSIZE;
2325
2326         pol_id = nlmsg_data(nlh);
2327         /* copy data from selector, dir, and type to the pol_id */
2328         memset(pol_id, 0, sizeof(*pol_id));
2329         memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2330         pol_id->dir = dir;
2331
2332         if (k != NULL) {
2333                 err = copy_to_user_kmaddress(k, skb);
2334                 if (err)
2335                         goto out_cancel;
2336         }
2337         err = copy_to_user_policy_type(type, skb);
2338         if (err)
2339                 goto out_cancel;
2340         for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
2341                 err = copy_to_user_migrate(mp, skb);
2342                 if (err)
2343                         goto out_cancel;
2344         }
2345
2346         nlmsg_end(skb, nlh);
2347         return 0;
2348
2349 out_cancel:
2350         nlmsg_cancel(skb, nlh);
2351         return err;
2352 }
2353
2354 static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2355                              const struct xfrm_migrate *m, int num_migrate,
2356                              const struct xfrm_kmaddress *k)
2357 {
2358         struct net *net = &init_net;
2359         struct sk_buff *skb;
2360
2361         skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
2362         if (skb == NULL)
2363                 return -ENOMEM;
2364
2365         /* build migrate */
2366         if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
2367                 BUG();
2368
2369         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
2370 }
2371 #else
2372 static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2373                              const struct xfrm_migrate *m, int num_migrate,
2374                              const struct xfrm_kmaddress *k)
2375 {
2376         return -ENOPROTOOPT;
2377 }
2378 #endif
2379
2380 #define XMSGSIZE(type) sizeof(struct type)
2381
2382 static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
2383         [XFRM_MSG_NEWSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
2384         [XFRM_MSG_DELSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2385         [XFRM_MSG_GETSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2386         [XFRM_MSG_NEWPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2387         [XFRM_MSG_DELPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2388         [XFRM_MSG_GETPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2389         [XFRM_MSG_ALLOCSPI    - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
2390         [XFRM_MSG_ACQUIRE     - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
2391         [XFRM_MSG_EXPIRE      - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
2392         [XFRM_MSG_UPDPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2393         [XFRM_MSG_UPDSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
2394         [XFRM_MSG_POLEXPIRE   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
2395         [XFRM_MSG_FLUSHSA     - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
2396         [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
2397         [XFRM_MSG_NEWAE       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2398         [XFRM_MSG_GETAE       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2399         [XFRM_MSG_REPORT      - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
2400         [XFRM_MSG_MIGRATE     - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2401         [XFRM_MSG_GETSADINFO  - XFRM_MSG_BASE] = sizeof(u32),
2402         [XFRM_MSG_NEWSPDINFO  - XFRM_MSG_BASE] = sizeof(u32),
2403         [XFRM_MSG_GETSPDINFO  - XFRM_MSG_BASE] = sizeof(u32),
2404 };
2405
2406 #undef XMSGSIZE
2407
2408 static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
2409         [XFRMA_SA]              = { .len = sizeof(struct xfrm_usersa_info)},
2410         [XFRMA_POLICY]          = { .len = sizeof(struct xfrm_userpolicy_info)},
2411         [XFRMA_LASTUSED]        = { .type = NLA_U64},
2412         [XFRMA_ALG_AUTH_TRUNC]  = { .len = sizeof(struct xfrm_algo_auth)},
2413         [XFRMA_ALG_AEAD]        = { .len = sizeof(struct xfrm_algo_aead) },
2414         [XFRMA_ALG_AUTH]        = { .len = sizeof(struct xfrm_algo) },
2415         [XFRMA_ALG_CRYPT]       = { .len = sizeof(struct xfrm_algo) },
2416         [XFRMA_ALG_COMP]        = { .len = sizeof(struct xfrm_algo) },
2417         [XFRMA_ENCAP]           = { .len = sizeof(struct xfrm_encap_tmpl) },
2418         [XFRMA_TMPL]            = { .len = sizeof(struct xfrm_user_tmpl) },
2419         [XFRMA_SEC_CTX]         = { .len = sizeof(struct xfrm_sec_ctx) },
2420         [XFRMA_LTIME_VAL]       = { .len = sizeof(struct xfrm_lifetime_cur) },
2421         [XFRMA_REPLAY_VAL]      = { .len = sizeof(struct xfrm_replay_state) },
2422         [XFRMA_REPLAY_THRESH]   = { .type = NLA_U32 },
2423         [XFRMA_ETIMER_THRESH]   = { .type = NLA_U32 },
2424         [XFRMA_SRCADDR]         = { .len = sizeof(xfrm_address_t) },
2425         [XFRMA_COADDR]          = { .len = sizeof(xfrm_address_t) },
2426         [XFRMA_POLICY_TYPE]     = { .len = sizeof(struct xfrm_userpolicy_type)},
2427         [XFRMA_MIGRATE]         = { .len = sizeof(struct xfrm_user_migrate) },
2428         [XFRMA_KMADDRESS]       = { .len = sizeof(struct xfrm_user_kmaddress) },
2429         [XFRMA_MARK]            = { .len = sizeof(struct xfrm_mark) },
2430         [XFRMA_TFCPAD]          = { .type = NLA_U32 },
2431         [XFRMA_REPLAY_ESN_VAL]  = { .len = sizeof(struct xfrm_replay_state_esn) },
2432         [XFRMA_SA_EXTRA_FLAGS]  = { .type = NLA_U32 },
2433         [XFRMA_PROTO]           = { .type = NLA_U8 },
2434         [XFRMA_ADDRESS_FILTER]  = { .len = sizeof(struct xfrm_address_filter) },
2435 };
2436
2437 static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2438         [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2439         [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2440 };
2441
2442 static const struct xfrm_link {
2443         int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
2444         int (*start)(struct netlink_callback *);
2445         int (*dump)(struct sk_buff *, struct netlink_callback *);
2446         int (*done)(struct netlink_callback *);
2447         const struct nla_policy *nla_pol;
2448         int nla_max;
2449 } xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2450         [XFRM_MSG_NEWSA       - XFRM_MSG_BASE] = { .doit = xfrm_add_sa        },
2451         [XFRM_MSG_DELSA       - XFRM_MSG_BASE] = { .doit = xfrm_del_sa        },
2452         [XFRM_MSG_GETSA       - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
2453                                                    .dump = xfrm_dump_sa,
2454                                                    .done = xfrm_dump_sa_done  },
2455         [XFRM_MSG_NEWPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_add_policy    },
2456         [XFRM_MSG_DELPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_get_policy    },
2457         [XFRM_MSG_GETPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
2458                                                    .start = xfrm_dump_policy_start,
2459                                                    .dump = xfrm_dump_policy,
2460                                                    .done = xfrm_dump_policy_done },
2461         [XFRM_MSG_ALLOCSPI    - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
2462         [XFRM_MSG_ACQUIRE     - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire   },
2463         [XFRM_MSG_EXPIRE      - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
2464         [XFRM_MSG_UPDPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_add_policy    },
2465         [XFRM_MSG_UPDSA       - XFRM_MSG_BASE] = { .doit = xfrm_add_sa        },
2466         [XFRM_MSG_POLEXPIRE   - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
2467         [XFRM_MSG_FLUSHSA     - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa      },
2468         [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy  },
2469         [XFRM_MSG_NEWAE       - XFRM_MSG_BASE] = { .doit = xfrm_new_ae  },
2470         [XFRM_MSG_GETAE       - XFRM_MSG_BASE] = { .doit = xfrm_get_ae  },
2471         [XFRM_MSG_MIGRATE     - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate    },
2472         [XFRM_MSG_GETSADINFO  - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo   },
2473         [XFRM_MSG_NEWSPDINFO  - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2474                                                    .nla_pol = xfrma_spd_policy,
2475                                                    .nla_max = XFRMA_SPD_MAX },
2476         [XFRM_MSG_GETSPDINFO  - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo   },
2477 };
2478
2479 static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
2480 {
2481         struct net *net = sock_net(skb->sk);
2482         struct nlattr *attrs[XFRMA_MAX+1];
2483         const struct xfrm_link *link;
2484         int type, err;
2485
2486 #ifdef CONFIG_COMPAT
2487         if (is_compat_task())
2488                 return -ENOTSUPP;
2489 #endif
2490
2491         type = nlh->nlmsg_type;
2492         if (type > XFRM_MSG_MAX)
2493                 return -EINVAL;
2494
2495         type -= XFRM_MSG_BASE;
2496         link = &xfrm_dispatch[type];
2497
2498         /* All operations require privileges, even GET */
2499         if (!netlink_net_capable(skb, CAP_NET_ADMIN))
2500                 return -EPERM;
2501
2502         if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2503              type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
2504             (nlh->nlmsg_flags & NLM_F_DUMP)) {
2505                 if (link->dump == NULL)
2506                         return -EINVAL;
2507
2508                 {
2509                         struct netlink_dump_control c = {
2510                                 .start = link->start,
2511                                 .dump = link->dump,
2512                                 .done = link->done,
2513                         };
2514                         return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2515                 }
2516         }
2517
2518         err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2519                           link->nla_max ? : XFRMA_MAX,
2520                           link->nla_pol ? : xfrma_policy);
2521         if (err < 0)
2522                 return err;
2523
2524         if (link->doit == NULL)
2525                 return -EINVAL;
2526
2527         return link->doit(skb, nlh, attrs);
2528 }
2529
2530 static void xfrm_netlink_rcv(struct sk_buff *skb)
2531 {
2532         struct net *net = sock_net(skb->sk);
2533
2534         mutex_lock(&net->xfrm.xfrm_cfg_mutex);
2535         netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2536         mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
2537 }
2538
2539 static inline size_t xfrm_expire_msgsize(void)
2540 {
2541         return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2542                + nla_total_size(sizeof(struct xfrm_mark));
2543 }
2544
2545 static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
2546 {
2547         struct xfrm_user_expire *ue;
2548         struct nlmsghdr *nlh;
2549         int err;
2550
2551         nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2552         if (nlh == NULL)
2553                 return -EMSGSIZE;
2554
2555         ue = nlmsg_data(nlh);
2556         copy_to_user_state(x, &ue->state);
2557         ue->hard = (c->data.hard != 0) ? 1 : 0;
2558
2559         err = xfrm_mark_put(skb, &x->mark);
2560         if (err)
2561                 return err;
2562
2563         nlmsg_end(skb, nlh);
2564         return 0;
2565 }
2566
2567 static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
2568 {
2569         struct net *net = xs_net(x);
2570         struct sk_buff *skb;
2571
2572         skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
2573         if (skb == NULL)
2574                 return -ENOMEM;
2575
2576         if (build_expire(skb, x, c) < 0) {
2577                 kfree_skb(skb);
2578                 return -EMSGSIZE;
2579         }
2580
2581         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
2582 }
2583
2584 static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
2585 {
2586         struct net *net = xs_net(x);
2587         struct sk_buff *skb;
2588
2589         skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2590         if (skb == NULL)
2591                 return -ENOMEM;
2592
2593         if (build_aevent(skb, x, c) < 0)
2594                 BUG();
2595
2596         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
2597 }
2598
2599 static int xfrm_notify_sa_flush(const struct km_event *c)
2600 {
2601         struct net *net = c->net;
2602         struct xfrm_usersa_flush *p;
2603         struct nlmsghdr *nlh;
2604         struct sk_buff *skb;
2605         int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
2606
2607         skb = nlmsg_new(len, GFP_ATOMIC);
2608         if (skb == NULL)
2609                 return -ENOMEM;
2610
2611         nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2612         if (nlh == NULL) {
2613                 kfree_skb(skb);
2614                 return -EMSGSIZE;
2615         }
2616
2617         p = nlmsg_data(nlh);
2618         p->proto = c->data.proto;
2619
2620         nlmsg_end(skb, nlh);
2621
2622         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
2623 }
2624
2625 static inline size_t xfrm_sa_len(struct xfrm_state *x)
2626 {
2627         size_t l = 0;
2628         if (x->aead)
2629                 l += nla_total_size(aead_len(x->aead));
2630         if (x->aalg) {
2631                 l += nla_total_size(sizeof(struct xfrm_algo) +
2632                                     (x->aalg->alg_key_len + 7) / 8);
2633                 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2634         }
2635         if (x->ealg)
2636                 l += nla_total_size(xfrm_alg_len(x->ealg));
2637         if (x->calg)
2638                 l += nla_total_size(sizeof(*x->calg));
2639         if (x->encap)
2640                 l += nla_total_size(sizeof(*x->encap));
2641         if (x->tfcpad)
2642                 l += nla_total_size(sizeof(x->tfcpad));
2643         if (x->replay_esn)
2644                 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
2645         else
2646                 l += nla_total_size(sizeof(struct xfrm_replay_state));
2647         if (x->security)
2648                 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2649                                     x->security->ctx_len);
2650         if (x->coaddr)
2651                 l += nla_total_size(sizeof(*x->coaddr));
2652         if (x->props.extra_flags)
2653                 l += nla_total_size(sizeof(x->props.extra_flags));
2654
2655         /* Must count x->lastused as it may become non-zero behind our back. */
2656         l += nla_total_size(sizeof(u64));
2657
2658         return l;
2659 }
2660
2661 static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
2662 {
2663         struct net *net = xs_net(x);
2664         struct xfrm_usersa_info *p;
2665         struct xfrm_usersa_id *id;
2666         struct nlmsghdr *nlh;
2667         struct sk_buff *skb;
2668         int len = xfrm_sa_len(x);
2669         int headlen, err;
2670
2671         headlen = sizeof(*p);
2672         if (c->event == XFRM_MSG_DELSA) {
2673                 len += nla_total_size(headlen);
2674                 headlen = sizeof(*id);
2675                 len += nla_total_size(sizeof(struct xfrm_mark));
2676         }
2677         len += NLMSG_ALIGN(headlen);
2678
2679         skb = nlmsg_new(len, GFP_ATOMIC);
2680         if (skb == NULL)
2681                 return -ENOMEM;
2682
2683         nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
2684         err = -EMSGSIZE;
2685         if (nlh == NULL)
2686                 goto out_free_skb;
2687
2688         p = nlmsg_data(nlh);
2689         if (c->event == XFRM_MSG_DELSA) {
2690                 struct nlattr *attr;
2691
2692                 id = nlmsg_data(nlh);
2693                 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2694                 id->spi = x->id.spi;
2695                 id->family = x->props.family;
2696                 id->proto = x->id.proto;
2697
2698                 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
2699                 err = -EMSGSIZE;
2700                 if (attr == NULL)
2701                         goto out_free_skb;
2702
2703                 p = nla_data(attr);
2704         }
2705         err = copy_to_user_state_extra(x, p, skb);
2706         if (err)
2707                 goto out_free_skb;
2708
2709         nlmsg_end(skb, nlh);
2710
2711         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
2712
2713 out_free_skb:
2714         kfree_skb(skb);
2715         return err;
2716 }
2717
2718 static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
2719 {
2720
2721         switch (c->event) {
2722         case XFRM_MSG_EXPIRE:
2723                 return xfrm_exp_state_notify(x, c);
2724         case XFRM_MSG_NEWAE:
2725                 return xfrm_aevent_state_notify(x, c);
2726         case XFRM_MSG_DELSA:
2727         case XFRM_MSG_UPDSA:
2728         case XFRM_MSG_NEWSA:
2729                 return xfrm_notify_sa(x, c);
2730         case XFRM_MSG_FLUSHSA:
2731                 return xfrm_notify_sa_flush(c);
2732         default:
2733                 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2734                        c->event);
2735                 break;
2736         }
2737
2738         return 0;
2739
2740 }
2741
2742 static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2743                                           struct xfrm_policy *xp)
2744 {
2745         return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2746                + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2747                + nla_total_size(sizeof(struct xfrm_mark))
2748                + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2749                + userpolicy_type_attrsize();
2750 }
2751
2752 static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2753                          struct xfrm_tmpl *xt, struct xfrm_policy *xp)
2754 {
2755         __u32 seq = xfrm_get_acqseq();
2756         struct xfrm_user_acquire *ua;
2757         struct nlmsghdr *nlh;
2758         int err;
2759
2760         nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2761         if (nlh == NULL)
2762                 return -EMSGSIZE;
2763
2764         ua = nlmsg_data(nlh);
2765         memcpy(&ua->id, &x->id, sizeof(ua->id));
2766         memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2767         memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2768         copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
2769         ua->aalgos = xt->aalgos;
2770         ua->ealgos = xt->ealgos;
2771         ua->calgos = xt->calgos;
2772         ua->seq = x->km.seq = seq;
2773
2774         err = copy_to_user_tmpl(xp, skb);
2775         if (!err)
2776                 err = copy_to_user_state_sec_ctx(x, skb);
2777         if (!err)
2778                 err = copy_to_user_policy_type(xp->type, skb);
2779         if (!err)
2780                 err = xfrm_mark_put(skb, &xp->mark);
2781         if (err) {
2782                 nlmsg_cancel(skb, nlh);
2783                 return err;
2784         }
2785
2786         nlmsg_end(skb, nlh);
2787         return 0;
2788 }
2789
2790 static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2791                              struct xfrm_policy *xp)
2792 {
2793         struct net *net = xs_net(x);
2794         struct sk_buff *skb;
2795
2796         skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
2797         if (skb == NULL)
2798                 return -ENOMEM;
2799
2800         if (build_acquire(skb, x, xt, xp) < 0)
2801                 BUG();
2802
2803         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
2804 }
2805
2806 /* User gives us xfrm_user_policy_info followed by an array of 0
2807  * or more templates.
2808  */
2809 static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
2810                                                u8 *data, int len, int *dir)
2811 {
2812         struct net *net = sock_net(sk);
2813         struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2814         struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2815         struct xfrm_policy *xp;
2816         int nr;
2817
2818         switch (sk->sk_family) {
2819         case AF_INET:
2820                 if (opt != IP_XFRM_POLICY) {
2821                         *dir = -EOPNOTSUPP;
2822                         return NULL;
2823                 }
2824                 break;
2825 #if IS_ENABLED(CONFIG_IPV6)
2826         case AF_INET6:
2827                 if (opt != IPV6_XFRM_POLICY) {
2828                         *dir = -EOPNOTSUPP;
2829                         return NULL;
2830                 }
2831                 break;
2832 #endif
2833         default:
2834                 *dir = -EINVAL;
2835                 return NULL;
2836         }
2837
2838         *dir = -EINVAL;
2839
2840         if (len < sizeof(*p) ||
2841             verify_newpolicy_info(p))
2842                 return NULL;
2843
2844         nr = ((len - sizeof(*p)) / sizeof(*ut));
2845         if (validate_tmpl(nr, ut, p->sel.family))
2846                 return NULL;
2847
2848         if (p->dir > XFRM_POLICY_OUT)
2849                 return NULL;
2850
2851         xp = xfrm_policy_alloc(net, GFP_ATOMIC);
2852         if (xp == NULL) {
2853                 *dir = -ENOBUFS;
2854                 return NULL;
2855         }
2856
2857         copy_from_user_policy(xp, p);
2858         xp->type = XFRM_POLICY_TYPE_MAIN;
2859         copy_templates(xp, ut, nr);
2860
2861         *dir = p->dir;
2862
2863         return xp;
2864 }
2865
2866 static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2867 {
2868         return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2869                + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2870                + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
2871                + nla_total_size(sizeof(struct xfrm_mark))
2872                + userpolicy_type_attrsize();
2873 }
2874
2875 static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
2876                            int dir, const struct km_event *c)
2877 {
2878         struct xfrm_user_polexpire *upe;
2879         int hard = c->data.hard;
2880         struct nlmsghdr *nlh;
2881         int err;
2882
2883         nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2884         if (nlh == NULL)
2885                 return -EMSGSIZE;
2886
2887         upe = nlmsg_data(nlh);
2888         copy_to_user_policy(xp, &upe->pol, dir);
2889         err = copy_to_user_tmpl(xp, skb);
2890         if (!err)
2891                 err = copy_to_user_sec_ctx(xp, skb);
2892         if (!err)
2893                 err = copy_to_user_policy_type(xp->type, skb);
2894         if (!err)
2895                 err = xfrm_mark_put(skb, &xp->mark);
2896         if (err) {
2897                 nlmsg_cancel(skb, nlh);
2898                 return err;
2899         }
2900         upe->hard = !!hard;
2901
2902         nlmsg_end(skb, nlh);
2903         return 0;
2904 }
2905
2906 static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
2907 {
2908         struct net *net = xp_net(xp);
2909         struct sk_buff *skb;
2910
2911         skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
2912         if (skb == NULL)
2913                 return -ENOMEM;
2914
2915         if (build_polexpire(skb, xp, dir, c) < 0)
2916                 BUG();
2917
2918         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
2919 }
2920
2921 static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
2922 {
2923         int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2924         struct net *net = xp_net(xp);
2925         struct xfrm_userpolicy_info *p;
2926         struct xfrm_userpolicy_id *id;
2927         struct nlmsghdr *nlh;
2928         struct sk_buff *skb;
2929         int headlen, err;
2930
2931         headlen = sizeof(*p);
2932         if (c->event == XFRM_MSG_DELPOLICY) {
2933                 len += nla_total_size(headlen);
2934                 headlen = sizeof(*id);
2935         }
2936         len += userpolicy_type_attrsize();
2937         len += nla_total_size(sizeof(struct xfrm_mark));
2938         len += NLMSG_ALIGN(headlen);
2939
2940         skb = nlmsg_new(len, GFP_ATOMIC);
2941         if (skb == NULL)
2942                 return -ENOMEM;
2943
2944         nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
2945         err = -EMSGSIZE;
2946         if (nlh == NULL)
2947                 goto out_free_skb;
2948
2949         p = nlmsg_data(nlh);
2950         if (c->event == XFRM_MSG_DELPOLICY) {
2951                 struct nlattr *attr;
2952
2953                 id = nlmsg_data(nlh);
2954                 memset(id, 0, sizeof(*id));
2955                 id->dir = dir;
2956                 if (c->data.byid)
2957                         id->index = xp->index;
2958                 else
2959                         memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2960
2961                 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
2962                 err = -EMSGSIZE;
2963                 if (attr == NULL)
2964                         goto out_free_skb;
2965
2966                 p = nla_data(attr);
2967         }
2968
2969         copy_to_user_policy(xp, p, dir);
2970         err = copy_to_user_tmpl(xp, skb);
2971         if (!err)
2972                 err = copy_to_user_policy_type(xp->type, skb);
2973         if (!err)
2974                 err = xfrm_mark_put(skb, &xp->mark);
2975         if (err)
2976                 goto out_free_skb;
2977
2978         nlmsg_end(skb, nlh);
2979
2980         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
2981
2982 out_free_skb:
2983         kfree_skb(skb);
2984         return err;
2985 }
2986
2987 static int xfrm_notify_policy_flush(const struct km_event *c)
2988 {
2989         struct net *net = c->net;
2990         struct nlmsghdr *nlh;
2991         struct sk_buff *skb;
2992         int err;
2993
2994         skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
2995         if (skb == NULL)
2996                 return -ENOMEM;
2997
2998         nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
2999         err = -EMSGSIZE;
3000         if (nlh == NULL)
3001                 goto out_free_skb;
3002         err = copy_to_user_policy_type(c->data.type, skb);
3003         if (err)
3004                 goto out_free_skb;
3005
3006         nlmsg_end(skb, nlh);
3007
3008         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
3009
3010 out_free_skb:
3011         kfree_skb(skb);
3012         return err;
3013 }
3014
3015 static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
3016 {
3017
3018         switch (c->event) {
3019         case XFRM_MSG_NEWPOLICY:
3020         case XFRM_MSG_UPDPOLICY:
3021         case XFRM_MSG_DELPOLICY:
3022                 return xfrm_notify_policy(xp, dir, c);
3023         case XFRM_MSG_FLUSHPOLICY:
3024                 return xfrm_notify_policy_flush(c);
3025         case XFRM_MSG_POLEXPIRE:
3026                 return xfrm_exp_policy_notify(xp, dir, c);
3027         default:
3028                 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3029                        c->event);
3030         }
3031
3032         return 0;
3033
3034 }
3035
3036 static inline size_t xfrm_report_msgsize(void)
3037 {
3038         return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3039 }
3040
3041 static int build_report(struct sk_buff *skb, u8 proto,
3042                         struct xfrm_selector *sel, xfrm_address_t *addr)
3043 {
3044         struct xfrm_user_report *ur;
3045         struct nlmsghdr *nlh;
3046
3047         nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3048         if (nlh == NULL)
3049                 return -EMSGSIZE;
3050
3051         ur = nlmsg_data(nlh);
3052         ur->proto = proto;
3053         memcpy(&ur->sel, sel, sizeof(ur->sel));
3054
3055         if (addr) {
3056                 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3057                 if (err) {
3058                         nlmsg_cancel(skb, nlh);
3059                         return err;
3060                 }
3061         }
3062         nlmsg_end(skb, nlh);
3063         return 0;
3064 }
3065
3066 static int xfrm_send_report(struct net *net, u8 proto,
3067                             struct xfrm_selector *sel, xfrm_address_t *addr)
3068 {
3069         struct sk_buff *skb;
3070
3071         skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
3072         if (skb == NULL)
3073                 return -ENOMEM;
3074
3075         if (build_report(skb, proto, sel, addr) < 0)
3076                 BUG();
3077
3078         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
3079 }
3080
3081 static inline size_t xfrm_mapping_msgsize(void)
3082 {
3083         return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3084 }
3085
3086 static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3087                          xfrm_address_t *new_saddr, __be16 new_sport)
3088 {
3089         struct xfrm_user_mapping *um;
3090         struct nlmsghdr *nlh;
3091
3092         nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3093         if (nlh == NULL)
3094                 return -EMSGSIZE;
3095
3096         um = nlmsg_data(nlh);
3097
3098         memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3099         um->id.spi = x->id.spi;
3100         um->id.family = x->props.family;
3101         um->id.proto = x->id.proto;
3102         memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3103         memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3104         um->new_sport = new_sport;
3105         um->old_sport = x->encap->encap_sport;
3106         um->reqid = x->props.reqid;
3107
3108         nlmsg_end(skb, nlh);
3109         return 0;
3110 }
3111
3112 static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3113                              __be16 sport)
3114 {
3115         struct net *net = xs_net(x);
3116         struct sk_buff *skb;
3117
3118         if (x->id.proto != IPPROTO_ESP)
3119                 return -EINVAL;
3120
3121         if (!x->encap)
3122                 return -EINVAL;
3123
3124         skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3125         if (skb == NULL)
3126                 return -ENOMEM;
3127
3128         if (build_mapping(skb, x, ipaddr, sport) < 0)
3129                 BUG();
3130
3131         return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
3132 }
3133
3134 static bool xfrm_is_alive(const struct km_event *c)
3135 {
3136         return (bool)xfrm_acquire_is_on(c->net);
3137 }
3138
3139 static struct xfrm_mgr netlink_mgr = {
3140         .id             = "netlink",
3141         .notify         = xfrm_send_state_notify,
3142         .acquire        = xfrm_send_acquire,
3143         .compile_policy = xfrm_compile_policy,
3144         .notify_policy  = xfrm_send_policy_notify,
3145         .report         = xfrm_send_report,
3146         .migrate        = xfrm_send_migrate,
3147         .new_mapping    = xfrm_send_mapping,
3148         .is_alive       = xfrm_is_alive,
3149 };
3150
3151 static int __net_init xfrm_user_net_init(struct net *net)
3152 {
3153         struct sock *nlsk;
3154         struct netlink_kernel_cfg cfg = {
3155                 .groups = XFRMNLGRP_MAX,
3156                 .input  = xfrm_netlink_rcv,
3157         };
3158
3159         nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
3160         if (nlsk == NULL)
3161                 return -ENOMEM;
3162         net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
3163         rcu_assign_pointer(net->xfrm.nlsk, nlsk);
3164         return 0;
3165 }
3166
3167 static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
3168 {
3169         struct net *net;
3170         list_for_each_entry(net, net_exit_list, exit_list)
3171                 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
3172         synchronize_net();
3173         list_for_each_entry(net, net_exit_list, exit_list)
3174                 netlink_kernel_release(net->xfrm.nlsk_stash);
3175 }
3176
3177 static struct pernet_operations xfrm_user_net_ops = {
3178         .init       = xfrm_user_net_init,
3179         .exit_batch = xfrm_user_net_exit,
3180 };
3181
3182 static int __init xfrm_user_init(void)
3183 {
3184         int rv;
3185
3186         printk(KERN_INFO "Initializing XFRM netlink socket\n");
3187
3188         rv = register_pernet_subsys(&xfrm_user_net_ops);
3189         if (rv < 0)
3190                 return rv;
3191         rv = xfrm_register_km(&netlink_mgr);
3192         if (rv < 0)
3193                 unregister_pernet_subsys(&xfrm_user_net_ops);
3194         return rv;
3195 }
3196
3197 static void __exit xfrm_user_exit(void)
3198 {
3199         xfrm_unregister_km(&netlink_mgr);
3200         unregister_pernet_subsys(&xfrm_user_net_ops);
3201 }
3202
3203 module_init(xfrm_user_init);
3204 module_exit(xfrm_user_exit);
3205 MODULE_LICENSE("GPL");
3206 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
3207