| /* |
| ************************************************************************** |
| * Copyright (c) 2013-2015, 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_pppoe.c |
| * NSS PPPoE APIs |
| */ |
| |
| #include "nss_tx_rx_common.h" |
| #include <linux/if_pppox.h> |
| |
| /* |
| * nss_pppoe_tx() |
| * Transmit an PPPoe message to the FW. |
| */ |
| nss_tx_status_t nss_pppoe_tx(struct nss_ctx_instance *nss_ctx, struct nss_pppoe_msg *nim) |
| { |
| struct nss_pppoe_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: pppoe msg dropped as core not ready", nss_ctx); |
| return NSS_TX_FAILURE_NOT_READY; |
| } |
| |
| /* |
| * Sanity check the message |
| */ |
| if (ncm->interface != NSS_PPPOE_RX_INTERFACE) { |
| nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface); |
| return NSS_TX_FAILURE; |
| } |
| |
| if (ncm->type > NSS_PPPOE_MAX) { |
| nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type); |
| return NSS_TX_FAILURE; |
| } |
| |
| if (ncm->len > sizeof(struct nss_pppoe_msg)) { |
| nss_warning("%p: message length is invalid: %d", nss_ctx, ncm->len); |
| 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_pppoe_msg *)skb_put(nbuf, sizeof(struct nss_pppoe_msg)); |
| memcpy(nim2, nim, sizeof(struct nss_pppoe_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 PPPoE 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; |
| } |
| |
| /* |
| ********************************** |
| Rx APIs |
| ********************************** |
| */ |
| |
| /* |
| * nss_pppoe_reset_session_stats() |
| * Reset PPPoE stats when session is destroyed. |
| */ |
| static void nss_pppoe_reset_session_stats(struct nss_ctx_instance *nss_ctx) |
| { |
| uint32_t i, j, k; |
| |
| /* |
| * Reset the PPPoE statistics. |
| */ |
| spin_lock_bh(&nss_ctx->nss_top->stats_lock); |
| |
| /* |
| * TODO: Don't reset all the statistics. Reset only the destroyed session's stats. |
| */ |
| for (i = 0; i < NSS_MAX_PHYSICAL_INTERFACES; i++) { |
| for (j = 0; j < NSS_PPPOE_NUM_SESSION_PER_INTERFACE; j++) { |
| for (k = 0; k < NSS_PPPOE_EXCEPTION_EVENT_MAX; k++) { |
| nss_ctx->nss_top->stats_if_exception_pppoe[i][j][k] = 0; |
| } |
| } |
| } |
| |
| /* |
| * TODO: Do we need to unregister the destroy method? The ppp_dev has already gone. |
| */ |
| spin_unlock_bh(&nss_ctx->nss_top->stats_lock); |
| } |
| |
| /* |
| * nss_pppoe_exception_stats_sync() |
| * Handle the syncing of PPPoE exception statistics. |
| */ |
| static void nss_pppoe_exception_stats_sync(struct nss_ctx_instance *nss_ctx, struct nss_pppoe_conn_stats_sync_msg *npess) |
| { |
| struct nss_top_instance *nss_top = nss_ctx->nss_top; |
| uint32_t index = npess->index; |
| uint32_t interface_num = npess->interface_num; |
| uint32_t i; |
| |
| spin_lock_bh(&nss_top->stats_lock); |
| |
| if (interface_num >= NSS_MAX_PHYSICAL_INTERFACES) { |
| spin_unlock_bh(&nss_top->stats_lock); |
| nss_warning("%p: Incorrect interface number %d for PPPoE exception stats", nss_ctx, interface_num); |
| return; |
| } |
| |
| /* |
| * pppoe exception stats |
| */ |
| for (i = 0; i < NSS_PPPOE_EXCEPTION_EVENT_MAX; i++) { |
| nss_top->stats_if_exception_pppoe[interface_num][index][i] += npess->exception_events_pppoe[i]; |
| } |
| |
| spin_unlock_bh(&nss_top->stats_lock); |
| } |
| |
| /* |
| * nss_pppoe_node_stats_sync() |
| * Handle the syncing of PPPoE node statistics. |
| */ |
| static void nss_pppoe_node_stats_sync(struct nss_ctx_instance *nss_ctx, struct nss_pppoe_node_stats_sync_msg *npess) |
| { |
| struct nss_top_instance *nss_top = nss_ctx->nss_top; |
| |
| spin_lock_bh(&nss_top->stats_lock); |
| |
| nss_top->stats_node[NSS_PPPOE_RX_INTERFACE][NSS_STATS_NODE_RX_PKTS] += npess->node_stats.rx_packets; |
| nss_top->stats_node[NSS_PPPOE_RX_INTERFACE][NSS_STATS_NODE_RX_BYTES] += npess->node_stats.rx_bytes; |
| nss_top->stats_node[NSS_PPPOE_RX_INTERFACE][NSS_STATS_NODE_RX_DROPPED] += npess->node_stats.rx_dropped; |
| nss_top->stats_node[NSS_PPPOE_RX_INTERFACE][NSS_STATS_NODE_TX_PKTS] += npess->node_stats.tx_packets; |
| nss_top->stats_node[NSS_PPPOE_RX_INTERFACE][NSS_STATS_NODE_TX_BYTES] += npess->node_stats.tx_bytes; |
| |
| nss_top->stats_pppoe[NSS_STATS_PPPOE_SESSION_CREATE_REQUESTS] += npess->pppoe_session_create_requests; |
| nss_top->stats_pppoe[NSS_STATS_PPPOE_SESSION_CREATE_FAILURES] += npess->pppoe_session_create_failures; |
| nss_top->stats_pppoe[NSS_STATS_PPPOE_SESSION_DESTROY_REQUESTS] += npess->pppoe_session_destroy_requests; |
| nss_top->stats_pppoe[NSS_STATS_PPPOE_SESSION_DESTROY_MISSES] += npess->pppoe_session_destroy_misses; |
| |
| spin_unlock_bh(&nss_top->stats_lock); |
| } |
| |
| /* |
| * nss_pppoe_destroy_connection_rule() |
| * Destroy PPoE connection rule associated with the session ID and remote server MAC address. |
| */ |
| |
| /* |
| * TODO: This API should be deprecated soon and removed. |
| */ |
| static void nss_pppoe_destroy_connection_rule(void *ctx, uint16_t pppoe_session_id, uint8_t *pppoe_remote_mac) |
| { |
| struct nss_ctx_instance *nss_ctx = (struct nss_ctx_instance *) ctx; |
| struct nss_pppoe_msg npm; |
| struct nss_pppoe_rule_destroy_msg *nprd; |
| uint16_t *pppoe_remote_mac_uint16_t = (uint16_t *)pppoe_remote_mac; |
| int32_t status; |
| |
| /* |
| * TODO Remove this function once linux kernel directly calls nss_pppoe_tx() |
| */ |
| nss_info("%p: Destroy all PPPoE rules of session ID: %x remote MAC: %x:%x:%x:%x:%x:%x", nss_ctx, pppoe_session_id, |
| pppoe_remote_mac[0], pppoe_remote_mac[1], pppoe_remote_mac[2], |
| pppoe_remote_mac[3], pppoe_remote_mac[4], pppoe_remote_mac[5]); |
| |
| nss_pppoe_msg_init(&npm, NSS_PPPOE_RX_INTERFACE, NSS_PPPOE_TX_CONN_RULE_DESTROY, |
| sizeof(struct nss_pppoe_rule_destroy_msg), NULL, NULL); |
| |
| nprd = &npm.msg.pppoe_rule_destroy; |
| |
| nprd->pppoe_session_id = pppoe_session_id; |
| nprd->pppoe_remote_mac[0] = pppoe_remote_mac_uint16_t[0]; |
| nprd->pppoe_remote_mac[1] = pppoe_remote_mac_uint16_t[1]; |
| nprd->pppoe_remote_mac[2] = pppoe_remote_mac_uint16_t[2]; |
| |
| status = nss_pppoe_tx(nss_ctx, &npm); |
| if (status != NSS_TX_SUCCESS) { |
| nss_warning("%p: Not able to send destroy pppoe rule msg to NSS %x\n", nss_ctx, status); |
| } |
| } |
| |
| /* |
| * nss_pppoe_rule_create_success() |
| * Handle the PPPoE rule create success message. |
| */ |
| static void nss_pppoe_rule_create_success(struct nss_ctx_instance *nss_ctx, struct nss_pppoe_rule_create_success_msg *pcs) |
| { |
| #if (NSS_PPP_SUPPORT == 1) |
| struct net_device *ppp_dev = pppoe_get_and_hold_netdev_from_session_info(pcs->pppoe_session_id, pcs->pppoe_remote_mac); |
| |
| if (!ppp_dev) { |
| nss_warning("%p: There is not any PPP devices with SID: %x remote MAC: %x:%x:%x:%x:%x:%x", nss_ctx, pcs->pppoe_session_id, |
| pcs->pppoe_remote_mac[0], pcs->pppoe_remote_mac[1], pcs->pppoe_remote_mac[2], |
| pcs->pppoe_remote_mac[3], pcs->pppoe_remote_mac[4], pcs->pppoe_remote_mac[5]); |
| |
| return; |
| } |
| |
| /* |
| * TODO Remove this registration once kernel directly calls nss_pppoe_tx(). |
| */ |
| if (!ppp_register_destroy_method(ppp_dev, nss_pppoe_destroy_connection_rule, (void *)nss_ctx)) { |
| nss_warning("%p: Failed to register destroy method", nss_ctx); |
| } |
| |
| dev_put(ppp_dev); |
| #endif |
| } |
| |
| /* |
| * nss_pppoe_rx_msg_handler() |
| * Handle NSS -> HLOS messages for PPPoE |
| */ |
| static void nss_pppoe_rx_msg_handler(struct nss_ctx_instance *nss_ctx, struct nss_cmn_msg *ncm, __attribute__((unused))void *app_data) |
| { |
| struct nss_pppoe_msg *nim = (struct nss_pppoe_msg *)ncm; |
| |
| BUG_ON(ncm->interface != NSS_PPPOE_RX_INTERFACE); |
| |
| /* |
| * Sanity check the message type |
| */ |
| if (ncm->type > NSS_PPPOE_MAX) { |
| nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type); |
| return; |
| } |
| |
| if (ncm->len > sizeof(struct nss_pppoe_msg)) { |
| nss_warning("%p: message length is invalid: %d", nss_ctx, ncm->len); |
| return; |
| } |
| |
| /* |
| * Log failures |
| */ |
| nss_core_log_msg_failures(nss_ctx, ncm); |
| |
| /* |
| * Handling PPPoE messages coming from NSS fw. |
| */ |
| switch (nim->cm.type) { |
| case NSS_PPPOE_RX_CONN_RULE_SUCCESS: |
| nss_pppoe_rule_create_success(nss_ctx, &nim->msg.pppoe_rule_create_success); |
| break; |
| |
| case NSS_PPPOE_RX_NODE_STATS_SYNC: |
| nss_pppoe_node_stats_sync(nss_ctx, &nim->msg.pppoe_node_stats_sync); |
| break; |
| |
| case NSS_PPPOE_RX_CONN_STATS_SYNC: |
| nss_pppoe_exception_stats_sync(nss_ctx, &nim->msg.pppoe_conn_stats_sync); |
| break; |
| |
| case NSS_PPPOE_TX_CONN_RULE_DESTROY: |
| if (ncm->response == NSS_CMN_RESPONSE_ACK) { |
| nss_pppoe_reset_session_stats(nss_ctx); |
| } |
| break; |
| |
| default: |
| nss_warning("%p: Received response %d for type %d, interface %d", |
| nss_ctx, ncm->response, ncm->type, ncm->interface); |
| } |
| } |
| |
| /* |
| * nss_pppoe_register_handler() |
| */ |
| void nss_pppoe_register_handler() |
| { |
| nss_core_register_handler(NSS_PPPOE_RX_INTERFACE, nss_pppoe_rx_msg_handler, NULL); |
| } |
| |
| /* |
| * nss_pppoe_msg_init() |
| * Initialize pppoe message. |
| */ |
| void nss_pppoe_msg_init(struct nss_pppoe_msg *npm, uint16_t if_num, uint32_t type, uint32_t len, |
| void *cb, void *app_data) |
| { |
| nss_cmn_msg_init(&npm->cm, if_num, type, len, (void *)cb, app_data); |
| } |
| |