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