blob: a81c9e1ab302e58cddd5a0947429f5af07a0387a [file] [log] [blame]
/*
**************************************************************************
* Copyright (c) 2013-2014, The Linux Foundation. All rights reserved.
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
* above copyright notice and this permission notice appear in all copies.
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
**************************************************************************
*/
/*
* nss_ipv4.c
* NSS IPv4 APIs
*/
#include <linux/sysctl.h>
#include <linux/ppp_channel.h>
#include "nss_tx_rx_common.h"
int nss_ipv4_conn_cfg __read_mostly = NSS_DEFAULT_NUM_CONN;
static struct nss_conn_cfg_pvt i4cfgp;
/*
* nss_ipv4_driver_conn_sync_update()
* Update driver specific information from the messsage.
*/
static void nss_ipv4_driver_conn_sync_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_conn_sync *nirs)
{
struct nss_top_instance *nss_top = nss_ctx->nss_top;
struct net_device *pppoe_dev = NULL;
/*
* Update statistics maintained by NSS driver
*/
spin_lock_bh(&nss_top->stats_lock);
nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_RX_PKTS] += nirs->flow_rx_packet_count + nirs->return_rx_packet_count;
nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_RX_BYTES] += nirs->flow_rx_byte_count + nirs->return_rx_byte_count;
nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_TX_PKTS] += nirs->flow_tx_packet_count + nirs->return_tx_packet_count;
nss_top->stats_ipv4[NSS_STATS_IPV4_ACCELERATED_TX_BYTES] += nirs->flow_tx_byte_count + nirs->return_tx_byte_count;
spin_unlock_bh(&nss_top->stats_lock);
/*
* Update the PPPoE interface stats, if there is any PPPoE session on the interfaces.
*/
if (nirs->flow_pppoe_session_id) {
pppoe_dev = ppp_session_to_netdev(nirs->flow_pppoe_session_id, (uint8_t *)nirs->flow_pppoe_remote_mac);
if (pppoe_dev) {
ppp_update_stats(pppoe_dev, nirs->flow_rx_packet_count, nirs->flow_rx_byte_count,
nirs->flow_tx_packet_count, nirs->flow_tx_byte_count);
dev_put(pppoe_dev);
}
}
if (nirs->return_pppoe_session_id) {
pppoe_dev = ppp_session_to_netdev(nirs->return_pppoe_session_id, (uint8_t *)nirs->return_pppoe_remote_mac);
if (pppoe_dev) {
ppp_update_stats(pppoe_dev, nirs->return_rx_packet_count, nirs->return_rx_byte_count,
nirs->return_tx_packet_count, nirs->return_tx_byte_count);
dev_put(pppoe_dev);
}
}
}
/*
* nss_ipv4_driver_node_sync_update)
* Update driver specific information from the messsage.
*/
static void nss_ipv4_driver_node_sync_update(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_node_sync *nins)
{
struct nss_top_instance *nss_top = nss_ctx->nss_top;
uint32_t i;
/*
* Update statistics maintained by NSS driver
*/
spin_lock_bh(&nss_top->stats_lock);
nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_PKTS] += nins->node_stats.rx_packets;
nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_BYTES] += nins->node_stats.rx_bytes;
nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_RX_DROPPED] += nins->node_stats.rx_dropped;
nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_PKTS] += nins->node_stats.tx_packets;
nss_top->stats_node[NSS_IPV4_RX_INTERFACE][NSS_STATS_NODE_TX_BYTES] += nins->node_stats.tx_bytes;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_REQUESTS] += nins->ipv4_connection_create_requests;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_COLLISIONS] += nins->ipv4_connection_create_collisions;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_CREATE_INVALID_INTERFACE] += nins->ipv4_connection_create_invalid_interface;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_REQUESTS] += nins->ipv4_connection_destroy_requests;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_DESTROY_MISSES] += nins->ipv4_connection_destroy_misses;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_HITS] += nins->ipv4_connection_hash_hits;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_HASH_REORDERS] += nins->ipv4_connection_hash_reorders;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_FLUSHES] += nins->ipv4_connection_flushes;
nss_top->stats_ipv4[NSS_STATS_IPV4_CONNECTION_EVICTIONS] += nins->ipv4_connection_evictions;
nss_top->stats_ipv4[NSS_STATS_IPV4_FRAGMENTATIONS] += nins->ipv4_fragmentations;
for (i = 0; i < NSS_EXCEPTION_EVENT_IPV4_MAX; i++) {
nss_top->stats_if_exception_ipv4[i] += nins->exception_events[i];
}
spin_unlock_bh(&nss_top->stats_lock);
}
/*
* nss_ipv4_rx_msg_handler()
* Handle NSS -> HLOS messages for IPv4 bridge/route
*/
static void nss_ipv4_rx_msg_handler(struct nss_ctx_instance *nss_ctx, struct nss_cmn_msg *ncm, __attribute__((unused))void *app_data)
{
struct nss_ipv4_msg *nim = (struct nss_ipv4_msg *)ncm;
nss_ipv4_msg_callback_t cb;
BUG_ON(ncm->interface != NSS_IPV4_RX_INTERFACE);
/*
* Sanity check the message type
*/
if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
return;
}
if (ncm->len > sizeof(struct nss_ipv4_msg)) {
nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
return;
}
/*
* Log failures
*/
nss_core_log_msg_failures(nss_ctx, ncm);
switch (nim->cm.type) {
case NSS_IPV4_RX_NODE_STATS_SYNC_MSG:
/*
* Update driver statistics on node sync.
*/
nss_ipv4_driver_node_sync_update(nss_ctx, &nim->msg.node_stats);
break;
case NSS_IPV4_RX_CONN_STATS_SYNC_MSG:
/*
* Update driver statistics on connection sync.
*/
nss_ipv4_driver_conn_sync_update(nss_ctx, &nim->msg.conn_stats);
break;
}
/*
* Update the callback and app_data for NOTIFY messages, IPv4 sends all notify messages
* to the same callback/app_data.
*/
if (nim->cm.response == NSS_CMM_RESPONSE_NOTIFY) {
ncm->cb = (uint32_t)nss_ctx->nss_top->ipv4_callback;
ncm->app_data = (uint32_t)nss_ctx->nss_top->ipv4_ctx;
}
/*
* Do we have a callback?
*/
if (!ncm->cb) {
return;
}
/*
* Callback
*/
cb = (nss_ipv4_msg_callback_t)ncm->cb;
cb((void *)ncm->app_data, nim);
}
/*
* nss_ipv4_tx()
* Transmit an ipv4 message to the FW.
*/
nss_tx_status_t nss_ipv4_tx(struct nss_ctx_instance *nss_ctx, struct nss_ipv4_msg *nim)
{
struct nss_ipv4_msg *nim2;
struct nss_cmn_msg *ncm = &nim->cm;
struct sk_buff *nbuf;
int32_t status;
NSS_VERIFY_CTX_MAGIC(nss_ctx);
if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) {
nss_warning("%p: ipv4 msg dropped as core not ready", nss_ctx);
return NSS_TX_FAILURE_NOT_READY;
}
/*
* Sanity check the message
*/
if (ncm->interface != NSS_IPV4_RX_INTERFACE) {
nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
return NSS_TX_FAILURE;
}
if (ncm->type >= NSS_IPV4_MAX_MSG_TYPES) {
nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type);
return NSS_TX_FAILURE;
}
if (ncm->len > sizeof(struct nss_ipv4_msg)) {
nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
return NSS_TX_FAILURE;
}
nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE);
if (unlikely(!nbuf)) {
spin_lock_bh(&nss_ctx->nss_top->stats_lock);
nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]++;
spin_unlock_bh(&nss_ctx->nss_top->stats_lock);
nss_warning("%p: msg dropped as command allocation failed", nss_ctx);
return NSS_TX_FAILURE;
}
/*
* Copy the message to our skb.
*/
nim2 = (struct nss_ipv4_msg *)skb_put(nbuf, sizeof(struct nss_ipv4_msg));
memcpy(nim2, nim, sizeof(struct nss_ipv4_msg));
status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
if (status != NSS_CORE_STATUS_SUCCESS) {
dev_kfree_skb_any(nbuf);
nss_warning("%p: unable to enqueue IPv4 msg\n", nss_ctx);
return NSS_TX_FAILURE;
}
nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit,
NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE);
NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]);
return NSS_TX_SUCCESS;
}
/*
**********************************
Register/Unregister/Miscellaneous APIs
**********************************
*/
/*
* nss_ipv4_notify_register()
* Register to received IPv4 events.
*
* NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
*/
struct nss_ctx_instance *nss_ipv4_notify_register(nss_ipv4_msg_callback_t cb, void *app_data)
{
/*
* TODO: We need to have a new array in support of the new API
* TODO: If we use a per-context array, we would move the array into nss_ctx based.
*/
nss_top_main.ipv4_callback = cb;
nss_top_main.ipv4_ctx = app_data;
return &nss_top_main.nss[nss_top_main.ipv4_handler_id];
}
/*
* nss_ipv4_notify_unregister()
* Unregister to received IPv4 events.
*
* NOTE: Do we want to pass an nss_ctx here so that we can register for ipv4 on any core?
*/
void nss_ipv4_notify_unregister(void)
{
nss_top_main.ipv4_callback = NULL;
}
/*
* nss_ipv4_get_mgr()
*
* TODO: This only suppports a single ipv4, do we ever want to support more?
*/
struct nss_ctx_instance *nss_ipv4_get_mgr(void)
{
return (void *)&nss_top_main.nss[nss_top_main.ipv4_handler_id];
}
/*
* nss_ipv4_register_handler()
* Register our handler to receive messages for this interface
*/
void nss_ipv4_register_handler(void)
{
if (nss_core_register_handler(NSS_IPV4_RX_INTERFACE, nss_ipv4_rx_msg_handler, NULL) != NSS_CORE_STATUS_SUCCESS) {
nss_warning("IPv4 handler failed to register");
}
}
/*
* nss_ipv4_conn_cfg_callback()
* call back function for the ipv4 connection configuration handler
*/
static void nss_ipv4_conn_cfg_callback(void *app_data, struct nss_if_msg *nim)
{
if (nim->cm.response != NSS_CMN_RESPONSE_ACK) {
nss_warning("IPv4 connection configuration failed with error: %d\n", nim->cm.error);
/*
* Error, hence we are not updating the nss_ipv4_conn_cfg
* Restore the current_value to its previous state
*/
i4cfgp.response = FAILURE;
complete(&i4cfgp.complete);
return;
}
/*
* Sucess at NSS FW, hence updating nss_ipv4_conn_cfg, with the valid value
* saved at the sysctl handler.
*/
nss_info("IPv4 connection configuration success: %d\n", nim->cm.error);
i4cfgp.response = SUCCESS;
complete(&i4cfgp.complete);
}
/*
* nss_ipv4_conn_cfg_handler()
* Sets the number of connections for IPv4
*/
static int nss_ipv4_conn_cfg_handler(ctl_table *ctl, int write, void __user *buffer, size_t *lenp, loff_t *ppos)
{
struct nss_top_instance *nss_top = &nss_top_main;
struct nss_ctx_instance *nss_ctx = &nss_top->nss[0];
struct nss_ipv4_msg nim;
struct nss_ipv4_rule_conn_cfg_msg *nirccm;
nss_tx_status_t nss_tx_status;
int ret = FAILURE;
uint32_t sum_of_conn;
/*
* Acquiring semaphore
*/
down(&i4cfgp.sem);
/*
* Take snap shot of current value
*/
i4cfgp.current_value = nss_ipv4_conn_cfg;
/*
* Write the variable with user input
*/
ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
if (ret || (!write)) {
up(&i4cfgp.sem);
return ret;
}
/*
* The input should be multiple of 1024.
* Input for ipv4 and ipv6 sum together should not exceed 8k
* Min. value should be at least 256 connections. This is the
* minimum connections we will support for each of them.
*/
sum_of_conn = nss_ipv4_conn_cfg + nss_ipv6_conn_cfg;
if ((nss_ipv4_conn_cfg & NSS_NUM_CONN_QUANTA_MASK) ||
(sum_of_conn > NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6) ||
(nss_ipv4_conn_cfg < NSS_MIN_NUM_CONN)) {
nss_warning("%p: input supported connections (%d) does not adhere\
specifications\n1) not multiple of 1024,\n2) is less than \
min val: %d, OR\n IPv4/6 total exceeds %d\n",
nss_ctx,
nss_ipv4_conn_cfg,
NSS_MIN_NUM_CONN,
NSS_MAX_TOTAL_NUM_CONN_IPV4_IPV6);
/*
* Restore the current_value to its previous state
*/
nss_ipv4_conn_cfg = i4cfgp.current_value;
up(&i4cfgp.sem);
return FAILURE;
}
nss_info("%p: IPv4 supported connections: %d\n", nss_ctx, nss_ipv4_conn_cfg);
nss_cmn_msg_init(&nim.cm, NSS_IPV4_RX_INTERFACE, NSS_IPV4_TX_CONN_CFG_RULE_MSG,
sizeof(struct nss_ipv4_rule_conn_cfg_msg), nss_ipv4_conn_cfg_callback, NULL);
nirccm = &nim.msg.rule_conn_cfg;
nirccm->num_conn = htonl(nss_ipv4_conn_cfg);
nss_tx_status = nss_ipv4_tx(nss_ctx, &nim);
if (nss_tx_status != NSS_TX_SUCCESS) {
nss_warning("%p: nss_tx error setting IPv4 Connections: %d\n",
nss_ctx,
nss_ipv4_conn_cfg);
/*
* Restore the current_value to its previous state
*/
nss_ipv4_conn_cfg = i4cfgp.current_value;
up(&i4cfgp.sem);
return FAILURE;
}
/*
* Blocking call, wait till we get ACK for this msg.
*/
ret = wait_for_completion_timeout(&i4cfgp.complete, msecs_to_jiffies(NSS_CONN_CFG_TIMEOUT));
if (ret == 0) {
nss_warning("%p: Waiting for ack timed out\n", nss_ctx);
/*
* Restore the current_value to its previous state
*/
nss_ipv4_conn_cfg = i4cfgp.current_value;
up(&i4cfgp.sem);
return FAILURE;
}
/*
* ACK/NACK received from NSS FW
* If ACK: Callback function will update nss_ipv4_conn_cfg with
* i4cfgp.num_conn_valid, which holds the user input
*/
if (FAILURE == i4cfgp.response) {
/*
* Restore the current_value to its previous state
*/
nss_ipv4_conn_cfg = i4cfgp.current_value;
up(&i4cfgp.sem);
return FAILURE;
}
up(&i4cfgp.sem);
return SUCCESS;
}
static ctl_table nss_ipv4_table[] = {
{
.procname = "ipv4_conn",
.data = &nss_ipv4_conn_cfg,
.maxlen = sizeof(int),
.mode = 0644,
.proc_handler = &nss_ipv4_conn_cfg_handler,
},
{ }
};
static ctl_table nss_ipv4_dir[] = {
{
.procname = "ipv4cfg",
.mode = 0555,
.child = nss_ipv4_table,
},
{ }
};
static ctl_table nss_ipv4_root_dir[] = {
{
.procname = "nss",
.mode = 0555,
.child = nss_ipv4_dir,
},
{ }
};
static ctl_table nss_ipv4_root[] = {
{
.procname = "dev",
.mode = 0555,
.child = nss_ipv4_root_dir,
},
{ }
};
static struct ctl_table_header *nss_ipv4_header;
/*
* nss_ipv4_register_sysctl()
* Register sysctl specific to ipv4
*/
void nss_ipv4_register_sysctl(void)
{
/*
* Register sysctl table.
*/
nss_ipv4_header = register_sysctl_table(nss_ipv4_root);
sema_init(&i4cfgp.sem, 1);
init_completion(&i4cfgp.complete);
i4cfgp.current_value = nss_ipv4_conn_cfg;
}
/*
* nss_ipv4_unregister_sysctl()
* Unregister sysctl specific to ipv4
*/
void nss_ipv4_unregister_sysctl(void)
{
/*
* Unregister sysctl table.
*/
if (nss_ipv4_header) {
unregister_sysctl_table(nss_ipv4_header);
}
}
EXPORT_SYMBOL(nss_ipv4_tx);
EXPORT_SYMBOL(nss_ipv4_notify_register);
EXPORT_SYMBOL(nss_ipv4_notify_unregister);
EXPORT_SYMBOL(nss_ipv4_get_mgr);
EXPORT_SYMBOL(nss_ipv4_register_sysctl);
EXPORT_SYMBOL(nss_ipv4_unregister_sysctl);