]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
can: introduce new raw socket option to join the given CAN filters
authorOliver Hartkopp <socketcan@hartkopp.net>
Wed, 1 Apr 2015 05:50:29 +0000 (07:50 +0200)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Wed, 1 Apr 2015 09:28:22 +0000 (11:28 +0200)
commita5581ef4c2eac6449188862e903eb46c7233582a
treeb334b1858d3bffe49af1fb95650cb5affb7e1510
parent514ac99c64b22d83b52dfee3b8becaa69a92bc4a
can: introduce new raw socket option to join the given CAN filters

The CAN_RAW socket can set multiple CAN identifier specific filters that lead
to multiple filters in the af_can.c filter processing. These filters are
indenpendent from each other which leads to logical OR'ed filters when applied.

This socket option joines the given CAN filters in the way that only CAN frames
are passed to user space that matched *all* given CAN filters. The semantic for
the applied filters is therefore changed to a logical AND.

This is useful especially when the filterset is a combination of filters where
the CAN_INV_FILTER flag is set in order to notch single CAN IDs or CAN ID
ranges from the incoming traffic.

As the raw_rcv() function is executed from NET_RX softirq the introduced
variables are implemented as per-CPU variables to avoid extensive locking at
CAN frame reception time.

Signed-off-by: Oliver Hartkopp <socketcan@hartkopp.net>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Documentation/networking/can.txt
include/uapi/linux/can/raw.h
net/can/raw.c