| lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C)2003-2006 Helsinki University of Technology | 
|  | 3 | * Copyright (C)2003-2006 USAGI/WIDE Project | 
|  | 4 | * | 
|  | 5 | * This program is free software; you can redistribute it and/or modify | 
|  | 6 | * it under the terms of the GNU General Public License as published by | 
|  | 7 | * the Free Software Foundation; either version 2 of the License, or | 
|  | 8 | * (at your option) any later version. | 
|  | 9 | * | 
|  | 10 | * This program is distributed in the hope that it will be useful, | 
|  | 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 13 | * GNU General Public License for more details. | 
|  | 14 | * | 
|  | 15 | * You should have received a copy of the GNU General Public License | 
|  | 16 | * along with this program; if not, write to the Free Software | 
|  | 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA | 
|  | 18 | */ | 
|  | 19 | /* | 
|  | 20 | * Authors: | 
|  | 21 | *	Noriaki TAKAMIYA @USAGI | 
|  | 22 | *	Masahide NAKAMURA @USAGI | 
|  | 23 | */ | 
|  | 24 |  | 
|  | 25 | #include <linux/module.h> | 
|  | 26 | #include <linux/skbuff.h> | 
|  | 27 | #include <linux/time.h> | 
|  | 28 | #include <linux/ipv6.h> | 
|  | 29 | #include <linux/icmpv6.h> | 
|  | 30 | #include <net/sock.h> | 
|  | 31 | #include <net/ipv6.h> | 
|  | 32 | #include <net/ip6_checksum.h> | 
|  | 33 | #include <net/rawv6.h> | 
|  | 34 | #include <net/xfrm.h> | 
|  | 35 | #include <net/mip6.h> | 
|  | 36 |  | 
|  | 37 | static inline unsigned int calc_padlen(unsigned int len, unsigned int n) | 
|  | 38 | { | 
|  | 39 | return (n - len + 16) & 0x7; | 
|  | 40 | } | 
|  | 41 |  | 
|  | 42 | static inline void *mip6_padn(__u8 *data, __u8 padlen) | 
|  | 43 | { | 
|  | 44 | if (!data) | 
|  | 45 | return NULL; | 
|  | 46 | if (padlen == 1) { | 
|  | 47 | data[0] = IPV6_TLV_PAD0; | 
|  | 48 | } else if (padlen > 1) { | 
|  | 49 | data[0] = IPV6_TLV_PADN; | 
|  | 50 | data[1] = padlen - 2; | 
|  | 51 | if (padlen > 2) | 
|  | 52 | memset(data+2, 0, data[1]); | 
|  | 53 | } | 
|  | 54 | return data + padlen; | 
|  | 55 | } | 
|  | 56 |  | 
|  | 57 | static inline void mip6_param_prob(struct sk_buff *skb, u8 code, int pos) | 
|  | 58 | { | 
|  | 59 | icmpv6_send(skb, ICMPV6_PARAMPROB, code, pos); | 
|  | 60 | } | 
|  | 61 |  | 
|  | 62 | static int mip6_mh_len(int type) | 
|  | 63 | { | 
|  | 64 | int len = 0; | 
|  | 65 |  | 
|  | 66 | switch (type) { | 
|  | 67 | case IP6_MH_TYPE_BRR: | 
|  | 68 | len = 0; | 
|  | 69 | break; | 
|  | 70 | case IP6_MH_TYPE_HOTI: | 
|  | 71 | case IP6_MH_TYPE_COTI: | 
|  | 72 | case IP6_MH_TYPE_BU: | 
|  | 73 | case IP6_MH_TYPE_BACK: | 
|  | 74 | len = 1; | 
|  | 75 | break; | 
|  | 76 | case IP6_MH_TYPE_HOT: | 
|  | 77 | case IP6_MH_TYPE_COT: | 
|  | 78 | case IP6_MH_TYPE_BERROR: | 
|  | 79 | len = 2; | 
|  | 80 | break; | 
|  | 81 | } | 
|  | 82 | return len; | 
|  | 83 | } | 
|  | 84 |  | 
|  | 85 | static int mip6_mh_filter(struct sock *sk, struct sk_buff *skb) | 
|  | 86 | { | 
|  | 87 | struct ip6_mh _hdr; | 
|  | 88 | const struct ip6_mh *mh; | 
|  | 89 |  | 
|  | 90 | mh = skb_header_pointer(skb, skb_transport_offset(skb), | 
|  | 91 | sizeof(_hdr), &_hdr); | 
|  | 92 | if (!mh) | 
|  | 93 | return -1; | 
|  | 94 |  | 
|  | 95 | if (((mh->ip6mh_hdrlen + 1) << 3) > skb->len) | 
|  | 96 | return -1; | 
|  | 97 |  | 
|  | 98 | if (mh->ip6mh_hdrlen < mip6_mh_len(mh->ip6mh_type)) { | 
|  | 99 | LIMIT_NETDEBUG(KERN_DEBUG "mip6: MH message too short: %d vs >=%d\n", | 
|  | 100 | mh->ip6mh_hdrlen, mip6_mh_len(mh->ip6mh_type)); | 
|  | 101 | mip6_param_prob(skb, 0, offsetof(struct ip6_mh, ip6mh_hdrlen) + | 
|  | 102 | skb_network_header_len(skb)); | 
|  | 103 | return -1; | 
|  | 104 | } | 
|  | 105 |  | 
|  | 106 | if (mh->ip6mh_proto != IPPROTO_NONE) { | 
|  | 107 | LIMIT_NETDEBUG(KERN_DEBUG "mip6: MH invalid payload proto = %d\n", | 
|  | 108 | mh->ip6mh_proto); | 
|  | 109 | mip6_param_prob(skb, 0, offsetof(struct ip6_mh, ip6mh_proto) + | 
|  | 110 | skb_network_header_len(skb)); | 
|  | 111 | return -1; | 
|  | 112 | } | 
|  | 113 |  | 
|  | 114 | return 0; | 
|  | 115 | } | 
|  | 116 |  | 
|  | 117 | struct mip6_report_rate_limiter { | 
|  | 118 | spinlock_t lock; | 
|  | 119 | struct timeval stamp; | 
|  | 120 | int iif; | 
|  | 121 | struct in6_addr src; | 
|  | 122 | struct in6_addr dst; | 
|  | 123 | }; | 
|  | 124 |  | 
|  | 125 | static struct mip6_report_rate_limiter mip6_report_rl = { | 
|  | 126 | .lock = __SPIN_LOCK_UNLOCKED(mip6_report_rl.lock) | 
|  | 127 | }; | 
|  | 128 |  | 
|  | 129 | static int mip6_destopt_input(struct xfrm_state *x, struct sk_buff *skb) | 
|  | 130 | { | 
|  | 131 | const struct ipv6hdr *iph = ipv6_hdr(skb); | 
|  | 132 | struct ipv6_destopt_hdr *destopt = (struct ipv6_destopt_hdr *)skb->data; | 
|  | 133 | int err = destopt->nexthdr; | 
|  | 134 |  | 
|  | 135 | spin_lock(&x->lock); | 
|  | 136 | if (!ipv6_addr_equal(&iph->saddr, (struct in6_addr *)x->coaddr) && | 
|  | 137 | !ipv6_addr_any((struct in6_addr *)x->coaddr)) | 
|  | 138 | err = -ENOENT; | 
|  | 139 | spin_unlock(&x->lock); | 
|  | 140 |  | 
|  | 141 | return err; | 
|  | 142 | } | 
|  | 143 |  | 
|  | 144 | /* Destination Option Header is inserted. | 
|  | 145 | * IP Header's src address is replaced with Home Address Option in | 
|  | 146 | * Destination Option Header. | 
|  | 147 | */ | 
|  | 148 | static int mip6_destopt_output(struct xfrm_state *x, struct sk_buff *skb) | 
|  | 149 | { | 
|  | 150 | struct ipv6hdr *iph; | 
|  | 151 | struct ipv6_destopt_hdr *dstopt; | 
|  | 152 | struct ipv6_destopt_hao *hao; | 
|  | 153 | u8 nexthdr; | 
|  | 154 | int len; | 
|  | 155 |  | 
|  | 156 | skb_push(skb, -skb_network_offset(skb)); | 
|  | 157 | iph = ipv6_hdr(skb); | 
|  | 158 |  | 
|  | 159 | nexthdr = *skb_mac_header(skb); | 
|  | 160 | *skb_mac_header(skb) = IPPROTO_DSTOPTS; | 
|  | 161 |  | 
|  | 162 | dstopt = (struct ipv6_destopt_hdr *)skb_transport_header(skb); | 
|  | 163 | dstopt->nexthdr = nexthdr; | 
|  | 164 |  | 
|  | 165 | hao = mip6_padn((char *)(dstopt + 1), | 
|  | 166 | calc_padlen(sizeof(*dstopt), 6)); | 
|  | 167 |  | 
|  | 168 | hao->type = IPV6_TLV_HAO; | 
|  | 169 | BUILD_BUG_ON(sizeof(*hao) != 18); | 
|  | 170 | hao->length = sizeof(*hao) - 2; | 
|  | 171 |  | 
|  | 172 | len = ((char *)hao - (char *)dstopt) + sizeof(*hao); | 
|  | 173 |  | 
|  | 174 | memcpy(&hao->addr, &iph->saddr, sizeof(hao->addr)); | 
|  | 175 | spin_lock_bh(&x->lock); | 
|  | 176 | memcpy(&iph->saddr, x->coaddr, sizeof(iph->saddr)); | 
|  | 177 | spin_unlock_bh(&x->lock); | 
|  | 178 |  | 
|  | 179 | WARN_ON(len != x->props.header_len); | 
|  | 180 | dstopt->hdrlen = (x->props.header_len >> 3) - 1; | 
|  | 181 |  | 
|  | 182 | return 0; | 
|  | 183 | } | 
|  | 184 |  | 
|  | 185 | static inline int mip6_report_rl_allow(struct timeval *stamp, | 
|  | 186 | const struct in6_addr *dst, | 
|  | 187 | const struct in6_addr *src, int iif) | 
|  | 188 | { | 
|  | 189 | int allow = 0; | 
|  | 190 |  | 
|  | 191 | spin_lock_bh(&mip6_report_rl.lock); | 
|  | 192 | if (mip6_report_rl.stamp.tv_sec != stamp->tv_sec || | 
|  | 193 | mip6_report_rl.stamp.tv_usec != stamp->tv_usec || | 
|  | 194 | mip6_report_rl.iif != iif || | 
|  | 195 | !ipv6_addr_equal(&mip6_report_rl.src, src) || | 
|  | 196 | !ipv6_addr_equal(&mip6_report_rl.dst, dst)) { | 
|  | 197 | mip6_report_rl.stamp.tv_sec = stamp->tv_sec; | 
|  | 198 | mip6_report_rl.stamp.tv_usec = stamp->tv_usec; | 
|  | 199 | mip6_report_rl.iif = iif; | 
|  | 200 | mip6_report_rl.src = *src; | 
|  | 201 | mip6_report_rl.dst = *dst; | 
|  | 202 | allow = 1; | 
|  | 203 | } | 
|  | 204 | spin_unlock_bh(&mip6_report_rl.lock); | 
|  | 205 | return allow; | 
|  | 206 | } | 
|  | 207 |  | 
|  | 208 | static int mip6_destopt_reject(struct xfrm_state *x, struct sk_buff *skb, | 
|  | 209 | const struct flowi *fl) | 
|  | 210 | { | 
|  | 211 | struct net *net = xs_net(x); | 
|  | 212 | struct inet6_skb_parm *opt = (struct inet6_skb_parm *)skb->cb; | 
|  | 213 | const struct flowi6 *fl6 = &fl->u.ip6; | 
|  | 214 | struct ipv6_destopt_hao *hao = NULL; | 
|  | 215 | struct xfrm_selector sel; | 
|  | 216 | int offset; | 
|  | 217 | struct timeval stamp; | 
|  | 218 | int err = 0; | 
|  | 219 |  | 
|  | 220 | if (unlikely(fl6->flowi6_proto == IPPROTO_MH && | 
|  | 221 | fl6->fl6_mh_type <= IP6_MH_TYPE_MAX)) | 
|  | 222 | goto out; | 
|  | 223 |  | 
|  | 224 | if (likely(opt->dsthao)) { | 
|  | 225 | offset = ipv6_find_tlv(skb, opt->dsthao, IPV6_TLV_HAO); | 
|  | 226 | if (likely(offset >= 0)) | 
|  | 227 | hao = (struct ipv6_destopt_hao *) | 
|  | 228 | (skb_network_header(skb) + offset); | 
|  | 229 | } | 
|  | 230 |  | 
|  | 231 | skb_get_timestamp(skb, &stamp); | 
|  | 232 |  | 
|  | 233 | if (!mip6_report_rl_allow(&stamp, &ipv6_hdr(skb)->daddr, | 
|  | 234 | hao ? &hao->addr : &ipv6_hdr(skb)->saddr, | 
|  | 235 | opt->iif)) | 
|  | 236 | goto out; | 
|  | 237 |  | 
|  | 238 | memset(&sel, 0, sizeof(sel)); | 
|  | 239 | memcpy(&sel.daddr, (xfrm_address_t *)&ipv6_hdr(skb)->daddr, | 
|  | 240 | sizeof(sel.daddr)); | 
|  | 241 | sel.prefixlen_d = 128; | 
|  | 242 | memcpy(&sel.saddr, (xfrm_address_t *)&ipv6_hdr(skb)->saddr, | 
|  | 243 | sizeof(sel.saddr)); | 
|  | 244 | sel.prefixlen_s = 128; | 
|  | 245 | sel.family = AF_INET6; | 
|  | 246 | sel.proto = fl6->flowi6_proto; | 
|  | 247 | sel.dport = xfrm_flowi_dport(fl, &fl6->uli); | 
|  | 248 | if (sel.dport) | 
|  | 249 | sel.dport_mask = htons(~0); | 
|  | 250 | sel.sport = xfrm_flowi_sport(fl, &fl6->uli); | 
|  | 251 | if (sel.sport) | 
|  | 252 | sel.sport_mask = htons(~0); | 
|  | 253 | sel.ifindex = fl6->flowi6_oif; | 
|  | 254 |  | 
|  | 255 | err = km_report(net, IPPROTO_DSTOPTS, &sel, | 
|  | 256 | (hao ? (xfrm_address_t *)&hao->addr : NULL)); | 
|  | 257 |  | 
|  | 258 | out: | 
|  | 259 | return err; | 
|  | 260 | } | 
|  | 261 |  | 
|  | 262 | static int mip6_destopt_offset(struct xfrm_state *x, struct sk_buff *skb, | 
|  | 263 | u8 **nexthdr) | 
|  | 264 | { | 
|  | 265 | u16 offset = sizeof(struct ipv6hdr); | 
|  | 266 | struct ipv6_opt_hdr *exthdr = | 
|  | 267 | (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1); | 
|  | 268 | const unsigned char *nh = skb_network_header(skb); | 
|  | 269 | unsigned int packet_len = skb->tail - skb->network_header; | 
|  | 270 | int found_rhdr = 0; | 
|  | 271 |  | 
|  | 272 | *nexthdr = &ipv6_hdr(skb)->nexthdr; | 
|  | 273 |  | 
|  | 274 | while (offset + 1 <= packet_len) { | 
|  | 275 |  | 
|  | 276 | switch (**nexthdr) { | 
|  | 277 | case NEXTHDR_HOP: | 
|  | 278 | break; | 
|  | 279 | case NEXTHDR_ROUTING: | 
|  | 280 | found_rhdr = 1; | 
|  | 281 | break; | 
|  | 282 | case NEXTHDR_DEST: | 
|  | 283 | /* | 
|  | 284 | * HAO MUST NOT appear more than once. | 
|  | 285 | * XXX: It is better to try to find by the end of | 
|  | 286 | * XXX: packet if HAO exists. | 
|  | 287 | */ | 
|  | 288 | if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0) { | 
|  | 289 | LIMIT_NETDEBUG(KERN_WARNING "mip6: hao exists already, override\n"); | 
|  | 290 | return offset; | 
|  | 291 | } | 
|  | 292 |  | 
|  | 293 | if (found_rhdr) | 
|  | 294 | return offset; | 
|  | 295 |  | 
|  | 296 | break; | 
|  | 297 | default: | 
|  | 298 | return offset; | 
|  | 299 | } | 
|  | 300 |  | 
|  | 301 | offset += ipv6_optlen(exthdr); | 
|  | 302 | *nexthdr = &exthdr->nexthdr; | 
|  | 303 | exthdr = (struct ipv6_opt_hdr *)(nh + offset); | 
|  | 304 | } | 
|  | 305 |  | 
|  | 306 | return offset; | 
|  | 307 | } | 
|  | 308 |  | 
|  | 309 | static int mip6_destopt_init_state(struct xfrm_state *x) | 
|  | 310 | { | 
|  | 311 | if (x->id.spi) { | 
|  | 312 | printk(KERN_INFO "%s: spi is not 0: %u\n", __func__, | 
|  | 313 | x->id.spi); | 
|  | 314 | return -EINVAL; | 
|  | 315 | } | 
|  | 316 | if (x->props.mode != XFRM_MODE_ROUTEOPTIMIZATION) { | 
|  | 317 | printk(KERN_INFO "%s: state's mode is not %u: %u\n", | 
|  | 318 | __func__, XFRM_MODE_ROUTEOPTIMIZATION, x->props.mode); | 
|  | 319 | return -EINVAL; | 
|  | 320 | } | 
|  | 321 |  | 
|  | 322 | x->props.header_len = sizeof(struct ipv6_destopt_hdr) + | 
|  | 323 | calc_padlen(sizeof(struct ipv6_destopt_hdr), 6) + | 
|  | 324 | sizeof(struct ipv6_destopt_hao); | 
|  | 325 | WARN_ON(x->props.header_len != 24); | 
|  | 326 |  | 
|  | 327 | return 0; | 
|  | 328 | } | 
|  | 329 |  | 
|  | 330 | /* | 
|  | 331 | * Do nothing about destroying since it has no specific operation for | 
|  | 332 | * destination options header unlike IPsec protocols. | 
|  | 333 | */ | 
|  | 334 | static void mip6_destopt_destroy(struct xfrm_state *x) | 
|  | 335 | { | 
|  | 336 | } | 
|  | 337 |  | 
|  | 338 | static const struct xfrm_type mip6_destopt_type = | 
|  | 339 | { | 
|  | 340 | .description	= "MIP6DESTOPT", | 
|  | 341 | .owner		= THIS_MODULE, | 
|  | 342 | .proto	     	= IPPROTO_DSTOPTS, | 
|  | 343 | .flags		= XFRM_TYPE_NON_FRAGMENT | XFRM_TYPE_LOCAL_COADDR, | 
|  | 344 | .init_state	= mip6_destopt_init_state, | 
|  | 345 | .destructor	= mip6_destopt_destroy, | 
|  | 346 | .input		= mip6_destopt_input, | 
|  | 347 | .output		= mip6_destopt_output, | 
|  | 348 | .reject		= mip6_destopt_reject, | 
|  | 349 | .hdr_offset	= mip6_destopt_offset, | 
|  | 350 | }; | 
|  | 351 |  | 
|  | 352 | static int mip6_rthdr_input(struct xfrm_state *x, struct sk_buff *skb) | 
|  | 353 | { | 
|  | 354 | const struct ipv6hdr *iph = ipv6_hdr(skb); | 
|  | 355 | struct rt2_hdr *rt2 = (struct rt2_hdr *)skb->data; | 
|  | 356 | int err = rt2->rt_hdr.nexthdr; | 
|  | 357 |  | 
|  | 358 | spin_lock(&x->lock); | 
|  | 359 | if (!ipv6_addr_equal(&iph->daddr, (struct in6_addr *)x->coaddr) && | 
|  | 360 | !ipv6_addr_any((struct in6_addr *)x->coaddr)) | 
|  | 361 | err = -ENOENT; | 
|  | 362 | spin_unlock(&x->lock); | 
|  | 363 |  | 
|  | 364 | return err; | 
|  | 365 | } | 
|  | 366 |  | 
|  | 367 | /* Routing Header type 2 is inserted. | 
|  | 368 | * IP Header's dst address is replaced with Routing Header's Home Address. | 
|  | 369 | */ | 
|  | 370 | static int mip6_rthdr_output(struct xfrm_state *x, struct sk_buff *skb) | 
|  | 371 | { | 
|  | 372 | struct ipv6hdr *iph; | 
|  | 373 | struct rt2_hdr *rt2; | 
|  | 374 | u8 nexthdr; | 
|  | 375 |  | 
|  | 376 | skb_push(skb, -skb_network_offset(skb)); | 
|  | 377 | iph = ipv6_hdr(skb); | 
|  | 378 |  | 
|  | 379 | nexthdr = *skb_mac_header(skb); | 
|  | 380 | *skb_mac_header(skb) = IPPROTO_ROUTING; | 
|  | 381 |  | 
|  | 382 | rt2 = (struct rt2_hdr *)skb_transport_header(skb); | 
|  | 383 | rt2->rt_hdr.nexthdr = nexthdr; | 
|  | 384 | rt2->rt_hdr.hdrlen = (x->props.header_len >> 3) - 1; | 
|  | 385 | rt2->rt_hdr.type = IPV6_SRCRT_TYPE_2; | 
|  | 386 | rt2->rt_hdr.segments_left = 1; | 
|  | 387 | memset(&rt2->reserved, 0, sizeof(rt2->reserved)); | 
|  | 388 |  | 
|  | 389 | WARN_ON(rt2->rt_hdr.hdrlen != 2); | 
|  | 390 |  | 
|  | 391 | memcpy(&rt2->addr, &iph->daddr, sizeof(rt2->addr)); | 
|  | 392 | spin_lock_bh(&x->lock); | 
|  | 393 | memcpy(&iph->daddr, x->coaddr, sizeof(iph->daddr)); | 
|  | 394 | spin_unlock_bh(&x->lock); | 
|  | 395 |  | 
|  | 396 | return 0; | 
|  | 397 | } | 
|  | 398 |  | 
|  | 399 | static int mip6_rthdr_offset(struct xfrm_state *x, struct sk_buff *skb, | 
|  | 400 | u8 **nexthdr) | 
|  | 401 | { | 
|  | 402 | u16 offset = sizeof(struct ipv6hdr); | 
|  | 403 | struct ipv6_opt_hdr *exthdr = | 
|  | 404 | (struct ipv6_opt_hdr *)(ipv6_hdr(skb) + 1); | 
|  | 405 | const unsigned char *nh = skb_network_header(skb); | 
|  | 406 | unsigned int packet_len = skb->tail - skb->network_header; | 
|  | 407 | int found_rhdr = 0; | 
|  | 408 |  | 
|  | 409 | *nexthdr = &ipv6_hdr(skb)->nexthdr; | 
|  | 410 |  | 
|  | 411 | while (offset + 1 <= packet_len) { | 
|  | 412 |  | 
|  | 413 | switch (**nexthdr) { | 
|  | 414 | case NEXTHDR_HOP: | 
|  | 415 | break; | 
|  | 416 | case NEXTHDR_ROUTING: | 
|  | 417 | if (offset + 3 <= packet_len) { | 
|  | 418 | struct ipv6_rt_hdr *rt; | 
|  | 419 | rt = (struct ipv6_rt_hdr *)(nh + offset); | 
|  | 420 | if (rt->type != 0) | 
|  | 421 | return offset; | 
|  | 422 | } | 
|  | 423 | found_rhdr = 1; | 
|  | 424 | break; | 
|  | 425 | case NEXTHDR_DEST: | 
|  | 426 | if (ipv6_find_tlv(skb, offset, IPV6_TLV_HAO) >= 0) | 
|  | 427 | return offset; | 
|  | 428 |  | 
|  | 429 | if (found_rhdr) | 
|  | 430 | return offset; | 
|  | 431 |  | 
|  | 432 | break; | 
|  | 433 | default: | 
|  | 434 | return offset; | 
|  | 435 | } | 
|  | 436 |  | 
|  | 437 | offset += ipv6_optlen(exthdr); | 
|  | 438 | *nexthdr = &exthdr->nexthdr; | 
|  | 439 | exthdr = (struct ipv6_opt_hdr *)(nh + offset); | 
|  | 440 | } | 
|  | 441 |  | 
|  | 442 | return offset; | 
|  | 443 | } | 
|  | 444 |  | 
|  | 445 | static int mip6_rthdr_init_state(struct xfrm_state *x) | 
|  | 446 | { | 
|  | 447 | if (x->id.spi) { | 
|  | 448 | printk(KERN_INFO "%s: spi is not 0: %u\n", __func__, | 
|  | 449 | x->id.spi); | 
|  | 450 | return -EINVAL; | 
|  | 451 | } | 
|  | 452 | if (x->props.mode != XFRM_MODE_ROUTEOPTIMIZATION) { | 
|  | 453 | printk(KERN_INFO "%s: state's mode is not %u: %u\n", | 
|  | 454 | __func__, XFRM_MODE_ROUTEOPTIMIZATION, x->props.mode); | 
|  | 455 | return -EINVAL; | 
|  | 456 | } | 
|  | 457 |  | 
|  | 458 | x->props.header_len = sizeof(struct rt2_hdr); | 
|  | 459 |  | 
|  | 460 | return 0; | 
|  | 461 | } | 
|  | 462 |  | 
|  | 463 | /* | 
|  | 464 | * Do nothing about destroying since it has no specific operation for routing | 
|  | 465 | * header type 2 unlike IPsec protocols. | 
|  | 466 | */ | 
|  | 467 | static void mip6_rthdr_destroy(struct xfrm_state *x) | 
|  | 468 | { | 
|  | 469 | } | 
|  | 470 |  | 
|  | 471 | static const struct xfrm_type mip6_rthdr_type = | 
|  | 472 | { | 
|  | 473 | .description	= "MIP6RT", | 
|  | 474 | .owner		= THIS_MODULE, | 
|  | 475 | .proto	     	= IPPROTO_ROUTING, | 
|  | 476 | .flags		= XFRM_TYPE_NON_FRAGMENT | XFRM_TYPE_REMOTE_COADDR, | 
|  | 477 | .init_state	= mip6_rthdr_init_state, | 
|  | 478 | .destructor	= mip6_rthdr_destroy, | 
|  | 479 | .input		= mip6_rthdr_input, | 
|  | 480 | .output		= mip6_rthdr_output, | 
|  | 481 | .hdr_offset	= mip6_rthdr_offset, | 
|  | 482 | }; | 
|  | 483 |  | 
|  | 484 | static int __init mip6_init(void) | 
|  | 485 | { | 
|  | 486 | printk(KERN_INFO "Mobile IPv6\n"); | 
|  | 487 |  | 
|  | 488 | if (xfrm_register_type(&mip6_destopt_type, AF_INET6) < 0) { | 
|  | 489 | printk(KERN_INFO "%s: can't add xfrm type(destopt)\n", __func__); | 
|  | 490 | goto mip6_destopt_xfrm_fail; | 
|  | 491 | } | 
|  | 492 | if (xfrm_register_type(&mip6_rthdr_type, AF_INET6) < 0) { | 
|  | 493 | printk(KERN_INFO "%s: can't add xfrm type(rthdr)\n", __func__); | 
|  | 494 | goto mip6_rthdr_xfrm_fail; | 
|  | 495 | } | 
|  | 496 | if (rawv6_mh_filter_register(mip6_mh_filter) < 0) { | 
|  | 497 | printk(KERN_INFO "%s: can't add rawv6 mh filter\n", __func__); | 
|  | 498 | goto mip6_rawv6_mh_fail; | 
|  | 499 | } | 
|  | 500 |  | 
|  | 501 |  | 
|  | 502 | return 0; | 
|  | 503 |  | 
|  | 504 | mip6_rawv6_mh_fail: | 
|  | 505 | xfrm_unregister_type(&mip6_rthdr_type, AF_INET6); | 
|  | 506 | mip6_rthdr_xfrm_fail: | 
|  | 507 | xfrm_unregister_type(&mip6_destopt_type, AF_INET6); | 
|  | 508 | mip6_destopt_xfrm_fail: | 
|  | 509 | return -EAGAIN; | 
|  | 510 | } | 
|  | 511 |  | 
|  | 512 | static void __exit mip6_fini(void) | 
|  | 513 | { | 
|  | 514 | if (rawv6_mh_filter_unregister(mip6_mh_filter) < 0) | 
|  | 515 | printk(KERN_INFO "%s: can't remove rawv6 mh filter\n", __func__); | 
|  | 516 | if (xfrm_unregister_type(&mip6_rthdr_type, AF_INET6) < 0) | 
|  | 517 | printk(KERN_INFO "%s: can't remove xfrm type(rthdr)\n", __func__); | 
|  | 518 | if (xfrm_unregister_type(&mip6_destopt_type, AF_INET6) < 0) | 
|  | 519 | printk(KERN_INFO "%s: can't remove xfrm type(destopt)\n", __func__); | 
|  | 520 | } | 
|  | 521 |  | 
|  | 522 | module_init(mip6_init); | 
|  | 523 | module_exit(mip6_fini); | 
|  | 524 |  | 
|  | 525 | MODULE_LICENSE("GPL"); | 
|  | 526 | MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_DSTOPTS); | 
|  | 527 | MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_ROUTING); |