Skip to content
  1. Mar 22, 2023
  2. Mar 15, 2023
  3. Mar 10, 2023
  4. Feb 15, 2023
  5. Feb 14, 2023
  6. Jan 19, 2023
  7. Jan 18, 2023
  8. Jan 16, 2023
    • Eric Dumazet's avatar
      Revert "wifi: mac80211: fix memory leak in ieee80211_if_add()" · 80f8a66d
      Eric Dumazet authored
      
      
      This reverts commit 13e5afd3.
      
      ieee80211_if_free() is already called from free_netdev(ndev)
      because ndev->priv_destructor == ieee80211_if_free
      
      syzbot reported:
      
      general protection fault, probably for non-canonical address 0xdffffc0000000004: 0000 [#1] PREEMPT SMP KASAN
      KASAN: null-ptr-deref in range [0x0000000000000020-0x0000000000000027]
      CPU: 0 PID: 10041 Comm: syz-executor.0 Not tainted 6.2.0-rc2-syzkaller-00388-g55b98837e37d #0
      Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 10/26/2022
      RIP: 0010:pcpu_get_page_chunk mm/percpu.c:262 [inline]
      RIP: 0010:pcpu_chunk_addr_search mm/percpu.c:1619 [inline]
      RIP: 0010:free_percpu mm/percpu.c:2271 [inline]
      RIP: 0010:free_percpu+0x186/0x10f0 mm/percpu.c:2254
      Code: 80 3c 02 00 0f 85 f5 0e 00 00 48 8b 3b 48 01 ef e8 cf b3 0b 00 48 ba 00 00 00 00 00 fc ff df 48 8d 78 20 48 89 f9 48 c1 e9 03 <80> 3c 11 00 0f 85 3b 0e 00 00 48 8b 58 20 48 b8 00 00 00 00 00 fc
      RSP: 0018:ffffc90004ba7068 EFLAGS: 00010002
      RAX: 0000000000000000 RBX: ffff88823ffe2b80 RCX: 0000000000000004
      RDX: dffffc0000000000 RSI: ffffffff81c1f4e7 RDI: 0000000000000020
      RBP: ffffe8fffe8fc220 R08: 0000000000000005 R09: 0000000000000000
      R10: 0000000000000000 R11: 1ffffffff2179ab2 R12: ffff8880b983d000
      R13: 0000000000000003 R14: 0000607f450fc220 R15: ffff88823ffe2988
      FS: 00007fcb349de700(0000) GS:ffff8880b9800000(0000) knlGS:0000000000000000
      CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
      CR2: 0000001b32220000 CR3: 000000004914f000 CR4: 00000000003506f0
      DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
      DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
      Call Trace:
      <TASK>
      netdev_run_todo+0x6bf/0x1100 net/core/dev.c:10352
      ieee80211_register_hw+0x2663/0x4040 net/mac80211/main.c:1411
      mac80211_hwsim_new_radio+0x2537/0x4d80 drivers/net/wireless/mac80211_hwsim.c:4583
      hwsim_new_radio_nl+0xa09/0x10f0 drivers/net/wireless/mac80211_hwsim.c:5176
      genl_family_rcv_msg_doit.isra.0+0x1e6/0x2d0 net/netlink/genetlink.c:968
      genl_family_rcv_msg net/netlink/genetlink.c:1048 [inline]
      genl_rcv_msg+0x4ff/0x7e0 net/netlink/genetlink.c:1065
      netlink_rcv_skb+0x165/0x440 net/netlink/af_netlink.c:2564
      genl_rcv+0x28/0x40 net/netlink/genetlink.c:1076
      netlink_unicast_kernel net/netlink/af_netlink.c:1330 [inline]
      netlink_unicast+0x547/0x7f0 net/netlink/af_netlink.c:1356
      netlink_sendmsg+0x91b/0xe10 net/netlink/af_netlink.c:1932
      sock_sendmsg_nosec net/socket.c:714 [inline]
      sock_sendmsg+0xd3/0x120 net/socket.c:734
      ____sys_sendmsg+0x712/0x8c0 net/socket.c:2476
      ___sys_sendmsg+0x110/0x1b0 net/socket.c:2530
      __sys_sendmsg+0xf7/0x1c0 net/socket.c:2559
      do_syscall_x64 arch/x86/entry/common.c:50 [inline]
      do_syscall_64+0x39/0xb0 arch/x86/entry/common.c:80
      entry_SYSCALL_64_after_hwframe+0x63/0xcd
      
      Reported-by: default avatarsyzbot <syzkaller@googlegroups.com>
      Fixes: 13e5afd3 ("wifi: mac80211: fix memory leak in ieee80211_if_add()")
      Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
      Cc: Zhengchao Shao <shaozhengchao@huawei.com>
      Cc: Johannes Berg <johannes.berg@intel.com>
      Signed-off-by: default avatarKalle Valo <kvalo@kernel.org>
      Link: https://lore.kernel.org/r/20230113124326.3533978-1-edumazet@google.com
      80f8a66d
  9. Jan 12, 2023
  10. Jan 10, 2023
    • Felix Fietkau's avatar
      wifi: mac80211: fix MLO + AP_VLAN check · f216033d
      Felix Fietkau authored
      
      
      Instead of preventing adding AP_VLAN to MLO enabled APs, this check was
      preventing adding more than one 4-addr AP_VLAN regardless of the MLO status.
      Fix this by adding missing extra checks.
      
      Fixes: ae960ee9 ("wifi: mac80211: prevent VLANs on MLDs")
      Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
      Link: https://lore.kernel.org/r/20221214130326.37756-1-nbd@nbd.name
      
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      f216033d
    • Sriram R's avatar
      mac80211: Fix MLO address translation for multiple bss case · fa22b51a
      Sriram R authored
      
      
      When multiple interfaces are present in the local interface
      list, new skb copy is taken before rx processing except for
      the first interface. The address translation happens each
      time only on the original skb since the hdr pointer is not
      updated properly to the newly created skb.
      
      As a result frames start to drop in userspace when address
      based checks or search fails.
      
      Signed-off-by: default avatarSriram R <quic_srirrama@quicinc.com>
      Link: https://lore.kernel.org/r/20221208040050.25922-1-quic_srirrama@quicinc.com
      
      
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      fa22b51a
    • Aloka Dixit's avatar
      wifi: mac80211: reset multiple BSSID options in stop_ap() · 0eb38842
      Aloka Dixit authored
      
      
      Reset multiple BSSID options when all AP related configurations are
      reset in ieee80211_stop_ap().
      
      Stale values result in HWSIM test failures (e.g. p2p_group_cli_invalid),
      if run after 'he_ap_ema'.
      
      Reported-by: default avatarJouni Malinen <j@w1.fi>
      Signed-off-by: default avatarAloka Dixit <quic_alokad@quicinc.com>
      Link: https://lore.kernel.org/r/20221221185616.11514-1-quic_alokad@quicinc.com
      
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      0eb38842
    • Alexander Wetzel's avatar
      wifi: mac80211: Fix iTXQ AMPDU fragmentation handling · 592234e9
      Alexander Wetzel authored
      
      
      mac80211 must not enable aggregation wile transmitting a fragmented
      MPDU. Enforce that for mac80211 internal TX queues (iTXQs).
      
      Reported-by: default avatarkernel test robot <oliver.sang@intel.com>
      Link: https://lore.kernel.org/oe-lkp/202301021738.7cd3e6ae-oliver.sang@intel.com
      
      
      Signed-off-by: default avatarAlexander Wetzel <alexander@wetzel-home.de>
      Link: https://lore.kernel.org/r/20230106223141.98696-1-alexander@wetzel-home.de
      
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      592234e9
    • Alexander Wetzel's avatar
      wifi: mac80211: sdata can be NULL during AMPDU start · 69403bad
      Alexander Wetzel authored
      
      
      ieee80211_tx_ba_session_handle_start() may get NULL for sdata when a
      deauthentication is ongoing.
      
      Here a trace triggering the race with the hostapd test
      multi_ap_fronthaul_on_ap:
      
      (gdb) list *drv_ampdu_action+0x46
      0x8b16 is in drv_ampdu_action (net/mac80211/driver-ops.c:396).
      391             int ret = -EOPNOTSUPP;
      392
      393             might_sleep();
      394
      395             sdata = get_bss_sdata(sdata);
      396             if (!check_sdata_in_driver(sdata))
      397                     return -EIO;
      398
      399             trace_drv_ampdu_action(local, sdata, params);
      400
      
      wlan0: moving STA 02:00:00:00:03:00 to state 3
      wlan0: associated
      wlan0: deauthenticating from 02:00:00:00:03:00 by local choice (Reason: 3=DEAUTH_LEAVING)
      wlan3.sta1: Open BA session requested for 02:00:00:00:00:00 tid 0
      wlan3.sta1: dropped frame to 02:00:00:00:00:00 (unauthorized port)
      wlan0: moving STA 02:00:00:00:03:00 to state 2
      wlan0: moving STA 02:00:00:00:03:00 to state 1
      wlan0: Removed STA 02:00:00:00:03:00
      wlan0: Destroyed STA 02:00:00:00:03:00
      BUG: unable to handle page fault for address: fffffffffffffb48
      PGD 11814067 P4D 11814067 PUD 11816067 PMD 0
      Oops: 0000 [#1] PREEMPT SMP PTI
      CPU: 2 PID: 133397 Comm: kworker/u16:1 Tainted: G        W          6.1.0-rc8-wt+ #59
      Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.0-20220807_005459-localhost 04/01/2014
      Workqueue: phy3 ieee80211_ba_session_work [mac80211]
      RIP: 0010:drv_ampdu_action+0x46/0x280 [mac80211]
      Code: 53 48 89 f3 be 89 01 00 00 e8 d6 43 bf ef e8 21 46 81 f0 83 bb a0 1b 00 00 04 75 0e 48 8b 9b 28 0d 00 00 48 81 eb 10 0e 00 00 <8b> 93 58 09 00 00 f6 c2 20 0f 84 3b 01 00 00 8b 05 dd 1c 0f 00 85
      RSP: 0018:ffffc900025ebd20 EFLAGS: 00010287
      RAX: 0000000000000000 RBX: fffffffffffff1f0 RCX: ffff888102228240
      RDX: 0000000080000000 RSI: ffffffff918c5de0 RDI: ffff888102228b40
      RBP: ffffc900025ebd40 R08: 0000000000000001 R09: 0000000000000001
      R10: 0000000000000001 R11: 0000000000000000 R12: ffff888118c18ec0
      R13: 0000000000000000 R14: ffffc900025ebd60 R15: ffff888018b7efb8
      FS:  0000000000000000(0000) GS:ffff88817a600000(0000) knlGS:0000000000000000
      CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
      CR2: fffffffffffffb48 CR3: 0000000105228006 CR4: 0000000000170ee0
      Call Trace:
       <TASK>
       ieee80211_tx_ba_session_handle_start+0xd0/0x190 [mac80211]
       ieee80211_ba_session_work+0xff/0x2e0 [mac80211]
       process_one_work+0x29f/0x620
       worker_thread+0x4d/0x3d0
       ? process_one_work+0x620/0x620
       kthread+0xfb/0x120
       ? kthread_complete_and_exit+0x20/0x20
       ret_from_fork+0x22/0x30
       </TASK>
      
      Signed-off-by: default avatarAlexander Wetzel <alexander@wetzel-home.de>
      Link: https://lore.kernel.org/r/20221230121850.218810-2-alexander@wetzel-home.de
      
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      69403bad
    • Alexander Wetzel's avatar
      wifi: mac80211: Proper mark iTXQs for resumption · 4444bc21
      Alexander Wetzel authored
      
      
      When a running wake_tx_queue() call is aborted due to a hw queue stop
      the corresponding iTXQ is not always correctly marked for resumption:
      wake_tx_push_queue() can stops the queue run without setting
      @IEEE80211_TXQ_STOP_NETIF_TX.
      
      Without the @IEEE80211_TXQ_STOP_NETIF_TX flag __ieee80211_wake_txqs()
      will not schedule a new queue run and remaining frames in the queue get
      stuck till another frame is queued to it.
      
      Fix the issue for all drivers - also the ones with custom wake_tx_queue
      callbacks - by moving the logic into ieee80211_tx_dequeue() and drop the
      redundant @txqs_stopped.
      
      @IEEE80211_TXQ_STOP_NETIF_TX is also renamed to @IEEE80211_TXQ_DIRTY to
      better describe the flag.
      
      Fixes: c850e31f ("wifi: mac80211: add internal handler for wake_tx_queue")
      Signed-off-by: default avatarAlexander Wetzel <alexander@wetzel-home.de>
      Link: https://lore.kernel.org/r/20221230121850.218810-1-alexander@wetzel-home.de
      
      
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      4444bc21
    • Felix Fietkau's avatar
      wifi: mac80211: fix initialization of rx->link and rx->link_sta · e66b7920
      Felix Fietkau authored
      
      
      There are some codepaths that do not initialize rx->link_sta properly. This
      causes a crash in places which assume that rx->link_sta is valid if rx->sta
      is valid.
      One known instance is triggered by __ieee80211_rx_h_amsdu being called from
      fast-rx. It results in a crash like this one:
      
       BUG: kernel NULL pointer dereference, address: 00000000000000a8
       #PF: supervisor write access in kernel mode
       #PF: error_code(0x0002) - not-present page PGD 0 P4D 0
       Oops: 0002 [#1] PREEMPT SMP PTI
       CPU: 1 PID: 506 Comm: mt76-usb-rx phy Tainted: G            E      6.1.0-debian64x+1.7 #3
       Hardware name: ZOTAC ZBOX-ID92/ZBOX-IQ01/ZBOX-ID92/ZBOX-IQ01, BIOS B220P007 05/21/2014
       RIP: 0010:ieee80211_deliver_skb+0x62/0x1f0 [mac80211]
       Code: 00 48 89 04 24 e8 9e a7 c3 df 89 c0 48 03 1c c5 a0 ea 39 a1 4c 01 6b 08 48 ff 03 48
             83 7d 28 00 74 11 48 8b 45 30 48 63 55 44 <48> 83 84 d0 a8 00 00 00 01 41 8b 86 c0
             11 00 00 8d 50 fd 83 fa 01
       RSP: 0018:ffff999040803b10 EFLAGS: 00010286
       RAX: 0000000000000000 RBX: ffffb9903f496480 RCX: 0000000000000000
       RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
       RBP: ffff999040803ce0 R08: 0000000000000000 R09: 0000000000000000
       R10: 0000000000000000 R11: 0000000000000000 R12: ffff8d21828ac900
       R13: 000000000000004a R14: ffff8d2198ed89c0 R15: ffff8d2198ed8000
       FS:  0000000000000000(0000) GS:ffff8d24afe80000(0000) knlGS:0000000000000000
       CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
       CR2: 00000000000000a8 CR3: 0000000429810002 CR4: 00000000001706e0
       Call Trace:
        <TASK>
        __ieee80211_rx_h_amsdu+0x1b5/0x240 [mac80211]
        ? ieee80211_prepare_and_rx_handle+0xcdd/0x1320 [mac80211]
        ? __local_bh_enable_ip+0x3b/0xa0
        ieee80211_prepare_and_rx_handle+0xcdd/0x1320 [mac80211]
        ? prepare_transfer+0x109/0x1a0 [xhci_hcd]
        ieee80211_rx_list+0xa80/0xda0 [mac80211]
        mt76_rx_complete+0x207/0x2e0 [mt76]
        mt76_rx_poll_complete+0x357/0x5a0 [mt76]
        mt76u_rx_worker+0x4f5/0x600 [mt76_usb]
        ? mt76_get_min_avg_rssi+0x140/0x140 [mt76]
        __mt76_worker_fn+0x50/0x80 [mt76]
        kthread+0xed/0x120
        ? kthread_complete_and_exit+0x20/0x20
        ret_from_fork+0x22/0x30
      
      Since the initialization of rx->link and rx->link_sta is rather convoluted
      and duplicated in many places, clean it up by using a helper function to
      set it.
      
      Fixes: ccdde7c7 ("wifi: mac80211: properly implement MLO key handling")
      Fixes: b320d6c4 ("wifi: mac80211: use correct rx link_sta instead of default")
      Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
      Link: https://lore.kernel.org/r/20221230200747.19040-1-nbd@nbd.name
      
      
      [remove unnecessary rx->sta->sta.mlo check]
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      e66b7920
  11. Dec 25, 2022
    • Steven Rostedt (Google)'s avatar
      treewide: Convert del_timer*() to timer_shutdown*() · 292a089d
      Steven Rostedt (Google) authored
      Due to several bugs caused by timers being re-armed after they are
      shutdown and just before they are freed, a new state of timers was added
      called "shutdown".  After a timer is set to this state, then it can no
      longer be re-armed.
      
      The following script was run to find all the trivial locations where
      del_timer() or del_timer_sync() is called in the same function that the
      object holding the timer is freed.  It also ignores any locations where
      the timer->function is modified between the del_timer*() and the free(),
      as that is not considered a "trivial" case.
      
      This was created by using a coccinelle script and the following
      commands:
      
          $ cat timer.cocci
          @@
          expression ptr, slab;
          identifier timer, rfield;
          @@
          (
          -       del_timer(&ptr->timer);
          +       timer_shutdown(&ptr->timer);
          |
          -       del_timer_sync(&ptr->timer);
          +       timer_shutdown_sync(&ptr->timer);
          )
            ... when strict
                when != ptr->timer
          (
                  kfree_rcu(ptr, rfield);
          |
                  kmem_cache_free(slab, ptr);
          |
                  kfree(ptr);
          )
      
          $ spatch timer.cocci . > /tmp/t.patch
          $ patch -p1 < /tmp/t.patch
      
      Link: https://lore.kernel.org/lkml/20221123201306.823305113@linutronix.de/
      
      
      Signed-off-by: default avatarSteven Rostedt (Google) <rostedt@goodmis.org>
      Acked-by: Pavel Machek <pavel@ucw.cz> [ LED ]
      Acked-by: Kalle Valo <kvalo@kernel.org> [ wireless ]
      Acked-by: Paolo Abeni <pabeni@redhat.com> [ networking ]
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      292a089d
  12. Dec 01, 2022
Loading