openafs.git
19 years agouninitialized-variable-20040504
Jeffrey Altman [Wed, 5 May 2004 04:24:57 +0000]
uninitialized-variable-20040504

Do not assign reference to declaration in cases which declaration is
not assigned a value.

19 years agoafskfw-library-20040504
Jeffrey Altman [Tue, 4 May 2004 23:48:15 +0000]
afskfw-library-20040504

Migrate KFW functionality from src/WINNT/client_creds/afskfw* into a
a new library to be shared by afslogon.dll, afscreds.exe

Add KFW support to afslogon.dll

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================

Migrate KFW functionality from src/WINNT/client_creds/afskfw* into a
a new library to be shared by afslogon.dll, afscreds.exe

Move IP Address Change Monitor into new source files.

Add smbname support to the KFW set token functionality in afscreds.exe

19 years agodangling-comments-are-bad-20040504
Nathan Neulinger [Tue, 4 May 2004 22:38:15 +0000]
dangling-comments-are-bad-20040504

Fix an unterminated comment..  Oops!

19 years agofun-with-a-profiler-20040504
Nickolai Zeldovich [Tue, 4 May 2004 10:36:01 +0000]
fun-with-a-profiler-20040504

fun with a profiler:  afs_RemoveVCB accounts for 20% of the total AFS
client CPU utilization, even under a moderate vcache turnover rate of
less than 10 new vcache's per second.

introduce a hash on the afs_cbr objects to speed this up.  if you are
seeing your AFS client being CPU-bound, e.g. on your web server, you
may want to try this.

19 years agolinux-handle-short-reads-gracefully-20040504
Nathan Neulinger [Tue, 4 May 2004 10:31:55 +0000]
linux-handle-short-reads-gracefully-20040504

break out of the read loop with EIO if we've reached EOF,
rather than looping forever hoping the file will grow.

19 years agoadd-missing-uafs-prototypes-20040504
Nickolai Zeldovich [Tue, 4 May 2004 10:31:11 +0000]
add-missing-uafs-prototypes-20040504

add missing prototypes for uafs_seek

19 years agocsc_policy_logon_updates-20040503
Jeffrey Altman [Tue, 4 May 2004 05:05:25 +0000]
csc_policy_logon_updates-20040503

From Andrei: CSC Policies

Updates to afslogon.dll: attempt lowercased name on authentication failure
if LSA provided name is all upper-case.

19 years agonsis-server-updates-20040501
Robert S Murawski IV [Sun, 2 May 2004 23:09:22 +0000]
nsis-server-updates-20040501

This implements:

1) Does not delete server config data on uninstall
2) If an upgrade or a re-install with existing server config data, will not auto-start the Server Configuration Wizard.
3) Checks for RPC keys on install.  (I believe you only need one because not all of the keys are required for AFS to work.  However, it might require TCP or UDP based RPC)

Still to do:
1) Server data should be destroyed if user answers "No" to "Do you want to keep your existing configuration data?"
2) If installing when existing server configuration data is present, populate the client cell to be the contents of the "ThisCell" file.

19 years agoobsd35-20040427
Jim Rees [Tue, 27 Apr 2004 20:43:04 +0000]
obsd35-20040427

get ready for OpenBSD 3.5 (due May 1)

19 years agofixes-from-andrei-20040427
Jeffrey Altman [Tue, 27 Apr 2004 19:58:48 +0000]
fixes-from-andrei-20040427

Cleanup the makefile to remove unnecessary defaultlib restrictions

Remove the DST fix added to address Rodney's bug with the timezone being
off by an hour on files one hour after the time change.  Still need to
identify the real cause.

Finally fix once and for all the afsd_service.exe shutdown error.
The ServiceHandler must be declared with the WINAPI calling convention
because it returns a value.

19 years agorelease-vs-debug-flags-20040427
Jeffrey Altman [Tue, 27 Apr 2004 19:54:28 +0000]
release-vs-debug-flags-20040427

Move a few debug only compiler flags into a debug only build section of
the makefile

19 years agono-mfc-20040427
Jeffrey Altman [Tue, 27 Apr 2004 02:26:01 +0000]
no-mfc-20040427

remove the reference to afx.h.  there is no reason to bring in MFC
for lanahelper.lib.  (thanks to Andrei)

19 years agocheck-if-compiler-supports-__FUNCTION__-macro-20040426
Nickolai Zeldovich [Mon, 26 Apr 2004 22:39:33 +0000]
check-if-compiler-supports-__FUNCTION__-macro-20040426

Add an autoconf check to see if the compiler supports __FUNCTION__ and __LINE__

20 years agokfw-upds-20040422
Jeffrey Altman [Fri, 23 Apr 2004 04:43:24 +0000]
kfw-upds-20040422

(1) remove the tkt_lifetime table which is no longer used

(2) improve the handling of token to k5 principal mapping

(3) assign the REALM to the token client name if the realm of
    the cell does not match the realm of the user

20 years agoren-msgbox-logfile-20040422
Jeffrey Altman [Fri, 23 Apr 2004 04:38:54 +0000]
ren-msgbox-logfile-20040422

Several fixes:

(1) the log file afsd_logp should not be referenced in the smb modules
    instead the smb_logp should be used

(2) Properly define the dummy_MessageBox function as _stdcall

(3) When afsd_service.exe fails due to a Network Error (IP address change)
    display a MessageBox to the end user

(4) Fix "rename foo foo" to not generate a "destination file exists" error
    (Thanks to asanka)

20 years agolinux26-more-updates-20040420
Chas Williams [Wed, 21 Apr 2004 03:20:21 +0000]
linux26-more-updates-20040420

FIXES 4027

        . osi_cred now uses struct group_info
        . the big kernel lock has been moved from the fs generic code
          for some of the operations in 2.6
        . 2.6 now just uses iput() and hooks the appropriate routines
        . the dummy inode list handling should be clearer

20 years agokaanswertoolong-20040420
Jeffrey Altman [Tue, 20 Apr 2004 15:56:16 +0000]
kaanswertoolong-20040420

when determining whether or not the ticket len is too long for the
receiver to accept we want to compare against the actual ticket length
and not MAXKTCTICKETLEN which is what is used when sizeof(ktc_ticketAnswer)
is used for comparison.

20 years agomore-memory-leak-fixes-20040418
Nickolai Zeldovich [Mon, 19 Apr 2004 06:43:58 +0000]
more-memory-leak-fixes-20040418

Another memory leak plugged; thanks to Jeffrey Altman for noticing it.

20 years agomemory-leak-fixes-20040417
Nickolai Zeldovich [Sun, 18 Apr 2004 07:13:47 +0000]
memory-leak-fixes-20040417

Fix some memory leaks.

20 years agomore-uafs-support-20040417
Nickolai Zeldovich [Sun, 18 Apr 2004 07:10:33 +0000]
more-uafs-support-20040417

Some more minor uafs fixes

20 years agoadd-fs-exa-file-support-20040417
Nickolai Zeldovich [Sun, 18 Apr 2004 07:09:49 +0000]
add-fs-exa-file-support-20040417

Make "fs exa filename" print out the FID for the filename, not just
the status for the volume containing that file.

20 years agouninitialized-20040417
Jeffrey Altman [Sun, 18 Apr 2004 04:16:14 +0000]
uninitialized-20040417

ngroups was uninitialized.  This produced a run-time warning even
though its value was never used in subsequent calls.  set to 0.

20 years agomore-memory-scrubbing-20040415
Nickolai Zeldovich [Fri, 16 Apr 2004 07:26:11 +0000]
more-memory-scrubbing-20040415

Scrub the callBacks array just in case, as we're exposing some
arbitrary kernel stack contents to the user.

20 years agodont-leak-random-kernel-data-20040415
Nickolai Zeldovich [Fri, 16 Apr 2004 05:57:01 +0000]
dont-leak-random-kernel-data-20040415

Zero out data structure being returned to user, so that we don't
send random kernel memory garbage to them.

20 years agomake-uafs-work-a-little-20040415
Nickolai Zeldovich [Fri, 16 Apr 2004 00:49:13 +0000]
make-uafs-work-a-little-20040415

Make UAFS at least a little more likely to work.

20 years agofix-linux-build-20040415
Nickolai Zeldovich [Thu, 15 Apr 2004 23:48:12 +0000]
fix-linux-build-20040415

It's AFS_LRALLOCSIZ, not AFS_LRALLOCSIZE.

20 years agoticket-1241-20040415
Jeffrey Altman [Thu, 15 Apr 2004 22:04:21 +0000]
ticket-1241-20040415

Correct mistaken use of >= when > is appropriate

20 years agontmakefile-20040414
Jeffrey Altman [Thu, 15 Apr 2004 03:23:41 +0000]
ntmakefile-20040414

Fix the makefile to build with vc.net 2003 in a release configuration.
/GZ and /Ox are mutually exclusive

20 years agoresource-fix-20040414
Jeffrey Altman [Thu, 15 Apr 2004 03:21:23 +0000]
resource-fix-20040414

There was one more off by one error in the resource file
enumeration preventing the loading of the "Drive" string table entry

20 years agoticket-1241-20040414
Jeffrey Altman [Thu, 15 Apr 2004 00:26:13 +0000]
ticket-1241-20040414

FIXES 1241

Modify buffer allocation to support tokens up to MAXPIOCTLTOKENLEN
(3*sizeof(afs_int32)+MAXKTCTICKETLEN+sizeof(struct ClearToken)+MAXKTCREALMLEN)
in length.

20 years agofileserver-no-longer-asserts-when-read-past-EOF-20040413
Ken Hornstein [Tue, 13 Apr 2004 21:41:11 +0000]
fileserver-no-longer-asserts-when-read-past-EOF-20040413

20 years agouninitialize-20040412
Jeffrey Altman [Tue, 13 Apr 2004 04:47:50 +0000]
uninitialize-20040412

Fix uninitialized use of ltto

20 years agoaklog-20040412
Jeffrey Altman [Tue, 13 Apr 2004 04:06:17 +0000]
aklog-20040412

MIT's aklog.exe imported into the OpenAFS for Windows distribution

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================

MIT's aklog.exe imported into OpenAFS for Windows

20 years agolinux-26-progress-20040412
Chas Williams [Mon, 12 Apr 2004 20:42:19 +0000]
linux-26-progress-20040412

FIXES 4027

if you complain about any of it, you better include a patch, or risk being
severely flamed. very much a work in progress

20 years agomd4-md5-20040408
Jeffrey Altman [Fri, 9 Apr 2004 07:48:22 +0000]
md4-md5-20040408

Integration of Heimdal MD4/MD5 code

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================

Integration of Heimdal's MD4/MD5 code

====================

Integrate Heimdal's MD4/MD5 code

====================

Integrate Heimdal's MD4/MD5 code

====================

Integrate Heimdal's md4/md5 code

====================

Integration of Heimdal's MD4/MD5 code

20 years agoremove-extra-compare-20040408
Jeffrey Altman [Fri, 9 Apr 2004 06:57:39 +0000]
remove-extra-compare-20040408

do not check for i < 2000 and i < MAXKTCTICKETLEN

20 years agocross-realm-obtain-tokens-afscreds-20040408
Jeffrey Altman [Fri, 9 Apr 2004 00:32:03 +0000]
cross-realm-obtain-tokens-afscreds-20040408

If afscreds.exe you can now obtain credentials for cell "foo.com" with
credentials from "user@BAR.COM" when specifying a password.  This is a
first step since if there are already valid credentials for "user@BAR.COM"
the password should not be requested.  That would allow you to obtain
tokens for multiple cells with the same kerberos tgt.

20 years agounitialized-vars-20040408
Jeffrey Altman [Thu, 8 Apr 2004 23:20:39 +0000]
unitialized-vars-20040408

Fix uninitialized pname reference

Rename afs_int32 pname to pnum

20 years agomore-mutex-20040406
Jeffrey Altman [Tue, 6 Apr 2004 23:31:03 +0000]
more-mutex-20040406

Rodney found in his logs  "Event Object Already Exists fid_t" messages.
This lead to another location in the code where problem mutex usage
was missing.  In this case, multiple fid_t structs were created with the
same fid number.

20 years agova_args-20040406
Jeffrey Altman [Tue, 6 Apr 2004 23:26:37 +0000]
va_args-20040406

Who at IBM was stupid enough to believe it is acceptable to
pass a va_args variable into a function without initializing
it with va_start()?  Why would you ever bother to do otherwise?

20 years agodebug-changes-20040406
Jeffrey Altman [Tue, 6 Apr 2004 09:54:54 +0000]
debug-changes-20040406

Add run time checks to the compiler flags when debug

20 years agoi-need-sleep-20040406
Jeffrey Altman [Tue, 6 Apr 2004 09:53:15 +0000]
i-need-sleep-20040406

 * fix uninitialized return variables in smb.c and smb3.c

 * open the osi_log file as early as possible in afsd_init.c

 * create an argv to use for non-service executions

 * add support for \\afs\.cellname for rw volumes

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================

Do not use IsKerberosLogon() it does not always report the right value.

20 years agolinux22-fix-20040405
Chas Williams [Mon, 5 Apr 2004 23:39:51 +0000]
linux22-fix-20040405

FIXES 3909

make linux 2.2 work again

20 years agoafs-release-notes-20040405 openafs-devel-1_3_63
Jeffrey Altman [Mon, 5 Apr 2004 07:32:57 +0000]
afs-release-notes-20040405

release notes as of 1.3.63

20 years agoremove-vnop-dont-umount-fix-entirely-20040405
Derrick Brashear [Mon, 5 Apr 2004 07:26:17 +0000]
remove-vnop-dont-umount-fix-entirely-20040405

circumstantially it doesn't work. /afs/andrew.cmu.edu/usr/shadow/tempdata is a
file and mvstat is 2, so I get EISDIR.

so i'll remove this for now and fix it after the next release.

20 years agodarwin-pageout-limit-to-filesize-20040405
Chaskiel M Grundman [Mon, 5 Apr 2004 07:21:33 +0000]
darwin-pageout-limit-to-filesize-20040405

FIXES 3870

previously we weren't limiting to file size, now we are

20 years agoversion-1-3-6300-20030405
Jeffrey Altman [Mon, 5 Apr 2004 07:00:11 +0000]
version-1-3-6300-20030405

Update version number to 1.3.6300

20 years agopreserve-server-config-20040404
Jeffrey Altman [Mon, 5 Apr 2004 05:26:45 +0000]
preserve-server-config-20040404

Fix the replacedll macro

Comment out the code which deletes the server configuration files
on AFS Server uninstall.  We need to do this to protect existing
volumes if the product must be uninstalled and reinstalled

20 years agofor-rodney-20040404
Jeffrey Altman [Mon, 5 Apr 2004 03:16:11 +0000]
for-rodney-20040404

Formatting changes

Fix the problem with a corrupted cell table when using \\afs\cell-alias

Attempt to fix Rodney's DST problem.  Added a check for tm_isdst to the
computation of the local vs GMT differential.

20 years agoshell-extension-20040403
Jeffrey Altman [Sun, 4 Apr 2004 03:41:07 +0000]
shell-extension-20040403

Fix missing resource strings for Symbolic Links and error strings
(english only)

20 years agonsis-installer-20040403
Jeffrey Altman [Sun, 4 Apr 2004 03:38:49 +0000]
nsis-installer-20040403

Change UpgradeDLL to ReplaceDLL

Fix missing pts.pdb

20 years agoktc_nt-20040403
Jeffrey Altman [Sun, 4 Apr 2004 03:35:47 +0000]
ktc_nt-20040403

Increase TBUFFERSIZE to match increase in KTCMAXTICKETSIZE

20 years agotchar-ptr-20040403
Jeffrey Altman [Sat, 3 Apr 2004 23:33:35 +0000]
tchar-ptr-20040403

TCHAR != TCHAR * but MS VS .NET 2003 does not care.  Why not?

20 years agoupgrade-dll-20040403
Jeffrey Altman [Sat, 3 Apr 2004 23:16:37 +0000]
upgrade-dll-20040403

Apply the upgradedll to .CPL files as well as .DLL

20 years agoafsd-improvements-20040403
Jeffrey Altman [Sat, 3 Apr 2004 20:50:37 +0000]
afsd-improvements-20040403

continuing attempts to identify the cause of the crash after the service
shuts down successfully.  (without success)

Add shutdown logic for SMB and RX daemons.

Fix Global Drive Mapping

Add Global Drive Unmapping

20 years agofix-missing-parameters-20040403
Jeffrey Altman [Sat, 3 Apr 2004 20:47:22 +0000]
fix-missing-parameters-20040403

Fix missing username parameter in calls to Mount Drives

20 years agoresource-20040403
Jeffrey Altman [Sat, 3 Apr 2004 20:45:48 +0000]
resource-20040403

conflict resolution

20 years agoprecedence-20040403
Jeffrey Altman [Sat, 3 Apr 2004 20:43:15 +0000]
precedence-20040403

!= has higher precedence than &

20 years agomore-cleanup-20040403
Jeffrey Altman [Sat, 3 Apr 2004 10:34:16 +0000]
more-cleanup-20040403

removal of unused variables, formatting, comments, etc.

20 years agoeven-larger-ticket-sizes-20040403
Jeffrey Altman [Sat, 3 Apr 2004 08:59:53 +0000]
even-larger-ticket-sizes-20040403

Microsoft Windows 2003 max ticket size is 12000

20 years agoreformatting-20040402
Jeffrey Altman [Sat, 3 Apr 2004 08:17:52 +0000]
reformatting-20040402

Reformatting of the source code.  Minor editorial changes to comments.

20 years agounitialized-return-variable-20040402
Jeffrey Altman [Fri, 2 Apr 2004 17:41:27 +0000]
unitialized-return-variable-20040402

krb5_des_decrypt() does not initialize the return value to 1, failure,
therefore it returns random success (0) values when ticket types of
DES-CBC-MD5 or DES-CBC-MD4 are used because we do not have checksum
functions for those types.

20 years agorestore-original-size-test-20040402
Jeffrey Altman [Fri, 2 Apr 2004 12:12:01 +0000]
restore-original-size-test-20040402

feeling like an idiot.  the original test compared the size of the
ticket field in the ktc_token struct allocated by the app which might
be smaller than the size of the field defined in the library

20 years agosomething-weird-20040402
Jeffrey Altman [Fri, 2 Apr 2004 11:54:35 +0000]
something-weird-20040402

something weird.  the previous commit had diff marks.

20 years agoone-more-try-20040402
Jeffrey Altman [Fri, 2 Apr 2004 11:52:49 +0000]
one-more-try-20040402

much too sleepy.  TBUFFERSIZE for all tbuffers

20 years agolowercase-cell-20040402
Jeffrey Altman [Fri, 2 Apr 2004 11:41:58 +0000]
lowercase-cell-20040402

Lowercase the cell name (from realm name) for which we are
requesting set/get token operations

Return the error code generated by the ktc_SetToken operation and
not one of the many Kerberos operations.

20 years agomaxticketsize-20040402
Jeffrey Altman [Fri, 2 Apr 2004 11:39:13 +0000]
maxticketsize-20040402

When processing pioctl() operations, properly perform the test of
the ticket size to the ktc.ticket field.  The field is of fixed
size MAXKTCTICKETLEN and not some value which is adjusted based
upon the content of the message.

20 years agomaxktcticketlen-20040402
Jeffrey Altman [Fri, 2 Apr 2004 08:46:07 +0000]
maxktcticketlen-20040402

The buffer size for the ktc_SetToken and ktc_GetToken should be of size
MAXKTCTICKETLEN not some arbitrary value.

20 years agowindows-server-config-20040402
Jeffrey Altman [Fri, 2 Apr 2004 07:56:24 +0000]
windows-server-config-20040402

Corrections to the libadmin interface for the Windows Server Configurator

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================

Use lanahelper.lib for the server configurator as well

20 years agomacos-fstab-fun-so-fileserver-works-20040401
Ed Moy [Thu, 1 Apr 2004 23:26:22 +0000]
macos-fstab-fun-so-fileserver-works-20040401

so we use getfsent and actually find vice partitions (and make volinfo work)

20 years agorxkad-increase-token-ticket-sizes-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:53:49 +0000]
rxkad-increase-token-ticket-sizes-20040401

In order to support the large ticket sizes produced by Microsoft
Active Directory and allow the use of raw Kerberos 5 tickets as tokens
increase the size of MAXKTCTICKETLEN and MAXKRB5TICKETLEN to 4096
from 344 and 1024 respectively.

20 years agokill-afsd-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:51:09 +0000]
kill-afsd-20040401

Remember to kill afsd_service.exe when uninstalling.

20 years agosmb-8dot3-pattern-matching-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:49:49 +0000]
smb-8dot3-pattern-matching-20040401

Do not enforce the funky 8dot3 pattern matching rule that the first "."
is special when using long file names.  (you must use "*.*" and not "*")
Instead only enforce it when performing 8dot3 searches.

20 years agoafsd-debugging-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:46:42 +0000]
afsd-debugging-20040401

Add additional debugging during initialization

20 years agoresource-string-loading-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:45:03 +0000]
resource-string-loading-20040401

Fix TaLocale_Initialize to be thread safe

Fix String Resource loading to not generate exceptions which must
be caught by try-catch(...)

20 years agokfw-ak5log-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:43:06 +0000]
kfw-ak5log-20040401

Remove internally defined life_to_time.  Instead rely on version
in rxkad

Use kvno = RXKAD_TKT_TYPE_KERBEROS_V5 when setting tokens.  No longer
use krb524d.

Fix the assignment of the username and instance to place the instance
within the aclient.instance field instead of appended to the aclient.name
field.

20 years agowindows-srvr-cfg-resource-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:38:37 +0000]
windows-srvr-cfg-resource-20040401

Renumber and re-organize all of the String Table entries
to adhere to the rules specified for dynamically loading
them with the tools in WINNT/talocale.  All numbers must
be sequential.  Each block must begin on a mod 16 == 0
value.

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================

Update resource constants to avoid conflicts

20 years agontmakefile-clean-20040401
Jeffrey Altman [Thu, 1 Apr 2004 20:29:38 +0000]
ntmakefile-clean-20040401

Cleanup the *_component_version_number.* files in all directories

20 years agowinnt-dont-display-ibm-legal-message-20040326
Derrick Brashear [Fri, 26 Mar 2004 07:42:21 +0000]
winnt-dont-display-ibm-legal-message-20040326

remove the ibm legal message display at bosserver startup

20 years agowin-xp-sp2-20040325
Jeffrey Altman [Fri, 26 Mar 2004 06:39:23 +0000]
win-xp-sp2-20040325

Support for punching holes in the Win XP SP2 Firewall
for AFS Cache Manager Callbacks

20 years agopam-login-sia-et-al-reorg-20040325
Derrick Brashear [Thu, 25 Mar 2004 23:25:50 +0000]
pam-login-sia-et-al-reorg-20040325

FIXES 3680

rework top makefile to build pam or not depending on acinclude.m4

20 years agoremove-vnop-dont-unmount-fix-20040325
Nickolai Zeldovich [Thu, 25 Mar 2004 22:52:15 +0000]
remove-vnop-dont-unmount-fix-20040325

Make remove-vnop-denies-unlink-on-mtpt-20040325 more likely to work,
and don't forget to afs_PutFakeStat() while we're at it.  After we
call afs_EvalFakeStat(), there's no way that mvstat can be 1 -- either
the object wasn't a mountpoint and it'll be mvstat 0, or EvalFakeStat
will evaluate it and it'll be mvstat 2.

20 years agoremove-vnop-denies-unlink-on-mtpt-20040325
Derrick Brashear [Thu, 25 Mar 2004 22:10:54 +0000]
remove-vnop-denies-unlink-on-mtpt-20040325

FIXES 3724

if mvstat is 1, we're a mountpoint; simply short circuit EISDIR and return

20 years agoafsd-service-shutdown-crash-20040325
Jeffrey Altman [Thu, 25 Mar 2004 19:37:41 +0000]
afsd-service-shutdown-crash-20040325

More fixes to the afsd client service which do not result in solving
the problem but still should be done.

20 years agoglobal-mapping-20040325
Jeffrey Altman [Thu, 25 Mar 2004 19:35:49 +0000]
global-mapping-20040325

Undo change imported from MIT bulk changes

20 years agoopenbsd-20040325
Jim Rees [Thu, 25 Mar 2004 17:04:44 +0000]
openbsd-20040325

go back to using afs_vget instead of VREF for VN_HOLD
in afs_vget, only insert vnode in mount queue if it came off freelist

20 years agoopenbsd-packaging-20040324
Jim Rees [Wed, 24 Mar 2004 22:53:19 +0000]
openbsd-packaging-20040324

fix small typo

20 years agoviced-dont-atoi-NULL-20040324 openafs-devel-1_3_62
Derrick Brashear [Wed, 24 Mar 2004 17:36:57 +0000]
viced-dont-atoi-NULL-20040324

FIXES 3726

check argument number when processing args at startup

20 years agonsis-install-20040323
Jeffrey Altman [Wed, 24 Mar 2004 09:47:06 +0000]
nsis-install-20040323

Uninstall should be deleting CRT and MFC DLLs; not be installing them

Add new startup flags to the LogonScript for Integrated Logon

20 years agostatic-cm_dnsEnabled-20040323
Jeffrey Altman [Wed, 24 Mar 2004 09:24:16 +0000]
static-cm_dnsEnabled-20040323

Make cm_dns.c cm_dnsEnabled static to prevent potential
conflict (not really) with a variable of the same name
in afsd_init.c

20 years agobad-checkin-20040323
Jeffrey Altman [Wed, 24 Mar 2004 09:22:59 +0000]
bad-checkin-20040323

bad checkin

20 years agosunx86-59-sysname-id-20040324
Derrick Brashear [Wed, 24 Mar 2004 08:40:19 +0000]
sunx86-59-sysname-id-20040324

add missing sysname id for solaris 9 x86

20 years agoaix52-add-param-header-20040324
Derrick Brashear [Wed, 24 Mar 2004 08:38:15 +0000]
aix52-add-param-header-20040324

FIXES 3718

copy and modify the aix 5.1 header

20 years agoversion-update-20040323
Jeffrey Altman [Wed, 24 Mar 2004 08:35:36 +0000]
version-update-20040323

1.3.6200

20 years agono-getcellconfig-error-20040323
Jeffrey Altman [Wed, 24 Mar 2004 08:32:16 +0000]
no-getcellconfig-error-20040323

don't produce a MessageBox when getcellconfig fails

20 years agono-longjmp-20040323
Jeffrey Altman [Wed, 24 Mar 2004 08:27:36 +0000]
no-longjmp-20040323

Do not use setjmp/longjmp in multithreaded code.  It will destroy the stack.

20 years agointegrated-logon-20040323
Jeffrey Altman [Wed, 24 Mar 2004 08:25:39 +0000]
integrated-logon-20040323

Cleanup the integrated logon code.  Remove memory overwrites.  Refactor
the rest of the code.  Make it readable.

20 years agodoug-nsis-20040322
Jeffrey Altman [Tue, 23 Mar 2004 04:45:29 +0000]
doug-nsis-20040322

apply patch to include more header and lib files.

====================
This delta was composed from multiple commits as part of the CVS->Git migration.
The checkin message with each commit was inconsistent.
The following are the additional commit messages.
====================

Fix doug's patch.  remote extraneous colons

Move (once again) the DependsOnXXX values to the right place.
(how did these end up back in NetworkProvider?)

20 years agouninstall-exception-handler-20040321 openafs-devel-1_3_61
Jeffrey Altman [Mon, 22 Mar 2004 05:40:52 +0000]
uninstall-exception-handler-20040321

Before we shut down the service and return control to the service
manager uninstall the exception handler before it gets unloaded
from the process.

20 years agopower-mgmt-20040321
Jeffrey Altman [Mon, 22 Mar 2004 04:09:48 +0000]
power-mgmt-20040321

#define REGISTER_POWER_MANAGEMENT