openafs/src/libafsauthent
Jeffrey Altman 13c71ca0d3 lanahelper-library-20040305
* at my request Asanka Hearth of MIT ripped out all of the code used
  the compute the Netbios Name of the SMB Server and the mountRoot
  and constructed one commonly used library called lanahelper.lib.
  This library is now constructed in the WINNT/afsd directory and
  used throughout the tree.  At least we now have consistency if
  nothing else.
2004-03-05 23:09:18 +00:00
..
.cvsignore add-cvsignores-to-project-20010910 2001-09-10 21:14:01 +00:00
afsauthent.def windows-updates-20011121 2001-11-21 06:44:28 +00:00
afsauthent.exp Initial IBM OpenAFS 1.0 tree 2000-11-04 02:13:13 +00:00
afsauthent.rc windows-file-versioning-20030619 2003-06-19 20:00:31 +00:00
Makefile.in makefiles-cflag-cleanup-20030111 2003-01-11 07:33:52 +00:00
mapfile Standardize License information 2000-11-04 10:01:08 +00:00
NTMakefile lanahelper-library-20040305 2004-03-05 23:09:18 +00:00
README Standardize License information 2000-11-04 10:01:08 +00:00

Copyright 2000, International Business Machines Corporation and others.
All Rights Reserved.

This software has been released under the terms of the IBM Public
License.  For details, see the LICENSE file in the top-level source
directory or online at http://www.openafs.org/dl/license10.html

This library is to be used by multithreaded programs that need to access
the kauth and auth library interfaces.  The primary method used to obtain
thread safety in these libraries is to lock/unlock a recursive global
mutex at the entry point of every public function in the library.

However, not all public functions are made thread safe since not all 
functions are needed by the NT admin work.  In particular, there are
many public functions that make up decendants of the functions
we wish to use that weren't modified, since these functions will be 
protected by the locking at a higher level function.

To prevent people from using non-thread safe functions, platform 
specific methods are used to limit the functions exported by the 
library (using def files under NT and mapfiles under Solaris).  For 
most non-exported functions, it should be trivial to make the 
transformation to thread safe by simply locking/ unlocking the 
global mutex at the beginning/end of the function.