LICENSE MIT
prevent the afs client service from crashing when fs newcell is executed
(cherry picked from commit 02a80e05a73d9df50fbd427e30ca862706afcbc1)
LICENSE MIT
move afslogon.dll, afscpcc.exe and afs_cpa.cpl to
\Program Files\OpenAFS\Client\Program in order to get them out
of the %windir% tree
(cherry picked from commit 3d0ebe1f7841ac6ca9db593b587a13d85a950ac5)
LICENSE MIT
Conditionalize error translation on the existence of EDQUOT not
on platform macros
(cherry picked from commit 9ce814aa99b6877843f38c7fdd8fde09cb2a743c)
LICENSE IPL10
based on work from shadow@dementia.org
since the tasklist lock and rcu stuff can/will be de-exported, and we don't
need it anyway...
(cherry picked from commit c5afa335a8ffb86cf17c32173eb0e1c26500dd80)
LICENSE MIT
avoid a deadlock during server probes initiated by the ipaddr change
daemon thread.
(missed a case in DELTA windows-ipaddr-change-server-deadlock-20080106)
(cherry picked from commit 162cb95707f739170ab4a025a801a430c86ae70a)
LICENSE MIT
The algorithms that were used to produce a Netbios name were broken.
The name that was produced when the hostname was too long was in fact
longer than the maximum permitted netbios name.
Also, the "NetbiosName" value was not used as a suffix when the loopback
adapter was not installed. The hardcoded string "AFS" was used instead.
(cherry picked from commit 2542c5e07f52c89f25f290153f0b4669076ae654)
LICENSE IPL10
FIXES 83890
try again to do something sensible so we don't default wrong
(cherry picked from commit 5a93678e3943fa2c71d51f25f84b4efd5f3700e6)
LICENSE MIT
Cell names are published as share names. As a result they are searched
for as part of the Dfs Referral evaluation. If share "foo" can not be
reached, the CIFS client will fallback to searching for "fo" as well.
Since the freelance client automatically adds a symlink for prefixes
of the cell name, this results in both "foo" and "fo" being added to
the freelance root.afs volume. This patch prevents that negative side
effect.
(cherry picked from commit 36bdf1ccd859fb0039d8ae9abd04f9eea08d704d)
LICENSE IPL10
panic log decoder from Jason. Still needs some work for Leopard but we should
be able to make a go of this
(cherry picked from commit 711dc57c7fa053efa58c02df8788da1a2c7889bf)
LICENSE IPL10
attempt to provide dkms support.
this does work on my fc8 test host. it may not work in all cases.
(cherry picked from commit 7dc71d1154294cdc5f5aba4c3e58a00972318960)
LICENSE MIT
There are circumstances where a volume object is being accessed and the
volume is marked indicating that the volume location information is out
of date but where it is also pointless and perhaps dangerous to block
waiting for the rpc to complete. One example is when processing the
cmdebug requests. If we know that we are not going to use the volume
object to contact a server, then we can now set the CM_GETVOL_FLAG_NO_RESET
flag.
(cherry picked from commit d32156e5c1fb36994650754a11379df6ccc94909)
LICENSE MIT
when moving up in the directory tree we search the recorded fid list to
find a matching fid that we have already crossed. we must also reset
the fid count based upon what we discover.
(cherry picked from commit 16a90b2f8dfe875991bca0dee516c531fcc3aeee)
LICENSE IPL10
support sprc, sparc64, ppc, ppc64, s390, s390x. we should be able to cope with
all these. if not, fix it.
(cherry picked from commit ef6fc588bcab9a59e54050899937407be962b074)
LICENSE IPL10
FIXES 75101
give an option to not enforce the dotted principal check. document it.
(cherry picked from commit 98a68f9b021a06d056fb3b97681b9cfc04873d55)
LICENSE IPL10
create fsync glock and cond before we initialize volume package. oops?
(cherry picked from commit 0e8adf69538638b8caa56d9b1fa72beba74734bd)
LICENSE IPL10
add option to addsite to allow adding a site where there is already a release-
equivalent volume resident, where thus we don't want to mark unreleased
(possible by dumping an existing RO and restoring with -readonly at the
new site)
add ability to vos clone to a readonly or backup with the correct ID and name
add ability when restoring a RW to a new site to leave the volume at the old
site intact
all changes are internal to vos and can be used with any OpenAFS from 2006
or later (supporting changes in namei to not create volumes with bad parent
id went in in December 2005)
(cherry picked from commit e1c4e77d13122c2bb66d532ffd9dfc2e75318c04)
LICENSE IPL10
FIXES 46937
based on comments from jhutz@cmu.edu; runnign thread in the ticket
(cherry picked from commit 22c059a9138be33eeeed910badcac3ebfeea24b5)
LICENSE BSD
Document the 2TB volume and partition limits and the -abortthreshold flag
to the AFS fileserver.
(cherry picked from commit efba39ead059458d222f923db83c660f23c20b80)
LICENSE MIT
The path ioctl operations have several issues:
(1) the specified path for "fs examine, whereis, whichcell, flush" and so
always has the follow symlinks and mount points semantics. This makes
it impossible to determine what the FID of a symlink or mount point is.
(2) "fs examine" out is not the result of a single pioctl operation but is
actually the combined output of half a dozen operations. Path evaluation
is an expensive operation. It would be faster if the caller could
evaluate the FID first and then perform all of the rest of the operations
by specifying the FID instead of the path.
(3) fs output reports all objects as files. By adding a GetFileType
pioctl more informative output can be provided that indicates what
type of object the path evaluates to.
(4) the Windows fs command includes a number of commands that do nothing
but exist only because the Unix cache manager supports them.
This delta adds a new extendible data structure cm_ioctl_query_opts_t which
can be optionally specified with pioctls that do not already require
input data. The first two fields of this structure are 'literal' and
'fid'. The literal field is used to indicate whether the last component
of the path should be evaluated following symlinks and mount points.
The fid field permits a fid to be specified.
A new GetFileType pioctl has been added. The type of objects are now
output.
A new "-literal" option is available for "fs examine, flush, whereis, and
whichcell.
Unimplemented fs commands have been removed.
(cherry picked from commit 88e915d8f976898e75a6afe8bc7b6d7c33b8a121)
LICENSE BSD
Add -ctime and -cellservdb options to the cmdebug man page and improve
example host names and SEE ALSO references.
(cherry picked from commit 110d5702ea51ce43fca6a5962d9ef8a0ec56d6eb)
LICENSE MIT
Nname() is used to concatenate two strings and is frequently used with
the first string being the name of the executable perhaps with a full
path. The static buffer specified is too small for a full path and
there was no protection against writing beyond the end of it.
(cherry picked from commit d5811091995b78d65e891b134aa0ad6955bbc30c)
LICENSE MIT
Apply the desired "follow symlinks/mountpoints" semantics to the single
component non-UNC case.
(cherry picked from commit 84989e6584e3808ae3f1959330b267feff2661f6)
LICENSE MIT
Add -cellservdb option to the cmdebug command.
This option will retrieve the volume location database information
for all cells known to the cache manager and output the data in the
format required by the CellServDB file.
This functionality is supported by the UNIX cache managers and
Windows cache managers 1.5.31 and later.
(cherry picked from commit b3fe9727b3e775348561bcbe0cf0c14cff82e597)
LICENSE MIT
Add support for RXAFS_GetCellServDB. Implemented by generalizing
RXAFS_GetCellByNum and special casing the index values to do the
right thing.
Conditionalize grabbing the callp->lock in the callback functions.
The race conditions in rx have long since been fixed and the potential
for deadlocks are too great.
Add a new flag CM_FLAG_NOPROBE for use in calls to cm_GetCell. When
set the newly discovered servers will not be immediately probed. Useful
when setting tokens, setting server preferences, or responding to cmdebug
callbacks.
(cherry picked from commit ae9dc9ad4ddd8313d24e457faf48bc15ccd2c86c)
LICENSE MIT
1. prevent stopping the smb_Listeners due to an ip addr change when the
LANA is determined either by registry assignment or loopback detection
2. add synchronization logic to prevent smb_Listener restarts prior to
smb_Listener thread stoppage
3. no longer permit panics from smb_Listener threads
4. move the probe logic from cm_IPAddrDaemon thread to the cm_Daemon
thread in order to avoid the loss of ip addr change events. If an
adapter stops and restarts fast enough there might not be anything
for us to do.
(cherry picked from commit 8b82cbeef760992c6e3d27f9f6ea1f4e0bb559ab)
LICENSE IPL10
FIXES 80463
Include linux/key-type.h in osi_groups.c, if it exists. Fix
do_sync_read test for recent kbuild (maybe break it for [some older 2.6]).
(cherry picked from commit 8569f67aee8ee0de26259397818ab3af69f18007)
LICENSE MIT
if the smb_Listener receives NRC_NAMERR (name deleted) it must be because
an smb shutdown has occurred. do not panic.
(cherry picked from commit a1b7be4ac3f073a2d64f46649e54a1ff99d2567b)