ila_lwt.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. #include <linux/errno.h>
  2. #include <linux/ip.h>
  3. #include <linux/kernel.h>
  4. #include <linux/module.h>
  5. #include <linux/skbuff.h>
  6. #include <linux/socket.h>
  7. #include <linux/types.h>
  8. #include <net/checksum.h>
  9. #include <net/dst_cache.h>
  10. #include <net/ip.h>
  11. #include <net/ip6_fib.h>
  12. #include <net/ip6_route.h>
  13. #include <net/lwtunnel.h>
  14. #include <net/protocol.h>
  15. #include <uapi/linux/ila.h>
  16. #include "ila.h"
  17. struct ila_lwt {
  18. struct ila_params p;
  19. struct dst_cache dst_cache;
  20. u32 connected : 1;
  21. };
  22. static inline struct ila_lwt *ila_lwt_lwtunnel(
  23. struct lwtunnel_state *lwt)
  24. {
  25. return (struct ila_lwt *)lwt->data;
  26. }
  27. static inline struct ila_params *ila_params_lwtunnel(
  28. struct lwtunnel_state *lwt)
  29. {
  30. return &ila_lwt_lwtunnel(lwt)->p;
  31. }
  32. static int ila_output(struct net *net, struct sock *sk, struct sk_buff *skb)
  33. {
  34. struct dst_entry *orig_dst = skb_dst(skb);
  35. struct rt6_info *rt = (struct rt6_info *)orig_dst;
  36. struct ila_lwt *ilwt = ila_lwt_lwtunnel(orig_dst->lwtstate);
  37. struct dst_entry *dst;
  38. int err = -EINVAL;
  39. if (skb->protocol != htons(ETH_P_IPV6))
  40. goto drop;
  41. ila_update_ipv6_locator(skb, ila_params_lwtunnel(orig_dst->lwtstate),
  42. true);
  43. if (rt->rt6i_flags & (RTF_GATEWAY | RTF_CACHE)) {
  44. /* Already have a next hop address in route, no need for
  45. * dest cache route.
  46. */
  47. return orig_dst->lwtstate->orig_output(net, sk, skb);
  48. }
  49. dst = dst_cache_get(&ilwt->dst_cache);
  50. if (unlikely(!dst)) {
  51. struct ipv6hdr *ip6h = ipv6_hdr(skb);
  52. struct flowi6 fl6;
  53. /* Lookup a route for the new destination. Take into
  54. * account that the base route may already have a gateway.
  55. */
  56. memset(&fl6, 0, sizeof(fl6));
  57. fl6.flowi6_oif = orig_dst->dev->ifindex;
  58. fl6.flowi6_iif = LOOPBACK_IFINDEX;
  59. fl6.daddr = *rt6_nexthop((struct rt6_info *)orig_dst,
  60. &ip6h->daddr);
  61. dst = ip6_route_output(net, NULL, &fl6);
  62. if (dst->error) {
  63. err = -EHOSTUNREACH;
  64. dst_release(dst);
  65. goto drop;
  66. }
  67. dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
  68. if (IS_ERR(dst)) {
  69. err = PTR_ERR(dst);
  70. goto drop;
  71. }
  72. if (ilwt->connected)
  73. dst_cache_set_ip6(&ilwt->dst_cache, dst, &fl6.saddr);
  74. }
  75. skb_dst_set(skb, dst);
  76. return dst_output(net, sk, skb);
  77. drop:
  78. kfree_skb(skb);
  79. return -EINVAL;
  80. }
  81. static int ila_input(struct sk_buff *skb)
  82. {
  83. struct dst_entry *dst = skb_dst(skb);
  84. if (skb->protocol != htons(ETH_P_IPV6))
  85. goto drop;
  86. ila_update_ipv6_locator(skb, ila_params_lwtunnel(dst->lwtstate), false);
  87. return dst->lwtstate->orig_input(skb);
  88. drop:
  89. kfree_skb(skb);
  90. return -EINVAL;
  91. }
  92. static const struct nla_policy ila_nl_policy[ILA_ATTR_MAX + 1] = {
  93. [ILA_ATTR_LOCATOR] = { .type = NLA_U64, },
  94. [ILA_ATTR_CSUM_MODE] = { .type = NLA_U8, },
  95. };
  96. static int ila_build_state(struct net_device *dev, struct nlattr *nla,
  97. unsigned int family, const void *cfg,
  98. struct lwtunnel_state **ts)
  99. {
  100. struct ila_lwt *ilwt;
  101. struct ila_params *p;
  102. struct nlattr *tb[ILA_ATTR_MAX + 1];
  103. struct lwtunnel_state *newts;
  104. const struct fib6_config *cfg6 = cfg;
  105. struct ila_addr *iaddr;
  106. int ret;
  107. if (family != AF_INET6)
  108. return -EINVAL;
  109. if (cfg6->fc_dst_len < 8 * sizeof(struct ila_locator) + 3) {
  110. /* Need to have full locator and at least type field
  111. * included in destination
  112. */
  113. return -EINVAL;
  114. }
  115. iaddr = (struct ila_addr *)&cfg6->fc_dst;
  116. if (!ila_addr_is_ila(iaddr) || ila_csum_neutral_set(iaddr->ident)) {
  117. /* Don't allow translation for a non-ILA address or checksum
  118. * neutral flag to be set.
  119. */
  120. return -EINVAL;
  121. }
  122. ret = nla_parse_nested(tb, ILA_ATTR_MAX, nla,
  123. ila_nl_policy);
  124. if (ret < 0)
  125. return ret;
  126. if (!tb[ILA_ATTR_LOCATOR])
  127. return -EINVAL;
  128. newts = lwtunnel_state_alloc(sizeof(*ilwt));
  129. if (!newts)
  130. return -ENOMEM;
  131. ilwt = ila_lwt_lwtunnel(newts);
  132. ret = dst_cache_init(&ilwt->dst_cache, GFP_ATOMIC);
  133. if (ret) {
  134. kfree(newts);
  135. return ret;
  136. }
  137. p = ila_params_lwtunnel(newts);
  138. p->locator.v64 = (__force __be64)nla_get_u64(tb[ILA_ATTR_LOCATOR]);
  139. /* Precompute checksum difference for translation since we
  140. * know both the old locator and the new one.
  141. */
  142. p->locator_match = iaddr->loc;
  143. p->csum_diff = compute_csum_diff8(
  144. (__be32 *)&p->locator_match, (__be32 *)&p->locator);
  145. if (tb[ILA_ATTR_CSUM_MODE])
  146. p->csum_mode = nla_get_u8(tb[ILA_ATTR_CSUM_MODE]);
  147. ila_init_saved_csum(p);
  148. newts->type = LWTUNNEL_ENCAP_ILA;
  149. newts->flags |= LWTUNNEL_STATE_OUTPUT_REDIRECT |
  150. LWTUNNEL_STATE_INPUT_REDIRECT;
  151. if (cfg6->fc_dst_len == 8 * sizeof(struct in6_addr))
  152. ilwt->connected = 1;
  153. *ts = newts;
  154. return 0;
  155. }
  156. static void ila_destroy_state(struct lwtunnel_state *lwt)
  157. {
  158. dst_cache_destroy(&ila_lwt_lwtunnel(lwt)->dst_cache);
  159. }
  160. static int ila_fill_encap_info(struct sk_buff *skb,
  161. struct lwtunnel_state *lwtstate)
  162. {
  163. struct ila_params *p = ila_params_lwtunnel(lwtstate);
  164. if (nla_put_u64_64bit(skb, ILA_ATTR_LOCATOR, (__force u64)p->locator.v64,
  165. ILA_ATTR_PAD))
  166. goto nla_put_failure;
  167. if (nla_put_u8(skb, ILA_ATTR_CSUM_MODE, (__force u8)p->csum_mode))
  168. goto nla_put_failure;
  169. return 0;
  170. nla_put_failure:
  171. return -EMSGSIZE;
  172. }
  173. static int ila_encap_nlsize(struct lwtunnel_state *lwtstate)
  174. {
  175. return nla_total_size_64bit(sizeof(u64)) + /* ILA_ATTR_LOCATOR */
  176. nla_total_size(sizeof(u8)) + /* ILA_ATTR_CSUM_MODE */
  177. 0;
  178. }
  179. static int ila_encap_cmp(struct lwtunnel_state *a, struct lwtunnel_state *b)
  180. {
  181. struct ila_params *a_p = ila_params_lwtunnel(a);
  182. struct ila_params *b_p = ila_params_lwtunnel(b);
  183. return (a_p->locator.v64 != b_p->locator.v64);
  184. }
  185. static const struct lwtunnel_encap_ops ila_encap_ops = {
  186. .build_state = ila_build_state,
  187. .destroy_state = ila_destroy_state,
  188. .output = ila_output,
  189. .input = ila_input,
  190. .fill_encap = ila_fill_encap_info,
  191. .get_encap_size = ila_encap_nlsize,
  192. .cmp_encap = ila_encap_cmp,
  193. };
  194. int ila_lwt_init(void)
  195. {
  196. return lwtunnel_encap_add_ops(&ila_encap_ops, LWTUNNEL_ENCAP_ILA);
  197. }
  198. void ila_lwt_fini(void)
  199. {
  200. lwtunnel_encap_del_ops(&ila_encap_ops, LWTUNNEL_ENCAP_ILA);
  201. }