Commit Graph

4338 Commits

Author SHA1 Message Date
Chaskiel M Grundman
9943fe1fd7 vmalloc-no-glock-20070418
Based on Chris Wing's analysis which stated in part:
GFP_NOFS tells the allocator not to recurse back into the filesystem if it's
necessary to free up memory.  However, vmalloc() does not have such an
option.  Therefore, calling osi_Alloc() to request more than a page of
memory may end up recursing back into AFS to try to free unused inodes or
dentries.

In this case, what happened was that osi_Alloc() is called within an
AFS_GLOCK(); osi_Alloc() calls vmalloc() which tries to free dentry objects,
which then calls back into the AFS module.  Unfortunately, AFS_GLOCK() is
already held and we deadlock.
2007-04-18 19:01:31 +00:00
Jeffrey Altman
85a23a70c7 windows-afskfw-bluescreen-20070418
The afskfw library contains an unprotected call to krb5_free_context
which can result in krb5_free_context being called with a NULL pointer.
MIT's Kerberos libraries do not check that the pointer is non-NULL and
will attempt to use it as a valid pointer which will in turn result
in an invalid memory access error.

This library is used by afslogon.dll which is loaded by winlogon.exe.

If the krb5 profile is invalid, the krb5_init_context call will fail
to allocate a krb5_context structure which can then result in
krb5_free_context being called with a NULL pointer.

An unhandled exception within winlogon.exe will cause a blue screen event
on Windows 2000, XP and 2003.
2007-04-18 16:57:05 +00:00
Jeffrey Altman
a82252fcc8 windows-afslogon-station-name-20070416
Use case insensitive comparisons for the station name.  Otherwise, we
will fail to notice that the logon is interactive on Vista.
2007-04-17 05:03:39 +00:00
Jeffrey Altman
c810b46e9e windows-kfw-krb5_init_context-20070416
If krb5_init_context() fails make sure that no further krb5 calls
are performed.

krb5_init_context() will fail if the krb5.ini file is damaged.
2007-04-17 01:10:28 +00:00
Jeffrey Altman
44ca92226a windows-temp-path-20070416
Use GetTempPath() instead of testing environment variables ourselves.
2007-04-17 01:04:47 +00:00
Jeffrey Altman
5bc88af797 windows-vioc-path-availability-20070414
add a new Windows only pioctl VIOC_PATH_AVAILABILITY that is used
to query the server status for a specified path.  Return values
include:
  online
  offline
  all busy
  all down
  not afs
2007-04-14 19:46:22 +00:00
Jeffrey Altman
fb5b0dcce6 windows-netidmgr-provider-20070412
do not use ellipsis for actions that do not need additional data to
complete.

"Help for OpenAFS plugin" -> "AFS" since its on the Help menu already
2007-04-12 15:12:36 +00:00
Simon Wilkinson
7de756ca28 quickstart-update-20070410
FIXES 58896

update quickstart guide with new information
2007-04-11 03:14:33 +00:00
Jeffrey Altman
5bcd5ab54d windows-netidmgr-afs-provider-20070410
when using krb524 with a cross-realm service ticket the resulting krb4
cred will not contain the user's realm as there is only one realm field.
2007-04-10 23:08:11 +00:00
Jeffrey Altman
0ff92e9a5b comerr-rename-two-20070410
fix afsrpc.def add_to_error_table
2007-04-10 23:06:02 +00:00
Jim Rees
306e23e08c doc-README-20070410
I didn't actually write this, just cribbed it from the openafs-info mailing
list.
2007-04-10 20:52:30 +00:00
Derrick Brashear
e0fa8ff72f comerr-rename-20070410
nag nag nag
2007-04-10 19:58:13 +00:00
Jeffrey Altman
fece50be72 windows-netidmgr-plugin-20070407
protect against pr_CreateUser modifying the username buffer.
2007-04-08 03:39:52 +00:00
Jeffrey Altman
a47faf3eea windows-afslogon-20070406
Fix eventlog reporting.  Do not attempt to log an event if the event
source registration fails.  Use DebugEvent0 instead of DebugEvent
when there are no parameters.

Modify the LOOKUPKEYCHAIN macro to recognize ERROR_MORE_DATA errors.

Fix the reading of Domain specific configuration for LogonScript and
TheseCells.  Previously the dwSize value was being overwritten so that
subsequent RegQueryValueEx call would fail.

Fix a memory leak in the TheseCells reading code.

Add support for Domain specific "Realm" specification.  The realm is
the realm to be appended to the username.  When logging in as a domain
or to the local machine, the specified "Domain" name is not going to be
a valid realm name.

Construct a proper principal name based upon the domain specified realm
for use in obtaining tokens with KFW.

If the domain specified "TheseCells" list includes the default cell,
do not obtain tokens twice.
2007-04-06 17:55:35 +00:00
Jeffrey Altman
bbbf3ee9ff windows-aklog-20070404
FIXES 58164

correct for the fact that pr_CreateUser tampers with the contents
of the username input buffer.
2007-04-04 21:24:48 +00:00
Peter Breitenlohner
9c592530b1 move-tasklist-lock-extern-outside-func-20070403
FIXES 53441

make tasklist-lock extern with pragma weak possibly work right
2007-04-03 19:52:44 +00:00
Jeffrey Altman
c7c7242e78 windows-vista-sdk-ntsecapi-compat-20070403
There is no way to replace FOO with the value of BAR in cpp.
2007-04-03 15:48:37 +00:00
Jeffrey Altman
644cd83dbd windows-libadmin-vos-registry-20070403
Move the session data from TransarcCorporation to OpenAFS.
2007-04-03 14:34:19 +00:00
Jeffrey Altman
125d9f877d rx-dpf-20070403
The function rx_MakeCall was at some point renamed to rx_NewCall
but the dpf output was never changed.

Add a dpf entry for rxi_ResetCall.
2007-04-03 14:30:25 +00:00
Jeffrey Altman
fbcafac2f6 windows-vista-sdk-ntsecapi-compat-20070402
fix inclusion of ntsecapi.h in network identity manager plug-in
2007-04-03 06:40:27 +00:00
Jeffrey Altman
26b381dc17 windows-afslogon-20070402
restore token acquisition for non-interactive logons.
2007-04-03 05:32:03 +00:00
Jeffrey Altman
20890b4e2e windows-nim-plugin-20070331
correct a NULL pointer de-reference introduced in
windows-nim-plugin-20070328
2007-03-31 13:52:17 +00:00
Jeffrey Altman
934f76fb18 windows-afslogon-20070328
There are two serious problems with integrated logon:

(1) openafs afslogon.dll obtains Kerberos v5 tickets and then forwards them
    into the logon session.  This was done because MIT KFW did not have
    such functionality.   As of KFW 3.1, KFW does, so we are removing it.

    the functionality worked by copying the credentials to a FILE ccache
    and then using the Logon Event Handler to move the credentials into
    an API ccache and delete the temporary file.  For non-interactive
    logons the Logon Event handlers do not get triggered.  Neither do
    LogonScripts get executed.  As a side effect, for each logon a
    credential cache file was left behind.

(2) when combined with non-interactive logons, there are some very bad
    side effects if a network provider performs Kerberos v5 operations.
    Each logon occurs in a new logon session and will spawn a private
    copy of krbcc32s.exe.

    As a result, integrated logon is being disabled for non-interactive
    logons.
2007-03-28 23:29:49 +00:00
Jeffrey Altman
60e5fc151e windows-nim-plugin-20070328
if the service ticket in the cache is expired, delete it from the cache
2007-03-28 23:18:41 +00:00
Neale Ferguson
74e22e2190 s390x-syscall-patch-fix-20070326
make s390x syscall table patching work correctly
2007-03-27 04:21:09 +00:00
Jeffrey Altman
a6cb25c5d3 windows-vista-sdk-ntsecapi-compat-20070324
When loading the Vista SDK ntsecapi.h we must set _WIN32_WINNT
to 0x0501 or greater
2007-03-24 05:02:16 +00:00
Jeffrey Altman
48cd8daff8 windows-fs-whereis-freelance-20070324
do not assert on the lack of a cell when calling fs whereis on the
freelance volume.  return CM_ERROR_NOCELL instead.
2007-03-24 04:59:13 +00:00
Derrick Brashear
1c9ede0bcf tvolser-locking-updates-20070322
rework locking in tvolser slightly to avoid potential transaction leak
2007-03-22 15:58:45 +00:00
Chas Williams
c2fb9440f3 darwin-remunlink-20070320
FIXES 55280

make reumlink work the way it's supposed to
2007-03-20 19:29:41 +00:00
Douglas Engert
ff81d7e77a nfs-gc-fix-20070320
FIXES 56459

avoid issue with nfs gc handler and mismatched types
2007-03-20 19:20:24 +00:00
Robert Banz
af0a976f11 namei-allow-zfs-20070320
don't force AlwaysAttach on ZFS in namei
2007-03-20 18:59:22 +00:00
Chaskiel M Grundman
29951ff73c linux-task-pointer-safety-20070320
hold applicable locks while futzing with task list
2007-03-20 18:45:58 +00:00
Chaskiel M Grundman
97d8703809 keyring-pag-finduser-requires-glock-20070320
identical to the fix from chas@cmf.nrl.navy.mil
2007-03-20 18:41:02 +00:00
Derrick Brashear
c4183dbc1f no-default-setuid-20070319
FIXES 54713

disable default setuid for localcell
2007-03-20 01:13:06 +00:00
Jeffrey Altman
b4f323eaeb windows-var-renaming-20070319
give rx call variables a distinct name from cm call variables
in order to avoid confusion
2007-03-19 13:44:41 +00:00
Jim Rees
92f10ea1a2 obsd-kernel-opts-20070317
adjust module compile opts (KOPTS) to better match those of the kernel
2007-03-17 18:20:15 +00:00
Jeffrey Altman
f1862d783a windows-afsd-nat-handling-20070310
Improve cache manager performance behind NATs:

 * drop cm_daemonCheckUpInterval from 10 minutes to 4 minutes to bring
   it under the minimum recommended default port mapping idle timeout
   value for NATs

 * when a timeout on an rx connection occurs, retry the request once
   after forcing a new rx connection.  If there was a NAT and the port
   mapping changed, the server would respond to the original addr:port
   associated with the rx connection.  Forcing a new connection will
   allow the request to be responded to if the server is accessible.

   This should eliminate the UP-DOWN-UP-DOWN bouncing that user's have
   seen when working from behind a NAT.
2007-03-10 15:48:01 +00:00
Jeffrey Altman
ce776b4809 windows-registry-20070310
move the AFS Server Manager and AFS Account Manager data cache from
the TransarcCorporation key to the OpenAFS key.  The data formats are
not compatible between the two versions and we don't want to be forced
to erase data if users switch back and forth between the two products
during OpenAFS evaluation.
2007-03-10 14:25:00 +00:00
Derrick Brashear
226c1ee8f9 java-lock-fix-200702310
make it portable. ugh.
2007-03-10 07:11:09 +00:00
Jeffrey Hutzelman
97fd54f399 cellservdb-20070309 2007-03-10 04:52:04 +00:00
Jeffrey Altman
a7db1780b3 windows-afsd-remove-generated-file-20070308
afsd_eventmessages.rc is a generated file.  Don't maintain in cvs.
2007-03-08 17:44:13 +00:00
Jim Rees
fc36880fed af-byteorder-bis-20070307
everyone wants AF in host order
2007-03-07 21:42:20 +00:00
Jeffrey Altman
5332348bdf windows-plug-n-play-network-fix-20070307
Move the detection of which LAN adapter to use from smb_Init to
smb_NetbiosInit so that it is executed after the service is resumed
via a power management event.  Otherwise, when the network comes back
up the service attempts to bind to all LAN adapters instead of just
the loopback or the configured one.
2007-03-07 18:13:25 +00:00
Jim Rees
413a906142 af-byteorder-20070307
bsd wants AF in host order
2007-03-07 17:00:57 +00:00
Jeffrey Altman
e4d3681e3d windows-fs-checkserver-20070302
FIXES 55234

The "fs checkservers" command when not being used to change the check
interval should not require admin privilege.
2007-03-03 01:29:11 +00:00
Jeffrey Altman
561f8b742f windows-partially-restore-find-lana-by-name-20070227
find lana by name is used by the afs control panel to populate the
lana list box.  don't use the function to find by name.  just use
it to generate the list of all lana names.
2007-02-28 00:38:04 +00:00
Jeffrey Altman
b8d09aff6a windows-afsd-no-krb_h-20070226
Don't include krb.h when we don't use it for anything
2007-02-27 01:30:39 +00:00
Chaskiel M Grundman
9d5de311a6 forcenewconns-even-with-one-interface-20070226
otherwise we don't discard vlserver connections when a server is "down"
2007-02-26 22:13:33 +00:00
Derrick Brashear
0d5642e3ee uae-etoomanyrefs-avoid-dup-20070222
when ETOOMANYREFS is EIO don't rewrite the EIO slot with UAETOOMANYREFS
2007-02-26 18:48:22 +00:00
Stephan Wiesand
a3a4096830 conditionalize-tasklist-lock-20070226
FIXES 54922

make rx_knet use tasklist_lock conditionally also
2007-02-26 17:55:55 +00:00