exthdrs_core.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * IPv6 library code, needed by static components when full IPv6 support is
  3. * not configured or static.
  4. */
  5. #include <net/ipv6.h>
  6. /*
  7. * find out if nexthdr is a well-known extension header or a protocol
  8. */
  9. int ipv6_ext_hdr(u8 nexthdr)
  10. {
  11. /*
  12. * find out if nexthdr is an extension header or a protocol
  13. */
  14. return (nexthdr == NEXTHDR_HOP) ||
  15. (nexthdr == NEXTHDR_ROUTING) ||
  16. (nexthdr == NEXTHDR_FRAGMENT) ||
  17. (nexthdr == NEXTHDR_AUTH) ||
  18. (nexthdr == NEXTHDR_NONE) ||
  19. (nexthdr == NEXTHDR_DEST);
  20. }
  21. /*
  22. * Skip any extension headers. This is used by the ICMP module.
  23. *
  24. * Note that strictly speaking this conflicts with RFC 2460 4.0:
  25. * ...The contents and semantics of each extension header determine whether
  26. * or not to proceed to the next header. Therefore, extension headers must
  27. * be processed strictly in the order they appear in the packet; a
  28. * receiver must not, for example, scan through a packet looking for a
  29. * particular kind of extension header and process that header prior to
  30. * processing all preceding ones.
  31. *
  32. * We do exactly this. This is a protocol bug. We can't decide after a
  33. * seeing an unknown discard-with-error flavour TLV option if it's a
  34. * ICMP error message or not (errors should never be send in reply to
  35. * ICMP error messages).
  36. *
  37. * But I see no other way to do this. This might need to be reexamined
  38. * when Linux implements ESP (and maybe AUTH) headers.
  39. * --AK
  40. *
  41. * This function parses (probably truncated) exthdr set "hdr".
  42. * "nexthdrp" initially points to some place,
  43. * where type of the first header can be found.
  44. *
  45. * It skips all well-known exthdrs, and returns pointer to the start
  46. * of unparsable area i.e. the first header with unknown type.
  47. * If it is not NULL *nexthdr is updated by type/protocol of this header.
  48. *
  49. * NOTES: - if packet terminated with NEXTHDR_NONE it returns NULL.
  50. * - it may return pointer pointing beyond end of packet,
  51. * if the last recognized header is truncated in the middle.
  52. * - if packet is truncated, so that all parsed headers are skipped,
  53. * it returns NULL.
  54. * - First fragment header is skipped, not-first ones
  55. * are considered as unparsable.
  56. * - ESP is unparsable for now and considered like
  57. * normal payload protocol.
  58. * - Note also special handling of AUTH header. Thanks to IPsec wizards.
  59. *
  60. * --ANK (980726)
  61. */
  62. int ipv6_skip_exthdr(const struct sk_buff *skb, int start, u8 *nexthdrp)
  63. {
  64. u8 nexthdr = *nexthdrp;
  65. while (ipv6_ext_hdr(nexthdr)) {
  66. struct ipv6_opt_hdr _hdr, *hp;
  67. int hdrlen;
  68. if (nexthdr == NEXTHDR_NONE)
  69. return -1;
  70. hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr);
  71. if (hp == NULL)
  72. return -1;
  73. if (nexthdr == NEXTHDR_FRAGMENT) {
  74. __be16 _frag_off, *fp;
  75. fp = skb_header_pointer(skb,
  76. start+offsetof(struct frag_hdr,
  77. frag_off),
  78. sizeof(_frag_off),
  79. &_frag_off);
  80. if (fp == NULL)
  81. return -1;
  82. if (ntohs(*fp) & ~0x7)
  83. break;
  84. hdrlen = 8;
  85. } else if (nexthdr == NEXTHDR_AUTH)
  86. hdrlen = (hp->hdrlen+2)<<2;
  87. else
  88. hdrlen = ipv6_optlen(hp);
  89. nexthdr = hp->nexthdr;
  90. start += hdrlen;
  91. }
  92. *nexthdrp = nexthdr;
  93. return start;
  94. }
  95. EXPORT_SYMBOL(ipv6_ext_hdr);
  96. EXPORT_SYMBOL(ipv6_skip_exthdr);