blob: 24a97b1179f8a87953010b01bbe66c78d806a4f2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/rtnetlink.h>
23#include <linux/pfkeyv2.h>
24#include <linux/ipsec.h>
25#include <linux/init.h>
26#include <linux/security.h>
27#include <net/sock.h>
28#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010029#include <net/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070031#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
32#include <linux/in6.h>
33#endif
Joy Latten161a09e2006-11-27 13:11:54 -060034#include <linux/audit.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static int verify_one_alg(struct rtattr **xfrma, enum xfrm_attr_type_t type)
37{
38 struct rtattr *rt = xfrma[type - 1];
39 struct xfrm_algo *algp;
Herbert Xu31c26852005-05-19 12:39:49 -070040 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42 if (!rt)
43 return 0;
44
Herbert Xu31c26852005-05-19 12:39:49 -070045 len = (rt->rta_len - sizeof(*rt)) - sizeof(*algp);
46 if (len < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 return -EINVAL;
48
49 algp = RTA_DATA(rt);
Herbert Xu31c26852005-05-19 12:39:49 -070050
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +090051 len -= (algp->alg_key_len + 7U) / 8;
Herbert Xu31c26852005-05-19 12:39:49 -070052 if (len < 0)
53 return -EINVAL;
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 switch (type) {
56 case XFRMA_ALG_AUTH:
57 if (!algp->alg_key_len &&
58 strcmp(algp->alg_name, "digest_null") != 0)
59 return -EINVAL;
60 break;
61
62 case XFRMA_ALG_CRYPT:
63 if (!algp->alg_key_len &&
64 strcmp(algp->alg_name, "cipher_null") != 0)
65 return -EINVAL;
66 break;
67
68 case XFRMA_ALG_COMP:
69 /* Zero length keys are legal. */
70 break;
71
72 default:
73 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
77 return 0;
78}
79
80static int verify_encap_tmpl(struct rtattr **xfrma)
81{
82 struct rtattr *rt = xfrma[XFRMA_ENCAP - 1];
83 struct xfrm_encap_tmpl *encap;
84
85 if (!rt)
86 return 0;
87
88 if ((rt->rta_len - sizeof(*rt)) < sizeof(*encap))
89 return -EINVAL;
90
91 return 0;
92}
93
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070094static int verify_one_addr(struct rtattr **xfrma, enum xfrm_attr_type_t type,
95 xfrm_address_t **addrp)
96{
97 struct rtattr *rt = xfrma[type - 1];
98
99 if (!rt)
100 return 0;
101
102 if ((rt->rta_len - sizeof(*rt)) < sizeof(**addrp))
103 return -EINVAL;
104
105 if (addrp)
106 *addrp = RTA_DATA(rt);
107
108 return 0;
109}
Trent Jaegerdf718372005-12-13 23:12:27 -0800110
111static inline int verify_sec_ctx_len(struct rtattr **xfrma)
112{
113 struct rtattr *rt = xfrma[XFRMA_SEC_CTX - 1];
114 struct xfrm_user_sec_ctx *uctx;
115 int len = 0;
116
117 if (!rt)
118 return 0;
119
120 if (rt->rta_len < sizeof(*uctx))
121 return -EINVAL;
122
123 uctx = RTA_DATA(rt);
124
Trent Jaegerdf718372005-12-13 23:12:27 -0800125 len += sizeof(struct xfrm_user_sec_ctx);
126 len += uctx->ctx_len;
127
128 if (uctx->len != len)
129 return -EINVAL;
130
131 return 0;
132}
133
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135static int verify_newsa_info(struct xfrm_usersa_info *p,
136 struct rtattr **xfrma)
137{
138 int err;
139
140 err = -EINVAL;
141 switch (p->family) {
142 case AF_INET:
143 break;
144
145 case AF_INET6:
146#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
147 break;
148#else
149 err = -EAFNOSUPPORT;
150 goto out;
151#endif
152
153 default:
154 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 err = -EINVAL;
158 switch (p->id.proto) {
159 case IPPROTO_AH:
160 if (!xfrma[XFRMA_ALG_AUTH-1] ||
161 xfrma[XFRMA_ALG_CRYPT-1] ||
162 xfrma[XFRMA_ALG_COMP-1])
163 goto out;
164 break;
165
166 case IPPROTO_ESP:
167 if ((!xfrma[XFRMA_ALG_AUTH-1] &&
168 !xfrma[XFRMA_ALG_CRYPT-1]) ||
169 xfrma[XFRMA_ALG_COMP-1])
170 goto out;
171 break;
172
173 case IPPROTO_COMP:
174 if (!xfrma[XFRMA_ALG_COMP-1] ||
175 xfrma[XFRMA_ALG_AUTH-1] ||
176 xfrma[XFRMA_ALG_CRYPT-1])
177 goto out;
178 break;
179
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700180#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
181 case IPPROTO_DSTOPTS:
182 case IPPROTO_ROUTING:
183 if (xfrma[XFRMA_ALG_COMP-1] ||
184 xfrma[XFRMA_ALG_AUTH-1] ||
185 xfrma[XFRMA_ALG_CRYPT-1] ||
186 xfrma[XFRMA_ENCAP-1] ||
187 xfrma[XFRMA_SEC_CTX-1] ||
188 !xfrma[XFRMA_COADDR-1])
189 goto out;
190 break;
191#endif
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 default:
194 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 if ((err = verify_one_alg(xfrma, XFRMA_ALG_AUTH)))
198 goto out;
199 if ((err = verify_one_alg(xfrma, XFRMA_ALG_CRYPT)))
200 goto out;
201 if ((err = verify_one_alg(xfrma, XFRMA_ALG_COMP)))
202 goto out;
203 if ((err = verify_encap_tmpl(xfrma)))
204 goto out;
Trent Jaegerdf718372005-12-13 23:12:27 -0800205 if ((err = verify_sec_ctx_len(xfrma)))
206 goto out;
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700207 if ((err = verify_one_addr(xfrma, XFRMA_COADDR, NULL)))
208 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 err = -EINVAL;
211 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700212 case XFRM_MODE_TRANSPORT:
213 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700214 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700215 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 break;
217
218 default:
219 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 err = 0;
223
224out:
225 return err;
226}
227
228static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
229 struct xfrm_algo_desc *(*get_byname)(char *, int),
230 struct rtattr *u_arg)
231{
232 struct rtattr *rta = u_arg;
233 struct xfrm_algo *p, *ualg;
234 struct xfrm_algo_desc *algo;
Herbert Xub9e9dea2005-05-19 12:39:04 -0700235 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 if (!rta)
238 return 0;
239
240 ualg = RTA_DATA(rta);
241
242 algo = get_byname(ualg->alg_name, 1);
243 if (!algo)
244 return -ENOSYS;
245 *props = algo->desc.sadb_alg_id;
246
Herbert Xub9e9dea2005-05-19 12:39:04 -0700247 len = sizeof(*ualg) + (ualg->alg_key_len + 7U) / 8;
Arnaldo Carvalho de Melocdbc6da2006-11-21 01:22:51 -0200248 p = kmemdup(ualg, len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (!p)
250 return -ENOMEM;
251
Herbert Xu04ff1262006-08-13 08:50:00 +1000252 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 *algpp = p;
254 return 0;
255}
256
257static int attach_encap_tmpl(struct xfrm_encap_tmpl **encapp, struct rtattr *u_arg)
258{
259 struct rtattr *rta = u_arg;
260 struct xfrm_encap_tmpl *p, *uencap;
261
262 if (!rta)
263 return 0;
264
265 uencap = RTA_DATA(rta);
Arnaldo Carvalho de Melocdbc6da2006-11-21 01:22:51 -0200266 p = kmemdup(uencap, sizeof(*p), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (!p)
268 return -ENOMEM;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *encapp = p;
271 return 0;
272}
273
Trent Jaegerdf718372005-12-13 23:12:27 -0800274
Joy Latten661697f2007-04-13 16:14:35 -0700275static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800276{
Trent Jaegerdf718372005-12-13 23:12:27 -0800277 int len = 0;
278
279 if (xfrm_ctx) {
280 len += sizeof(struct xfrm_user_sec_ctx);
281 len += xfrm_ctx->ctx_len;
282 }
283 return len;
284}
285
286static int attach_sec_ctx(struct xfrm_state *x, struct rtattr *u_arg)
287{
288 struct xfrm_user_sec_ctx *uctx;
289
290 if (!u_arg)
291 return 0;
292
293 uctx = RTA_DATA(u_arg);
294 return security_xfrm_state_alloc(x, uctx);
295}
296
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700297static int attach_one_addr(xfrm_address_t **addrpp, struct rtattr *u_arg)
298{
299 struct rtattr *rta = u_arg;
300 xfrm_address_t *p, *uaddrp;
301
302 if (!rta)
303 return 0;
304
305 uaddrp = RTA_DATA(rta);
Arnaldo Carvalho de Melocdbc6da2006-11-21 01:22:51 -0200306 p = kmemdup(uaddrp, sizeof(*p), GFP_KERNEL);
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700307 if (!p)
308 return -ENOMEM;
309
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700310 *addrpp = p;
311 return 0;
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
315{
316 memcpy(&x->id, &p->id, sizeof(x->id));
317 memcpy(&x->sel, &p->sel, sizeof(x->sel));
318 memcpy(&x->lft, &p->lft, sizeof(x->lft));
319 x->props.mode = p->mode;
320 x->props.replay_window = p->replay_window;
321 x->props.reqid = p->reqid;
322 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700323 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700325
326 /*
327 * Set inner address family if the KM left it as zero.
328 * See comment in validate_tmpl.
329 */
330 if (!x->sel.family)
331 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800334/*
335 * someday when pfkey also has support, we could have the code
336 * somehow made shareable and move it to xfrm_state.c - JHS
337 *
338*/
339static int xfrm_update_ae_params(struct xfrm_state *x, struct rtattr **xfrma)
340{
341 int err = - EINVAL;
342 struct rtattr *rp = xfrma[XFRMA_REPLAY_VAL-1];
343 struct rtattr *lt = xfrma[XFRMA_LTIME_VAL-1];
344 struct rtattr *et = xfrma[XFRMA_ETIMER_THRESH-1];
345 struct rtattr *rt = xfrma[XFRMA_REPLAY_THRESH-1];
346
347 if (rp) {
348 struct xfrm_replay_state *replay;
349 if (RTA_PAYLOAD(rp) < sizeof(*replay))
350 goto error;
351 replay = RTA_DATA(rp);
352 memcpy(&x->replay, replay, sizeof(*replay));
353 memcpy(&x->preplay, replay, sizeof(*replay));
354 }
355
356 if (lt) {
357 struct xfrm_lifetime_cur *ltime;
358 if (RTA_PAYLOAD(lt) < sizeof(*ltime))
359 goto error;
360 ltime = RTA_DATA(lt);
361 x->curlft.bytes = ltime->bytes;
362 x->curlft.packets = ltime->packets;
363 x->curlft.add_time = ltime->add_time;
364 x->curlft.use_time = ltime->use_time;
365 }
366
367 if (et) {
368 if (RTA_PAYLOAD(et) < sizeof(u32))
369 goto error;
370 x->replay_maxage = *(u32*)RTA_DATA(et);
371 }
372
373 if (rt) {
374 if (RTA_PAYLOAD(rt) < sizeof(u32))
375 goto error;
376 x->replay_maxdiff = *(u32*)RTA_DATA(rt);
377 }
378
379 return 0;
380error:
381 return err;
382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384static struct xfrm_state *xfrm_state_construct(struct xfrm_usersa_info *p,
385 struct rtattr **xfrma,
386 int *errp)
387{
388 struct xfrm_state *x = xfrm_state_alloc();
389 int err = -ENOMEM;
390
391 if (!x)
392 goto error_no_put;
393
394 copy_from_user_state(x, p);
395
396 if ((err = attach_one_algo(&x->aalg, &x->props.aalgo,
397 xfrm_aalg_get_byname,
398 xfrma[XFRMA_ALG_AUTH-1])))
399 goto error;
400 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
401 xfrm_ealg_get_byname,
402 xfrma[XFRMA_ALG_CRYPT-1])))
403 goto error;
404 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
405 xfrm_calg_get_byname,
406 xfrma[XFRMA_ALG_COMP-1])))
407 goto error;
408 if ((err = attach_encap_tmpl(&x->encap, xfrma[XFRMA_ENCAP-1])))
409 goto error;
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700410 if ((err = attach_one_addr(&x->coaddr, xfrma[XFRMA_COADDR-1])))
411 goto error;
Herbert Xu72cb6962005-06-20 13:18:08 -0700412 err = xfrm_init_state(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (err)
414 goto error;
415
Trent Jaegerdf718372005-12-13 23:12:27 -0800416 if ((err = attach_sec_ctx(x, xfrma[XFRMA_SEC_CTX-1])))
417 goto error;
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 x->km.seq = p->seq;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800420 x->replay_maxdiff = sysctl_xfrm_aevent_rseqth;
421 /* sysctl_xfrm_aevent_etime is in 100ms units */
422 x->replay_maxage = (sysctl_xfrm_aevent_etime*HZ)/XFRM_AE_ETH_M;
423 x->preplay.bitmap = 0;
424 x->preplay.seq = x->replay.seq+x->replay_maxdiff;
425 x->preplay.oseq = x->replay.oseq +x->replay_maxdiff;
426
427 /* override default values from above */
428
429 err = xfrm_update_ae_params(x, (struct rtattr **)xfrma);
430 if (err < 0)
431 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 return x;
434
435error:
436 x->km.state = XFRM_STATE_DEAD;
437 xfrm_state_put(x);
438error_no_put:
439 *errp = err;
440 return NULL;
441}
442
Christoph Hellwig22e70052007-01-02 15:22:30 -0800443static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
444 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Thomas Graf7b67c852007-08-22 13:53:52 -0700446 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct xfrm_state *x;
448 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700449 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Christoph Hellwig22e70052007-01-02 15:22:30 -0800451 err = verify_newsa_info(p, xfrma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (err)
453 return err;
454
Christoph Hellwig22e70052007-01-02 15:22:30 -0800455 x = xfrm_state_construct(p, xfrma, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (!x)
457 return err;
458
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700459 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
461 err = xfrm_state_add(x);
462 else
463 err = xfrm_state_update(x);
464
Joy Latten161a09e2006-11-27 13:11:54 -0600465 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
466 AUDIT_MAC_IPSEC_ADDSA, err ? 0 : 1, NULL, x);
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (err < 0) {
469 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800470 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700471 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
473
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700474 c.seq = nlh->nlmsg_seq;
475 c.pid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700476 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700477
478 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700479out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700480 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return err;
482}
483
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700484static struct xfrm_state *xfrm_user_state_lookup(struct xfrm_usersa_id *p,
485 struct rtattr **xfrma,
486 int *errp)
487{
488 struct xfrm_state *x = NULL;
489 int err;
490
491 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
492 err = -ESRCH;
493 x = xfrm_state_lookup(&p->daddr, p->spi, p->proto, p->family);
494 } else {
495 xfrm_address_t *saddr = NULL;
496
497 err = verify_one_addr(xfrma, XFRMA_SRCADDR, &saddr);
498 if (err)
499 goto out;
500
501 if (!saddr) {
502 err = -EINVAL;
503 goto out;
504 }
505
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800506 err = -ESRCH;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700507 x = xfrm_state_lookup_byaddr(&p->daddr, saddr, p->proto,
508 p->family);
509 }
510
511 out:
512 if (!x && errp)
513 *errp = err;
514 return x;
515}
516
Christoph Hellwig22e70052007-01-02 15:22:30 -0800517static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
518 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700521 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700522 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700523 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Christoph Hellwig22e70052007-01-02 15:22:30 -0800525 x = xfrm_user_state_lookup(p, xfrma, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700527 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
David S. Miller6f68dc32006-06-08 23:58:52 -0700529 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700530 goto out;
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700533 err = -EPERM;
534 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700537 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600538
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700539 if (err < 0)
540 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700541
542 c.seq = nlh->nlmsg_seq;
543 c.pid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700544 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700545 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700547out:
Eric Paris16bec312007-03-07 16:02:16 -0800548 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
549 AUDIT_MAC_IPSEC_DELSA, err ? 0 : 1, NULL, x);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700550 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700551 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
555{
556 memcpy(&p->id, &x->id, sizeof(p->id));
557 memcpy(&p->sel, &x->sel, sizeof(p->sel));
558 memcpy(&p->lft, &x->lft, sizeof(p->lft));
559 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
560 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700561 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 p->mode = x->props.mode;
563 p->replay_window = x->props.replay_window;
564 p->reqid = x->props.reqid;
565 p->family = x->props.family;
566 p->flags = x->props.flags;
567 p->seq = x->km.seq;
568}
569
570struct xfrm_dump_info {
571 struct sk_buff *in_skb;
572 struct sk_buff *out_skb;
573 u32 nlmsg_seq;
574 u16 nlmsg_flags;
575 int start_idx;
576 int this_idx;
577};
578
Thomas Grafc0144be2007-08-22 13:55:43 -0700579static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
580{
581 int ctx_size = sizeof(struct xfrm_sec_ctx) + s->ctx_len;
582 struct xfrm_user_sec_ctx *uctx;
583 struct nlattr *attr;
584
585 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
586 if (attr == NULL)
587 return -EMSGSIZE;
588
589 uctx = nla_data(attr);
590 uctx->exttype = XFRMA_SEC_CTX;
591 uctx->len = ctx_size;
592 uctx->ctx_doi = s->ctx_doi;
593 uctx->ctx_alg = s->ctx_alg;
594 uctx->ctx_len = s->ctx_len;
595 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
596
597 return 0;
598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
601{
602 struct xfrm_dump_info *sp = ptr;
603 struct sk_buff *in_skb = sp->in_skb;
604 struct sk_buff *skb = sp->out_skb;
605 struct xfrm_usersa_info *p;
606 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 if (sp->this_idx < sp->start_idx)
609 goto out;
610
Thomas Graf79b8b7f2007-08-22 12:46:53 -0700611 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
612 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
613 if (nlh == NULL)
614 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Thomas Graf7b67c852007-08-22 13:53:52 -0700616 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 copy_to_user_state(x, p);
618
619 if (x->aalg)
Thomas Grafc0144be2007-08-22 13:55:43 -0700620 NLA_PUT(skb, XFRMA_ALG_AUTH,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
622 if (x->ealg)
Thomas Grafc0144be2007-08-22 13:55:43 -0700623 NLA_PUT(skb, XFRMA_ALG_CRYPT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
625 if (x->calg)
Thomas Grafc0144be2007-08-22 13:55:43 -0700626 NLA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 if (x->encap)
Thomas Grafc0144be2007-08-22 13:55:43 -0700629 NLA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Thomas Grafc0144be2007-08-22 13:55:43 -0700631 if (x->security && copy_sec_ctx(x->security, skb) < 0)
632 goto nla_put_failure;
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700633
634 if (x->coaddr)
Thomas Grafc0144be2007-08-22 13:55:43 -0700635 NLA_PUT(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700636
Masahide NAKAMURA9afaca02006-08-23 18:20:16 -0700637 if (x->lastused)
Thomas Grafc0144be2007-08-22 13:55:43 -0700638 NLA_PUT_U64(skb, XFRMA_LASTUSED, x->lastused);
Masahide NAKAMURA9afaca02006-08-23 18:20:16 -0700639
Thomas Graf98250692007-08-22 12:47:26 -0700640 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641out:
642 sp->this_idx++;
643 return 0;
644
Thomas Grafc0144be2007-08-22 13:55:43 -0700645nla_put_failure:
Thomas Graf98250692007-08-22 12:47:26 -0700646 nlmsg_cancel(skb, nlh);
647 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
651{
652 struct xfrm_dump_info info;
653
654 info.in_skb = cb->skb;
655 info.out_skb = skb;
656 info.nlmsg_seq = cb->nlh->nlmsg_seq;
657 info.nlmsg_flags = NLM_F_MULTI;
658 info.this_idx = 0;
659 info.start_idx = cb->args[0];
Masahide NAKAMURAdc00a522006-08-23 17:49:52 -0700660 (void) xfrm_state_walk(0, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 cb->args[0] = info.this_idx;
662
663 return skb->len;
664}
665
666static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
667 struct xfrm_state *x, u32 seq)
668{
669 struct xfrm_dump_info info;
670 struct sk_buff *skb;
671
672 skb = alloc_skb(NLMSG_GOODSIZE, GFP_ATOMIC);
673 if (!skb)
674 return ERR_PTR(-ENOMEM);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 info.in_skb = in_skb;
677 info.out_skb = skb;
678 info.nlmsg_seq = seq;
679 info.nlmsg_flags = 0;
680 info.this_idx = info.start_idx = 0;
681
682 if (dump_one_state(x, 0, &info)) {
683 kfree_skb(skb);
684 return NULL;
685 }
686
687 return skb;
688}
689
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700690static int build_spdinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
691{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700692 struct xfrmk_spdinfo si;
693 struct xfrmu_spdinfo spc;
694 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700695 struct nlmsghdr *nlh;
696 u32 *f;
697
698 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
699 if (nlh == NULL) /* shouldnt really happen ... */
700 return -EMSGSIZE;
701
702 f = nlmsg_data(nlh);
703 *f = flags;
704 xfrm_spd_getinfo(&si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700705 spc.incnt = si.incnt;
706 spc.outcnt = si.outcnt;
707 spc.fwdcnt = si.fwdcnt;
708 spc.inscnt = si.inscnt;
709 spc.outscnt = si.outscnt;
710 spc.fwdscnt = si.fwdscnt;
711 sph.spdhcnt = si.spdhcnt;
712 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700713
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700714 NLA_PUT(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
715 NLA_PUT(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700716
717 return nlmsg_end(skb, nlh);
718
719nla_put_failure:
720 nlmsg_cancel(skb, nlh);
721 return -EMSGSIZE;
722}
723
724static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
725 struct rtattr **xfrma)
726{
727 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700728 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700729 u32 spid = NETLINK_CB(skb).pid;
730 u32 seq = nlh->nlmsg_seq;
731 int len = NLMSG_LENGTH(sizeof(u32));
732
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700733 len += RTA_SPACE(sizeof(struct xfrmu_spdinfo));
734 len += RTA_SPACE(sizeof(struct xfrmu_spdhinfo));
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700735
736 r_skb = alloc_skb(len, GFP_ATOMIC);
737 if (r_skb == NULL)
738 return -ENOMEM;
739
740 if (build_spdinfo(r_skb, spid, seq, *flags) < 0)
741 BUG();
742
743 return nlmsg_unicast(xfrm_nl, r_skb, spid);
744}
745
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700746static int build_sadinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
747{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700748 struct xfrmk_sadinfo si;
749 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700750 struct nlmsghdr *nlh;
751 u32 *f;
752
753 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
754 if (nlh == NULL) /* shouldnt really happen ... */
755 return -EMSGSIZE;
756
757 f = nlmsg_data(nlh);
758 *f = flags;
759 xfrm_sad_getinfo(&si);
760
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700761 sh.sadhmcnt = si.sadhmcnt;
762 sh.sadhcnt = si.sadhcnt;
763
764 NLA_PUT_U32(skb, XFRMA_SAD_CNT, si.sadcnt);
765 NLA_PUT(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700766
767 return nlmsg_end(skb, nlh);
768
769nla_put_failure:
770 nlmsg_cancel(skb, nlh);
771 return -EMSGSIZE;
772}
773
774static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
775 struct rtattr **xfrma)
776{
777 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700778 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700779 u32 spid = NETLINK_CB(skb).pid;
780 u32 seq = nlh->nlmsg_seq;
781 int len = NLMSG_LENGTH(sizeof(u32));
782
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700783 len += RTA_SPACE(sizeof(struct xfrmu_sadhinfo));
784 len += RTA_SPACE(sizeof(u32));
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700785
786 r_skb = alloc_skb(len, GFP_ATOMIC);
787
788 if (r_skb == NULL)
789 return -ENOMEM;
790
791 if (build_sadinfo(r_skb, spid, seq, *flags) < 0)
792 BUG();
793
794 return nlmsg_unicast(xfrm_nl, r_skb, spid);
795}
796
Christoph Hellwig22e70052007-01-02 15:22:30 -0800797static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
798 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Thomas Graf7b67c852007-08-22 13:53:52 -0700800 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 struct xfrm_state *x;
802 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700803 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Christoph Hellwig22e70052007-01-02 15:22:30 -0800805 x = xfrm_user_state_lookup(p, xfrma, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 if (x == NULL)
807 goto out_noput;
808
809 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
810 if (IS_ERR(resp_skb)) {
811 err = PTR_ERR(resp_skb);
812 } else {
Thomas Graf082a1ad2007-08-22 13:54:36 -0700813 err = nlmsg_unicast(xfrm_nl, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815 xfrm_state_put(x);
816out_noput:
817 return err;
818}
819
820static int verify_userspi_info(struct xfrm_userspi_info *p)
821{
822 switch (p->info.id.proto) {
823 case IPPROTO_AH:
824 case IPPROTO_ESP:
825 break;
826
827 case IPPROTO_COMP:
828 /* IPCOMP spi is 16-bits. */
829 if (p->max >= 0x10000)
830 return -EINVAL;
831 break;
832
833 default:
834 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (p->min > p->max)
838 return -EINVAL;
839
840 return 0;
841}
842
Christoph Hellwig22e70052007-01-02 15:22:30 -0800843static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
844 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
846 struct xfrm_state *x;
847 struct xfrm_userspi_info *p;
848 struct sk_buff *resp_skb;
849 xfrm_address_t *daddr;
850 int family;
851 int err;
852
Thomas Graf7b67c852007-08-22 13:53:52 -0700853 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 err = verify_userspi_info(p);
855 if (err)
856 goto out_noput;
857
858 family = p->info.family;
859 daddr = &p->info.id.daddr;
860
861 x = NULL;
862 if (p->info.seq) {
863 x = xfrm_find_acq_byseq(p->info.seq);
864 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
865 xfrm_state_put(x);
866 x = NULL;
867 }
868 }
869
870 if (!x)
871 x = xfrm_find_acq(p->info.mode, p->info.reqid,
872 p->info.id.proto, daddr,
873 &p->info.saddr, 1,
874 family);
875 err = -ENOENT;
876 if (x == NULL)
877 goto out_noput;
878
879 resp_skb = ERR_PTR(-ENOENT);
880
881 spin_lock_bh(&x->lock);
882 if (x->km.state != XFRM_STATE_DEAD) {
883 xfrm_alloc_spi(x, htonl(p->min), htonl(p->max));
884 if (x->id.spi)
885 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
886 }
887 spin_unlock_bh(&x->lock);
888
889 if (IS_ERR(resp_skb)) {
890 err = PTR_ERR(resp_skb);
891 goto out;
892 }
893
Thomas Graf082a1ad2007-08-22 13:54:36 -0700894 err = nlmsg_unicast(xfrm_nl, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896out:
897 xfrm_state_put(x);
898out_noput:
899 return err;
900}
901
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -0800902static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 switch (dir) {
905 case XFRM_POLICY_IN:
906 case XFRM_POLICY_OUT:
907 case XFRM_POLICY_FWD:
908 break;
909
910 default:
911 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 return 0;
915}
916
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -0800917static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -0700918{
919 switch (type) {
920 case XFRM_POLICY_TYPE_MAIN:
921#ifdef CONFIG_XFRM_SUB_POLICY
922 case XFRM_POLICY_TYPE_SUB:
923#endif
924 break;
925
926 default:
927 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700928 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -0700929
930 return 0;
931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
934{
935 switch (p->share) {
936 case XFRM_SHARE_ANY:
937 case XFRM_SHARE_SESSION:
938 case XFRM_SHARE_USER:
939 case XFRM_SHARE_UNIQUE:
940 break;
941
942 default:
943 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 switch (p->action) {
947 case XFRM_POLICY_ALLOW:
948 case XFRM_POLICY_BLOCK:
949 break;
950
951 default:
952 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
955 switch (p->sel.family) {
956 case AF_INET:
957 break;
958
959 case AF_INET6:
960#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
961 break;
962#else
963 return -EAFNOSUPPORT;
964#endif
965
966 default:
967 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 return verify_policy_dir(p->dir);
971}
972
Trent Jaegerdf718372005-12-13 23:12:27 -0800973static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct rtattr **xfrma)
974{
975 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
976 struct xfrm_user_sec_ctx *uctx;
977
978 if (!rt)
979 return 0;
980
981 uctx = RTA_DATA(rt);
982 return security_xfrm_policy_alloc(pol, uctx);
983}
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
986 int nr)
987{
988 int i;
989
990 xp->xfrm_nr = nr;
991 for (i = 0; i < nr; i++, ut++) {
992 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
993
994 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
995 memcpy(&t->saddr, &ut->saddr,
996 sizeof(xfrm_address_t));
997 t->reqid = ut->reqid;
998 t->mode = ut->mode;
999 t->share = ut->share;
1000 t->optional = ut->optional;
1001 t->aalgos = ut->aalgos;
1002 t->ealgos = ut->ealgos;
1003 t->calgos = ut->calgos;
Miika Komu8511d012006-11-30 16:40:51 -08001004 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006}
1007
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001008static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1009{
1010 int i;
1011
1012 if (nr > XFRM_MAX_DEPTH)
1013 return -EINVAL;
1014
1015 for (i = 0; i < nr; i++) {
1016 /* We never validated the ut->family value, so many
1017 * applications simply leave it at zero. The check was
1018 * never made and ut->family was ignored because all
1019 * templates could be assumed to have the same family as
1020 * the policy itself. Now that we will have ipv4-in-ipv6
1021 * and ipv6-in-ipv4 tunnels, this is no longer true.
1022 */
1023 if (!ut[i].family)
1024 ut[i].family = family;
1025
1026 switch (ut[i].family) {
1027 case AF_INET:
1028 break;
1029#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1030 case AF_INET6:
1031 break;
1032#endif
1033 default:
1034 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001035 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001036 }
1037
1038 return 0;
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041static int copy_from_user_tmpl(struct xfrm_policy *pol, struct rtattr **xfrma)
1042{
1043 struct rtattr *rt = xfrma[XFRMA_TMPL-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 if (!rt) {
1046 pol->xfrm_nr = 0;
1047 } else {
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001048 struct xfrm_user_tmpl *utmpl = RTA_DATA(rt);
1049 int nr = (rt->rta_len - sizeof(*rt)) / sizeof(*utmpl);
1050 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001052 err = validate_tmpl(nr, utmpl, pol->family);
1053 if (err)
1054 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 copy_templates(pol, RTA_DATA(rt), nr);
1057 }
1058 return 0;
1059}
1060
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001061static int copy_from_user_policy_type(u8 *tp, struct rtattr **xfrma)
1062{
1063 struct rtattr *rt = xfrma[XFRMA_POLICY_TYPE-1];
1064 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001065 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001066 int err;
1067
1068 if (rt) {
1069 if (rt->rta_len < sizeof(*upt))
1070 return -EINVAL;
1071
1072 upt = RTA_DATA(rt);
1073 type = upt->type;
1074 }
1075
1076 err = verify_policy_type(type);
1077 if (err)
1078 return err;
1079
1080 *tp = type;
1081 return 0;
1082}
1083
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1085{
1086 xp->priority = p->priority;
1087 xp->index = p->index;
1088 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1089 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1090 xp->action = p->action;
1091 xp->flags = p->flags;
1092 xp->family = p->sel.family;
1093 /* XXX xp->share = p->share; */
1094}
1095
1096static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1097{
1098 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1099 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1100 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1101 p->priority = xp->priority;
1102 p->index = xp->index;
1103 p->sel.family = xp->family;
1104 p->dir = dir;
1105 p->action = xp->action;
1106 p->flags = xp->flags;
1107 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1108}
1109
1110static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct rtattr **xfrma, int *errp)
1111{
1112 struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL);
1113 int err;
1114
1115 if (!xp) {
1116 *errp = -ENOMEM;
1117 return NULL;
1118 }
1119
1120 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001121
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001122 err = copy_from_user_policy_type(&xp->type, xfrma);
1123 if (err)
1124 goto error;
1125
Trent Jaegerdf718372005-12-13 23:12:27 -08001126 if (!(err = copy_from_user_tmpl(xp, xfrma)))
1127 err = copy_from_user_sec_ctx(xp, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001128 if (err)
1129 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
1131 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001132 error:
1133 *errp = err;
1134 kfree(xp);
1135 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
Christoph Hellwig22e70052007-01-02 15:22:30 -08001138static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1139 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Thomas Graf7b67c852007-08-22 13:53:52 -07001141 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001143 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 int err;
1145 int excl;
1146
1147 err = verify_newpolicy_info(p);
1148 if (err)
1149 return err;
Christoph Hellwig22e70052007-01-02 15:22:30 -08001150 err = verify_sec_ctx_len(xfrma);
Trent Jaegerdf718372005-12-13 23:12:27 -08001151 if (err)
1152 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Christoph Hellwig22e70052007-01-02 15:22:30 -08001154 xp = xfrm_policy_construct(p, xfrma, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (!xp)
1156 return err;
1157
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001158 /* shouldnt excl be based on nlh flags??
1159 * Aha! this is anti-netlink really i.e more pfkey derived
1160 * in netlink excl is a flag and you wouldnt need
1161 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1163 err = xfrm_policy_insert(p->dir, xp, excl);
Joy Latten161a09e2006-11-27 13:11:54 -06001164 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1165 AUDIT_MAC_IPSEC_DELSPD, err ? 0 : 1, xp, NULL);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (err) {
Trent Jaeger5f8ac642006-01-06 13:22:39 -08001168 security_xfrm_policy_free(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 kfree(xp);
1170 return err;
1171 }
1172
Herbert Xuf60f6b82005-06-18 22:44:37 -07001173 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001174 c.seq = nlh->nlmsg_seq;
1175 c.pid = nlh->nlmsg_pid;
1176 km_policy_notify(xp, p->dir, &c);
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 xfrm_pol_put(xp);
1179
1180 return 0;
1181}
1182
1183static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1184{
1185 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1186 int i;
1187
1188 if (xp->xfrm_nr == 0)
1189 return 0;
1190
1191 for (i = 0; i < xp->xfrm_nr; i++) {
1192 struct xfrm_user_tmpl *up = &vec[i];
1193 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1194
1195 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001196 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1198 up->reqid = kp->reqid;
1199 up->mode = kp->mode;
1200 up->share = kp->share;
1201 up->optional = kp->optional;
1202 up->aalgos = kp->aalgos;
1203 up->ealgos = kp->ealgos;
1204 up->calgos = kp->calgos;
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Thomas Grafc0144be2007-08-22 13:55:43 -07001207 return nla_put(skb, XFRMA_TMPL,
1208 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001209}
1210
Serge Hallyn0d681622006-07-24 23:30:44 -07001211static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1212{
1213 if (x->security) {
1214 return copy_sec_ctx(x->security, skb);
1215 }
1216 return 0;
1217}
1218
1219static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1220{
1221 if (xp->security) {
1222 return copy_sec_ctx(xp->security, skb);
1223 }
1224 return 0;
1225}
1226
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001227#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001228static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001229{
Thomas Grafc0144be2007-08-22 13:55:43 -07001230 struct xfrm_userpolicy_type upt = {
1231 .type = type,
1232 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001233
Thomas Grafc0144be2007-08-22 13:55:43 -07001234 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001235}
1236
1237#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001238static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001239{
1240 return 0;
1241}
1242#endif
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1245{
1246 struct xfrm_dump_info *sp = ptr;
1247 struct xfrm_userpolicy_info *p;
1248 struct sk_buff *in_skb = sp->in_skb;
1249 struct sk_buff *skb = sp->out_skb;
1250 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 if (sp->this_idx < sp->start_idx)
1253 goto out;
1254
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001255 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1256 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1257 if (nlh == NULL)
1258 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Thomas Graf7b67c852007-08-22 13:53:52 -07001260 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 copy_to_user_policy(xp, p, dir);
1262 if (copy_to_user_tmpl(xp, skb) < 0)
1263 goto nlmsg_failure;
Trent Jaegerdf718372005-12-13 23:12:27 -08001264 if (copy_to_user_sec_ctx(xp, skb))
1265 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08001266 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001267 goto nlmsg_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Thomas Graf98250692007-08-22 12:47:26 -07001269 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270out:
1271 sp->this_idx++;
1272 return 0;
1273
1274nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001275 nlmsg_cancel(skb, nlh);
1276 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
1279static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1280{
1281 struct xfrm_dump_info info;
1282
1283 info.in_skb = cb->skb;
1284 info.out_skb = skb;
1285 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1286 info.nlmsg_flags = NLM_F_MULTI;
1287 info.this_idx = 0;
1288 info.start_idx = cb->args[0];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001289 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_MAIN, dump_one_policy, &info);
1290#ifdef CONFIG_XFRM_SUB_POLICY
1291 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_SUB, dump_one_policy, &info);
1292#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 cb->args[0] = info.this_idx;
1294
1295 return skb->len;
1296}
1297
1298static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1299 struct xfrm_policy *xp,
1300 int dir, u32 seq)
1301{
1302 struct xfrm_dump_info info;
1303 struct sk_buff *skb;
1304
1305 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1306 if (!skb)
1307 return ERR_PTR(-ENOMEM);
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 info.in_skb = in_skb;
1310 info.out_skb = skb;
1311 info.nlmsg_seq = seq;
1312 info.nlmsg_flags = 0;
1313 info.this_idx = info.start_idx = 0;
1314
1315 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1316 kfree_skb(skb);
1317 return NULL;
1318 }
1319
1320 return skb;
1321}
1322
Christoph Hellwig22e70052007-01-02 15:22:30 -08001323static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1324 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326 struct xfrm_policy *xp;
1327 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001328 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001330 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 int delete;
1332
Thomas Graf7b67c852007-08-22 13:53:52 -07001333 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1335
Christoph Hellwig22e70052007-01-02 15:22:30 -08001336 err = copy_from_user_policy_type(&type, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001337 if (err)
1338 return err;
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 err = verify_policy_dir(p->dir);
1341 if (err)
1342 return err;
1343
1344 if (p->index)
Eric Parisef41aaa2007-03-07 15:37:58 -08001345 xp = xfrm_policy_byid(type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001346 else {
Christoph Hellwig22e70052007-01-02 15:22:30 -08001347 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
Trent Jaegerdf718372005-12-13 23:12:27 -08001348 struct xfrm_policy tmp;
1349
Christoph Hellwig22e70052007-01-02 15:22:30 -08001350 err = verify_sec_ctx_len(xfrma);
Trent Jaegerdf718372005-12-13 23:12:27 -08001351 if (err)
1352 return err;
1353
1354 memset(&tmp, 0, sizeof(struct xfrm_policy));
1355 if (rt) {
1356 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
1357
1358 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1359 return err;
1360 }
Eric Parisef41aaa2007-03-07 15:37:58 -08001361 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1362 delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001363 security_xfrm_policy_free(&tmp);
1364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (xp == NULL)
1366 return -ENOENT;
1367
1368 if (!delete) {
1369 struct sk_buff *resp_skb;
1370
1371 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1372 if (IS_ERR(resp_skb)) {
1373 err = PTR_ERR(resp_skb);
1374 } else {
Thomas Graf082a1ad2007-08-22 13:54:36 -07001375 err = nlmsg_unicast(xfrm_nl, resp_skb,
1376 NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001378 } else {
David S. Miller13fcfbb02007-02-12 13:53:54 -08001379 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1380 AUDIT_MAC_IPSEC_DELSPD, err ? 0 : 1, xp, NULL);
1381
1382 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001383 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001384
Herbert Xue7443892005-06-18 22:44:18 -07001385 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001386 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001387 c.seq = nlh->nlmsg_seq;
1388 c.pid = nlh->nlmsg_pid;
1389 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001392out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001393 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 return err;
1395}
1396
Christoph Hellwig22e70052007-01-02 15:22:30 -08001397static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
1398 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001400 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001401 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001402 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001403 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Joy Latten161a09e2006-11-27 13:11:54 -06001405 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1406 audit_info.secid = NETLINK_CB(skb).sid;
Joy Latten4aa2e622007-06-04 19:05:57 -04001407 err = xfrm_state_flush(p->proto, &audit_info);
1408 if (err)
1409 return err;
Herbert Xubf088672005-06-18 22:44:00 -07001410 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001411 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001412 c.seq = nlh->nlmsg_seq;
1413 c.pid = nlh->nlmsg_pid;
1414 km_state_notify(NULL, &c);
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return 0;
1417}
1418
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001419
1420static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1421{
1422 struct xfrm_aevent_id *id;
1423 struct nlmsghdr *nlh;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001424
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001425 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1426 if (nlh == NULL)
1427 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001428
Thomas Graf7b67c852007-08-22 13:53:52 -07001429 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001430 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001431 id->sa_id.spi = x->id.spi;
1432 id->sa_id.family = x->props.family;
1433 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001434 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1435 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001436 id->flags = c->data.aevent;
1437
Thomas Grafc0144be2007-08-22 13:55:43 -07001438 NLA_PUT(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), &x->replay);
1439 NLA_PUT(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001440
Thomas Grafc0144be2007-08-22 13:55:43 -07001441 if (id->flags & XFRM_AE_RTHR)
1442 NLA_PUT_U32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001443
Thomas Grafc0144be2007-08-22 13:55:43 -07001444 if (id->flags & XFRM_AE_ETHR)
1445 NLA_PUT_U32(skb, XFRMA_ETIMER_THRESH,
1446 x->replay_maxage * 10 / HZ);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001447
Thomas Graf98250692007-08-22 12:47:26 -07001448 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001449
Thomas Grafc0144be2007-08-22 13:55:43 -07001450nla_put_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001451 nlmsg_cancel(skb, nlh);
1452 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001453}
1454
Christoph Hellwig22e70052007-01-02 15:22:30 -08001455static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1456 struct rtattr **xfrma)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001457{
1458 struct xfrm_state *x;
1459 struct sk_buff *r_skb;
1460 int err;
1461 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001462 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001463 int len = NLMSG_LENGTH(sizeof(struct xfrm_aevent_id));
1464 struct xfrm_usersa_id *id = &p->sa_id;
1465
1466 len += RTA_SPACE(sizeof(struct xfrm_replay_state));
1467 len += RTA_SPACE(sizeof(struct xfrm_lifetime_cur));
1468
1469 if (p->flags&XFRM_AE_RTHR)
1470 len+=RTA_SPACE(sizeof(u32));
1471
1472 if (p->flags&XFRM_AE_ETHR)
1473 len+=RTA_SPACE(sizeof(u32));
1474
1475 r_skb = alloc_skb(len, GFP_ATOMIC);
1476 if (r_skb == NULL)
1477 return -ENOMEM;
1478
1479 x = xfrm_state_lookup(&id->daddr, id->spi, id->proto, id->family);
1480 if (x == NULL) {
Patrick McHardyb08d5842007-02-27 09:57:37 -08001481 kfree_skb(r_skb);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001482 return -ESRCH;
1483 }
1484
1485 /*
1486 * XXX: is this lock really needed - none of the other
1487 * gets lock (the concern is things getting updated
1488 * while we are still reading) - jhs
1489 */
1490 spin_lock_bh(&x->lock);
1491 c.data.aevent = p->flags;
1492 c.seq = nlh->nlmsg_seq;
1493 c.pid = nlh->nlmsg_pid;
1494
1495 if (build_aevent(r_skb, x, &c) < 0)
1496 BUG();
Thomas Graf082a1ad2007-08-22 13:54:36 -07001497 err = nlmsg_unicast(xfrm_nl, r_skb, NETLINK_CB(skb).pid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001498 spin_unlock_bh(&x->lock);
1499 xfrm_state_put(x);
1500 return err;
1501}
1502
Christoph Hellwig22e70052007-01-02 15:22:30 -08001503static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1504 struct rtattr **xfrma)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001505{
1506 struct xfrm_state *x;
1507 struct km_event c;
1508 int err = - EINVAL;
Thomas Graf7b67c852007-08-22 13:53:52 -07001509 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001510 struct rtattr *rp = xfrma[XFRMA_REPLAY_VAL-1];
1511 struct rtattr *lt = xfrma[XFRMA_LTIME_VAL-1];
1512
1513 if (!lt && !rp)
1514 return err;
1515
1516 /* pedantic mode - thou shalt sayeth replaceth */
1517 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1518 return err;
1519
1520 x = xfrm_state_lookup(&p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
1521 if (x == NULL)
1522 return -ESRCH;
1523
1524 if (x->km.state != XFRM_STATE_VALID)
1525 goto out;
1526
1527 spin_lock_bh(&x->lock);
Christoph Hellwig22e70052007-01-02 15:22:30 -08001528 err = xfrm_update_ae_params(x, xfrma);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001529 spin_unlock_bh(&x->lock);
1530 if (err < 0)
1531 goto out;
1532
1533 c.event = nlh->nlmsg_type;
1534 c.seq = nlh->nlmsg_seq;
1535 c.pid = nlh->nlmsg_pid;
1536 c.data.aevent = XFRM_AE_CU;
1537 km_state_notify(x, &c);
1538 err = 0;
1539out:
1540 xfrm_state_put(x);
1541 return err;
1542}
1543
Christoph Hellwig22e70052007-01-02 15:22:30 -08001544static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1545 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001547 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001548 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001549 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001550 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001551
Christoph Hellwig22e70052007-01-02 15:22:30 -08001552 err = copy_from_user_policy_type(&type, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001553 if (err)
1554 return err;
1555
Joy Latten161a09e2006-11-27 13:11:54 -06001556 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1557 audit_info.secid = NETLINK_CB(skb).sid;
Joy Latten4aa2e622007-06-04 19:05:57 -04001558 err = xfrm_policy_flush(type, &audit_info);
1559 if (err)
1560 return err;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001561 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001562 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001563 c.seq = nlh->nlmsg_seq;
1564 c.pid = nlh->nlmsg_pid;
1565 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return 0;
1567}
1568
Christoph Hellwig22e70052007-01-02 15:22:30 -08001569static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1570 struct rtattr **xfrma)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001571{
1572 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001573 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001574 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001575 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001576 int err = -ENOENT;
1577
Christoph Hellwig22e70052007-01-02 15:22:30 -08001578 err = copy_from_user_policy_type(&type, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001579 if (err)
1580 return err;
1581
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001582 if (p->index)
Eric Parisef41aaa2007-03-07 15:37:58 -08001583 xp = xfrm_policy_byid(type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001584 else {
Christoph Hellwig22e70052007-01-02 15:22:30 -08001585 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001586 struct xfrm_policy tmp;
1587
Christoph Hellwig22e70052007-01-02 15:22:30 -08001588 err = verify_sec_ctx_len(xfrma);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001589 if (err)
1590 return err;
1591
1592 memset(&tmp, 0, sizeof(struct xfrm_policy));
1593 if (rt) {
1594 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
1595
1596 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1597 return err;
1598 }
Eric Parisef41aaa2007-03-07 15:37:58 -08001599 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1600 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001601 security_xfrm_policy_free(&tmp);
1602 }
1603
1604 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001605 return -ENOENT;
1606 read_lock(&xp->lock);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001607 if (xp->dead) {
1608 read_unlock(&xp->lock);
1609 goto out;
1610 }
1611
1612 read_unlock(&xp->lock);
1613 err = 0;
1614 if (up->hard) {
1615 xfrm_policy_delete(xp, p->dir);
Joy Latten161a09e2006-11-27 13:11:54 -06001616 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1617 AUDIT_MAC_IPSEC_DELSPD, 1, xp, NULL);
1618
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001619 } else {
1620 // reset the timers here?
1621 printk("Dont know what to do with soft policy expire\n");
1622 }
1623 km_policy_expired(xp, p->dir, up->hard, current->pid);
1624
1625out:
1626 xfrm_pol_put(xp);
1627 return err;
1628}
1629
Christoph Hellwig22e70052007-01-02 15:22:30 -08001630static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1631 struct rtattr **xfrma)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001632{
1633 struct xfrm_state *x;
1634 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001635 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001636 struct xfrm_usersa_info *p = &ue->state;
1637
1638 x = xfrm_state_lookup(&p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001639
David S. Miller3a765aa2007-02-26 14:52:21 -08001640 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001641 if (x == NULL)
1642 return err;
1643
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001644 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001645 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001646 if (x->km.state != XFRM_STATE_VALID)
1647 goto out;
1648 km_state_expired(x, ue->hard, current->pid);
1649
Joy Latten161a09e2006-11-27 13:11:54 -06001650 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001651 __xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -06001652 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1653 AUDIT_MAC_IPSEC_DELSA, 1, NULL, x);
1654 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001655 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001656out:
1657 spin_unlock_bh(&x->lock);
1658 xfrm_state_put(x);
1659 return err;
1660}
1661
Christoph Hellwig22e70052007-01-02 15:22:30 -08001662static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
1663 struct rtattr **xfrma)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001664{
1665 struct xfrm_policy *xp;
1666 struct xfrm_user_tmpl *ut;
1667 int i;
1668 struct rtattr *rt = xfrma[XFRMA_TMPL-1];
1669
Thomas Graf7b67c852007-08-22 13:53:52 -07001670 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001671 struct xfrm_state *x = xfrm_state_alloc();
1672 int err = -ENOMEM;
1673
1674 if (!x)
1675 return err;
1676
1677 err = verify_newpolicy_info(&ua->policy);
1678 if (err) {
1679 printk("BAD policy passed\n");
1680 kfree(x);
1681 return err;
1682 }
1683
1684 /* build an XP */
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001685 xp = xfrm_policy_construct(&ua->policy, (struct rtattr **) xfrma, &err);
1686 if (!xp) {
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001687 kfree(x);
1688 return err;
1689 }
1690
1691 memcpy(&x->id, &ua->id, sizeof(ua->id));
1692 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
1693 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
1694
1695 ut = RTA_DATA(rt);
1696 /* extract the templates and for each call km_key */
1697 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
1698 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1699 memcpy(&x->id, &t->id, sizeof(x->id));
1700 x->props.mode = t->mode;
1701 x->props.reqid = t->reqid;
1702 x->props.family = ut->family;
1703 t->aalgos = ua->aalgos;
1704 t->ealgos = ua->ealgos;
1705 t->calgos = ua->calgos;
1706 err = km_query(x, t, xp);
1707
1708 }
1709
1710 kfree(x);
1711 kfree(xp);
1712
1713 return 0;
1714}
1715
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001716#ifdef CONFIG_XFRM_MIGRATE
1717static int verify_user_migrate(struct rtattr **xfrma)
1718{
1719 struct rtattr *rt = xfrma[XFRMA_MIGRATE-1];
1720 struct xfrm_user_migrate *um;
1721
1722 if (!rt)
1723 return -EINVAL;
1724
1725 if ((rt->rta_len - sizeof(*rt)) < sizeof(*um))
1726 return -EINVAL;
1727
1728 return 0;
1729}
1730
1731static int copy_from_user_migrate(struct xfrm_migrate *ma,
1732 struct rtattr **xfrma, int *num)
1733{
1734 struct rtattr *rt = xfrma[XFRMA_MIGRATE-1];
1735 struct xfrm_user_migrate *um;
1736 int i, num_migrate;
1737
1738 um = RTA_DATA(rt);
1739 num_migrate = (rt->rta_len - sizeof(*rt)) / sizeof(*um);
1740
1741 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
1742 return -EINVAL;
1743
1744 for (i = 0; i < num_migrate; i++, um++, ma++) {
1745 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
1746 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
1747 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
1748 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
1749
1750 ma->proto = um->proto;
1751 ma->mode = um->mode;
1752 ma->reqid = um->reqid;
1753
1754 ma->old_family = um->old_family;
1755 ma->new_family = um->new_family;
1756 }
1757
1758 *num = i;
1759 return 0;
1760}
1761
1762static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1763 struct rtattr **xfrma)
1764{
Thomas Graf7b67c852007-08-22 13:53:52 -07001765 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001766 struct xfrm_migrate m[XFRM_MAX_DEPTH];
1767 u8 type;
1768 int err;
1769 int n = 0;
1770
1771 err = verify_user_migrate((struct rtattr **)xfrma);
1772 if (err)
1773 return err;
1774
1775 err = copy_from_user_policy_type(&type, (struct rtattr **)xfrma);
1776 if (err)
1777 return err;
1778
1779 err = copy_from_user_migrate((struct xfrm_migrate *)m,
1780 (struct rtattr **)xfrma, &n);
1781 if (err)
1782 return err;
1783
1784 if (!n)
1785 return 0;
1786
1787 xfrm_migrate(&pi->sel, pi->dir, type, m, n);
1788
1789 return 0;
1790}
1791#else
1792static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1793 struct rtattr **xfrma)
1794{
1795 return -ENOPROTOOPT;
1796}
1797#endif
1798
1799#ifdef CONFIG_XFRM_MIGRATE
1800static int copy_to_user_migrate(struct xfrm_migrate *m, struct sk_buff *skb)
1801{
1802 struct xfrm_user_migrate um;
1803
1804 memset(&um, 0, sizeof(um));
1805 um.proto = m->proto;
1806 um.mode = m->mode;
1807 um.reqid = m->reqid;
1808 um.old_family = m->old_family;
1809 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
1810 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
1811 um.new_family = m->new_family;
1812 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
1813 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
1814
Thomas Grafc0144be2007-08-22 13:55:43 -07001815 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001816}
1817
1818static int build_migrate(struct sk_buff *skb, struct xfrm_migrate *m,
1819 int num_migrate, struct xfrm_selector *sel,
1820 u8 dir, u8 type)
1821{
1822 struct xfrm_migrate *mp;
1823 struct xfrm_userpolicy_id *pol_id;
1824 struct nlmsghdr *nlh;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001825 int i;
1826
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001827 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
1828 if (nlh == NULL)
1829 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001830
Thomas Graf7b67c852007-08-22 13:53:52 -07001831 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001832 /* copy data from selector, dir, and type to the pol_id */
1833 memset(pol_id, 0, sizeof(*pol_id));
1834 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
1835 pol_id->dir = dir;
1836
1837 if (copy_to_user_policy_type(type, skb) < 0)
1838 goto nlmsg_failure;
1839
1840 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
1841 if (copy_to_user_migrate(mp, skb) < 0)
1842 goto nlmsg_failure;
1843 }
1844
Thomas Graf98250692007-08-22 12:47:26 -07001845 return nlmsg_end(skb, nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001846nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001847 nlmsg_cancel(skb, nlh);
1848 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001849}
1850
1851static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1852 struct xfrm_migrate *m, int num_migrate)
1853{
1854 struct sk_buff *skb;
1855 size_t len;
1856
1857 len = RTA_SPACE(sizeof(struct xfrm_user_migrate) * num_migrate);
1858 len += NLMSG_SPACE(sizeof(struct xfrm_userpolicy_id));
1859#ifdef CONFIG_XFRM_SUB_POLICY
1860 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
1861#endif
1862 skb = alloc_skb(len, GFP_ATOMIC);
1863 if (skb == NULL)
1864 return -ENOMEM;
1865
1866 /* build migrate */
1867 if (build_migrate(skb, m, num_migrate, sel, dir, type) < 0)
1868 BUG();
1869
Thomas Graf082a1ad2007-08-22 13:54:36 -07001870 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001871}
1872#else
1873static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1874 struct xfrm_migrate *m, int num_migrate)
1875{
1876 return -ENOPROTOOPT;
1877}
1878#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001879
Thomas Graf492b5582005-05-03 14:26:40 -07001880#define XMSGSIZE(type) NLMSG_LENGTH(sizeof(struct type))
1881
1882static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
1883 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1884 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1885 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1886 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1887 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1888 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1889 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001890 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001891 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07001892 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1893 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001894 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07001895 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
1896 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = NLMSG_LENGTH(0),
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001897 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
1898 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07001899 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001900 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07001901 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = NLMSG_LENGTH(sizeof(u32)),
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001902 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = NLMSG_LENGTH(sizeof(u32)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903};
1904
Thomas Graf492b5582005-05-03 14:26:40 -07001905#undef XMSGSIZE
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907static struct xfrm_link {
Christoph Hellwig22e70052007-01-02 15:22:30 -08001908 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct rtattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 int (*dump)(struct sk_buff *, struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07001910} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
1911 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1912 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
1913 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
1914 .dump = xfrm_dump_sa },
1915 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1916 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
1917 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
1918 .dump = xfrm_dump_policy },
1919 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001920 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001921 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07001922 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1923 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001924 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07001925 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
1926 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001927 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
1928 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001929 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07001930 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001931 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932};
1933
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001934static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
1936 struct rtattr *xfrma[XFRMA_MAX];
1937 struct xfrm_link *link;
Thomas Grafc702e802007-03-22 23:30:55 -07001938 int type, min_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001942 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 type -= XFRM_MSG_BASE;
1945 link = &xfrm_dispatch[type];
1946
1947 /* All operations require privileges, even GET */
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001948 if (security_netlink_recv(skb, CAP_NET_ADMIN))
1949 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Thomas Graf492b5582005-05-03 14:26:40 -07001951 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
1952 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
1953 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001955 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Thomas Grafc702e802007-03-22 23:30:55 -07001957 return netlink_dump_start(xfrm_nl, skb, nlh, link->dump, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
1959
1960 memset(xfrma, 0, sizeof(xfrma));
1961
1962 if (nlh->nlmsg_len < (min_len = xfrm_msg_min[type]))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001963 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 if (nlh->nlmsg_len > min_len) {
1966 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
1967 struct rtattr *attr = (void *) nlh + NLMSG_ALIGN(min_len);
1968
1969 while (RTA_OK(attr, attrlen)) {
1970 unsigned short flavor = attr->rta_type;
1971 if (flavor) {
1972 if (flavor > XFRMA_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001973 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 xfrma[flavor - 1] = attr;
1975 }
1976 attr = RTA_NEXT(attr, attrlen);
1977 }
1978 }
1979
1980 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001981 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001983 return link->doit(skb, nlh, xfrma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986static void xfrm_netlink_rcv(struct sock *sk, int len)
1987{
Thomas Graf88fc2c82005-11-10 02:25:54 +01001988 unsigned int qlen = 0;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -07001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 do {
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001991 mutex_lock(&xfrm_cfg_mutex);
Thomas Graf88fc2c82005-11-10 02:25:54 +01001992 netlink_run_queue(sk, &qlen, &xfrm_user_rcv_msg);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08001993 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Herbert Xu2a0a6eb2005-05-03 14:55:09 -07001995 } while (qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001998static int build_expire(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
2000 struct xfrm_user_expire *ue;
2001 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002003 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2004 if (nlh == NULL)
2005 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Thomas Graf7b67c852007-08-22 13:53:52 -07002007 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002009 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Thomas Graf98250692007-08-22 12:47:26 -07002011 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002014static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 struct sk_buff *skb;
Jamal Hadi Salimee57eef2005-06-18 22:45:56 -07002017 int len = NLMSG_LENGTH(sizeof(struct xfrm_user_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Jamal Hadi Salimee57eef2005-06-18 22:45:56 -07002019 skb = alloc_skb(len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 if (skb == NULL)
2021 return -ENOMEM;
2022
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002023 if (build_expire(skb, x, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 BUG();
2025
Thomas Graf082a1ad2007-08-22 13:54:36 -07002026 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
2028
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002029static int xfrm_aevent_state_notify(struct xfrm_state *x, struct km_event *c)
2030{
2031 struct sk_buff *skb;
2032 int len = NLMSG_LENGTH(sizeof(struct xfrm_aevent_id));
2033
2034 len += RTA_SPACE(sizeof(struct xfrm_replay_state));
2035 len += RTA_SPACE(sizeof(struct xfrm_lifetime_cur));
2036 skb = alloc_skb(len, GFP_ATOMIC);
2037 if (skb == NULL)
2038 return -ENOMEM;
2039
2040 if (build_aevent(skb, x, c) < 0)
2041 BUG();
2042
Thomas Graf082a1ad2007-08-22 13:54:36 -07002043 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002044}
2045
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002046static int xfrm_notify_sa_flush(struct km_event *c)
2047{
2048 struct xfrm_usersa_flush *p;
2049 struct nlmsghdr *nlh;
2050 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002051 int len = NLMSG_LENGTH(sizeof(struct xfrm_usersa_flush));
2052
2053 skb = alloc_skb(len, GFP_ATOMIC);
2054 if (skb == NULL)
2055 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002056
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002057 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2058 if (nlh == NULL) {
2059 kfree_skb(skb);
2060 return -EMSGSIZE;
2061 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002062
Thomas Graf7b67c852007-08-22 13:53:52 -07002063 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002064 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002065
Thomas Graf98250692007-08-22 12:47:26 -07002066 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002067
Thomas Graf082a1ad2007-08-22 13:54:36 -07002068 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002069}
2070
Dave Jonesb6f99a22007-03-22 12:27:49 -07002071static inline int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002072{
Herbert Xu0603eac2005-06-18 22:54:36 -07002073 int l = 0;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002074 if (x->aalg)
2075 l += RTA_SPACE(sizeof(*x->aalg) + (x->aalg->alg_key_len+7)/8);
2076 if (x->ealg)
2077 l += RTA_SPACE(sizeof(*x->ealg) + (x->ealg->alg_key_len+7)/8);
2078 if (x->calg)
2079 l += RTA_SPACE(sizeof(*x->calg));
2080 if (x->encap)
2081 l += RTA_SPACE(sizeof(*x->encap));
2082
2083 return l;
2084}
2085
2086static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
2087{
2088 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002089 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002090 struct nlmsghdr *nlh;
2091 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002092 int len = xfrm_sa_len(x);
Herbert Xu0603eac2005-06-18 22:54:36 -07002093 int headlen;
2094
2095 headlen = sizeof(*p);
2096 if (c->event == XFRM_MSG_DELSA) {
2097 len += RTA_SPACE(headlen);
2098 headlen = sizeof(*id);
2099 }
2100 len += NLMSG_SPACE(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002101
2102 skb = alloc_skb(len, GFP_ATOMIC);
2103 if (skb == NULL)
2104 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002105
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002106 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2107 if (nlh == NULL)
Thomas Grafc0144be2007-08-22 13:55:43 -07002108 goto nla_put_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002109
Thomas Graf7b67c852007-08-22 13:53:52 -07002110 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002111 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002112 struct nlattr *attr;
2113
Thomas Graf7b67c852007-08-22 13:53:52 -07002114 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002115 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2116 id->spi = x->id.spi;
2117 id->family = x->props.family;
2118 id->proto = x->id.proto;
2119
Thomas Grafc0144be2007-08-22 13:55:43 -07002120 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
2121 if (attr == NULL)
2122 goto nla_put_failure;
2123
2124 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002125 }
2126
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002127 copy_to_user_state(x, p);
2128
2129 if (x->aalg)
Thomas Grafc0144be2007-08-22 13:55:43 -07002130 NLA_PUT(skb, XFRMA_ALG_AUTH,
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002131 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
2132 if (x->ealg)
Thomas Grafc0144be2007-08-22 13:55:43 -07002133 NLA_PUT(skb, XFRMA_ALG_CRYPT,
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002134 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
2135 if (x->calg)
Thomas Grafc0144be2007-08-22 13:55:43 -07002136 NLA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002137
2138 if (x->encap)
Thomas Grafc0144be2007-08-22 13:55:43 -07002139 NLA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002140
Thomas Graf98250692007-08-22 12:47:26 -07002141 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002142
Thomas Graf082a1ad2007-08-22 13:54:36 -07002143 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002144
Thomas Grafc0144be2007-08-22 13:55:43 -07002145nla_put_failure:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002146 kfree_skb(skb);
2147 return -1;
2148}
2149
2150static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
2151{
2152
2153 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002154 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002155 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002156 case XFRM_MSG_NEWAE:
2157 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002158 case XFRM_MSG_DELSA:
2159 case XFRM_MSG_UPDSA:
2160 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002161 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002162 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002163 return xfrm_notify_sa_flush(c);
2164 default:
2165 printk("xfrm_user: Unknown SA event %d\n", c->event);
2166 break;
2167 }
2168
2169 return 0;
2170
2171}
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2174 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2175 int dir)
2176{
2177 struct xfrm_user_acquire *ua;
2178 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 __u32 seq = xfrm_get_acqseq();
2180
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002181 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2182 if (nlh == NULL)
2183 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Thomas Graf7b67c852007-08-22 13:53:52 -07002185 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 memcpy(&ua->id, &x->id, sizeof(ua->id));
2187 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2188 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2189 copy_to_user_policy(xp, &ua->policy, dir);
2190 ua->aalgos = xt->aalgos;
2191 ua->ealgos = xt->ealgos;
2192 ua->calgos = xt->calgos;
2193 ua->seq = x->km.seq = seq;
2194
2195 if (copy_to_user_tmpl(xp, skb) < 0)
2196 goto nlmsg_failure;
Serge Hallyn0d681622006-07-24 23:30:44 -07002197 if (copy_to_user_state_sec_ctx(x, skb))
Trent Jaegerdf718372005-12-13 23:12:27 -08002198 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002199 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002200 goto nlmsg_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Thomas Graf98250692007-08-22 12:47:26 -07002202 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
2204nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002205 nlmsg_cancel(skb, nlh);
2206 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207}
2208
2209static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2210 struct xfrm_policy *xp, int dir)
2211{
2212 struct sk_buff *skb;
2213 size_t len;
2214
2215 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2216 len += NLMSG_SPACE(sizeof(struct xfrm_user_acquire));
Joy Latten661697f2007-04-13 16:14:35 -07002217 len += RTA_SPACE(xfrm_user_sec_ctx_size(x->security));
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002218#ifdef CONFIG_XFRM_SUB_POLICY
2219 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 skb = alloc_skb(len, GFP_ATOMIC);
2222 if (skb == NULL)
2223 return -ENOMEM;
2224
2225 if (build_acquire(skb, x, xt, xp, dir) < 0)
2226 BUG();
2227
Thomas Graf082a1ad2007-08-22 13:54:36 -07002228 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229}
2230
2231/* User gives us xfrm_user_policy_info followed by an array of 0
2232 * or more templates.
2233 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002234static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 u8 *data, int len, int *dir)
2236{
2237 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2238 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2239 struct xfrm_policy *xp;
2240 int nr;
2241
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002242 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 case AF_INET:
2244 if (opt != IP_XFRM_POLICY) {
2245 *dir = -EOPNOTSUPP;
2246 return NULL;
2247 }
2248 break;
2249#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2250 case AF_INET6:
2251 if (opt != IPV6_XFRM_POLICY) {
2252 *dir = -EOPNOTSUPP;
2253 return NULL;
2254 }
2255 break;
2256#endif
2257 default:
2258 *dir = -EINVAL;
2259 return NULL;
2260 }
2261
2262 *dir = -EINVAL;
2263
2264 if (len < sizeof(*p) ||
2265 verify_newpolicy_info(p))
2266 return NULL;
2267
2268 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002269 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return NULL;
2271
Herbert Xua4f1bac2005-07-26 15:43:17 -07002272 if (p->dir > XFRM_POLICY_OUT)
2273 return NULL;
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 xp = xfrm_policy_alloc(GFP_KERNEL);
2276 if (xp == NULL) {
2277 *dir = -ENOBUFS;
2278 return NULL;
2279 }
2280
2281 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002282 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 copy_templates(xp, ut, nr);
2284
2285 *dir = p->dir;
2286
2287 return xp;
2288}
2289
2290static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002291 int dir, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 struct xfrm_user_polexpire *upe;
2294 struct nlmsghdr *nlh;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002295 int hard = c->data.hard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002297 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2298 if (nlh == NULL)
2299 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Thomas Graf7b67c852007-08-22 13:53:52 -07002301 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 copy_to_user_policy(xp, &upe->pol, dir);
2303 if (copy_to_user_tmpl(xp, skb) < 0)
2304 goto nlmsg_failure;
Trent Jaegerdf718372005-12-13 23:12:27 -08002305 if (copy_to_user_sec_ctx(xp, skb))
2306 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002307 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002308 goto nlmsg_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 upe->hard = !!hard;
2310
Thomas Graf98250692007-08-22 12:47:26 -07002311 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
2313nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002314 nlmsg_cancel(skb, nlh);
2315 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002318static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
2320 struct sk_buff *skb;
2321 size_t len;
2322
2323 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2324 len += NLMSG_SPACE(sizeof(struct xfrm_user_polexpire));
Joy Latten661697f2007-04-13 16:14:35 -07002325 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp->security));
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002326#ifdef CONFIG_XFRM_SUB_POLICY
2327 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2328#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 skb = alloc_skb(len, GFP_ATOMIC);
2330 if (skb == NULL)
2331 return -ENOMEM;
2332
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002333 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 BUG();
2335
Thomas Graf082a1ad2007-08-22 13:54:36 -07002336 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337}
2338
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002339static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
2340{
2341 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002342 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002343 struct nlmsghdr *nlh;
2344 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002345 int len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002346 int headlen;
2347
2348 headlen = sizeof(*p);
2349 if (c->event == XFRM_MSG_DELPOLICY) {
2350 len += RTA_SPACE(headlen);
2351 headlen = sizeof(*id);
2352 }
Jamal Hadi Salim334f3d42006-11-19 14:53:07 -08002353#ifdef CONFIG_XFRM_SUB_POLICY
2354 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2355#endif
Herbert Xu0603eac2005-06-18 22:54:36 -07002356 len += NLMSG_SPACE(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002357
2358 skb = alloc_skb(len, GFP_ATOMIC);
2359 if (skb == NULL)
2360 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002361
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002362 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2363 if (nlh == NULL)
2364 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002365
Thomas Graf7b67c852007-08-22 13:53:52 -07002366 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002367 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002368 struct nlattr *attr;
2369
Thomas Graf7b67c852007-08-22 13:53:52 -07002370 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002371 memset(id, 0, sizeof(*id));
2372 id->dir = dir;
2373 if (c->data.byid)
2374 id->index = xp->index;
2375 else
2376 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2377
Thomas Grafc0144be2007-08-22 13:55:43 -07002378 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
2379 if (attr == NULL)
2380 goto nlmsg_failure;
2381
2382 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002383 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002384
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002385 copy_to_user_policy(xp, p, dir);
2386 if (copy_to_user_tmpl(xp, skb) < 0)
2387 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002388 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002389 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002390
Thomas Graf98250692007-08-22 12:47:26 -07002391 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002392
Thomas Graf082a1ad2007-08-22 13:54:36 -07002393 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002394
2395nlmsg_failure:
2396 kfree_skb(skb);
2397 return -1;
2398}
2399
2400static int xfrm_notify_policy_flush(struct km_event *c)
2401{
2402 struct nlmsghdr *nlh;
2403 struct sk_buff *skb;
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002404 int len = 0;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002405#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002406 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002407#endif
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002408 len += NLMSG_LENGTH(0);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002409
2410 skb = alloc_skb(len, GFP_ATOMIC);
2411 if (skb == NULL)
2412 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002413
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002414 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
2415 if (nlh == NULL)
2416 goto nlmsg_failure;
Jamal Hadi Salim0c51f532006-11-27 12:58:20 -08002417 if (copy_to_user_policy_type(c->data.type, skb) < 0)
2418 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002419
Thomas Graf98250692007-08-22 12:47:26 -07002420 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002421
Thomas Graf082a1ad2007-08-22 13:54:36 -07002422 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002423
2424nlmsg_failure:
2425 kfree_skb(skb);
2426 return -1;
2427}
2428
2429static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2430{
2431
2432 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002433 case XFRM_MSG_NEWPOLICY:
2434 case XFRM_MSG_UPDPOLICY:
2435 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002436 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002437 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002438 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002439 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002440 return xfrm_exp_policy_notify(xp, dir, c);
2441 default:
2442 printk("xfrm_user: Unknown Policy event %d\n", c->event);
2443 }
2444
2445 return 0;
2446
2447}
2448
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002449static int build_report(struct sk_buff *skb, u8 proto,
2450 struct xfrm_selector *sel, xfrm_address_t *addr)
2451{
2452 struct xfrm_user_report *ur;
2453 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002454
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002455 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2456 if (nlh == NULL)
2457 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002458
Thomas Graf7b67c852007-08-22 13:53:52 -07002459 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002460 ur->proto = proto;
2461 memcpy(&ur->sel, sel, sizeof(ur->sel));
2462
2463 if (addr)
Thomas Grafc0144be2007-08-22 13:55:43 -07002464 NLA_PUT(skb, XFRMA_COADDR, sizeof(*addr), addr);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002465
Thomas Graf98250692007-08-22 12:47:26 -07002466 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002467
Thomas Grafc0144be2007-08-22 13:55:43 -07002468nla_put_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002469 nlmsg_cancel(skb, nlh);
2470 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002471}
2472
2473static int xfrm_send_report(u8 proto, struct xfrm_selector *sel,
2474 xfrm_address_t *addr)
2475{
2476 struct sk_buff *skb;
2477 size_t len;
2478
2479 len = NLMSG_ALIGN(NLMSG_LENGTH(sizeof(struct xfrm_user_report)));
2480 skb = alloc_skb(len, GFP_ATOMIC);
2481 if (skb == NULL)
2482 return -ENOMEM;
2483
2484 if (build_report(skb, proto, sel, addr) < 0)
2485 BUG();
2486
Thomas Graf082a1ad2007-08-22 13:54:36 -07002487 return nlmsg_multicast(xfrm_nl, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002488}
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490static struct xfrm_mgr netlink_mgr = {
2491 .id = "netlink",
2492 .notify = xfrm_send_state_notify,
2493 .acquire = xfrm_send_acquire,
2494 .compile_policy = xfrm_compile_policy,
2495 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002496 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002497 .migrate = xfrm_send_migrate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498};
2499
2500static int __init xfrm_user_init(void)
2501{
Patrick McHardybe336902006-03-20 22:40:54 -08002502 struct sock *nlsk;
2503
Masahide NAKAMURA654b32c2006-08-23 19:12:56 -07002504 printk(KERN_INFO "Initializing XFRM netlink socket\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Patrick McHardybe336902006-03-20 22:40:54 -08002506 nlsk = netlink_kernel_create(NETLINK_XFRM, XFRMNLGRP_MAX,
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002507 xfrm_netlink_rcv, NULL, THIS_MODULE);
Patrick McHardybe336902006-03-20 22:40:54 -08002508 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return -ENOMEM;
Patrick McHardybe336902006-03-20 22:40:54 -08002510 rcu_assign_pointer(xfrm_nl, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512 xfrm_register_km(&netlink_mgr);
2513
2514 return 0;
2515}
2516
2517static void __exit xfrm_user_exit(void)
2518{
Patrick McHardybe336902006-03-20 22:40:54 -08002519 struct sock *nlsk = xfrm_nl;
2520
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 xfrm_unregister_km(&netlink_mgr);
Patrick McHardybe336902006-03-20 22:40:54 -08002522 rcu_assign_pointer(xfrm_nl, NULL);
2523 synchronize_rcu();
2524 sock_release(nlsk->sk_socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
2527module_init(xfrm_user_init);
2528module_exit(xfrm_user_exit);
2529MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002530MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08002531