1. 31 10月, 2008 1 次提交
  2. 17 10月, 2008 1 次提交
  3. 16 10月, 2008 2 次提交
  4. 14 10月, 2008 2 次提交
  5. 25 9月, 2008 2 次提交
  6. 23 9月, 2008 1 次提交
  7. 27 8月, 2008 1 次提交
    • E
      wan: Missing capability checks in sbni_ioctl() · f2455eb1
      Eugene Teo 提交于
      There are missing capability checks in the following code:
      
      1300 static int
      1301 sbni_ioctl( struct net_device  *dev,  struct ifreq  *ifr,  int  cmd)
      1302 {
      [...]
      1319     case  SIOCDEVRESINSTATS :
      1320         if( current->euid != 0 )    /* root only */
      1321             return  -EPERM;
      [...]
      1336     case  SIOCDEVSHWSTATE :
      1337         if( current->euid != 0 )    /* root only */
      1338             return  -EPERM;
      [...]
      1357     case  SIOCDEVENSLAVE :
      1358         if( current->euid != 0 )    /* root only */
      1359             return  -EPERM;
      [...]
      1372     case  SIOCDEVEMANSIPATE :
      1373         if( current->euid != 0 )    /* root only */
      1374             return  -EPERM;
      
      Here's my proposed fix:
      
      Missing capability checks.
      Signed-off-by: NEugene Teo <eugeneteo@kernel.sg>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      f2455eb1
  8. 07 8月, 2008 1 次提交
  9. 24 7月, 2008 11 次提交
  10. 22 7月, 2008 1 次提交
  11. 21 7月, 2008 1 次提交
    • A
      tty: Ldisc revamp · a352def2
      Alan Cox 提交于
      Move the line disciplines towards a conventional ->ops arrangement.  For
      the moment the actual 'tty_ldisc' struct in the tty is kept as part of
      the tty struct but this can then be changed if it turns out that when it
      all settles down we want to refcount ldiscs separately to the tty.
      
      Pull the ldisc code out of /proc and put it with our ldisc code.
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      a352def2
  12. 15 7月, 2008 1 次提交
  13. 04 7月, 2008 3 次提交
  14. 27 6月, 2008 1 次提交
  15. 22 5月, 2008 2 次提交
  16. 19 5月, 2008 1 次提交
  17. 12 5月, 2008 1 次提交
    • D
      syncppp: Fix crashes. · 4951704b
      David S. Miller 提交于
      The syncppp layer wants a mid-level netdev private pointer.
      
      It was using netdev->priv but that only worked by accident,
      and thus this scheme was broken when the device private
      allocation strategy changed.
      
      Add a proper mid-layer private pointer for uses like this,
      update syncppp and all users, and remove the HDLC_PPP broken
      tag from drivers/net/wan/Kconfig
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      4951704b
  18. 04 5月, 2008 1 次提交
  19. 30 4月, 2008 2 次提交
  20. 25 4月, 2008 2 次提交
  21. 12 4月, 2008 1 次提交
    • K
      Mark generic HDLC + PPP as broken. · 16a79142
      Krzysztof Halasa 提交于
      PPP support in generic HDLC in Linux 2.6.25 is broken and will cause
      a kernel panic when a device configured in PPP mode is activated.
      
      It will be replaced by new PPP implementation after Linux 2.6.25 is
      released.
      
      This affects only PPP support in generic HDLC (mostly Hitachi SCA
      and SCA-II based drivers, wanxl, and few others). Standalone syncppp
      and async PPP support are not affected.
      Signed-off-by: NKrzysztof Halasa <khc@pm.waw.pl>
      Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
      16a79142
  22. 29 3月, 2008 1 次提交