blob: f12ad691609dd2a04c38f4283535a21cd2094422 [file] [log] [blame]
Thomas Wu68250352014-04-02 18:59:40 -07001/*
2 **************************************************************************
Vijay Dewangan488e5372014-12-29 21:40:11 -08003 * Copyright (c) 2013-2015, 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
Vijay Dewangan4861f4e2014-10-14 16:56:35 -070024int nss_ipv4_conn_cfg __read_mostly = NSS_DEFAULT_NUM_CONN;
25static struct nss_conn_cfg_pvt i4cfgp;
Vijay Dewangan9db18752014-09-15 16:25:01 -070026
Thomas Wu68250352014-04-02 18:59:40 -070027/*
Gareth Williams958aa822015-02-04 19:36:39 +000028 * nss_ipv4_max_conn_count()
29 * Return the maximum number of IPv4 connections that the NSS acceleration engine supports.
30 */
31int nss_ipv4_max_conn_count(void)
32{
33 return nss_ipv4_conn_cfg;
34}
35EXPORT_SYMBOL(nss_ipv4_max_conn_count);
36
37/*
Sol Kavy57d24b42014-04-05 13:45:36 -070038 * nss_ipv4_driver_conn_sync_update()
Thomas Wu68250352014-04-02 18:59:40 -070039 * Update driver specific information from the messsage.
40 */
Murat Sezgin0c0561d2014-04-09 18:55:58 -070041static 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 -070042{
Sol Kavy57d24b42014-04-05 13:45:36 -070043 struct nss_top_instance *nss_top = nss_ctx->nss_top;
Sol Kavy57d24b42014-04-05 13:45:36 -070044
Thomas Wu68250352014-04-02 18:59:40 -070045 /*
46 * Update statistics maintained by NSS driver
47 */
48 spin_lock_bh(&nss_top->stats_lock);
Thomas Wu68250352014-04-02 18:59:40 -070049 nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_RX_PKTS] += nirs->flow_rx_packet_count + nirs->return_rx_packet_count;
50 nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_RX_BYTES] += nirs->flow_rx_byte_count + nirs->return_rx_byte_count;
51 nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_TX_PKTS] += nirs->flow_tx_packet_count + nirs->return_tx_packet_count;
52 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 -070053 spin_unlock_bh(&nss_top->stats_lock);
54}
Thomas Wu68250352014-04-02 18:59:40 -070055
56/*
Murat Sezgin0c0561d2014-04-09 18:55:58 -070057 * nss_ipv4_driver_node_sync_update)
58 * Update driver specific information from the messsage.
59 */
60static void nss_ipv4_driver_node_sync_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_node_sync *nins)
61{
62 struct nss_top_instance *nss_top = nss_ctx->nss_top;
63 uint32_t i;
64
65 /*
66 * Update statistics maintained by NSS driver
67 */
68 spin_lock_bh(&nss_top->stats_lock);
69 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_PKTS] += nins->node_stats.rx_packets;
70 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_BYTES] += nins->node_stats.rx_bytes;
71 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_DROPPED] += nins->node_stats.rx_dropped;
72 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_PKTS] += nins->node_stats.tx_packets;
73 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_BYTES] += nins->node_stats.tx_bytes;
74
Murat Sezgin0c0561d2014-04-09 18:55:58 -070075 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_REQUESTS] += nins->ipv4_connection_create_requests;
76 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_COLLISIONS] += nins->ipv4_connection_create_collisions;
77 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_INVALID_INTERFACE] += nins->ipv4_connection_create_invalid_interface;
78 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_REQUESTS] += nins->ipv4_connection_destroy_requests;
79 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_MISSES] += nins->ipv4_connection_destroy_misses;
80 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_HITS] += nins->ipv4_connection_hash_hits;
81 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_REORDERS] += nins->ipv4_connection_hash_reorders;
82 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_FLUSHES] += nins->ipv4_connection_flushes;
83 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_EVICTIONS] += nins->ipv4_connection_evictions;
Selin Dag60ea2b22014-11-05 09:36:22 -080084 nss_top->stats_ipv4[NSS_STATS_IPV4_FRAGMENTATIONS] += nins->ipv4_fragmentations;
Murat Sezgin0c0561d2014-04-09 18:55:58 -070085
86 for (i = 0; i < NSS_EXCEPTION_EVENT_IPV4_MAX; i++) {
87 nss_top->stats_if_exception_ipv4[i] += nins->exception_events[i];
88 }
89 spin_unlock_bh(&nss_top->stats_lock);
90}
91
92/*
Sol Kavy2783c072014-04-05 12:53:13 -070093 * nss_ipv4_rx_msg_handler()
Thomas Wu68250352014-04-02 18:59:40 -070094 * Handle NSS -> HLOS messages for IPv4 bridge/route
95 */
Sol Kavy2783c072014-04-05 12:53:13 -070096static 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 -070097{
98 struct nss_ipv4_msg *nim = (struct nss_ipv4_msg *)ncm;
Sol Kavy57d24b42014-04-05 13:45:36 -070099 nss_ipv4_msg_callback_t cb;
Thomas Wu68250352014-04-02 18:59:40 -0700100
101 BUG_ON(ncm->interface != NSS_IPV4_RX_INTERFACE);
102
103 /*
104 * Sanity check the message type
105 */
Murat Sezgin5c8c7362014-09-02 17:58:21 -0700106 if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
Thomas Wu68250352014-04-02 18:59:40 -0700107 nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
108 return;
109 }
110
111 if (ncm->len > sizeof(struct nss_ipv4_msg)) {
112 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
113 return;
114 }
115
Thomas Wu68250352014-04-02 18:59:40 -0700116 /*
Thomas Wu68250352014-04-02 18:59:40 -0700117 * Log failures
118 */
119 nss_core_log_msg_failures(nss_ctx, ncm);
120
Thomas Wu68250352014-04-02 18:59:40 -0700121 switch (nim->cm.type) {
Murat Sezgin0c0561d2014-04-09 18:55:58 -0700122 case NSS_IPV4_RX_NODE_STATS_SYNC_MSG:
123 /*
124 * Update driver statistics on node sync.
125 */
126 nss_ipv4_driver_node_sync_update(nss_ctx, &nim->msg.node_stats);
127 break;
128
Thomas Wu68250352014-04-02 18:59:40 -0700129 case NSS_IPV4_RX_CONN_STATS_SYNC_MSG:
Sol Kavy57d24b42014-04-05 13:45:36 -0700130 /*
131 * Update driver statistics on connection sync.
132 */
133 nss_ipv4_driver_conn_sync_update(nss_ctx, &nim->msg.conn_stats);
Sakthi Vignesh Radhakrishnan515f8c22014-06-21 15:04:19 -0700134 break;
Thomas Wu68250352014-04-02 18:59:40 -0700135 }
136
137 /*
Sol Kavy57d24b42014-04-05 13:45:36 -0700138 * Update the callback and app_data for NOTIFY messages, IPv4 sends all notify messages
139 * to the same callback/app_data.
Thomas Wu68250352014-04-02 18:59:40 -0700140 */
Sol Kavy57d24b42014-04-05 13:45:36 -0700141 if (nim->cm.response == NSS_CMM_RESPONSE_NOTIFY) {
142 ncm->cb = (uint32_t)nss_ctx->nss_top->ipv4_callback;
143 ncm->app_data = (uint32_t)nss_ctx->nss_top->ipv4_ctx;
144 }
Sol Kavy2783c072014-04-05 12:53:13 -0700145
Thomas Wu68250352014-04-02 18:59:40 -0700146 /*
147 * Do we have a callback?
148 */
149 if (!ncm->cb) {
150 return;
151 }
152
153 /*
154 * Callback
155 */
Sol Kavy57d24b42014-04-05 13:45:36 -0700156 cb = (nss_ipv4_msg_callback_t)ncm->cb;
Thomas Wu68250352014-04-02 18:59:40 -0700157 cb((void *)ncm->app_data, nim);
Thomas Wu68250352014-04-02 18:59:40 -0700158}
159
160/*
161 * nss_ipv4_tx()
162 * Transmit an ipv4 message to the FW.
163 */
164nss_tx_status_t nss_ipv4_tx(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_msg *nim)
165{
166 struct nss_ipv4_msg *nim2;
167 struct nss_cmn_msg *ncm = &nim->cm;
168 struct sk_buff *nbuf;
169 int32_t status;
170
171 NSS_VERIFY_CTX_MAGIC(nss_ctx);
172 if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) {
173 nss_warning("%p: ipv4 msg dropped as core not ready", nss_ctx);
174 return NSS_TX_FAILURE_NOT_READY;
175 }
176
177 /*
178 * Sanity check the message
179 */
180 if (ncm->interface != NSS_IPV4_RX_INTERFACE) {
181 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
182 return NSS_TX_FAILURE;
183 }
184
Murat Sezgin5c8c7362014-09-02 17:58:21 -0700185 if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
Thomas Wu68250352014-04-02 18:59:40 -0700186 nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
187 return NSS_TX_FAILURE;
188 }
189
190 if (ncm->len > sizeof(struct nss_ipv4_msg)) {
191 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
192 return NSS_TX_FAILURE;
193 }
194
Pamidipati, Vijayb6e38842014-09-16 10:26:05 +0530195 nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE);
Thomas Wu68250352014-04-02 18:59:40 -0700196 if (unlikely(!nbuf)) {
Sundarajan Srinivasan62fee7e2015-01-22 11:13:10 -0800197 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 -0700198 nss_warning("%p: msg dropped as command allocation failed", nss_ctx);
199 return NSS_TX_FAILURE;
200 }
201
202 /*
203 * Copy the message to our skb.
204 */
205 nim2 = (struct nss_ipv4_msg *)skb_put(nbuf, sizeof(struct nss_ipv4_msg));
206 memcpy(nim2, nim, sizeof(struct nss_ipv4_msg));
207
208 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
209 if (status != NSS_CORE_STATUS_SUCCESS) {
Pamidipati, Vijayb6e38842014-09-16 10:26:05 +0530210 dev_kfree_skb_any(nbuf);
Sol Kavycd1bd5c2014-04-04 11:09:44 -0700211 nss_warning("%p: unable to enqueue IPv4 msg\n", nss_ctx);
Thomas Wu68250352014-04-02 18:59:40 -0700212 return NSS_TX_FAILURE;
213 }
214
215 nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit,
216 NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE);
217
218 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]);
219 return NSS_TX_SUCCESS;
220}
221
222/*
223 **********************************
224 Register/Unregister/Miscellaneous APIs
225 **********************************
226 */
227
228/*
229 * nss_ipv4_notify_register()
230 * Register to received IPv4 events.
231 *
232 * NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
233 */
234struct nss_ctx_instance *nss_ipv4_notify_register(nss_ipv4_msg_callback_t cb, void *app_data)
235{
236 /*
237 * TODO: We need to have a new array in support of the new API
238 * TODO: If we use a per-context array, we would move the array into nss_ctx based.
239 */
240 nss_top_main.ipv4_callback = cb;
Abhishek Rastogie11f47b2014-04-04 18:43:32 +0530241 nss_top_main.ipv4_ctx = app_data;
Thomas Wu68250352014-04-02 18:59:40 -0700242 return &nss_top_main.nss[nss_top_main.ipv4_handler_id];
243}
244
245/*
246 * nss_ipv4_notify_unregister()
247 * Unregister to received IPv4 events.
248 *
249 * NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
250 */
251void nss_ipv4_notify_unregister(void)
252{
253 nss_top_main.ipv4_callback = NULL;
254}
255
256/*
257 * nss_ipv4_get_mgr()
258 *
259 * TODO: This only suppports a single ipv4, do we ever want to support more?
260 */
261struct nss_ctx_instance *nss_ipv4_get_mgr(void)
262{
263 return (void *)&nss_top_main.nss[nss_top_main.ipv4_handler_id];
264}
265
266/*
267 * nss_ipv4_register_handler()
268 * Register our handler to receive messages for this interface
269 */
Sol Kavy2783c072014-04-05 12:53:13 -0700270void nss_ipv4_register_handler(void)
Thomas Wu68250352014-04-02 18:59:40 -0700271{
Sol Kavy2783c072014-04-05 12:53:13 -0700272 if (nss_core_register_handler(NSS_IPV4_RX_INTERFACE, nss_ipv4_rx_msg_handler, NULL) != NSS_CORE_STATUS_SUCCESS) {
Thomas Wu68250352014-04-02 18:59:40 -0700273 nss_warning("IPv4 handler failed to register");
274 }
275}
276
Vijay Dewangan9db18752014-09-15 16:25:01 -0700277/*
278 * nss_ipv4_conn_cfg_callback()
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700279 * call back function for the ipv4 connection configuration handler
Vijay Dewangan9db18752014-09-15 16:25:01 -0700280 */
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700281static void nss_ipv4_conn_cfg_callback(void *app_data, struct nss_ipv4_msg *nim)
Vijay Dewangan9db18752014-09-15 16:25:01 -0700282{
283
284 if (nim->cm.response != NSS_CMN_RESPONSE_ACK) {
285 nss_warning("IPv4 connection configuration failed with error: %d\n", nim->cm.error);
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700286 /*
287 * Error, hence we are not updating the nss_ipv4_conn_cfg
288 * Restore the current_value to its previous state
289 */
Vijay Dewangan488e5372014-12-29 21:40:11 -0800290 i4cfgp.response = NSS_FAILURE;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700291 complete(&i4cfgp.complete);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700292 return;
293 }
294
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700295 /*
296 * Sucess at NSS FW, hence updating nss_ipv4_conn_cfg, with the valid value
297 * saved at the sysctl handler.
298 */
Vijay Dewangan9db18752014-09-15 16:25:01 -0700299 nss_info("IPv4 connection configuration success: %d\n", nim->cm.error);
Vijay Dewangan488e5372014-12-29 21:40:11 -0800300 i4cfgp.response = NSS_SUCCESS;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700301 complete(&i4cfgp.complete);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700302}
303
304/*
305 * nss_ipv4_conn_cfg_handler()
306 * Sets the number of connections for IPv4
307 */
308static int nss_ipv4_conn_cfg_handler(ctl_table *ctl, int write, void __user *buffer, size_t *lenp, loff_t *ppos)
309{
310 struct nss_top_instance *nss_top = &nss_top_main;
311 struct nss_ctx_instance *nss_ctx = &nss_top->nss[0];
312 struct nss_ipv4_msg nim;
313 struct nss_ipv4_rule_conn_cfg_msg *nirccm;
314 nss_tx_status_t nss_tx_status;
Vijay Dewangan488e5372014-12-29 21:40:11 -0800315 int ret = NSS_FAILURE;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700316 uint32_t sum_of_conn;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700317
318 /*
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700319 * Acquiring semaphore
320 */
321 down(&i4cfgp.sem);
322
323 /*
324 * Take snap shot of current value
325 */
326 i4cfgp.current_value = nss_ipv4_conn_cfg;
327
328 /*
329 * Write the variable with user input
330 */
331 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
332 if (ret || (!write)) {
333 up(&i4cfgp.sem);
334 return ret;
335 }
336
337 /*
338 * The input should be multiple of 1024.
339 * Input for ipv4 and ipv6 sum together should not exceed 8k
340 * Min. value should be at least 256 connections. This is the
Vijay Dewangan9db18752014-09-15 16:25:01 -0700341 * minimum connections we will support for each of them.
342 */
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700343 sum_of_conn = nss_ipv4_conn_cfg + nss_ipv6_conn_cfg;
344 if ((nss_ipv4_conn_cfg & NSS_NUM_CONN_QUANTA_MASK) ||
345 (sum_of_conn > NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6) ||
346 (nss_ipv4_conn_cfg < NSS_MIN_NUM_CONN)) {
Vijay Dewangan9db18752014-09-15 16:25:01 -0700347 nss_warning("%p: input supported connections (%d) does not adhere\
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700348 specifications\n1) not multiple of 1024,\n2) is less than \
Vijay Dewangan9db18752014-09-15 16:25:01 -0700349 min val: %d, OR\n IPv4/6 total exceeds %d\n",
350 nss_ctx,
351 nss_ipv4_conn_cfg,
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700352 NSS_MIN_NUM_CONN,
353 NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6);
Stephen Wang06761022015-03-03 16:38:42 -0800354 goto failure;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700355 }
356
Vijay Dewangan9db18752014-09-15 16:25:01 -0700357 nss_info("%p: IPv4 supported connections: %d\n", nss_ctx, nss_ipv4_conn_cfg);
358
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700359 nss_ipv4_msg_init(&nim, NSS_IPV4_RX_INTERFACE, NSS_IPV4_TX_CONN_CFG_RULE_MSG,
Sundarajan Srinivasan30a53d42015-01-30 10:52:08 -0800360 sizeof(struct nss_ipv4_rule_conn_cfg_msg), nss_ipv4_conn_cfg_callback, NULL);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700361
362 nirccm = &nim.msg.rule_conn_cfg;
363 nirccm->num_conn = htonl(nss_ipv4_conn_cfg);
364 nss_tx_status = nss_ipv4_tx(nss_ctx, &nim);
365
366 if (nss_tx_status != NSS_TX_SUCCESS) {
367 nss_warning("%p: nss_tx error setting IPv4 Connections: %d\n",
368 nss_ctx,
369 nss_ipv4_conn_cfg);
Stephen Wang06761022015-03-03 16:38:42 -0800370 goto failure;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700371 }
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700372
373 /*
374 * Blocking call, wait till we get ACK for this msg.
375 */
376 ret = wait_for_completion_timeout(&i4cfgp.complete, msecs_to_jiffies(NSS_CONN_CFG_TIMEOUT));
377 if (ret == 0) {
378 nss_warning("%p: Waiting for ack timed out\n", nss_ctx);
Stephen Wang06761022015-03-03 16:38:42 -0800379 goto failure;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700380 }
381
382 /*
383 * ACK/NACK received from NSS FW
384 * If ACK: Callback function will update nss_ipv4_conn_cfg with
385 * i4cfgp.num_conn_valid, which holds the user input
386 */
Vijay Dewangan488e5372014-12-29 21:40:11 -0800387 if (NSS_FAILURE == i4cfgp.response) {
Stephen Wang06761022015-03-03 16:38:42 -0800388 goto failure;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700389 }
390
391 up(&i4cfgp.sem);
Thomas Wu651b3902015-05-12 11:21:09 -0700392 return 0;
Stephen Wang06761022015-03-03 16:38:42 -0800393
394failure:
395 /*
396 * Restore the current_value to its previous state
397 */
398 nss_ipv4_conn_cfg = i4cfgp.current_value;
399 up(&i4cfgp.sem);
Thomas Wu651b3902015-05-12 11:21:09 -0700400 return -EINVAL;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700401}
402
403static ctl_table nss_ipv4_table[] = {
404 {
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700405 .procname = "ipv4_conn",
406 .data = &nss_ipv4_conn_cfg,
407 .maxlen = sizeof(int),
408 .mode = 0644,
Vijay Dewangan9db18752014-09-15 16:25:01 -0700409 .proc_handler = &nss_ipv4_conn_cfg_handler,
410 },
411 { }
412};
413
414static ctl_table nss_ipv4_dir[] = {
415 {
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700416 .procname = "ipv4cfg",
417 .mode = 0555,
418 .child = nss_ipv4_table,
Vijay Dewangan9db18752014-09-15 16:25:01 -0700419 },
420 { }
421};
422
423
424static ctl_table nss_ipv4_root_dir[] = {
425 {
426 .procname = "nss",
427 .mode = 0555,
428 .child = nss_ipv4_dir,
429 },
430 { }
431};
432
433static ctl_table nss_ipv4_root[] = {
434 {
435 .procname = "dev",
436 .mode = 0555,
437 .child = nss_ipv4_root_dir,
438 },
439 { }
440};
441
442static struct ctl_table_header *nss_ipv4_header;
443
444/*
445 * nss_ipv4_register_sysctl()
446 * Register sysctl specific to ipv4
447 */
448void nss_ipv4_register_sysctl(void)
449{
450 /*
451 * Register sysctl table.
452 */
453 nss_ipv4_header = register_sysctl_table(nss_ipv4_root);
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700454 sema_init(&i4cfgp.sem, 1);
455 init_completion(&i4cfgp.complete);
456 i4cfgp.current_value = nss_ipv4_conn_cfg;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700457}
458
459/*
460 * nss_ipv4_unregister_sysctl()
461 * Unregister sysctl specific to ipv4
462 */
463void nss_ipv4_unregister_sysctl(void)
464{
465 /*
466 * Unregister sysctl table.
467 */
468 if (nss_ipv4_header) {
469 unregister_sysctl_table(nss_ipv4_header);
470 }
471}
472
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700473/*
474 * nss_ipv4_msg_init()
475 * Initialize IPv4 message.
476 */
477void 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 -0800478 nss_ipv4_msg_callback_t cb, void *app_data)
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700479{
480 nss_cmn_msg_init(&nim->cm, if_num, type, len, (void *)cb, app_data);
481}
482
Thomas Wu68250352014-04-02 18:59:40 -0700483EXPORT_SYMBOL(nss_ipv4_tx);
484EXPORT_SYMBOL(nss_ipv4_notify_register);
485EXPORT_SYMBOL(nss_ipv4_notify_unregister);
486EXPORT_SYMBOL(nss_ipv4_get_mgr);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700487EXPORT_SYMBOL(nss_ipv4_register_sysctl);
488EXPORT_SYMBOL(nss_ipv4_unregister_sysctl);
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700489EXPORT_SYMBOL(nss_ipv4_msg_init);