1. 02 7月, 2013 1 次提交
    • N
      net/sunrpc: xpt_auth_cache should be ignored when expired. · 7715cde8
      NeilBrown 提交于
      commit d202cce8
          sunrpc: never return expired entries in sunrpc_cache_lookup
      
      moved the 'entry is expired' test from cache_check to
      sunrpc_cache_lookup, so that it happened early and some races could
      safely be ignored.
      
      However the ip_map (in svcauth_unix.c) has a separate single-item
      cache which allows quick lookup without locking.  An entry in this
      case would not be subject to the expiry test and so could be used
      well after it has expired.
      
      This is not normally a big problem because the first time it is used
      after it is expired an up-call will be scheduled to refresh the entry
      (if it hasn't been scheduled already) and the old entry will then
      be invalidated.  So on the second attempt to use it after it has
      expired, ip_map_cached_get will discard it.
      
      However that is subtle and not ideal, so replace the "!cache_valid"
      test with "cache_is_expired".
      In doing this we drop the test on the "CACHE_VALID" bit.  This is
      unnecessary as the bit is never cleared, and an entry will only
      be cached if the bit is set.
      Reported-by: NBodo Stroesser <bstroesser@ts.fujitsu.com>
      Signed-off-by: NNeilBrown <neilb@suse.de>
      Signed-off-by: NJ. Bruce Fields <bfields@redhat.com>
      7715cde8
  2. 29 5月, 2013 1 次提交
  3. 15 2月, 2013 2 次提交
  4. 13 2月, 2013 6 次提交
    • E
      sunrpc: Properly decode kuids and kgids in RPC_AUTH_UNIX credentials · f025adf1
      Eric W. Biederman 提交于
      When reading kuids from the wire map them into the initial user
      namespace, and validate the mapping succeded.
      
      When reading kgids from the wire map them into the initial user
      namespace, and validate the mapping succeded.
      
      Cc: "J. Bruce Fields" <bfields@fieldses.org>
      Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
      Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      f025adf1
    • E
      sunrpc: Properly encode kuids and kgids in auth.unix.gid rpc pipe upcalls. · 25da9263
      Eric W. Biederman 提交于
      When a new rpc connection is established with an in-kernel server, the
      traffic passes through svc_process_common, and svc_set_client and down
      into svcauth_unix_set_client if it is of type RPC_AUTH_NULL or
      RPC_AUTH_UNIX.
      
      svcauth_unix_set_client then looks at the uid of the credential we
      have assigned to the incomming client and if we don't have the groups
      already cached makes an upcall to get a list of groups that the client
      can use.
      
      The upcall encodes send a rpc message to user space encoding the uid
      of the user whose groups we want to know.  Encode the kuid of the user
      in the initial user namespace as nfs mounts can only happen today in
      the initial user namespace.
      
      When a reply to an upcall comes in convert interpret the uid and gid values
      from the rpc pipe as uids and gids in the initial user namespace and convert
      them into kuids and kgids before processing them further.
      
      When reading proc files listing the uid to gid list cache convert the
      kuids and kgids from into uids and gids the initial user namespace.  As we are
      displaying server internal details it makes sense to display these values
      from the servers perspective.
      
      Cc: "J. Bruce Fields" <bfields@fieldses.org>
      Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
      Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      25da9263
    • E
      sunrpc: Hash uids by first computing their value in the initial userns · 9e469e30
      Eric W. Biederman 提交于
      In svcauth_unix introduce a helper unix_gid_hash as otherwise the
      expresion to generate the hash value is just too long.
      
      Cc: "J. Bruce Fields" <bfields@fieldses.org>
      Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
      Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      9e469e30
    • E
      sunrpc: Use uid_eq and gid_eq where appropriate · 0b4d51b0
      Eric W. Biederman 提交于
      When comparing uids use uid_eq instead of ==.
      When comparing gids use gid_eq instead of ==.
      
      And unfortunate cost of type safety.
      
      Cc: "J. Bruce Fields" <bfields@fieldses.org>
      Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
      Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      0b4d51b0
    • E
      sunrpc: Use kuid_t and kgid_t where appropriate · 7eaf040b
      Eric W. Biederman 提交于
      Convert variables that store uids and gids to be of type
      kuid_t and kgid_t instead of type uid_t and gid_t.
      
      Cc: "J. Bruce Fields" <bfields@fieldses.org>
      Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
      Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      7eaf040b
    • E
      sunrpc: Use userns friendly constants. · bf37f794
      Eric W. Biederman 提交于
      Instead of (uid_t)0 use GLOBAL_ROOT_UID.
      Instead of (gid_t)0 use GLOBAL_ROOT_GID.
      Instead of (uid_t)-1 use INVALID_UID
      Instead of (gid_t)-1 use INVALID_GID.
      Instead of NOGROUP use INVALID_GID.
      
      Cc: "J. Bruce Fields" <bfields@fieldses.org>
      Cc: Trond Myklebust <Trond.Myklebust@netapp.com>
      Signed-off-by: N"Eric W. Biederman" <ebiederm@xmission.com>
      bf37f794
  5. 05 2月, 2013 1 次提交
  6. 19 7月, 2012 1 次提交
    • E
      ipv6: add ipv6_addr_hash() helper · ddbe5032
      Eric Dumazet 提交于
      Introduce ipv6_addr_hash() helper doing a XOR on all bits
      of an IPv6 address, with an optimized x86_64 version.
      
      Use it in flow dissector, as suggested by Andrew McGregor,
      to reduce hash collision probabilities in fq_codel (and other
      users of flow dissector)
      
      Use it in ip6_tunnel.c and use more bit shuffling, as suggested
      by David Laight, as existing hash was ignoring most of them.
      
      Use it in sunrpc and use more bit shuffling, using hash_32().
      
      Use it in net/ipv6/addrconf.c, using hash_32() as well.
      
      As a cleanup, use it in net/ipv4/tcp_metrics.c
      Signed-off-by: NEric Dumazet <edumazet@google.com>
      Reported-by: NAndrew McGregor <andrewmcgr@gmail.com>
      Cc: Dave Taht <dave.taht@gmail.com>
      Cc: Tom Herbert <therbert@google.com>
      Cc: David Laight <David.Laight@ACULAB.COM>
      Cc: Joe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ddbe5032
  7. 01 6月, 2012 2 次提交
  8. 03 5月, 2012 1 次提交
  9. 12 4月, 2012 1 次提交
  10. 04 2月, 2012 1 次提交
  11. 01 2月, 2012 3 次提交
  12. 12 12月, 2011 1 次提交
  13. 23 11月, 2011 1 次提交
  14. 16 7月, 2011 2 次提交
  15. 10 3月, 2011 1 次提交
    • J
      svcrpc: fix bad argument in unix_domain_find · 352b5d13
      J. Bruce Fields 提交于
      "After merging the nfsd tree, today's linux-next build (powerpc
      ppc64_defconfig) produced this warning:
      
      net/sunrpc/svcauth_unix.c: In function 'unix_domain_find':
      net/sunrpc/svcauth_unix.c:58: warning: passing argument 1 of
      +'svcauth_unix_domain_release' from incompatible pointer type
      net/sunrpc/svcauth_unix.c:41: note: expected 'struct auth_domain *' but
      argument
      +is of type 'struct unix_domain *'
      
      Introduced by commit 8b3e07ac ("svcrpc: fix rare race on unix_domain
      creation")."
      Reported-by: NStephen Rothwell <sfr@canb.auug.org.au>
      Signed-off-by: NJ. Bruce Fields <bfields@redhat.com>
      352b5d13
  16. 09 3月, 2011 1 次提交
  17. 05 1月, 2011 2 次提交
  18. 18 12月, 2010 1 次提交
  19. 12 10月, 2010 1 次提交
  20. 27 9月, 2010 5 次提交
  21. 22 9月, 2010 1 次提交
  22. 30 3月, 2010 1 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  23. 03 3月, 2010 1 次提交
  24. 27 1月, 2010 1 次提交
  25. 30 11月, 2009 1 次提交