4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of version 2 of the GNU General Public License as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 * The full GNU General Public License is included in this distribution
19 * in the file called LICENSE.GPL.
21 * Contact Information:
26 * This code is inspired from the book "Linux Device Drivers" by
27 * Alessandro Rubini and Jonathan Corbet, published by O'Reilly & Associates
30 #include <linux/device.h>
31 #include <linux/module.h>
32 #include <linux/version.h>
33 #include <linux/netdevice.h>
34 #include <linux/etherdevice.h> /* eth_type_trans */
35 #include <linux/skbuff.h>
36 #include <linux/kthread.h>
37 #include <linux/delay.h>
39 #include <rte_config.h>
40 #include <exec-env/rte_kni_common.h>
44 #define WD_TIMEOUT 5 /*jiffies */
46 #define MBUF_BURST_SZ 32
48 #define KNI_WAIT_RESPONSE_TIMEOUT 300 /* 3 seconds */
50 /* typedef for rx function */
51 typedef void (*kni_net_rx_t)(struct kni_dev *kni);
53 static int kni_net_tx(struct sk_buff *skb, struct net_device *dev);
54 static void kni_net_rx_normal(struct kni_dev *kni);
55 static void kni_net_rx_lo_fifo(struct kni_dev *kni);
56 static void kni_net_rx_lo_fifo_skb(struct kni_dev *kni);
57 static int kni_net_process_request(struct kni_dev *kni,
58 struct rte_kni_request *req);
60 /* kni rx function pointer, with default to normal rx */
61 static kni_net_rx_t kni_net_rx_func = kni_net_rx_normal;
67 kni_net_open(struct net_device *dev)
70 struct rte_kni_request req;
71 struct kni_dev *kni = netdev_priv(dev);
74 memcpy(dev->dev_addr, kni->lad_dev->dev_addr, ETH_ALEN);
77 * Generate random mac address. eth_random_addr() is the newer
78 * version of generating mac address in linux kernel.
80 random_ether_addr(dev->dev_addr);
82 netif_start_queue(dev);
84 memset(&req, 0, sizeof(req));
85 req.req_id = RTE_KNI_REQ_CFG_NETWORK_IF;
87 /* Setting if_up to non-zero means up */
89 ret = kni_net_process_request(kni, &req);
91 return (ret == 0 ? req.result : ret);
95 kni_net_release(struct net_device *dev)
98 struct rte_kni_request req;
99 struct kni_dev *kni = netdev_priv(dev);
101 netif_stop_queue(dev); /* can't transmit any more */
103 memset(&req, 0, sizeof(req));
104 req.req_id = RTE_KNI_REQ_CFG_NETWORK_IF;
106 /* Setting if_up to 0 means down */
108 ret = kni_net_process_request(kni, &req);
110 return (ret == 0 ? req.result : ret);
114 * Configuration changes (passed on by ifconfig)
117 kni_net_config(struct net_device *dev, struct ifmap *map)
119 if (dev->flags & IFF_UP) /* can't act on a running interface */
122 /* ignore other fields */
127 * RX: normal working mode
130 kni_net_rx_normal(struct kni_dev *kni)
134 unsigned i, num, num_rq, num_fq;
135 struct rte_kni_mbuf *kva;
136 struct rte_kni_mbuf *va[MBUF_BURST_SZ];
140 struct net_device *dev = kni->net_dev;
142 /* Get the number of entries in rx_q */
143 num_rq = kni_fifo_count(kni->rx_q);
145 /* Get the number of free entries in free_q */
146 num_fq = kni_fifo_free_count(kni->free_q);
148 /* Calculate the number of entries to dequeue in rx_q */
149 num = min(num_rq, num_fq);
150 num = min(num, (unsigned)MBUF_BURST_SZ);
152 /* Return if no entry in rx_q and no free entry in free_q */
156 /* Burst dequeue from rx_q */
157 ret = kni_fifo_get(kni->rx_q, (void **)va, num);
159 return; /* Failing should not happen */
161 /* Transfer received packets to netif */
162 for (i = 0; i < num; i++) {
163 kva = (void *)va[i] - kni->mbuf_va + kni->mbuf_kva;
165 data_kva = kva->data - kni->mbuf_va + kni->mbuf_kva;
167 skb = dev_alloc_skb(len + 2);
169 KNI_ERR("Out of mem, dropping pkts\n");
170 /* Update statistics */
171 kni->stats.rx_dropped++;
174 /* Align IP on 16B boundary */
176 memcpy(skb_put(skb, len), data_kva, len);
178 skb->protocol = eth_type_trans(skb, dev);
179 skb->ip_summed = CHECKSUM_UNNECESSARY;
181 /* Call netif interface */
184 /* Update statistics */
185 kni->stats.rx_bytes += len;
186 kni->stats.rx_packets++;
190 /* Burst enqueue mbufs into free_q */
191 ret = kni_fifo_put(kni->free_q, (void **)va, num);
193 /* Failing should not happen */
194 KNI_ERR("Fail to enqueue entries into free_q\n");
198 * RX: loopback with enqueue/dequeue fifos.
201 kni_net_rx_lo_fifo(struct kni_dev *kni)
205 unsigned i, num, num_rq, num_tq, num_aq, num_fq;
206 struct rte_kni_mbuf *kva;
207 struct rte_kni_mbuf *va[MBUF_BURST_SZ];
210 struct rte_kni_mbuf *alloc_kva;
211 struct rte_kni_mbuf *alloc_va[MBUF_BURST_SZ];
212 void *alloc_data_kva;
214 /* Get the number of entries in rx_q */
215 num_rq = kni_fifo_count(kni->rx_q);
217 /* Get the number of free entrie in tx_q */
218 num_tq = kni_fifo_free_count(kni->tx_q);
220 /* Get the number of entries in alloc_q */
221 num_aq = kni_fifo_count(kni->alloc_q);
223 /* Get the number of free entries in free_q */
224 num_fq = kni_fifo_free_count(kni->free_q);
226 /* Calculate the number of entries to be dequeued from rx_q */
227 num = min(num_rq, num_tq);
228 num = min(num, num_aq);
229 num = min(num, num_fq);
230 num = min(num, (unsigned)MBUF_BURST_SZ);
232 /* Return if no entry to dequeue from rx_q */
236 /* Burst dequeue from rx_q */
237 ret = kni_fifo_get(kni->rx_q, (void **)va, num);
239 return; /* Failing should not happen */
241 /* Dequeue entries from alloc_q */
242 ret = kni_fifo_get(kni->alloc_q, (void **)alloc_va, num);
246 for (i = 0; i < num; i++) {
247 kva = (void *)va[i] - kni->mbuf_va + kni->mbuf_kva;
249 data_kva = kva->data - kni->mbuf_va +
252 alloc_kva = (void *)alloc_va[i] - kni->mbuf_va +
254 alloc_data_kva = alloc_kva->data - kni->mbuf_va +
256 memcpy(alloc_data_kva, data_kva, len);
257 alloc_kva->pkt_len = len;
258 alloc_kva->data_len = len;
260 kni->stats.tx_bytes += len;
261 kni->stats.rx_bytes += len;
264 /* Burst enqueue mbufs into tx_q */
265 ret = kni_fifo_put(kni->tx_q, (void **)alloc_va, num);
267 /* Failing should not happen */
268 KNI_ERR("Fail to enqueue mbufs into tx_q\n");
271 /* Burst enqueue mbufs into free_q */
272 ret = kni_fifo_put(kni->free_q, (void **)va, num);
274 /* Failing should not happen */
275 KNI_ERR("Fail to enqueue mbufs into free_q\n");
278 * Update statistic, and enqueue/dequeue failure is impossible,
279 * as all queues are checked at first.
281 kni->stats.tx_packets += num;
282 kni->stats.rx_packets += num;
286 * RX: loopback with enqueue/dequeue fifos and sk buffer copies.
289 kni_net_rx_lo_fifo_skb(struct kni_dev *kni)
293 unsigned i, num_rq, num_fq, num;
294 struct rte_kni_mbuf *kva;
295 struct rte_kni_mbuf *va[MBUF_BURST_SZ];
299 struct net_device *dev = kni->net_dev;
301 /* Get the number of entries in rx_q */
302 num_rq = kni_fifo_count(kni->rx_q);
304 /* Get the number of free entries in free_q */
305 num_fq = kni_fifo_free_count(kni->free_q);
307 /* Calculate the number of entries to dequeue from rx_q */
308 num = min(num_rq, num_fq);
309 num = min(num, (unsigned)MBUF_BURST_SZ);
311 /* Return if no entry to dequeue from rx_q */
315 /* Burst dequeue mbufs from rx_q */
316 ret = kni_fifo_get(kni->rx_q, (void **)va, num);
320 /* Copy mbufs to sk buffer and then call tx interface */
321 for (i = 0; i < num; i++) {
322 kva = (void *)va[i] - kni->mbuf_va + kni->mbuf_kva;
324 data_kva = kva->data - kni->mbuf_va + kni->mbuf_kva;
326 skb = dev_alloc_skb(len + 2);
328 KNI_ERR("Out of mem, dropping pkts\n");
330 /* Align IP on 16B boundary */
332 memcpy(skb_put(skb, len), data_kva, len);
334 skb->ip_summed = CHECKSUM_UNNECESSARY;
338 /* Simulate real usage, allocate/copy skb twice */
339 skb = dev_alloc_skb(len + 2);
341 KNI_ERR("Out of mem, dropping pkts\n");
342 kni->stats.rx_dropped++;
345 /* Align IP on 16B boundary */
347 memcpy(skb_put(skb, len), data_kva, len);
349 skb->ip_summed = CHECKSUM_UNNECESSARY;
351 kni->stats.rx_bytes += len;
352 kni->stats.rx_packets++;
354 /* call tx interface */
355 kni_net_tx(skb, dev);
359 /* enqueue all the mbufs from rx_q into free_q */
360 ret = kni_fifo_put(kni->free_q, (void **)&va, num);
362 /* Failing should not happen */
363 KNI_ERR("Fail to enqueue mbufs into free_q\n");
368 kni_net_rx(struct kni_dev *kni)
371 * It doesn't need to check if it is NULL pointer,
372 * as it has a default value
374 (*kni_net_rx_func)(kni);
378 * Transmit a packet (called by the kernel)
382 kni_net_tx(struct sk_buff *skb, struct net_device *dev)
384 struct kni_dev *kni = netdev_priv(dev);
387 kni->stats.tx_dropped++;
393 kni_net_tx(struct sk_buff *skb, struct net_device *dev)
397 struct kni_dev *kni = netdev_priv(dev);
398 struct rte_kni_mbuf *pkt_kva = NULL;
399 struct rte_kni_mbuf *pkt_va = NULL;
401 dev->trans_start = jiffies; /* save the timestamp */
403 /* Check if the length of skb is less than mbuf size */
404 if (skb->len > kni->mbuf_size)
408 * Check if it has at least one free entry in tx_q and
409 * one entry in alloc_q.
411 if (kni_fifo_free_count(kni->tx_q) == 0 ||
412 kni_fifo_count(kni->alloc_q) == 0) {
414 * If no free entry in tx_q or no entry in alloc_q,
415 * drops skb and goes out.
420 /* dequeue a mbuf from alloc_q */
421 ret = kni_fifo_get(kni->alloc_q, (void **)&pkt_va, 1);
422 if (likely(ret == 1)) {
425 pkt_kva = (void *)pkt_va - kni->mbuf_va + kni->mbuf_kva;
426 data_kva = pkt_kva->data - kni->mbuf_va + kni->mbuf_kva;
429 memcpy(data_kva, skb->data, len);
430 if (unlikely(len < ETH_ZLEN)) {
431 memset(data_kva + len, 0, ETH_ZLEN - len);
434 pkt_kva->pkt_len = len;
435 pkt_kva->data_len = len;
437 /* enqueue mbuf into tx_q */
438 ret = kni_fifo_put(kni->tx_q, (void **)&pkt_va, 1);
439 if (unlikely(ret != 1)) {
440 /* Failing should not happen */
441 KNI_ERR("Fail to enqueue mbuf into tx_q\n");
445 /* Failing should not happen */
446 KNI_ERR("Fail to dequeue mbuf from alloc_q\n");
450 /* Free skb and update statistics */
452 kni->stats.tx_bytes += len;
453 kni->stats.tx_packets++;
458 /* Free skb and update statistics */
460 kni->stats.tx_dropped++;
467 * Deal with a transmit timeout.
470 kni_net_tx_timeout (struct net_device *dev)
472 struct kni_dev *kni = netdev_priv(dev);
474 KNI_DBG("Transmit timeout at %ld, latency %ld\n", jiffies,
475 jiffies - dev->trans_start);
477 kni->stats.tx_errors++;
478 netif_wake_queue(dev);
486 kni_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
488 KNI_DBG("kni_net_ioctl %d\n",
489 ((struct kni_dev *)netdev_priv(dev))->group_id);
495 kni_net_change_mtu(struct net_device *dev, int new_mtu)
498 struct rte_kni_request req;
499 struct kni_dev *kni = netdev_priv(dev);
501 KNI_DBG("kni_net_change_mtu new mtu %d to be set\n", new_mtu);
503 memset(&req, 0, sizeof(req));
504 req.req_id = RTE_KNI_REQ_CHANGE_MTU;
505 req.new_mtu = new_mtu;
506 ret = kni_net_process_request(kni, &req);
507 if (ret == 0 && req.result == 0)
510 return (ret == 0 ? req.result : ret);
514 * Checks if the user space application provided the resp message
517 kni_net_poll_resp(struct kni_dev *kni)
519 if (kni_fifo_count(kni->resp_q))
520 wake_up_interruptible(&kni->wq);
524 * It can be called to process the request.
527 kni_net_process_request(struct kni_dev *kni, struct rte_kni_request *req)
535 KNI_ERR("No kni instance or request\n");
539 mutex_lock(&kni->sync_lock);
542 memcpy(kni->sync_kva, req, sizeof(struct rte_kni_request));
543 num = kni_fifo_put(kni->req_q, &kni->sync_va, 1);
545 KNI_ERR("Cannot send to req_q\n");
550 ret_val = wait_event_interruptible_timeout(kni->wq,
551 kni_fifo_count(kni->resp_q), 3 * HZ);
552 if (signal_pending(current) || ret_val <= 0) {
556 num = kni_fifo_get(kni->resp_q, (void **)&resp_va, 1);
557 if (num != 1 || resp_va != kni->sync_va) {
558 /* This should never happen */
559 KNI_ERR("No data in resp_q\n");
564 memcpy(req, kni->sync_kva, sizeof(struct rte_kni_request));
568 mutex_unlock(&kni->sync_lock);
573 * Return statistics to the caller
575 static struct net_device_stats *
576 kni_net_stats(struct net_device *dev)
578 struct kni_dev *kni = netdev_priv(dev);
583 * Fill the eth header
586 kni_net_header(struct sk_buff *skb, struct net_device *dev,
587 unsigned short type, const void *daddr,
588 const void *saddr, unsigned int len)
590 struct ethhdr *eth = (struct ethhdr *) skb_push(skb, ETH_HLEN);
592 memcpy(eth->h_source, saddr ? saddr : dev->dev_addr, dev->addr_len);
593 memcpy(eth->h_dest, daddr ? daddr : dev->dev_addr, dev->addr_len);
594 eth->h_proto = htons(type);
596 return (dev->hard_header_len);
601 * Re-fill the eth header
604 kni_net_rebuild_header(struct sk_buff *skb)
606 struct net_device *dev = skb->dev;
607 struct ethhdr *eth = (struct ethhdr *) skb->data;
609 memcpy(eth->h_source, dev->dev_addr, dev->addr_len);
610 memcpy(eth->h_dest, dev->dev_addr, dev->addr_len);
616 static const struct header_ops kni_net_header_ops = {
617 .create = kni_net_header,
618 .rebuild = kni_net_rebuild_header,
619 .cache = NULL, /* disable caching */
622 static const struct net_device_ops kni_net_netdev_ops = {
623 .ndo_open = kni_net_open,
624 .ndo_stop = kni_net_release,
625 .ndo_set_config = kni_net_config,
626 .ndo_start_xmit = kni_net_tx,
627 .ndo_change_mtu = kni_net_change_mtu,
628 .ndo_do_ioctl = kni_net_ioctl,
629 .ndo_get_stats = kni_net_stats,
630 .ndo_tx_timeout = kni_net_tx_timeout,
634 kni_net_init(struct net_device *dev)
636 struct kni_dev *kni = netdev_priv(dev);
638 KNI_DBG("kni_net_init\n");
640 init_waitqueue_head(&kni->wq);
641 mutex_init(&kni->sync_lock);
643 ether_setup(dev); /* assign some of the fields */
644 dev->netdev_ops = &kni_net_netdev_ops;
645 dev->header_ops = &kni_net_header_ops;
646 dev->watchdog_timeo = WD_TIMEOUT;
650 kni_net_config_lo_mode(char *lo_str)
653 KNI_PRINT("loopback disabled");
657 if (!strcmp(lo_str, "lo_mode_none"))
658 KNI_PRINT("loopback disabled");
659 else if (!strcmp(lo_str, "lo_mode_fifo")) {
660 KNI_PRINT("loopback mode=lo_mode_fifo enabled");
661 kni_net_rx_func = kni_net_rx_lo_fifo;
662 } else if (!strcmp(lo_str, "lo_mode_fifo_skb")) {
663 KNI_PRINT("loopback mode=lo_mode_fifo_skb enabled");
664 kni_net_rx_func = kni_net_rx_lo_fifo_skb;
666 KNI_PRINT("Incognizant parameter, loopback disabled");