blob: 7930be3b79d5dcd19ff640510f6b3fd8e9ffe130 [file] [log] [blame]
Thomas Wu68250352014-04-02 18:59:40 -07001/*
2 **************************************************************************
Stephen Wangaed46332016-12-12 17:29:03 -08003 * Copyright (c) 2013-2017, The Linux Foundation. All rights reserved.
Thomas Wu68250352014-04-02 18:59:40 -07004 * Permission to use, copy, modify, and/or distribute this software for
5 * any purpose with or without fee is hereby granted, provided that the
6 * above copyright notice and this permission notice appear in all copies.
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
13 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 **************************************************************************
15 */
16
17/*
Murat Sezgin5c8c7362014-09-02 17:58:21 -070018 * nss_ipv4.c
Thomas Wu68250352014-04-02 18:59:40 -070019 * NSS IPv4 APIs
20 */
Vijay Dewangan9db18752014-09-15 16:25:01 -070021#include <linux/sysctl.h>
Thomas Wu68250352014-04-02 18:59:40 -070022#include "nss_tx_rx_common.h"
Thomas Wu68250352014-04-02 18:59:40 -070023
Stephen Wang0a2756a2016-08-04 15:52:47 -070024#define NSS_IPV4_TX_MSG_TIMEOUT 1000 /* 1 sec timeout for IPv4 messages */
25
26/*
27 * Private data structure for ipv4 configure messages
28 */
29struct nss_ipv4_cfg_pvt {
30 struct semaphore sem; /* Semaphore structure */
31 struct completion complete; /* completion structure */
32 int current_value; /* valid entry */
33 int response; /* Response from FW */
34};
35
Vijay Dewangan4861f4e2014-10-14 16:56:35 -070036int nss_ipv4_conn_cfg __read_mostly = NSS_DEFAULT_NUM_CONN;
Stephen Wang0a2756a2016-08-04 15:52:47 -070037int nss_ipv4_accel_mode_cfg __read_mostly = 1;
38
39static struct nss_ipv4_cfg_pvt i4_conn_cfgp;
40static struct nss_ipv4_cfg_pvt i4_accel_mode_cfgp;
Vijay Dewangan9db18752014-09-15 16:25:01 -070041
Thomas Wu68250352014-04-02 18:59:40 -070042/*
Suruchi Agarwal611ecd02016-08-04 15:54:35 -070043 * Callback for conn_sync_many request message.
44 */
45nss_ipv4_msg_callback_t nss_ipv4_conn_sync_many_msg_cb = NULL;
46
47/*
Gareth Williams958aa822015-02-04 19:36:39 +000048 * nss_ipv4_max_conn_count()
49 * Return the maximum number of IPv4 connections that the NSS acceleration engine supports.
50 */
51int nss_ipv4_max_conn_count(void)
52{
Tushar Mathur55ba1302015-09-08 13:14:48 +053053 return nss_core_max_ipv4_conn_get();
Gareth Williams958aa822015-02-04 19:36:39 +000054}
55EXPORT_SYMBOL(nss_ipv4_max_conn_count);
56
57/*
Sol Kavy57d24b42014-04-05 13:45:36 -070058 * nss_ipv4_driver_conn_sync_update()
Thomas Wu68250352014-04-02 18:59:40 -070059 * Update driver specific information from the messsage.
60 */
Murat Sezgin0c0561d2014-04-09 18:55:58 -070061static void nss_ipv4_driver_conn_sync_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_conn_sync *nirs)
Thomas Wu68250352014-04-02 18:59:40 -070062{
Sol Kavy57d24b42014-04-05 13:45:36 -070063 struct nss_top_instance *nss_top = nss_ctx->nss_top;
Sol Kavy57d24b42014-04-05 13:45:36 -070064
Thomas Wu68250352014-04-02 18:59:40 -070065 /*
66 * Update statistics maintained by NSS driver
67 */
68 spin_lock_bh(&nss_top->stats_lock);
Thomas Wu68250352014-04-02 18:59:40 -070069 nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_RX_PKTS] += nirs->flow_rx_packet_count + nirs->return_rx_packet_count;
70 nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_RX_BYTES] += nirs->flow_rx_byte_count + nirs->return_rx_byte_count;
71 nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_TX_PKTS] += nirs->flow_tx_packet_count + nirs->return_tx_packet_count;
72 nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_TX_BYTES] += nirs->flow_tx_byte_count + nirs->return_tx_byte_count;
Thomas Wu68250352014-04-02 18:59:40 -070073 spin_unlock_bh(&nss_top->stats_lock);
74}
Thomas Wu68250352014-04-02 18:59:40 -070075
76/*
Stephen Wang709f9b52015-07-07 14:48:35 -070077 * nss_ipv4_driver_conn_sync_many_update()
78 * Update driver specific information from the conn_sync_many messsage.
79 */
80static void nss_ipv4_driver_conn_sync_many_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_conn_sync_many_msg *nicsm)
81{
82 int i;
83
84 /*
85 * Sanity check for the stats count
86 */
87 if (nicsm->count * sizeof(struct nss_ipv4_conn_sync) >= nicsm->size) {
88 nss_warning("%p: stats sync count %u exceeds the size of this msg %u", nss_ctx, nicsm->count, nicsm->size);
89 return;
90 }
91
92 for (i = 0; i < nicsm->count; i++) {
93 nss_ipv4_driver_conn_sync_update(nss_ctx, &nicsm->conn_sync[i]);
94 }
95}
96
97/*
Murat Sezgin0c0561d2014-04-09 18:55:58 -070098 * nss_ipv4_driver_node_sync_update)
99 * Update driver specific information from the messsage.
100 */
101static void nss_ipv4_driver_node_sync_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_node_sync *nins)
102{
103 struct nss_top_instance *nss_top = nss_ctx->nss_top;
104 uint32_t i;
105
106 /*
107 * Update statistics maintained by NSS driver
108 */
109 spin_lock_bh(&nss_top->stats_lock);
110 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_PKTS] += nins->node_stats.rx_packets;
111 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_BYTES] += nins->node_stats.rx_bytes;
112 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_DROPPED] += nins->node_stats.rx_dropped;
113 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_PKTS] += nins->node_stats.tx_packets;
114 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_BYTES] += nins->node_stats.tx_bytes;
115
Murat Sezgin0c0561d2014-04-09 18:55:58 -0700116 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_REQUESTS] += nins->ipv4_connection_create_requests;
117 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_COLLISIONS] += nins->ipv4_connection_create_collisions;
118 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_INVALID_INTERFACE] += nins->ipv4_connection_create_invalid_interface;
119 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_REQUESTS] += nins->ipv4_connection_destroy_requests;
120 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_MISSES] += nins->ipv4_connection_destroy_misses;
121 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_HITS] += nins->ipv4_connection_hash_hits;
122 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_REORDERS] += nins->ipv4_connection_hash_reorders;
123 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_FLUSHES] += nins->ipv4_connection_flushes;
124 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_EVICTIONS] += nins->ipv4_connection_evictions;
Selin Dag60ea2b22014-11-05 09:36:22 -0800125 nss_top->stats_ipv4[NSS_STATS_IPV4_FRAGMENTATIONS] += nins->ipv4_fragmentations;
Kiran Kumar C.S.Kfadf92d2015-06-26 12:48:33 +0530126 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_CREATE_REQUESTS] += nins->ipv4_mc_connection_create_requests;
127 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_UPDATE_REQUESTS] += nins->ipv4_mc_connection_update_requests;
128 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_CREATE_INVALID_INTERFACE] += nins->ipv4_mc_connection_create_invalid_interface;
129 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_DESTROY_REQUESTS] += nins->ipv4_mc_connection_destroy_requests;
130 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_DESTROY_MISSES] += nins->ipv4_mc_connection_destroy_misses;
131 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_FLUSHES] += nins->ipv4_mc_connection_flushes;
Murat Sezgin0c0561d2014-04-09 18:55:58 -0700132
133 for (i = 0; i < NSS_EXCEPTION_EVENT_IPV4_MAX; i++) {
134 nss_top->stats_if_exception_ipv4[i] += nins->exception_events[i];
135 }
136 spin_unlock_bh(&nss_top->stats_lock);
137}
138
139/*
Sol Kavy2783c072014-04-05 12:53:13 -0700140 * nss_ipv4_rx_msg_handler()
Thomas Wu68250352014-04-02 18:59:40 -0700141 * Handle NSS -> HLOS messages for IPv4 bridge/route
142 */
Sol Kavy2783c072014-04-05 12:53:13 -0700143static void nss_ipv4_rx_msg_handler(struct nss_ctx_instance *nss_ctx, struct nss_cmn_msg *ncm, __attribute__((unused))void *app_data)
Thomas Wu68250352014-04-02 18:59:40 -0700144{
145 struct nss_ipv4_msg *nim = (struct nss_ipv4_msg *)ncm;
Sol Kavy57d24b42014-04-05 13:45:36 -0700146 nss_ipv4_msg_callback_t cb;
Thomas Wu68250352014-04-02 18:59:40 -0700147
148 BUG_ON(ncm->interface != NSS_IPV4_RX_INTERFACE);
149
150 /*
151 * Sanity check the message type
152 */
Murat Sezgin5c8c7362014-09-02 17:58:21 -0700153 if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
Thomas Wu68250352014-04-02 18:59:40 -0700154 nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
155 return;
156 }
157
Suruchi Agarwalef8a8702016-01-08 12:40:08 -0800158 if (nss_cmn_get_msg_len(ncm) > sizeof(struct nss_ipv4_msg)) {
159 nss_warning("%p: message length is invalid: %d", nss_ctx, nss_cmn_get_msg_len(ncm));
Thomas Wu68250352014-04-02 18:59:40 -0700160 return;
161 }
162
Thomas Wu68250352014-04-02 18:59:40 -0700163 /*
Suruchi Agarwale3940e72016-07-06 15:56:51 -0700164 * Trace messages.
Thomas Wu68250352014-04-02 18:59:40 -0700165 */
Suruchi Agarwale3940e72016-07-06 15:56:51 -0700166 nss_ipv4_log_rx_msg(nim);
Thomas Wu68250352014-04-02 18:59:40 -0700167
Thomas Wu68250352014-04-02 18:59:40 -0700168 switch (nim->cm.type) {
Murat Sezgin0c0561d2014-04-09 18:55:58 -0700169 case NSS_IPV4_RX_NODE_STATS_SYNC_MSG:
170 /*
171 * Update driver statistics on node sync.
172 */
173 nss_ipv4_driver_node_sync_update(nss_ctx, &nim->msg.node_stats);
174 break;
175
Thomas Wu68250352014-04-02 18:59:40 -0700176 case NSS_IPV4_RX_CONN_STATS_SYNC_MSG:
Sol Kavy57d24b42014-04-05 13:45:36 -0700177 /*
178 * Update driver statistics on connection sync.
179 */
180 nss_ipv4_driver_conn_sync_update(nss_ctx, &nim->msg.conn_stats);
Sakthi Vignesh Radhakrishnan515f8c22014-06-21 15:04:19 -0700181 break;
Stephen Wang709f9b52015-07-07 14:48:35 -0700182
183 case NSS_IPV4_TX_CONN_STATS_SYNC_MANY_MSG:
184 /*
185 * Update driver statistics on connection sync many.
186 */
187 nss_ipv4_driver_conn_sync_many_update(nss_ctx, &nim->msg.conn_stats_many);
Stephen Wangaed46332016-12-12 17:29:03 -0800188 ncm->cb = (nss_ptr_t)nss_ipv4_conn_sync_many_msg_cb;
Stephen Wang709f9b52015-07-07 14:48:35 -0700189 break;
Thomas Wu68250352014-04-02 18:59:40 -0700190 }
191
192 /*
Sol Kavy57d24b42014-04-05 13:45:36 -0700193 * Update the callback and app_data for NOTIFY messages, IPv4 sends all notify messages
194 * to the same callback/app_data.
Thomas Wu68250352014-04-02 18:59:40 -0700195 */
Sol Kavy57d24b42014-04-05 13:45:36 -0700196 if (nim->cm.response == NSS_CMM_RESPONSE_NOTIFY) {
Stephen Wangaed46332016-12-12 17:29:03 -0800197 ncm->cb = (nss_ptr_t)nss_ctx->nss_top->ipv4_callback;
198 ncm->app_data = (nss_ptr_t)nss_ctx->nss_top->ipv4_ctx;
Sol Kavy57d24b42014-04-05 13:45:36 -0700199 }
Sol Kavy2783c072014-04-05 12:53:13 -0700200
Thomas Wu68250352014-04-02 18:59:40 -0700201 /*
202 * Do we have a callback?
203 */
204 if (!ncm->cb) {
205 return;
206 }
207
208 /*
209 * Callback
210 */
Sol Kavy57d24b42014-04-05 13:45:36 -0700211 cb = (nss_ipv4_msg_callback_t)ncm->cb;
Thomas Wu68250352014-04-02 18:59:40 -0700212 cb((void *)ncm->app_data, nim);
Thomas Wu68250352014-04-02 18:59:40 -0700213}
214
215/*
Stephen Wang709f9b52015-07-07 14:48:35 -0700216 * nss_ipv4_tx_with_size()
217 * Transmit an ipv4 message to the FW with a specified size.
Thomas Wu68250352014-04-02 18:59:40 -0700218 */
Stephen Wang709f9b52015-07-07 14:48:35 -0700219nss_tx_status_t nss_ipv4_tx_with_size(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_msg *nim, uint32_t size)
Thomas Wu68250352014-04-02 18:59:40 -0700220{
221 struct nss_ipv4_msg *nim2;
222 struct nss_cmn_msg *ncm = &nim->cm;
223 struct sk_buff *nbuf;
224 int32_t status;
225
226 NSS_VERIFY_CTX_MAGIC(nss_ctx);
227 if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) {
228 nss_warning("%p: ipv4 msg dropped as core not ready", nss_ctx);
229 return NSS_TX_FAILURE_NOT_READY;
230 }
231
232 /*
233 * Sanity check the message
234 */
235 if (ncm->interface != NSS_IPV4_RX_INTERFACE) {
236 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
237 return NSS_TX_FAILURE;
238 }
239
Murat Sezgin5c8c7362014-09-02 17:58:21 -0700240 if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
Thomas Wu68250352014-04-02 18:59:40 -0700241 nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
242 return NSS_TX_FAILURE;
243 }
244
Suruchi Agarwalef8a8702016-01-08 12:40:08 -0800245 if (nss_cmn_get_msg_len(ncm) > sizeof(struct nss_ipv4_msg)) {
246 nss_warning("%p: message length is invalid: %d", nss_ctx, nss_cmn_get_msg_len(ncm));
Thomas Wu68250352014-04-02 18:59:40 -0700247 return NSS_TX_FAILURE;
248 }
249
Stephen Wang709f9b52015-07-07 14:48:35 -0700250 if(size > PAGE_SIZE) {
251 nss_warning("%p: tx request size too large: %u", nss_ctx, size);
252 return NSS_TX_FAILURE;
253 }
254
255 nbuf = dev_alloc_skb(size);
Thomas Wu68250352014-04-02 18:59:40 -0700256 if (unlikely(!nbuf)) {
Sundarajan Srinivasan62fee7e2015-01-22 11:13:10 -0800257 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]);
Thomas Wu68250352014-04-02 18:59:40 -0700258 nss_warning("%p: msg dropped as command allocation failed", nss_ctx);
259 return NSS_TX_FAILURE;
260 }
261
262 /*
263 * Copy the message to our skb.
264 */
Suruchi Agarwalea2e5232016-09-14 10:32:08 -0700265 nim2 = (struct nss_ipv4_msg *)skb_put(nbuf, size);
Thomas Wu68250352014-04-02 18:59:40 -0700266 memcpy(nim2, nim, sizeof(struct nss_ipv4_msg));
267
Suruchi Agarwale3940e72016-07-06 15:56:51 -0700268 /*
269 * Trace messages.
270 */
271 nss_ipv4_log_tx_msg(nim);
272
Thomas Wu68250352014-04-02 18:59:40 -0700273 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
274 if (status != NSS_CORE_STATUS_SUCCESS) {
Pamidipati, Vijayb6e38842014-09-16 10:26:05 +0530275 dev_kfree_skb_any(nbuf);
Sol Kavycd1bd5c2014-04-04 11:09:44 -0700276 nss_warning("%p: unable to enqueue IPv4 msg\n", nss_ctx);
Thomas Wu68250352014-04-02 18:59:40 -0700277 return NSS_TX_FAILURE;
278 }
279
Stephen Wang90c67de2016-04-26 15:15:59 -0700280 nss_hal_send_interrupt(nss_ctx, NSS_H2N_INTR_DATA_COMMAND_QUEUE);
Thomas Wu68250352014-04-02 18:59:40 -0700281
282 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]);
283 return NSS_TX_SUCCESS;
284}
285
286/*
Stephen Wang709f9b52015-07-07 14:48:35 -0700287 * nss_ipv4_tx()
288 * Transmit an ipv4 message to the FW.
289 */
290nss_tx_status_t nss_ipv4_tx(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_msg *nim)
291{
292 return nss_ipv4_tx_with_size(nss_ctx, nim, NSS_NBUF_PAYLOAD_SIZE);
293}
294
295/*
Thomas Wu68250352014-04-02 18:59:40 -0700296 **********************************
297 Register/Unregister/Miscellaneous APIs
298 **********************************
299 */
300
301/*
302 * nss_ipv4_notify_register()
303 * Register to received IPv4 events.
304 *
305 * NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
306 */
307struct nss_ctx_instance *nss_ipv4_notify_register(nss_ipv4_msg_callback_t cb, void *app_data)
308{
309 /*
310 * TODO: We need to have a new array in support of the new API
311 * TODO: If we use a per-context array, we would move the array into nss_ctx based.
312 */
313 nss_top_main.ipv4_callback = cb;
Abhishek Rastogie11f47b2014-04-04 18:43:32 +0530314 nss_top_main.ipv4_ctx = app_data;
Thomas Wu68250352014-04-02 18:59:40 -0700315 return &nss_top_main.nss[nss_top_main.ipv4_handler_id];
316}
317
318/*
319 * nss_ipv4_notify_unregister()
320 * Unregister to received IPv4 events.
321 *
322 * NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
323 */
324void nss_ipv4_notify_unregister(void)
325{
326 nss_top_main.ipv4_callback = NULL;
327}
328
329/*
Suruchi Agarwal611ecd02016-08-04 15:54:35 -0700330 * nss_ipv4_conn_sync_many_notify_register()
331 * Register to receive IPv4 conn_sync_many message response.
332 */
333void nss_ipv4_conn_sync_many_notify_register(nss_ipv4_msg_callback_t cb)
334{
335 nss_ipv4_conn_sync_many_msg_cb = cb;
336}
337
338/*
339 * nss_ipv4_conn_sync_many_notify_unregister()
340 * Unregister to receive IPv4 conn_sync_many message response.
341 */
342void nss_ipv4_conn_sync_many_notify_unregister(void)
343{
344 nss_ipv4_conn_sync_many_msg_cb = NULL;
345}
346
347/*
Thomas Wu68250352014-04-02 18:59:40 -0700348 * nss_ipv4_get_mgr()
349 *
350 * TODO: This only suppports a single ipv4, do we ever want to support more?
351 */
352struct nss_ctx_instance *nss_ipv4_get_mgr(void)
353{
354 return (void *)&nss_top_main.nss[nss_top_main.ipv4_handler_id];
355}
356
357/*
358 * nss_ipv4_register_handler()
359 * Register our handler to receive messages for this interface
360 */
Sol Kavy2783c072014-04-05 12:53:13 -0700361void nss_ipv4_register_handler(void)
Thomas Wu68250352014-04-02 18:59:40 -0700362{
Thomas Wu91f4bdf2017-06-09 12:03:02 -0700363 struct nss_ctx_instance *nss_ctx = nss_ipv4_get_mgr();
364
365 if (nss_core_register_handler(nss_ctx, NSS_IPV4_RX_INTERFACE, nss_ipv4_rx_msg_handler, NULL) != NSS_CORE_STATUS_SUCCESS) {
Thomas Wu68250352014-04-02 18:59:40 -0700366 nss_warning("IPv4 handler failed to register");
367 }
368}
369
Vijay Dewangan9db18752014-09-15 16:25:01 -0700370/*
Tushar Mathura3c18932015-08-24 20:27:21 +0530371 * nss_ipv4_conn_cfg_process()
372 * Process request to configure number of ipv4 connections
373 */
374static int nss_ipv4_conn_cfg_process(struct nss_ctx_instance *nss_ctx, int conn,
375 void (*cfg_cb)(void *app_data, struct nss_ipv4_msg *nim))
376{
377 struct nss_ipv4_msg nim;
378 struct nss_ipv4_rule_conn_cfg_msg *nirccm;
379 nss_tx_status_t nss_tx_status;
380 uint32_t sum_of_conn;
381
382 /*
383 * The input should be multiple of 1024.
384 * Input for ipv4 and ipv6 sum together should not exceed 8k
385 * Min. value should be at least 256 connections. This is the
386 * minimum connections we will support for each of them.
387 */
388 sum_of_conn = conn + nss_ipv6_conn_cfg;
389 if ((conn & NSS_NUM_CONN_QUANTA_MASK) ||
390 (sum_of_conn > NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6) ||
391 (conn < NSS_MIN_NUM_CONN)) {
392 nss_warning("%p: input supported connections (%d) does not adhere\
393 specifications\n1) not multiple of 1024,\n2) is less than \
394 min val: %d, OR\n IPv4/6 total exceeds %d\n",
395 nss_ctx,
396 conn,
397 NSS_MIN_NUM_CONN,
398 NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6);
399 return -EINVAL;
400 }
401
402 nss_info("%p: IPv4 supported connections: %d\n", nss_ctx, conn);
403
404 memset(&nim, 0, sizeof(struct nss_ipv4_msg));
405 nss_ipv4_msg_init(&nim, NSS_IPV4_RX_INTERFACE, NSS_IPV4_TX_CONN_CFG_RULE_MSG,
406 sizeof(struct nss_ipv4_rule_conn_cfg_msg), cfg_cb, NULL);
407
408 nirccm = &nim.msg.rule_conn_cfg;
409 nirccm->num_conn = htonl(conn);
410 nss_tx_status = nss_ipv4_tx(nss_ctx, &nim);
411
412 if (nss_tx_status != NSS_TX_SUCCESS) {
413 nss_warning("%p: nss_tx error setting IPv4 Connections: %d\n",
414 nss_ctx,
415 conn);
416 return -EIO;
417 }
418
419 return 0;
420}
421
422/*
Vijay Dewangan9db18752014-09-15 16:25:01 -0700423 * nss_ipv4_conn_cfg_callback()
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700424 * call back function for the ipv4 connection configuration handler
Vijay Dewangan9db18752014-09-15 16:25:01 -0700425 */
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700426static void nss_ipv4_conn_cfg_callback(void *app_data, struct nss_ipv4_msg *nim)
Vijay Dewangan9db18752014-09-15 16:25:01 -0700427{
428
429 if (nim->cm.response != NSS_CMN_RESPONSE_ACK) {
430 nss_warning("IPv4 connection configuration failed with error: %d\n", nim->cm.error);
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700431 /*
432 * Error, hence we are not updating the nss_ipv4_conn_cfg
433 * Restore the current_value to its previous state
434 */
Stephen Wang0a2756a2016-08-04 15:52:47 -0700435 i4_conn_cfgp.response = NSS_FAILURE;
436 complete(&i4_conn_cfgp.complete);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700437 return;
438 }
439
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700440 /*
441 * Sucess at NSS FW, hence updating nss_ipv4_conn_cfg, with the valid value
442 * saved at the sysctl handler.
443 */
Vijay Dewangan9db18752014-09-15 16:25:01 -0700444 nss_info("IPv4 connection configuration success: %d\n", nim->cm.error);
Stephen Wang0a2756a2016-08-04 15:52:47 -0700445 i4_conn_cfgp.response = NSS_SUCCESS;
446 complete(&i4_conn_cfgp.complete);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700447}
448
449/*
450 * nss_ipv4_conn_cfg_handler()
451 * Sets the number of connections for IPv4
452 */
Stephen Wang52e6d342016-03-29 15:02:33 -0700453static int nss_ipv4_conn_cfg_handler(struct ctl_table *ctl, int write, void __user *buffer, size_t *lenp, loff_t *ppos)
Vijay Dewangan9db18752014-09-15 16:25:01 -0700454{
455 struct nss_top_instance *nss_top = &nss_top_main;
456 struct nss_ctx_instance *nss_ctx = &nss_top->nss[0];
Vijay Dewangan488e5372014-12-29 21:40:11 -0800457 int ret = NSS_FAILURE;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700458
459 /*
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700460 * Acquiring semaphore
461 */
Stephen Wang0a2756a2016-08-04 15:52:47 -0700462 down(&i4_conn_cfgp.sem);
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700463
464 /*
465 * Take snap shot of current value
466 */
Stephen Wang0a2756a2016-08-04 15:52:47 -0700467 i4_conn_cfgp.current_value = nss_ipv4_conn_cfg;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700468
469 /*
470 * Write the variable with user input
471 */
472 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
473 if (ret || (!write)) {
Stephen Wang0a2756a2016-08-04 15:52:47 -0700474 up(&i4_conn_cfgp.sem);
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700475 return ret;
476 }
477
478 /*
Tushar Mathura3c18932015-08-24 20:27:21 +0530479 * Process request to change number of IPv4 connections
Vijay Dewangan9db18752014-09-15 16:25:01 -0700480 */
Tushar Mathura3c18932015-08-24 20:27:21 +0530481 ret = nss_ipv4_conn_cfg_process(nss_ctx, nss_ipv4_conn_cfg, nss_ipv4_conn_cfg_callback);
482 if (ret != 0) {
Stephen Wang06761022015-03-03 16:38:42 -0800483 goto failure;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700484 }
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700485
486 /*
487 * Blocking call, wait till we get ACK for this msg.
488 */
Stephen Wang0a2756a2016-08-04 15:52:47 -0700489 ret = wait_for_completion_timeout(&i4_conn_cfgp.complete, msecs_to_jiffies(NSS_CONN_CFG_TIMEOUT));
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700490 if (ret == 0) {
491 nss_warning("%p: Waiting for ack timed out\n", nss_ctx);
Stephen Wang06761022015-03-03 16:38:42 -0800492 goto failure;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700493 }
494
495 /*
496 * ACK/NACK received from NSS FW
497 * If ACK: Callback function will update nss_ipv4_conn_cfg with
Stephen Wang0a2756a2016-08-04 15:52:47 -0700498 * i4_conn_cfgp.num_conn_valid, which holds the user input
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700499 */
Stephen Wang0a2756a2016-08-04 15:52:47 -0700500 if (NSS_FAILURE == i4_conn_cfgp.response) {
Stephen Wang06761022015-03-03 16:38:42 -0800501 goto failure;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700502 }
503
Stephen Wang0a2756a2016-08-04 15:52:47 -0700504 up(&i4_conn_cfgp.sem);
Thomas Wu651b3902015-05-12 11:21:09 -0700505 return 0;
Stephen Wang06761022015-03-03 16:38:42 -0800506
507failure:
508 /*
509 * Restore the current_value to its previous state
510 */
Stephen Wang0a2756a2016-08-04 15:52:47 -0700511 nss_ipv4_conn_cfg = i4_conn_cfgp.current_value;
512 up(&i4_conn_cfgp.sem);
Thomas Wu651b3902015-05-12 11:21:09 -0700513 return -EINVAL;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700514}
515
Tushar Mathura3c18932015-08-24 20:27:21 +0530516/*
517 * nss_ipv4_update_conn_count_cb()
518 * call back function for the ipv4 connection count update handler
519 */
520static void nss_ipv4_update_conn_count_cb(void *app_data, struct nss_ipv4_msg *nim)
521{
522 if (nim->cm.response != NSS_CMN_RESPONSE_ACK) {
523 nss_warning("IPv4 connection count update failed with error: %d\n", nim->cm.error);
524 return;
525 }
526
527 nss_warning("IPv4 connection count update success: %d\n", nim->cm.error);
528}
529
530/*
531 * nss_ipv4_update_conn_count()
532 * Sets the maximum number of connections for IPv4
533 */
534int nss_ipv4_update_conn_count(int ipv4_num_conn)
535{
536 struct nss_top_instance *nss_top = &nss_top_main;
537 struct nss_ctx_instance *nss_ctx = &nss_top->nss[0];
538 int saved_nss_ipv4_conn_cfg = nss_ipv4_conn_cfg;
539 int ret = 0;
540
541 nss_ipv4_conn_cfg = ipv4_num_conn;
542
543 /*
544 * Process request to change number of IPv4 connections
545 */
546 ret = nss_ipv4_conn_cfg_process(nss_ctx, nss_ipv4_conn_cfg,
547 nss_ipv4_update_conn_count_cb);
548 if (ret != 0) {
549 nss_ipv4_conn_cfg = saved_nss_ipv4_conn_cfg;
550 return ret;
551 }
552
553 return 0;
554}
555
Stephen Wang0a2756a2016-08-04 15:52:47 -0700556/*
557 * nss_ipv4_accel_mode_cfg_callback()
558 * call back function for the ipv4 acceleration mode configurate handler
559 */
560static void nss_ipv4_accel_mode_cfg_callback(void *app_data, struct nss_ipv4_msg *nim)
561{
562 if (nim->cm.response != NSS_CMN_RESPONSE_ACK) {
563 nss_warning("IPv4 acceleration mode configuration failed with error: %d\n", nim->cm.error);
564 i4_accel_mode_cfgp.response = NSS_FAILURE;
565 complete(&i4_accel_mode_cfgp.complete);
566 return;
567 }
568
569 nss_info("IPv4 acceleration mode configuration success\n");
570 i4_accel_mode_cfgp.response = NSS_SUCCESS;
571 complete(&i4_accel_mode_cfgp.complete);
572}
573
574/*
575 * nss_ipv4_accel_mode_cfg_handler()
576 * Configure acceleration mode for IPv4
577 */
578static int nss_ipv4_accel_mode_cfg_handler(struct ctl_table *ctl, int write, void __user *buffer, size_t *lenp, loff_t *ppos)
579{
580 struct nss_top_instance *nss_top = &nss_top_main;
581 struct nss_ctx_instance *nss_ctx = &nss_top->nss[0];
582 struct nss_ipv4_msg nim;
583 struct nss_ipv4_accel_mode_cfg_msg *nipcm;
584 nss_tx_status_t nss_tx_status;
585 int ret = NSS_FAILURE;
586
587 /*
588 * Acquiring semaphore
589 */
590 down(&i4_accel_mode_cfgp.sem);
591
592 /*
593 * Take snap shot of current value
594 */
595 i4_accel_mode_cfgp.current_value = nss_ipv4_accel_mode_cfg;
596
597 /*
598 * Write the variable with user input
599 */
600 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
601 if (ret || (!write)) {
602 up(&i4_accel_mode_cfgp.sem);
603 return ret;
604 }
605
606 memset(&nim, 0, sizeof(struct nss_ipv4_msg));
607 nss_ipv4_msg_init(&nim, NSS_IPV4_RX_INTERFACE, NSS_IPV4_TX_ACCEL_MODE_CFG_MSG,
608 sizeof(struct nss_ipv4_accel_mode_cfg_msg), nss_ipv4_accel_mode_cfg_callback, NULL);
609
610 nipcm = &nim.msg.accel_mode_cfg;
611 nipcm->mode = htonl(nss_ipv4_accel_mode_cfg);
612 nss_tx_status = nss_ipv4_tx(nss_ctx, &nim);
613
614 if (nss_tx_status != NSS_TX_SUCCESS) {
615 nss_warning("%p: Send acceleration mode message failed\n", nss_ctx);
616 goto fail;
617 }
618
619 /*
620 * Blocking call, wait till we get ACK for this msg.
621 */
622 ret = wait_for_completion_timeout(&i4_accel_mode_cfgp.complete, msecs_to_jiffies(NSS_IPV4_TX_MSG_TIMEOUT));
623 if (ret == 0) {
624 nss_warning("%p: Waiting for ack timed out\n", nss_ctx);
625 goto fail;
626 }
627
628 if (NSS_FAILURE == i4_accel_mode_cfgp.response) {
629 nss_warning("%p: accel mode configure failed\n", nss_ctx);
630 goto fail;
631 }
632
633 up(&i4_accel_mode_cfgp.sem);
634 return 0;
635
636fail:
637 nss_ipv4_accel_mode_cfg = i4_accel_mode_cfgp.current_value;
638 up(&i4_accel_mode_cfgp.sem);
639 return -EIO;
640}
641
Stephen Wang52e6d342016-03-29 15:02:33 -0700642static struct ctl_table nss_ipv4_table[] = {
Vijay Dewangan9db18752014-09-15 16:25:01 -0700643 {
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700644 .procname = "ipv4_conn",
645 .data = &nss_ipv4_conn_cfg,
646 .maxlen = sizeof(int),
647 .mode = 0644,
Stephen Wang0a2756a2016-08-04 15:52:47 -0700648 .proc_handler = &nss_ipv4_conn_cfg_handler,
649 },
650 {
651 .procname = "ipv4_accel_mode",
652 .data = &nss_ipv4_accel_mode_cfg,
653 .maxlen = sizeof(int),
654 .mode = 0644,
655 .proc_handler = &nss_ipv4_accel_mode_cfg_handler,
Vijay Dewangan9db18752014-09-15 16:25:01 -0700656 },
657 { }
658};
659
Stephen Wang52e6d342016-03-29 15:02:33 -0700660static struct ctl_table nss_ipv4_dir[] = {
Vijay Dewangan9db18752014-09-15 16:25:01 -0700661 {
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700662 .procname = "ipv4cfg",
663 .mode = 0555,
664 .child = nss_ipv4_table,
Vijay Dewangan9db18752014-09-15 16:25:01 -0700665 },
666 { }
667};
668
669
Stephen Wang52e6d342016-03-29 15:02:33 -0700670static struct ctl_table nss_ipv4_root_dir[] = {
Vijay Dewangan9db18752014-09-15 16:25:01 -0700671 {
672 .procname = "nss",
673 .mode = 0555,
674 .child = nss_ipv4_dir,
675 },
676 { }
677};
678
Stephen Wang52e6d342016-03-29 15:02:33 -0700679static struct ctl_table nss_ipv4_root[] = {
Vijay Dewangan9db18752014-09-15 16:25:01 -0700680 {
681 .procname = "dev",
682 .mode = 0555,
683 .child = nss_ipv4_root_dir,
684 },
685 { }
686};
687
688static struct ctl_table_header *nss_ipv4_header;
689
690/*
691 * nss_ipv4_register_sysctl()
692 * Register sysctl specific to ipv4
693 */
694void nss_ipv4_register_sysctl(void)
695{
Stephen Wang0a2756a2016-08-04 15:52:47 -0700696 sema_init(&i4_conn_cfgp.sem, 1);
697 init_completion(&i4_conn_cfgp.complete);
698
699 sema_init(&i4_accel_mode_cfgp.sem, 1);
700 init_completion(&i4_accel_mode_cfgp.complete);
Stephen Wang49b474b2016-03-25 10:40:30 -0700701
Vijay Dewangan9db18752014-09-15 16:25:01 -0700702 /*
703 * Register sysctl table.
704 */
705 nss_ipv4_header = register_sysctl_table(nss_ipv4_root);
706}
707
708/*
709 * nss_ipv4_unregister_sysctl()
710 * Unregister sysctl specific to ipv4
711 */
712void nss_ipv4_unregister_sysctl(void)
713{
714 /*
715 * Unregister sysctl table.
716 */
717 if (nss_ipv4_header) {
718 unregister_sysctl_table(nss_ipv4_header);
719 }
720}
721
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700722/*
723 * nss_ipv4_msg_init()
724 * Initialize IPv4 message.
725 */
726void nss_ipv4_msg_init(struct nss_ipv4_msg *nim, uint16_t if_num, uint32_t type, uint32_t len,
Sundarajan Srinivasan30a53d42015-01-30 10:52:08 -0800727 nss_ipv4_msg_callback_t cb, void *app_data)
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700728{
729 nss_cmn_msg_init(&nim->cm, if_num, type, len, (void *)cb, app_data);
730}
731
Thomas Wu68250352014-04-02 18:59:40 -0700732EXPORT_SYMBOL(nss_ipv4_tx);
Stephen Wang709f9b52015-07-07 14:48:35 -0700733EXPORT_SYMBOL(nss_ipv4_tx_with_size);
Thomas Wu68250352014-04-02 18:59:40 -0700734EXPORT_SYMBOL(nss_ipv4_notify_register);
735EXPORT_SYMBOL(nss_ipv4_notify_unregister);
Suruchi Agarwal611ecd02016-08-04 15:54:35 -0700736EXPORT_SYMBOL(nss_ipv4_conn_sync_many_notify_register);
737EXPORT_SYMBOL(nss_ipv4_conn_sync_many_notify_unregister);
Thomas Wu68250352014-04-02 18:59:40 -0700738EXPORT_SYMBOL(nss_ipv4_get_mgr);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700739EXPORT_SYMBOL(nss_ipv4_register_sysctl);
740EXPORT_SYMBOL(nss_ipv4_unregister_sysctl);
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700741EXPORT_SYMBOL(nss_ipv4_msg_init);
Tushar Mathura3c18932015-08-24 20:27:21 +0530742EXPORT_SYMBOL(nss_ipv4_update_conn_count);