lkml.org 
[lkml]   [2021]   [Dec]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Date
SubjectRe: [net-next 12/18] net: mac802154: Handle scan requests
Hi,

On Thu, 30 Dec 2021 at 14:47, Alexander Aring <alex.aring@gmail.com> wrote:
>
> Hi,
>
> On Wed, 29 Dec 2021 at 09:45, Nicolas Schodet <nico@ni.fr.eu.org> wrote:
> >
> > Hi,
> >
> > * Alexander Aring <alex.aring@gmail.com> [2021-12-29 09:30]:
> > > Hi,
> > > On Wed, 22 Dec 2021 at 10:58, Miquel Raynal <miquel.raynal@bootlin.com> wrote:
> > > ...
> > > > +{
> > > > + bool promiscuous_on = mac802154_check_promiscuous(local);
> > > > + int ret;
> > > > +
> > > > + if ((state && promiscuous_on) || (!state && !promiscuous_on))
> > > > + return 0;
> > > > +
> > > > + ret = drv_set_promiscuous_mode(local, state);
> > > > + if (ret)
> > > > + pr_err("Failed to %s promiscuous mode for SW scanning",
> > > > + state ? "set" : "reset");
> > > The semantic of promiscuous mode on the driver layer is to turn off
> > > ack response, address filtering and crc checking. Some transceivers
> > > don't allow a more fine tuning on what to enable/disable. I think we
> > > should at least do the checksum checking per software then?
> > > Sure there is a possible tune up for more "powerful" transceivers then...
> >
> > In this case, the driver could change the (flags &
> > IEEE802154_HW_RX_DROP_BAD_CKSUM) bit dynamically to signal it does not
> > check the checksum anymore. Would it work?
>
> I think that would work, although the intention of the hw->flags is to
> define what the hardware is supposed to support as not changing those
> values dynamically during runtime so mac will care about it. However
> we don't expose those flags to the userspace, so far I know. We can
> still introduce two separated flags if necessary in future.
>
> Why do we need promiscuous mode at all? Why is it necessary for a
> scan? What of "ack response, address filtering and crc checking" you
> want to disable and why?
>

I see now why promiscuous mode is necessary here. The actual
promiscuous mode setting for the driver is not the same as promiscuous
mode in 802.15.4 spec. For until now it was there for running a
sniffer device only.
As the 802.15.4 spec defines some "filtering levels" I came up with a
draft so we can define which filtering level should be done on the
hardware.

diff --git a/include/net/mac802154.h b/include/net/mac802154.h
index 72978fb72a3a..3839ed3f8f0d 100644
--- a/include/net/mac802154.h
+++ b/include/net/mac802154.h
@@ -130,6 +130,48 @@ enum ieee802154_hw_flags {
#define IEEE802154_HW_OMIT_CKSUM (IEEE802154_HW_TX_OMIT_CKSUM | \
IEEE802154_HW_RX_OMIT_CKSUM)

+/**
+ * enum ieee802154_filter_mode - hardware filter mode that a driver
will pass to
+ * pass to mac802154.
+ *
+ * @IEEE802154_FILTER_MODE_0: No MFR filtering at all.
+ *
+ * @IEEE802154_FILTER_MODE_1: IEEE802154_FILTER_MODE_1 with a bad FCS filter.
+ *
+ * @IEEE802154_FILTER_MODE_2: Same as IEEE802154_FILTER_MODE_1, known as
+ * 802.15.4 promiscuous mode, sets
+ * mib.PromiscuousMode.
+ *
+ * @IEEE802154_FILTER_MODE_3_SCAN: Same as IEEE802154_FILTER_MODE_2 without
+ * set mib.PromiscuousMode.
+ *
+ * @IEEE802154_FILTER_MODE_3_NO_SCAN:
+ * IEEE802154_FILTER_MODE_3_SCAN with MFR additional filter on:
+ *
+ * - No reserved value in frame type
+ * - No reserved value in frame version
+ * - Match mib.PanId or broadcast
+ * - Destination address field:
+ * - Match mib.ShortAddress or broadcast
+ * - Match mib.ExtendedAddress or GroupRxMode is true
+ * - ImplicitBroadcast is true and destination address field/destination
+ * panid is not included.
+ * - Device is coordinator only source address present in data
+ * frame/command frame and source panid matches mib.PanId
+ * - Device is coordinator only source address present in multipurpose
+ * frame and destination panid matches macPanId
+ * - Beacon frames source panid matches mib.PanId. If mib.PanId is
+ * broadcast it should always be accepted.
+ *
+ */
+enum ieee802154_filter_mode {
+ IEEE802154_FILTER_MODE_0,
+ IEEE802154_FILTER_MODE_1,
+ IEEE802154_FILTER_MODE_2,
+ IEEE802154_FILTER_MODE_3_SCAN,
+ IEEE802154_FILTER_MODE_3_NO_SCAN,
+};
+
/* struct ieee802154_ops - callbacks from mac802154 to the driver
*
* This structure contains various callbacks that the driver may
@@ -249,7 +291,7 @@ struct ieee802154_ops {
int (*set_frame_retries)(struct ieee802154_hw *hw,
s8 retries);
int (*set_promiscuous_mode)(struct ieee802154_hw *hw,
- const bool on);
+ enum
ieee802154_filter_mode mode);
int (*enter_scan_mode)(struct ieee802154_hw *hw,
struct
cfg802154_scan_request *request);
int (*exit_scan_mode)(struct ieee802154_hw *hw);
---
In your case it will be IEEE802154_FILTER_MODE_3_SCAN mode, for a
sniffer we probably want as default IEEE802154_FILTER_MODE_0, as
"promiscuous mode" currently is.

- Alex

\
 
 \ /
  Last update: 2021-12-31 20:27    [W:0.111 / U:0.024 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site