Guojun Jin | 4b3707b | 2014-05-16 15:55:23 -0700 | [diff] [blame] | 1 | /* |
| 2 | ************************************************************************** |
Sundarajan Srinivasan | 30a53d4 | 2015-01-30 10:52:08 -0800 | [diff] [blame^] | 3 | * Copyright (c) 2013-2015, The Linux Foundation. All rights reserved. |
Guojun Jin | 4b3707b | 2014-05-16 15:55:23 -0700 | [diff] [blame] | 4 | * 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 | /* |
| 18 | * nss_profiler.c |
| 19 | * NSS profiler APIs |
| 20 | */ |
| 21 | |
| 22 | #include "nss_tx_rx_common.h" |
| 23 | |
| 24 | /* |
| 25 | * nss_profiler_rx_msg_handler() |
| 26 | * Handle profiler information. |
| 27 | */ |
| 28 | static void nss_profiler_rx_msg_handler(struct nss_ctx_instance *nss_ctx, struct nss_cmn_msg *ncm, void *app) |
| 29 | { |
| 30 | struct nss_profiler_msg *pm = (struct nss_profiler_msg*)ncm; |
| 31 | void *ctx = nss_ctx->nss_top->profiler_ctx[nss_ctx->id]; |
| 32 | nss_profiler_callback_t cb = nss_ctx->nss_top->profiler_callback[nss_ctx->id]; |
| 33 | |
| 34 | if (ncm->type >= NSS_PROFILER_MAX_MSG_TYPES) { |
| 35 | nss_warning("%p: message type out of range: %d", nss_ctx, ncm->type); |
| 36 | return; |
| 37 | } |
| 38 | |
| 39 | if (ncm->type <= NSS_PROFILER_FLOWCTRL_MSG) { |
| 40 | if (ncm->len > sizeof(pm->payload.pcmdp)) { |
| 41 | nss_warning("%p: reply for cmd %d size is wrong %d : %d\n", nss_ctx, ncm->type, ncm->len, ncm->interface); |
| 42 | return; |
| 43 | } |
| 44 | } else if (ncm->type <= NSS_PROFILER_DEBUG_REPLY_MSG) { |
| 45 | if (ncm->len > sizeof(pm->payload.pdm)) { |
| 46 | nss_warning("%p: reply for debug %d is too big %d\n", nss_ctx, ncm->type, ncm->len); |
| 47 | return; |
| 48 | } |
| 49 | } else if (ncm->type <= NSS_PROFILER_COUNTERS_MSG) { |
| 50 | if (ncm->len < (sizeof(pm->payload.pcmdp) - (PROFILE_MAX_APP_COUNTERS - pm->payload.pcmdp.num_counters) * sizeof(pm->payload.pcmdp.counters[0])) || ncm->len > sizeof(pm->payload.pcmdp)) { |
| 51 | nss_warning("%p: %d params data is too big %d : %d\n", nss_ctx, ncm->type, ncm->len, ncm->interface); |
| 52 | return; |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | /* |
| 57 | * status per request callback |
| 58 | */ |
| 59 | if (ncm->response != NSS_CMM_RESPONSE_NOTIFY && ncm->cb) { |
| 60 | nss_info("%p: reply CB %x for %d %d\n", nss_ctx, ncm->cb, ncm->type, ncm->response); |
| 61 | cb = (nss_profiler_callback_t)ncm->cb; |
| 62 | } |
| 63 | |
| 64 | /* |
| 65 | * sample related callback |
| 66 | */ |
| 67 | if (!cb || !ctx) { |
| 68 | nss_warning("%p: Event received for profiler interface before registration", nss_ctx); |
| 69 | return; |
| 70 | } |
| 71 | |
| 72 | cb(ctx, (struct nss_profiler_msg *)ncm); |
| 73 | } |
| 74 | |
| 75 | /* |
| 76 | * nss_tx_profiler_if_buf() |
| 77 | * NSS profiler Tx API |
| 78 | */ |
| 79 | nss_tx_status_t nss_profiler_if_tx_buf(void *ctx, void *buf, uint32_t len, void *cb) |
| 80 | { |
| 81 | struct nss_ctx_instance *nss_ctx = (struct nss_ctx_instance *)ctx; |
| 82 | struct sk_buff *nbuf; |
| 83 | int32_t status; |
| 84 | struct nss_profiler_msg *npm; |
| 85 | struct nss_profiler_data_msg *pdm = (struct nss_profiler_data_msg *)buf; |
| 86 | |
| 87 | nss_trace("%p: Profiler If Tx, buf=%p", nss_ctx, buf); |
| 88 | |
| 89 | NSS_VERIFY_CTX_MAGIC(nss_ctx); |
| 90 | if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) { |
| 91 | nss_warning("%p: 'Profiler If Tx' rule dropped as core not ready", nss_ctx); |
| 92 | return NSS_TX_FAILURE_NOT_READY; |
| 93 | } |
| 94 | |
| 95 | if (NSS_NBUF_PAYLOAD_SIZE < (len + sizeof(*npm))) { |
| 96 | return NSS_TX_FAILURE_TOO_LARGE; |
| 97 | } |
| 98 | |
Pamidipati, Vijay | b6e3884 | 2014-09-16 10:26:05 +0530 | [diff] [blame] | 99 | nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE); |
Guojun Jin | 4b3707b | 2014-05-16 15:55:23 -0700 | [diff] [blame] | 100 | if (unlikely(!nbuf)) { |
| 101 | spin_lock_bh(&nss_ctx->nss_top->stats_lock); |
| 102 | nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]++; |
| 103 | spin_unlock_bh(&nss_ctx->nss_top->stats_lock); |
| 104 | nss_warning("%p: 'Profiler If Tx' rule dropped as command allocation failed", nss_ctx); |
| 105 | return NSS_TX_FAILURE; |
| 106 | } |
| 107 | |
| 108 | npm = (struct nss_profiler_msg *)skb_put(nbuf, sizeof(npm->cm) + len); |
Sundarajan Srinivasan | 02e6c2b | 2014-10-06 11:51:12 -0700 | [diff] [blame] | 109 | nss_profiler_msg_init(npm, NSS_PROFILER_INTERFACE, pdm->hd_magic & 0xFF, len, |
Sundarajan Srinivasan | 30a53d4 | 2015-01-30 10:52:08 -0800 | [diff] [blame^] | 110 | cb, ctx); |
Guojun Jin | 4b3707b | 2014-05-16 15:55:23 -0700 | [diff] [blame] | 111 | memcpy(&npm->payload, pdm, len); |
| 112 | |
| 113 | status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0); |
| 114 | if (status != NSS_CORE_STATUS_SUCCESS) { |
Pamidipati, Vijay | b6e3884 | 2014-09-16 10:26:05 +0530 | [diff] [blame] | 115 | dev_kfree_skb_any(nbuf); |
Guojun Jin | 4b3707b | 2014-05-16 15:55:23 -0700 | [diff] [blame] | 116 | nss_warning("%p: Unable to enqueue 'Profiler If cmd Tx\n", nss_ctx); |
| 117 | return NSS_TX_FAILURE; |
| 118 | } |
| 119 | |
| 120 | nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit, |
| 121 | NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE); |
| 122 | |
| 123 | NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]); |
| 124 | return NSS_TX_SUCCESS; |
| 125 | } |
| 126 | |
| 127 | /* |
| 128 | * nss_profiler_notify_register() |
| 129 | */ |
| 130 | void *nss_profiler_notify_register(nss_core_id_t core_id, nss_profiler_callback_t profiler_callback, void *ctx) |
| 131 | { |
| 132 | nss_assert(core_id < NSS_CORE_MAX); |
| 133 | |
| 134 | if ((core_id == NSS_CORE_0) && (NSS_CORE_STATUS_SUCCESS != |
| 135 | nss_core_register_handler(NSS_PROFILER_INTERFACE, nss_profiler_rx_msg_handler, NULL))) { |
| 136 | nss_warning("Message handler FAILED to be registered for profiler"); |
| 137 | return NULL; |
| 138 | } |
| 139 | |
| 140 | nss_top_main.profiler_ctx[core_id] = ctx; |
| 141 | nss_top_main.profiler_callback[core_id] = profiler_callback; |
| 142 | |
| 143 | return (void *)&nss_top_main.nss[core_id]; |
| 144 | } |
| 145 | |
| 146 | /* |
| 147 | * nss_profiler_notify_unregister() |
| 148 | */ |
| 149 | void nss_profiler_notify_unregister(nss_core_id_t core_id) |
| 150 | { |
| 151 | nss_assert(core_id < NSS_CORE_MAX); |
| 152 | |
| 153 | nss_core_register_handler(NSS_PROFILER_INTERFACE, NULL, NULL); |
| 154 | nss_top_main.profiler_callback[core_id] = NULL; |
| 155 | nss_top_main.profiler_ctx[core_id] = NULL; |
| 156 | } |
| 157 | |
Sundarajan Srinivasan | 02e6c2b | 2014-10-06 11:51:12 -0700 | [diff] [blame] | 158 | /* |
| 159 | * nss_profiler_msg_init() |
| 160 | * Initialize profiler message. |
| 161 | */ |
| 162 | void nss_profiler_msg_init(struct nss_profiler_msg *npm, uint16_t if_num, uint32_t type, uint32_t len, |
Sundarajan Srinivasan | 30a53d4 | 2015-01-30 10:52:08 -0800 | [diff] [blame^] | 163 | nss_profiler_callback_t cb, void *app_data) |
Sundarajan Srinivasan | 02e6c2b | 2014-10-06 11:51:12 -0700 | [diff] [blame] | 164 | { |
| 165 | nss_cmn_msg_init(&npm->cm, if_num, type, len, (void *)cb, app_data); |
| 166 | } |
| 167 | |
Guojun Jin | 4b3707b | 2014-05-16 15:55:23 -0700 | [diff] [blame] | 168 | EXPORT_SYMBOL(nss_profiler_notify_register); |
| 169 | EXPORT_SYMBOL(nss_profiler_notify_unregister); |
| 170 | EXPORT_SYMBOL(nss_profiler_if_tx_buf); |
Sundarajan Srinivasan | 02e6c2b | 2014-10-06 11:51:12 -0700 | [diff] [blame] | 171 | EXPORT_SYMBOL(nss_profiler_msg_init); |