1 /* 2 * xfrm6_policy.c: based on xfrm4_policy.c 3 * 4 * Authors: 5 * Mitsuru KANDA @USAGI 6 * Kazunori MIYAZAWA @USAGI 7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com> 8 * IPv6 support 9 * YOSHIFUJI Hideaki 10 * Split up af-specific portion 11 * 12 */ 13 14 #include <linux/err.h> 15 #include <linux/kernel.h> 16 #include <linux/netdevice.h> 17 #include <net/addrconf.h> 18 #include <net/dst.h> 19 #include <net/xfrm.h> 20 #include <net/ip.h> 21 #include <net/ipv6.h> 22 #include <net/ip6_route.h> 23 #if IS_ENABLED(CONFIG_IPV6_MIP6) 24 #include <net/mip6.h> 25 #endif 26 27 static struct xfrm_policy_afinfo xfrm6_policy_afinfo; 28 29 static struct dst_entry *xfrm6_dst_lookup(struct net *net, int tos, 30 const xfrm_address_t *saddr, 31 const xfrm_address_t *daddr) 32 { 33 struct flowi6 fl6; 34 struct dst_entry *dst; 35 int err; 36 37 memset(&fl6, 0, sizeof(fl6)); 38 memcpy(&fl6.daddr, daddr, sizeof(fl6.daddr)); 39 if (saddr) 40 memcpy(&fl6.saddr, saddr, sizeof(fl6.saddr)); 41 42 dst = ip6_route_output(net, NULL, &fl6); 43 44 err = dst->error; 45 if (dst->error) { 46 dst_release(dst); 47 dst = ERR_PTR(err); 48 } 49 50 return dst; 51 } 52 53 static int xfrm6_get_saddr(struct net *net, 54 xfrm_address_t *saddr, xfrm_address_t *daddr) 55 { 56 struct dst_entry *dst; 57 struct net_device *dev; 58 59 dst = xfrm6_dst_lookup(net, 0, NULL, daddr); 60 if (IS_ERR(dst)) 61 return -EHOSTUNREACH; 62 63 dev = ip6_dst_idev(dst)->dev; 64 ipv6_dev_get_saddr(dev_net(dev), dev, 65 (struct in6_addr *)&daddr->a6, 0, 66 (struct in6_addr *)&saddr->a6); 67 dst_release(dst); 68 return 0; 69 } 70 71 static int xfrm6_get_tos(const struct flowi *fl) 72 { 73 return 0; 74 } 75 76 static void xfrm6_init_dst(struct net *net, struct xfrm_dst *xdst) 77 { 78 struct rt6_info *rt = (struct rt6_info *)xdst; 79 80 rt6_init_peer(rt, net->ipv6.peers); 81 } 82 83 static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst, 84 int nfheader_len) 85 { 86 if (dst->ops->family == AF_INET6) { 87 struct rt6_info *rt = (struct rt6_info *)dst; 88 if (rt->rt6i_node) 89 path->path_cookie = rt->rt6i_node->fn_sernum; 90 } 91 92 path->u.rt6.rt6i_nfheader_len = nfheader_len; 93 94 return 0; 95 } 96 97 static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, 98 const struct flowi *fl) 99 { 100 struct rt6_info *rt = (struct rt6_info *)xdst->route; 101 102 xdst->u.dst.dev = dev; 103 dev_hold(dev); 104 105 xdst->u.rt6.rt6i_idev = in6_dev_get(dev); 106 if (!xdst->u.rt6.rt6i_idev) { 107 dev_put(dev); 108 return -ENODEV; 109 } 110 111 rt6_transfer_peer(&xdst->u.rt6, rt); 112 113 /* Sheit... I remember I did this right. Apparently, 114 * it was magically lost, so this code needs audit */ 115 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST | 116 RTF_LOCAL); 117 xdst->u.rt6.rt6i_metric = rt->rt6i_metric; 118 xdst->u.rt6.rt6i_node = rt->rt6i_node; 119 if (rt->rt6i_node) 120 xdst->route_cookie = rt->rt6i_node->fn_sernum; 121 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway; 122 xdst->u.rt6.rt6i_dst = rt->rt6i_dst; 123 xdst->u.rt6.rt6i_src = rt->rt6i_src; 124 125 return 0; 126 } 127 128 static inline void 129 _decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse) 130 { 131 struct flowi6 *fl6 = &fl->u.ip6; 132 int onlyproto = 0; 133 const struct ipv6hdr *hdr = ipv6_hdr(skb); 134 u16 offset = sizeof(*hdr); 135 struct ipv6_opt_hdr *exthdr; 136 const unsigned char *nh = skb_network_header(skb); 137 u16 nhoff = IP6CB(skb)->nhoff; 138 int oif = 0; 139 u8 nexthdr; 140 141 if (!nhoff) 142 nhoff = offsetof(struct ipv6hdr, nexthdr); 143 144 nexthdr = nh[nhoff]; 145 146 if (skb_dst(skb)) 147 oif = skb_dst(skb)->dev->ifindex; 148 149 memset(fl6, 0, sizeof(struct flowi6)); 150 fl6->flowi6_mark = skb->mark; 151 fl6->flowi6_oif = reverse ? skb->skb_iif : oif; 152 153 fl6->daddr = reverse ? hdr->saddr : hdr->daddr; 154 fl6->saddr = reverse ? hdr->daddr : hdr->saddr; 155 156 while (nh + offset + 1 < skb->data || 157 pskb_may_pull(skb, nh + offset + 1 - skb->data)) { 158 nh = skb_network_header(skb); 159 exthdr = (struct ipv6_opt_hdr *)(nh + offset); 160 161 switch (nexthdr) { 162 case NEXTHDR_FRAGMENT: 163 onlyproto = 1; 164 case NEXTHDR_ROUTING: 165 case NEXTHDR_HOP: 166 case NEXTHDR_DEST: 167 offset += ipv6_optlen(exthdr); 168 nexthdr = exthdr->nexthdr; 169 exthdr = (struct ipv6_opt_hdr *)(nh + offset); 170 break; 171 172 case IPPROTO_UDP: 173 case IPPROTO_UDPLITE: 174 case IPPROTO_TCP: 175 case IPPROTO_SCTP: 176 case IPPROTO_DCCP: 177 if (!onlyproto && (nh + offset + 4 < skb->data || 178 pskb_may_pull(skb, nh + offset + 4 - skb->data))) { 179 __be16 *ports; 180 181 nh = skb_network_header(skb); 182 ports = (__be16 *)(nh + offset); 183 fl6->fl6_sport = ports[!!reverse]; 184 fl6->fl6_dport = ports[!reverse]; 185 } 186 fl6->flowi6_proto = nexthdr; 187 return; 188 189 case IPPROTO_ICMPV6: 190 if (!onlyproto && pskb_may_pull(skb, nh + offset + 2 - skb->data)) { 191 u8 *icmp; 192 193 nh = skb_network_header(skb); 194 icmp = (u8 *)(nh + offset); 195 fl6->fl6_icmp_type = icmp[0]; 196 fl6->fl6_icmp_code = icmp[1]; 197 } 198 fl6->flowi6_proto = nexthdr; 199 return; 200 201 #if IS_ENABLED(CONFIG_IPV6_MIP6) 202 case IPPROTO_MH: 203 if (!onlyproto && pskb_may_pull(skb, nh + offset + 3 - skb->data)) { 204 struct ip6_mh *mh; 205 206 nh = skb_network_header(skb); 207 mh = (struct ip6_mh *)(nh + offset); 208 fl6->fl6_mh_type = mh->ip6mh_type; 209 } 210 fl6->flowi6_proto = nexthdr; 211 return; 212 #endif 213 214 /* XXX Why are there these headers? */ 215 case IPPROTO_AH: 216 case IPPROTO_ESP: 217 case IPPROTO_COMP: 218 default: 219 fl6->fl6_ipsec_spi = 0; 220 fl6->flowi6_proto = nexthdr; 221 return; 222 } 223 } 224 } 225 226 static inline int xfrm6_garbage_collect(struct dst_ops *ops) 227 { 228 struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops); 229 230 xfrm6_policy_afinfo.garbage_collect(net); 231 return dst_entries_get_fast(ops) > ops->gc_thresh * 2; 232 } 233 234 static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk, 235 struct sk_buff *skb, u32 mtu) 236 { 237 struct xfrm_dst *xdst = (struct xfrm_dst *)dst; 238 struct dst_entry *path = xdst->route; 239 240 path->ops->update_pmtu(path, sk, skb, mtu); 241 } 242 243 static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk, 244 struct sk_buff *skb) 245 { 246 struct xfrm_dst *xdst = (struct xfrm_dst *)dst; 247 struct dst_entry *path = xdst->route; 248 249 path->ops->redirect(path, sk, skb); 250 } 251 252 static void xfrm6_dst_destroy(struct dst_entry *dst) 253 { 254 struct xfrm_dst *xdst = (struct xfrm_dst *)dst; 255 256 if (likely(xdst->u.rt6.rt6i_idev)) 257 in6_dev_put(xdst->u.rt6.rt6i_idev); 258 dst_destroy_metrics_generic(dst); 259 if (rt6_has_peer(&xdst->u.rt6)) { 260 struct inet_peer *peer = rt6_peer_ptr(&xdst->u.rt6); 261 inet_putpeer(peer); 262 } 263 xfrm_dst_destroy(xdst); 264 } 265 266 static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev, 267 int unregister) 268 { 269 struct xfrm_dst *xdst; 270 271 if (!unregister) 272 return; 273 274 xdst = (struct xfrm_dst *)dst; 275 if (xdst->u.rt6.rt6i_idev->dev == dev) { 276 struct inet6_dev *loopback_idev = 277 in6_dev_get(dev_net(dev)->loopback_dev); 278 BUG_ON(!loopback_idev); 279 280 do { 281 in6_dev_put(xdst->u.rt6.rt6i_idev); 282 xdst->u.rt6.rt6i_idev = loopback_idev; 283 in6_dev_hold(loopback_idev); 284 xdst = (struct xfrm_dst *)xdst->u.dst.child; 285 } while (xdst->u.dst.xfrm); 286 287 __in6_dev_put(loopback_idev); 288 } 289 290 xfrm_dst_ifdown(dst, dev); 291 } 292 293 static struct dst_ops xfrm6_dst_ops = { 294 .family = AF_INET6, 295 .gc = xfrm6_garbage_collect, 296 .update_pmtu = xfrm6_update_pmtu, 297 .redirect = xfrm6_redirect, 298 .cow_metrics = dst_cow_metrics_generic, 299 .destroy = xfrm6_dst_destroy, 300 .ifdown = xfrm6_dst_ifdown, 301 .local_out = __ip6_local_out, 302 .gc_thresh = 32768, 303 }; 304 305 static struct xfrm_policy_afinfo xfrm6_policy_afinfo = { 306 .family = AF_INET6, 307 .dst_ops = &xfrm6_dst_ops, 308 .dst_lookup = xfrm6_dst_lookup, 309 .get_saddr = xfrm6_get_saddr, 310 .decode_session = _decode_session6, 311 .get_tos = xfrm6_get_tos, 312 .init_dst = xfrm6_init_dst, 313 .init_path = xfrm6_init_path, 314 .fill_dst = xfrm6_fill_dst, 315 .blackhole_route = ip6_blackhole_route, 316 }; 317 318 static int __init xfrm6_policy_init(void) 319 { 320 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo); 321 } 322 323 static void xfrm6_policy_fini(void) 324 { 325 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo); 326 } 327 328 #ifdef CONFIG_SYSCTL 329 static struct ctl_table xfrm6_policy_table[] = { 330 { 331 .procname = "xfrm6_gc_thresh", 332 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh, 333 .maxlen = sizeof(int), 334 .mode = 0644, 335 .proc_handler = proc_dointvec, 336 }, 337 { } 338 }; 339 340 static int __net_init xfrm6_net_init(struct net *net) 341 { 342 struct ctl_table *table; 343 struct ctl_table_header *hdr; 344 345 table = xfrm6_policy_table; 346 if (!net_eq(net, &init_net)) { 347 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL); 348 if (!table) 349 goto err_alloc; 350 351 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh; 352 } 353 354 hdr = register_net_sysctl(net, "net/ipv6", table); 355 if (!hdr) 356 goto err_reg; 357 358 net->ipv6.sysctl.xfrm6_hdr = hdr; 359 return 0; 360 361 err_reg: 362 if (!net_eq(net, &init_net)) 363 kfree(table); 364 err_alloc: 365 return -ENOMEM; 366 } 367 368 static void __net_exit xfrm6_net_exit(struct net *net) 369 { 370 struct ctl_table *table; 371 372 if (net->ipv6.sysctl.xfrm6_hdr == NULL) 373 return; 374 375 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg; 376 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr); 377 if (!net_eq(net, &init_net)) 378 kfree(table); 379 } 380 381 static struct pernet_operations xfrm6_net_ops = { 382 .init = xfrm6_net_init, 383 .exit = xfrm6_net_exit, 384 }; 385 #endif 386 387 int __init xfrm6_init(void) 388 { 389 int ret; 390 391 dst_entries_init(&xfrm6_dst_ops); 392 393 ret = xfrm6_policy_init(); 394 if (ret) { 395 dst_entries_destroy(&xfrm6_dst_ops); 396 goto out; 397 } 398 ret = xfrm6_state_init(); 399 if (ret) 400 goto out_policy; 401 402 ret = xfrm6_protocol_init(); 403 if (ret) 404 goto out_state; 405 406 #ifdef CONFIG_SYSCTL 407 register_pernet_subsys(&xfrm6_net_ops); 408 #endif 409 out: 410 return ret; 411 out_state: 412 xfrm6_state_fini(); 413 out_policy: 414 xfrm6_policy_fini(); 415 goto out; 416 } 417 418 void xfrm6_fini(void) 419 { 420 #ifdef CONFIG_SYSCTL 421 unregister_pernet_subsys(&xfrm6_net_ops); 422 #endif 423 xfrm6_protocol_fini(); 424 xfrm6_policy_fini(); 425 xfrm6_state_fini(); 426 dst_entries_destroy(&xfrm6_dst_ops); 427 } 428