c089a49a2656c96ad582bb23afd2d64fb53347e7
[dpdk.git] / lib / librte_kni / rte_kni.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 #ifndef RTE_EXEC_ENV_LINUXAPP
6 #error "KNI is not supported"
7 #endif
8
9 #include <string.h>
10 #include <fcntl.h>
11 #include <unistd.h>
12 #include <sys/ioctl.h>
13
14 #include <rte_spinlock.h>
15 #include <rte_string_fns.h>
16 #include <rte_ethdev.h>
17 #include <rte_malloc.h>
18 #include <rte_log.h>
19 #include <rte_kni.h>
20 #include <rte_memzone.h>
21 #include <exec-env/rte_kni_common.h>
22 #include "rte_kni_fifo.h"
23
24 #define MAX_MBUF_BURST_NUM            32
25
26 /* Maximum number of ring entries */
27 #define KNI_FIFO_COUNT_MAX     1024
28 #define KNI_FIFO_SIZE          (KNI_FIFO_COUNT_MAX * sizeof(void *) + \
29                                         sizeof(struct rte_kni_fifo))
30
31 #define KNI_REQUEST_MBUF_NUM_MAX      32
32
33 #define KNI_MEM_CHECK(cond) do { if (cond) goto kni_fail; } while (0)
34
35 /**
36  * KNI context
37  */
38 struct rte_kni {
39         char name[RTE_KNI_NAMESIZE];        /**< KNI interface name */
40         uint16_t group_id;                  /**< Group ID of KNI devices */
41         uint32_t slot_id;                   /**< KNI pool slot ID */
42         struct rte_mempool *pktmbuf_pool;   /**< pkt mbuf mempool */
43         unsigned mbuf_size;                 /**< mbuf size */
44
45         struct rte_kni_fifo *tx_q;          /**< TX queue */
46         struct rte_kni_fifo *rx_q;          /**< RX queue */
47         struct rte_kni_fifo *alloc_q;       /**< Allocated mbufs queue */
48         struct rte_kni_fifo *free_q;        /**< To be freed mbufs queue */
49
50         /* For request & response */
51         struct rte_kni_fifo *req_q;         /**< Request queue */
52         struct rte_kni_fifo *resp_q;        /**< Response queue */
53         void * sync_addr;                   /**< Req/Resp Mem address */
54
55         struct rte_kni_ops ops;             /**< operations for request */
56         uint8_t in_use : 1;                 /**< kni in use */
57 };
58
59 enum kni_ops_status {
60         KNI_REQ_NO_REGISTER = 0,
61         KNI_REQ_REGISTERED,
62 };
63
64 /**
65  * KNI memzone pool slot
66  */
67 struct rte_kni_memzone_slot {
68         uint32_t id;
69         uint8_t in_use : 1;                    /**< slot in use */
70
71         /* Memzones */
72         const struct rte_memzone *m_ctx;       /**< KNI ctx */
73         const struct rte_memzone *m_tx_q;      /**< TX queue */
74         const struct rte_memzone *m_rx_q;      /**< RX queue */
75         const struct rte_memzone *m_alloc_q;   /**< Allocated mbufs queue */
76         const struct rte_memzone *m_free_q;    /**< To be freed mbufs queue */
77         const struct rte_memzone *m_req_q;     /**< Request queue */
78         const struct rte_memzone *m_resp_q;    /**< Response queue */
79         const struct rte_memzone *m_sync_addr;
80
81         /* Free linked list */
82         struct rte_kni_memzone_slot *next;     /**< Next slot link.list */
83 };
84
85 /**
86  * KNI memzone pool
87  */
88 struct rte_kni_memzone_pool {
89         uint8_t initialized : 1;            /**< Global KNI pool init flag */
90
91         uint32_t max_ifaces;                /**< Max. num of KNI ifaces */
92         struct rte_kni_memzone_slot *slots;        /**< Pool slots */
93         rte_spinlock_t mutex;               /**< alloc/release mutex */
94
95         /* Free memzone slots linked-list */
96         struct rte_kni_memzone_slot *free;         /**< First empty slot */
97         struct rte_kni_memzone_slot *free_tail;    /**< Last empty slot */
98 };
99
100
101 static void kni_free_mbufs(struct rte_kni *kni);
102 static void kni_allocate_mbufs(struct rte_kni *kni);
103
104 static volatile int kni_fd = -1;
105 static struct rte_kni_memzone_pool kni_memzone_pool = {
106         .initialized = 0,
107 };
108
109 static const struct rte_memzone *
110 kni_memzone_reserve(const char *name, size_t len, int socket_id,
111                                                 unsigned flags)
112 {
113         const struct rte_memzone *mz = rte_memzone_lookup(name);
114
115         if (mz == NULL)
116                 mz = rte_memzone_reserve(name, len, socket_id, flags);
117
118         return mz;
119 }
120
121 /* Pool mgmt */
122 static struct rte_kni_memzone_slot*
123 kni_memzone_pool_alloc(void)
124 {
125         struct rte_kni_memzone_slot *slot;
126
127         rte_spinlock_lock(&kni_memzone_pool.mutex);
128
129         if (!kni_memzone_pool.free) {
130                 rte_spinlock_unlock(&kni_memzone_pool.mutex);
131                 return NULL;
132         }
133
134         slot = kni_memzone_pool.free;
135         kni_memzone_pool.free = slot->next;
136         slot->in_use = 1;
137
138         if (!kni_memzone_pool.free)
139                 kni_memzone_pool.free_tail = NULL;
140
141         rte_spinlock_unlock(&kni_memzone_pool.mutex);
142
143         return slot;
144 }
145
146 static void
147 kni_memzone_pool_release(struct rte_kni_memzone_slot *slot)
148 {
149         rte_spinlock_lock(&kni_memzone_pool.mutex);
150
151         if (kni_memzone_pool.free)
152                 kni_memzone_pool.free_tail->next = slot;
153         else
154                 kni_memzone_pool.free = slot;
155
156         kni_memzone_pool.free_tail = slot;
157         slot->next = NULL;
158         slot->in_use = 0;
159
160         rte_spinlock_unlock(&kni_memzone_pool.mutex);
161 }
162
163
164 /* Shall be called before any allocation happens */
165 void
166 rte_kni_init(unsigned int max_kni_ifaces)
167 {
168         uint32_t i;
169         struct rte_kni_memzone_slot *it;
170         const struct rte_memzone *mz;
171 #define OBJNAMSIZ 32
172         char obj_name[OBJNAMSIZ];
173         char mz_name[RTE_MEMZONE_NAMESIZE];
174
175         /* Immediately return if KNI is already initialized */
176         if (kni_memzone_pool.initialized) {
177                 RTE_LOG(WARNING, KNI, "Double call to rte_kni_init()");
178                 return;
179         }
180
181         if (max_kni_ifaces == 0) {
182                 RTE_LOG(ERR, KNI, "Invalid number of max_kni_ifaces %d\n",
183                                                         max_kni_ifaces);
184                 RTE_LOG(ERR, KNI, "Unable to initialize KNI\n");
185                 return;
186         }
187
188         /* Check FD and open */
189         if (kni_fd < 0) {
190                 kni_fd = open("/dev/" KNI_DEVICE, O_RDWR);
191                 if (kni_fd < 0) {
192                         RTE_LOG(ERR, KNI,
193                                 "Can not open /dev/%s\n", KNI_DEVICE);
194                         return;
195                 }
196         }
197
198         /* Allocate slot objects */
199         kni_memzone_pool.slots = (struct rte_kni_memzone_slot *)
200                                         rte_malloc(NULL,
201                                         sizeof(struct rte_kni_memzone_slot) *
202                                         max_kni_ifaces,
203                                         0);
204         KNI_MEM_CHECK(kni_memzone_pool.slots == NULL);
205
206         /* Initialize general pool variables */
207         kni_memzone_pool.initialized = 1;
208         kni_memzone_pool.max_ifaces = max_kni_ifaces;
209         kni_memzone_pool.free = &kni_memzone_pool.slots[0];
210         rte_spinlock_init(&kni_memzone_pool.mutex);
211
212         /* Pre-allocate all memzones of all the slots; panic on error */
213         for (i = 0; i < max_kni_ifaces; i++) {
214
215                 /* Recover current slot */
216                 it = &kni_memzone_pool.slots[i];
217                 it->id = i;
218
219                 /* Allocate KNI context */
220                 snprintf(mz_name, RTE_MEMZONE_NAMESIZE, "KNI_INFO_%d", i);
221                 mz = kni_memzone_reserve(mz_name, sizeof(struct rte_kni),
222                                         SOCKET_ID_ANY, 0);
223                 KNI_MEM_CHECK(mz == NULL);
224                 it->m_ctx = mz;
225
226                 /* TX RING */
227                 snprintf(obj_name, OBJNAMSIZ, "kni_tx_%d", i);
228                 mz = kni_memzone_reserve(obj_name, KNI_FIFO_SIZE,
229                                                         SOCKET_ID_ANY, 0);
230                 KNI_MEM_CHECK(mz == NULL);
231                 it->m_tx_q = mz;
232
233                 /* RX RING */
234                 snprintf(obj_name, OBJNAMSIZ, "kni_rx_%d", i);
235                 mz = kni_memzone_reserve(obj_name, KNI_FIFO_SIZE,
236                                                         SOCKET_ID_ANY, 0);
237                 KNI_MEM_CHECK(mz == NULL);
238                 it->m_rx_q = mz;
239
240                 /* ALLOC RING */
241                 snprintf(obj_name, OBJNAMSIZ, "kni_alloc_%d", i);
242                 mz = kni_memzone_reserve(obj_name, KNI_FIFO_SIZE,
243                                                         SOCKET_ID_ANY, 0);
244                 KNI_MEM_CHECK(mz == NULL);
245                 it->m_alloc_q = mz;
246
247                 /* FREE RING */
248                 snprintf(obj_name, OBJNAMSIZ, "kni_free_%d", i);
249                 mz = kni_memzone_reserve(obj_name, KNI_FIFO_SIZE,
250                                                         SOCKET_ID_ANY, 0);
251                 KNI_MEM_CHECK(mz == NULL);
252                 it->m_free_q = mz;
253
254                 /* Request RING */
255                 snprintf(obj_name, OBJNAMSIZ, "kni_req_%d", i);
256                 mz = kni_memzone_reserve(obj_name, KNI_FIFO_SIZE,
257                                                         SOCKET_ID_ANY, 0);
258                 KNI_MEM_CHECK(mz == NULL);
259                 it->m_req_q = mz;
260
261                 /* Response RING */
262                 snprintf(obj_name, OBJNAMSIZ, "kni_resp_%d", i);
263                 mz = kni_memzone_reserve(obj_name, KNI_FIFO_SIZE,
264                                                         SOCKET_ID_ANY, 0);
265                 KNI_MEM_CHECK(mz == NULL);
266                 it->m_resp_q = mz;
267
268                 /* Req/Resp sync mem area */
269                 snprintf(obj_name, OBJNAMSIZ, "kni_sync_%d", i);
270                 mz = kni_memzone_reserve(obj_name, KNI_FIFO_SIZE,
271                                                         SOCKET_ID_ANY, 0);
272                 KNI_MEM_CHECK(mz == NULL);
273                 it->m_sync_addr = mz;
274
275                 if ((i+1) == max_kni_ifaces) {
276                         it->next = NULL;
277                         kni_memzone_pool.free_tail = it;
278                 } else
279                         it->next = &kni_memzone_pool.slots[i+1];
280         }
281
282         return;
283
284 kni_fail:
285         RTE_LOG(ERR, KNI, "Unable to allocate memory for max_kni_ifaces:%d."
286                 "Increase the amount of hugepages memory\n", max_kni_ifaces);
287 }
288
289
290 struct rte_kni *
291 rte_kni_alloc(struct rte_mempool *pktmbuf_pool,
292               const struct rte_kni_conf *conf,
293               struct rte_kni_ops *ops)
294 {
295         int ret;
296         struct rte_kni_device_info dev_info;
297         struct rte_kni *ctx;
298         char intf_name[RTE_KNI_NAMESIZE];
299         const struct rte_memzone *mz;
300         struct rte_kni_memzone_slot *slot = NULL;
301
302         if (!pktmbuf_pool || !conf || !conf->name[0])
303                 return NULL;
304
305         /* Check if KNI subsystem has been initialized */
306         if (kni_memzone_pool.initialized != 1) {
307                 RTE_LOG(ERR, KNI, "KNI subsystem has not been initialized. Invoke rte_kni_init() first\n");
308                 return NULL;
309         }
310
311         /* Get an available slot from the pool */
312         slot = kni_memzone_pool_alloc();
313         if (!slot) {
314                 RTE_LOG(ERR, KNI, "Cannot allocate more KNI interfaces; increase the number of max_kni_ifaces(current %d) or release unused ones.\n",
315                         kni_memzone_pool.max_ifaces);
316                 return NULL;
317         }
318
319         /* Recover ctx */
320         ctx = slot->m_ctx->addr;
321         snprintf(intf_name, RTE_KNI_NAMESIZE, "%s", conf->name);
322
323         if (ctx->in_use) {
324                 RTE_LOG(ERR, KNI, "KNI %s is in use\n", ctx->name);
325                 return NULL;
326         }
327         memset(ctx, 0, sizeof(struct rte_kni));
328         if (ops)
329                 memcpy(&ctx->ops, ops, sizeof(struct rte_kni_ops));
330         else
331                 ctx->ops.port_id = UINT16_MAX;
332
333         memset(&dev_info, 0, sizeof(dev_info));
334         dev_info.bus = conf->addr.bus;
335         dev_info.devid = conf->addr.devid;
336         dev_info.function = conf->addr.function;
337         dev_info.vendor_id = conf->id.vendor_id;
338         dev_info.device_id = conf->id.device_id;
339         dev_info.core_id = conf->core_id;
340         dev_info.force_bind = conf->force_bind;
341         dev_info.group_id = conf->group_id;
342         dev_info.mbuf_size = conf->mbuf_size;
343
344         memcpy(dev_info.mac_addr, conf->mac_addr, ETHER_ADDR_LEN);
345
346         snprintf(ctx->name, RTE_KNI_NAMESIZE, "%s", intf_name);
347         snprintf(dev_info.name, RTE_KNI_NAMESIZE, "%s", intf_name);
348
349         RTE_LOG(INFO, KNI, "pci: %02x:%02x:%02x \t %02x:%02x\n",
350                 dev_info.bus, dev_info.devid, dev_info.function,
351                         dev_info.vendor_id, dev_info.device_id);
352         /* TX RING */
353         mz = slot->m_tx_q;
354         ctx->tx_q = mz->addr;
355         kni_fifo_init(ctx->tx_q, KNI_FIFO_COUNT_MAX);
356         dev_info.tx_phys = mz->phys_addr;
357
358         /* RX RING */
359         mz = slot->m_rx_q;
360         ctx->rx_q = mz->addr;
361         kni_fifo_init(ctx->rx_q, KNI_FIFO_COUNT_MAX);
362         dev_info.rx_phys = mz->phys_addr;
363
364         /* ALLOC RING */
365         mz = slot->m_alloc_q;
366         ctx->alloc_q = mz->addr;
367         kni_fifo_init(ctx->alloc_q, KNI_FIFO_COUNT_MAX);
368         dev_info.alloc_phys = mz->phys_addr;
369
370         /* FREE RING */
371         mz = slot->m_free_q;
372         ctx->free_q = mz->addr;
373         kni_fifo_init(ctx->free_q, KNI_FIFO_COUNT_MAX);
374         dev_info.free_phys = mz->phys_addr;
375
376         /* Request RING */
377         mz = slot->m_req_q;
378         ctx->req_q = mz->addr;
379         kni_fifo_init(ctx->req_q, KNI_FIFO_COUNT_MAX);
380         dev_info.req_phys = mz->phys_addr;
381
382         /* Response RING */
383         mz = slot->m_resp_q;
384         ctx->resp_q = mz->addr;
385         kni_fifo_init(ctx->resp_q, KNI_FIFO_COUNT_MAX);
386         dev_info.resp_phys = mz->phys_addr;
387
388         /* Req/Resp sync mem area */
389         mz = slot->m_sync_addr;
390         ctx->sync_addr = mz->addr;
391         dev_info.sync_va = mz->addr;
392         dev_info.sync_phys = mz->phys_addr;
393
394         ctx->pktmbuf_pool = pktmbuf_pool;
395         ctx->group_id = conf->group_id;
396         ctx->slot_id = slot->id;
397         ctx->mbuf_size = conf->mbuf_size;
398
399         ret = ioctl(kni_fd, RTE_KNI_IOCTL_CREATE, &dev_info);
400         KNI_MEM_CHECK(ret < 0);
401
402         ctx->in_use = 1;
403
404         /* Allocate mbufs and then put them into alloc_q */
405         kni_allocate_mbufs(ctx);
406
407         return ctx;
408
409 kni_fail:
410         if (slot)
411                 kni_memzone_pool_release(&kni_memzone_pool.slots[slot->id]);
412
413         return NULL;
414 }
415
416 static void
417 kni_free_fifo(struct rte_kni_fifo *fifo)
418 {
419         int ret;
420         struct rte_mbuf *pkt;
421
422         do {
423                 ret = kni_fifo_get(fifo, (void **)&pkt, 1);
424                 if (ret)
425                         rte_pktmbuf_free(pkt);
426         } while (ret);
427 }
428
429 static void *
430 va2pa(struct rte_mbuf *m)
431 {
432         return (void *)((unsigned long)m -
433                         ((unsigned long)m->buf_addr -
434                          (unsigned long)m->buf_iova));
435 }
436
437 static void
438 obj_free(struct rte_mempool *mp __rte_unused, void *opaque, void *obj,
439                 unsigned obj_idx __rte_unused)
440 {
441         struct rte_mbuf *m = obj;
442         void *mbuf_phys = opaque;
443
444         if (va2pa(m) == mbuf_phys)
445                 rte_pktmbuf_free(m);
446 }
447
448 static void
449 kni_free_fifo_phy(struct rte_mempool *mp, struct rte_kni_fifo *fifo)
450 {
451         void *mbuf_phys;
452         int ret;
453
454         do {
455                 ret = kni_fifo_get(fifo, &mbuf_phys, 1);
456                 if (ret)
457                         rte_mempool_obj_iter(mp, obj_free, mbuf_phys);
458         } while (ret);
459 }
460
461 int
462 rte_kni_release(struct rte_kni *kni)
463 {
464         struct rte_kni_device_info dev_info;
465         uint32_t slot_id;
466         uint32_t retry = 5;
467
468         if (!kni || !kni->in_use)
469                 return -1;
470
471         snprintf(dev_info.name, sizeof(dev_info.name), "%s", kni->name);
472         if (ioctl(kni_fd, RTE_KNI_IOCTL_RELEASE, &dev_info) < 0) {
473                 RTE_LOG(ERR, KNI, "Fail to release kni device\n");
474                 return -1;
475         }
476
477         /* mbufs in all fifo should be released, except request/response */
478
479         /* wait until all rxq packets processed by kernel */
480         while (kni_fifo_count(kni->rx_q) && retry--)
481                 usleep(1000);
482
483         if (kni_fifo_count(kni->rx_q))
484                 RTE_LOG(ERR, KNI, "Fail to free all Rx-q items\n");
485
486         kni_free_fifo_phy(kni->pktmbuf_pool, kni->alloc_q);
487         kni_free_fifo(kni->tx_q);
488         kni_free_fifo(kni->free_q);
489
490         slot_id = kni->slot_id;
491
492         /* Memset the KNI struct */
493         memset(kni, 0, sizeof(struct rte_kni));
494
495         /* Release memzone */
496         if (slot_id > kni_memzone_pool.max_ifaces) {
497                 RTE_LOG(ERR, KNI, "KNI pool: corrupted slot ID: %d, max: %d\n",
498                         slot_id, kni_memzone_pool.max_ifaces);
499                 return -1;
500         }
501         kni_memzone_pool_release(&kni_memzone_pool.slots[slot_id]);
502
503         return 0;
504 }
505
506 /* default callback for request of configuring device mac address */
507 static int
508 kni_config_mac_address(uint16_t port_id, uint8_t mac_addr[])
509 {
510         int ret = 0;
511
512         if (port_id >= rte_eth_dev_count() || port_id >= RTE_MAX_ETHPORTS) {
513                 RTE_LOG(ERR, KNI, "Invalid port id %d\n", port_id);
514                 return -EINVAL;
515         }
516
517         RTE_LOG(INFO, KNI, "Configure mac address of %d", port_id);
518
519         ret = rte_eth_dev_default_mac_addr_set(port_id,
520                                                (struct ether_addr *)mac_addr);
521         if (ret < 0)
522                 RTE_LOG(ERR, KNI, "Failed to config mac_addr for port %d\n",
523                         port_id);
524
525         return ret;
526 }
527
528 /* default callback for request of configuring promiscuous mode */
529 static int
530 kni_config_promiscusity(uint16_t port_id, uint8_t to_on)
531 {
532         if (port_id >= rte_eth_dev_count() || port_id >= RTE_MAX_ETHPORTS) {
533                 RTE_LOG(ERR, KNI, "Invalid port id %d\n", port_id);
534                 return -EINVAL;
535         }
536
537         RTE_LOG(INFO, KNI, "Configure promiscuous mode of %d to %d\n",
538                 port_id, to_on);
539
540         if (to_on)
541                 rte_eth_promiscuous_enable(port_id);
542         else
543                 rte_eth_promiscuous_disable(port_id);
544
545         return 0;
546 }
547
548 int
549 rte_kni_handle_request(struct rte_kni *kni)
550 {
551         unsigned ret;
552         struct rte_kni_request *req;
553
554         if (kni == NULL)
555                 return -1;
556
557         /* Get request mbuf */
558         ret = kni_fifo_get(kni->req_q, (void **)&req, 1);
559         if (ret != 1)
560                 return 0; /* It is OK of can not getting the request mbuf */
561
562         if (req != kni->sync_addr) {
563                 RTE_LOG(ERR, KNI, "Wrong req pointer %p\n", req);
564                 return -1;
565         }
566
567         /* Analyze the request and call the relevant actions for it */
568         switch (req->req_id) {
569         case RTE_KNI_REQ_CHANGE_MTU: /* Change MTU */
570                 if (kni->ops.change_mtu)
571                         req->result = kni->ops.change_mtu(kni->ops.port_id,
572                                                         req->new_mtu);
573                 break;
574         case RTE_KNI_REQ_CFG_NETWORK_IF: /* Set network interface up/down */
575                 if (kni->ops.config_network_if)
576                         req->result = kni->ops.config_network_if(\
577                                         kni->ops.port_id, req->if_up);
578                 break;
579         case RTE_KNI_REQ_CHANGE_MAC_ADDR: /* Change MAC Address */
580                 if (kni->ops.config_mac_address)
581                         req->result = kni->ops.config_mac_address(
582                                         kni->ops.port_id, req->mac_addr);
583                 else if (kni->ops.port_id != UINT16_MAX)
584                         req->result = kni_config_mac_address(
585                                         kni->ops.port_id, req->mac_addr);
586                 break;
587         case RTE_KNI_REQ_CHANGE_PROMISC: /* Change PROMISCUOUS MODE */
588                 if (kni->ops.config_promiscusity)
589                         req->result = kni->ops.config_promiscusity(
590                                         kni->ops.port_id, req->promiscusity);
591                 else if (kni->ops.port_id != UINT16_MAX)
592                         req->result = kni_config_promiscusity(
593                                         kni->ops.port_id, req->promiscusity);
594                 break;
595         default:
596                 RTE_LOG(ERR, KNI, "Unknown request id %u\n", req->req_id);
597                 req->result = -EINVAL;
598                 break;
599         }
600
601         /* Construct response mbuf and put it back to resp_q */
602         ret = kni_fifo_put(kni->resp_q, (void **)&req, 1);
603         if (ret != 1) {
604                 RTE_LOG(ERR, KNI, "Fail to put the muf back to resp_q\n");
605                 return -1; /* It is an error of can't putting the mbuf back */
606         }
607
608         return 0;
609 }
610
611 unsigned
612 rte_kni_tx_burst(struct rte_kni *kni, struct rte_mbuf **mbufs, unsigned num)
613 {
614         void *phy_mbufs[num];
615         unsigned int ret;
616         unsigned int i;
617
618         for (i = 0; i < num; i++)
619                 phy_mbufs[i] = va2pa(mbufs[i]);
620
621         ret = kni_fifo_put(kni->rx_q, phy_mbufs, num);
622
623         /* Get mbufs from free_q and then free them */
624         kni_free_mbufs(kni);
625
626         return ret;
627 }
628
629 unsigned
630 rte_kni_rx_burst(struct rte_kni *kni, struct rte_mbuf **mbufs, unsigned num)
631 {
632         unsigned ret = kni_fifo_get(kni->tx_q, (void **)mbufs, num);
633
634         /* If buffers removed, allocate mbufs and then put them into alloc_q */
635         if (ret)
636                 kni_allocate_mbufs(kni);
637
638         return ret;
639 }
640
641 static void
642 kni_free_mbufs(struct rte_kni *kni)
643 {
644         int i, ret;
645         struct rte_mbuf *pkts[MAX_MBUF_BURST_NUM];
646
647         ret = kni_fifo_get(kni->free_q, (void **)pkts, MAX_MBUF_BURST_NUM);
648         if (likely(ret > 0)) {
649                 for (i = 0; i < ret; i++)
650                         rte_pktmbuf_free(pkts[i]);
651         }
652 }
653
654 static void
655 kni_allocate_mbufs(struct rte_kni *kni)
656 {
657         int i, ret;
658         struct rte_mbuf *pkts[MAX_MBUF_BURST_NUM];
659         void *phys[MAX_MBUF_BURST_NUM];
660         int allocq_free;
661
662         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, pool) !=
663                          offsetof(struct rte_kni_mbuf, pool));
664         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, buf_addr) !=
665                          offsetof(struct rte_kni_mbuf, buf_addr));
666         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, next) !=
667                          offsetof(struct rte_kni_mbuf, next));
668         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_off) !=
669                          offsetof(struct rte_kni_mbuf, data_off));
670         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, data_len) !=
671                          offsetof(struct rte_kni_mbuf, data_len));
672         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, pkt_len) !=
673                          offsetof(struct rte_kni_mbuf, pkt_len));
674         RTE_BUILD_BUG_ON(offsetof(struct rte_mbuf, ol_flags) !=
675                          offsetof(struct rte_kni_mbuf, ol_flags));
676
677         /* Check if pktmbuf pool has been configured */
678         if (kni->pktmbuf_pool == NULL) {
679                 RTE_LOG(ERR, KNI, "No valid mempool for allocating mbufs\n");
680                 return;
681         }
682
683         allocq_free = (kni->alloc_q->read - kni->alloc_q->write - 1) \
684                         & (MAX_MBUF_BURST_NUM - 1);
685         for (i = 0; i < allocq_free; i++) {
686                 pkts[i] = rte_pktmbuf_alloc(kni->pktmbuf_pool);
687                 if (unlikely(pkts[i] == NULL)) {
688                         /* Out of memory */
689                         RTE_LOG(ERR, KNI, "Out of memory\n");
690                         break;
691                 }
692                 phys[i] = va2pa(pkts[i]);
693         }
694
695         /* No pkt mbuf allocated */
696         if (i <= 0)
697                 return;
698
699         ret = kni_fifo_put(kni->alloc_q, phys, i);
700
701         /* Check if any mbufs not put into alloc_q, and then free them */
702         if (ret >= 0 && ret < i && ret < MAX_MBUF_BURST_NUM) {
703                 int j;
704
705                 for (j = ret; j < i; j++)
706                         rte_pktmbuf_free(pkts[j]);
707         }
708 }
709
710 struct rte_kni *
711 rte_kni_get(const char *name)
712 {
713         uint32_t i;
714         struct rte_kni_memzone_slot *it;
715         struct rte_kni *kni;
716
717         /* Note: could be improved perf-wise if necessary */
718         for (i = 0; i < kni_memzone_pool.max_ifaces; i++) {
719                 it = &kni_memzone_pool.slots[i];
720                 if (it->in_use == 0)
721                         continue;
722                 kni = it->m_ctx->addr;
723                 if (strncmp(kni->name, name, RTE_KNI_NAMESIZE) == 0)
724                         return kni;
725         }
726
727         return NULL;
728 }
729
730 const char *
731 rte_kni_get_name(const struct rte_kni *kni)
732 {
733         return kni->name;
734 }
735
736 static enum kni_ops_status
737 kni_check_request_register(struct rte_kni_ops *ops)
738 {
739         /* check if KNI request ops has been registered*/
740         if( NULL == ops )
741                 return KNI_REQ_NO_REGISTER;
742
743         if ((ops->change_mtu == NULL)
744                 && (ops->config_network_if == NULL)
745                 && (ops->config_mac_address == NULL)
746                 && (ops->config_promiscusity == NULL))
747                 return KNI_REQ_NO_REGISTER;
748
749         return KNI_REQ_REGISTERED;
750 }
751
752 int
753 rte_kni_register_handlers(struct rte_kni *kni,struct rte_kni_ops *ops)
754 {
755         enum kni_ops_status req_status;
756
757         if (NULL == ops) {
758                 RTE_LOG(ERR, KNI, "Invalid KNI request operation.\n");
759                 return -1;
760         }
761
762         if (NULL == kni) {
763                 RTE_LOG(ERR, KNI, "Invalid kni info.\n");
764                 return -1;
765         }
766
767         req_status = kni_check_request_register(&kni->ops);
768         if ( KNI_REQ_REGISTERED == req_status) {
769                 RTE_LOG(ERR, KNI, "The KNI request operation has already registered.\n");
770                 return -1;
771         }
772
773         memcpy(&kni->ops, ops, sizeof(struct rte_kni_ops));
774         return 0;
775 }
776
777 int
778 rte_kni_unregister_handlers(struct rte_kni *kni)
779 {
780         if (NULL == kni) {
781                 RTE_LOG(ERR, KNI, "Invalid kni info.\n");
782                 return -1;
783         }
784
785         memset(&kni->ops, 0, sizeof(struct rte_kni_ops));
786
787         return 0;
788 }
789 void
790 rte_kni_close(void)
791 {
792         if (kni_fd < 0)
793                 return;
794
795         close(kni_fd);
796         kni_fd = -1;
797 }