nfp_net_offload.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /*
  2. * Copyright (C) 2016 Netronome Systems, Inc.
  3. *
  4. * This software is dual licensed under the GNU General License Version 2,
  5. * June 1991 as shown in the file COPYING in the top-level directory of this
  6. * source tree or the BSD 2-Clause License provided below. You have the
  7. * option to license this software under the complete terms of either license.
  8. *
  9. * The BSD 2-Clause License:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * 1. Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * 2. Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. */
  33. /*
  34. * nfp_net_offload.c
  35. * Netronome network device driver: TC offload functions for PF and VF
  36. */
  37. #include <linux/kernel.h>
  38. #include <linux/netdevice.h>
  39. #include <linux/pci.h>
  40. #include <linux/jiffies.h>
  41. #include <linux/timer.h>
  42. #include <linux/list.h>
  43. #include <net/pkt_cls.h>
  44. #include <net/tc_act/tc_gact.h>
  45. #include <net/tc_act/tc_mirred.h>
  46. #include "nfp_bpf.h"
  47. #include "nfp_net_ctrl.h"
  48. #include "nfp_net.h"
  49. void nfp_net_filter_stats_timer(unsigned long data)
  50. {
  51. struct nfp_net *nn = (void *)data;
  52. struct nfp_stat_pair latest;
  53. spin_lock_bh(&nn->rx_filter_lock);
  54. if (nn->ctrl & NFP_NET_CFG_CTRL_BPF)
  55. mod_timer(&nn->rx_filter_stats_timer,
  56. jiffies + NFP_NET_STAT_POLL_IVL);
  57. spin_unlock_bh(&nn->rx_filter_lock);
  58. latest.pkts = nn_readq(nn, NFP_NET_CFG_STATS_APP1_FRAMES);
  59. latest.bytes = nn_readq(nn, NFP_NET_CFG_STATS_APP1_BYTES);
  60. if (latest.pkts != nn->rx_filter.pkts)
  61. nn->rx_filter_change = jiffies;
  62. nn->rx_filter = latest;
  63. }
  64. static void nfp_net_bpf_stats_reset(struct nfp_net *nn)
  65. {
  66. nn->rx_filter.pkts = nn_readq(nn, NFP_NET_CFG_STATS_APP1_FRAMES);
  67. nn->rx_filter.bytes = nn_readq(nn, NFP_NET_CFG_STATS_APP1_BYTES);
  68. nn->rx_filter_prev = nn->rx_filter;
  69. nn->rx_filter_change = jiffies;
  70. }
  71. static int
  72. nfp_net_bpf_stats_update(struct nfp_net *nn, struct tc_cls_bpf_offload *cls_bpf)
  73. {
  74. struct tc_action *a;
  75. LIST_HEAD(actions);
  76. u64 bytes, pkts;
  77. pkts = nn->rx_filter.pkts - nn->rx_filter_prev.pkts;
  78. bytes = nn->rx_filter.bytes - nn->rx_filter_prev.bytes;
  79. bytes -= pkts * ETH_HLEN;
  80. nn->rx_filter_prev = nn->rx_filter;
  81. preempt_disable();
  82. tcf_exts_to_list(cls_bpf->exts, &actions);
  83. list_for_each_entry(a, &actions, list)
  84. tcf_action_stats_update(a, bytes, pkts, nn->rx_filter_change);
  85. preempt_enable();
  86. return 0;
  87. }
  88. static int
  89. nfp_net_bpf_get_act(struct nfp_net *nn, struct tc_cls_bpf_offload *cls_bpf)
  90. {
  91. const struct tc_action *a;
  92. LIST_HEAD(actions);
  93. /* TC direct action */
  94. if (cls_bpf->exts_integrated) {
  95. if (tc_no_actions(cls_bpf->exts))
  96. return NN_ACT_DIRECT;
  97. return -ENOTSUPP;
  98. }
  99. /* TC legacy mode */
  100. if (!tc_single_action(cls_bpf->exts))
  101. return -ENOTSUPP;
  102. tcf_exts_to_list(cls_bpf->exts, &actions);
  103. list_for_each_entry(a, &actions, list) {
  104. if (is_tcf_gact_shot(a))
  105. return NN_ACT_TC_DROP;
  106. if (is_tcf_mirred_redirect(a) &&
  107. tcf_mirred_ifindex(a) == nn->netdev->ifindex)
  108. return NN_ACT_TC_REDIR;
  109. }
  110. return -ENOTSUPP;
  111. }
  112. static int
  113. nfp_net_bpf_offload_prepare(struct nfp_net *nn,
  114. struct tc_cls_bpf_offload *cls_bpf,
  115. struct nfp_bpf_result *res,
  116. void **code, dma_addr_t *dma_addr, u16 max_instr)
  117. {
  118. unsigned int code_sz = max_instr * sizeof(u64);
  119. enum nfp_bpf_action_type act;
  120. u16 start_off, done_off;
  121. unsigned int max_mtu;
  122. int ret;
  123. if (!IS_ENABLED(CONFIG_BPF_SYSCALL))
  124. return -ENOTSUPP;
  125. ret = nfp_net_bpf_get_act(nn, cls_bpf);
  126. if (ret < 0)
  127. return ret;
  128. act = ret;
  129. max_mtu = nn_readb(nn, NFP_NET_CFG_BPF_INL_MTU) * 64 - 32;
  130. if (max_mtu < nn->netdev->mtu) {
  131. nn_info(nn, "BPF offload not supported with MTU larger than HW packet split boundary\n");
  132. return -ENOTSUPP;
  133. }
  134. start_off = nn_readw(nn, NFP_NET_CFG_BPF_START);
  135. done_off = nn_readw(nn, NFP_NET_CFG_BPF_DONE);
  136. *code = dma_zalloc_coherent(&nn->pdev->dev, code_sz, dma_addr,
  137. GFP_KERNEL);
  138. if (!*code)
  139. return -ENOMEM;
  140. ret = nfp_bpf_jit(cls_bpf->prog, *code, act, start_off, done_off,
  141. max_instr, res);
  142. if (ret)
  143. goto out;
  144. return 0;
  145. out:
  146. dma_free_coherent(&nn->pdev->dev, code_sz, *code, *dma_addr);
  147. return ret;
  148. }
  149. static void
  150. nfp_net_bpf_load_and_start(struct nfp_net *nn, u32 tc_flags,
  151. void *code, dma_addr_t dma_addr,
  152. unsigned int code_sz, unsigned int n_instr,
  153. bool dense_mode)
  154. {
  155. u64 bpf_addr = dma_addr;
  156. int err;
  157. nn->bpf_offload_skip_sw = !!(tc_flags & TCA_CLS_FLAGS_SKIP_SW);
  158. if (dense_mode)
  159. bpf_addr |= NFP_NET_CFG_BPF_CFG_8CTX;
  160. nn_writew(nn, NFP_NET_CFG_BPF_SIZE, n_instr);
  161. nn_writeq(nn, NFP_NET_CFG_BPF_ADDR, bpf_addr);
  162. /* Load up the JITed code */
  163. err = nfp_net_reconfig(nn, NFP_NET_CFG_UPDATE_BPF);
  164. if (err)
  165. nn_err(nn, "FW command error while loading BPF: %d\n", err);
  166. /* Enable passing packets through BPF function */
  167. nn->ctrl |= NFP_NET_CFG_CTRL_BPF;
  168. nn_writel(nn, NFP_NET_CFG_CTRL, nn->ctrl);
  169. err = nfp_net_reconfig(nn, NFP_NET_CFG_UPDATE_GEN);
  170. if (err)
  171. nn_err(nn, "FW command error while enabling BPF: %d\n", err);
  172. dma_free_coherent(&nn->pdev->dev, code_sz, code, dma_addr);
  173. nfp_net_bpf_stats_reset(nn);
  174. mod_timer(&nn->rx_filter_stats_timer, jiffies + NFP_NET_STAT_POLL_IVL);
  175. }
  176. static int nfp_net_bpf_stop(struct nfp_net *nn)
  177. {
  178. if (!(nn->ctrl & NFP_NET_CFG_CTRL_BPF))
  179. return 0;
  180. spin_lock_bh(&nn->rx_filter_lock);
  181. nn->ctrl &= ~NFP_NET_CFG_CTRL_BPF;
  182. spin_unlock_bh(&nn->rx_filter_lock);
  183. nn_writel(nn, NFP_NET_CFG_CTRL, nn->ctrl);
  184. del_timer_sync(&nn->rx_filter_stats_timer);
  185. nn->bpf_offload_skip_sw = 0;
  186. return nfp_net_reconfig(nn, NFP_NET_CFG_UPDATE_GEN);
  187. }
  188. int
  189. nfp_net_bpf_offload(struct nfp_net *nn, u32 handle, __be16 proto,
  190. struct tc_cls_bpf_offload *cls_bpf)
  191. {
  192. struct nfp_bpf_result res;
  193. dma_addr_t dma_addr;
  194. u16 max_instr;
  195. void *code;
  196. int err;
  197. max_instr = nn_readw(nn, NFP_NET_CFG_BPF_MAX_LEN);
  198. switch (cls_bpf->command) {
  199. case TC_CLSBPF_REPLACE:
  200. /* There is nothing stopping us from implementing seamless
  201. * replace but the simple method of loading I adopted in
  202. * the firmware does not handle atomic replace (i.e. we have to
  203. * stop the BPF offload and re-enable it). Leaking-in a few
  204. * frames which didn't have BPF applied in the hardware should
  205. * be fine if software fallback is available, though.
  206. */
  207. if (nn->bpf_offload_skip_sw)
  208. return -EBUSY;
  209. err = nfp_net_bpf_offload_prepare(nn, cls_bpf, &res, &code,
  210. &dma_addr, max_instr);
  211. if (err)
  212. return err;
  213. nfp_net_bpf_stop(nn);
  214. nfp_net_bpf_load_and_start(nn, cls_bpf->gen_flags, code,
  215. dma_addr, max_instr * sizeof(u64),
  216. res.n_instr, res.dense_mode);
  217. return 0;
  218. case TC_CLSBPF_ADD:
  219. if (nn->ctrl & NFP_NET_CFG_CTRL_BPF)
  220. return -EBUSY;
  221. err = nfp_net_bpf_offload_prepare(nn, cls_bpf, &res, &code,
  222. &dma_addr, max_instr);
  223. if (err)
  224. return err;
  225. nfp_net_bpf_load_and_start(nn, cls_bpf->gen_flags, code,
  226. dma_addr, max_instr * sizeof(u64),
  227. res.n_instr, res.dense_mode);
  228. return 0;
  229. case TC_CLSBPF_DESTROY:
  230. return nfp_net_bpf_stop(nn);
  231. case TC_CLSBPF_STATS:
  232. return nfp_net_bpf_stats_update(nn, cls_bpf);
  233. default:
  234. return -ENOTSUPP;
  235. }
  236. }