ipv6.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992
  1. /*
  2. * Linux INET6 implementation
  3. *
  4. * Authors:
  5. * Pedro Roque <roque@di.fc.ul.pt>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #ifndef _NET_IPV6_H
  13. #define _NET_IPV6_H
  14. #include <linux/ipv6.h>
  15. #include <linux/hardirq.h>
  16. #include <linux/jhash.h>
  17. #include <net/if_inet6.h>
  18. #include <net/ndisc.h>
  19. #include <net/flow.h>
  20. #include <net/flow_dissector.h>
  21. #include <net/snmp.h>
  22. #define SIN6_LEN_RFC2133 24
  23. #define IPV6_MAXPLEN 65535
  24. /*
  25. * NextHeader field of IPv6 header
  26. */
  27. #define NEXTHDR_HOP 0 /* Hop-by-hop option header. */
  28. #define NEXTHDR_TCP 6 /* TCP segment. */
  29. #define NEXTHDR_UDP 17 /* UDP message. */
  30. #define NEXTHDR_IPV6 41 /* IPv6 in IPv6 */
  31. #define NEXTHDR_ROUTING 43 /* Routing header. */
  32. #define NEXTHDR_FRAGMENT 44 /* Fragmentation/reassembly header. */
  33. #define NEXTHDR_GRE 47 /* GRE header. */
  34. #define NEXTHDR_ESP 50 /* Encapsulating security payload. */
  35. #define NEXTHDR_AUTH 51 /* Authentication header. */
  36. #define NEXTHDR_ICMP 58 /* ICMP for IPv6. */
  37. #define NEXTHDR_NONE 59 /* No next header */
  38. #define NEXTHDR_DEST 60 /* Destination options header. */
  39. #define NEXTHDR_SCTP 132 /* SCTP message. */
  40. #define NEXTHDR_MOBILITY 135 /* Mobility header. */
  41. #define NEXTHDR_MAX 255
  42. #define IPV6_DEFAULT_HOPLIMIT 64
  43. #define IPV6_DEFAULT_MCASTHOPS 1
  44. /*
  45. * Addr type
  46. *
  47. * type - unicast | multicast
  48. * scope - local | site | global
  49. * v4 - compat
  50. * v4mapped
  51. * any
  52. * loopback
  53. */
  54. #define IPV6_ADDR_ANY 0x0000U
  55. #define IPV6_ADDR_UNICAST 0x0001U
  56. #define IPV6_ADDR_MULTICAST 0x0002U
  57. #define IPV6_ADDR_LOOPBACK 0x0010U
  58. #define IPV6_ADDR_LINKLOCAL 0x0020U
  59. #define IPV6_ADDR_SITELOCAL 0x0040U
  60. #define IPV6_ADDR_COMPATv4 0x0080U
  61. #define IPV6_ADDR_SCOPE_MASK 0x00f0U
  62. #define IPV6_ADDR_MAPPED 0x1000U
  63. /*
  64. * Addr scopes
  65. */
  66. #define IPV6_ADDR_MC_SCOPE(a) \
  67. ((a)->s6_addr[1] & 0x0f) /* nonstandard */
  68. #define __IPV6_ADDR_SCOPE_INVALID -1
  69. #define IPV6_ADDR_SCOPE_NODELOCAL 0x01
  70. #define IPV6_ADDR_SCOPE_LINKLOCAL 0x02
  71. #define IPV6_ADDR_SCOPE_SITELOCAL 0x05
  72. #define IPV6_ADDR_SCOPE_ORGLOCAL 0x08
  73. #define IPV6_ADDR_SCOPE_GLOBAL 0x0e
  74. /*
  75. * Addr flags
  76. */
  77. #define IPV6_ADDR_MC_FLAG_TRANSIENT(a) \
  78. ((a)->s6_addr[1] & 0x10)
  79. #define IPV6_ADDR_MC_FLAG_PREFIX(a) \
  80. ((a)->s6_addr[1] & 0x20)
  81. #define IPV6_ADDR_MC_FLAG_RENDEZVOUS(a) \
  82. ((a)->s6_addr[1] & 0x40)
  83. /*
  84. * fragmentation header
  85. */
  86. struct frag_hdr {
  87. __u8 nexthdr;
  88. __u8 reserved;
  89. __be16 frag_off;
  90. __be32 identification;
  91. };
  92. #define IP6_MF 0x0001
  93. #define IP6_OFFSET 0xFFF8
  94. #define IP6_REPLY_MARK(net, mark) \
  95. ((net)->ipv6.sysctl.fwmark_reflect ? (mark) : 0)
  96. #include <net/sock.h>
  97. /* sysctls */
  98. extern int sysctl_mld_max_msf;
  99. extern int sysctl_mld_qrv;
  100. #define _DEVINC(net, statname, modifier, idev, field) \
  101. ({ \
  102. struct inet6_dev *_idev = (idev); \
  103. if (likely(_idev != NULL)) \
  104. SNMP_INC_STATS##modifier((_idev)->stats.statname, (field)); \
  105. SNMP_INC_STATS##modifier((net)->mib.statname##_statistics, (field));\
  106. })
  107. /* per device counters are atomic_long_t */
  108. #define _DEVINCATOMIC(net, statname, modifier, idev, field) \
  109. ({ \
  110. struct inet6_dev *_idev = (idev); \
  111. if (likely(_idev != NULL)) \
  112. SNMP_INC_STATS_ATOMIC_LONG((_idev)->stats.statname##dev, (field)); \
  113. SNMP_INC_STATS##modifier((net)->mib.statname##_statistics, (field));\
  114. })
  115. /* per device and per net counters are atomic_long_t */
  116. #define _DEVINC_ATOMIC_ATOMIC(net, statname, idev, field) \
  117. ({ \
  118. struct inet6_dev *_idev = (idev); \
  119. if (likely(_idev != NULL)) \
  120. SNMP_INC_STATS_ATOMIC_LONG((_idev)->stats.statname##dev, (field)); \
  121. SNMP_INC_STATS_ATOMIC_LONG((net)->mib.statname##_statistics, (field));\
  122. })
  123. #define _DEVADD(net, statname, modifier, idev, field, val) \
  124. ({ \
  125. struct inet6_dev *_idev = (idev); \
  126. if (likely(_idev != NULL)) \
  127. SNMP_ADD_STATS##modifier((_idev)->stats.statname, (field), (val)); \
  128. SNMP_ADD_STATS##modifier((net)->mib.statname##_statistics, (field), (val));\
  129. })
  130. #define _DEVUPD(net, statname, modifier, idev, field, val) \
  131. ({ \
  132. struct inet6_dev *_idev = (idev); \
  133. if (likely(_idev != NULL)) \
  134. SNMP_UPD_PO_STATS##modifier((_idev)->stats.statname, field, (val)); \
  135. SNMP_UPD_PO_STATS##modifier((net)->mib.statname##_statistics, field, (val));\
  136. })
  137. /* MIBs */
  138. #define IP6_INC_STATS(net, idev,field) \
  139. _DEVINC(net, ipv6, 64, idev, field)
  140. #define IP6_INC_STATS_BH(net, idev,field) \
  141. _DEVINC(net, ipv6, 64_BH, idev, field)
  142. #define IP6_ADD_STATS(net, idev,field,val) \
  143. _DEVADD(net, ipv6, 64, idev, field, val)
  144. #define IP6_ADD_STATS_BH(net, idev,field,val) \
  145. _DEVADD(net, ipv6, 64_BH, idev, field, val)
  146. #define IP6_UPD_PO_STATS(net, idev,field,val) \
  147. _DEVUPD(net, ipv6, 64, idev, field, val)
  148. #define IP6_UPD_PO_STATS_BH(net, idev,field,val) \
  149. _DEVUPD(net, ipv6, 64_BH, idev, field, val)
  150. #define ICMP6_INC_STATS(net, idev, field) \
  151. _DEVINCATOMIC(net, icmpv6, , idev, field)
  152. #define ICMP6_INC_STATS_BH(net, idev, field) \
  153. _DEVINCATOMIC(net, icmpv6, _BH, idev, field)
  154. #define ICMP6MSGOUT_INC_STATS(net, idev, field) \
  155. _DEVINC_ATOMIC_ATOMIC(net, icmpv6msg, idev, field +256)
  156. #define ICMP6MSGOUT_INC_STATS_BH(net, idev, field) \
  157. _DEVINC_ATOMIC_ATOMIC(net, icmpv6msg, idev, field +256)
  158. #define ICMP6MSGIN_INC_STATS_BH(net, idev, field) \
  159. _DEVINC_ATOMIC_ATOMIC(net, icmpv6msg, idev, field)
  160. struct ip6_ra_chain {
  161. struct ip6_ra_chain *next;
  162. struct sock *sk;
  163. int sel;
  164. void (*destructor)(struct sock *);
  165. };
  166. extern struct ip6_ra_chain *ip6_ra_chain;
  167. extern rwlock_t ip6_ra_lock;
  168. /*
  169. This structure is prepared by protocol, when parsing
  170. ancillary data and passed to IPv6.
  171. */
  172. struct ipv6_txoptions {
  173. atomic_t refcnt;
  174. /* Length of this structure */
  175. int tot_len;
  176. /* length of extension headers */
  177. __u16 opt_flen; /* after fragment hdr */
  178. __u16 opt_nflen; /* before fragment hdr */
  179. struct ipv6_opt_hdr *hopopt;
  180. struct ipv6_opt_hdr *dst0opt;
  181. struct ipv6_rt_hdr *srcrt; /* Routing Header */
  182. struct ipv6_opt_hdr *dst1opt;
  183. struct rcu_head rcu;
  184. /* Option buffer, as read by IPV6_PKTOPTIONS, starts here. */
  185. };
  186. struct ip6_flowlabel {
  187. struct ip6_flowlabel __rcu *next;
  188. __be32 label;
  189. atomic_t users;
  190. struct in6_addr dst;
  191. struct ipv6_txoptions *opt;
  192. unsigned long linger;
  193. struct rcu_head rcu;
  194. u8 share;
  195. union {
  196. struct pid *pid;
  197. kuid_t uid;
  198. } owner;
  199. unsigned long lastuse;
  200. unsigned long expires;
  201. struct net *fl_net;
  202. };
  203. #define IPV6_FLOWINFO_MASK cpu_to_be32(0x0FFFFFFF)
  204. #define IPV6_FLOWLABEL_MASK cpu_to_be32(0x000FFFFF)
  205. #define IPV6_FLOWLABEL_STATELESS_FLAG cpu_to_be32(0x00080000)
  206. #define IPV6_TCLASS_MASK (IPV6_FLOWINFO_MASK & ~IPV6_FLOWLABEL_MASK)
  207. #define IPV6_TCLASS_SHIFT 20
  208. struct ipv6_fl_socklist {
  209. struct ipv6_fl_socklist __rcu *next;
  210. struct ip6_flowlabel *fl;
  211. struct rcu_head rcu;
  212. };
  213. static inline struct ipv6_txoptions *txopt_get(const struct ipv6_pinfo *np)
  214. {
  215. struct ipv6_txoptions *opt;
  216. rcu_read_lock();
  217. opt = rcu_dereference(np->opt);
  218. if (opt && !atomic_inc_not_zero(&opt->refcnt))
  219. opt = NULL;
  220. rcu_read_unlock();
  221. return opt;
  222. }
  223. static inline void txopt_put(struct ipv6_txoptions *opt)
  224. {
  225. if (opt && atomic_dec_and_test(&opt->refcnt))
  226. kfree_rcu(opt, rcu);
  227. }
  228. struct ip6_flowlabel *fl6_sock_lookup(struct sock *sk, __be32 label);
  229. struct ipv6_txoptions *fl6_merge_options(struct ipv6_txoptions *opt_space,
  230. struct ip6_flowlabel *fl,
  231. struct ipv6_txoptions *fopt);
  232. void fl6_free_socklist(struct sock *sk);
  233. int ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen);
  234. int ipv6_flowlabel_opt_get(struct sock *sk, struct in6_flowlabel_req *freq,
  235. int flags);
  236. int ip6_flowlabel_init(void);
  237. void ip6_flowlabel_cleanup(void);
  238. bool ip6_autoflowlabel(struct net *net, const struct ipv6_pinfo *np);
  239. static inline void fl6_sock_release(struct ip6_flowlabel *fl)
  240. {
  241. if (fl)
  242. atomic_dec(&fl->users);
  243. }
  244. void icmpv6_notify(struct sk_buff *skb, u8 type, u8 code, __be32 info);
  245. int icmpv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
  246. struct icmp6hdr *thdr, int len);
  247. int ip6_ra_control(struct sock *sk, int sel);
  248. int ipv6_parse_hopopts(struct sk_buff *skb);
  249. struct ipv6_txoptions *ipv6_dup_options(struct sock *sk,
  250. struct ipv6_txoptions *opt);
  251. struct ipv6_txoptions *ipv6_renew_options(struct sock *sk,
  252. struct ipv6_txoptions *opt,
  253. int newtype,
  254. struct ipv6_opt_hdr __user *newopt,
  255. int newoptlen);
  256. struct ipv6_txoptions *ipv6_fixup_options(struct ipv6_txoptions *opt_space,
  257. struct ipv6_txoptions *opt);
  258. bool ipv6_opt_accepted(const struct sock *sk, const struct sk_buff *skb,
  259. const struct inet6_skb_parm *opt);
  260. static inline bool ipv6_accept_ra(struct inet6_dev *idev)
  261. {
  262. /* If forwarding is enabled, RA are not accepted unless the special
  263. * hybrid mode (accept_ra=2) is enabled.
  264. */
  265. return idev->cnf.forwarding ? idev->cnf.accept_ra == 2 :
  266. idev->cnf.accept_ra;
  267. }
  268. #define IPV6_FRAG_HIGH_THRESH (4 * 1024*1024) /* 4194304 */
  269. #define IPV6_FRAG_LOW_THRESH (3 * 1024*1024) /* 3145728 */
  270. #define IPV6_FRAG_TIMEOUT (60 * HZ) /* 60 seconds */
  271. int __ipv6_addr_type(const struct in6_addr *addr);
  272. static inline int ipv6_addr_type(const struct in6_addr *addr)
  273. {
  274. return __ipv6_addr_type(addr) & 0xffff;
  275. }
  276. static inline int ipv6_addr_scope(const struct in6_addr *addr)
  277. {
  278. return __ipv6_addr_type(addr) & IPV6_ADDR_SCOPE_MASK;
  279. }
  280. static inline int __ipv6_addr_src_scope(int type)
  281. {
  282. return (type == IPV6_ADDR_ANY) ? __IPV6_ADDR_SCOPE_INVALID : (type >> 16);
  283. }
  284. static inline int ipv6_addr_src_scope(const struct in6_addr *addr)
  285. {
  286. return __ipv6_addr_src_scope(__ipv6_addr_type(addr));
  287. }
  288. static inline bool __ipv6_addr_needs_scope_id(int type)
  289. {
  290. return type & IPV6_ADDR_LINKLOCAL ||
  291. (type & IPV6_ADDR_MULTICAST &&
  292. (type & (IPV6_ADDR_LOOPBACK|IPV6_ADDR_LINKLOCAL)));
  293. }
  294. static inline __u32 ipv6_iface_scope_id(const struct in6_addr *addr, int iface)
  295. {
  296. return __ipv6_addr_needs_scope_id(__ipv6_addr_type(addr)) ? iface : 0;
  297. }
  298. static inline int ipv6_addr_cmp(const struct in6_addr *a1, const struct in6_addr *a2)
  299. {
  300. return memcmp(a1, a2, sizeof(struct in6_addr));
  301. }
  302. static inline bool
  303. ipv6_masked_addr_cmp(const struct in6_addr *a1, const struct in6_addr *m,
  304. const struct in6_addr *a2)
  305. {
  306. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  307. const unsigned long *ul1 = (const unsigned long *)a1;
  308. const unsigned long *ulm = (const unsigned long *)m;
  309. const unsigned long *ul2 = (const unsigned long *)a2;
  310. return !!(((ul1[0] ^ ul2[0]) & ulm[0]) |
  311. ((ul1[1] ^ ul2[1]) & ulm[1]));
  312. #else
  313. return !!(((a1->s6_addr32[0] ^ a2->s6_addr32[0]) & m->s6_addr32[0]) |
  314. ((a1->s6_addr32[1] ^ a2->s6_addr32[1]) & m->s6_addr32[1]) |
  315. ((a1->s6_addr32[2] ^ a2->s6_addr32[2]) & m->s6_addr32[2]) |
  316. ((a1->s6_addr32[3] ^ a2->s6_addr32[3]) & m->s6_addr32[3]));
  317. #endif
  318. }
  319. static inline void ipv6_addr_prefix(struct in6_addr *pfx,
  320. const struct in6_addr *addr,
  321. int plen)
  322. {
  323. /* caller must guarantee 0 <= plen <= 128 */
  324. int o = plen >> 3,
  325. b = plen & 0x7;
  326. memset(pfx->s6_addr, 0, sizeof(pfx->s6_addr));
  327. memcpy(pfx->s6_addr, addr, o);
  328. if (b != 0)
  329. pfx->s6_addr[o] = addr->s6_addr[o] & (0xff00 >> b);
  330. }
  331. static inline void __ipv6_addr_set_half(__be32 *addr,
  332. __be32 wh, __be32 wl)
  333. {
  334. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  335. #if defined(__BIG_ENDIAN)
  336. if (__builtin_constant_p(wh) && __builtin_constant_p(wl)) {
  337. *(__force u64 *)addr = ((__force u64)(wh) << 32 | (__force u64)(wl));
  338. return;
  339. }
  340. #elif defined(__LITTLE_ENDIAN)
  341. if (__builtin_constant_p(wl) && __builtin_constant_p(wh)) {
  342. *(__force u64 *)addr = ((__force u64)(wl) << 32 | (__force u64)(wh));
  343. return;
  344. }
  345. #endif
  346. #endif
  347. addr[0] = wh;
  348. addr[1] = wl;
  349. }
  350. static inline void ipv6_addr_set(struct in6_addr *addr,
  351. __be32 w1, __be32 w2,
  352. __be32 w3, __be32 w4)
  353. {
  354. __ipv6_addr_set_half(&addr->s6_addr32[0], w1, w2);
  355. __ipv6_addr_set_half(&addr->s6_addr32[2], w3, w4);
  356. }
  357. static inline bool ipv6_addr_equal(const struct in6_addr *a1,
  358. const struct in6_addr *a2)
  359. {
  360. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  361. const unsigned long *ul1 = (const unsigned long *)a1;
  362. const unsigned long *ul2 = (const unsigned long *)a2;
  363. return ((ul1[0] ^ ul2[0]) | (ul1[1] ^ ul2[1])) == 0UL;
  364. #else
  365. return ((a1->s6_addr32[0] ^ a2->s6_addr32[0]) |
  366. (a1->s6_addr32[1] ^ a2->s6_addr32[1]) |
  367. (a1->s6_addr32[2] ^ a2->s6_addr32[2]) |
  368. (a1->s6_addr32[3] ^ a2->s6_addr32[3])) == 0;
  369. #endif
  370. }
  371. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  372. static inline bool __ipv6_prefix_equal64_half(const __be64 *a1,
  373. const __be64 *a2,
  374. unsigned int len)
  375. {
  376. if (len && ((*a1 ^ *a2) & cpu_to_be64((~0UL) << (64 - len))))
  377. return false;
  378. return true;
  379. }
  380. static inline bool ipv6_prefix_equal(const struct in6_addr *addr1,
  381. const struct in6_addr *addr2,
  382. unsigned int prefixlen)
  383. {
  384. const __be64 *a1 = (const __be64 *)addr1;
  385. const __be64 *a2 = (const __be64 *)addr2;
  386. if (prefixlen >= 64) {
  387. if (a1[0] ^ a2[0])
  388. return false;
  389. return __ipv6_prefix_equal64_half(a1 + 1, a2 + 1, prefixlen - 64);
  390. }
  391. return __ipv6_prefix_equal64_half(a1, a2, prefixlen);
  392. }
  393. #else
  394. static inline bool ipv6_prefix_equal(const struct in6_addr *addr1,
  395. const struct in6_addr *addr2,
  396. unsigned int prefixlen)
  397. {
  398. const __be32 *a1 = addr1->s6_addr32;
  399. const __be32 *a2 = addr2->s6_addr32;
  400. unsigned int pdw, pbi;
  401. /* check complete u32 in prefix */
  402. pdw = prefixlen >> 5;
  403. if (pdw && memcmp(a1, a2, pdw << 2))
  404. return false;
  405. /* check incomplete u32 in prefix */
  406. pbi = prefixlen & 0x1f;
  407. if (pbi && ((a1[pdw] ^ a2[pdw]) & htonl((0xffffffff) << (32 - pbi))))
  408. return false;
  409. return true;
  410. }
  411. #endif
  412. struct inet_frag_queue;
  413. enum ip6_defrag_users {
  414. IP6_DEFRAG_LOCAL_DELIVER,
  415. IP6_DEFRAG_CONNTRACK_IN,
  416. __IP6_DEFRAG_CONNTRACK_IN = IP6_DEFRAG_CONNTRACK_IN + USHRT_MAX,
  417. IP6_DEFRAG_CONNTRACK_OUT,
  418. __IP6_DEFRAG_CONNTRACK_OUT = IP6_DEFRAG_CONNTRACK_OUT + USHRT_MAX,
  419. IP6_DEFRAG_CONNTRACK_BRIDGE_IN,
  420. __IP6_DEFRAG_CONNTRACK_BRIDGE_IN = IP6_DEFRAG_CONNTRACK_BRIDGE_IN + USHRT_MAX,
  421. };
  422. void ip6_frag_init(struct inet_frag_queue *q, const void *a);
  423. extern const struct rhashtable_params ip6_rhash_params;
  424. /*
  425. * Equivalent of ipv4 struct ip
  426. */
  427. struct frag_queue {
  428. struct inet_frag_queue q;
  429. int iif;
  430. unsigned int csum;
  431. __u16 nhoffset;
  432. u8 ecn;
  433. };
  434. void ip6_expire_frag_queue(struct net *net, struct frag_queue *fq);
  435. static inline bool ipv6_addr_any(const struct in6_addr *a)
  436. {
  437. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  438. const unsigned long *ul = (const unsigned long *)a;
  439. return (ul[0] | ul[1]) == 0UL;
  440. #else
  441. return (a->s6_addr32[0] | a->s6_addr32[1] |
  442. a->s6_addr32[2] | a->s6_addr32[3]) == 0;
  443. #endif
  444. }
  445. static inline u32 ipv6_addr_hash(const struct in6_addr *a)
  446. {
  447. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  448. const unsigned long *ul = (const unsigned long *)a;
  449. unsigned long x = ul[0] ^ ul[1];
  450. return (u32)(x ^ (x >> 32));
  451. #else
  452. return (__force u32)(a->s6_addr32[0] ^ a->s6_addr32[1] ^
  453. a->s6_addr32[2] ^ a->s6_addr32[3]);
  454. #endif
  455. }
  456. /* more secured version of ipv6_addr_hash() */
  457. static inline u32 __ipv6_addr_jhash(const struct in6_addr *a, const u32 initval)
  458. {
  459. u32 v = (__force u32)a->s6_addr32[0] ^ (__force u32)a->s6_addr32[1];
  460. return jhash_3words(v,
  461. (__force u32)a->s6_addr32[2],
  462. (__force u32)a->s6_addr32[3],
  463. initval);
  464. }
  465. static inline bool ipv6_addr_loopback(const struct in6_addr *a)
  466. {
  467. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  468. const __be64 *be = (const __be64 *)a;
  469. return (be[0] | (be[1] ^ cpu_to_be64(1))) == 0UL;
  470. #else
  471. return (a->s6_addr32[0] | a->s6_addr32[1] |
  472. a->s6_addr32[2] | (a->s6_addr32[3] ^ cpu_to_be32(1))) == 0;
  473. #endif
  474. }
  475. /*
  476. * Note that we must __force cast these to unsigned long to make sparse happy,
  477. * since all of the endian-annotated types are fixed size regardless of arch.
  478. */
  479. static inline bool ipv6_addr_v4mapped(const struct in6_addr *a)
  480. {
  481. return (
  482. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  483. *(unsigned long *)a |
  484. #else
  485. (__force unsigned long)(a->s6_addr32[0] | a->s6_addr32[1]) |
  486. #endif
  487. (__force unsigned long)(a->s6_addr32[2] ^
  488. cpu_to_be32(0x0000ffff))) == 0UL;
  489. }
  490. /*
  491. * Check for a RFC 4843 ORCHID address
  492. * (Overlay Routable Cryptographic Hash Identifiers)
  493. */
  494. static inline bool ipv6_addr_orchid(const struct in6_addr *a)
  495. {
  496. return (a->s6_addr32[0] & htonl(0xfffffff0)) == htonl(0x20010010);
  497. }
  498. static inline bool ipv6_addr_is_multicast(const struct in6_addr *addr)
  499. {
  500. return (addr->s6_addr32[0] & htonl(0xFF000000)) == htonl(0xFF000000);
  501. }
  502. static inline void ipv6_addr_set_v4mapped(const __be32 addr,
  503. struct in6_addr *v4mapped)
  504. {
  505. ipv6_addr_set(v4mapped,
  506. 0, 0,
  507. htonl(0x0000FFFF),
  508. addr);
  509. }
  510. /*
  511. * find the first different bit between two addresses
  512. * length of address must be a multiple of 32bits
  513. */
  514. static inline int __ipv6_addr_diff32(const void *token1, const void *token2, int addrlen)
  515. {
  516. const __be32 *a1 = token1, *a2 = token2;
  517. int i;
  518. addrlen >>= 2;
  519. for (i = 0; i < addrlen; i++) {
  520. __be32 xb = a1[i] ^ a2[i];
  521. if (xb)
  522. return i * 32 + 31 - __fls(ntohl(xb));
  523. }
  524. /*
  525. * we should *never* get to this point since that
  526. * would mean the addrs are equal
  527. *
  528. * However, we do get to it 8) And exacly, when
  529. * addresses are equal 8)
  530. *
  531. * ip route add 1111::/128 via ...
  532. * ip route add 1111::/64 via ...
  533. * and we are here.
  534. *
  535. * Ideally, this function should stop comparison
  536. * at prefix length. It does not, but it is still OK,
  537. * if returned value is greater than prefix length.
  538. * --ANK (980803)
  539. */
  540. return addrlen << 5;
  541. }
  542. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  543. static inline int __ipv6_addr_diff64(const void *token1, const void *token2, int addrlen)
  544. {
  545. const __be64 *a1 = token1, *a2 = token2;
  546. int i;
  547. addrlen >>= 3;
  548. for (i = 0; i < addrlen; i++) {
  549. __be64 xb = a1[i] ^ a2[i];
  550. if (xb)
  551. return i * 64 + 63 - __fls(be64_to_cpu(xb));
  552. }
  553. return addrlen << 6;
  554. }
  555. #endif
  556. static inline int __ipv6_addr_diff(const void *token1, const void *token2, int addrlen)
  557. {
  558. #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
  559. if (__builtin_constant_p(addrlen) && !(addrlen & 7))
  560. return __ipv6_addr_diff64(token1, token2, addrlen);
  561. #endif
  562. return __ipv6_addr_diff32(token1, token2, addrlen);
  563. }
  564. static inline int ipv6_addr_diff(const struct in6_addr *a1, const struct in6_addr *a2)
  565. {
  566. return __ipv6_addr_diff(a1, a2, sizeof(struct in6_addr));
  567. }
  568. __be32 ipv6_select_ident(struct net *net,
  569. const struct in6_addr *daddr,
  570. const struct in6_addr *saddr);
  571. void ipv6_proxy_select_ident(struct net *net, struct sk_buff *skb);
  572. int ip6_dst_hoplimit(struct dst_entry *dst);
  573. static inline int ip6_sk_dst_hoplimit(struct ipv6_pinfo *np, struct flowi6 *fl6,
  574. struct dst_entry *dst)
  575. {
  576. int hlimit;
  577. if (ipv6_addr_is_multicast(&fl6->daddr))
  578. hlimit = np->mcast_hops;
  579. else
  580. hlimit = np->hop_limit;
  581. if (hlimit < 0)
  582. hlimit = ip6_dst_hoplimit(dst);
  583. return hlimit;
  584. }
  585. /* copy IPv6 saddr & daddr to flow_keys, possibly using 64bit load/store
  586. * Equivalent to : flow->v6addrs.src = iph->saddr;
  587. * flow->v6addrs.dst = iph->daddr;
  588. */
  589. static inline void iph_to_flow_copy_v6addrs(struct flow_keys *flow,
  590. const struct ipv6hdr *iph)
  591. {
  592. BUILD_BUG_ON(offsetof(typeof(flow->addrs), v6addrs.dst) !=
  593. offsetof(typeof(flow->addrs), v6addrs.src) +
  594. sizeof(flow->addrs.v6addrs.src));
  595. memcpy(&flow->addrs.v6addrs, &iph->saddr, sizeof(flow->addrs.v6addrs));
  596. flow->control.addr_type = FLOW_DISSECTOR_KEY_IPV6_ADDRS;
  597. }
  598. #if IS_ENABLED(CONFIG_IPV6)
  599. /* Sysctl settings for net ipv6.auto_flowlabels */
  600. #define IP6_AUTO_FLOW_LABEL_OFF 0
  601. #define IP6_AUTO_FLOW_LABEL_OPTOUT 1
  602. #define IP6_AUTO_FLOW_LABEL_OPTIN 2
  603. #define IP6_AUTO_FLOW_LABEL_FORCED 3
  604. #define IP6_AUTO_FLOW_LABEL_MAX IP6_AUTO_FLOW_LABEL_FORCED
  605. #define IP6_DEFAULT_AUTO_FLOW_LABELS IP6_AUTO_FLOW_LABEL_OPTOUT
  606. static inline __be32 ip6_make_flowlabel(struct net *net, struct sk_buff *skb,
  607. __be32 flowlabel, bool autolabel,
  608. struct flowi6 *fl6)
  609. {
  610. u32 hash;
  611. /* @flowlabel may include more than a flow label, eg, the traffic class.
  612. * Here we want only the flow label value.
  613. */
  614. flowlabel &= IPV6_FLOWLABEL_MASK;
  615. if (flowlabel ||
  616. net->ipv6.sysctl.auto_flowlabels == IP6_AUTO_FLOW_LABEL_OFF ||
  617. (!autolabel &&
  618. net->ipv6.sysctl.auto_flowlabels != IP6_AUTO_FLOW_LABEL_FORCED))
  619. return flowlabel;
  620. hash = skb_get_hash_flowi6(skb, fl6);
  621. /* Since this is being sent on the wire obfuscate hash a bit
  622. * to minimize possbility that any useful information to an
  623. * attacker is leaked. Only lower 20 bits are relevant.
  624. */
  625. hash = rol32(hash, 16);
  626. flowlabel = (__force __be32)hash & IPV6_FLOWLABEL_MASK;
  627. if (net->ipv6.sysctl.flowlabel_state_ranges)
  628. flowlabel |= IPV6_FLOWLABEL_STATELESS_FLAG;
  629. return flowlabel;
  630. }
  631. static inline int ip6_default_np_autolabel(struct net *net)
  632. {
  633. switch (net->ipv6.sysctl.auto_flowlabels) {
  634. case IP6_AUTO_FLOW_LABEL_OFF:
  635. case IP6_AUTO_FLOW_LABEL_OPTIN:
  636. default:
  637. return 0;
  638. case IP6_AUTO_FLOW_LABEL_OPTOUT:
  639. case IP6_AUTO_FLOW_LABEL_FORCED:
  640. return 1;
  641. }
  642. }
  643. #else
  644. static inline void ip6_set_txhash(struct sock *sk) { }
  645. static inline __be32 ip6_make_flowlabel(struct net *net, struct sk_buff *skb,
  646. __be32 flowlabel, bool autolabel,
  647. struct flowi6 *fl6)
  648. {
  649. return flowlabel;
  650. }
  651. static inline int ip6_default_np_autolabel(struct net *net)
  652. {
  653. return 0;
  654. }
  655. #endif
  656. /*
  657. * Header manipulation
  658. */
  659. static inline void ip6_flow_hdr(struct ipv6hdr *hdr, unsigned int tclass,
  660. __be32 flowlabel)
  661. {
  662. *(__be32 *)hdr = htonl(0x60000000 | (tclass << 20)) | flowlabel;
  663. }
  664. static inline __be32 ip6_flowinfo(const struct ipv6hdr *hdr)
  665. {
  666. return *(__be32 *)hdr & IPV6_FLOWINFO_MASK;
  667. }
  668. static inline __be32 ip6_flowlabel(const struct ipv6hdr *hdr)
  669. {
  670. return *(__be32 *)hdr & IPV6_FLOWLABEL_MASK;
  671. }
  672. static inline u8 ip6_tclass(__be32 flowinfo)
  673. {
  674. return ntohl(flowinfo & IPV6_TCLASS_MASK) >> IPV6_TCLASS_SHIFT;
  675. }
  676. /*
  677. * Prototypes exported by ipv6
  678. */
  679. /*
  680. * rcv function (called from netdevice level)
  681. */
  682. int ipv6_rcv(struct sk_buff *skb, struct net_device *dev,
  683. struct packet_type *pt, struct net_device *orig_dev);
  684. int ip6_rcv_finish(struct net *net, struct sock *sk, struct sk_buff *skb);
  685. /*
  686. * upper-layer output functions
  687. */
  688. int ip6_xmit(const struct sock *sk, struct sk_buff *skb, struct flowi6 *fl6,
  689. struct ipv6_txoptions *opt, int tclass);
  690. int ip6_find_1stfragopt(struct sk_buff *skb, u8 **nexthdr);
  691. int ip6_append_data(struct sock *sk,
  692. int getfrag(void *from, char *to, int offset, int len,
  693. int odd, struct sk_buff *skb),
  694. void *from, int length, int transhdrlen, int hlimit,
  695. int tclass, struct ipv6_txoptions *opt, struct flowi6 *fl6,
  696. struct rt6_info *rt, unsigned int flags, int dontfrag);
  697. int ip6_push_pending_frames(struct sock *sk);
  698. void ip6_flush_pending_frames(struct sock *sk);
  699. int ip6_send_skb(struct sk_buff *skb);
  700. struct sk_buff *__ip6_make_skb(struct sock *sk, struct sk_buff_head *queue,
  701. struct inet_cork_full *cork,
  702. struct inet6_cork *v6_cork);
  703. struct sk_buff *ip6_make_skb(struct sock *sk,
  704. int getfrag(void *from, char *to, int offset,
  705. int len, int odd, struct sk_buff *skb),
  706. void *from, int length, int transhdrlen,
  707. int hlimit, int tclass, struct ipv6_txoptions *opt,
  708. struct flowi6 *fl6, struct rt6_info *rt,
  709. unsigned int flags, int dontfrag);
  710. static inline struct sk_buff *ip6_finish_skb(struct sock *sk)
  711. {
  712. return __ip6_make_skb(sk, &sk->sk_write_queue, &inet_sk(sk)->cork,
  713. &inet6_sk(sk)->cork);
  714. }
  715. int ip6_dst_lookup(struct net *net, struct sock *sk, struct dst_entry **dst,
  716. struct flowi6 *fl6);
  717. struct dst_entry *ip6_dst_lookup_flow(const struct sock *sk, struct flowi6 *fl6,
  718. const struct in6_addr *final_dst);
  719. struct dst_entry *ip6_sk_dst_lookup_flow(struct sock *sk, struct flowi6 *fl6,
  720. const struct in6_addr *final_dst);
  721. struct dst_entry *ip6_blackhole_route(struct net *net,
  722. struct dst_entry *orig_dst);
  723. /*
  724. * skb processing functions
  725. */
  726. int ip6_output(struct net *net, struct sock *sk, struct sk_buff *skb);
  727. int ip6_forward(struct sk_buff *skb);
  728. int ip6_input(struct sk_buff *skb);
  729. int ip6_mc_input(struct sk_buff *skb);
  730. int __ip6_local_out(struct net *net, struct sock *sk, struct sk_buff *skb);
  731. int ip6_local_out(struct net *net, struct sock *sk, struct sk_buff *skb);
  732. /*
  733. * Extension header (options) processing
  734. */
  735. void ipv6_push_nfrag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt,
  736. u8 *proto, struct in6_addr **daddr_p);
  737. void ipv6_push_frag_opts(struct sk_buff *skb, struct ipv6_txoptions *opt,
  738. u8 *proto);
  739. int ipv6_skip_exthdr(const struct sk_buff *, int start, u8 *nexthdrp,
  740. __be16 *frag_offp);
  741. bool ipv6_ext_hdr(u8 nexthdr);
  742. enum {
  743. IP6_FH_F_FRAG = (1 << 0),
  744. IP6_FH_F_AUTH = (1 << 1),
  745. IP6_FH_F_SKIP_RH = (1 << 2),
  746. };
  747. /* find specified header and get offset to it */
  748. int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset, int target,
  749. unsigned short *fragoff, int *fragflg);
  750. int ipv6_find_tlv(struct sk_buff *skb, int offset, int type);
  751. struct in6_addr *fl6_update_dst(struct flowi6 *fl6,
  752. const struct ipv6_txoptions *opt,
  753. struct in6_addr *orig);
  754. /*
  755. * socket options (ipv6_sockglue.c)
  756. */
  757. int ipv6_setsockopt(struct sock *sk, int level, int optname,
  758. char __user *optval, unsigned int optlen);
  759. int ipv6_getsockopt(struct sock *sk, int level, int optname,
  760. char __user *optval, int __user *optlen);
  761. int compat_ipv6_setsockopt(struct sock *sk, int level, int optname,
  762. char __user *optval, unsigned int optlen);
  763. int compat_ipv6_getsockopt(struct sock *sk, int level, int optname,
  764. char __user *optval, int __user *optlen);
  765. int ip6_datagram_connect(struct sock *sk, struct sockaddr *addr, int addr_len);
  766. int ip6_datagram_connect_v6_only(struct sock *sk, struct sockaddr *addr,
  767. int addr_len);
  768. int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len,
  769. int *addr_len);
  770. int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
  771. int *addr_len);
  772. void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err, __be16 port,
  773. u32 info, u8 *payload);
  774. void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info);
  775. void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu);
  776. int inet6_release(struct socket *sock);
  777. int inet6_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len);
  778. int inet6_getname(struct socket *sock, struct sockaddr *uaddr, int *uaddr_len,
  779. int peer);
  780. int inet6_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg);
  781. int inet6_hash_connect(struct inet_timewait_death_row *death_row,
  782. struct sock *sk);
  783. /*
  784. * reassembly.c
  785. */
  786. extern const struct proto_ops inet6_stream_ops;
  787. extern const struct proto_ops inet6_dgram_ops;
  788. extern const struct proto_ops inet6_sockraw_ops;
  789. struct group_source_req;
  790. struct group_filter;
  791. int ip6_mc_source(int add, int omode, struct sock *sk,
  792. struct group_source_req *pgsr);
  793. int ip6_mc_msfilter(struct sock *sk, struct group_filter *gsf);
  794. int ip6_mc_msfget(struct sock *sk, struct group_filter *gsf,
  795. struct group_filter __user *optval, int __user *optlen);
  796. #ifdef CONFIG_PROC_FS
  797. int ac6_proc_init(struct net *net);
  798. void ac6_proc_exit(struct net *net);
  799. int raw6_proc_init(void);
  800. void raw6_proc_exit(void);
  801. int tcp6_proc_init(struct net *net);
  802. void tcp6_proc_exit(struct net *net);
  803. int udp6_proc_init(struct net *net);
  804. void udp6_proc_exit(struct net *net);
  805. int udplite6_proc_init(void);
  806. void udplite6_proc_exit(void);
  807. int ipv6_misc_proc_init(void);
  808. void ipv6_misc_proc_exit(void);
  809. int snmp6_register_dev(struct inet6_dev *idev);
  810. int snmp6_unregister_dev(struct inet6_dev *idev);
  811. #else
  812. static inline int ac6_proc_init(struct net *net) { return 0; }
  813. static inline void ac6_proc_exit(struct net *net) { }
  814. static inline int snmp6_register_dev(struct inet6_dev *idev) { return 0; }
  815. static inline int snmp6_unregister_dev(struct inet6_dev *idev) { return 0; }
  816. #endif
  817. #ifdef CONFIG_SYSCTL
  818. extern struct ctl_table ipv6_route_table_template[];
  819. struct ctl_table *ipv6_icmp_sysctl_init(struct net *net);
  820. struct ctl_table *ipv6_route_sysctl_init(struct net *net);
  821. int ipv6_sysctl_register(void);
  822. void ipv6_sysctl_unregister(void);
  823. #endif
  824. int ipv6_sock_mc_join(struct sock *sk, int ifindex,
  825. const struct in6_addr *addr);
  826. int ipv6_sock_mc_drop(struct sock *sk, int ifindex,
  827. const struct in6_addr *addr);
  828. #endif /* _NET_IPV6_H */