OpenAFS Master Repository branch, openafs-stable-1_6_x, updated. openafs-stable-1_6_0b-10-ge475ca5

Gerrit Code Review gerrit@openafs.org
Sat, 10 Sep 2011 16:36:48 -0700 (PDT)


The following commit has been merged in the openafs-stable-1_6_x branch:
commit e475ca5410dcb79b26c9c5e79ccdb9d9f2357a86
Author: Chaz Chandler <clc31@inbox.com>
Date:   Tue Jul 20 10:25:20 2010 -0400

    afsio: rewrite using libafscp
    
    afsio is a utility for file transfer to and from AFS file space
    without the help of the AFS client/cache manager.  Using libafscp,
    this (partially rewritten) version of afsio is able to accomplish
    (1) authenticated access to an AFS path or FID (an existing
    KerberosV ticket is required), (2) fall back on unauthenticated
    ("anonymous") access if authentication (token acquisition) fails,
    and (3) work independtly of the AFS cache manager (afsd need not
    be running, though CellServDB and ThisCell are currently required).
    
    issues:
    1) libvldbint and libafsint are not compiled pthreaded. we link in
    what we need. this should be changed when we are all-pthreaded.
    2) venus is not a pthreaded-directory otherwise. same deal:
    in an all-pthreaded universe, undo the bodge that we do here.
    3) venus is not an all-krb5 directory either. slight ick.
    
    Reviewed-on: http://gerrit.openafs.org/4381
    Tested-by: BuildBot <buildbot@rampaginggeek.com>
    Reviewed-by: Derrick Brashear <shadow@dementia.org>
    (cherry picked from commit 94d44d59e3d18f1d450e495a55fdd927e7584948)
    
    Change-Id: Ibe140c58970f1b4f2f9e7f016e55d770f8cdcc09
    Reviewed-on: http://gerrit.openafs.org/5383
    Reviewed-by: Derrick Brashear <shadow@dementix.org>
    Tested-by: Derrick Brashear <shadow@dementix.org>

 Makefile.in                    |    2 +-
 NTMakefile                     |   11 +-
 acinclude.m4                   |    3 +-
 src/WINNT/afsd/NTMakefile      |   24 +-
 src/config/afsconfig-windows.h |    3 +
 src/libafscp/Makefile.in       |    3 +
 src/libafscp/NTMakefile        |    1 +
 src/libafscp/afscp_dir.c       |    4 +
 src/libafscp/afscp_fid.c       |    4 +
 src/libafscp/afscp_roken.c     |  243 ++++++
 src/libafscp/afscp_search.h    |   57 ++
 src/libafscp/afscp_volume.c    |    4 +
 src/venus/Makefile.in          |   54 +-
 src/venus/afsio.c              | 1817 ++++++++++++++--------------------------
 14 files changed, 1037 insertions(+), 1193 deletions(-)

-- 
OpenAFS Master Repository