blob: 6c73c7cfe3c4f6d75fd43a706d92a30189213dcf [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/*
Stephen Wang709f9b52015-07-07 14:48:35 -070057 * nss_ipv4_driver_conn_sync_many_update()
58 * Update driver specific information from the conn_sync_many messsage.
59 */
60static void nss_ipv4_driver_conn_sync_many_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_conn_sync_many_msg *nicsm)
61{
62 int i;
63
64 /*
65 * Sanity check for the stats count
66 */
67 if (nicsm->count * sizeof(struct nss_ipv4_conn_sync) >= nicsm->size) {
68 nss_warning("%p: stats sync count %u exceeds the size of this msg %u", nss_ctx, nicsm->count, nicsm->size);
69 return;
70 }
71
72 for (i = 0; i < nicsm->count; i++) {
73 nss_ipv4_driver_conn_sync_update(nss_ctx, &nicsm->conn_sync[i]);
74 }
75}
76
77/*
Murat Sezgin0c0561d2014-04-09 18:55:58 -070078 * nss_ipv4_driver_node_sync_update)
79 * Update driver specific information from the messsage.
80 */
81static void nss_ipv4_driver_node_sync_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_node_sync *nins)
82{
83 struct nss_top_instance *nss_top = nss_ctx->nss_top;
84 uint32_t i;
85
86 /*
87 * Update statistics maintained by NSS driver
88 */
89 spin_lock_bh(&nss_top->stats_lock);
90 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_PKTS] += nins->node_stats.rx_packets;
91 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_BYTES] += nins->node_stats.rx_bytes;
92 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_DROPPED] += nins->node_stats.rx_dropped;
93 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_PKTS] += nins->node_stats.tx_packets;
94 nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_BYTES] += nins->node_stats.tx_bytes;
95
Murat Sezgin0c0561d2014-04-09 18:55:58 -070096 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_REQUESTS] += nins->ipv4_connection_create_requests;
97 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_COLLISIONS] += nins->ipv4_connection_create_collisions;
98 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_INVALID_INTERFACE] += nins->ipv4_connection_create_invalid_interface;
99 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_REQUESTS] += nins->ipv4_connection_destroy_requests;
100 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_MISSES] += nins->ipv4_connection_destroy_misses;
101 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_HITS] += nins->ipv4_connection_hash_hits;
102 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_REORDERS] += nins->ipv4_connection_hash_reorders;
103 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_FLUSHES] += nins->ipv4_connection_flushes;
104 nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_EVICTIONS] += nins->ipv4_connection_evictions;
Selin Dag60ea2b22014-11-05 09:36:22 -0800105 nss_top->stats_ipv4[NSS_STATS_IPV4_FRAGMENTATIONS] += nins->ipv4_fragmentations;
Kiran Kumar C.S.Kfadf92d2015-06-26 12:48:33 +0530106 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_CREATE_REQUESTS] += nins->ipv4_mc_connection_create_requests;
107 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_UPDATE_REQUESTS] += nins->ipv4_mc_connection_update_requests;
108 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_CREATE_INVALID_INTERFACE] += nins->ipv4_mc_connection_create_invalid_interface;
109 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_DESTROY_REQUESTS] += nins->ipv4_mc_connection_destroy_requests;
110 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_DESTROY_MISSES] += nins->ipv4_mc_connection_destroy_misses;
111 nss_top->stats_ipv4[NSS_STATS_IPV4_MC_CONNECTION_FLUSHES] += nins->ipv4_mc_connection_flushes;
Murat Sezgin0c0561d2014-04-09 18:55:58 -0700112
113 for (i = 0; i < NSS_EXCEPTION_EVENT_IPV4_MAX; i++) {
114 nss_top->stats_if_exception_ipv4[i] += nins->exception_events[i];
115 }
116 spin_unlock_bh(&nss_top->stats_lock);
117}
118
119/*
Sol Kavy2783c072014-04-05 12:53:13 -0700120 * nss_ipv4_rx_msg_handler()
Thomas Wu68250352014-04-02 18:59:40 -0700121 * Handle NSS -> HLOS messages for IPv4 bridge/route
122 */
Sol Kavy2783c072014-04-05 12:53:13 -0700123static 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 -0700124{
125 struct nss_ipv4_msg *nim = (struct nss_ipv4_msg *)ncm;
Sol Kavy57d24b42014-04-05 13:45:36 -0700126 nss_ipv4_msg_callback_t cb;
Thomas Wu68250352014-04-02 18:59:40 -0700127
128 BUG_ON(ncm->interface != NSS_IPV4_RX_INTERFACE);
129
130 /*
131 * Sanity check the message type
132 */
Murat Sezgin5c8c7362014-09-02 17:58:21 -0700133 if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
Thomas Wu68250352014-04-02 18:59:40 -0700134 nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
135 return;
136 }
137
138 if (ncm->len > sizeof(struct nss_ipv4_msg)) {
139 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
140 return;
141 }
142
Thomas Wu68250352014-04-02 18:59:40 -0700143 /*
Thomas Wu68250352014-04-02 18:59:40 -0700144 * Log failures
145 */
146 nss_core_log_msg_failures(nss_ctx, ncm);
147
Thomas Wu68250352014-04-02 18:59:40 -0700148 switch (nim->cm.type) {
Murat Sezgin0c0561d2014-04-09 18:55:58 -0700149 case NSS_IPV4_RX_NODE_STATS_SYNC_MSG:
150 /*
151 * Update driver statistics on node sync.
152 */
153 nss_ipv4_driver_node_sync_update(nss_ctx, &nim->msg.node_stats);
154 break;
155
Thomas Wu68250352014-04-02 18:59:40 -0700156 case NSS_IPV4_RX_CONN_STATS_SYNC_MSG:
Sol Kavy57d24b42014-04-05 13:45:36 -0700157 /*
158 * Update driver statistics on connection sync.
159 */
160 nss_ipv4_driver_conn_sync_update(nss_ctx, &nim->msg.conn_stats);
Sakthi Vignesh Radhakrishnan515f8c22014-06-21 15:04:19 -0700161 break;
Stephen Wang709f9b52015-07-07 14:48:35 -0700162
163 case NSS_IPV4_TX_CONN_STATS_SYNC_MANY_MSG:
164 /*
165 * Update driver statistics on connection sync many.
166 */
167 nss_ipv4_driver_conn_sync_many_update(nss_ctx, &nim->msg.conn_stats_many);
168 break;
Thomas Wu68250352014-04-02 18:59:40 -0700169 }
170
171 /*
Sol Kavy57d24b42014-04-05 13:45:36 -0700172 * Update the callback and app_data for NOTIFY messages, IPv4 sends all notify messages
173 * to the same callback/app_data.
Thomas Wu68250352014-04-02 18:59:40 -0700174 */
Sol Kavy57d24b42014-04-05 13:45:36 -0700175 if (nim->cm.response == NSS_CMM_RESPONSE_NOTIFY) {
176 ncm->cb = (uint32_t)nss_ctx->nss_top->ipv4_callback;
177 ncm->app_data = (uint32_t)nss_ctx->nss_top->ipv4_ctx;
178 }
Sol Kavy2783c072014-04-05 12:53:13 -0700179
Thomas Wu68250352014-04-02 18:59:40 -0700180 /*
181 * Do we have a callback?
182 */
183 if (!ncm->cb) {
184 return;
185 }
186
187 /*
188 * Callback
189 */
Sol Kavy57d24b42014-04-05 13:45:36 -0700190 cb = (nss_ipv4_msg_callback_t)ncm->cb;
Thomas Wu68250352014-04-02 18:59:40 -0700191 cb((void *)ncm->app_data, nim);
Thomas Wu68250352014-04-02 18:59:40 -0700192}
193
194/*
Stephen Wang709f9b52015-07-07 14:48:35 -0700195 * nss_ipv4_tx_with_size()
196 * Transmit an ipv4 message to the FW with a specified size.
Thomas Wu68250352014-04-02 18:59:40 -0700197 */
Stephen Wang709f9b52015-07-07 14:48:35 -0700198nss_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 -0700199{
200 struct nss_ipv4_msg *nim2;
201 struct nss_cmn_msg *ncm = &nim->cm;
202 struct sk_buff *nbuf;
203 int32_t status;
204
205 NSS_VERIFY_CTX_MAGIC(nss_ctx);
206 if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) {
207 nss_warning("%p: ipv4 msg dropped as core not ready", nss_ctx);
208 return NSS_TX_FAILURE_NOT_READY;
209 }
210
211 /*
212 * Sanity check the message
213 */
214 if (ncm->interface != NSS_IPV4_RX_INTERFACE) {
215 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
216 return NSS_TX_FAILURE;
217 }
218
Murat Sezgin5c8c7362014-09-02 17:58:21 -0700219 if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
Thomas Wu68250352014-04-02 18:59:40 -0700220 nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
221 return NSS_TX_FAILURE;
222 }
223
224 if (ncm->len > sizeof(struct nss_ipv4_msg)) {
225 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
226 return NSS_TX_FAILURE;
227 }
228
Stephen Wang709f9b52015-07-07 14:48:35 -0700229 if(size > PAGE_SIZE) {
230 nss_warning("%p: tx request size too large: %u", nss_ctx, size);
231 return NSS_TX_FAILURE;
232 }
233
234 nbuf = dev_alloc_skb(size);
Thomas Wu68250352014-04-02 18:59:40 -0700235 if (unlikely(!nbuf)) {
Sundarajan Srinivasan62fee7e2015-01-22 11:13:10 -0800236 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 -0700237 nss_warning("%p: msg dropped as command allocation failed", nss_ctx);
238 return NSS_TX_FAILURE;
239 }
240
241 /*
242 * Copy the message to our skb.
243 */
244 nim2 = (struct nss_ipv4_msg *)skb_put(nbuf, sizeof(struct nss_ipv4_msg));
245 memcpy(nim2, nim, sizeof(struct nss_ipv4_msg));
246
247 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
248 if (status != NSS_CORE_STATUS_SUCCESS) {
Pamidipati, Vijayb6e38842014-09-16 10:26:05 +0530249 dev_kfree_skb_any(nbuf);
Sol Kavycd1bd5c2014-04-04 11:09:44 -0700250 nss_warning("%p: unable to enqueue IPv4 msg\n", nss_ctx);
Thomas Wu68250352014-04-02 18:59:40 -0700251 return NSS_TX_FAILURE;
252 }
253
254 nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit,
255 NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE);
256
257 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]);
258 return NSS_TX_SUCCESS;
259}
260
261/*
Stephen Wang709f9b52015-07-07 14:48:35 -0700262 * nss_ipv4_tx()
263 * Transmit an ipv4 message to the FW.
264 */
265nss_tx_status_t nss_ipv4_tx(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_msg *nim)
266{
267 return nss_ipv4_tx_with_size(nss_ctx, nim, NSS_NBUF_PAYLOAD_SIZE);
268}
269
270/*
Thomas Wu68250352014-04-02 18:59:40 -0700271 **********************************
272 Register/Unregister/Miscellaneous APIs
273 **********************************
274 */
275
276/*
277 * nss_ipv4_notify_register()
278 * Register to received IPv4 events.
279 *
280 * NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
281 */
282struct nss_ctx_instance *nss_ipv4_notify_register(nss_ipv4_msg_callback_t cb, void *app_data)
283{
284 /*
285 * TODO: We need to have a new array in support of the new API
286 * TODO: If we use a per-context array, we would move the array into nss_ctx based.
287 */
288 nss_top_main.ipv4_callback = cb;
Abhishek Rastogie11f47b2014-04-04 18:43:32 +0530289 nss_top_main.ipv4_ctx = app_data;
Thomas Wu68250352014-04-02 18:59:40 -0700290 return &nss_top_main.nss[nss_top_main.ipv4_handler_id];
291}
292
293/*
294 * nss_ipv4_notify_unregister()
295 * Unregister to received IPv4 events.
296 *
297 * NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
298 */
299void nss_ipv4_notify_unregister(void)
300{
301 nss_top_main.ipv4_callback = NULL;
302}
303
304/*
305 * nss_ipv4_get_mgr()
306 *
307 * TODO: This only suppports a single ipv4, do we ever want to support more?
308 */
309struct nss_ctx_instance *nss_ipv4_get_mgr(void)
310{
311 return (void *)&nss_top_main.nss[nss_top_main.ipv4_handler_id];
312}
313
314/*
315 * nss_ipv4_register_handler()
316 * Register our handler to receive messages for this interface
317 */
Sol Kavy2783c072014-04-05 12:53:13 -0700318void nss_ipv4_register_handler(void)
Thomas Wu68250352014-04-02 18:59:40 -0700319{
Sol Kavy2783c072014-04-05 12:53:13 -0700320 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 -0700321 nss_warning("IPv4 handler failed to register");
322 }
323}
324
Vijay Dewangan9db18752014-09-15 16:25:01 -0700325/*
326 * nss_ipv4_conn_cfg_callback()
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700327 * call back function for the ipv4 connection configuration handler
Vijay Dewangan9db18752014-09-15 16:25:01 -0700328 */
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700329static void nss_ipv4_conn_cfg_callback(void *app_data, struct nss_ipv4_msg *nim)
Vijay Dewangan9db18752014-09-15 16:25:01 -0700330{
331
332 if (nim->cm.response != NSS_CMN_RESPONSE_ACK) {
333 nss_warning("IPv4 connection configuration failed with error: %d\n", nim->cm.error);
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700334 /*
335 * Error, hence we are not updating the nss_ipv4_conn_cfg
336 * Restore the current_value to its previous state
337 */
Vijay Dewangan488e5372014-12-29 21:40:11 -0800338 i4cfgp.response = NSS_FAILURE;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700339 complete(&i4cfgp.complete);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700340 return;
341 }
342
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700343 /*
344 * Sucess at NSS FW, hence updating nss_ipv4_conn_cfg, with the valid value
345 * saved at the sysctl handler.
346 */
Vijay Dewangan9db18752014-09-15 16:25:01 -0700347 nss_info("IPv4 connection configuration success: %d\n", nim->cm.error);
Vijay Dewangan488e5372014-12-29 21:40:11 -0800348 i4cfgp.response = NSS_SUCCESS;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700349 complete(&i4cfgp.complete);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700350}
351
352/*
353 * nss_ipv4_conn_cfg_handler()
354 * Sets the number of connections for IPv4
355 */
356static int nss_ipv4_conn_cfg_handler(ctl_table *ctl, int write, void __user *buffer, size_t *lenp, loff_t *ppos)
357{
358 struct nss_top_instance *nss_top = &nss_top_main;
359 struct nss_ctx_instance *nss_ctx = &nss_top->nss[0];
360 struct nss_ipv4_msg nim;
361 struct nss_ipv4_rule_conn_cfg_msg *nirccm;
362 nss_tx_status_t nss_tx_status;
Vijay Dewangan488e5372014-12-29 21:40:11 -0800363 int ret = NSS_FAILURE;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700364 uint32_t sum_of_conn;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700365
366 /*
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700367 * Acquiring semaphore
368 */
369 down(&i4cfgp.sem);
370
371 /*
372 * Take snap shot of current value
373 */
374 i4cfgp.current_value = nss_ipv4_conn_cfg;
375
376 /*
377 * Write the variable with user input
378 */
379 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
380 if (ret || (!write)) {
381 up(&i4cfgp.sem);
382 return ret;
383 }
384
385 /*
386 * The input should be multiple of 1024.
387 * Input for ipv4 and ipv6 sum together should not exceed 8k
388 * Min. value should be at least 256 connections. This is the
Vijay Dewangan9db18752014-09-15 16:25:01 -0700389 * minimum connections we will support for each of them.
390 */
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700391 sum_of_conn = nss_ipv4_conn_cfg + nss_ipv6_conn_cfg;
392 if ((nss_ipv4_conn_cfg & NSS_NUM_CONN_QUANTA_MASK) ||
393 (sum_of_conn > NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6) ||
394 (nss_ipv4_conn_cfg < NSS_MIN_NUM_CONN)) {
Vijay Dewangan9db18752014-09-15 16:25:01 -0700395 nss_warning("%p: input supported connections (%d) does not adhere\
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700396 specifications\n1) not multiple of 1024,\n2) is less than \
Vijay Dewangan9db18752014-09-15 16:25:01 -0700397 min val: %d, OR\n IPv4/6 total exceeds %d\n",
398 nss_ctx,
399 nss_ipv4_conn_cfg,
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700400 NSS_MIN_NUM_CONN,
401 NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6);
Stephen Wang06761022015-03-03 16:38:42 -0800402 goto failure;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700403 }
404
Vijay Dewangan9db18752014-09-15 16:25:01 -0700405 nss_info("%p: IPv4 supported connections: %d\n", nss_ctx, nss_ipv4_conn_cfg);
406
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700407 nss_ipv4_msg_init(&nim, NSS_IPV4_RX_INTERFACE, NSS_IPV4_TX_CONN_CFG_RULE_MSG,
Sundarajan Srinivasan30a53d42015-01-30 10:52:08 -0800408 sizeof(struct nss_ipv4_rule_conn_cfg_msg), nss_ipv4_conn_cfg_callback, NULL);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700409
410 nirccm = &nim.msg.rule_conn_cfg;
411 nirccm->num_conn = htonl(nss_ipv4_conn_cfg);
412 nss_tx_status = nss_ipv4_tx(nss_ctx, &nim);
413
414 if (nss_tx_status != NSS_TX_SUCCESS) {
415 nss_warning("%p: nss_tx error setting IPv4 Connections: %d\n",
416 nss_ctx,
417 nss_ipv4_conn_cfg);
Stephen Wang06761022015-03-03 16:38:42 -0800418 goto failure;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700419 }
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700420
421 /*
422 * Blocking call, wait till we get ACK for this msg.
423 */
424 ret = wait_for_completion_timeout(&i4cfgp.complete, msecs_to_jiffies(NSS_CONN_CFG_TIMEOUT));
425 if (ret == 0) {
426 nss_warning("%p: Waiting for ack timed out\n", nss_ctx);
Stephen Wang06761022015-03-03 16:38:42 -0800427 goto failure;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700428 }
429
430 /*
431 * ACK/NACK received from NSS FW
432 * If ACK: Callback function will update nss_ipv4_conn_cfg with
433 * i4cfgp.num_conn_valid, which holds the user input
434 */
Vijay Dewangan488e5372014-12-29 21:40:11 -0800435 if (NSS_FAILURE == i4cfgp.response) {
Stephen Wang06761022015-03-03 16:38:42 -0800436 goto failure;
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700437 }
438
439 up(&i4cfgp.sem);
Thomas Wu651b3902015-05-12 11:21:09 -0700440 return 0;
Stephen Wang06761022015-03-03 16:38:42 -0800441
442failure:
443 /*
444 * Restore the current_value to its previous state
445 */
446 nss_ipv4_conn_cfg = i4cfgp.current_value;
447 up(&i4cfgp.sem);
Thomas Wu651b3902015-05-12 11:21:09 -0700448 return -EINVAL;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700449}
450
451static ctl_table nss_ipv4_table[] = {
452 {
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700453 .procname = "ipv4_conn",
454 .data = &nss_ipv4_conn_cfg,
455 .maxlen = sizeof(int),
456 .mode = 0644,
Vijay Dewangan9db18752014-09-15 16:25:01 -0700457 .proc_handler = &nss_ipv4_conn_cfg_handler,
458 },
459 { }
460};
461
462static ctl_table nss_ipv4_dir[] = {
463 {
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700464 .procname = "ipv4cfg",
465 .mode = 0555,
466 .child = nss_ipv4_table,
Vijay Dewangan9db18752014-09-15 16:25:01 -0700467 },
468 { }
469};
470
471
472static ctl_table nss_ipv4_root_dir[] = {
473 {
474 .procname = "nss",
475 .mode = 0555,
476 .child = nss_ipv4_dir,
477 },
478 { }
479};
480
481static ctl_table nss_ipv4_root[] = {
482 {
483 .procname = "dev",
484 .mode = 0555,
485 .child = nss_ipv4_root_dir,
486 },
487 { }
488};
489
490static struct ctl_table_header *nss_ipv4_header;
491
492/*
493 * nss_ipv4_register_sysctl()
494 * Register sysctl specific to ipv4
495 */
496void nss_ipv4_register_sysctl(void)
497{
498 /*
499 * Register sysctl table.
500 */
501 nss_ipv4_header = register_sysctl_table(nss_ipv4_root);
Vijay Dewangan4861f4e2014-10-14 16:56:35 -0700502 sema_init(&i4cfgp.sem, 1);
503 init_completion(&i4cfgp.complete);
504 i4cfgp.current_value = nss_ipv4_conn_cfg;
Vijay Dewangan9db18752014-09-15 16:25:01 -0700505}
506
507/*
508 * nss_ipv4_unregister_sysctl()
509 * Unregister sysctl specific to ipv4
510 */
511void nss_ipv4_unregister_sysctl(void)
512{
513 /*
514 * Unregister sysctl table.
515 */
516 if (nss_ipv4_header) {
517 unregister_sysctl_table(nss_ipv4_header);
518 }
519}
520
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700521/*
522 * nss_ipv4_msg_init()
523 * Initialize IPv4 message.
524 */
525void 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 -0800526 nss_ipv4_msg_callback_t cb, void *app_data)
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700527{
528 nss_cmn_msg_init(&nim->cm, if_num, type, len, (void *)cb, app_data);
529}
530
Thomas Wu68250352014-04-02 18:59:40 -0700531EXPORT_SYMBOL(nss_ipv4_tx);
Stephen Wang709f9b52015-07-07 14:48:35 -0700532EXPORT_SYMBOL(nss_ipv4_tx_with_size);
Thomas Wu68250352014-04-02 18:59:40 -0700533EXPORT_SYMBOL(nss_ipv4_notify_register);
534EXPORT_SYMBOL(nss_ipv4_notify_unregister);
535EXPORT_SYMBOL(nss_ipv4_get_mgr);
Vijay Dewangan9db18752014-09-15 16:25:01 -0700536EXPORT_SYMBOL(nss_ipv4_register_sysctl);
537EXPORT_SYMBOL(nss_ipv4_unregister_sysctl);
Sundarajan Srinivasan02e6c2b2014-10-06 11:51:12 -0700538EXPORT_SYMBOL(nss_ipv4_msg_init);