route6.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* $OpenBSD: route6.c,v 1.19 2014/12/05 15:50:04 mpi Exp $ */
  2. /* $KAME: route6.c,v 1.22 2000/12/03 00:54:00 itojun Exp $ */
  3. /*
  4. * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. Neither the name of the project nor the names of its contributors
  16. * may be used to endorse or promote products derived from this software
  17. * without specific prior written permission.
  18. *
  19. * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
  20. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
  23. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  24. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  25. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  26. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  27. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  28. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  29. * SUCH DAMAGE.
  30. */
  31. #include <sys/param.h>
  32. #include <sys/mbuf.h>
  33. #include <sys/socket.h>
  34. #include <sys/systm.h>
  35. #include <net/if.h>
  36. #include <net/if_var.h>
  37. #include <netinet/in.h>
  38. #include <netinet6/in6_var.h>
  39. #include <netinet/ip6.h>
  40. #include <netinet6/ip6_var.h>
  41. #include <netinet/icmp6.h>
  42. /*
  43. * proto is unused
  44. */
  45. int
  46. route6_input(struct mbuf **mp, int *offp, int proto)
  47. {
  48. struct ip6_hdr *ip6;
  49. struct mbuf *m = *mp;
  50. struct ip6_rthdr *rh;
  51. int off = *offp, rhlen;
  52. ip6 = mtod(m, struct ip6_hdr *);
  53. IP6_EXTHDR_GET(rh, struct ip6_rthdr *, m, off, sizeof(*rh));
  54. if (rh == NULL) {
  55. ip6stat.ip6s_tooshort++;
  56. return IPPROTO_DONE;
  57. }
  58. switch (rh->ip6r_type) {
  59. case IPV6_RTHDR_TYPE_0:
  60. /*
  61. * RFC 5095 specifies to handle routing header type 0
  62. * the same way as an unrecognised routing type.
  63. */
  64. /* FALLTHROUGH */
  65. default:
  66. /* unknown routing type */
  67. if (rh->ip6r_segleft == 0) {
  68. rhlen = (rh->ip6r_len + 1) << 3;
  69. break; /* Final dst. Just ignore the header. */
  70. }
  71. ip6stat.ip6s_badoptions++;
  72. icmp6_error(m, ICMP6_PARAM_PROB, ICMP6_PARAMPROB_HEADER,
  73. (caddr_t)&rh->ip6r_type - (caddr_t)ip6);
  74. return (IPPROTO_DONE);
  75. }
  76. *offp += rhlen;
  77. return (rh->ip6r_nxt);
  78. }