kni: support promiscuous mode set
Inform userspace app about promisc mode change Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
1cfe212ed1
commit
528057df4c
@ -512,12 +512,13 @@ Callbacks for Kernel Requests
|
||||
|
||||
To execute specific PMD operations in user space requested by some Linux* commands,
|
||||
callbacks must be implemented and filled in the struct rte_kni_ops structure.
|
||||
Currently, setting a new MTU, change in MAC address and
|
||||
Currently, setting a new MTU, change in MAC address, configuring promiscusous mode and
|
||||
configuring the network interface(up/down) re supported.
|
||||
Default implementation for following is available in rte_kni library.
|
||||
Application may choose to not implement following callbacks:
|
||||
|
||||
- ``config_mac_address``
|
||||
- ``config_promiscusity``
|
||||
|
||||
|
||||
.. code-block:: c
|
||||
@ -526,6 +527,7 @@ Application may choose to not implement following callbacks:
|
||||
.change_mtu = kni_change_mtu,
|
||||
.config_network_if = kni_config_network_interface,
|
||||
.config_mac_address = kni_config_mac_address,
|
||||
.config_promiscusity = kni_config_promiscusity,
|
||||
};
|
||||
|
||||
/* Callback for request of changing MTU */
|
||||
@ -612,3 +614,11 @@ Application may choose to not implement following callbacks:
|
||||
{
|
||||
.....
|
||||
}
|
||||
|
||||
/* Callback for request of configuring promiscuous mode */
|
||||
|
||||
static int
|
||||
kni_config_promiscusity(uint16_t port_id, uint8_t to_on)
|
||||
{
|
||||
.....
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ enum rte_kni_req_id {
|
||||
RTE_KNI_REQ_CHANGE_MTU,
|
||||
RTE_KNI_REQ_CFG_NETWORK_IF,
|
||||
RTE_KNI_REQ_CHANGE_MAC_ADDR,
|
||||
RTE_KNI_REQ_CHANGE_PROMISC,
|
||||
RTE_KNI_REQ_MAX,
|
||||
};
|
||||
|
||||
@ -42,6 +43,7 @@ struct rte_kni_request {
|
||||
uint32_t new_mtu; /**< New MTU */
|
||||
uint8_t if_up; /**< 1: interface up, 0: interface down */
|
||||
uint8_t mac_addr[6]; /**< MAC address for interface */
|
||||
uint8_t promiscusity;/**< 1: promisc mode enable, 0: disable */
|
||||
};
|
||||
int32_t result; /**< Result for processing request */
|
||||
} __attribute__((__packed__));
|
||||
|
@ -584,6 +584,22 @@ kni_net_change_mtu(struct net_device *dev, int new_mtu)
|
||||
return (ret == 0) ? req.result : ret;
|
||||
}
|
||||
|
||||
static void
|
||||
kni_net_set_promiscusity(struct net_device *netdev, int flags)
|
||||
{
|
||||
struct rte_kni_request req;
|
||||
struct kni_dev *kni = netdev_priv(netdev);
|
||||
|
||||
memset(&req, 0, sizeof(req));
|
||||
req.req_id = RTE_KNI_REQ_CHANGE_PROMISC;
|
||||
|
||||
if (netdev->flags & IFF_PROMISC)
|
||||
req.promiscusity = 1;
|
||||
else
|
||||
req.promiscusity = 0;
|
||||
kni_net_process_request(kni, &req);
|
||||
}
|
||||
|
||||
/*
|
||||
* Checks if the user space application provided the resp message
|
||||
*/
|
||||
@ -693,6 +709,7 @@ static const struct net_device_ops kni_net_netdev_ops = {
|
||||
.ndo_open = kni_net_open,
|
||||
.ndo_stop = kni_net_release,
|
||||
.ndo_set_config = kni_net_config,
|
||||
.ndo_change_rx_flags = kni_net_set_promiscusity,
|
||||
.ndo_start_xmit = kni_net_tx,
|
||||
.ndo_change_mtu = kni_net_change_mtu,
|
||||
.ndo_do_ioctl = kni_net_ioctl,
|
||||
|
@ -525,6 +525,26 @@ kni_config_mac_address(uint16_t port_id, uint8_t mac_addr[])
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* default callback for request of configuring promiscuous mode */
|
||||
static int
|
||||
kni_config_promiscusity(uint16_t port_id, uint8_t to_on)
|
||||
{
|
||||
if (port_id >= rte_eth_dev_count() || port_id >= RTE_MAX_ETHPORTS) {
|
||||
RTE_LOG(ERR, KNI, "Invalid port id %d\n", port_id);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
RTE_LOG(INFO, KNI, "Configure promiscuous mode of %d to %d\n",
|
||||
port_id, to_on);
|
||||
|
||||
if (to_on)
|
||||
rte_eth_promiscuous_enable(port_id);
|
||||
else
|
||||
rte_eth_promiscuous_disable(port_id);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
rte_kni_handle_request(struct rte_kni *kni)
|
||||
{
|
||||
@ -564,6 +584,14 @@ rte_kni_handle_request(struct rte_kni *kni)
|
||||
req->result = kni_config_mac_address(
|
||||
kni->ops.port_id, req->mac_addr);
|
||||
break;
|
||||
case RTE_KNI_REQ_CHANGE_PROMISC: /* Change PROMISCUOUS MODE */
|
||||
if (kni->ops.config_promiscusity)
|
||||
req->result = kni->ops.config_promiscusity(
|
||||
kni->ops.port_id, req->promiscusity);
|
||||
else if (kni->ops.port_id != UINT16_MAX)
|
||||
req->result = kni_config_promiscusity(
|
||||
kni->ops.port_id, req->promiscusity);
|
||||
break;
|
||||
default:
|
||||
RTE_LOG(ERR, KNI, "Unknown request id %u\n", req->req_id);
|
||||
req->result = -EINVAL;
|
||||
@ -714,7 +742,8 @@ kni_check_request_register(struct rte_kni_ops *ops)
|
||||
|
||||
if ((ops->change_mtu == NULL)
|
||||
&& (ops->config_network_if == NULL)
|
||||
&& (ops->config_mac_address == NULL))
|
||||
&& (ops->config_mac_address == NULL)
|
||||
&& (ops->config_promiscusity == NULL))
|
||||
return KNI_REQ_NO_REGISTER;
|
||||
|
||||
return KNI_REQ_REGISTERED;
|
||||
|
@ -45,6 +45,9 @@ struct rte_kni_ops {
|
||||
|
||||
/* Pointer to function of configuring mac address */
|
||||
int (*config_mac_address)(uint16_t port_id, uint8_t mac_addr[]);
|
||||
|
||||
/* Pointer to function of configuring promiscuous mode */
|
||||
int (*config_promiscusity)(uint16_t port_id, uint8_t to_on);
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -75,6 +75,7 @@ static struct rte_kni_ops kni_ops = {
|
||||
.change_mtu = NULL,
|
||||
.config_network_if = NULL,
|
||||
.config_mac_address = NULL,
|
||||
.config_promiscusity = NULL,
|
||||
};
|
||||
|
||||
static unsigned lcore_master, lcore_ingress, lcore_egress;
|
||||
@ -233,6 +234,7 @@ test_kni_register_handler_mp(void)
|
||||
.change_mtu = kni_change_mtu,
|
||||
.config_network_if = NULL,
|
||||
.config_mac_address = NULL,
|
||||
.config_promiscusity = NULL,
|
||||
};
|
||||
|
||||
if (!kni) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user