234ab18e659f04074baf2feba53f100827389fb5
[dpdk.git] / lib / librte_port / rte_port_source_sink.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 #include <stdint.h>
34 #include <string.h>
35
36 #include <rte_mbuf.h>
37 #include <rte_mempool.h>
38 #include <rte_malloc.h>
39
40 #include "rte_port_source_sink.h"
41
42 /*
43  * Port SOURCE
44  */
45 #ifdef RTE_PORT_STATS_COLLECT
46
47 #define RTE_PORT_SOURCE_STATS_PKTS_IN_ADD(port, val) \
48         port->stats.n_pkts_in += val
49 #define RTE_PORT_SOURCE_STATS_PKTS_DROP_ADD(port, val) \
50         port->stats.n_pkts_drop += val
51
52 #else
53
54 #define RTE_PORT_SOURCE_STATS_PKTS_IN_ADD(port, val)
55 #define RTE_PORT_SOURCE_STATS_PKTS_DROP_ADD(port, val)
56
57 #endif
58
59 struct rte_port_source {
60         struct rte_port_in_stats stats;
61
62         struct rte_mempool *mempool;
63 };
64
65 static void *
66 rte_port_source_create(void *params, int socket_id)
67 {
68         struct rte_port_source_params *p =
69                         (struct rte_port_source_params *) params;
70         struct rte_port_source *port;
71
72         /* Check input arguments*/
73         if ((p == NULL) || (p->mempool == NULL)) {
74                 RTE_LOG(ERR, PORT, "%s: Invalid params\n", __func__);
75                 return NULL;
76         }
77
78         /* Memory allocation */
79         port = rte_zmalloc_socket("PORT", sizeof(*port),
80                         RTE_CACHE_LINE_SIZE, socket_id);
81         if (port == NULL) {
82                 RTE_LOG(ERR, PORT, "%s: Failed to allocate port\n", __func__);
83                 return NULL;
84         }
85
86         /* Initialization */
87         port->mempool = (struct rte_mempool *) p->mempool;
88
89         return port;
90 }
91
92 static int
93 rte_port_source_free(void *port)
94 {
95         /* Check input parameters */
96         if (port == NULL)
97                 return 0;
98
99         rte_free(port);
100
101         return 0;
102 }
103
104 static int
105 rte_port_source_rx(void *port, struct rte_mbuf **pkts, uint32_t n_pkts)
106 {
107         struct rte_port_source *p = (struct rte_port_source *) port;
108
109         if (rte_mempool_get_bulk(p->mempool, (void **) pkts, n_pkts) != 0)
110                 return 0;
111
112         RTE_PORT_SOURCE_STATS_PKTS_IN_ADD(p, n_pkts);
113
114         return n_pkts;
115 }
116
117 static int
118 rte_port_source_stats_read(void *port,
119                 struct rte_port_in_stats *stats, int clear)
120 {
121         struct rte_port_source *p =
122                 (struct rte_port_source *) port;
123
124         if (stats != NULL)
125                 memcpy(stats, &p->stats, sizeof(p->stats));
126
127         if (clear)
128                 memset(&p->stats, 0, sizeof(p->stats));
129
130         return 0;
131 }
132
133 /*
134  * Port SINK
135  */
136 static void *
137 rte_port_sink_create(__rte_unused void *params, __rte_unused int socket_id)
138 {
139         return (void *) 1;
140 }
141
142 static int
143 rte_port_sink_tx(__rte_unused void *port, struct rte_mbuf *pkt)
144 {
145         rte_pktmbuf_free(pkt);
146
147         return 0;
148 }
149
150 static int
151 rte_port_sink_tx_bulk(__rte_unused void *port, struct rte_mbuf **pkts,
152         uint64_t pkts_mask)
153 {
154         if ((pkts_mask & (pkts_mask + 1)) == 0) {
155                 uint64_t n_pkts = __builtin_popcountll(pkts_mask);
156                 uint32_t i;
157
158                 for (i = 0; i < n_pkts; i++) {
159                         struct rte_mbuf *pkt = pkts[i];
160
161                         rte_pktmbuf_free(pkt);
162                 }
163         } else {
164                 for ( ; pkts_mask; ) {
165                         uint32_t pkt_index = __builtin_ctzll(pkts_mask);
166                         uint64_t pkt_mask = 1LLU << pkt_index;
167                         struct rte_mbuf *pkt = pkts[pkt_index];
168
169                         rte_pktmbuf_free(pkt);
170                         pkts_mask &= ~pkt_mask;
171                 }
172         }
173
174         return 0;
175 }
176
177 /*
178  * Summary of port operations
179  */
180 struct rte_port_in_ops rte_port_source_ops = {
181         .f_create = rte_port_source_create,
182         .f_free = rte_port_source_free,
183         .f_rx = rte_port_source_rx,
184         .f_stats = rte_port_source_stats_read,
185 };
186
187 struct rte_port_out_ops rte_port_sink_ops = {
188         .f_create = rte_port_sink_create,
189         .f_free = NULL,
190         .f_tx = rte_port_sink_tx,
191         .f_tx_bulk = rte_port_sink_tx_bulk,
192         .f_flush = NULL,
193 };