Commit Graph

4131 Commits

Author SHA1 Message Date
Jeffrey Altman
a186b0d65c windows-hex-dump-20070919
remove the broken percent quoting from OutputDebugHexDump as it is
not required.  We never use the resulting string as a print format string.
2007-09-19 22:27:53 +00:00
Jeffrey Altman
feab12b929 windows-version-info-20070919
FIXES 71397

Many of the OpenAFS binaries that are installed on end user machines
did not have version information.  This is problematic as it is impossible
to determine which version of a binary the crash report was filed against
when a report is received by Microsoft Windows Error Reporting service.
2007-09-19 18:55:55 +00:00
Jeffrey Altman
b8abf04a45 windows-vnovnode-while-file-in-use-20070918
Discovered another case where VNOVNODE errors were not being handled.
If there are dirty buffers and a VNOVNODE error is received while
writing the buffer, the buffer would be left in the dirty buffers queue.
This caused a couple problems:
(1) any attempt to flush the file, volume, or cache would fail because
    there were unflushed dirty buffers that could not be flushed.
(2) shutdown of the service would hang because the buffers could not
    be flushed.

In addition, while a VNOVNODE error would result in the cm_scache_t
being marked CM_SCACHEFLAG_DELETED, this state was not being checked
at the SMB layer.  As a result, if a smb_fid_t was allocated and it
referenced the deleted cm_scache_t, the SMB operations would continue
to be processed and report success even if the actual file or directory
no longer existed.

We now clear the dirty state on buffers which cannot be written due to
VNOVNODE errors.  We also check the cm_scache_t for deletion prior to
use whenever a smb_fid_t is looked up.  If the cm_scache_t is deleted,
the smb_fid_t is closed and the error CM_ERROR_NOSUCHFILE is returned
for files or CM_ERROR_NOSUCHPATH for directories.
2007-09-18 17:57:31 +00:00
Jeffrey Altman
a47f4bacd8 windows-afs-config-vista-uac-vs2005-20070918
merge the manifests for vs 2005
2007-09-18 07:36:04 +00:00
Jeffrey Altman
9bf29bbe1e windows-afs-config-vista-uac-20070918
Mark afs_config.exe via a manifest with
requestedExecutionLevel = HighestAvailable

This will ensure that when Vista UAC is active, that a member of the
Administrators group must run the AFS Control Panel with Administrators
privileges.
2007-09-18 07:13:08 +00:00
Jeffrey Altman
8ba598cd84 windows-cl1310-manifests-20070918
add support for manifests to .NET 2003 builds
2007-09-18 07:07:16 +00:00
Jeffrey Altman
eae26ab6b2 windows-nsis-20070918
fix error in NTMakefile that used the CL_1310 configuration for the
VS 2005 compiler

force RequestExecutionLevel to admin for Vista
2007-09-18 07:04:02 +00:00
Jeffrey Altman
70fa2d2499 windows-down-servers-20070913
Do not assign a new downTime to a server that is already down.
Doing so breaks the logic to preserve callback validity until the
server comes back up.
2007-09-13 18:58:00 +00:00
Jeffrey Altman
b06335911b windows-afsmaxpath-20070912
ensure that all path stack buffers are of size AFSMAXPATH
2007-09-13 02:41:07 +00:00
Jeffrey Hutzelman
f15a9a2788 dafs-shutdown-state-fix-20070912
clean up the dafs shutdown code to not read bogus info into the id
2007-09-12 19:25:53 +00:00
Derrick Brashear
a6d7cacfdc aklog-kimpersonate-20070912
inline kimpersonate support, to make testing easier.
2007-09-12 19:09:42 +00:00
Jeffrey Altman
5647c133e9 windows-dir-bplus-shortnames-20070912
When a file name does not conform to 8.3 notation, an 8.3 notation
alias is generated for it.  This short name form must be searchable
in the B+ tree.

This commit adds a longname field to the data node which is used both
to identify the real name associated with the short name as well as
whether or not the short name is in fact an alias.   Being able to
determine whether or not a data node is an alias will be important
when we support using the B+ tree for directory enumeration.

For insertion, if the name does not conform to 8.3 notation, a second
entry is inserted into the B+ tree using the shortname as the key and
the longname stored in the data.

For deletion, we lookup the data node for the provided key.  If there
is a longname we remove the longname entry first and then the shortname
entry.  If the key is a longname, we lookup the data node so we can
acquire the FID and then use that to compute the shortname.  We then
remove both the shortname and longname entries from the B+ tree.
2007-09-12 18:28:00 +00:00
Jeffrey Altman
40090977d2 windows-getcell-deadlock-20070911
don't hold the cm_scache_t mutex across calls to cm_GetCell() since
cm_GetCell() can block in an RPC call.  If that cm_scache_t must be
accessed to revoke a callback, it can result in a deadlock.
2007-09-11 17:11:54 +00:00
Chaskiel M Grundman
c22f945bb7 namei-protect-against-extra-files-20070911
if someone is monkeying in the filesystem, sometimes they shoot themselves. save them if they renamed foo to foo.bak (where foo is a full 64 bits)
2007-09-11 16:37:01 +00:00
Jeffrey Altman
bf6c13352a windows-prefetch-executables-20070911
avoid prefetch race condition in CreateX functions

do not permit reference underflow when ending background prefetch ops
2007-09-11 06:02:42 +00:00
Derrick Brashear
049c95d74c namei-fsync-less-20070910
remove sync() call from Windows build
2007-09-10 22:54:25 +00:00
Jeffrey Altman
3b7188b326 windows-prefetch-executables-20070910
This code defines a new service parameter "PrefetchExecutableExtensions"
of type REG_MULTI_SZ.  By default it is undefined and does nothing.  If
it is defined, files that match the extensions will be prefetched in
their entirety.

All of the prefetch functions now pay attention to the length parameters.
Previously, length parameters were specified on some functions in the
chain but they were ignored.  The reality was that the chunksize was
used regardless of what was indicated.

Prefetching is still optional.  If the prefetch fails during the initial
attempt you lose.  Otherwise, as many buffers as are required to satisfy
the requested prefetch length will be requested from the file server in
chunksize units.  If buffers have already been acquired, they are skipped
during the prefetch operation.
2007-09-10 20:06:58 +00:00
Jeffrey Altman
22da0dd5f8 windows-largeinteger-20070910
Fix the function type so that assignment of return values are
properly applied.

Add missing comparison routines.
2007-09-10 20:00:55 +00:00
Jeffrey Altman
7a6e406b80 windows-callbacks-20070909
when suspending only clear callbacks for servers that are in an up state.
if they were in a down state, then we couldn't send the clear callbacks
message but more importantly, we need to leave the callback info current
because the callbacks should not be cleared until the server is once again
reachable.
2007-09-10 05:53:48 +00:00
Jeffrey Altman
36414528ad windows-wix-20070909
make the service display name consistent with the NSIS installer.
2007-09-10 04:33:44 +00:00
Jeffrey Altman
4913dd6b78 windows-nsis-20070909
do not link object files twice
2007-09-10 04:30:34 +00:00
Rainer Toebbicke
dbbd59495b namei-fsync-less-20070907
FIXES 30632

we call fsync() too much. call it less, and fsync in the background
2007-09-07 05:02:09 +00:00
Derrick Brashear
b3e385fc10 consolidate-cellservdb-20070905
step 1. one place.
step 2 is coming: fix the scripts to update it when we do a release
2007-09-05 22:49:30 +00:00
Jeffrey Hutzelman
edaa34d3a0 dafs-savestatefe-avoid-overflow-20070902
The problem is that cb_stateSaveFE() overflows an iovec array
on its stack. When it returns, the PC is loaded with garbage and the
process crashes.
2007-09-03 04:58:40 +00:00
Jeffrey Altman
a8eddfb0f5 windows-64bit-ms2mit-20070902
add ms2mit support for 64-bit windows
2007-09-02 17:36:23 +00:00
Jeffrey Altman
6270294d49 windows-win64-kfw-20070902
leashw32.dll has been ported to win64 as leashw64.dll
2007-09-02 17:21:25 +00:00
Jim Rees
7cbd3a320a obsd-rm-pinstall-20070831
skip pinstall
2007-08-31 18:22:11 +00:00
Jeffrey Altman
8056e9347a dafs-commit-updatelist-change-20070831
actually save the changed value
2007-08-31 15:30:27 +00:00
Jeffrey Altman
cd7ac781bc windows-afscreds-win64-20070830
disable krb4 and ms2mit for win64
2007-08-31 05:02:23 +00:00
Jeffrey Altman
084ade0a98 windows-afsd-dirop-20070830
Do not attempt to obtain a write lock on a directory
if we already know that we aren't going to perform any
local directory updates.

Add the CM_ERROR_BPLUS_NOMATCH error which has the same
meaning as CM_ERROR_NOSUCHFILE except that it indicates
that we came to that conclusion as the result of a bplus
search.  This provides us the ability to short circuit
additional directory searches since we know the answer
is final.
2007-08-31 03:55:53 +00:00
Asanka Herath
d8db0aa8eb windows-wix-20070830
permit instloop.exe to be extraced to Client/Programs/instloop.exe
from the installer by using "msiexec /a".
2007-08-31 03:26:13 +00:00
Jeffrey Altman
ad8a1cc216 windows-64bit-afskfw-20070829
Disable the use of krb524, leash, and ms2mit (because it depends on leash)
for 64-bit builds.  We will need to implement our own replacement for the
ms2mit functionality.
2007-08-29 22:51:35 +00:00
Jeffrey Altman
0d81b9662e windows-wix-64bit-aklog-20070829
enable the installation of aklog.exe and asetkey.exe on 64-bit
windows.
2007-08-29 07:53:51 +00:00
Jeffrey Altman
d62316facd windows-64bit-aklog-no-krb4-20070829
disable krb4 and krb524 functionality in 64-bit aklog because there is
no support in 64-bit kfw.
2007-08-29 07:45:12 +00:00
Jeffrey Altman
20914ba284 windows-nim-afs-file-ccache-20070829
make the afs network identity provider compatible with FILE:
credential caches.  this is mostly of importance to 64-bit
Windows users since there is no CCAPI implementation for
64-bit KFW.
2007-08-29 06:31:03 +00:00
Jeffrey Altman
cad4d1137b windows-64bit-nim-no-krb524-20070828
do not load krb524.dll on 64-bit windows
2007-08-28 22:22:53 +00:00
Jeffrey Altman
1c264430ff windows-bplus-disable-20070828
In preparation for 1.5.24, disable B+tree support by default.
It can be enabled with the "BPlusTrees" registry parameter.
2007-08-28 18:48:49 +00:00
Jeffrey Altman
43d5267be5 windows-wix-amd64-nim-provider-20070828
Add network identity manager afs provider for amd64
2007-08-28 18:30:08 +00:00
Jeffrey Altman
822ad3eb72 windows-amd64-20070828
add amd64 build dependencies
2007-08-28 17:59:48 +00:00
Jeffrey Altman
3eb4ef6301 windows-nim-amd64-20070828
Add support for 64-bit Windows.
2007-08-28 17:53:26 +00:00
Jeffrey Altman
ac7471cc33 windows-bplus-20070826
add more DEBUG_BTREE debugging code

in placeEntry() protect against slot equal to zero

fix compareKeys() to only return -1, 0, or 1.
2007-08-27 01:10:15 +00:00
Jeffrey Altman
cd0a515e9f windows-recursion-fix-20070826
protect against a null pointer dereference
2007-08-27 01:04:09 +00:00
Jeffrey Altman
8f9b810bf0 windows-bplus-tree-20070825
== ! =

fix the return code in cm_Rename()
2007-08-25 17:55:07 +00:00
Jeffrey Altman
c8bf408ced windows-bplus-tree-20070823
Windows uses case-insensitive file name pattern matching
but AFS is a case sensitive file system.  The AFS3 directory
format is block based, uses network byte order and
includes a hash table for fast case sensitive lookups.
This causes several problems for the Windows AFS client.
(1) Traversing the directory blocks is cpu expensive
(2) A hash table miss does not indicate that the desired
    entry does not exist.
(3) Determining whether a non-ambiguous inexact match or
    the entry does not exist requires a linear traversal
    of the entire directory.
These issues often result in 100% CPU utilization.

These issues are addressed by building a modified B+ tree for
each directory and then using the B+ tree for searches.

Further improvements can be made by using the B+ tree leaf
nodes for directory enumeration.
2007-08-24 04:19:18 +00:00
Jeffrey Altman
e5ec3ad4fc windows-recursion-fix-20070823
for . and .. find the last time we saw the fid in the list
instead of moving back a fixed count since the parent might
be a symlink or a mount point or both
2007-08-23 21:42:55 +00:00
Jeffrey Altman
c675454e7f windows-makedir-uninitialized-var-20070823
scp must be initialized to NULL to prevent improper evaluation
2007-08-23 17:50:58 +00:00
Jeffrey Altman
985a2e34d6 windows-volstat-log-20070823
must save the log string when it comes from a buffer on the stack
otherwise garbage is logged in afsd.log
2007-08-23 17:47:46 +00:00
Jeffrey Altman
1727d4928f windows-smb-max-path-20070823
the actual max path is 260 not 256
2007-08-23 17:44:43 +00:00
Derrick Brashear
5cae22ea3a checkhost-use-reentrant-list-traversal-20070823
rather than making a copy of the whole hostlist and holding every host, hold
what we need, the _r (not really reentrant) version.
2007-08-23 17:28:54 +00:00
Derrick Brashear
314b3abaff linux-nfs-pag-handling-20070822
don't mishandle pag argument when passed in from e.g. knfs

don't make keyring pag for nfs clients
2007-08-22 20:37:10 +00:00
Jeffrey Altman
10c6021847 windows-fix-recursion-detection-20070822
handle symlinks to absolute paths
2007-08-22 17:09:53 +00:00
Jeffrey Altman
d467431115 windows-newfiles-20070822
add place holders for the B+ tree source files.
2007-08-22 16:59:16 +00:00
Derrick Brashear
c31cfea03d linux-module-error-handling-20070821
be more careful about what we call when, and clean up after ourselves
2007-08-22 03:16:26 +00:00
Derrick Brashear
34bbb13160 nfstrans-updates-20070821
FIXES 1480

fix the knfs error from the v/c/o pioctl changes
2007-08-22 03:12:13 +00:00
Derrick Brashear
2a9ef007a3 linux-modparam-269-updates-20070821
be consistent on 2.6.9 about which MODULE parm family used
2007-08-21 22:27:02 +00:00
Jeffrey Altman
8dd2300a78 windows-afskfw-20070821
return required value that was missing
2007-08-21 09:42:53 +00:00
Jeffrey Altman
d0f62da484 viced-remove-asserts-20070821
remove asserts testing the number of alternate interfaces.
2007-08-21 09:27:37 +00:00
Jeffrey Altman
e9607dcbc7 windows-smb-20070820
correct location of brace due to mis-application of patch
2007-08-20 19:47:05 +00:00
Derrick Brashear
d0a92c7bde find-dcache-just-hold-the-lock-slightly-longer-20070820
we go out of our way to hold xdcache to protect indexTimes elsewhere... there's
no reason to drop it here just before this...
2007-08-20 18:50:16 +00:00
Jeffrey Altman
da79b76e7d tviced-windows-20070820
build serialize_state.c
2007-08-20 18:35:59 +00:00
Alejandro R. Sedeño
5eff5f4ee8 krb4-64bit-tf-kth-or-mit-20070820
based on his patch for mit kerberos
2007-08-20 18:26:15 +00:00
Jeffrey Altman
4a9d15a2e4 windows-fix-recursion-detection-20070819
the recursion detection code did not take "." and ".." into account.
2007-08-20 02:00:48 +00:00
Jeffrey Altman
d71d37bad8 windows-fs_utils-20070819
update prototype for util_GetInt32 for consistency with src/utils/vosparse.c
2007-08-20 01:06:31 +00:00
Russ Allbery
a6fe83d9a6 no-kseal-20070819
Don't build or install kseal by default.  It's a debugging tool with very
limited utility.
2007-08-19 23:04:31 +00:00
Derrick Brashear
25ace7c2c7 aix-dont-use-root-vfs-for-anything-20070815
the cache may not be in /; we basically never need rootvfs
2007-08-16 04:51:06 +00:00
Jeffrey Altman
b20488de08 windows-fs-utils-prototypes-20070813
use ANSI prototypes and function declarations
2007-08-13 20:20:31 +00:00
Jeffrey Altman
35f91f1203 windows-service-manager-20070812
provide the windows service manager with shutdown hints in addition
to startup hints
2007-08-13 03:52:21 +00:00
Jeffrey Altman
a9e7bedcc9 viced-dafs-20070812
include viced_prototypes.h
2007-08-13 03:25:33 +00:00
Jeffrey Altman
c677b79931 windows-remove-is5-20070812
remove last trace of InstallShield5 from build rules
2007-08-13 03:11:55 +00:00
Jeffrey Altman
58d5f38b10 pts-20070811
remove SUPERGROUPS condition for compilation of pts commands:
  Interactive, Quit, Source, Sleep

fix the assignment of 'source' to permit it to function

rename functions to avoid conflicts with Win32 API on Windows

replace bcopy and bzero with memcpy and memset to permit compilation
on Windows

replace ubik_Call(xxx) with ubik_xxx() (testpt.c)

add -DSUPERGROUPS and map.c to NTMakefile
2007-08-12 00:39:33 +00:00
Jeffrey Altman
e7ff4185a5 windows-adjustable-block-size-20070810
New registry value "BlockSize" can be used to specify an alternative
block size.  The default is 4K.  A larger blocksize will be needed if
you want to support a 6TB cache.

Also extend the service startup timeout hint to two minutes to give
the AFS client service more time to startup successfully when the
cache is really large.
2007-08-10 21:38:20 +00:00
Jeffrey Altman
7a042f3ce4 windows-wix-20070810
add a separate description string for the 32-bit afs shell extension
2007-08-10 13:36:24 +00:00
Derrick Brashear
493cad12aa viced-cleanup-head-20070810
fix demand attach rwlock code on macos, fix host tracking code everywhere

only applies to head and 1.5
2007-08-10 05:11:35 +00:00
Jeffrey Altman
25a64a7eb2 windows-aklog-20070809
correct an error message
2007-08-09 23:53:07 +00:00
Rainer Toebbicke
6811175f37 64bit-ticket-file-20070809
fix the ticket files we write on 64 bit
2007-08-09 15:56:51 +00:00
Jeffrey Altman
377689b39a windows-dirty-buffer-optimization-20070808
when storing dirty buffers only store the bytes that are dirty

increase the default chunksize from 128KB to 1MB

remove OVERLAPPED field from cm_buf_t.  It was unused.

add a dummy pointer in order to ensure data structure compatibility
between the checked and release builds.
2007-08-09 06:33:17 +00:00
Jeffrey Altman
d51feff4b2 viced-hash-20070808
(1) fixes a bug that could cause a 'host' structure to not be removed
from the global host list if the 'host' did not possess an interface
list. This would happen with older AFS clients that do not support the
WhoAreYou family of RPCs. Windows clients older than 1.3.80 and old
Transarc UNIX clients.

(2) fixes a bug which could result in ViceLog being called with an
uninitialized 'hoststr' buffer as a parameter.

(3) ensures that only addresses known to belong to the 'host' are
added to the address hash table.  The list of addresses provided by
the client are stored as alternates and are only used when searching
for a client that is no longer accessible on the primary address.
These addresses are not stored in the address hash table within
initInterfaceAddr_r().

The addresses provided by the client should not be added to the hash
table because they have not been verified as belonging to the 'host'
that provided them.  The contents of the list may in fact be completely
unreliable.  Consider the existing UNIX clients that generate the list
at startup and never alter it even after the client has migrated to a
different network.  If two client's both claim the same address,
lookups by address may fail to find the correct one.

a. The client list might contain private address ranges which
are likely to be re-used by many clients allocated addresses
by a NAT.

b. The client list will not include any public addresses that
are hidden by a NAT.

c. Private address ranges that are exposed to the server will
be obtained from the rx connections that use them.

d. Lists provided by the client are not necessarily truthful.
Many existing clients (UNIX) do not refresh the IP address
list as the actual assigned addresses change. The end result
is that they report the initial address list for the lifetime
of the process. In other words, a client can report addresses
that they are in fact not using. Adding these addresses to
the host interface list without verification is not only
pointless, it is downright dangerous.

e. The reported addresses do not include port numbers and
guessing that the port number is 7001 does not work when
port mapping devices such as NATs or some VPNs are in
use.

(4) improves logging to ensure that all references to a 'host' structure
report both a memory address and the IP address/port. this will avoid
confusion *if* more than one 'host' structure is assigned the same
primary address.

(5) logs the UUID along with the client addresses when initializing the
host's interface list. (level 125)

(6) saves memory by using a smaller structure for the UUID hash table
2007-08-08 17:30:20 +00:00
Rainer Toebbicke
f099df38b2 viced-multi-probe-addr-20070808
FIXES 67355

MultiProbeAlternateAddress_r badly indexes the list of interfaces for
clients with multiple IP interfaces, resulting in peers with IP
address 0 port 0 to be created. This in turn results in rxi_sendmsg
errors (on systems where caught early, as on Linux, on others it may
pass unnoticed).
2007-08-08 16:53:17 +00:00
Jeffrey Altman
8c69510d92 windows-afsd-uninit-vars-20070806
FIXES 67126

ensure the connp is set to NULL in case of error
2007-08-07 05:00:06 +00:00
Asanka Herath
9353e122a3 windows-local-directory-updates-smb-20070802
The windows cache manager has suffered from poor performance as a result
of Create, Rename, and Delete operations because they invalidate the
contents of the directory pages in the cache thereby forcing them to be
reloaded from the file server.   As the directory size increases, the clock
time necessary to perform the reload increases.

This delta adds support for parsing and updating the AFS3 directory buffers
to cm_dir.c.  It then uses that functionality to perform local updates to
the directory buffers whenever the following conditions are met:

 1. the data version on the directory as a result of the change
    was incremented by one.

 2. all of the directory buffers required for the update are in
    the cache.

If these conditions are not met, the directory is reloaded from the file
server.
2007-08-02 22:05:39 +00:00
Jeffrey Altman
ac5346c370 windows-no-more-infinite-recursion-20070802
FIXES 15855

In cm_NameI, keep track of what fids were crossed when evaluating the
path.  If we discover a loop return a CM_ERROR_TOO_MANY_SYMLINKS error.

This resolves the complaint that when infinite loops are hit in the afs
name space the afsd_service.exe process uses 100% of the CPU.
2007-08-02 21:57:38 +00:00
Asanka Herath
c4047f6cb5 windows-local-directory-updates-20070802
The windows cache manager has suffered from poor performance as a result
of Create, Rename, and Delete operations because they invalidate the
contents of the directory pages in the cache thereby forcing them to be
reloaded from the file server.   As the directory size increases, the clock
time necessary to perform the reload increases.

This delta adds support for parsing and updating the AFS3 directory buffers
to cm_dir.c.  It then uses that functionality to perform local updates to
the directory buffers whenever the following conditions are met:

 1. the data version on the directory as a result of the change
    was incremented by one.

 2. all of the directory buffers required for the update are in
    the cache.

If these conditions are not met, the directory is reloaded from the file
server.
2007-08-02 21:52:54 +00:00
Jeffrey Altman
10b76dffa0 windows-do-not-expire-cbs-when-servers-are-down-20070802
if all of the servers are down when a callback is due to expire
delay the expiration until at least one server is available.
this prevents some applications that are running when the CM
is off the network from failing if their pages are swapped out.
2007-08-02 21:44:54 +00:00
Jeffrey Altman
4d75b4758e windows-libafsrpc-20070802
use bg-fcrypt in libafsrpc.dll which is used by the CM
2007-08-02 06:20:08 +00:00
Jeffrey Altman
4b8db9f211 rxkad-bg-fcrypt-unbreak-windows-20070731
i (derrick) broke everything. fix it.
2007-07-31 23:19:15 +00:00
Derrick Brashear
ece19eefbe viced-avoid-tying-up-all-threads-20070730
FIXES 19461

implement a thread quota.
2007-07-30 14:17:27 +00:00
Derrick Brashear
a608cd2e24 darwin-avoid-fsref-panic-maybe-20070728
maybe this works.
2007-07-28 15:31:44 +00:00
Jeffrey Altman
840ad12eb3 windows-fs-20070727
return error when GetCell fails
2007-07-28 04:03:58 +00:00
Jeffrey Altman
0ba1a62757 windows-rdrtimeout-20070727
RDRtimeout is seconds.  need to convert to milliseconds for comparison
2007-07-28 03:50:23 +00:00
Jeffrey Altman
d7d12d7c9b windows-client_config-20070727
FIXES 66302

change text of error message to indicate that the user is not a member
of the AFS Administrators Group instead of not being a Windows administrator.
2007-07-27 16:40:44 +00:00
Derrick Brashear
ed13fac911 md5inum-md5-clobbers-input-20070726 2007-07-26 18:04:21 +00:00
Jeffrey Altman
8ba66b7ff5 windows-afsd-ubik-20070722
not currently in use but replace ubik_Call(FOO,...) with ubik_FOO(...)
2007-07-23 00:09:06 +00:00
Derrick Brashear
16b32c1345 volser-directoryless-incremental-dumps-20070719
add an rpc, give vos a switch, allow incrementals which do not include directory objects
2007-07-19 19:51:55 +00:00
Jeffrey Altman
960ac913a4 windows-afs-svrmgr-20070719
uninitialized variable removal
2007-07-19 16:55:44 +00:00
Derrick Brashear
58d6f0b42a viced-assert-less-20070719
in don't assert for every silly thing
2007-07-19 16:14:20 +00:00
Derrick Brashear
91fee8a699 viced-no-nulluuid-20070719
a host with a zero uuid has no uuid support
2007-07-19 16:09:50 +00:00
Derrick Brashear
c010052699 kill-more-ubikcall-20070719
tested more ubik call death, so, byebye
2007-07-19 16:00:20 +00:00
Derrick Brashear
982f455deb vos-validate-dumpfile-20070719
based on code from jon nials
validate a dumpfile as being complete (look for end of dump signature)
2007-07-19 15:55:39 +00:00
Cesar Garcia
ef76695bb9 libadmin-deubikcall-cleanup-20070718
remove bogus extra arg
2007-07-18 15:21:12 +00:00
Jeffrey Altman
397cd0c3b8 windows-pioctl-20070718
cm_dir.h depends on cm_buf.h
2007-07-18 14:02:59 +00:00