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