MAC_FILTER(9E) Driver Entry Points MAC_FILTER(9E)

mac_filter, mgi_addmac, mgi_remmac, mgi_addvlan, mgi_remvlanadd and remove filters from MAC groups

#include <sys/mac_provider.h>

int
prefix_ring_add_mac(mac_group_driver_t driver, const uint8_t *mac);

int
prefix_ring_rem_mac(mac_group_driver_t driver, const uint8_t *mac);

int
prefix_ring_add_vlan(mac_group_driver_t driver, uint16_t vlan);

int
prefix_ring_rem_vlan(mac_group_driver_t driver, uint16_t vlan);

This interface is still evolving. API and ABI stability is not guaranteed.

driver
A pointer to the ring's private data that was passed in via the mgi_driver member of the mac_group_info(9S) structure as part of the mr_gget(9E) entry point.
mac
A pointer to an array of bytes that contains the unicast address to add or remove from a filter. It is guaranteed to be at least as long, in bytes, as the MAC plugin's address length. For Ethernet devices that length is six bytes, ETHERADDRL.
vlan
The numeric value of the VLAN that should be added or removed from a filter.

The () family of entry points are used to add and remove various classes of filters from a device. For more information on the filters, see the Filters section of mac_capab_rings(9E) and the discussion around setting these members in mac_group_info(9S).

The driver argument indicates which group the request to add or remove a filter is being requested on.

The filter addition operations, (), mgi_addvlan(), and (), all instruct the system to add a filter to the specified group. The filter should not target any specific ring in the group. If multiple rings are present, then the driver should ensure that the hardware balances incoming traffic amongst all of the rings through a consistent hashing mechanism such as receive side scaling.

The () entry point instructs the driver to add the MAC address specified in mac to the filter list for the group. The MAC address should always be a unicast MAC address; however, the driver is encouraged to verify that before adding it.

The () should remove the MAC address specified in mac from the filter list for the group.

The () entry point instructs the driver to add the VLAN specified in vlan to the filter list for the group. The () entry point instructs the driver to remove the VLAN specified in vlan from the filter list for the group.

Multiple filters of the same class should always be treated as a logical-OR. The frame may match any of the filters in a given class to be accepted. Filters of different classes should always be treated as a logical-AND. The frame must match a filter in all programmed classes to be accepted. For more information, see the Filters section of mac_capab_rings(9E).

Upon successful completion, the driver should ensure that the filter has been added or removed and return . Otherwise, it should return the appropriate error number.

The device driver may return one of the following errors. While this list is not intended to be exhaustive, it is recommended to use one of these if possible.

The requested filter has already been programmed into the device.
The address mac is not a valid unicast address. The VLAN vlan is not a valid VLAN identifier.
The driver encountered a device or transport error while trying to update the device's state.
The driver was asked to remove a filter which was not currently programmed.
The driver does not support this specific function. This should only be used on specific hardware (generally devices from cloud providers) where neither promiscuous mode nor filters will allow the filter to operate.
The driver has run out of available hardware filters.

mac(9E), mac_capab_rings(9E), mr_gget(9E), mac_group_info(9S)

July 17, 2023 OmniOS