[IPSEC]: Move common code into xfrm_alloc_spi
[safe/jmp/linux-2.6] / 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 <asm/uaccess.h>
30 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
31 #include <linux/in6.h>
32 #endif
33
34 static inline int alg_len(struct xfrm_algo *alg)
35 {
36         return sizeof(*alg) + ((alg->alg_key_len + 7) / 8);
37 }
38
39 static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
40 {
41         struct nlattr *rt = attrs[type];
42         struct xfrm_algo *algp;
43
44         if (!rt)
45                 return 0;
46
47         algp = nla_data(rt);
48         if (nla_len(rt) < alg_len(algp))
49                 return -EINVAL;
50
51         switch (type) {
52         case XFRMA_ALG_AUTH:
53                 if (!algp->alg_key_len &&
54                     strcmp(algp->alg_name, "digest_null") != 0)
55                         return -EINVAL;
56                 break;
57
58         case XFRMA_ALG_CRYPT:
59                 if (!algp->alg_key_len &&
60                     strcmp(algp->alg_name, "cipher_null") != 0)
61                         return -EINVAL;
62                 break;
63
64         case XFRMA_ALG_COMP:
65                 /* Zero length keys are legal.  */
66                 break;
67
68         default:
69                 return -EINVAL;
70         }
71
72         algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
73         return 0;
74 }
75
76 static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
77                            xfrm_address_t **addrp)
78 {
79         struct nlattr *rt = attrs[type];
80
81         if (rt && addrp)
82                 *addrp = nla_data(rt);
83 }
84
85 static inline int verify_sec_ctx_len(struct nlattr **attrs)
86 {
87         struct nlattr *rt = attrs[XFRMA_SEC_CTX];
88         struct xfrm_user_sec_ctx *uctx;
89
90         if (!rt)
91                 return 0;
92
93         uctx = nla_data(rt);
94         if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
95                 return -EINVAL;
96
97         return 0;
98 }
99
100
101 static int verify_newsa_info(struct xfrm_usersa_info *p,
102                              struct nlattr **attrs)
103 {
104         int err;
105
106         err = -EINVAL;
107         switch (p->family) {
108         case AF_INET:
109                 break;
110
111         case AF_INET6:
112 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
113                 break;
114 #else
115                 err = -EAFNOSUPPORT;
116                 goto out;
117 #endif
118
119         default:
120                 goto out;
121         }
122
123         err = -EINVAL;
124         switch (p->id.proto) {
125         case IPPROTO_AH:
126                 if (!attrs[XFRMA_ALG_AUTH]      ||
127                     attrs[XFRMA_ALG_CRYPT]      ||
128                     attrs[XFRMA_ALG_COMP])
129                         goto out;
130                 break;
131
132         case IPPROTO_ESP:
133                 if ((!attrs[XFRMA_ALG_AUTH] &&
134                      !attrs[XFRMA_ALG_CRYPT])   ||
135                     attrs[XFRMA_ALG_COMP])
136                         goto out;
137                 break;
138
139         case IPPROTO_COMP:
140                 if (!attrs[XFRMA_ALG_COMP]      ||
141                     attrs[XFRMA_ALG_AUTH]       ||
142                     attrs[XFRMA_ALG_CRYPT])
143                         goto out;
144                 break;
145
146 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
147         case IPPROTO_DSTOPTS:
148         case IPPROTO_ROUTING:
149                 if (attrs[XFRMA_ALG_COMP]       ||
150                     attrs[XFRMA_ALG_AUTH]       ||
151                     attrs[XFRMA_ALG_CRYPT]      ||
152                     attrs[XFRMA_ENCAP]          ||
153                     attrs[XFRMA_SEC_CTX]        ||
154                     !attrs[XFRMA_COADDR])
155                         goto out;
156                 break;
157 #endif
158
159         default:
160                 goto out;
161         }
162
163         if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
164                 goto out;
165         if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
166                 goto out;
167         if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
168                 goto out;
169         if ((err = verify_sec_ctx_len(attrs)))
170                 goto out;
171
172         err = -EINVAL;
173         switch (p->mode) {
174         case XFRM_MODE_TRANSPORT:
175         case XFRM_MODE_TUNNEL:
176         case XFRM_MODE_ROUTEOPTIMIZATION:
177         case XFRM_MODE_BEET:
178                 break;
179
180         default:
181                 goto out;
182         }
183
184         err = 0;
185
186 out:
187         return err;
188 }
189
190 static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
191                            struct xfrm_algo_desc *(*get_byname)(char *, int),
192                            struct nlattr *rta)
193 {
194         struct xfrm_algo *p, *ualg;
195         struct xfrm_algo_desc *algo;
196
197         if (!rta)
198                 return 0;
199
200         ualg = nla_data(rta);
201
202         algo = get_byname(ualg->alg_name, 1);
203         if (!algo)
204                 return -ENOSYS;
205         *props = algo->desc.sadb_alg_id;
206
207         p = kmemdup(ualg, alg_len(ualg), GFP_KERNEL);
208         if (!p)
209                 return -ENOMEM;
210
211         strcpy(p->alg_name, algo->name);
212         *algpp = p;
213         return 0;
214 }
215
216 static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
217 {
218         int len = 0;
219
220         if (xfrm_ctx) {
221                 len += sizeof(struct xfrm_user_sec_ctx);
222                 len += xfrm_ctx->ctx_len;
223         }
224         return len;
225 }
226
227 static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
228 {
229         memcpy(&x->id, &p->id, sizeof(x->id));
230         memcpy(&x->sel, &p->sel, sizeof(x->sel));
231         memcpy(&x->lft, &p->lft, sizeof(x->lft));
232         x->props.mode = p->mode;
233         x->props.replay_window = p->replay_window;
234         x->props.reqid = p->reqid;
235         x->props.family = p->family;
236         memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
237         x->props.flags = p->flags;
238
239         /*
240          * Set inner address family if the KM left it as zero.
241          * See comment in validate_tmpl.
242          */
243         if (!x->sel.family)
244                 x->sel.family = p->family;
245 }
246
247 /*
248  * someday when pfkey also has support, we could have the code
249  * somehow made shareable and move it to xfrm_state.c - JHS
250  *
251 */
252 static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs)
253 {
254         struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
255         struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
256         struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
257         struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
258
259         if (rp) {
260                 struct xfrm_replay_state *replay;
261                 replay = nla_data(rp);
262                 memcpy(&x->replay, replay, sizeof(*replay));
263                 memcpy(&x->preplay, replay, sizeof(*replay));
264         }
265
266         if (lt) {
267                 struct xfrm_lifetime_cur *ltime;
268                 ltime = nla_data(lt);
269                 x->curlft.bytes = ltime->bytes;
270                 x->curlft.packets = ltime->packets;
271                 x->curlft.add_time = ltime->add_time;
272                 x->curlft.use_time = ltime->use_time;
273         }
274
275         if (et)
276                 x->replay_maxage = nla_get_u32(et);
277
278         if (rt)
279                 x->replay_maxdiff = nla_get_u32(rt);
280 }
281
282 static struct xfrm_state *xfrm_state_construct(struct xfrm_usersa_info *p,
283                                                struct nlattr **attrs,
284                                                int *errp)
285 {
286         struct xfrm_state *x = xfrm_state_alloc();
287         int err = -ENOMEM;
288
289         if (!x)
290                 goto error_no_put;
291
292         copy_from_user_state(x, p);
293
294         if ((err = attach_one_algo(&x->aalg, &x->props.aalgo,
295                                    xfrm_aalg_get_byname,
296                                    attrs[XFRMA_ALG_AUTH])))
297                 goto error;
298         if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
299                                    xfrm_ealg_get_byname,
300                                    attrs[XFRMA_ALG_CRYPT])))
301                 goto error;
302         if ((err = attach_one_algo(&x->calg, &x->props.calgo,
303                                    xfrm_calg_get_byname,
304                                    attrs[XFRMA_ALG_COMP])))
305                 goto error;
306
307         if (attrs[XFRMA_ENCAP]) {
308                 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
309                                    sizeof(*x->encap), GFP_KERNEL);
310                 if (x->encap == NULL)
311                         goto error;
312         }
313
314         if (attrs[XFRMA_COADDR]) {
315                 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
316                                     sizeof(*x->coaddr), GFP_KERNEL);
317                 if (x->coaddr == NULL)
318                         goto error;
319         }
320
321         err = xfrm_init_state(x);
322         if (err)
323                 goto error;
324
325         if (attrs[XFRMA_SEC_CTX] &&
326             security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
327                 goto error;
328
329         x->km.seq = p->seq;
330         x->replay_maxdiff = sysctl_xfrm_aevent_rseqth;
331         /* sysctl_xfrm_aevent_etime is in 100ms units */
332         x->replay_maxage = (sysctl_xfrm_aevent_etime*HZ)/XFRM_AE_ETH_M;
333         x->preplay.bitmap = 0;
334         x->preplay.seq = x->replay.seq+x->replay_maxdiff;
335         x->preplay.oseq = x->replay.oseq +x->replay_maxdiff;
336
337         /* override default values from above */
338
339         xfrm_update_ae_params(x, attrs);
340
341         return x;
342
343 error:
344         x->km.state = XFRM_STATE_DEAD;
345         xfrm_state_put(x);
346 error_no_put:
347         *errp = err;
348         return NULL;
349 }
350
351 static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
352                 struct nlattr **attrs)
353 {
354         struct xfrm_usersa_info *p = nlmsg_data(nlh);
355         struct xfrm_state *x;
356         int err;
357         struct km_event c;
358
359         err = verify_newsa_info(p, attrs);
360         if (err)
361                 return err;
362
363         x = xfrm_state_construct(p, attrs, &err);
364         if (!x)
365                 return err;
366
367         xfrm_state_hold(x);
368         if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
369                 err = xfrm_state_add(x);
370         else
371                 err = xfrm_state_update(x);
372
373         xfrm_audit_state_add(x, err ? 0 : 1, NETLINK_CB(skb).loginuid,
374                              NETLINK_CB(skb).sid);
375
376         if (err < 0) {
377                 x->km.state = XFRM_STATE_DEAD;
378                 __xfrm_state_put(x);
379                 goto out;
380         }
381
382         c.seq = nlh->nlmsg_seq;
383         c.pid = nlh->nlmsg_pid;
384         c.event = nlh->nlmsg_type;
385
386         km_state_notify(x, &c);
387 out:
388         xfrm_state_put(x);
389         return err;
390 }
391
392 static struct xfrm_state *xfrm_user_state_lookup(struct xfrm_usersa_id *p,
393                                                  struct nlattr **attrs,
394                                                  int *errp)
395 {
396         struct xfrm_state *x = NULL;
397         int err;
398
399         if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
400                 err = -ESRCH;
401                 x = xfrm_state_lookup(&p->daddr, p->spi, p->proto, p->family);
402         } else {
403                 xfrm_address_t *saddr = NULL;
404
405                 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
406                 if (!saddr) {
407                         err = -EINVAL;
408                         goto out;
409                 }
410
411                 err = -ESRCH;
412                 x = xfrm_state_lookup_byaddr(&p->daddr, saddr, p->proto,
413                                              p->family);
414         }
415
416  out:
417         if (!x && errp)
418                 *errp = err;
419         return x;
420 }
421
422 static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
423                 struct nlattr **attrs)
424 {
425         struct xfrm_state *x;
426         int err = -ESRCH;
427         struct km_event c;
428         struct xfrm_usersa_id *p = nlmsg_data(nlh);
429
430         x = xfrm_user_state_lookup(p, attrs, &err);
431         if (x == NULL)
432                 return err;
433
434         if ((err = security_xfrm_state_delete(x)) != 0)
435                 goto out;
436
437         if (xfrm_state_kern(x)) {
438                 err = -EPERM;
439                 goto out;
440         }
441
442         err = xfrm_state_delete(x);
443
444         if (err < 0)
445                 goto out;
446
447         c.seq = nlh->nlmsg_seq;
448         c.pid = nlh->nlmsg_pid;
449         c.event = nlh->nlmsg_type;
450         km_state_notify(x, &c);
451
452 out:
453         xfrm_audit_state_delete(x, err ? 0 : 1, NETLINK_CB(skb).loginuid,
454                                 NETLINK_CB(skb).sid);
455         xfrm_state_put(x);
456         return err;
457 }
458
459 static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
460 {
461         memcpy(&p->id, &x->id, sizeof(p->id));
462         memcpy(&p->sel, &x->sel, sizeof(p->sel));
463         memcpy(&p->lft, &x->lft, sizeof(p->lft));
464         memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
465         memcpy(&p->stats, &x->stats, sizeof(p->stats));
466         memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
467         p->mode = x->props.mode;
468         p->replay_window = x->props.replay_window;
469         p->reqid = x->props.reqid;
470         p->family = x->props.family;
471         p->flags = x->props.flags;
472         p->seq = x->km.seq;
473 }
474
475 struct xfrm_dump_info {
476         struct sk_buff *in_skb;
477         struct sk_buff *out_skb;
478         u32 nlmsg_seq;
479         u16 nlmsg_flags;
480         int start_idx;
481         int this_idx;
482 };
483
484 static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
485 {
486         int ctx_size = sizeof(struct xfrm_sec_ctx) + s->ctx_len;
487         struct xfrm_user_sec_ctx *uctx;
488         struct nlattr *attr;
489
490         attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
491         if (attr == NULL)
492                 return -EMSGSIZE;
493
494         uctx = nla_data(attr);
495         uctx->exttype = XFRMA_SEC_CTX;
496         uctx->len = ctx_size;
497         uctx->ctx_doi = s->ctx_doi;
498         uctx->ctx_alg = s->ctx_alg;
499         uctx->ctx_len = s->ctx_len;
500         memcpy(uctx + 1, s->ctx_str, s->ctx_len);
501
502         return 0;
503 }
504
505 static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
506 {
507         struct xfrm_dump_info *sp = ptr;
508         struct sk_buff *in_skb = sp->in_skb;
509         struct sk_buff *skb = sp->out_skb;
510         struct xfrm_usersa_info *p;
511         struct nlmsghdr *nlh;
512
513         if (sp->this_idx < sp->start_idx)
514                 goto out;
515
516         nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
517                         XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
518         if (nlh == NULL)
519                 return -EMSGSIZE;
520
521         p = nlmsg_data(nlh);
522         copy_to_user_state(x, p);
523
524         if (x->aalg)
525                 NLA_PUT(skb, XFRMA_ALG_AUTH, alg_len(x->aalg), x->aalg);
526         if (x->ealg)
527                 NLA_PUT(skb, XFRMA_ALG_CRYPT, alg_len(x->ealg), x->ealg);
528         if (x->calg)
529                 NLA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
530
531         if (x->encap)
532                 NLA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
533
534         if (x->security && copy_sec_ctx(x->security, skb) < 0)
535                 goto nla_put_failure;
536
537         if (x->coaddr)
538                 NLA_PUT(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
539
540         if (x->lastused)
541                 NLA_PUT_U64(skb, XFRMA_LASTUSED, x->lastused);
542
543         nlmsg_end(skb, nlh);
544 out:
545         sp->this_idx++;
546         return 0;
547
548 nla_put_failure:
549         nlmsg_cancel(skb, nlh);
550         return -EMSGSIZE;
551 }
552
553 static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
554 {
555         struct xfrm_dump_info info;
556
557         info.in_skb = cb->skb;
558         info.out_skb = skb;
559         info.nlmsg_seq = cb->nlh->nlmsg_seq;
560         info.nlmsg_flags = NLM_F_MULTI;
561         info.this_idx = 0;
562         info.start_idx = cb->args[0];
563         (void) xfrm_state_walk(0, dump_one_state, &info);
564         cb->args[0] = info.this_idx;
565
566         return skb->len;
567 }
568
569 static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
570                                           struct xfrm_state *x, u32 seq)
571 {
572         struct xfrm_dump_info info;
573         struct sk_buff *skb;
574
575         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
576         if (!skb)
577                 return ERR_PTR(-ENOMEM);
578
579         info.in_skb = in_skb;
580         info.out_skb = skb;
581         info.nlmsg_seq = seq;
582         info.nlmsg_flags = 0;
583         info.this_idx = info.start_idx = 0;
584
585         if (dump_one_state(x, 0, &info)) {
586                 kfree_skb(skb);
587                 return NULL;
588         }
589
590         return skb;
591 }
592
593 static inline size_t xfrm_spdinfo_msgsize(void)
594 {
595         return NLMSG_ALIGN(4)
596                + nla_total_size(sizeof(struct xfrmu_spdinfo))
597                + nla_total_size(sizeof(struct xfrmu_spdhinfo));
598 }
599
600 static int build_spdinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
601 {
602         struct xfrmk_spdinfo si;
603         struct xfrmu_spdinfo spc;
604         struct xfrmu_spdhinfo sph;
605         struct nlmsghdr *nlh;
606         u32 *f;
607
608         nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
609         if (nlh == NULL) /* shouldnt really happen ... */
610                 return -EMSGSIZE;
611
612         f = nlmsg_data(nlh);
613         *f = flags;
614         xfrm_spd_getinfo(&si);
615         spc.incnt = si.incnt;
616         spc.outcnt = si.outcnt;
617         spc.fwdcnt = si.fwdcnt;
618         spc.inscnt = si.inscnt;
619         spc.outscnt = si.outscnt;
620         spc.fwdscnt = si.fwdscnt;
621         sph.spdhcnt = si.spdhcnt;
622         sph.spdhmcnt = si.spdhmcnt;
623
624         NLA_PUT(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
625         NLA_PUT(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
626
627         return nlmsg_end(skb, nlh);
628
629 nla_put_failure:
630         nlmsg_cancel(skb, nlh);
631         return -EMSGSIZE;
632 }
633
634 static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
635                 struct nlattr **attrs)
636 {
637         struct sk_buff *r_skb;
638         u32 *flags = nlmsg_data(nlh);
639         u32 spid = NETLINK_CB(skb).pid;
640         u32 seq = nlh->nlmsg_seq;
641
642         r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
643         if (r_skb == NULL)
644                 return -ENOMEM;
645
646         if (build_spdinfo(r_skb, spid, seq, *flags) < 0)
647                 BUG();
648
649         return nlmsg_unicast(xfrm_nl, r_skb, spid);
650 }
651
652 static inline size_t xfrm_sadinfo_msgsize(void)
653 {
654         return NLMSG_ALIGN(4)
655                + nla_total_size(sizeof(struct xfrmu_sadhinfo))
656                + nla_total_size(4); /* XFRMA_SAD_CNT */
657 }
658
659 static int build_sadinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
660 {
661         struct xfrmk_sadinfo si;
662         struct xfrmu_sadhinfo sh;
663         struct nlmsghdr *nlh;
664         u32 *f;
665
666         nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
667         if (nlh == NULL) /* shouldnt really happen ... */
668                 return -EMSGSIZE;
669
670         f = nlmsg_data(nlh);
671         *f = flags;
672         xfrm_sad_getinfo(&si);
673
674         sh.sadhmcnt = si.sadhmcnt;
675         sh.sadhcnt = si.sadhcnt;
676
677         NLA_PUT_U32(skb, XFRMA_SAD_CNT, si.sadcnt);
678         NLA_PUT(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
679
680         return nlmsg_end(skb, nlh);
681
682 nla_put_failure:
683         nlmsg_cancel(skb, nlh);
684         return -EMSGSIZE;
685 }
686
687 static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
688                 struct nlattr **attrs)
689 {
690         struct sk_buff *r_skb;
691         u32 *flags = nlmsg_data(nlh);
692         u32 spid = NETLINK_CB(skb).pid;
693         u32 seq = nlh->nlmsg_seq;
694
695         r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
696         if (r_skb == NULL)
697                 return -ENOMEM;
698
699         if (build_sadinfo(r_skb, spid, seq, *flags) < 0)
700                 BUG();
701
702         return nlmsg_unicast(xfrm_nl, r_skb, spid);
703 }
704
705 static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
706                 struct nlattr **attrs)
707 {
708         struct xfrm_usersa_id *p = nlmsg_data(nlh);
709         struct xfrm_state *x;
710         struct sk_buff *resp_skb;
711         int err = -ESRCH;
712
713         x = xfrm_user_state_lookup(p, attrs, &err);
714         if (x == NULL)
715                 goto out_noput;
716
717         resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
718         if (IS_ERR(resp_skb)) {
719                 err = PTR_ERR(resp_skb);
720         } else {
721                 err = nlmsg_unicast(xfrm_nl, resp_skb, NETLINK_CB(skb).pid);
722         }
723         xfrm_state_put(x);
724 out_noput:
725         return err;
726 }
727
728 static int verify_userspi_info(struct xfrm_userspi_info *p)
729 {
730         switch (p->info.id.proto) {
731         case IPPROTO_AH:
732         case IPPROTO_ESP:
733                 break;
734
735         case IPPROTO_COMP:
736                 /* IPCOMP spi is 16-bits. */
737                 if (p->max >= 0x10000)
738                         return -EINVAL;
739                 break;
740
741         default:
742                 return -EINVAL;
743         }
744
745         if (p->min > p->max)
746                 return -EINVAL;
747
748         return 0;
749 }
750
751 static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
752                 struct nlattr **attrs)
753 {
754         struct xfrm_state *x;
755         struct xfrm_userspi_info *p;
756         struct sk_buff *resp_skb;
757         xfrm_address_t *daddr;
758         int family;
759         int err;
760
761         p = nlmsg_data(nlh);
762         err = verify_userspi_info(p);
763         if (err)
764                 goto out_noput;
765
766         family = p->info.family;
767         daddr = &p->info.id.daddr;
768
769         x = NULL;
770         if (p->info.seq) {
771                 x = xfrm_find_acq_byseq(p->info.seq);
772                 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
773                         xfrm_state_put(x);
774                         x = NULL;
775                 }
776         }
777
778         if (!x)
779                 x = xfrm_find_acq(p->info.mode, p->info.reqid,
780                                   p->info.id.proto, daddr,
781                                   &p->info.saddr, 1,
782                                   family);
783         err = -ENOENT;
784         if (x == NULL)
785                 goto out_noput;
786
787         err = xfrm_alloc_spi(x, p->min, p->max);
788         if (err)
789                 goto out;
790
791         resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
792         if (IS_ERR(resp_skb)) {
793                 err = PTR_ERR(resp_skb);
794                 goto out;
795         }
796
797         err = nlmsg_unicast(xfrm_nl, resp_skb, NETLINK_CB(skb).pid);
798
799 out:
800         xfrm_state_put(x);
801 out_noput:
802         return err;
803 }
804
805 static int verify_policy_dir(u8 dir)
806 {
807         switch (dir) {
808         case XFRM_POLICY_IN:
809         case XFRM_POLICY_OUT:
810         case XFRM_POLICY_FWD:
811                 break;
812
813         default:
814                 return -EINVAL;
815         }
816
817         return 0;
818 }
819
820 static int verify_policy_type(u8 type)
821 {
822         switch (type) {
823         case XFRM_POLICY_TYPE_MAIN:
824 #ifdef CONFIG_XFRM_SUB_POLICY
825         case XFRM_POLICY_TYPE_SUB:
826 #endif
827                 break;
828
829         default:
830                 return -EINVAL;
831         }
832
833         return 0;
834 }
835
836 static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
837 {
838         switch (p->share) {
839         case XFRM_SHARE_ANY:
840         case XFRM_SHARE_SESSION:
841         case XFRM_SHARE_USER:
842         case XFRM_SHARE_UNIQUE:
843                 break;
844
845         default:
846                 return -EINVAL;
847         }
848
849         switch (p->action) {
850         case XFRM_POLICY_ALLOW:
851         case XFRM_POLICY_BLOCK:
852                 break;
853
854         default:
855                 return -EINVAL;
856         }
857
858         switch (p->sel.family) {
859         case AF_INET:
860                 break;
861
862         case AF_INET6:
863 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
864                 break;
865 #else
866                 return  -EAFNOSUPPORT;
867 #endif
868
869         default:
870                 return -EINVAL;
871         }
872
873         return verify_policy_dir(p->dir);
874 }
875
876 static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
877 {
878         struct nlattr *rt = attrs[XFRMA_SEC_CTX];
879         struct xfrm_user_sec_ctx *uctx;
880
881         if (!rt)
882                 return 0;
883
884         uctx = nla_data(rt);
885         return security_xfrm_policy_alloc(pol, uctx);
886 }
887
888 static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
889                            int nr)
890 {
891         int i;
892
893         xp->xfrm_nr = nr;
894         for (i = 0; i < nr; i++, ut++) {
895                 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
896
897                 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
898                 memcpy(&t->saddr, &ut->saddr,
899                        sizeof(xfrm_address_t));
900                 t->reqid = ut->reqid;
901                 t->mode = ut->mode;
902                 t->share = ut->share;
903                 t->optional = ut->optional;
904                 t->aalgos = ut->aalgos;
905                 t->ealgos = ut->ealgos;
906                 t->calgos = ut->calgos;
907                 t->encap_family = ut->family;
908         }
909 }
910
911 static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
912 {
913         int i;
914
915         if (nr > XFRM_MAX_DEPTH)
916                 return -EINVAL;
917
918         for (i = 0; i < nr; i++) {
919                 /* We never validated the ut->family value, so many
920                  * applications simply leave it at zero.  The check was
921                  * never made and ut->family was ignored because all
922                  * templates could be assumed to have the same family as
923                  * the policy itself.  Now that we will have ipv4-in-ipv6
924                  * and ipv6-in-ipv4 tunnels, this is no longer true.
925                  */
926                 if (!ut[i].family)
927                         ut[i].family = family;
928
929                 switch (ut[i].family) {
930                 case AF_INET:
931                         break;
932 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
933                 case AF_INET6:
934                         break;
935 #endif
936                 default:
937                         return -EINVAL;
938                 }
939         }
940
941         return 0;
942 }
943
944 static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
945 {
946         struct nlattr *rt = attrs[XFRMA_TMPL];
947
948         if (!rt) {
949                 pol->xfrm_nr = 0;
950         } else {
951                 struct xfrm_user_tmpl *utmpl = nla_data(rt);
952                 int nr = nla_len(rt) / sizeof(*utmpl);
953                 int err;
954
955                 err = validate_tmpl(nr, utmpl, pol->family);
956                 if (err)
957                         return err;
958
959                 copy_templates(pol, utmpl, nr);
960         }
961         return 0;
962 }
963
964 static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
965 {
966         struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
967         struct xfrm_userpolicy_type *upt;
968         u8 type = XFRM_POLICY_TYPE_MAIN;
969         int err;
970
971         if (rt) {
972                 upt = nla_data(rt);
973                 type = upt->type;
974         }
975
976         err = verify_policy_type(type);
977         if (err)
978                 return err;
979
980         *tp = type;
981         return 0;
982 }
983
984 static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
985 {
986         xp->priority = p->priority;
987         xp->index = p->index;
988         memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
989         memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
990         xp->action = p->action;
991         xp->flags = p->flags;
992         xp->family = p->sel.family;
993         /* XXX xp->share = p->share; */
994 }
995
996 static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
997 {
998         memcpy(&p->sel, &xp->selector, sizeof(p->sel));
999         memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1000         memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1001         p->priority = xp->priority;
1002         p->index = xp->index;
1003         p->sel.family = xp->family;
1004         p->dir = dir;
1005         p->action = xp->action;
1006         p->flags = xp->flags;
1007         p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1008 }
1009
1010 static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
1011 {
1012         struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL);
1013         int err;
1014
1015         if (!xp) {
1016                 *errp = -ENOMEM;
1017                 return NULL;
1018         }
1019
1020         copy_from_user_policy(xp, p);
1021
1022         err = copy_from_user_policy_type(&xp->type, attrs);
1023         if (err)
1024                 goto error;
1025
1026         if (!(err = copy_from_user_tmpl(xp, attrs)))
1027                 err = copy_from_user_sec_ctx(xp, attrs);
1028         if (err)
1029                 goto error;
1030
1031         return xp;
1032  error:
1033         *errp = err;
1034         kfree(xp);
1035         return NULL;
1036 }
1037
1038 static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1039                 struct nlattr **attrs)
1040 {
1041         struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
1042         struct xfrm_policy *xp;
1043         struct km_event c;
1044         int err;
1045         int excl;
1046
1047         err = verify_newpolicy_info(p);
1048         if (err)
1049                 return err;
1050         err = verify_sec_ctx_len(attrs);
1051         if (err)
1052                 return err;
1053
1054         xp = xfrm_policy_construct(p, attrs, &err);
1055         if (!xp)
1056                 return err;
1057
1058         /* shouldnt excl be based on nlh flags??
1059          * Aha! this is anti-netlink really i.e  more pfkey derived
1060          * in netlink excl is a flag and you wouldnt need
1061          * a type XFRM_MSG_UPDPOLICY - JHS */
1062         excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1063         err = xfrm_policy_insert(p->dir, xp, excl);
1064         xfrm_audit_policy_add(xp, err ? 0 : 1, NETLINK_CB(skb).loginuid,
1065                               NETLINK_CB(skb).sid);
1066
1067         if (err) {
1068                 security_xfrm_policy_free(xp);
1069                 kfree(xp);
1070                 return err;
1071         }
1072
1073         c.event = nlh->nlmsg_type;
1074         c.seq = nlh->nlmsg_seq;
1075         c.pid = nlh->nlmsg_pid;
1076         km_policy_notify(xp, p->dir, &c);
1077
1078         xfrm_pol_put(xp);
1079
1080         return 0;
1081 }
1082
1083 static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1084 {
1085         struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1086         int i;
1087
1088         if (xp->xfrm_nr == 0)
1089                 return 0;
1090
1091         for (i = 0; i < xp->xfrm_nr; i++) {
1092                 struct xfrm_user_tmpl *up = &vec[i];
1093                 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1094
1095                 memcpy(&up->id, &kp->id, sizeof(up->id));
1096                 up->family = kp->encap_family;
1097                 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1098                 up->reqid = kp->reqid;
1099                 up->mode = kp->mode;
1100                 up->share = kp->share;
1101                 up->optional = kp->optional;
1102                 up->aalgos = kp->aalgos;
1103                 up->ealgos = kp->ealgos;
1104                 up->calgos = kp->calgos;
1105         }
1106
1107         return nla_put(skb, XFRMA_TMPL,
1108                        sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
1109 }
1110
1111 static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1112 {
1113         if (x->security) {
1114                 return copy_sec_ctx(x->security, skb);
1115         }
1116         return 0;
1117 }
1118
1119 static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1120 {
1121         if (xp->security) {
1122                 return copy_sec_ctx(xp->security, skb);
1123         }
1124         return 0;
1125 }
1126 static inline size_t userpolicy_type_attrsize(void)
1127 {
1128 #ifdef CONFIG_XFRM_SUB_POLICY
1129         return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1130 #else
1131         return 0;
1132 #endif
1133 }
1134
1135 #ifdef CONFIG_XFRM_SUB_POLICY
1136 static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1137 {
1138         struct xfrm_userpolicy_type upt = {
1139                 .type = type,
1140         };
1141
1142         return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
1143 }
1144
1145 #else
1146 static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
1147 {
1148         return 0;
1149 }
1150 #endif
1151
1152 static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1153 {
1154         struct xfrm_dump_info *sp = ptr;
1155         struct xfrm_userpolicy_info *p;
1156         struct sk_buff *in_skb = sp->in_skb;
1157         struct sk_buff *skb = sp->out_skb;
1158         struct nlmsghdr *nlh;
1159
1160         if (sp->this_idx < sp->start_idx)
1161                 goto out;
1162
1163         nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1164                         XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1165         if (nlh == NULL)
1166                 return -EMSGSIZE;
1167
1168         p = nlmsg_data(nlh);
1169         copy_to_user_policy(xp, p, dir);
1170         if (copy_to_user_tmpl(xp, skb) < 0)
1171                 goto nlmsg_failure;
1172         if (copy_to_user_sec_ctx(xp, skb))
1173                 goto nlmsg_failure;
1174         if (copy_to_user_policy_type(xp->type, skb) < 0)
1175                 goto nlmsg_failure;
1176
1177         nlmsg_end(skb, nlh);
1178 out:
1179         sp->this_idx++;
1180         return 0;
1181
1182 nlmsg_failure:
1183         nlmsg_cancel(skb, nlh);
1184         return -EMSGSIZE;
1185 }
1186
1187 static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1188 {
1189         struct xfrm_dump_info info;
1190
1191         info.in_skb = cb->skb;
1192         info.out_skb = skb;
1193         info.nlmsg_seq = cb->nlh->nlmsg_seq;
1194         info.nlmsg_flags = NLM_F_MULTI;
1195         info.this_idx = 0;
1196         info.start_idx = cb->args[0];
1197         (void) xfrm_policy_walk(XFRM_POLICY_TYPE_MAIN, dump_one_policy, &info);
1198 #ifdef CONFIG_XFRM_SUB_POLICY
1199         (void) xfrm_policy_walk(XFRM_POLICY_TYPE_SUB, dump_one_policy, &info);
1200 #endif
1201         cb->args[0] = info.this_idx;
1202
1203         return skb->len;
1204 }
1205
1206 static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1207                                           struct xfrm_policy *xp,
1208                                           int dir, u32 seq)
1209 {
1210         struct xfrm_dump_info info;
1211         struct sk_buff *skb;
1212
1213         skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
1214         if (!skb)
1215                 return ERR_PTR(-ENOMEM);
1216
1217         info.in_skb = in_skb;
1218         info.out_skb = skb;
1219         info.nlmsg_seq = seq;
1220         info.nlmsg_flags = 0;
1221         info.this_idx = info.start_idx = 0;
1222
1223         if (dump_one_policy(xp, dir, 0, &info) < 0) {
1224                 kfree_skb(skb);
1225                 return NULL;
1226         }
1227
1228         return skb;
1229 }
1230
1231 static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1232                 struct nlattr **attrs)
1233 {
1234         struct xfrm_policy *xp;
1235         struct xfrm_userpolicy_id *p;
1236         u8 type = XFRM_POLICY_TYPE_MAIN;
1237         int err;
1238         struct km_event c;
1239         int delete;
1240
1241         p = nlmsg_data(nlh);
1242         delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1243
1244         err = copy_from_user_policy_type(&type, attrs);
1245         if (err)
1246                 return err;
1247
1248         err = verify_policy_dir(p->dir);
1249         if (err)
1250                 return err;
1251
1252         if (p->index)
1253                 xp = xfrm_policy_byid(type, p->dir, p->index, delete, &err);
1254         else {
1255                 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
1256                 struct xfrm_policy tmp;
1257
1258                 err = verify_sec_ctx_len(attrs);
1259                 if (err)
1260                         return err;
1261
1262                 memset(&tmp, 0, sizeof(struct xfrm_policy));
1263                 if (rt) {
1264                         struct xfrm_user_sec_ctx *uctx = nla_data(rt);
1265
1266                         if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1267                                 return err;
1268                 }
1269                 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1270                                            delete, &err);
1271                 security_xfrm_policy_free(&tmp);
1272         }
1273         if (xp == NULL)
1274                 return -ENOENT;
1275
1276         if (!delete) {
1277                 struct sk_buff *resp_skb;
1278
1279                 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1280                 if (IS_ERR(resp_skb)) {
1281                         err = PTR_ERR(resp_skb);
1282                 } else {
1283                         err = nlmsg_unicast(xfrm_nl, resp_skb,
1284                                             NETLINK_CB(skb).pid);
1285                 }
1286         } else {
1287                 xfrm_audit_policy_delete(xp, err ? 0 : 1,
1288                                          NETLINK_CB(skb).loginuid,
1289                                          NETLINK_CB(skb).sid);
1290
1291                 if (err != 0)
1292                         goto out;
1293
1294                 c.data.byid = p->index;
1295                 c.event = nlh->nlmsg_type;
1296                 c.seq = nlh->nlmsg_seq;
1297                 c.pid = nlh->nlmsg_pid;
1298                 km_policy_notify(xp, p->dir, &c);
1299         }
1300
1301 out:
1302         xfrm_pol_put(xp);
1303         return err;
1304 }
1305
1306 static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
1307                 struct nlattr **attrs)
1308 {
1309         struct km_event c;
1310         struct xfrm_usersa_flush *p = nlmsg_data(nlh);
1311         struct xfrm_audit audit_info;
1312         int err;
1313
1314         audit_info.loginuid = NETLINK_CB(skb).loginuid;
1315         audit_info.secid = NETLINK_CB(skb).sid;
1316         err = xfrm_state_flush(p->proto, &audit_info);
1317         if (err)
1318                 return err;
1319         c.data.proto = p->proto;
1320         c.event = nlh->nlmsg_type;
1321         c.seq = nlh->nlmsg_seq;
1322         c.pid = nlh->nlmsg_pid;
1323         km_state_notify(NULL, &c);
1324
1325         return 0;
1326 }
1327
1328 static inline size_t xfrm_aevent_msgsize(void)
1329 {
1330         return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
1331                + nla_total_size(sizeof(struct xfrm_replay_state))
1332                + nla_total_size(sizeof(struct xfrm_lifetime_cur))
1333                + nla_total_size(4) /* XFRM_AE_RTHR */
1334                + nla_total_size(4); /* XFRM_AE_ETHR */
1335 }
1336
1337 static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1338 {
1339         struct xfrm_aevent_id *id;
1340         struct nlmsghdr *nlh;
1341
1342         nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1343         if (nlh == NULL)
1344                 return -EMSGSIZE;
1345
1346         id = nlmsg_data(nlh);
1347         memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
1348         id->sa_id.spi = x->id.spi;
1349         id->sa_id.family = x->props.family;
1350         id->sa_id.proto = x->id.proto;
1351         memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1352         id->reqid = x->props.reqid;
1353         id->flags = c->data.aevent;
1354
1355         NLA_PUT(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), &x->replay);
1356         NLA_PUT(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1357
1358         if (id->flags & XFRM_AE_RTHR)
1359                 NLA_PUT_U32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1360
1361         if (id->flags & XFRM_AE_ETHR)
1362                 NLA_PUT_U32(skb, XFRMA_ETIMER_THRESH,
1363                             x->replay_maxage * 10 / HZ);
1364
1365         return nlmsg_end(skb, nlh);
1366
1367 nla_put_failure:
1368         nlmsg_cancel(skb, nlh);
1369         return -EMSGSIZE;
1370 }
1371
1372 static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1373                 struct nlattr **attrs)
1374 {
1375         struct xfrm_state *x;
1376         struct sk_buff *r_skb;
1377         int err;
1378         struct km_event c;
1379         struct xfrm_aevent_id *p = nlmsg_data(nlh);
1380         struct xfrm_usersa_id *id = &p->sa_id;
1381
1382         r_skb = nlmsg_new(xfrm_aevent_msgsize(), GFP_ATOMIC);
1383         if (r_skb == NULL)
1384                 return -ENOMEM;
1385
1386         x = xfrm_state_lookup(&id->daddr, id->spi, id->proto, id->family);
1387         if (x == NULL) {
1388                 kfree_skb(r_skb);
1389                 return -ESRCH;
1390         }
1391
1392         /*
1393          * XXX: is this lock really needed - none of the other
1394          * gets lock (the concern is things getting updated
1395          * while we are still reading) - jhs
1396         */
1397         spin_lock_bh(&x->lock);
1398         c.data.aevent = p->flags;
1399         c.seq = nlh->nlmsg_seq;
1400         c.pid = nlh->nlmsg_pid;
1401
1402         if (build_aevent(r_skb, x, &c) < 0)
1403                 BUG();
1404         err = nlmsg_unicast(xfrm_nl, r_skb, NETLINK_CB(skb).pid);
1405         spin_unlock_bh(&x->lock);
1406         xfrm_state_put(x);
1407         return err;
1408 }
1409
1410 static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1411                 struct nlattr **attrs)
1412 {
1413         struct xfrm_state *x;
1414         struct km_event c;
1415         int err = - EINVAL;
1416         struct xfrm_aevent_id *p = nlmsg_data(nlh);
1417         struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
1418         struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
1419
1420         if (!lt && !rp)
1421                 return err;
1422
1423         /* pedantic mode - thou shalt sayeth replaceth */
1424         if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1425                 return err;
1426
1427         x = xfrm_state_lookup(&p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
1428         if (x == NULL)
1429                 return -ESRCH;
1430
1431         if (x->km.state != XFRM_STATE_VALID)
1432                 goto out;
1433
1434         spin_lock_bh(&x->lock);
1435         xfrm_update_ae_params(x, attrs);
1436         spin_unlock_bh(&x->lock);
1437
1438         c.event = nlh->nlmsg_type;
1439         c.seq = nlh->nlmsg_seq;
1440         c.pid = nlh->nlmsg_pid;
1441         c.data.aevent = XFRM_AE_CU;
1442         km_state_notify(x, &c);
1443         err = 0;
1444 out:
1445         xfrm_state_put(x);
1446         return err;
1447 }
1448
1449 static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1450                 struct nlattr **attrs)
1451 {
1452         struct km_event c;
1453         u8 type = XFRM_POLICY_TYPE_MAIN;
1454         int err;
1455         struct xfrm_audit audit_info;
1456
1457         err = copy_from_user_policy_type(&type, attrs);
1458         if (err)
1459                 return err;
1460
1461         audit_info.loginuid = NETLINK_CB(skb).loginuid;
1462         audit_info.secid = NETLINK_CB(skb).sid;
1463         err = xfrm_policy_flush(type, &audit_info);
1464         if (err)
1465                 return err;
1466         c.data.type = type;
1467         c.event = nlh->nlmsg_type;
1468         c.seq = nlh->nlmsg_seq;
1469         c.pid = nlh->nlmsg_pid;
1470         km_policy_notify(NULL, 0, &c);
1471         return 0;
1472 }
1473
1474 static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1475                 struct nlattr **attrs)
1476 {
1477         struct xfrm_policy *xp;
1478         struct xfrm_user_polexpire *up = nlmsg_data(nlh);
1479         struct xfrm_userpolicy_info *p = &up->pol;
1480         u8 type = XFRM_POLICY_TYPE_MAIN;
1481         int err = -ENOENT;
1482
1483         err = copy_from_user_policy_type(&type, attrs);
1484         if (err)
1485                 return err;
1486
1487         if (p->index)
1488                 xp = xfrm_policy_byid(type, p->dir, p->index, 0, &err);
1489         else {
1490                 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
1491                 struct xfrm_policy tmp;
1492
1493                 err = verify_sec_ctx_len(attrs);
1494                 if (err)
1495                         return err;
1496
1497                 memset(&tmp, 0, sizeof(struct xfrm_policy));
1498                 if (rt) {
1499                         struct xfrm_user_sec_ctx *uctx = nla_data(rt);
1500
1501                         if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1502                                 return err;
1503                 }
1504                 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1505                                            0, &err);
1506                 security_xfrm_policy_free(&tmp);
1507         }
1508
1509         if (xp == NULL)
1510                 return -ENOENT;
1511         read_lock(&xp->lock);
1512         if (xp->dead) {
1513                 read_unlock(&xp->lock);
1514                 goto out;
1515         }
1516
1517         read_unlock(&xp->lock);
1518         err = 0;
1519         if (up->hard) {
1520                 xfrm_policy_delete(xp, p->dir);
1521                 xfrm_audit_policy_delete(xp, 1, NETLINK_CB(skb).loginuid,
1522                                          NETLINK_CB(skb).sid);
1523
1524         } else {
1525                 // reset the timers here?
1526                 printk("Dont know what to do with soft policy expire\n");
1527         }
1528         km_policy_expired(xp, p->dir, up->hard, current->pid);
1529
1530 out:
1531         xfrm_pol_put(xp);
1532         return err;
1533 }
1534
1535 static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1536                 struct nlattr **attrs)
1537 {
1538         struct xfrm_state *x;
1539         int err;
1540         struct xfrm_user_expire *ue = nlmsg_data(nlh);
1541         struct xfrm_usersa_info *p = &ue->state;
1542
1543         x = xfrm_state_lookup(&p->id.daddr, p->id.spi, p->id.proto, p->family);
1544
1545         err = -ENOENT;
1546         if (x == NULL)
1547                 return err;
1548
1549         spin_lock_bh(&x->lock);
1550         err = -EINVAL;
1551         if (x->km.state != XFRM_STATE_VALID)
1552                 goto out;
1553         km_state_expired(x, ue->hard, current->pid);
1554
1555         if (ue->hard) {
1556                 __xfrm_state_delete(x);
1557                 xfrm_audit_state_delete(x, 1, NETLINK_CB(skb).loginuid,
1558                                         NETLINK_CB(skb).sid);
1559         }
1560         err = 0;
1561 out:
1562         spin_unlock_bh(&x->lock);
1563         xfrm_state_put(x);
1564         return err;
1565 }
1566
1567 static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
1568                 struct nlattr **attrs)
1569 {
1570         struct xfrm_policy *xp;
1571         struct xfrm_user_tmpl *ut;
1572         int i;
1573         struct nlattr *rt = attrs[XFRMA_TMPL];
1574
1575         struct xfrm_user_acquire *ua = nlmsg_data(nlh);
1576         struct xfrm_state *x = xfrm_state_alloc();
1577         int err = -ENOMEM;
1578
1579         if (!x)
1580                 return err;
1581
1582         err = verify_newpolicy_info(&ua->policy);
1583         if (err) {
1584                 printk("BAD policy passed\n");
1585                 kfree(x);
1586                 return err;
1587         }
1588
1589         /*   build an XP */
1590         xp = xfrm_policy_construct(&ua->policy, attrs, &err);
1591         if (!xp) {
1592                 kfree(x);
1593                 return err;
1594         }
1595
1596         memcpy(&x->id, &ua->id, sizeof(ua->id));
1597         memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
1598         memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
1599
1600         ut = nla_data(rt);
1601         /* extract the templates and for each call km_key */
1602         for (i = 0; i < xp->xfrm_nr; i++, ut++) {
1603                 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1604                 memcpy(&x->id, &t->id, sizeof(x->id));
1605                 x->props.mode = t->mode;
1606                 x->props.reqid = t->reqid;
1607                 x->props.family = ut->family;
1608                 t->aalgos = ua->aalgos;
1609                 t->ealgos = ua->ealgos;
1610                 t->calgos = ua->calgos;
1611                 err = km_query(x, t, xp);
1612
1613         }
1614
1615         kfree(x);
1616         kfree(xp);
1617
1618         return 0;
1619 }
1620
1621 #ifdef CONFIG_XFRM_MIGRATE
1622 static int copy_from_user_migrate(struct xfrm_migrate *ma,
1623                                   struct nlattr **attrs, int *num)
1624 {
1625         struct nlattr *rt = attrs[XFRMA_MIGRATE];
1626         struct xfrm_user_migrate *um;
1627         int i, num_migrate;
1628
1629         um = nla_data(rt);
1630         num_migrate = nla_len(rt) / sizeof(*um);
1631
1632         if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
1633                 return -EINVAL;
1634
1635         for (i = 0; i < num_migrate; i++, um++, ma++) {
1636                 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
1637                 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
1638                 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
1639                 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
1640
1641                 ma->proto = um->proto;
1642                 ma->mode = um->mode;
1643                 ma->reqid = um->reqid;
1644
1645                 ma->old_family = um->old_family;
1646                 ma->new_family = um->new_family;
1647         }
1648
1649         *num = i;
1650         return 0;
1651 }
1652
1653 static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1654                            struct nlattr **attrs)
1655 {
1656         struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
1657         struct xfrm_migrate m[XFRM_MAX_DEPTH];
1658         u8 type;
1659         int err;
1660         int n = 0;
1661
1662         if (attrs[XFRMA_MIGRATE] == NULL)
1663                 return -EINVAL;
1664
1665         err = copy_from_user_policy_type(&type, attrs);
1666         if (err)
1667                 return err;
1668
1669         err = copy_from_user_migrate((struct xfrm_migrate *)m,
1670                                      attrs, &n);
1671         if (err)
1672                 return err;
1673
1674         if (!n)
1675                 return 0;
1676
1677         xfrm_migrate(&pi->sel, pi->dir, type, m, n);
1678
1679         return 0;
1680 }
1681 #else
1682 static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1683                            struct nlattr **attrs)
1684 {
1685         return -ENOPROTOOPT;
1686 }
1687 #endif
1688
1689 #ifdef CONFIG_XFRM_MIGRATE
1690 static int copy_to_user_migrate(struct xfrm_migrate *m, struct sk_buff *skb)
1691 {
1692         struct xfrm_user_migrate um;
1693
1694         memset(&um, 0, sizeof(um));
1695         um.proto = m->proto;
1696         um.mode = m->mode;
1697         um.reqid = m->reqid;
1698         um.old_family = m->old_family;
1699         memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
1700         memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
1701         um.new_family = m->new_family;
1702         memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
1703         memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
1704
1705         return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
1706 }
1707
1708 static inline size_t xfrm_migrate_msgsize(int num_migrate)
1709 {
1710         return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
1711                + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
1712                + userpolicy_type_attrsize();
1713 }
1714
1715 static int build_migrate(struct sk_buff *skb, struct xfrm_migrate *m,
1716                          int num_migrate, struct xfrm_selector *sel,
1717                          u8 dir, u8 type)
1718 {
1719         struct xfrm_migrate *mp;
1720         struct xfrm_userpolicy_id *pol_id;
1721         struct nlmsghdr *nlh;
1722         int i;
1723
1724         nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
1725         if (nlh == NULL)
1726                 return -EMSGSIZE;
1727
1728         pol_id = nlmsg_data(nlh);
1729         /* copy data from selector, dir, and type to the pol_id */
1730         memset(pol_id, 0, sizeof(*pol_id));
1731         memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
1732         pol_id->dir = dir;
1733
1734         if (copy_to_user_policy_type(type, skb) < 0)
1735                 goto nlmsg_failure;
1736
1737         for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
1738                 if (copy_to_user_migrate(mp, skb) < 0)
1739                         goto nlmsg_failure;
1740         }
1741
1742         return nlmsg_end(skb, nlh);
1743 nlmsg_failure:
1744         nlmsg_cancel(skb, nlh);
1745         return -EMSGSIZE;
1746 }
1747
1748 static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1749                              struct xfrm_migrate *m, int num_migrate)
1750 {
1751         struct sk_buff *skb;
1752
1753         skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate), GFP_ATOMIC);
1754         if (skb == NULL)
1755                 return -ENOMEM;
1756
1757         /* build migrate */
1758         if (build_migrate(skb, m, num_migrate, sel, dir, type) < 0)
1759                 BUG();
1760
1761         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
1762 }
1763 #else
1764 static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1765                              struct xfrm_migrate *m, int num_migrate)
1766 {
1767         return -ENOPROTOOPT;
1768 }
1769 #endif
1770
1771 #define XMSGSIZE(type) sizeof(struct type)
1772
1773 static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
1774         [XFRM_MSG_NEWSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1775         [XFRM_MSG_DELSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1776         [XFRM_MSG_GETSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1777         [XFRM_MSG_NEWPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1778         [XFRM_MSG_DELPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1779         [XFRM_MSG_GETPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1780         [XFRM_MSG_ALLOCSPI    - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
1781         [XFRM_MSG_ACQUIRE     - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
1782         [XFRM_MSG_EXPIRE      - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
1783         [XFRM_MSG_UPDPOLICY   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1784         [XFRM_MSG_UPDSA       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1785         [XFRM_MSG_POLEXPIRE   - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
1786         [XFRM_MSG_FLUSHSA     - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
1787         [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
1788         [XFRM_MSG_NEWAE       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
1789         [XFRM_MSG_GETAE       - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
1790         [XFRM_MSG_REPORT      - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
1791         [XFRM_MSG_MIGRATE     - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1792         [XFRM_MSG_GETSADINFO  - XFRM_MSG_BASE] = sizeof(u32),
1793         [XFRM_MSG_GETSPDINFO  - XFRM_MSG_BASE] = sizeof(u32),
1794 };
1795
1796 #undef XMSGSIZE
1797
1798 static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
1799         [XFRMA_ALG_AUTH]        = { .len = sizeof(struct xfrm_algo) },
1800         [XFRMA_ALG_CRYPT]       = { .len = sizeof(struct xfrm_algo) },
1801         [XFRMA_ALG_COMP]        = { .len = sizeof(struct xfrm_algo) },
1802         [XFRMA_ENCAP]           = { .len = sizeof(struct xfrm_encap_tmpl) },
1803         [XFRMA_TMPL]            = { .len = sizeof(struct xfrm_user_tmpl) },
1804         [XFRMA_SEC_CTX]         = { .len = sizeof(struct xfrm_sec_ctx) },
1805         [XFRMA_LTIME_VAL]       = { .len = sizeof(struct xfrm_lifetime_cur) },
1806         [XFRMA_REPLAY_VAL]      = { .len = sizeof(struct xfrm_replay_state) },
1807         [XFRMA_REPLAY_THRESH]   = { .type = NLA_U32 },
1808         [XFRMA_ETIMER_THRESH]   = { .type = NLA_U32 },
1809         [XFRMA_SRCADDR]         = { .len = sizeof(xfrm_address_t) },
1810         [XFRMA_COADDR]          = { .len = sizeof(xfrm_address_t) },
1811         [XFRMA_POLICY_TYPE]     = { .len = sizeof(struct xfrm_userpolicy_type)},
1812         [XFRMA_MIGRATE]         = { .len = sizeof(struct xfrm_user_migrate) },
1813 };
1814
1815 static struct xfrm_link {
1816         int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
1817         int (*dump)(struct sk_buff *, struct netlink_callback *);
1818 } xfrm_dispatch[XFRM_NR_MSGTYPES] = {
1819         [XFRM_MSG_NEWSA       - XFRM_MSG_BASE] = { .doit = xfrm_add_sa        },
1820         [XFRM_MSG_DELSA       - XFRM_MSG_BASE] = { .doit = xfrm_del_sa        },
1821         [XFRM_MSG_GETSA       - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
1822                                                    .dump = xfrm_dump_sa       },
1823         [XFRM_MSG_NEWPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_add_policy    },
1824         [XFRM_MSG_DELPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_get_policy    },
1825         [XFRM_MSG_GETPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
1826                                                    .dump = xfrm_dump_policy   },
1827         [XFRM_MSG_ALLOCSPI    - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
1828         [XFRM_MSG_ACQUIRE     - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire   },
1829         [XFRM_MSG_EXPIRE      - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
1830         [XFRM_MSG_UPDPOLICY   - XFRM_MSG_BASE] = { .doit = xfrm_add_policy    },
1831         [XFRM_MSG_UPDSA       - XFRM_MSG_BASE] = { .doit = xfrm_add_sa        },
1832         [XFRM_MSG_POLEXPIRE   - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
1833         [XFRM_MSG_FLUSHSA     - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa      },
1834         [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy  },
1835         [XFRM_MSG_NEWAE       - XFRM_MSG_BASE] = { .doit = xfrm_new_ae  },
1836         [XFRM_MSG_GETAE       - XFRM_MSG_BASE] = { .doit = xfrm_get_ae  },
1837         [XFRM_MSG_MIGRATE     - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate    },
1838         [XFRM_MSG_GETSADINFO  - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo   },
1839         [XFRM_MSG_GETSPDINFO  - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo   },
1840 };
1841
1842 static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
1843 {
1844         struct nlattr *attrs[XFRMA_MAX+1];
1845         struct xfrm_link *link;
1846         int type, err;
1847
1848         type = nlh->nlmsg_type;
1849         if (type > XFRM_MSG_MAX)
1850                 return -EINVAL;
1851
1852         type -= XFRM_MSG_BASE;
1853         link = &xfrm_dispatch[type];
1854
1855         /* All operations require privileges, even GET */
1856         if (security_netlink_recv(skb, CAP_NET_ADMIN))
1857                 return -EPERM;
1858
1859         if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
1860              type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
1861             (nlh->nlmsg_flags & NLM_F_DUMP)) {
1862                 if (link->dump == NULL)
1863                         return -EINVAL;
1864
1865                 return netlink_dump_start(xfrm_nl, skb, nlh, link->dump, NULL);
1866         }
1867
1868         err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
1869                           xfrma_policy);
1870         if (err < 0)
1871                 return err;
1872
1873         if (link->doit == NULL)
1874                 return -EINVAL;
1875
1876         return link->doit(skb, nlh, attrs);
1877 }
1878
1879 static void xfrm_netlink_rcv(struct sock *sk, int len)
1880 {
1881         unsigned int qlen = 0;
1882
1883         do {
1884                 mutex_lock(&xfrm_cfg_mutex);
1885                 qlen = netlink_run_queue(sk, qlen, &xfrm_user_rcv_msg);
1886                 mutex_unlock(&xfrm_cfg_mutex);
1887
1888         } while (qlen);
1889 }
1890
1891 static inline size_t xfrm_expire_msgsize(void)
1892 {
1893         return NLMSG_ALIGN(sizeof(struct xfrm_user_expire));
1894 }
1895
1896 static int build_expire(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1897 {
1898         struct xfrm_user_expire *ue;
1899         struct nlmsghdr *nlh;
1900
1901         nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
1902         if (nlh == NULL)
1903                 return -EMSGSIZE;
1904
1905         ue = nlmsg_data(nlh);
1906         copy_to_user_state(x, &ue->state);
1907         ue->hard = (c->data.hard != 0) ? 1 : 0;
1908
1909         return nlmsg_end(skb, nlh);
1910 }
1911
1912 static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
1913 {
1914         struct sk_buff *skb;
1915
1916         skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
1917         if (skb == NULL)
1918                 return -ENOMEM;
1919
1920         if (build_expire(skb, x, c) < 0)
1921                 BUG();
1922
1923         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
1924 }
1925
1926 static int xfrm_aevent_state_notify(struct xfrm_state *x, struct km_event *c)
1927 {
1928         struct sk_buff *skb;
1929
1930         skb = nlmsg_new(xfrm_aevent_msgsize(), GFP_ATOMIC);
1931         if (skb == NULL)
1932                 return -ENOMEM;
1933
1934         if (build_aevent(skb, x, c) < 0)
1935                 BUG();
1936
1937         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
1938 }
1939
1940 static int xfrm_notify_sa_flush(struct km_event *c)
1941 {
1942         struct xfrm_usersa_flush *p;
1943         struct nlmsghdr *nlh;
1944         struct sk_buff *skb;
1945         int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
1946
1947         skb = nlmsg_new(len, GFP_ATOMIC);
1948         if (skb == NULL)
1949                 return -ENOMEM;
1950
1951         nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
1952         if (nlh == NULL) {
1953                 kfree_skb(skb);
1954                 return -EMSGSIZE;
1955         }
1956
1957         p = nlmsg_data(nlh);
1958         p->proto = c->data.proto;
1959
1960         nlmsg_end(skb, nlh);
1961
1962         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
1963 }
1964
1965 static inline size_t xfrm_sa_len(struct xfrm_state *x)
1966 {
1967         size_t l = 0;
1968         if (x->aalg)
1969                 l += nla_total_size(alg_len(x->aalg));
1970         if (x->ealg)
1971                 l += nla_total_size(alg_len(x->ealg));
1972         if (x->calg)
1973                 l += nla_total_size(sizeof(*x->calg));
1974         if (x->encap)
1975                 l += nla_total_size(sizeof(*x->encap));
1976
1977         return l;
1978 }
1979
1980 static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
1981 {
1982         struct xfrm_usersa_info *p;
1983         struct xfrm_usersa_id *id;
1984         struct nlmsghdr *nlh;
1985         struct sk_buff *skb;
1986         int len = xfrm_sa_len(x);
1987         int headlen;
1988
1989         headlen = sizeof(*p);
1990         if (c->event == XFRM_MSG_DELSA) {
1991                 len += nla_total_size(headlen);
1992                 headlen = sizeof(*id);
1993         }
1994         len += NLMSG_ALIGN(headlen);
1995
1996         skb = nlmsg_new(len, GFP_ATOMIC);
1997         if (skb == NULL)
1998                 return -ENOMEM;
1999
2000         nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2001         if (nlh == NULL)
2002                 goto nla_put_failure;
2003
2004         p = nlmsg_data(nlh);
2005         if (c->event == XFRM_MSG_DELSA) {
2006                 struct nlattr *attr;
2007
2008                 id = nlmsg_data(nlh);
2009                 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2010                 id->spi = x->id.spi;
2011                 id->family = x->props.family;
2012                 id->proto = x->id.proto;
2013
2014                 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
2015                 if (attr == NULL)
2016                         goto nla_put_failure;
2017
2018                 p = nla_data(attr);
2019         }
2020
2021         copy_to_user_state(x, p);
2022
2023         if (x->aalg)
2024                 NLA_PUT(skb, XFRMA_ALG_AUTH, alg_len(x->aalg), x->aalg);
2025         if (x->ealg)
2026                 NLA_PUT(skb, XFRMA_ALG_CRYPT, alg_len(x->ealg), x->ealg);
2027         if (x->calg)
2028                 NLA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
2029
2030         if (x->encap)
2031                 NLA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
2032
2033         nlmsg_end(skb, nlh);
2034
2035         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
2036
2037 nla_put_failure:
2038         kfree_skb(skb);
2039         return -1;
2040 }
2041
2042 static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
2043 {
2044
2045         switch (c->event) {
2046         case XFRM_MSG_EXPIRE:
2047                 return xfrm_exp_state_notify(x, c);
2048         case XFRM_MSG_NEWAE:
2049                 return xfrm_aevent_state_notify(x, c);
2050         case XFRM_MSG_DELSA:
2051         case XFRM_MSG_UPDSA:
2052         case XFRM_MSG_NEWSA:
2053                 return xfrm_notify_sa(x, c);
2054         case XFRM_MSG_FLUSHSA:
2055                 return xfrm_notify_sa_flush(c);
2056         default:
2057                  printk("xfrm_user: Unknown SA event %d\n", c->event);
2058                  break;
2059         }
2060
2061         return 0;
2062
2063 }
2064
2065 static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2066                                           struct xfrm_policy *xp)
2067 {
2068         return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2069                + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2070                + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2071                + userpolicy_type_attrsize();
2072 }
2073
2074 static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2075                          struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2076                          int dir)
2077 {
2078         struct xfrm_user_acquire *ua;
2079         struct nlmsghdr *nlh;
2080         __u32 seq = xfrm_get_acqseq();
2081
2082         nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2083         if (nlh == NULL)
2084                 return -EMSGSIZE;
2085
2086         ua = nlmsg_data(nlh);
2087         memcpy(&ua->id, &x->id, sizeof(ua->id));
2088         memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2089         memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2090         copy_to_user_policy(xp, &ua->policy, dir);
2091         ua->aalgos = xt->aalgos;
2092         ua->ealgos = xt->ealgos;
2093         ua->calgos = xt->calgos;
2094         ua->seq = x->km.seq = seq;
2095
2096         if (copy_to_user_tmpl(xp, skb) < 0)
2097                 goto nlmsg_failure;
2098         if (copy_to_user_state_sec_ctx(x, skb))
2099                 goto nlmsg_failure;
2100         if (copy_to_user_policy_type(xp->type, skb) < 0)
2101                 goto nlmsg_failure;
2102
2103         return nlmsg_end(skb, nlh);
2104
2105 nlmsg_failure:
2106         nlmsg_cancel(skb, nlh);
2107         return -EMSGSIZE;
2108 }
2109
2110 static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2111                              struct xfrm_policy *xp, int dir)
2112 {
2113         struct sk_buff *skb;
2114
2115         skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
2116         if (skb == NULL)
2117                 return -ENOMEM;
2118
2119         if (build_acquire(skb, x, xt, xp, dir) < 0)
2120                 BUG();
2121
2122         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
2123 }
2124
2125 /* User gives us xfrm_user_policy_info followed by an array of 0
2126  * or more templates.
2127  */
2128 static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
2129                                                u8 *data, int len, int *dir)
2130 {
2131         struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2132         struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2133         struct xfrm_policy *xp;
2134         int nr;
2135
2136         switch (sk->sk_family) {
2137         case AF_INET:
2138                 if (opt != IP_XFRM_POLICY) {
2139                         *dir = -EOPNOTSUPP;
2140                         return NULL;
2141                 }
2142                 break;
2143 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2144         case AF_INET6:
2145                 if (opt != IPV6_XFRM_POLICY) {
2146                         *dir = -EOPNOTSUPP;
2147                         return NULL;
2148                 }
2149                 break;
2150 #endif
2151         default:
2152                 *dir = -EINVAL;
2153                 return NULL;
2154         }
2155
2156         *dir = -EINVAL;
2157
2158         if (len < sizeof(*p) ||
2159             verify_newpolicy_info(p))
2160                 return NULL;
2161
2162         nr = ((len - sizeof(*p)) / sizeof(*ut));
2163         if (validate_tmpl(nr, ut, p->sel.family))
2164                 return NULL;
2165
2166         if (p->dir > XFRM_POLICY_OUT)
2167                 return NULL;
2168
2169         xp = xfrm_policy_alloc(GFP_KERNEL);
2170         if (xp == NULL) {
2171                 *dir = -ENOBUFS;
2172                 return NULL;
2173         }
2174
2175         copy_from_user_policy(xp, p);
2176         xp->type = XFRM_POLICY_TYPE_MAIN;
2177         copy_templates(xp, ut, nr);
2178
2179         *dir = p->dir;
2180
2181         return xp;
2182 }
2183
2184 static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2185 {
2186         return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2187                + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2188                + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
2189                + userpolicy_type_attrsize();
2190 }
2191
2192 static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
2193                            int dir, struct km_event *c)
2194 {
2195         struct xfrm_user_polexpire *upe;
2196         struct nlmsghdr *nlh;
2197         int hard = c->data.hard;
2198
2199         nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2200         if (nlh == NULL)
2201                 return -EMSGSIZE;
2202
2203         upe = nlmsg_data(nlh);
2204         copy_to_user_policy(xp, &upe->pol, dir);
2205         if (copy_to_user_tmpl(xp, skb) < 0)
2206                 goto nlmsg_failure;
2207         if (copy_to_user_sec_ctx(xp, skb))
2208                 goto nlmsg_failure;
2209         if (copy_to_user_policy_type(xp->type, skb) < 0)
2210                 goto nlmsg_failure;
2211         upe->hard = !!hard;
2212
2213         return nlmsg_end(skb, nlh);
2214
2215 nlmsg_failure:
2216         nlmsg_cancel(skb, nlh);
2217         return -EMSGSIZE;
2218 }
2219
2220 static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2221 {
2222         struct sk_buff *skb;
2223
2224         skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
2225         if (skb == NULL)
2226                 return -ENOMEM;
2227
2228         if (build_polexpire(skb, xp, dir, c) < 0)
2229                 BUG();
2230
2231         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
2232 }
2233
2234 static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
2235 {
2236         struct xfrm_userpolicy_info *p;
2237         struct xfrm_userpolicy_id *id;
2238         struct nlmsghdr *nlh;
2239         struct sk_buff *skb;
2240         int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2241         int headlen;
2242
2243         headlen = sizeof(*p);
2244         if (c->event == XFRM_MSG_DELPOLICY) {
2245                 len += nla_total_size(headlen);
2246                 headlen = sizeof(*id);
2247         }
2248         len += userpolicy_type_attrsize();
2249         len += NLMSG_ALIGN(headlen);
2250
2251         skb = nlmsg_new(len, GFP_ATOMIC);
2252         if (skb == NULL)
2253                 return -ENOMEM;
2254
2255         nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2256         if (nlh == NULL)
2257                 goto nlmsg_failure;
2258
2259         p = nlmsg_data(nlh);
2260         if (c->event == XFRM_MSG_DELPOLICY) {
2261                 struct nlattr *attr;
2262
2263                 id = nlmsg_data(nlh);
2264                 memset(id, 0, sizeof(*id));
2265                 id->dir = dir;
2266                 if (c->data.byid)
2267                         id->index = xp->index;
2268                 else
2269                         memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2270
2271                 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
2272                 if (attr == NULL)
2273                         goto nlmsg_failure;
2274
2275                 p = nla_data(attr);
2276         }
2277
2278         copy_to_user_policy(xp, p, dir);
2279         if (copy_to_user_tmpl(xp, skb) < 0)
2280                 goto nlmsg_failure;
2281         if (copy_to_user_policy_type(xp->type, skb) < 0)
2282                 goto nlmsg_failure;
2283
2284         nlmsg_end(skb, nlh);
2285
2286         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
2287
2288 nlmsg_failure:
2289         kfree_skb(skb);
2290         return -1;
2291 }
2292
2293 static int xfrm_notify_policy_flush(struct km_event *c)
2294 {
2295         struct nlmsghdr *nlh;
2296         struct sk_buff *skb;
2297
2298         skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
2299         if (skb == NULL)
2300                 return -ENOMEM;
2301
2302         nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
2303         if (nlh == NULL)
2304                 goto nlmsg_failure;
2305         if (copy_to_user_policy_type(c->data.type, skb) < 0)
2306                 goto nlmsg_failure;
2307
2308         nlmsg_end(skb, nlh);
2309
2310         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
2311
2312 nlmsg_failure:
2313         kfree_skb(skb);
2314         return -1;
2315 }
2316
2317 static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2318 {
2319
2320         switch (c->event) {
2321         case XFRM_MSG_NEWPOLICY:
2322         case XFRM_MSG_UPDPOLICY:
2323         case XFRM_MSG_DELPOLICY:
2324                 return xfrm_notify_policy(xp, dir, c);
2325         case XFRM_MSG_FLUSHPOLICY:
2326                 return xfrm_notify_policy_flush(c);
2327         case XFRM_MSG_POLEXPIRE:
2328                 return xfrm_exp_policy_notify(xp, dir, c);
2329         default:
2330                 printk("xfrm_user: Unknown Policy event %d\n", c->event);
2331         }
2332
2333         return 0;
2334
2335 }
2336
2337 static inline size_t xfrm_report_msgsize(void)
2338 {
2339         return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2340 }
2341
2342 static int build_report(struct sk_buff *skb, u8 proto,
2343                         struct xfrm_selector *sel, xfrm_address_t *addr)
2344 {
2345         struct xfrm_user_report *ur;
2346         struct nlmsghdr *nlh;
2347
2348         nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2349         if (nlh == NULL)
2350                 return -EMSGSIZE;
2351
2352         ur = nlmsg_data(nlh);
2353         ur->proto = proto;
2354         memcpy(&ur->sel, sel, sizeof(ur->sel));
2355
2356         if (addr)
2357                 NLA_PUT(skb, XFRMA_COADDR, sizeof(*addr), addr);
2358
2359         return nlmsg_end(skb, nlh);
2360
2361 nla_put_failure:
2362         nlmsg_cancel(skb, nlh);
2363         return -EMSGSIZE;
2364 }
2365
2366 static int xfrm_send_report(u8 proto, struct xfrm_selector *sel,
2367                             xfrm_address_t *addr)
2368 {
2369         struct sk_buff *skb;
2370
2371         skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
2372         if (skb == NULL)
2373                 return -ENOMEM;
2374
2375         if (build_report(skb, proto, sel, addr) < 0)
2376                 BUG();
2377
2378         return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
2379 }
2380
2381 static struct xfrm_mgr netlink_mgr = {
2382         .id             = "netlink",
2383         .notify         = xfrm_send_state_notify,
2384         .acquire        = xfrm_send_acquire,
2385         .compile_policy = xfrm_compile_policy,
2386         .notify_policy  = xfrm_send_policy_notify,
2387         .report         = xfrm_send_report,
2388         .migrate        = xfrm_send_migrate,
2389 };
2390
2391 static int __init xfrm_user_init(void)
2392 {
2393         struct sock *nlsk;
2394
2395         printk(KERN_INFO "Initializing XFRM netlink socket\n");
2396
2397         nlsk = netlink_kernel_create(&init_net, NETLINK_XFRM, XFRMNLGRP_MAX,
2398                                      xfrm_netlink_rcv, NULL, THIS_MODULE);
2399         if (nlsk == NULL)
2400                 return -ENOMEM;
2401         rcu_assign_pointer(xfrm_nl, nlsk);
2402
2403         xfrm_register_km(&netlink_mgr);
2404
2405         return 0;
2406 }
2407
2408 static void __exit xfrm_user_exit(void)
2409 {
2410         struct sock *nlsk = xfrm_nl;
2411
2412         xfrm_unregister_km(&netlink_mgr);
2413         rcu_assign_pointer(xfrm_nl, NULL);
2414         synchronize_rcu();
2415         sock_release(nlsk->sk_socket);
2416 }
2417
2418 module_init(xfrm_user_init);
2419 module_exit(xfrm_user_exit);
2420 MODULE_LICENSE("GPL");
2421 MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
2422