blob: c9bb7210eb69bcaefbb41c44717d83cdfaf515d3 [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
579static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
580{
581 struct xfrm_dump_info *sp = ptr;
582 struct sk_buff *in_skb = sp->in_skb;
583 struct sk_buff *skb = sp->out_skb;
584 struct xfrm_usersa_info *p;
585 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 if (sp->this_idx < sp->start_idx)
588 goto out;
589
Thomas Graf79b8b7f2007-08-22 12:46:53 -0700590 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
591 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
592 if (nlh == NULL)
593 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Thomas Graf7b67c852007-08-22 13:53:52 -0700595 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 copy_to_user_state(x, p);
597
598 if (x->aalg)
599 RTA_PUT(skb, XFRMA_ALG_AUTH,
600 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
601 if (x->ealg)
602 RTA_PUT(skb, XFRMA_ALG_CRYPT,
603 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
604 if (x->calg)
605 RTA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
606
607 if (x->encap)
608 RTA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
609
Trent Jaegerdf718372005-12-13 23:12:27 -0800610 if (x->security) {
611 int ctx_size = sizeof(struct xfrm_sec_ctx) +
612 x->security->ctx_len;
613 struct rtattr *rt = __RTA_PUT(skb, XFRMA_SEC_CTX, ctx_size);
614 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
615
616 uctx->exttype = XFRMA_SEC_CTX;
617 uctx->len = ctx_size;
618 uctx->ctx_doi = x->security->ctx_doi;
619 uctx->ctx_alg = x->security->ctx_alg;
620 uctx->ctx_len = x->security->ctx_len;
621 memcpy(uctx + 1, x->security->ctx_str, x->security->ctx_len);
622 }
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700623
624 if (x->coaddr)
625 RTA_PUT(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
626
Masahide NAKAMURA9afaca02006-08-23 18:20:16 -0700627 if (x->lastused)
628 RTA_PUT(skb, XFRMA_LASTUSED, sizeof(x->lastused), &x->lastused);
629
Thomas Graf98250692007-08-22 12:47:26 -0700630 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631out:
632 sp->this_idx++;
633 return 0;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635rtattr_failure:
Thomas Graf98250692007-08-22 12:47:26 -0700636 nlmsg_cancel(skb, nlh);
637 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
641{
642 struct xfrm_dump_info info;
643
644 info.in_skb = cb->skb;
645 info.out_skb = skb;
646 info.nlmsg_seq = cb->nlh->nlmsg_seq;
647 info.nlmsg_flags = NLM_F_MULTI;
648 info.this_idx = 0;
649 info.start_idx = cb->args[0];
Masahide NAKAMURAdc00a522006-08-23 17:49:52 -0700650 (void) xfrm_state_walk(0, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 cb->args[0] = info.this_idx;
652
653 return skb->len;
654}
655
656static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
657 struct xfrm_state *x, u32 seq)
658{
659 struct xfrm_dump_info info;
660 struct sk_buff *skb;
661
662 skb = alloc_skb(NLMSG_GOODSIZE, GFP_ATOMIC);
663 if (!skb)
664 return ERR_PTR(-ENOMEM);
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 info.in_skb = in_skb;
667 info.out_skb = skb;
668 info.nlmsg_seq = seq;
669 info.nlmsg_flags = 0;
670 info.this_idx = info.start_idx = 0;
671
672 if (dump_one_state(x, 0, &info)) {
673 kfree_skb(skb);
674 return NULL;
675 }
676
677 return skb;
678}
679
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700680static int build_spdinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
681{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700682 struct xfrmk_spdinfo si;
683 struct xfrmu_spdinfo spc;
684 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700685 struct nlmsghdr *nlh;
686 u32 *f;
687
688 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
689 if (nlh == NULL) /* shouldnt really happen ... */
690 return -EMSGSIZE;
691
692 f = nlmsg_data(nlh);
693 *f = flags;
694 xfrm_spd_getinfo(&si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700695 spc.incnt = si.incnt;
696 spc.outcnt = si.outcnt;
697 spc.fwdcnt = si.fwdcnt;
698 spc.inscnt = si.inscnt;
699 spc.outscnt = si.outscnt;
700 spc.fwdscnt = si.fwdscnt;
701 sph.spdhcnt = si.spdhcnt;
702 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700703
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700704 NLA_PUT(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
705 NLA_PUT(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700706
707 return nlmsg_end(skb, nlh);
708
709nla_put_failure:
710 nlmsg_cancel(skb, nlh);
711 return -EMSGSIZE;
712}
713
714static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
715 struct rtattr **xfrma)
716{
717 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700718 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700719 u32 spid = NETLINK_CB(skb).pid;
720 u32 seq = nlh->nlmsg_seq;
721 int len = NLMSG_LENGTH(sizeof(u32));
722
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700723 len += RTA_SPACE(sizeof(struct xfrmu_spdinfo));
724 len += RTA_SPACE(sizeof(struct xfrmu_spdhinfo));
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700725
726 r_skb = alloc_skb(len, GFP_ATOMIC);
727 if (r_skb == NULL)
728 return -ENOMEM;
729
730 if (build_spdinfo(r_skb, spid, seq, *flags) < 0)
731 BUG();
732
733 return nlmsg_unicast(xfrm_nl, r_skb, spid);
734}
735
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700736static int build_sadinfo(struct sk_buff *skb, u32 pid, u32 seq, u32 flags)
737{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700738 struct xfrmk_sadinfo si;
739 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700740 struct nlmsghdr *nlh;
741 u32 *f;
742
743 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
744 if (nlh == NULL) /* shouldnt really happen ... */
745 return -EMSGSIZE;
746
747 f = nlmsg_data(nlh);
748 *f = flags;
749 xfrm_sad_getinfo(&si);
750
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700751 sh.sadhmcnt = si.sadhmcnt;
752 sh.sadhcnt = si.sadhcnt;
753
754 NLA_PUT_U32(skb, XFRMA_SAD_CNT, si.sadcnt);
755 NLA_PUT(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700756
757 return nlmsg_end(skb, nlh);
758
759nla_put_failure:
760 nlmsg_cancel(skb, nlh);
761 return -EMSGSIZE;
762}
763
764static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
765 struct rtattr **xfrma)
766{
767 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700768 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700769 u32 spid = NETLINK_CB(skb).pid;
770 u32 seq = nlh->nlmsg_seq;
771 int len = NLMSG_LENGTH(sizeof(u32));
772
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700773 len += RTA_SPACE(sizeof(struct xfrmu_sadhinfo));
774 len += RTA_SPACE(sizeof(u32));
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700775
776 r_skb = alloc_skb(len, GFP_ATOMIC);
777
778 if (r_skb == NULL)
779 return -ENOMEM;
780
781 if (build_sadinfo(r_skb, spid, seq, *flags) < 0)
782 BUG();
783
784 return nlmsg_unicast(xfrm_nl, r_skb, spid);
785}
786
Christoph Hellwig22e70052007-01-02 15:22:30 -0800787static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
788 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Thomas Graf7b67c852007-08-22 13:53:52 -0700790 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 struct xfrm_state *x;
792 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700793 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Christoph Hellwig22e70052007-01-02 15:22:30 -0800795 x = xfrm_user_state_lookup(p, xfrma, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (x == NULL)
797 goto out_noput;
798
799 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
800 if (IS_ERR(resp_skb)) {
801 err = PTR_ERR(resp_skb);
802 } else {
803 err = netlink_unicast(xfrm_nl, resp_skb,
804 NETLINK_CB(skb).pid, MSG_DONTWAIT);
805 }
806 xfrm_state_put(x);
807out_noput:
808 return err;
809}
810
811static int verify_userspi_info(struct xfrm_userspi_info *p)
812{
813 switch (p->info.id.proto) {
814 case IPPROTO_AH:
815 case IPPROTO_ESP:
816 break;
817
818 case IPPROTO_COMP:
819 /* IPCOMP spi is 16-bits. */
820 if (p->max >= 0x10000)
821 return -EINVAL;
822 break;
823
824 default:
825 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700826 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 if (p->min > p->max)
829 return -EINVAL;
830
831 return 0;
832}
833
Christoph Hellwig22e70052007-01-02 15:22:30 -0800834static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
835 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
837 struct xfrm_state *x;
838 struct xfrm_userspi_info *p;
839 struct sk_buff *resp_skb;
840 xfrm_address_t *daddr;
841 int family;
842 int err;
843
Thomas Graf7b67c852007-08-22 13:53:52 -0700844 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 err = verify_userspi_info(p);
846 if (err)
847 goto out_noput;
848
849 family = p->info.family;
850 daddr = &p->info.id.daddr;
851
852 x = NULL;
853 if (p->info.seq) {
854 x = xfrm_find_acq_byseq(p->info.seq);
855 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
856 xfrm_state_put(x);
857 x = NULL;
858 }
859 }
860
861 if (!x)
862 x = xfrm_find_acq(p->info.mode, p->info.reqid,
863 p->info.id.proto, daddr,
864 &p->info.saddr, 1,
865 family);
866 err = -ENOENT;
867 if (x == NULL)
868 goto out_noput;
869
870 resp_skb = ERR_PTR(-ENOENT);
871
872 spin_lock_bh(&x->lock);
873 if (x->km.state != XFRM_STATE_DEAD) {
874 xfrm_alloc_spi(x, htonl(p->min), htonl(p->max));
875 if (x->id.spi)
876 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
877 }
878 spin_unlock_bh(&x->lock);
879
880 if (IS_ERR(resp_skb)) {
881 err = PTR_ERR(resp_skb);
882 goto out;
883 }
884
885 err = netlink_unicast(xfrm_nl, resp_skb,
886 NETLINK_CB(skb).pid, MSG_DONTWAIT);
887
888out:
889 xfrm_state_put(x);
890out_noput:
891 return err;
892}
893
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -0800894static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 switch (dir) {
897 case XFRM_POLICY_IN:
898 case XFRM_POLICY_OUT:
899 case XFRM_POLICY_FWD:
900 break;
901
902 default:
903 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 return 0;
907}
908
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -0800909static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -0700910{
911 switch (type) {
912 case XFRM_POLICY_TYPE_MAIN:
913#ifdef CONFIG_XFRM_SUB_POLICY
914 case XFRM_POLICY_TYPE_SUB:
915#endif
916 break;
917
918 default:
919 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700920 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -0700921
922 return 0;
923}
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
926{
927 switch (p->share) {
928 case XFRM_SHARE_ANY:
929 case XFRM_SHARE_SESSION:
930 case XFRM_SHARE_USER:
931 case XFRM_SHARE_UNIQUE:
932 break;
933
934 default:
935 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 switch (p->action) {
939 case XFRM_POLICY_ALLOW:
940 case XFRM_POLICY_BLOCK:
941 break;
942
943 default:
944 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 switch (p->sel.family) {
948 case AF_INET:
949 break;
950
951 case AF_INET6:
952#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
953 break;
954#else
955 return -EAFNOSUPPORT;
956#endif
957
958 default:
959 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 return verify_policy_dir(p->dir);
963}
964
Trent Jaegerdf718372005-12-13 23:12:27 -0800965static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct rtattr **xfrma)
966{
967 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
968 struct xfrm_user_sec_ctx *uctx;
969
970 if (!rt)
971 return 0;
972
973 uctx = RTA_DATA(rt);
974 return security_xfrm_policy_alloc(pol, uctx);
975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
978 int nr)
979{
980 int i;
981
982 xp->xfrm_nr = nr;
983 for (i = 0; i < nr; i++, ut++) {
984 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
985
986 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
987 memcpy(&t->saddr, &ut->saddr,
988 sizeof(xfrm_address_t));
989 t->reqid = ut->reqid;
990 t->mode = ut->mode;
991 t->share = ut->share;
992 t->optional = ut->optional;
993 t->aalgos = ut->aalgos;
994 t->ealgos = ut->ealgos;
995 t->calgos = ut->calgos;
Miika Komu8511d012006-11-30 16:40:51 -0800996 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998}
999
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001000static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1001{
1002 int i;
1003
1004 if (nr > XFRM_MAX_DEPTH)
1005 return -EINVAL;
1006
1007 for (i = 0; i < nr; i++) {
1008 /* We never validated the ut->family value, so many
1009 * applications simply leave it at zero. The check was
1010 * never made and ut->family was ignored because all
1011 * templates could be assumed to have the same family as
1012 * the policy itself. Now that we will have ipv4-in-ipv6
1013 * and ipv6-in-ipv4 tunnels, this is no longer true.
1014 */
1015 if (!ut[i].family)
1016 ut[i].family = family;
1017
1018 switch (ut[i].family) {
1019 case AF_INET:
1020 break;
1021#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
1022 case AF_INET6:
1023 break;
1024#endif
1025 default:
1026 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001027 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001028 }
1029
1030 return 0;
1031}
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033static int copy_from_user_tmpl(struct xfrm_policy *pol, struct rtattr **xfrma)
1034{
1035 struct rtattr *rt = xfrma[XFRMA_TMPL-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (!rt) {
1038 pol->xfrm_nr = 0;
1039 } else {
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001040 struct xfrm_user_tmpl *utmpl = RTA_DATA(rt);
1041 int nr = (rt->rta_len - sizeof(*rt)) / sizeof(*utmpl);
1042 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001044 err = validate_tmpl(nr, utmpl, pol->family);
1045 if (err)
1046 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 copy_templates(pol, RTA_DATA(rt), nr);
1049 }
1050 return 0;
1051}
1052
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001053static int copy_from_user_policy_type(u8 *tp, struct rtattr **xfrma)
1054{
1055 struct rtattr *rt = xfrma[XFRMA_POLICY_TYPE-1];
1056 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001057 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001058 int err;
1059
1060 if (rt) {
1061 if (rt->rta_len < sizeof(*upt))
1062 return -EINVAL;
1063
1064 upt = RTA_DATA(rt);
1065 type = upt->type;
1066 }
1067
1068 err = verify_policy_type(type);
1069 if (err)
1070 return err;
1071
1072 *tp = type;
1073 return 0;
1074}
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1077{
1078 xp->priority = p->priority;
1079 xp->index = p->index;
1080 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1081 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1082 xp->action = p->action;
1083 xp->flags = p->flags;
1084 xp->family = p->sel.family;
1085 /* XXX xp->share = p->share; */
1086}
1087
1088static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1089{
1090 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1091 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1092 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1093 p->priority = xp->priority;
1094 p->index = xp->index;
1095 p->sel.family = xp->family;
1096 p->dir = dir;
1097 p->action = xp->action;
1098 p->flags = xp->flags;
1099 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1100}
1101
1102static struct xfrm_policy *xfrm_policy_construct(struct xfrm_userpolicy_info *p, struct rtattr **xfrma, int *errp)
1103{
1104 struct xfrm_policy *xp = xfrm_policy_alloc(GFP_KERNEL);
1105 int err;
1106
1107 if (!xp) {
1108 *errp = -ENOMEM;
1109 return NULL;
1110 }
1111
1112 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001113
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001114 err = copy_from_user_policy_type(&xp->type, xfrma);
1115 if (err)
1116 goto error;
1117
Trent Jaegerdf718372005-12-13 23:12:27 -08001118 if (!(err = copy_from_user_tmpl(xp, xfrma)))
1119 err = copy_from_user_sec_ctx(xp, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001120 if (err)
1121 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001124 error:
1125 *errp = err;
1126 kfree(xp);
1127 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
Christoph Hellwig22e70052007-01-02 15:22:30 -08001130static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1131 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Thomas Graf7b67c852007-08-22 13:53:52 -07001133 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001135 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 int err;
1137 int excl;
1138
1139 err = verify_newpolicy_info(p);
1140 if (err)
1141 return err;
Christoph Hellwig22e70052007-01-02 15:22:30 -08001142 err = verify_sec_ctx_len(xfrma);
Trent Jaegerdf718372005-12-13 23:12:27 -08001143 if (err)
1144 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Christoph Hellwig22e70052007-01-02 15:22:30 -08001146 xp = xfrm_policy_construct(p, xfrma, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (!xp)
1148 return err;
1149
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001150 /* shouldnt excl be based on nlh flags??
1151 * Aha! this is anti-netlink really i.e more pfkey derived
1152 * in netlink excl is a flag and you wouldnt need
1153 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1155 err = xfrm_policy_insert(p->dir, xp, excl);
Joy Latten161a09e2006-11-27 13:11:54 -06001156 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1157 AUDIT_MAC_IPSEC_DELSPD, err ? 0 : 1, xp, NULL);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (err) {
Trent Jaeger5f8ac642006-01-06 13:22:39 -08001160 security_xfrm_policy_free(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 kfree(xp);
1162 return err;
1163 }
1164
Herbert Xuf60f6b82005-06-18 22:44:37 -07001165 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001166 c.seq = nlh->nlmsg_seq;
1167 c.pid = nlh->nlmsg_pid;
1168 km_policy_notify(xp, p->dir, &c);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 xfrm_pol_put(xp);
1171
1172 return 0;
1173}
1174
1175static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1176{
1177 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1178 int i;
1179
1180 if (xp->xfrm_nr == 0)
1181 return 0;
1182
1183 for (i = 0; i < xp->xfrm_nr; i++) {
1184 struct xfrm_user_tmpl *up = &vec[i];
1185 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1186
1187 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001188 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1190 up->reqid = kp->reqid;
1191 up->mode = kp->mode;
1192 up->share = kp->share;
1193 up->optional = kp->optional;
1194 up->aalgos = kp->aalgos;
1195 up->ealgos = kp->ealgos;
1196 up->calgos = kp->calgos;
1197 }
1198 RTA_PUT(skb, XFRMA_TMPL,
1199 (sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr),
1200 vec);
1201
1202 return 0;
1203
1204rtattr_failure:
1205 return -1;
1206}
1207
Serge Hallyn0d681622006-07-24 23:30:44 -07001208static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
Trent Jaegerdf718372005-12-13 23:12:27 -08001209{
Serge Hallyn0d681622006-07-24 23:30:44 -07001210 int ctx_size = sizeof(struct xfrm_sec_ctx) + s->ctx_len;
1211 struct rtattr *rt = __RTA_PUT(skb, XFRMA_SEC_CTX, ctx_size);
1212 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001213
Serge Hallyn0d681622006-07-24 23:30:44 -07001214 uctx->exttype = XFRMA_SEC_CTX;
1215 uctx->len = ctx_size;
1216 uctx->ctx_doi = s->ctx_doi;
1217 uctx->ctx_alg = s->ctx_alg;
1218 uctx->ctx_len = s->ctx_len;
1219 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
YOSHIFUJI Hideakia716c112007-02-09 23:25:29 +09001220 return 0;
Trent Jaegerdf718372005-12-13 23:12:27 -08001221
1222 rtattr_failure:
1223 return -1;
1224}
1225
Serge Hallyn0d681622006-07-24 23:30:44 -07001226static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1227{
1228 if (x->security) {
1229 return copy_sec_ctx(x->security, skb);
1230 }
1231 return 0;
1232}
1233
1234static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1235{
1236 if (xp->security) {
1237 return copy_sec_ctx(xp->security, skb);
1238 }
1239 return 0;
1240}
1241
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001242#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001243static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001244{
1245 struct xfrm_userpolicy_type upt;
1246
1247 memset(&upt, 0, sizeof(upt));
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08001248 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001249
1250 RTA_PUT(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
1251
1252 return 0;
1253
1254rtattr_failure:
1255 return -1;
1256}
1257
1258#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001259static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001260{
1261 return 0;
1262}
1263#endif
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1266{
1267 struct xfrm_dump_info *sp = ptr;
1268 struct xfrm_userpolicy_info *p;
1269 struct sk_buff *in_skb = sp->in_skb;
1270 struct sk_buff *skb = sp->out_skb;
1271 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (sp->this_idx < sp->start_idx)
1274 goto out;
1275
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001276 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1277 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1278 if (nlh == NULL)
1279 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Thomas Graf7b67c852007-08-22 13:53:52 -07001281 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 copy_to_user_policy(xp, p, dir);
1283 if (copy_to_user_tmpl(xp, skb) < 0)
1284 goto nlmsg_failure;
Trent Jaegerdf718372005-12-13 23:12:27 -08001285 if (copy_to_user_sec_ctx(xp, skb))
1286 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08001287 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001288 goto nlmsg_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Thomas Graf98250692007-08-22 12:47:26 -07001290 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291out:
1292 sp->this_idx++;
1293 return 0;
1294
1295nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001296 nlmsg_cancel(skb, nlh);
1297 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298}
1299
1300static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1301{
1302 struct xfrm_dump_info info;
1303
1304 info.in_skb = cb->skb;
1305 info.out_skb = skb;
1306 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1307 info.nlmsg_flags = NLM_F_MULTI;
1308 info.this_idx = 0;
1309 info.start_idx = cb->args[0];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001310 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_MAIN, dump_one_policy, &info);
1311#ifdef CONFIG_XFRM_SUB_POLICY
1312 (void) xfrm_policy_walk(XFRM_POLICY_TYPE_SUB, dump_one_policy, &info);
1313#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 cb->args[0] = info.this_idx;
1315
1316 return skb->len;
1317}
1318
1319static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1320 struct xfrm_policy *xp,
1321 int dir, u32 seq)
1322{
1323 struct xfrm_dump_info info;
1324 struct sk_buff *skb;
1325
1326 skb = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1327 if (!skb)
1328 return ERR_PTR(-ENOMEM);
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 info.in_skb = in_skb;
1331 info.out_skb = skb;
1332 info.nlmsg_seq = seq;
1333 info.nlmsg_flags = 0;
1334 info.this_idx = info.start_idx = 0;
1335
1336 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1337 kfree_skb(skb);
1338 return NULL;
1339 }
1340
1341 return skb;
1342}
1343
Christoph Hellwig22e70052007-01-02 15:22:30 -08001344static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1345 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
1347 struct xfrm_policy *xp;
1348 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001349 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001351 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 int delete;
1353
Thomas Graf7b67c852007-08-22 13:53:52 -07001354 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1356
Christoph Hellwig22e70052007-01-02 15:22:30 -08001357 err = copy_from_user_policy_type(&type, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001358 if (err)
1359 return err;
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 err = verify_policy_dir(p->dir);
1362 if (err)
1363 return err;
1364
1365 if (p->index)
Eric Parisef41aaa2007-03-07 15:37:58 -08001366 xp = xfrm_policy_byid(type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001367 else {
Christoph Hellwig22e70052007-01-02 15:22:30 -08001368 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
Trent Jaegerdf718372005-12-13 23:12:27 -08001369 struct xfrm_policy tmp;
1370
Christoph Hellwig22e70052007-01-02 15:22:30 -08001371 err = verify_sec_ctx_len(xfrma);
Trent Jaegerdf718372005-12-13 23:12:27 -08001372 if (err)
1373 return err;
1374
1375 memset(&tmp, 0, sizeof(struct xfrm_policy));
1376 if (rt) {
1377 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
1378
1379 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1380 return err;
1381 }
Eric Parisef41aaa2007-03-07 15:37:58 -08001382 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1383 delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001384 security_xfrm_policy_free(&tmp);
1385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (xp == NULL)
1387 return -ENOENT;
1388
1389 if (!delete) {
1390 struct sk_buff *resp_skb;
1391
1392 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1393 if (IS_ERR(resp_skb)) {
1394 err = PTR_ERR(resp_skb);
1395 } else {
1396 err = netlink_unicast(xfrm_nl, resp_skb,
1397 NETLINK_CB(skb).pid,
1398 MSG_DONTWAIT);
1399 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001400 } else {
David S. Miller13fcfbb02007-02-12 13:53:54 -08001401 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1402 AUDIT_MAC_IPSEC_DELSPD, err ? 0 : 1, xp, NULL);
1403
1404 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001405 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001406
Herbert Xue7443892005-06-18 22:44:18 -07001407 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001408 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001409 c.seq = nlh->nlmsg_seq;
1410 c.pid = nlh->nlmsg_pid;
1411 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001414out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001415 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return err;
1417}
1418
Christoph Hellwig22e70052007-01-02 15:22:30 -08001419static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
1420 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421{
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001422 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001423 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001424 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001425 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Joy Latten161a09e2006-11-27 13:11:54 -06001427 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1428 audit_info.secid = NETLINK_CB(skb).sid;
Joy Latten4aa2e622007-06-04 19:05:57 -04001429 err = xfrm_state_flush(p->proto, &audit_info);
1430 if (err)
1431 return err;
Herbert Xubf088672005-06-18 22:44:00 -07001432 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001433 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001434 c.seq = nlh->nlmsg_seq;
1435 c.pid = nlh->nlmsg_pid;
1436 km_state_notify(NULL, &c);
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
1439}
1440
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001441
1442static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
1443{
1444 struct xfrm_aevent_id *id;
1445 struct nlmsghdr *nlh;
1446 struct xfrm_lifetime_cur ltime;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001447
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001448 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1449 if (nlh == NULL)
1450 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001451
Thomas Graf7b67c852007-08-22 13:53:52 -07001452 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001453 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001454 id->sa_id.spi = x->id.spi;
1455 id->sa_id.family = x->props.family;
1456 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001457 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1458 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001459 id->flags = c->data.aevent;
1460
1461 RTA_PUT(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), &x->replay);
1462
1463 ltime.bytes = x->curlft.bytes;
1464 ltime.packets = x->curlft.packets;
1465 ltime.add_time = x->curlft.add_time;
1466 ltime.use_time = x->curlft.use_time;
1467
1468 RTA_PUT(skb, XFRMA_LTIME_VAL, sizeof(struct xfrm_lifetime_cur), &ltime);
1469
1470 if (id->flags&XFRM_AE_RTHR) {
1471 RTA_PUT(skb,XFRMA_REPLAY_THRESH,sizeof(u32),&x->replay_maxdiff);
1472 }
1473
1474 if (id->flags&XFRM_AE_ETHR) {
1475 u32 etimer = x->replay_maxage*10/HZ;
1476 RTA_PUT(skb,XFRMA_ETIMER_THRESH,sizeof(u32),&etimer);
1477 }
1478
Thomas Graf98250692007-08-22 12:47:26 -07001479 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001480
1481rtattr_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001482 nlmsg_cancel(skb, nlh);
1483 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001484}
1485
Christoph Hellwig22e70052007-01-02 15:22:30 -08001486static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1487 struct rtattr **xfrma)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001488{
1489 struct xfrm_state *x;
1490 struct sk_buff *r_skb;
1491 int err;
1492 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001493 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001494 int len = NLMSG_LENGTH(sizeof(struct xfrm_aevent_id));
1495 struct xfrm_usersa_id *id = &p->sa_id;
1496
1497 len += RTA_SPACE(sizeof(struct xfrm_replay_state));
1498 len += RTA_SPACE(sizeof(struct xfrm_lifetime_cur));
1499
1500 if (p->flags&XFRM_AE_RTHR)
1501 len+=RTA_SPACE(sizeof(u32));
1502
1503 if (p->flags&XFRM_AE_ETHR)
1504 len+=RTA_SPACE(sizeof(u32));
1505
1506 r_skb = alloc_skb(len, GFP_ATOMIC);
1507 if (r_skb == NULL)
1508 return -ENOMEM;
1509
1510 x = xfrm_state_lookup(&id->daddr, id->spi, id->proto, id->family);
1511 if (x == NULL) {
Patrick McHardyb08d5842007-02-27 09:57:37 -08001512 kfree_skb(r_skb);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001513 return -ESRCH;
1514 }
1515
1516 /*
1517 * XXX: is this lock really needed - none of the other
1518 * gets lock (the concern is things getting updated
1519 * while we are still reading) - jhs
1520 */
1521 spin_lock_bh(&x->lock);
1522 c.data.aevent = p->flags;
1523 c.seq = nlh->nlmsg_seq;
1524 c.pid = nlh->nlmsg_pid;
1525
1526 if (build_aevent(r_skb, x, &c) < 0)
1527 BUG();
1528 err = netlink_unicast(xfrm_nl, r_skb,
1529 NETLINK_CB(skb).pid, MSG_DONTWAIT);
1530 spin_unlock_bh(&x->lock);
1531 xfrm_state_put(x);
1532 return err;
1533}
1534
Christoph Hellwig22e70052007-01-02 15:22:30 -08001535static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
1536 struct rtattr **xfrma)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001537{
1538 struct xfrm_state *x;
1539 struct km_event c;
1540 int err = - EINVAL;
Thomas Graf7b67c852007-08-22 13:53:52 -07001541 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001542 struct rtattr *rp = xfrma[XFRMA_REPLAY_VAL-1];
1543 struct rtattr *lt = xfrma[XFRMA_LTIME_VAL-1];
1544
1545 if (!lt && !rp)
1546 return err;
1547
1548 /* pedantic mode - thou shalt sayeth replaceth */
1549 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1550 return err;
1551
1552 x = xfrm_state_lookup(&p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
1553 if (x == NULL)
1554 return -ESRCH;
1555
1556 if (x->km.state != XFRM_STATE_VALID)
1557 goto out;
1558
1559 spin_lock_bh(&x->lock);
Christoph Hellwig22e70052007-01-02 15:22:30 -08001560 err = xfrm_update_ae_params(x, xfrma);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001561 spin_unlock_bh(&x->lock);
1562 if (err < 0)
1563 goto out;
1564
1565 c.event = nlh->nlmsg_type;
1566 c.seq = nlh->nlmsg_seq;
1567 c.pid = nlh->nlmsg_pid;
1568 c.data.aevent = XFRM_AE_CU;
1569 km_state_notify(x, &c);
1570 err = 0;
1571out:
1572 xfrm_state_put(x);
1573 return err;
1574}
1575
Christoph Hellwig22e70052007-01-02 15:22:30 -08001576static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
1577 struct rtattr **xfrma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001579 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001580 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001581 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001582 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001583
Christoph Hellwig22e70052007-01-02 15:22:30 -08001584 err = copy_from_user_policy_type(&type, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001585 if (err)
1586 return err;
1587
Joy Latten161a09e2006-11-27 13:11:54 -06001588 audit_info.loginuid = NETLINK_CB(skb).loginuid;
1589 audit_info.secid = NETLINK_CB(skb).sid;
Joy Latten4aa2e622007-06-04 19:05:57 -04001590 err = xfrm_policy_flush(type, &audit_info);
1591 if (err)
1592 return err;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001593 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001594 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001595 c.seq = nlh->nlmsg_seq;
1596 c.pid = nlh->nlmsg_pid;
1597 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return 0;
1599}
1600
Christoph Hellwig22e70052007-01-02 15:22:30 -08001601static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1602 struct rtattr **xfrma)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001603{
1604 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001605 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001606 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001607 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001608 int err = -ENOENT;
1609
Christoph Hellwig22e70052007-01-02 15:22:30 -08001610 err = copy_from_user_policy_type(&type, xfrma);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001611 if (err)
1612 return err;
1613
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001614 if (p->index)
Eric Parisef41aaa2007-03-07 15:37:58 -08001615 xp = xfrm_policy_byid(type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001616 else {
Christoph Hellwig22e70052007-01-02 15:22:30 -08001617 struct rtattr *rt = xfrma[XFRMA_SEC_CTX-1];
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001618 struct xfrm_policy tmp;
1619
Christoph Hellwig22e70052007-01-02 15:22:30 -08001620 err = verify_sec_ctx_len(xfrma);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001621 if (err)
1622 return err;
1623
1624 memset(&tmp, 0, sizeof(struct xfrm_policy));
1625 if (rt) {
1626 struct xfrm_user_sec_ctx *uctx = RTA_DATA(rt);
1627
1628 if ((err = security_xfrm_policy_alloc(&tmp, uctx)))
1629 return err;
1630 }
Eric Parisef41aaa2007-03-07 15:37:58 -08001631 xp = xfrm_policy_bysel_ctx(type, p->dir, &p->sel, tmp.security,
1632 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001633 security_xfrm_policy_free(&tmp);
1634 }
1635
1636 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001637 return -ENOENT;
1638 read_lock(&xp->lock);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001639 if (xp->dead) {
1640 read_unlock(&xp->lock);
1641 goto out;
1642 }
1643
1644 read_unlock(&xp->lock);
1645 err = 0;
1646 if (up->hard) {
1647 xfrm_policy_delete(xp, p->dir);
Joy Latten161a09e2006-11-27 13:11:54 -06001648 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1649 AUDIT_MAC_IPSEC_DELSPD, 1, xp, NULL);
1650
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001651 } else {
1652 // reset the timers here?
1653 printk("Dont know what to do with soft policy expire\n");
1654 }
1655 km_policy_expired(xp, p->dir, up->hard, current->pid);
1656
1657out:
1658 xfrm_pol_put(xp);
1659 return err;
1660}
1661
Christoph Hellwig22e70052007-01-02 15:22:30 -08001662static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
1663 struct rtattr **xfrma)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001664{
1665 struct xfrm_state *x;
1666 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001667 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001668 struct xfrm_usersa_info *p = &ue->state;
1669
1670 x = xfrm_state_lookup(&p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001671
David S. Miller3a765aa2007-02-26 14:52:21 -08001672 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001673 if (x == NULL)
1674 return err;
1675
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001676 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001677 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001678 if (x->km.state != XFRM_STATE_VALID)
1679 goto out;
1680 km_state_expired(x, ue->hard, current->pid);
1681
Joy Latten161a09e2006-11-27 13:11:54 -06001682 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001683 __xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -06001684 xfrm_audit_log(NETLINK_CB(skb).loginuid, NETLINK_CB(skb).sid,
1685 AUDIT_MAC_IPSEC_DELSA, 1, NULL, x);
1686 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001687 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001688out:
1689 spin_unlock_bh(&x->lock);
1690 xfrm_state_put(x);
1691 return err;
1692}
1693
Christoph Hellwig22e70052007-01-02 15:22:30 -08001694static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
1695 struct rtattr **xfrma)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001696{
1697 struct xfrm_policy *xp;
1698 struct xfrm_user_tmpl *ut;
1699 int i;
1700 struct rtattr *rt = xfrma[XFRMA_TMPL-1];
1701
Thomas Graf7b67c852007-08-22 13:53:52 -07001702 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001703 struct xfrm_state *x = xfrm_state_alloc();
1704 int err = -ENOMEM;
1705
1706 if (!x)
1707 return err;
1708
1709 err = verify_newpolicy_info(&ua->policy);
1710 if (err) {
1711 printk("BAD policy passed\n");
1712 kfree(x);
1713 return err;
1714 }
1715
1716 /* build an XP */
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001717 xp = xfrm_policy_construct(&ua->policy, (struct rtattr **) xfrma, &err);
1718 if (!xp) {
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001719 kfree(x);
1720 return err;
1721 }
1722
1723 memcpy(&x->id, &ua->id, sizeof(ua->id));
1724 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
1725 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
1726
1727 ut = RTA_DATA(rt);
1728 /* extract the templates and for each call km_key */
1729 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
1730 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1731 memcpy(&x->id, &t->id, sizeof(x->id));
1732 x->props.mode = t->mode;
1733 x->props.reqid = t->reqid;
1734 x->props.family = ut->family;
1735 t->aalgos = ua->aalgos;
1736 t->ealgos = ua->ealgos;
1737 t->calgos = ua->calgos;
1738 err = km_query(x, t, xp);
1739
1740 }
1741
1742 kfree(x);
1743 kfree(xp);
1744
1745 return 0;
1746}
1747
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001748#ifdef CONFIG_XFRM_MIGRATE
1749static int verify_user_migrate(struct rtattr **xfrma)
1750{
1751 struct rtattr *rt = xfrma[XFRMA_MIGRATE-1];
1752 struct xfrm_user_migrate *um;
1753
1754 if (!rt)
1755 return -EINVAL;
1756
1757 if ((rt->rta_len - sizeof(*rt)) < sizeof(*um))
1758 return -EINVAL;
1759
1760 return 0;
1761}
1762
1763static int copy_from_user_migrate(struct xfrm_migrate *ma,
1764 struct rtattr **xfrma, int *num)
1765{
1766 struct rtattr *rt = xfrma[XFRMA_MIGRATE-1];
1767 struct xfrm_user_migrate *um;
1768 int i, num_migrate;
1769
1770 um = RTA_DATA(rt);
1771 num_migrate = (rt->rta_len - sizeof(*rt)) / sizeof(*um);
1772
1773 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
1774 return -EINVAL;
1775
1776 for (i = 0; i < num_migrate; i++, um++, ma++) {
1777 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
1778 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
1779 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
1780 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
1781
1782 ma->proto = um->proto;
1783 ma->mode = um->mode;
1784 ma->reqid = um->reqid;
1785
1786 ma->old_family = um->old_family;
1787 ma->new_family = um->new_family;
1788 }
1789
1790 *num = i;
1791 return 0;
1792}
1793
1794static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1795 struct rtattr **xfrma)
1796{
Thomas Graf7b67c852007-08-22 13:53:52 -07001797 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001798 struct xfrm_migrate m[XFRM_MAX_DEPTH];
1799 u8 type;
1800 int err;
1801 int n = 0;
1802
1803 err = verify_user_migrate((struct rtattr **)xfrma);
1804 if (err)
1805 return err;
1806
1807 err = copy_from_user_policy_type(&type, (struct rtattr **)xfrma);
1808 if (err)
1809 return err;
1810
1811 err = copy_from_user_migrate((struct xfrm_migrate *)m,
1812 (struct rtattr **)xfrma, &n);
1813 if (err)
1814 return err;
1815
1816 if (!n)
1817 return 0;
1818
1819 xfrm_migrate(&pi->sel, pi->dir, type, m, n);
1820
1821 return 0;
1822}
1823#else
1824static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
1825 struct rtattr **xfrma)
1826{
1827 return -ENOPROTOOPT;
1828}
1829#endif
1830
1831#ifdef CONFIG_XFRM_MIGRATE
1832static int copy_to_user_migrate(struct xfrm_migrate *m, struct sk_buff *skb)
1833{
1834 struct xfrm_user_migrate um;
1835
1836 memset(&um, 0, sizeof(um));
1837 um.proto = m->proto;
1838 um.mode = m->mode;
1839 um.reqid = m->reqid;
1840 um.old_family = m->old_family;
1841 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
1842 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
1843 um.new_family = m->new_family;
1844 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
1845 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
1846
1847 RTA_PUT(skb, XFRMA_MIGRATE, sizeof(um), &um);
1848 return 0;
1849
1850rtattr_failure:
1851 return -1;
1852}
1853
1854static int build_migrate(struct sk_buff *skb, struct xfrm_migrate *m,
1855 int num_migrate, struct xfrm_selector *sel,
1856 u8 dir, u8 type)
1857{
1858 struct xfrm_migrate *mp;
1859 struct xfrm_userpolicy_id *pol_id;
1860 struct nlmsghdr *nlh;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001861 int i;
1862
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001863 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
1864 if (nlh == NULL)
1865 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001866
Thomas Graf7b67c852007-08-22 13:53:52 -07001867 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001868 /* copy data from selector, dir, and type to the pol_id */
1869 memset(pol_id, 0, sizeof(*pol_id));
1870 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
1871 pol_id->dir = dir;
1872
1873 if (copy_to_user_policy_type(type, skb) < 0)
1874 goto nlmsg_failure;
1875
1876 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
1877 if (copy_to_user_migrate(mp, skb) < 0)
1878 goto nlmsg_failure;
1879 }
1880
Thomas Graf98250692007-08-22 12:47:26 -07001881 return nlmsg_end(skb, nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001882nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001883 nlmsg_cancel(skb, nlh);
1884 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001885}
1886
1887static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1888 struct xfrm_migrate *m, int num_migrate)
1889{
1890 struct sk_buff *skb;
1891 size_t len;
1892
1893 len = RTA_SPACE(sizeof(struct xfrm_user_migrate) * num_migrate);
1894 len += NLMSG_SPACE(sizeof(struct xfrm_userpolicy_id));
1895#ifdef CONFIG_XFRM_SUB_POLICY
1896 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
1897#endif
1898 skb = alloc_skb(len, GFP_ATOMIC);
1899 if (skb == NULL)
1900 return -ENOMEM;
1901
1902 /* build migrate */
1903 if (build_migrate(skb, m, num_migrate, sel, dir, type) < 0)
1904 BUG();
1905
1906 NETLINK_CB(skb).dst_group = XFRMNLGRP_MIGRATE;
1907 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_MIGRATE,
1908 GFP_ATOMIC);
1909}
1910#else
1911static int xfrm_send_migrate(struct xfrm_selector *sel, u8 dir, u8 type,
1912 struct xfrm_migrate *m, int num_migrate)
1913{
1914 return -ENOPROTOOPT;
1915}
1916#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001917
Thomas Graf492b5582005-05-03 14:26:40 -07001918#define XMSGSIZE(type) NLMSG_LENGTH(sizeof(struct type))
1919
1920static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
1921 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
1922 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1923 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
1924 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1925 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1926 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
1927 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001928 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001929 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07001930 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
1931 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001932 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07001933 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
1934 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = NLMSG_LENGTH(0),
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001935 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
1936 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07001937 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001938 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07001939 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = NLMSG_LENGTH(sizeof(u32)),
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001940 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = NLMSG_LENGTH(sizeof(u32)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941};
1942
Thomas Graf492b5582005-05-03 14:26:40 -07001943#undef XMSGSIZE
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945static struct xfrm_link {
Christoph Hellwig22e70052007-01-02 15:22:30 -08001946 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct rtattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 int (*dump)(struct sk_buff *, struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07001948} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
1949 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
1950 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
1951 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
1952 .dump = xfrm_dump_sa },
1953 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1954 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
1955 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
1956 .dump = xfrm_dump_policy },
1957 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001958 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001959 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07001960 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
1961 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001962 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07001963 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
1964 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001965 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
1966 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08001967 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07001968 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001969 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970};
1971
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001972static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 struct rtattr *xfrma[XFRMA_MAX];
1975 struct xfrm_link *link;
Thomas Grafc702e802007-03-22 23:30:55 -07001976 int type, min_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001980 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 type -= XFRM_MSG_BASE;
1983 link = &xfrm_dispatch[type];
1984
1985 /* All operations require privileges, even GET */
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001986 if (security_netlink_recv(skb, CAP_NET_ADMIN))
1987 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Thomas Graf492b5582005-05-03 14:26:40 -07001989 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
1990 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
1991 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07001993 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Thomas Grafc702e802007-03-22 23:30:55 -07001995 return netlink_dump_start(xfrm_nl, skb, nlh, link->dump, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997
1998 memset(xfrma, 0, sizeof(xfrma));
1999
2000 if (nlh->nlmsg_len < (min_len = xfrm_msg_min[type]))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002001 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 if (nlh->nlmsg_len > min_len) {
2004 int attrlen = nlh->nlmsg_len - NLMSG_ALIGN(min_len);
2005 struct rtattr *attr = (void *) nlh + NLMSG_ALIGN(min_len);
2006
2007 while (RTA_OK(attr, attrlen)) {
2008 unsigned short flavor = attr->rta_type;
2009 if (flavor) {
2010 if (flavor > XFRMA_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002011 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 xfrma[flavor - 1] = attr;
2013 }
2014 attr = RTA_NEXT(attr, attrlen);
2015 }
2016 }
2017
2018 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002019 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002021 return link->doit(skb, nlh, xfrma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024static void xfrm_netlink_rcv(struct sock *sk, int len)
2025{
Thomas Graf88fc2c82005-11-10 02:25:54 +01002026 unsigned int qlen = 0;
Herbert Xu2a0a6eb2005-05-03 14:55:09 -07002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 do {
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08002029 mutex_lock(&xfrm_cfg_mutex);
Thomas Graf88fc2c82005-11-10 02:25:54 +01002030 netlink_run_queue(sk, &qlen, &xfrm_user_rcv_msg);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -08002031 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Herbert Xu2a0a6eb2005-05-03 14:55:09 -07002033 } while (qlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002036static int build_expire(struct sk_buff *skb, struct xfrm_state *x, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
2038 struct xfrm_user_expire *ue;
2039 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002041 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2042 if (nlh == NULL)
2043 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Thomas Graf7b67c852007-08-22 13:53:52 -07002045 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002047 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Thomas Graf98250692007-08-22 12:47:26 -07002049 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002052static int xfrm_exp_state_notify(struct xfrm_state *x, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
2054 struct sk_buff *skb;
Jamal Hadi Salimee57eef2005-06-18 22:45:56 -07002055 int len = NLMSG_LENGTH(sizeof(struct xfrm_user_expire));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Jamal Hadi Salimee57eef2005-06-18 22:45:56 -07002057 skb = alloc_skb(len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (skb == NULL)
2059 return -ENOMEM;
2060
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002061 if (build_expire(skb, x, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 BUG();
2063
Patrick McHardyac6d4392005-08-14 19:29:52 -07002064 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
2065 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066}
2067
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002068static int xfrm_aevent_state_notify(struct xfrm_state *x, struct km_event *c)
2069{
2070 struct sk_buff *skb;
2071 int len = NLMSG_LENGTH(sizeof(struct xfrm_aevent_id));
2072
2073 len += RTA_SPACE(sizeof(struct xfrm_replay_state));
2074 len += RTA_SPACE(sizeof(struct xfrm_lifetime_cur));
2075 skb = alloc_skb(len, GFP_ATOMIC);
2076 if (skb == NULL)
2077 return -ENOMEM;
2078
2079 if (build_aevent(skb, x, c) < 0)
2080 BUG();
2081
2082 NETLINK_CB(skb).dst_group = XFRMNLGRP_AEVENTS;
2083 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
2084}
2085
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002086static int xfrm_notify_sa_flush(struct km_event *c)
2087{
2088 struct xfrm_usersa_flush *p;
2089 struct nlmsghdr *nlh;
2090 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002091 int len = NLMSG_LENGTH(sizeof(struct xfrm_usersa_flush));
2092
2093 skb = alloc_skb(len, GFP_ATOMIC);
2094 if (skb == NULL)
2095 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002096
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002097 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2098 if (nlh == NULL) {
2099 kfree_skb(skb);
2100 return -EMSGSIZE;
2101 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002102
Thomas Graf7b67c852007-08-22 13:53:52 -07002103 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002104 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002105
Thomas Graf98250692007-08-22 12:47:26 -07002106 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002107
Patrick McHardyac6d4392005-08-14 19:29:52 -07002108 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
2109 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002110}
2111
Dave Jonesb6f99a22007-03-22 12:27:49 -07002112static inline int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002113{
Herbert Xu0603eac2005-06-18 22:54:36 -07002114 int l = 0;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002115 if (x->aalg)
2116 l += RTA_SPACE(sizeof(*x->aalg) + (x->aalg->alg_key_len+7)/8);
2117 if (x->ealg)
2118 l += RTA_SPACE(sizeof(*x->ealg) + (x->ealg->alg_key_len+7)/8);
2119 if (x->calg)
2120 l += RTA_SPACE(sizeof(*x->calg));
2121 if (x->encap)
2122 l += RTA_SPACE(sizeof(*x->encap));
2123
2124 return l;
2125}
2126
2127static int xfrm_notify_sa(struct xfrm_state *x, struct km_event *c)
2128{
2129 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002130 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002131 struct nlmsghdr *nlh;
2132 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002133 int len = xfrm_sa_len(x);
Herbert Xu0603eac2005-06-18 22:54:36 -07002134 int headlen;
2135
2136 headlen = sizeof(*p);
2137 if (c->event == XFRM_MSG_DELSA) {
2138 len += RTA_SPACE(headlen);
2139 headlen = sizeof(*id);
2140 }
2141 len += NLMSG_SPACE(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002142
2143 skb = alloc_skb(len, GFP_ATOMIC);
2144 if (skb == NULL)
2145 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002146
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002147 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2148 if (nlh == NULL)
2149 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002150
Thomas Graf7b67c852007-08-22 13:53:52 -07002151 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002152 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7b67c852007-08-22 13:53:52 -07002153 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002154 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2155 id->spi = x->id.spi;
2156 id->family = x->props.family;
2157 id->proto = x->id.proto;
2158
2159 p = RTA_DATA(__RTA_PUT(skb, XFRMA_SA, sizeof(*p)));
2160 }
2161
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002162 copy_to_user_state(x, p);
2163
2164 if (x->aalg)
2165 RTA_PUT(skb, XFRMA_ALG_AUTH,
2166 sizeof(*(x->aalg))+(x->aalg->alg_key_len+7)/8, x->aalg);
2167 if (x->ealg)
2168 RTA_PUT(skb, XFRMA_ALG_CRYPT,
2169 sizeof(*(x->ealg))+(x->ealg->alg_key_len+7)/8, x->ealg);
2170 if (x->calg)
2171 RTA_PUT(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
2172
2173 if (x->encap)
2174 RTA_PUT(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
2175
Thomas Graf98250692007-08-22 12:47:26 -07002176 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002177
Patrick McHardyac6d4392005-08-14 19:29:52 -07002178 NETLINK_CB(skb).dst_group = XFRMNLGRP_SA;
2179 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002180
2181nlmsg_failure:
2182rtattr_failure:
2183 kfree_skb(skb);
2184 return -1;
2185}
2186
2187static int xfrm_send_state_notify(struct xfrm_state *x, struct km_event *c)
2188{
2189
2190 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002191 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002192 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002193 case XFRM_MSG_NEWAE:
2194 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002195 case XFRM_MSG_DELSA:
2196 case XFRM_MSG_UPDSA:
2197 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002198 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002199 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002200 return xfrm_notify_sa_flush(c);
2201 default:
2202 printk("xfrm_user: Unknown SA event %d\n", c->event);
2203 break;
2204 }
2205
2206 return 0;
2207
2208}
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2211 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2212 int dir)
2213{
2214 struct xfrm_user_acquire *ua;
2215 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 __u32 seq = xfrm_get_acqseq();
2217
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002218 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2219 if (nlh == NULL)
2220 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
Thomas Graf7b67c852007-08-22 13:53:52 -07002222 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 memcpy(&ua->id, &x->id, sizeof(ua->id));
2224 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2225 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2226 copy_to_user_policy(xp, &ua->policy, dir);
2227 ua->aalgos = xt->aalgos;
2228 ua->ealgos = xt->ealgos;
2229 ua->calgos = xt->calgos;
2230 ua->seq = x->km.seq = seq;
2231
2232 if (copy_to_user_tmpl(xp, skb) < 0)
2233 goto nlmsg_failure;
Serge Hallyn0d681622006-07-24 23:30:44 -07002234 if (copy_to_user_state_sec_ctx(x, skb))
Trent Jaegerdf718372005-12-13 23:12:27 -08002235 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002236 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002237 goto nlmsg_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Thomas Graf98250692007-08-22 12:47:26 -07002239 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002242 nlmsg_cancel(skb, nlh);
2243 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244}
2245
2246static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2247 struct xfrm_policy *xp, int dir)
2248{
2249 struct sk_buff *skb;
2250 size_t len;
2251
2252 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2253 len += NLMSG_SPACE(sizeof(struct xfrm_user_acquire));
Joy Latten661697f2007-04-13 16:14:35 -07002254 len += RTA_SPACE(xfrm_user_sec_ctx_size(x->security));
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002255#ifdef CONFIG_XFRM_SUB_POLICY
2256 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2257#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 skb = alloc_skb(len, GFP_ATOMIC);
2259 if (skb == NULL)
2260 return -ENOMEM;
2261
2262 if (build_acquire(skb, x, xt, xp, dir) < 0)
2263 BUG();
2264
Patrick McHardyac6d4392005-08-14 19:29:52 -07002265 NETLINK_CB(skb).dst_group = XFRMNLGRP_ACQUIRE;
2266 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267}
2268
2269/* User gives us xfrm_user_policy_info followed by an array of 0
2270 * or more templates.
2271 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002272static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 u8 *data, int len, int *dir)
2274{
2275 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2276 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2277 struct xfrm_policy *xp;
2278 int nr;
2279
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002280 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 case AF_INET:
2282 if (opt != IP_XFRM_POLICY) {
2283 *dir = -EOPNOTSUPP;
2284 return NULL;
2285 }
2286 break;
2287#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
2288 case AF_INET6:
2289 if (opt != IPV6_XFRM_POLICY) {
2290 *dir = -EOPNOTSUPP;
2291 return NULL;
2292 }
2293 break;
2294#endif
2295 default:
2296 *dir = -EINVAL;
2297 return NULL;
2298 }
2299
2300 *dir = -EINVAL;
2301
2302 if (len < sizeof(*p) ||
2303 verify_newpolicy_info(p))
2304 return NULL;
2305
2306 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002307 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return NULL;
2309
Herbert Xua4f1bac2005-07-26 15:43:17 -07002310 if (p->dir > XFRM_POLICY_OUT)
2311 return NULL;
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 xp = xfrm_policy_alloc(GFP_KERNEL);
2314 if (xp == NULL) {
2315 *dir = -ENOBUFS;
2316 return NULL;
2317 }
2318
2319 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002320 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 copy_templates(xp, ut, nr);
2322
2323 *dir = p->dir;
2324
2325 return xp;
2326}
2327
2328static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002329 int dir, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330{
2331 struct xfrm_user_polexpire *upe;
2332 struct nlmsghdr *nlh;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002333 int hard = c->data.hard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002335 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2336 if (nlh == NULL)
2337 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Thomas Graf7b67c852007-08-22 13:53:52 -07002339 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 copy_to_user_policy(xp, &upe->pol, dir);
2341 if (copy_to_user_tmpl(xp, skb) < 0)
2342 goto nlmsg_failure;
Trent Jaegerdf718372005-12-13 23:12:27 -08002343 if (copy_to_user_sec_ctx(xp, skb))
2344 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002345 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002346 goto nlmsg_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 upe->hard = !!hard;
2348
Thomas Graf98250692007-08-22 12:47:26 -07002349 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
2351nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002352 nlmsg_cancel(skb, nlh);
2353 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002356static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
2358 struct sk_buff *skb;
2359 size_t len;
2360
2361 len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
2362 len += NLMSG_SPACE(sizeof(struct xfrm_user_polexpire));
Joy Latten661697f2007-04-13 16:14:35 -07002363 len += RTA_SPACE(xfrm_user_sec_ctx_size(xp->security));
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002364#ifdef CONFIG_XFRM_SUB_POLICY
2365 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2366#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 skb = alloc_skb(len, GFP_ATOMIC);
2368 if (skb == NULL)
2369 return -ENOMEM;
2370
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002371 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 BUG();
2373
Patrick McHardyac6d4392005-08-14 19:29:52 -07002374 NETLINK_CB(skb).dst_group = XFRMNLGRP_EXPIRE;
2375 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376}
2377
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002378static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, struct km_event *c)
2379{
2380 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002381 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002382 struct nlmsghdr *nlh;
2383 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002384 int len = RTA_SPACE(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002385 int headlen;
2386
2387 headlen = sizeof(*p);
2388 if (c->event == XFRM_MSG_DELPOLICY) {
2389 len += RTA_SPACE(headlen);
2390 headlen = sizeof(*id);
2391 }
Jamal Hadi Salim334f3d42006-11-19 14:53:07 -08002392#ifdef CONFIG_XFRM_SUB_POLICY
2393 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
2394#endif
Herbert Xu0603eac2005-06-18 22:54:36 -07002395 len += NLMSG_SPACE(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002396
2397 skb = alloc_skb(len, GFP_ATOMIC);
2398 if (skb == NULL)
2399 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002400
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002401 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2402 if (nlh == NULL)
2403 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002404
Thomas Graf7b67c852007-08-22 13:53:52 -07002405 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002406 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7b67c852007-08-22 13:53:52 -07002407 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002408 memset(id, 0, sizeof(*id));
2409 id->dir = dir;
2410 if (c->data.byid)
2411 id->index = xp->index;
2412 else
2413 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2414
2415 p = RTA_DATA(__RTA_PUT(skb, XFRMA_POLICY, sizeof(*p)));
2416 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002417
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002418 copy_to_user_policy(xp, p, dir);
2419 if (copy_to_user_tmpl(xp, skb) < 0)
2420 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002421 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002422 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002423
Thomas Graf98250692007-08-22 12:47:26 -07002424 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002425
Patrick McHardyac6d4392005-08-14 19:29:52 -07002426 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
2427 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002428
2429nlmsg_failure:
Herbert Xu0603eac2005-06-18 22:54:36 -07002430rtattr_failure:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002431 kfree_skb(skb);
2432 return -1;
2433}
2434
2435static int xfrm_notify_policy_flush(struct km_event *c)
2436{
2437 struct nlmsghdr *nlh;
2438 struct sk_buff *skb;
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002439 int len = 0;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002440#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002441 len += RTA_SPACE(sizeof(struct xfrm_userpolicy_type));
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002442#endif
Jamal Hadi Salim785fd8b82006-11-19 14:55:30 -08002443 len += NLMSG_LENGTH(0);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002444
2445 skb = alloc_skb(len, GFP_ATOMIC);
2446 if (skb == NULL)
2447 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002448
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002449 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
2450 if (nlh == NULL)
2451 goto nlmsg_failure;
Jamal Hadi Salim0c51f532006-11-27 12:58:20 -08002452 if (copy_to_user_policy_type(c->data.type, skb) < 0)
2453 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002454
Thomas Graf98250692007-08-22 12:47:26 -07002455 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002456
Patrick McHardyac6d4392005-08-14 19:29:52 -07002457 NETLINK_CB(skb).dst_group = XFRMNLGRP_POLICY;
2458 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002459
2460nlmsg_failure:
2461 kfree_skb(skb);
2462 return -1;
2463}
2464
2465static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c)
2466{
2467
2468 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002469 case XFRM_MSG_NEWPOLICY:
2470 case XFRM_MSG_UPDPOLICY:
2471 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002472 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002473 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002474 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002475 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002476 return xfrm_exp_policy_notify(xp, dir, c);
2477 default:
2478 printk("xfrm_user: Unknown Policy event %d\n", c->event);
2479 }
2480
2481 return 0;
2482
2483}
2484
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002485static int build_report(struct sk_buff *skb, u8 proto,
2486 struct xfrm_selector *sel, xfrm_address_t *addr)
2487{
2488 struct xfrm_user_report *ur;
2489 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002490
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002491 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2492 if (nlh == NULL)
2493 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002494
Thomas Graf7b67c852007-08-22 13:53:52 -07002495 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002496 ur->proto = proto;
2497 memcpy(&ur->sel, sel, sizeof(ur->sel));
2498
2499 if (addr)
2500 RTA_PUT(skb, XFRMA_COADDR, sizeof(*addr), addr);
2501
Thomas Graf98250692007-08-22 12:47:26 -07002502 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002503
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002504rtattr_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002505 nlmsg_cancel(skb, nlh);
2506 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002507}
2508
2509static int xfrm_send_report(u8 proto, struct xfrm_selector *sel,
2510 xfrm_address_t *addr)
2511{
2512 struct sk_buff *skb;
2513 size_t len;
2514
2515 len = NLMSG_ALIGN(NLMSG_LENGTH(sizeof(struct xfrm_user_report)));
2516 skb = alloc_skb(len, GFP_ATOMIC);
2517 if (skb == NULL)
2518 return -ENOMEM;
2519
2520 if (build_report(skb, proto, sel, addr) < 0)
2521 BUG();
2522
2523 NETLINK_CB(skb).dst_group = XFRMNLGRP_REPORT;
2524 return netlink_broadcast(xfrm_nl, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
2525}
2526
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527static struct xfrm_mgr netlink_mgr = {
2528 .id = "netlink",
2529 .notify = xfrm_send_state_notify,
2530 .acquire = xfrm_send_acquire,
2531 .compile_policy = xfrm_compile_policy,
2532 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002533 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002534 .migrate = xfrm_send_migrate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535};
2536
2537static int __init xfrm_user_init(void)
2538{
Patrick McHardybe336902006-03-20 22:40:54 -08002539 struct sock *nlsk;
2540
Masahide NAKAMURA654b32c2006-08-23 19:12:56 -07002541 printk(KERN_INFO "Initializing XFRM netlink socket\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Patrick McHardybe336902006-03-20 22:40:54 -08002543 nlsk = netlink_kernel_create(NETLINK_XFRM, XFRMNLGRP_MAX,
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002544 xfrm_netlink_rcv, NULL, THIS_MODULE);
Patrick McHardybe336902006-03-20 22:40:54 -08002545 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 return -ENOMEM;
Patrick McHardybe336902006-03-20 22:40:54 -08002547 rcu_assign_pointer(xfrm_nl, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
2549 xfrm_register_km(&netlink_mgr);
2550
2551 return 0;
2552}
2553
2554static void __exit xfrm_user_exit(void)
2555{
Patrick McHardybe336902006-03-20 22:40:54 -08002556 struct sock *nlsk = xfrm_nl;
2557
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 xfrm_unregister_km(&netlink_mgr);
Patrick McHardybe336902006-03-20 22:40:54 -08002559 rcu_assign_pointer(xfrm_nl, NULL);
2560 synchronize_rcu();
2561 sock_release(nlsk->sk_socket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
2564module_init(xfrm_user_init);
2565module_exit(xfrm_user_exit);
2566MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002567MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08002568