From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 8E1CEC43217 for ; Wed, 12 Jan 2022 17:33:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1355605AbiALRdU (ORCPT ); Wed, 12 Jan 2022 12:33:20 -0500 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:59117 "EHLO relay7-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242291AbiALRdT (ORCPT ); Wed, 12 Jan 2022 12:33:19 -0500 Received: (Authenticated sender: miquel.raynal@bootlin.com) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 1872320005; Wed, 12 Jan 2022 17:33:12 +0000 (UTC) From: Miquel Raynal To: Alexander Aring , Stefan Schmidt , linux-wpan@vger.kernel.org, "David S. Miller" , Jakub Kicinski , netdev@vger.kernel.org Cc: Michael Hennerich , Harry Morris , Varka Bhadram , Xue Liu , Alan Ott , David Girault , Romuald Despres , Frederic Blain , Nicolas Schodet , Thomas Petazzoni , linux-wireless@vger.kernel.org, Miquel Raynal Subject: [wpan-next v2 00/27] IEEE 802.15.4 scan support Date: Wed, 12 Jan 2022 18:32:45 +0100 Message-Id: <20220112173312.764660-1-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Hello, Here is a series attempting to bring support for scans in the IEEE 802.15.4 stack. A second series follows in order to align the tooling with these changes, bringing support for a number of new features such as: * Sending (or stopping) beacons. Intervals ranging from 0 to 14 are valid for passively sending beacons at regular intervals. An interval of 15 would request the core to answer to received BEACON_REQ. # iwpan dev wpan0 beacons send interval 2 # send BEACON at a fixed rate # iwpan dev wpan0 beacons send interval 15 # answer BEACON_REQ only # iwpan dev wpan0 beacons stop # apply to both cases * Scanning all the channels or only a subset: # iwpan dev wpan1 scan type passive duration 3 # will not trigger BEACON_REQ # iwpan dev wpan1 scan type active duration 3 # will trigger BEACON_REQ * If a beacon is received during a scan, the internal PAN list is updated and can be dumped, flushed and configured with: # iwpan dev wpan1 pans dump PAN 0xffff (on wpan1) coordinator 0x2efefdd4cdbf9330 page 0 channel 13 superframe spec. 0xcf22 LQI 0 seen 7156ms ago # iwpan dev wpan1 pans flush # iwpan dev wpan1 set max_pan_entries 100 # iwpan dev wpan1 set pans_expiration 3600 * It is also possible to monitor the events with: # iwpan event * As well as triggering a non blocking scan: # iwpan dev wpan1 scan trigger type passive duration 3 # iwpan dev wpan1 scan done # iwpan dev wpan1 scan abort The PAN list gets automatically updated by dropping the expired PANs each time the user requests access to the list. Internally, both requests (scan/beacons) are handled periodically by delayed workqueues when relevant. So far the only technical point that is missing in this series is the possibility to grab a reference over the module driving the net device in order to prevent module unloading during a scan or when the beacons work is ongoing. Finally, this series is a deep reshuffle of David Girault's original work, hence the fact that he is almost systematically credited, either by being the only author when I created the patches based on his changes with almost no modification, or with a Co-developped-by tag whenever the final code base is significantly different than his first proposal while still being greatly inspired from it. Cheers, Miquèl Changes in v2: * Create two new netlink commands to set the maximum number of PANs that can be listed as well as their expiration time (in seconds). * Added a patch to the series to avoid ignoring bad frames in hwsim as requested by Alexander. * Changed the symbol duration type to receive nanoseconds instead of microseconds. * Dropped most of the hwsim patches and reworked how drivers advertise their channels in order to be capable of deriving the symbol durations automatically. * The scanning boolean gets turned into an atomic. * The ca8210 driver does not support scanning, implement the driver hooks to reflect the situation. * Reworked a bit the content of each patch to ease the introduction of active scans. * Added active scan support. David Girault (5): net: ieee802154: Move IEEE 802.15.4 Kconfig main entry net: mac802154: Include the softMAC stack inside the IEEE 802.15.4 menu net: ieee802154: Move the address structure earlier net: ieee802154: Add a kernel doc header to the ieee802154_addr structure net: ieee802154: Trace the registration of new PANs Miquel Raynal (22): net: mac802154: Split the set channel hook implementation net: mac802154: Ensure proper channel selection at probe time net: ieee802154: Improve the way supported channels are declared net: ieee802154: Give more details to the core about the channel configurations net: mac802154: Convert the symbol duration into nanoseconds net: mac802154: Set the symbol duration automatically net: ieee802154: hwsim: Ensure frame checksum are valid net: ieee802154: Drop symbol duration settings when the core does it already net: ieee802154: Return meaningful error codes from the netlink helpers net: ieee802154: Add support for internal PAN management net: ieee802154: Define a beacon frame header net: ieee802154: Define frame types net: ieee802154: Add support for scanning requests net: mac802154: Handle scan requests net: ieee802154: Full PAN management net: ieee802154: Add support for beacon requests net: mac802154: Handle beacons requests net: mac802154: Add support for active scans net: mac802154: Add support for processing beacon requests net: mac802154: Inform device drivers about scans net: mac802154: Inform device drivers about beacon operations net: ieee802154: ca8210: Refuse most of the scan operations drivers/net/ieee802154/adf7242.c | 3 +- drivers/net/ieee802154/at86rf230.c | 34 +- drivers/net/ieee802154/atusb.c | 34 +- drivers/net/ieee802154/ca8210.c | 32 +- drivers/net/ieee802154/cc2520.c | 3 +- drivers/net/ieee802154/fakelb.c | 43 +- drivers/net/ieee802154/mac802154_hwsim.c | 78 +++- drivers/net/ieee802154/mcr20a.c | 8 +- drivers/net/ieee802154/mrf24j40.c | 3 +- include/linux/ieee802154.h | 7 + include/net/cfg802154.h | 167 ++++++- include/net/ieee802154_netdev.h | 85 ++++ include/net/mac802154.h | 40 ++ include/net/nl802154.h | 99 ++++ net/Kconfig | 3 +- net/ieee802154/Kconfig | 1 + net/ieee802154/Makefile | 2 +- net/ieee802154/core.c | 2 + net/ieee802154/core.h | 31 ++ net/ieee802154/header_ops.c | 67 +++ net/ieee802154/nl-phy.c | 8 +- net/ieee802154/nl802154.c | 548 ++++++++++++++++++++++- net/ieee802154/nl802154.h | 4 + net/ieee802154/pan.c | 234 ++++++++++ net/ieee802154/rdev-ops.h | 52 +++ net/ieee802154/trace.h | 86 ++++ net/mac802154/Makefile | 2 +- net/mac802154/cfg.c | 94 +++- net/mac802154/driver-ops.h | 58 +++ net/mac802154/ieee802154_i.h | 52 +++ net/mac802154/main.c | 113 ++++- net/mac802154/rx.c | 34 +- net/mac802154/scan.c | 446 ++++++++++++++++++ net/mac802154/trace.h | 49 ++ net/mac802154/tx.c | 3 + net/mac802154/util.c | 26 ++ 36 files changed, 2438 insertions(+), 113 deletions(-) create mode 100644 net/ieee802154/pan.c create mode 100644 net/mac802154/scan.c -- 2.27.0