1. 05 11月, 2017 10 次提交
  2. 01 11月, 2017 6 次提交
  3. 28 10月, 2017 1 次提交
  4. 27 10月, 2017 3 次提交
  5. 26 10月, 2017 1 次提交
  6. 25 10月, 2017 1 次提交
  7. 18 10月, 2017 1 次提交
  8. 15 10月, 2017 1 次提交
  9. 01 10月, 2017 5 次提交
  10. 20 9月, 2017 3 次提交
  11. 29 8月, 2017 1 次提交
    • F
      net: dsa: Don't dereference dst->cpu_dp->netdev · c7848399
      Florian Fainelli 提交于
      If we do not have a master network device attached dst->cpu_dp will be
      NULL and accessing cpu_dp->netdev will create a trace similar to the one
      below. The correct check is on dst->cpu_dp period.
      
      [    1.004650] DSA: switch 0 0 parsed
      [    1.008078] Unable to handle kernel NULL pointer dereference at
      virtual address 00000010
      [    1.016195] pgd = c0003000
      [    1.018918] [00000010] *pgd=80000000004003, *pmd=00000000
      [    1.024349] Internal error: Oops: 206 [#1] SMP ARM
      [    1.029157] Modules linked in:
      [    1.032228] CPU: 0 PID: 1 Comm: swapper/0 Not tainted
      4.13.0-rc6-00071-g45b45afab9bd-dirty #7
      [    1.040772] Hardware name: Broadcom STB (Flattened Device Tree)
      [    1.046704] task: ee08f840 task.stack: ee090000
      [    1.051258] PC is at dsa_register_switch+0x5e0/0x9dc
      [    1.056234] LR is at dsa_register_switch+0x5d0/0x9dc
      [    1.061211] pc : [<c08fb28c>]    lr : [<c08fb27c>]    psr: 60000213
      [    1.067491] sp : ee091d88  ip : 00000000  fp : 0000000c
      [    1.072728] r10: 00000000  r9 : 00000001  r8 : ee208010
      [    1.077965] r7 : ee2b57b0  r6 : ee2b5780  r5 : 00000000  r4 :
      ee208e0c
      [    1.084506] r3 : 00000000  r2 : 00040d00  r1 : 2d1b2000  r0 :
      00000016
      [    1.091050] Flags: nZCv  IRQs on  FIQs on  Mode SVC_32  ISA ARM
      Segment user
      [    1.098199] Control: 32c5387d  Table: 00003000  DAC: fffffffd
      [    1.103957] Process swapper/0 (pid: 1, stack limit = 0xee090210)
      Reported-by: NDan Carpenter <dan.carpenter@oracle.com>
      Fixes: 6d3c8c0d ("net: dsa: Remove master_netdev and use dst->cpu_dp->netdev")
      Signed-off-by: NFlorian Fainelli <f.fainelli@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      c7848399
  12. 08 8月, 2017 2 次提交
  13. 25 7月, 2017 1 次提交
  14. 16 6月, 2017 1 次提交
  15. 14 6月, 2017 2 次提交
  16. 05 6月, 2017 1 次提交
    • F
      net: dsa: Fix stale cpu_switch reference after unbind then bind · b07ac989
      Florian Fainelli 提交于
      Commit 9520ed8f ("net: dsa: use cpu_switch instead of ds[0]")
      replaced the use of dst->ds[0] with dst->cpu_switch since that is
      functionally equivalent, however, we can now run into an use after free
      scenario after unbinding then rebinding the switch driver.
      
      The use after free happens because we do correctly initialize
      dst->cpu_switch the first time we probe in dsa_cpu_parse(), then we
      unbind the driver: dsa_dst_unapply() is called, and we rebind again.
      dst->cpu_switch now points to a freed "ds" structure, and so when we
      finally dereference it in dsa_cpu_port_ethtool_setup(), we oops.
      
      To fix this, simply set dst->cpu_switch to NULL in dsa_dst_unapply()
      which guarantees that we always correctly re-assign dst->cpu_switch in
      dsa_cpu_parse().
      
      Fixes: 9520ed8f ("net: dsa: use cpu_switch instead of ds[0]")
      Signed-off-by: NFlorian Fainelli <f.fainelli@gmail.com>
      Reviewed-by: NVivien Didelot <vivien.didelot@savoirfairelinux.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b07ac989