14a3fff11c80e7c348cc2272324026f3cacd05c0
[openafs.git] / src / WINNT / afsd / afsd_init.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afs/param.h>
11 #include <afs/stds.h>
12 #include <afs/afs_args.h>
13
14 #include <windows.h>
15 #include <string.h>
16 #include <nb30.h>
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <locale.h>
20 #include <mbctype.h>
21 #include <winsock2.h>
22 #include <ErrorRep.h>
23
24 #include <osi.h>
25 #include "afsd.h"
26 #ifdef USE_BPLUS
27 #include "cm_btree.h"
28 #endif
29 #include <rx\rx.h>
30 #include <rx\rx_null.h>
31 #include <WINNT/syscfg.h>
32 #include <WINNT/afsreg.h>
33
34 #include "smb.h"
35 #include "cm_rpc.h"
36 #include "lanahelper.h"
37 #include <strsafe.h>
38 #include "cm_memmap.h"
39
40 extern int RXAFSCB_ExecuteRequest(struct rx_call *z_call);
41 extern int RXSTATS_ExecuteRequest(struct rx_call *z_call);
42
43 extern afs_uint32 cryptall;
44 extern afs_uint32 cm_anonvldb;
45 extern int cm_enableServerLocks;
46 extern int cm_followBackupPath;
47 extern int cm_deleteReadOnly;
48 #ifdef USE_BPLUS
49 extern afs_int32 cm_BPlusTrees;
50 #endif
51 extern afs_int32 cm_OfflineROIsValid;
52 extern afs_int32 cm_giveUpAllCBs;
53 extern const char **smb_ExecutableExtensions;
54
55 osi_log_t *afsd_logp;
56
57 cm_config_data_t        cm_data;
58
59 char cm_rootVolumeName[VL_MAXNAMELEN];
60 DWORD cm_rootVolumeNameLen;
61 char cm_mountRoot[1024];
62 DWORD cm_mountRootLen;
63 int cm_logChunkSize;
64 int cm_chunkSize;
65
66 int smb_UseV3 = 1;
67
68 int LANadapter;
69
70 int numBkgD;
71 int numSvThreads;
72 long rx_mtu = -1;
73 int traceOnPanic = 0;
74
75 int logReady = 0;
76
77 char cm_HostName[200];
78 long cm_HostAddr;
79 unsigned short cm_callbackport = CM_DEFAULT_CALLBACKPORT;
80
81 char cm_NetbiosName[MAX_NB_NAME_LENGTH] = "";
82
83 char cm_CachePath[MAX_PATH];
84 DWORD cm_CachePathLen;
85 DWORD cm_ValidateCache = 1;
86
87 BOOL reportSessionStartups = FALSE;
88
89 cm_initparams_v1 cm_initParams;
90
91 char *cm_sysName = 0;
92 unsigned int   cm_sysNameCount = 0;
93 char *cm_sysNameList[MAXNUMSYSNAMES];
94
95 DWORD TraceOption = 0;
96
97 /*
98  * AFSD Initialization Log
99  *
100  * This is distinct from the regular debug logging facility.
101  * Log items go directly to a file, not to an array in memory, so that even
102  * if AFSD crashes, the log can be inspected.
103  */
104
105 HANDLE afsi_file;
106
107 #ifdef AFS_AFSDB_ENV
108 int cm_dnsEnabled = 1;
109 #endif
110
111
112 static int afsi_log_useTimestamp = 1;
113
114 void
115 afsi_log(char *pattern, ...)
116 {
117     char s[256], t[100], d[100], u[512];
118     DWORD zilch;
119     va_list ap;
120     va_start(ap, pattern);
121
122     StringCbVPrintfA(s, sizeof(s), pattern, ap);
123     if ( afsi_log_useTimestamp ) {
124         GetTimeFormat(LOCALE_SYSTEM_DEFAULT, 0, NULL, NULL, t, sizeof(t));
125         GetDateFormat(LOCALE_SYSTEM_DEFAULT, 0, NULL, NULL, d, sizeof(d));
126         StringCbPrintfA(u, sizeof(u), "%s %s: %s\r\n", d, t, s);
127         if (afsi_file != INVALID_HANDLE_VALUE)
128             WriteFile(afsi_file, u, (DWORD)strlen(u), &zilch, NULL);
129 #ifdef NOTSERVICE
130         printf("%s", u);
131 #endif 
132     } else {
133         if (afsi_file != INVALID_HANDLE_VALUE)
134             WriteFile(afsi_file, s, (DWORD)strlen(s), &zilch, NULL);
135     }
136 }
137
138 extern initUpperCaseTable();
139 void afsd_initUpperCaseTable() 
140 {
141     initUpperCaseTable();
142 }
143
144 void
145 afsi_start()
146 {
147     char wd[MAX_PATH+1];
148     char t[100], u[100], *p, *path;
149     int zilch;
150     DWORD code;
151     DWORD dwLow, dwHigh;
152     HKEY parmKey;
153     DWORD dummyLen;
154     DWORD maxLogSize = 100 * 1024;
155
156     afsi_file = INVALID_HANDLE_VALUE;
157     code = GetTempPath(sizeof(wd)-15, wd);
158     if ( code == 0 || code > (sizeof(wd)-15) )
159         return;         /* unable to create a log */
160
161     StringCbCatA(wd, sizeof(wd), "\\afsd_init.log");
162     GetTimeFormat(LOCALE_SYSTEM_DEFAULT, 0, NULL, NULL, t, sizeof(t));
163     afsi_file = CreateFile(wd, GENERIC_WRITE, FILE_SHARE_READ, NULL,
164                            OPEN_ALWAYS, FILE_FLAG_WRITE_THROUGH, NULL);
165
166     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
167                          0, KEY_QUERY_VALUE, &parmKey);
168     if (code == ERROR_SUCCESS) {
169         dummyLen = sizeof(maxLogSize);
170         code = RegQueryValueEx(parmKey, "MaxLogSize", NULL, NULL,
171                                 (BYTE *) &maxLogSize, &dummyLen);
172         RegCloseKey (parmKey);
173     }
174
175     if (maxLogSize) {
176         dwLow = GetFileSize( afsi_file, &dwHigh );
177         if ( dwHigh > 0 || dwLow >= maxLogSize ) {
178             CloseHandle(afsi_file);
179             afsi_file = CreateFile( wd, GENERIC_WRITE, FILE_SHARE_READ, NULL,
180                                     CREATE_ALWAYS, FILE_FLAG_WRITE_THROUGH, NULL);
181         }
182     }
183
184     SetFilePointer(afsi_file, 0, NULL, FILE_END);
185     GetTimeFormat(LOCALE_SYSTEM_DEFAULT, 0, NULL, NULL, u, sizeof(u));
186     StringCbCatA(t, sizeof(t), ": Create log file\r\n");
187     StringCbCatA(u, sizeof(u), ": Created log file\r\n");
188     WriteFile(afsi_file, t, (DWORD)strlen(t), &zilch, NULL);
189     WriteFile(afsi_file, u, (DWORD)strlen(u), &zilch, NULL);
190     p = "PATH=";
191     code = GetEnvironmentVariable("PATH", NULL, 0);
192     path = malloc(code);
193     code = GetEnvironmentVariable("PATH", path, code);
194     WriteFile(afsi_file, p, (DWORD)strlen(p), &zilch, NULL);
195     WriteFile(afsi_file, path, (DWORD)strlen(path), &zilch, NULL);
196     WriteFile(afsi_file, "\r\n", (DWORD)1, &zilch, NULL);
197     free(path);
198
199     /* Initialize C RTL Code Page conversion functions */
200     /* All of the path info obtained from the SMB client is in the OEM code page */
201     afsi_log("OEM Code Page = %d", GetOEMCP());
202     afsi_log("locale =  %s", setlocale(LC_ALL,NULL));
203 #ifdef COMMENT
204     /* Two things to look into.  First, should mbstowcs() be performing 
205      * character set translations from OEM to Unicode in smb3.c; 
206      * Second, do we need to set this translation in each function 
207      * due to multi-threading. 
208      */
209     afsi_log("locale -> %s", setlocale(LC_ALL, ".OCP"));
210     afsi_log("_setmbcp = %d -> %d", _setmbcp(_MB_CP_OEM), _getmbcp());
211 #endif /* COMMENT */
212 }
213
214 /*
215  * Standard AFSD trace
216  */
217
218 void afsd_ForceTrace(BOOL flush)
219 {
220     HANDLE handle;
221     int len;
222     char buf[256];
223
224     if (!logReady) 
225         return;
226
227     len = GetTempPath(sizeof(buf)-10, buf);
228     StringCbCopyA(&buf[len], sizeof(buf)-len, "/afsd.log");
229     handle = CreateFile(buf, GENERIC_WRITE, FILE_SHARE_READ,
230                          NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
231     if (handle == INVALID_HANDLE_VALUE) {
232         logReady = 0;
233         osi_panic("Cannot create log file", __FILE__, __LINE__);
234     }
235     osi_LogPrint(afsd_logp, handle);
236     if (flush)
237         FlushFileBuffers(handle);
238     CloseHandle(handle);
239 }
240
241 static void
242 configureBackConnectionHostNames(void)
243 {
244     /* On Windows XP SP2, Windows 2003 SP1, and all future Windows operating systems
245      * there is a restriction on the use of SMB authentication on loopback connections.
246      * There are two work arounds available:
247      * 
248      *   (1) We can disable the check for matching host names.  This does not
249      *   require a reboot:
250      *   [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]
251      *     "DisableLoopbackCheck"=dword:00000001
252      *
253      *   (2) We can add the AFS SMB/CIFS service name to an approved list.  This
254      *   does require a reboot:
255      *   [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0]
256      *     "BackConnectionHostNames"=multi-sz
257      *
258      * The algorithm will be:
259      *   (1) Check to see if cm_NetbiosName exists in the BackConnectionHostNames list
260      *   (2a) If not, add it to the list.  (This will not take effect until the next reboot.)
261      *   (2b1)    and check to see if DisableLoopbackCheck is set.
262      *   (2b2)    If not set, set the DisableLoopbackCheck value to 0x1 
263      *   (2b3)                and create HKLM\SOFTWARE\OpenAFS\Client  UnsetDisableLoopbackCheck
264      *   (2c) else If cm_NetbiosName exists in the BackConnectionHostNames list,
265      *             check for the UnsetDisableLoopbackCheck value.  
266      *             If set, set the DisableLoopbackCheck flag to 0x0 
267      *             and delete the UnsetDisableLoopbackCheck value
268      *
269      * Starting in Longhorn Beta 1, an entry in the BackConnectionHostNames value will
270      * force Windows to use the loopback authentication mechanism for the specified 
271      * services.
272      */
273     HKEY hkLsa;
274     HKEY hkMSV10;
275     HKEY hkClient;
276     DWORD dwType;
277     DWORD dwSize, dwAllocSize;
278     DWORD dwValue;
279     PBYTE pHostNames = NULL, pName = NULL;
280     BOOL  bNameFound = FALSE;   
281
282     if ( RegOpenKeyEx( HKEY_LOCAL_MACHINE, 
283                        "SYSTEM\\CurrentControlSet\\Control\\Lsa\\MSV1_0",
284                        0,
285                        KEY_READ|KEY_WRITE,
286                        &hkMSV10) == ERROR_SUCCESS )
287     {
288         if ((RegQueryValueEx( hkMSV10, "BackConnectionHostNames", 0, 
289                              &dwType, NULL, &dwAllocSize) == ERROR_SUCCESS) &&
290             (dwType == REG_MULTI_SZ)) 
291         {
292             dwAllocSize += 1 /* in case the source string is not nul terminated */
293                 + strlen(cm_NetbiosName) + 2;
294             pHostNames = malloc(dwAllocSize);
295             dwSize = dwAllocSize;
296             if (RegQueryValueEx( hkMSV10, "BackConnectionHostNames", 0, &dwType, 
297                                  pHostNames, &dwSize) == ERROR_SUCCESS) 
298             {
299                 for (pName = pHostNames; 
300                      (pName - pHostNames < dwSize) && *pName ; 
301                      pName += strlen(pName) + 1)
302                 {
303                     if ( !stricmp(pName, cm_NetbiosName) ) {
304                         bNameFound = TRUE;
305                         break;
306                     }   
307                 }
308             }
309         }
310              
311         if ( !bNameFound ) {
312             size_t size = strlen(cm_NetbiosName) + 2;
313             if ( !pHostNames ) {
314                 pHostNames = malloc(size);
315                 pName = pHostNames;
316             }
317             StringCbCopyA(pName, size, cm_NetbiosName);
318             pName += size - 1;
319             *pName = '\0';  /* add a second nul terminator */
320
321             dwType = REG_MULTI_SZ;
322             dwSize = pName - pHostNames + 1;
323             RegSetValueEx( hkMSV10, "BackConnectionHostNames", 0, dwType, pHostNames, dwSize);
324
325             if ( RegOpenKeyEx( HKEY_LOCAL_MACHINE, 
326                                "SYSTEM\\CurrentControlSet\\Control\\Lsa",
327                                0,
328                                KEY_READ|KEY_WRITE,
329                                &hkLsa) == ERROR_SUCCESS )
330             {
331                 dwSize = sizeof(DWORD);
332                 if ( RegQueryValueEx( hkLsa, "DisableLoopbackCheck", 0, &dwType, (LPBYTE)&dwValue, &dwSize) != ERROR_SUCCESS ||
333                      dwValue == 0 ) {
334                     dwType = REG_DWORD;
335                     dwSize = sizeof(DWORD);
336                     dwValue = 1;
337                     RegSetValueEx( hkLsa, "DisableLoopbackCheck", 0, dwType, (LPBYTE)&dwValue, dwSize);
338
339                     if (RegCreateKeyEx( HKEY_LOCAL_MACHINE, 
340                                         AFSREG_CLT_OPENAFS_SUBKEY,
341                                         0,
342                                         NULL,
343                                         REG_OPTION_NON_VOLATILE,
344                                         KEY_READ|KEY_WRITE,
345                                         NULL,
346                                         &hkClient,
347                                         NULL) == ERROR_SUCCESS) {
348
349                         dwType = REG_DWORD;
350                         dwSize = sizeof(DWORD);
351                         dwValue = 1;
352                         RegSetValueEx( hkClient, "RemoveDisableLoopbackCheck", 0, dwType, (LPBYTE)&dwValue, dwSize);
353                         RegCloseKey(hkClient);
354                     }
355                     RegCloseKey(hkLsa);
356                 }
357             }
358         } else {
359             if (RegCreateKeyEx( HKEY_LOCAL_MACHINE, 
360                                 AFSREG_CLT_OPENAFS_SUBKEY,
361                                 0,
362                                 NULL,
363                                 REG_OPTION_NON_VOLATILE,
364                                 KEY_READ|KEY_WRITE,
365                                 NULL,
366                                 &hkClient,
367                                 NULL) == ERROR_SUCCESS) {
368
369                 dwSize = sizeof(DWORD);
370                 if ( RegQueryValueEx( hkClient, "RemoveDisableLoopbackCheck", 0, &dwType, (LPBYTE)&dwValue, &dwSize) == ERROR_SUCCESS &&
371                      dwValue == 1 ) {
372                     if ( RegOpenKeyEx( HKEY_LOCAL_MACHINE, 
373                                        "SYSTEM\\CurrentControlSet\\Control\\Lsa",
374                                        0,
375                                        KEY_READ|KEY_WRITE,
376                                        &hkLsa) == ERROR_SUCCESS )
377                     {
378                         RegDeleteValue(hkLsa, "DisableLoopbackCheck");
379                         RegCloseKey(hkLsa);
380                     }
381                 }
382                 RegDeleteValue(hkClient, "RemoveDisableLoopbackCheck");
383                 RegCloseKey(hkClient);
384             }
385         }
386         RegCloseKey(hkMSV10);
387     }
388
389     if (pHostNames)
390         free(pHostNames);
391 }
392
393
394 static void afsd_InitServerPreferences(void)
395 {
396     HKEY hkPrefs = 0;
397     DWORD dwType, dwSize;
398     DWORD dwPrefs = 0;
399     DWORD dwIndex;
400     TCHAR szHost[256];
401     DWORD dwHostSize = 256;
402     DWORD dwRank;
403     struct sockaddr_in  saddr;
404     cm_server_t       *tsp;
405
406     if (RegOpenKeyEx( HKEY_LOCAL_MACHINE, 
407                       AFSREG_CLT_OPENAFS_SUBKEY "\\Server Preferences\\VLDB",
408                       0,
409                       KEY_READ|KEY_QUERY_VALUE,
410                       &hkPrefs) == ERROR_SUCCESS) {
411
412         RegQueryInfoKey( hkPrefs,
413                          NULL,  /* lpClass */
414                          NULL,  /* lpcClass */
415                          NULL,  /* lpReserved */
416                          NULL,  /* lpcSubKeys */
417                          NULL,  /* lpcMaxSubKeyLen */
418                          NULL,  /* lpcMaxClassLen */
419                          &dwPrefs, /* lpcValues */
420                          NULL,  /* lpcMaxValueNameLen */
421                          NULL,  /* lpcMaxValueLen */
422                          NULL,  /* lpcbSecurityDescriptor */
423                          NULL   /* lpftLastWriteTime */
424                          );
425
426         for ( dwIndex = 0 ; dwIndex < dwPrefs; dwIndex++ ) {
427
428             dwSize = sizeof(DWORD);
429             dwHostSize = 256;
430
431             if (RegEnumValue( hkPrefs, dwIndex, szHost, &dwHostSize, NULL,
432                               &dwType, (LPBYTE)&dwRank, &dwSize))
433             {
434                 afsi_log("RegEnumValue(hkPrefs) failed");
435                 continue;
436             }
437
438             afsi_log("VLDB Server Preference: %s = %d",szHost, dwRank);
439
440             if (isdigit(szHost[0]))
441             {
442                 if ((saddr.sin_addr.S_un.S_addr = inet_addr (szHost)) == INADDR_NONE)
443                     continue;
444             } else {
445                 HOSTENT *pEntry;
446                 if ((pEntry = gethostbyname (szHost)) == NULL)
447                     continue;
448
449                 saddr.sin_addr.S_un.S_addr = *(unsigned long *)pEntry->h_addr;
450             }
451             saddr.sin_family = AF_INET;
452             dwRank += (rand() & 0x000f);
453
454             tsp = cm_FindServer(&saddr, CM_SERVER_VLDB);
455             if ( tsp )          /* an existing server - ref count increased */
456             {
457                 tsp->ipRank = (USHORT)dwRank; /* no need to protect by mutex*/
458
459                 /* set preferences for an existing vlserver */
460                 cm_ChangeRankCellVLServer(tsp);
461                 cm_PutServer(tsp);  /* decrease refcount */
462             }
463             else        /* add a new server without a cell */
464             {
465                 tsp = cm_NewServer(&saddr, CM_SERVER_VLDB, NULL, CM_FLAG_NOPROBE); /* refcount = 1 */
466                 tsp->ipRank = (USHORT)dwRank;
467             }
468         }
469
470         RegCloseKey(hkPrefs);
471     }
472
473     if (RegOpenKeyEx( HKEY_LOCAL_MACHINE, 
474                       AFSREG_CLT_OPENAFS_SUBKEY "\\Server Preferences\\File",
475                       0,
476                       KEY_READ|KEY_QUERY_VALUE,
477                       &hkPrefs) == ERROR_SUCCESS) {
478
479         RegQueryInfoKey( hkPrefs,
480                          NULL,  /* lpClass */
481                          NULL,  /* lpcClass */
482                          NULL,  /* lpReserved */
483                          NULL,  /* lpcSubKeys */
484                          NULL,  /* lpcMaxSubKeyLen */
485                          NULL,  /* lpcMaxClassLen */
486                          &dwPrefs, /* lpcValues */
487                          NULL,  /* lpcMaxValueNameLen */
488                          NULL,  /* lpcMaxValueLen */
489                          NULL,  /* lpcbSecurityDescriptor */
490                          NULL   /* lpftLastWriteTime */
491                          );
492
493         for ( dwIndex = 0 ; dwIndex < dwPrefs; dwIndex++ ) {
494
495             dwSize = sizeof(DWORD);
496             dwHostSize = 256;
497
498             if (RegEnumValue( hkPrefs, dwIndex, szHost, &dwHostSize, NULL,
499                               &dwType, (LPBYTE)&dwRank, &dwSize))
500             {
501                 afsi_log("RegEnumValue(hkPrefs) failed");
502                 continue;
503             }
504
505             afsi_log("File Server Preference: %s = %d",szHost, dwRank);
506
507             if (isdigit(szHost[0]))
508             {
509                 if ((saddr.sin_addr.S_un.S_addr = inet_addr (szHost)) == INADDR_NONE)
510                     continue;
511             } else {
512                 HOSTENT *pEntry;
513                 if ((pEntry = gethostbyname (szHost)) == NULL)
514                     continue;
515
516                 saddr.sin_addr.S_un.S_addr = *(unsigned long *)pEntry->h_addr;
517             }
518             saddr.sin_family = AF_INET;
519             dwRank += (rand() & 0x000f);
520
521             tsp = cm_FindServer(&saddr, CM_SERVER_FILE);
522             if ( tsp )          /* an existing server - ref count increased */
523             {
524                 tsp->ipRank = (USHORT)dwRank; /* no need to protect by mutex*/
525
526                 /* find volumes which might have RO copy 
527                 /* on server and change the ordering of 
528                  * their RO list 
529                  */
530                 cm_ChangeRankVolume(tsp);
531                 cm_PutServer(tsp);  /* decrease refcount */
532             }
533             else        /* add a new server without a cell */
534             {
535                 tsp = cm_NewServer(&saddr, CM_SERVER_FILE, NULL, CM_FLAG_NOPROBE); /* refcount = 1 */
536                 tsp->ipRank = (USHORT)dwRank;
537             }
538         }
539
540         RegCloseKey(hkPrefs);
541     }
542 }
543
544 /*
545  * AFSD Initialization
546  */
547
548 int afsd_InitCM(char **reasonP)
549 {
550     osi_uid_t debugID;
551     afs_uint64 cacheBlocks;
552     DWORD cacheSize;
553     DWORD blockSize;
554     long logChunkSize;
555     DWORD stats;
556     DWORD volumes;
557     DWORD cells;
558     DWORD dwValue;
559     DWORD rx_enable_peer_stats;
560     DWORD rx_enable_process_stats;
561     long traceBufSize;
562     long maxcpus;
563     long ltt, ltto;
564     long rx_nojumbo;
565     long virtualCache = 0;
566     char rootCellName[256];
567     struct rx_service *serverp;
568     static struct rx_securityClass *nullServerSecurityClassp;
569     struct hostent *thp;
570     char *msgBuf;
571     char buf[1024];
572     HKEY parmKey;
573     DWORD dummyLen;
574     DWORD regType;
575     long code;
576     /*int freelanceEnabled;*/
577     WSADATA WSAjunk;
578     int i;
579     char *p, *q; 
580     int cm_noIPAddr;         /* number of client network interfaces */
581     int cm_IPAddr[CM_MAXINTERFACE_ADDR];    /* client's IP address in host order */
582     int cm_SubnetMask[CM_MAXINTERFACE_ADDR];/* client's subnet mask in host order*/
583     int cm_NetMtu[CM_MAXINTERFACE_ADDR];    /* client's MTU sizes */
584     int cm_NetFlags[CM_MAXINTERFACE_ADDR];  /* network flags */
585
586     WSAStartup(0x0101, &WSAjunk);
587
588     afsd_initUpperCaseTable();
589     init_et_to_sys_error();
590
591     /* setup osidebug server at RPC slot 1000 */
592     osi_LongToUID(1000, &debugID);
593     code = osi_InitDebug(&debugID);
594     afsi_log("osi_InitDebug code %d", code);
595
596     //  osi_LockTypeSetDefault("stat"); /* comment this out for speed */
597     if (code != 0) {
598         if (code == RPC_S_NO_PROTSEQS)
599             *reasonP = "No RPC Protocol Sequences registered.  Check HKLM\\SOFTWARE\\Microsoft\\RPC\\ClientProtocols";
600         else
601             *reasonP = "unknown error";
602         return -1;
603     }
604
605     /* who are we ? */
606     gethostname(cm_HostName, sizeof(cm_HostName));
607     afsi_log("gethostname %s", cm_HostName);
608     thp = gethostbyname(cm_HostName);
609     memcpy(&cm_HostAddr, thp->h_addr_list[0], 4);
610
611     /* seed random number generator */
612     srand(ntohl(cm_HostAddr));
613
614     /* Look up configuration parameters in Registry */
615     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
616                          0, KEY_QUERY_VALUE, &parmKey);
617     if (code != ERROR_SUCCESS) {
618         FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM
619                        | FORMAT_MESSAGE_ALLOCATE_BUFFER,
620                        NULL, code, 0, (LPTSTR)&msgBuf, 0, NULL);
621         StringCbPrintfA(buf, sizeof(buf),
622                          "Failure in configuration while opening Registry: %s",
623                          msgBuf);
624         osi_panic(buf, __FILE__, __LINE__);
625     }
626
627     dummyLen = sizeof(maxcpus);
628     code = RegQueryValueEx(parmKey, "MaxCPUs", NULL, NULL,
629                             (BYTE *) &maxcpus, &dummyLen);
630     if (code == ERROR_SUCCESS) {
631         HANDLE hProcess;
632         DWORD_PTR processAffinityMask, systemAffinityMask;
633
634         hProcess = OpenProcess(PROCESS_QUERY_INFORMATION|PROCESS_SET_INFORMATION,
635                                FALSE, GetCurrentProcessId());
636         if ( hProcess != NULL &&
637              GetProcessAffinityMask(hProcess, &processAffinityMask, &systemAffinityMask) )
638         {
639             int i, n, bits;
640             DWORD_PTR mask, newAffinityMask;
641
642 #if defined(_WIN64)
643             bits = 64;
644 #else
645             bits = 32;
646 #endif
647             for ( i=0, n=0, mask=1, newAffinityMask=0; i<bits && n<maxcpus; i++ ) {
648                 if ( processAffinityMask & mask ) {
649                     newAffinityMask |= mask;
650                     n++;
651                 }
652                 mask *= 2;
653             }
654
655             SetProcessAffinityMask(hProcess, newAffinityMask);
656             CloseHandle(hProcess);
657             afsi_log("CPU Restrictions set to %d cpu(s); %d cpu(s) available", maxcpus, n);
658         } else {
659             afsi_log("CPU Restrictions set to %d cpu(s); unable to access process information", maxcpus);
660         }
661     }
662
663     dummyLen = sizeof(TraceOption);
664     code = RegQueryValueEx(parmKey, "TraceOption", NULL, NULL,
665                             (BYTE *) &TraceOption, &dummyLen);
666     afsi_log("Trace Options = %lX", TraceOption);
667
668     dummyLen = sizeof(traceBufSize);
669     code = RegQueryValueEx(parmKey, "TraceBufferSize", NULL, NULL,
670                             (BYTE *) &traceBufSize, &dummyLen);
671     if (code == ERROR_SUCCESS)
672         afsi_log("Trace Buffer size %d", traceBufSize);
673     else {
674         traceBufSize = CM_CONFIGDEFAULT_TRACEBUFSIZE;
675         afsi_log("Default trace buffer size %d", traceBufSize);
676     }
677
678     /* setup and enable debug log */
679     afsd_logp = osi_LogCreate("afsd", traceBufSize);
680     afsi_log("osi_LogCreate log addr %x", PtrToUlong(afsd_logp));
681     if ((TraceOption & 0x8)
682 #ifdef DEBUG
683          || 1
684 #endif
685          ) {
686         osi_LogEnable(afsd_logp);
687     }
688     logReady = 1;
689
690     osi_Log0(afsd_logp, "Log init");
691
692     dummyLen = sizeof(cacheSize);
693     code = RegQueryValueEx(parmKey, "CacheSize", NULL, NULL,
694                             (BYTE *) &cacheSize, &dummyLen);
695     if (code == ERROR_SUCCESS)
696         afsi_log("Cache size %d", cacheSize);
697     else {
698         cacheSize = CM_CONFIGDEFAULT_CACHESIZE;
699         afsi_log("Default cache size %d", cacheSize);
700     }
701
702     dummyLen = sizeof(logChunkSize);
703     code = RegQueryValueEx(parmKey, "ChunkSize", NULL, NULL,
704                             (BYTE *) &logChunkSize, &dummyLen);
705     if (code == ERROR_SUCCESS) {
706         if (logChunkSize < 12 || logChunkSize > 30) {
707             afsi_log("Invalid chunk size %d, using default",
708                       logChunkSize);
709             logChunkSize = CM_CONFIGDEFAULT_CHUNKSIZE;
710         }
711     } else {
712         logChunkSize = CM_CONFIGDEFAULT_CHUNKSIZE;
713     }
714     cm_logChunkSize = logChunkSize;
715     cm_chunkSize = 1 << logChunkSize;
716     afsi_log("Chunk size %u (%d)", cm_chunkSize, cm_logChunkSize);
717
718     dummyLen = sizeof(blockSize);
719     code = RegQueryValueEx(parmKey, "blockSize", NULL, NULL,
720                             (BYTE *) &blockSize, &dummyLen);
721     if (code == ERROR_SUCCESS) {
722         if (blockSize < 1 || 
723             (blockSize > 1024 && (blockSize % CM_CONFIGDEFAULT_BLOCKSIZE != 0))) 
724         {
725             afsi_log("Invalid block size %u specified, using default", blockSize);
726             blockSize = CM_CONFIGDEFAULT_BLOCKSIZE;
727         } else {
728             /* 
729              * if the blockSize is less than 1024 we permit the blockSize to be
730              * specified in multiples of the default blocksize
731              */
732             if (blockSize <= 1024)
733                 blockSize *= CM_CONFIGDEFAULT_BLOCKSIZE;
734         }
735     } else {
736         blockSize = CM_CONFIGDEFAULT_BLOCKSIZE;
737     }
738     if (blockSize > cm_chunkSize) {
739         afsi_log("Block size (%d) cannot be larger than Chunk size (%d).", 
740                   blockSize, cm_chunkSize);
741         blockSize = cm_chunkSize;
742     }
743     if (cm_chunkSize % blockSize != 0) {
744         afsi_log("Block size (%d) must be a factor of Chunk size (%d).",
745                   blockSize, cm_chunkSize);
746         blockSize = CM_CONFIGDEFAULT_BLOCKSIZE;
747     }
748     afsi_log("Block size %u", blockSize);
749
750     dummyLen = sizeof(numBkgD);
751     code = RegQueryValueEx(parmKey, "Daemons", NULL, NULL,
752                             (BYTE *) &numBkgD, &dummyLen);
753     if (code == ERROR_SUCCESS) {
754         if (numBkgD > CM_MAX_DAEMONS)
755             numBkgD = CM_MAX_DAEMONS;
756         afsi_log("%d background daemons", numBkgD);
757     } else {
758         numBkgD = CM_CONFIGDEFAULT_DAEMONS;
759         afsi_log("Defaulting to %d background daemons", numBkgD);
760     }
761
762     dummyLen = sizeof(numSvThreads);
763     code = RegQueryValueEx(parmKey, "ServerThreads", NULL, NULL,
764                             (BYTE *) &numSvThreads, &dummyLen);
765     if (code == ERROR_SUCCESS)
766         afsi_log("%d server threads", numSvThreads);
767     else {
768         numSvThreads = CM_CONFIGDEFAULT_SVTHREADS;
769         afsi_log("Defaulting to %d server threads", numSvThreads);
770     }
771
772     dummyLen = sizeof(stats);
773     code = RegQueryValueEx(parmKey, "Stats", NULL, NULL,
774                             (BYTE *) &stats, &dummyLen);
775     if (code == ERROR_SUCCESS)
776         afsi_log("Status cache entries: %d", stats);
777     else {
778         stats = CM_CONFIGDEFAULT_STATS;
779         afsi_log("Default status cache entries: %d", stats);
780     }
781
782     dummyLen = sizeof(volumes);
783     code = RegQueryValueEx(parmKey, "Volumes", NULL, NULL,
784                             (BYTE *) &volumes, &dummyLen);
785     if (code == ERROR_SUCCESS)
786         afsi_log("Volumes cache entries: %d", volumes);
787     else {
788         volumes = CM_CONFIGDEFAULT_STATS / 3;
789         afsi_log("Default volume cache entries: %d", volumes);
790     }
791
792     dummyLen = sizeof(cells);
793     code = RegQueryValueEx(parmKey, "Cells", NULL, NULL,
794                             (BYTE *) &cells, &dummyLen);
795     if (code == ERROR_SUCCESS)
796         afsi_log("Cell cache entries: %d", cells);
797     else {
798         cells = CM_CONFIGDEFAULT_CELLS;
799         afsi_log("Default cell cache entries: %d", cells);
800     }
801
802     dummyLen = sizeof(ltt);
803     code = RegQueryValueEx(parmKey, "LogoffTokenTransfer", NULL, NULL,
804                             (BYTE *) &ltt, &dummyLen);
805     if (code != ERROR_SUCCESS)
806         ltt = 1;
807     smb_LogoffTokenTransfer = ltt;
808     afsi_log("Logoff token transfer %s",  (ltt ? "on" : "off"));
809
810     if (ltt) {
811         dummyLen = sizeof(ltto);
812         code = RegQueryValueEx(parmKey, "LogoffTokenTransferTimeout",
813                                 NULL, NULL, (BYTE *) &ltto, &dummyLen);
814         if (code != ERROR_SUCCESS)
815             ltto = 120;
816     } else {
817         ltto = 0;
818     }   
819     smb_LogoffTransferTimeout = ltto;
820     afsi_log("Logoff token transfer timeout %d seconds", ltto);
821
822     dummyLen = sizeof(cm_rootVolumeName);
823     code = RegQueryValueEx(parmKey, "RootVolume", NULL, NULL,
824                             cm_rootVolumeName, &dummyLen);
825     if (code == ERROR_SUCCESS)
826         afsi_log("Root volume %s", cm_rootVolumeName);
827     else {
828         StringCbCopyA(cm_rootVolumeName, sizeof(cm_rootVolumeName), "root.afs");
829         afsi_log("Default root volume name root.afs");
830     }
831
832     cm_mountRootLen = sizeof(cm_mountRoot);
833     code = RegQueryValueEx(parmKey, "MountRoot", NULL, NULL,
834                             cm_mountRoot, &cm_mountRootLen);
835     if (code == ERROR_SUCCESS) {
836         afsi_log("Mount root %s", cm_mountRoot);
837         cm_mountRootLen = (DWORD)strlen(cm_mountRoot);
838     } else {
839         StringCbCopyA(cm_mountRoot, sizeof(cm_mountRoot), "/afs");
840         cm_mountRootLen = 4;
841         /* Don't log */
842     }
843
844     dummyLen = sizeof(buf);
845     code = RegQueryValueEx(parmKey, "CachePath", NULL, &regType,
846                             buf, &dummyLen);
847     if (code == ERROR_SUCCESS && buf[0]) {
848         if (regType == REG_EXPAND_SZ) {
849             dummyLen = ExpandEnvironmentStrings(buf, cm_CachePath, sizeof(cm_CachePath));
850             if (dummyLen > sizeof(cm_CachePath)) {
851                 afsi_log("Cache path [%s] longer than %d after expanding env strings", buf, sizeof(cm_CachePath));
852                 osi_panic("CachePath too long", __FILE__, __LINE__);
853             }
854         } else {
855             StringCbCopyA(cm_CachePath, sizeof(cm_CachePath), buf);
856         }
857         afsi_log("Cache path %s", cm_CachePath);
858     } else {
859         dummyLen = ExpandEnvironmentStrings("%TEMP%\\AFSCache", cm_CachePath, sizeof(cm_CachePath));
860         if (dummyLen > sizeof(cm_CachePath)) {
861             afsi_log("Cache path [%%TEMP%%\\AFSCache] longer than %d after expanding env strings", 
862                      sizeof(cm_CachePath));
863             osi_panic("CachePath too long", __FILE__, __LINE__);
864         }
865         afsi_log("Default cache path %s", cm_CachePath);
866     }
867
868     dummyLen = sizeof(virtualCache);
869     code = RegQueryValueEx(parmKey, "NonPersistentCaching", NULL, NULL,
870                             (LPBYTE)&virtualCache, &dummyLen);
871     afsi_log("Cache type is %s", (virtualCache?"VIRTUAL":"FILE"));
872
873     if (!virtualCache) {
874         dummyLen = sizeof(cm_ValidateCache);
875         code = RegQueryValueEx(parmKey, "ValidateCache", NULL, NULL,
876                                (LPBYTE)&cm_ValidateCache, &dummyLen);
877         if ( cm_ValidateCache < 0 || cm_ValidateCache > 2 )
878             cm_ValidateCache = 1;
879         switch (cm_ValidateCache) {
880         case 0:
881             afsi_log("Cache Validation disabled");
882             break;
883         case 1:
884             afsi_log("Cache Validation on Startup");
885             break;
886         case 2:
887             afsi_log("Cache Validation on Startup and Shutdown");
888             break;
889         }
890     }
891
892     dummyLen = sizeof(traceOnPanic);
893     code = RegQueryValueEx(parmKey, "TrapOnPanic", NULL, NULL,
894                             (BYTE *) &traceOnPanic, &dummyLen);
895     if (code != ERROR_SUCCESS)
896         traceOnPanic = 1;              /* log */
897     afsi_log("Set to %s on panic", traceOnPanic ? "trap" : "not trap");
898
899     dummyLen = sizeof(reportSessionStartups);
900     code = RegQueryValueEx(parmKey, "ReportSessionStartups", NULL, NULL,
901                             (BYTE *) &reportSessionStartups, &dummyLen);
902     if (code == ERROR_SUCCESS)
903         afsi_log("Session startups %s be recorded in the Event Log",
904                   reportSessionStartups ? "will" : "will not");
905     else {
906         reportSessionStartups = 0;
907         /* Don't log */
908     }
909
910     for ( i=0; i < MAXNUMSYSNAMES; i++ ) {
911         cm_sysNameList[i] = osi_Alloc(MAXSYSNAME);
912         cm_sysNameList[i][0] = '\0';
913     }
914     cm_sysName = cm_sysNameList[0];
915
916     dummyLen = sizeof(buf);
917     code = RegQueryValueEx(parmKey, "SysName", NULL, NULL, buf, &dummyLen);
918     if (code != ERROR_SUCCESS || !buf[0]) {
919 #if defined(_IA64_)
920         StringCbCopyA(buf, sizeof(buf), "ia64_win64");
921 #elif defined(_AMD64_)
922         StringCbCopyA(buf, sizeof(buf), "amd64_win64 x86_win32 i386_w2k");
923 #else /* assume x86 32-bit */
924         StringCbCopyA(buf, sizeof(buf), "x86_win32 i386_w2k i386_nt40");
925 #endif
926     }
927     afsi_log("Sys name %s", buf); 
928
929     /* breakup buf into individual search string entries */
930     for (p = q = buf; p < buf + dummyLen; p++)
931     {
932         if (*p == '\0' || isspace(*p)) {
933             memcpy(cm_sysNameList[cm_sysNameCount],q,p-q);
934             cm_sysNameList[cm_sysNameCount][p-q] = '\0';
935             cm_sysNameCount++;
936
937             do {
938                 if (*p == '\0')
939                     goto done_sysname;
940                 p++;
941             } while (*p == '\0' || isspace(*p));
942             q = p;
943             p--;
944         }
945     }
946   done_sysname:
947     StringCbCopyA(cm_sysName, MAXSYSNAME, cm_sysNameList[0]);
948
949     dummyLen = sizeof(cryptall);
950     code = RegQueryValueEx(parmKey, "SecurityLevel", NULL, NULL,
951                             (BYTE *) &cryptall, &dummyLen);
952     if (code == ERROR_SUCCESS) {
953         afsi_log("SecurityLevel is %s", cryptall?"crypt":"clear");
954     } else {
955         cryptall = 0;
956         afsi_log("Default SecurityLevel is clear");
957     }
958
959     if (cryptall)
960         LogEvent(EVENTLOG_INFORMATION_TYPE, MSG_CRYPT_ON);
961     else
962         LogEvent(EVENTLOG_INFORMATION_TYPE, MSG_CRYPT_OFF);
963
964     dummyLen = sizeof(cryptall);
965     code = RegQueryValueEx(parmKey, "ForceAnonVLDB", NULL, NULL,
966                             (BYTE *) &cm_anonvldb, &dummyLen);
967     afsi_log("CM ForceAnonVLDB is %s", cm_anonvldb ? "on" : "off");
968
969 #ifdef AFS_AFSDB_ENV
970     dummyLen = sizeof(cm_dnsEnabled);
971     code = RegQueryValueEx(parmKey, "UseDNS", NULL, NULL,
972                             (BYTE *) &cm_dnsEnabled, &dummyLen);
973     if (code == ERROR_SUCCESS) {
974         afsi_log("DNS %s be used to find AFS cell servers",
975                   cm_dnsEnabled ? "will" : "will not");
976     }       
977     else {
978         cm_dnsEnabled = 1;   /* default on */
979         afsi_log("Default to use DNS to find AFS cell servers");
980     }
981 #else /* AFS_AFSDB_ENV */
982     afsi_log("AFS not built with DNS support to find AFS cell servers");
983 #endif /* AFS_AFSDB_ENV */
984
985 #ifdef AFS_FREELANCE_CLIENT
986     dummyLen = sizeof(cm_freelanceEnabled);
987     code = RegQueryValueEx(parmKey, "FreelanceClient", NULL, NULL,
988                             (BYTE *) &cm_freelanceEnabled, &dummyLen);
989     if (code == ERROR_SUCCESS) {
990         afsi_log("Freelance client feature %s activated",
991                   cm_freelanceEnabled ? "is" : "is not");
992     }       
993     else {
994         cm_freelanceEnabled = 1;  /* default on */
995     }
996 #endif /* AFS_FREELANCE_CLIENT */
997
998     dummyLen = sizeof(smb_hideDotFiles);
999     code = RegQueryValueEx(parmKey, "HideDotFiles", NULL, NULL,
1000                            (BYTE *) &smb_hideDotFiles, &dummyLen);
1001     if (code != ERROR_SUCCESS) {
1002         smb_hideDotFiles = 1; /* default on */
1003     }
1004     afsi_log("Dot files/dirs will %sbe marked hidden",
1005               smb_hideDotFiles ? "" : "not ");
1006
1007     dummyLen = sizeof(smb_maxMpxRequests);
1008     code = RegQueryValueEx(parmKey, "MaxMpxRequests", NULL, NULL,
1009                            (BYTE *) &smb_maxMpxRequests, &dummyLen);
1010     if (code != ERROR_SUCCESS) {
1011         smb_maxMpxRequests = 50;
1012     }
1013     afsi_log("Maximum number of multiplexed sessions is %d", smb_maxMpxRequests);
1014
1015     dummyLen = sizeof(smb_maxVCPerServer);
1016     code = RegQueryValueEx(parmKey, "MaxVCPerServer", NULL, NULL,
1017                            (BYTE *) &smb_maxVCPerServer, &dummyLen);
1018     if (code != ERROR_SUCCESS) {
1019         smb_maxVCPerServer = 100;
1020     }
1021     afsi_log("Maximum number of VCs per server is %d", smb_maxVCPerServer);
1022
1023     dummyLen = sizeof(smb_authType);
1024     code = RegQueryValueEx(parmKey, "SMBAuthType", NULL, NULL,
1025                             (BYTE *) &smb_authType, &dummyLen);
1026
1027     if (code != ERROR_SUCCESS || 
1028          (smb_authType != SMB_AUTH_EXTENDED && smb_authType != SMB_AUTH_NTLM && smb_authType != SMB_AUTH_NONE)) {
1029         smb_authType = SMB_AUTH_EXTENDED; /* default is to use extended authentication */
1030     }
1031     afsi_log("SMB authentication type is %s", ((smb_authType == SMB_AUTH_NONE)?"NONE":((smb_authType == SMB_AUTH_EXTENDED)?"EXTENDED":"NTLM")));
1032
1033     dummyLen = sizeof(rx_nojumbo);
1034     code = RegQueryValueEx(parmKey, "RxNoJumbo", NULL, NULL,
1035                            (BYTE *) &rx_nojumbo, &dummyLen);
1036     if (code != ERROR_SUCCESS) {
1037         rx_nojumbo = 0;
1038     }
1039     if (rx_nojumbo)
1040         afsi_log("RX Jumbograms are disabled");
1041
1042     dummyLen = sizeof(rx_extraPackets);
1043     code = RegQueryValueEx(parmKey, "RxExtraPackets", NULL, NULL,
1044                            (BYTE *) &rx_extraPackets, &dummyLen);
1045     if (code != ERROR_SUCCESS) {
1046         rx_extraPackets = 120;
1047     }
1048     if (rx_extraPackets)
1049         afsi_log("RX extraPackets is %d", rx_extraPackets);
1050
1051     dummyLen = sizeof(rx_mtu);
1052     code = RegQueryValueEx(parmKey, "RxMaxMTU", NULL, NULL,
1053                            (BYTE *) &rx_mtu, &dummyLen);
1054     if (code != ERROR_SUCCESS || !rx_mtu) {
1055         rx_mtu = -1;
1056     }
1057     if (rx_mtu != -1)
1058         afsi_log("RX maximum MTU is %d", rx_mtu);
1059
1060     dummyLen = sizeof(rx_enable_peer_stats);
1061     code = RegQueryValueEx(parmKey, "RxEnablePeerStats", NULL, NULL,
1062                            (BYTE *) &rx_enable_peer_stats, &dummyLen);
1063     if (code != ERROR_SUCCESS) {
1064         rx_enable_peer_stats = 1;
1065     }
1066     if (rx_enable_peer_stats)
1067         afsi_log("RX Peer Statistics gathering is enabled");
1068     else
1069         afsi_log("RX Peer Statistics gathering is disabled");
1070
1071     dummyLen = sizeof(rx_enable_process_stats);
1072     code = RegQueryValueEx(parmKey, "RxEnableProcessStats", NULL, NULL,
1073                            (BYTE *) &rx_enable_process_stats, &dummyLen);
1074     if (code != ERROR_SUCCESS) {
1075         rx_enable_process_stats = 1;
1076     }
1077     if (rx_enable_process_stats)
1078         afsi_log("RX Process Statistics gathering is enabled");
1079     else
1080         afsi_log("RX Process Statistics gathering is disabled");
1081
1082     dummyLen = sizeof(dwValue);
1083     dwValue = 0;
1084     code = RegQueryValueEx(parmKey, "RxEnableHotThread", NULL, NULL,
1085                             (BYTE *) &dwValue, &dummyLen);
1086      if (code != ERROR_SUCCESS || dwValue != 0) {
1087          rx_EnableHotThread();
1088          afsi_log("RX Hot Thread is enabled");
1089      }
1090      else
1091          afsi_log("RX Hot Thread is disabled");
1092
1093     dummyLen = sizeof(DWORD);
1094     code = RegQueryValueEx(parmKey, "CallBackPort", NULL, NULL,
1095                            (BYTE *) &dwValue, &dummyLen);
1096     if (code == ERROR_SUCCESS) {
1097         cm_callbackport = (unsigned short) dwValue;
1098     }
1099     afsi_log("CM CallBackPort is %u", cm_callbackport);
1100
1101     dummyLen = sizeof(DWORD);
1102     code = RegQueryValueEx(parmKey, "EnableServerLocks", NULL, NULL,
1103                            (BYTE *) &dwValue, &dummyLen);
1104     if (code == ERROR_SUCCESS) {
1105         cm_enableServerLocks = (unsigned short) dwValue;
1106     } 
1107     switch (cm_enableServerLocks) {
1108     case 0:
1109         afsi_log("EnableServerLocks: never");
1110         break;
1111     case 2:
1112         afsi_log("EnableServerLocks: always");
1113         break;
1114     case 1:
1115     default:
1116         afsi_log("EnableServerLocks: server requested");
1117         break;
1118     }
1119
1120     dummyLen = sizeof(DWORD);
1121     code = RegQueryValueEx(parmKey, "DeleteReadOnly", NULL, NULL,
1122                            (BYTE *) &dwValue, &dummyLen);
1123     if (code == ERROR_SUCCESS) {
1124         cm_deleteReadOnly = (unsigned short) dwValue;
1125     } 
1126     afsi_log("CM DeleteReadOnly is %u", cm_deleteReadOnly);
1127     
1128 #ifdef USE_BPLUS
1129     dummyLen = sizeof(DWORD);
1130     code = RegQueryValueEx(parmKey, "BPlusTrees", NULL, NULL,
1131                            (BYTE *) &dwValue, &dummyLen);
1132     if (code == ERROR_SUCCESS) {
1133         cm_BPlusTrees = (unsigned short) dwValue;
1134     } 
1135     afsi_log("CM BPlusTrees is %u", cm_BPlusTrees);
1136
1137     if (cm_BPlusTrees && !cm_InitBPlusDir()) {
1138         cm_BPlusTrees = 0;
1139         afsi_log("CM BPlusTree initialization failure; disabled for this session");
1140     }
1141 #else
1142     afsi_log("CM BPlusTrees is not supported");
1143 #endif
1144
1145     if ((RegQueryValueEx( parmKey, "PrefetchExecutableExtensions", 0, 
1146                           &regType, NULL, &dummyLen) == ERROR_SUCCESS) &&
1147          (regType == REG_MULTI_SZ)) 
1148     {
1149         char * pSz;
1150         dummyLen += 3; /* in case the source string is not nul terminated */
1151         pSz = malloc(dummyLen);
1152         if ((RegQueryValueEx( parmKey, "PrefetchExecutableExtensions", 0, &regType, 
1153                              pSz, &dummyLen) == ERROR_SUCCESS) &&
1154              (regType == REG_MULTI_SZ))
1155         {
1156             int cnt;
1157             char * p;
1158
1159             for (cnt = 0, p = pSz; (p - pSz < dummyLen) && *p; cnt++, p += strlen(p) + 1);
1160
1161             smb_ExecutableExtensions = malloc(sizeof(char *) * (cnt+1));
1162
1163             for (cnt = 0, p = pSz; (p - pSz < dummyLen) && *p; cnt++, p += strlen(p) + 1)
1164             {
1165                 smb_ExecutableExtensions[cnt] = p;
1166                 afsi_log("PrefetchExecutableExtension: \"%s\"", p);
1167             }
1168             smb_ExecutableExtensions[cnt] = NULL;
1169         }
1170         
1171         if (!smb_ExecutableExtensions)
1172             free(pSz);
1173     }
1174     if (!smb_ExecutableExtensions)
1175         afsi_log("No PrefetchExecutableExtensions");
1176
1177     dummyLen = sizeof(DWORD);
1178     code = RegQueryValueEx(parmKey, "OfflineReadOnlyIsValid", NULL, NULL,
1179                            (BYTE *) &dwValue, &dummyLen);
1180     if (code == ERROR_SUCCESS) {
1181         cm_OfflineROIsValid = (unsigned short) dwValue;
1182     } 
1183     afsi_log("CM OfflineReadOnlyIsValid is %u", cm_deleteReadOnly);
1184     
1185     dummyLen = sizeof(DWORD);
1186     code = RegQueryValueEx(parmKey, "GiveUpAllCallBacks", NULL, NULL,
1187                            (BYTE *) &dwValue, &dummyLen);
1188     if (code == ERROR_SUCCESS) {
1189         cm_giveUpAllCBs = (unsigned short) dwValue;
1190     } 
1191     afsi_log("CM GiveUpAllCallBacks is %u", cm_giveUpAllCBs);
1192
1193     dummyLen = sizeof(DWORD);
1194     code = RegQueryValueEx(parmKey, "FollowBackupPath", NULL, NULL,
1195                            (BYTE *) &dwValue, &dummyLen);
1196     if (code == ERROR_SUCCESS) {
1197         cm_followBackupPath = (unsigned short) dwValue;
1198     } 
1199     afsi_log("CM FollowBackupPath is %u", cm_followBackupPath);
1200
1201     RegCloseKey (parmKey);
1202
1203     cacheBlocks = ((afs_uint64)cacheSize * 1024) / blockSize;
1204         
1205     /* get network related info */
1206     cm_noIPAddr = CM_MAXINTERFACE_ADDR;
1207     code = syscfg_GetIFInfo(&cm_noIPAddr,
1208                              cm_IPAddr, cm_SubnetMask,
1209                              cm_NetMtu, cm_NetFlags);
1210
1211     if ( (cm_noIPAddr <= 0) || (code <= 0 ) )
1212         afsi_log("syscfg_GetIFInfo error code %d", code);
1213     else
1214         afsi_log("First Network address %x SubnetMask %x",
1215                   cm_IPAddr[0], cm_SubnetMask[0]);
1216
1217     /*
1218      * Save client configuration for GetCacheConfig requests
1219      */
1220     cm_initParams.nChunkFiles = 0;
1221     cm_initParams.nStatCaches = stats;
1222     cm_initParams.nDataCaches = (afs_uint32)(cacheBlocks > 0xFFFFFFFF ? 0xFFFFFFFF : cacheBlocks);
1223     cm_initParams.nVolumeCaches = volumes;
1224     cm_initParams.firstChunkSize = cm_chunkSize;
1225     cm_initParams.otherChunkSize = cm_chunkSize;
1226     cm_initParams.cacheSize = cacheSize;
1227     cm_initParams.setTime = 0;
1228     cm_initParams.memCache = 1;
1229
1230     /* Ensure the AFS Netbios Name is registered to allow loopback access */
1231     configureBackConnectionHostNames();
1232
1233     /* init user daemon, and other packages */
1234     cm_InitUser();
1235
1236     cm_InitConn();
1237
1238     cm_InitServer();
1239         
1240     cm_InitIoctl();
1241         
1242     smb_InitIoctl();
1243         
1244     cm_InitCallback();
1245
1246     code = cm_InitMappedMemory(virtualCache, cm_CachePath, stats, volumes, cells, cm_chunkSize, cacheBlocks, blockSize);
1247     afsi_log("cm_InitMappedMemory code %x", code);
1248     if (code != 0) {
1249         *reasonP = "error initializing cache file";
1250         return -1;
1251     }
1252
1253 #ifdef AFS_AFSDB_ENV
1254 #if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0500)
1255     if (cm_InitDNS(cm_dnsEnabled) == -1)
1256         cm_dnsEnabled = 0;  /* init failed, so deactivate */
1257     afsi_log("cm_InitDNS %d", cm_dnsEnabled);
1258 #endif
1259 #endif
1260
1261     /* Set RX parameters before initializing RX */
1262     if ( rx_nojumbo ) {
1263         rx_SetNoJumbo();
1264         afsi_log("rx_SetNoJumbo successful");
1265     }
1266
1267     if ( rx_mtu != -1 ) {
1268         rx_SetMaxMTU(rx_mtu);
1269         afsi_log("rx_SetMaxMTU %d successful", rx_mtu);
1270     }
1271
1272     /* initialize RX, and tell it to listen to the callbackport, 
1273      * which is used for callback RPC messages.
1274      */
1275     code = rx_Init(htons(cm_callbackport));
1276     if (code != 0) {
1277         afsi_log("rx_Init code %x - retrying with a random port number", code);
1278         code = rx_Init(0);
1279     }
1280     afsi_log("rx_Init code %x", code);
1281     if (code != 0) {
1282         *reasonP = "afsd: failed to init rx client";
1283         return -1;
1284     }
1285
1286     /* create an unauthenticated service #1 for callbacks */
1287     nullServerSecurityClassp = rxnull_NewServerSecurityObject();
1288     serverp = rx_NewService(0, 1, "AFS", &nullServerSecurityClassp, 1,
1289                              RXAFSCB_ExecuteRequest);
1290     afsi_log("rx_NewService addr %x", PtrToUlong(serverp));
1291     if (serverp == NULL) {
1292         *reasonP = "unknown error";
1293         return -1;
1294     }
1295
1296     nullServerSecurityClassp = rxnull_NewServerSecurityObject();
1297     serverp = rx_NewService(0, RX_STATS_SERVICE_ID, "rpcstats",
1298                              &nullServerSecurityClassp, 1, RXSTATS_ExecuteRequest);
1299     afsi_log("rx_NewService addr %x", PtrToUlong(serverp));
1300     if (serverp == NULL) {
1301         *reasonP = "unknown error";
1302         return -1;
1303     }
1304         
1305     /* start server threads, *not* donating this one to the pool */
1306     rx_StartServer(0);
1307     afsi_log("rx_StartServer");
1308
1309     if (rx_enable_peer_stats)
1310         rx_enablePeerRPCStats();
1311
1312     if (rx_enable_process_stats)
1313         rx_enableProcessRPCStats();
1314
1315     code = cm_GetRootCellName(rootCellName);
1316     afsi_log("cm_GetRootCellName code %d, cm_freelanceEnabled= %d, rcn= %s", 
1317               code, cm_freelanceEnabled, (code ? "<none>" : rootCellName));
1318     if (code != 0 && !cm_freelanceEnabled) 
1319     {
1320         *reasonP = "can't find root cell name in " AFS_CELLSERVDB;
1321         return -1;
1322     }   
1323     else if (cm_freelanceEnabled)
1324         cm_data.rootCellp = NULL;
1325
1326     if (code == 0 && !cm_freelanceEnabled) 
1327     {
1328         cm_data.rootCellp = cm_GetCell(rootCellName, CM_FLAG_CREATE);
1329         afsi_log("cm_GetCell addr %x", PtrToUlong(cm_data.rootCellp));
1330         if (cm_data.rootCellp == NULL) 
1331         {
1332             *reasonP = "can't find root cell in " AFS_CELLSERVDB;
1333             return -1;
1334         }
1335     }
1336
1337 #ifdef AFS_FREELANCE_CLIENT
1338     if (cm_freelanceEnabled)
1339         cm_InitFreelance();
1340 #endif
1341
1342     /* Initialize the RPC server for session keys */
1343     RpcInit();
1344
1345     afsd_InitServerPreferences();
1346     return 0;
1347 }
1348
1349 int afsd_ShutdownCM(void)
1350 {
1351     cm_ReleaseSCache(cm_data.rootSCachep);
1352
1353     return 0;
1354 }
1355
1356 int afsd_InitDaemons(char **reasonP)
1357 {
1358     long code;
1359     cm_req_t req;
1360
1361     cm_InitReq(&req);
1362
1363     /* this should really be in an init daemon from here on down */
1364
1365     if (!cm_freelanceEnabled) {
1366         int attempts = 10;
1367
1368         osi_Log0(afsd_logp, "Loading Root Volume from cell");
1369         do {
1370             code = cm_FindVolumeByName(cm_data.rootCellp, cm_rootVolumeName, cm_rootUserp,
1371                                        &req, CM_GETVOL_FLAG_CREATE, &cm_data.rootVolumep);
1372             afsi_log("cm_FindVolumeByName code %x root vol %x", code,
1373                       (code ? (cm_volume_t *)-1 : cm_data.rootVolumep));
1374         } while (code && --attempts);
1375         if (code != 0) {
1376             *reasonP = "can't find root volume in root cell";
1377             return -1;
1378         }
1379     }
1380
1381     /* compute the root fid */
1382     if (!cm_freelanceEnabled) {
1383         cm_SetFid(&cm_data.rootFid, cm_data.rootCellp->cellID, cm_GetROVolumeID(cm_data.rootVolumep), 1, 1);
1384     }
1385     else
1386         cm_FakeRootFid(&cm_data.rootFid);
1387         
1388     code = cm_GetSCache(&cm_data.rootFid, &cm_data.rootSCachep, cm_rootUserp, &req);
1389     afsi_log("cm_GetSCache code %x scache %x", code,
1390              (code ? (cm_scache_t *)-1 : cm_data.rootSCachep));
1391     if (code != 0) {
1392         *reasonP = "unknown error";
1393         return -1;
1394     }
1395
1396     cm_InitDaemon(numBkgD);
1397     afsi_log("cm_InitDaemon complete");
1398
1399     return 0;
1400 }
1401
1402 int afsd_InitSMB(char **reasonP, void *aMBfunc)
1403 {
1404     HKEY parmKey;
1405     DWORD dummyLen;
1406     DWORD dwValue;
1407     DWORD code;
1408
1409     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_OPENAFS_SUBKEY,
1410                          0, KEY_QUERY_VALUE, &parmKey);
1411     if (code == ERROR_SUCCESS) {
1412         dummyLen = sizeof(DWORD);
1413         code = RegQueryValueEx(parmKey, "StoreAnsiFilenames", NULL, NULL,
1414                                 (BYTE *) &dwValue, &dummyLen);
1415         if (code == ERROR_SUCCESS)
1416             smb_StoreAnsiFilenames = dwValue ? 1 : 0;
1417         afsi_log("StoreAnsiFilenames = %d", smb_StoreAnsiFilenames);
1418
1419         dummyLen = sizeof(DWORD);
1420         code = RegQueryValueEx(parmKey, "EnableSMBAsyncStore", NULL, NULL,
1421                                 (BYTE *) &dwValue, &dummyLen);
1422         if (code == ERROR_SUCCESS)
1423             smb_AsyncStore = dwValue == 2 ? 2 : (dwValue ? 1 : 0);
1424         afsi_log("EnableSMBAsyncStore = %d", smb_AsyncStore);
1425
1426         dummyLen = sizeof(DWORD);
1427         code = RegQueryValueEx(parmKey, "SMBAsyncStoreSize", NULL, NULL,
1428                                 (BYTE *) &dwValue, &dummyLen);
1429         if (code == ERROR_SUCCESS) {
1430             /* Should check for >= blocksize && <= chunksize && round down to multiple of blocksize */
1431             if (dwValue > cm_chunkSize)
1432                 smb_AsyncStoreSize = cm_chunkSize;
1433             else if (dwValue <  cm_data.buf_blockSize)
1434                 smb_AsyncStoreSize = cm_data.buf_blockSize;
1435             else
1436                 smb_AsyncStoreSize = (dwValue & ~(cm_data.buf_blockSize-1));
1437         } else 
1438             smb_AsyncStoreSize = CM_CONFIGDEFAULT_ASYNCSTORESIZE;
1439         afsi_log("SMBAsyncStoreSize = %d", smb_AsyncStoreSize);
1440         
1441         RegCloseKey (parmKey);
1442     }
1443
1444     /* Do this last so that we don't handle requests before init is done.
1445      * Here we initialize the SMB listener.
1446      */
1447     smb_Init(afsd_logp, smb_UseV3, numSvThreads, aMBfunc);
1448     afsi_log("smb_Init complete");
1449
1450     return 0;
1451 }
1452
1453 #ifdef ReadOnly
1454 #undef ReadOnly
1455 #endif
1456
1457 #ifdef File
1458 #undef File
1459 #endif
1460
1461 #pragma pack( push, before_imagehlp, 8 )
1462 #include <imagehlp.h>
1463 #pragma pack( pop, before_imagehlp )
1464
1465 #define MAXNAMELEN 1024
1466
1467 void afsd_printStack(HANDLE hThread, CONTEXT *c)
1468 {
1469     HANDLE hProcess = GetCurrentProcess();
1470     int frameNum;
1471 #if defined(_AMD64_)
1472     DWORD64 offset;
1473 #elif defined(_X86_)
1474     DWORD offset;
1475 #endif
1476     DWORD symOptions;
1477     char functionName[MAXNAMELEN];
1478   
1479     IMAGEHLP_MODULE Module;
1480     IMAGEHLP_LINE Line;
1481   
1482     STACKFRAME s;
1483     IMAGEHLP_SYMBOL *pSym;
1484   
1485     afsi_log_useTimestamp = 0;
1486   
1487     pSym = (IMAGEHLP_SYMBOL *) GlobalAlloc(0, sizeof (IMAGEHLP_SYMBOL) + MAXNAMELEN);
1488   
1489     memset( &s, '\0', sizeof s );
1490     if (!SymInitialize(hProcess, NULL, 1) )
1491     {
1492         afsi_log("SymInitialize(): GetLastError() = %lu\n", GetLastError() );
1493       
1494         SymCleanup( hProcess );
1495         GlobalFree(pSym);
1496       
1497         return;
1498     }
1499   
1500     symOptions = SymGetOptions();
1501     symOptions |= SYMOPT_LOAD_LINES;
1502     symOptions &= ~SYMOPT_UNDNAME;
1503     SymSetOptions( symOptions );
1504   
1505     /*
1506      * init STACKFRAME for first call
1507      * Notes: AddrModeFlat is just an assumption. I hate VDM debugging.
1508      * Notes: will have to be #ifdef-ed for Alphas; MIPSes are dead anyway,
1509      * and good riddance.
1510      */
1511 #if defined (_ALPHA_) || defined (_MIPS_) || defined (_PPC_)
1512 #error The STACKFRAME initialization in afsd_printStack() for this platform
1513 #error must be properly configured
1514 #elif defined(_AMD64_)
1515     s.AddrPC.Offset = c->Rip;
1516     s.AddrPC.Mode = AddrModeFlat;
1517     s.AddrFrame.Offset = c->Rbp;
1518     s.AddrFrame.Mode = AddrModeFlat;
1519 #else
1520     s.AddrPC.Offset = c->Eip;
1521     s.AddrPC.Mode = AddrModeFlat;
1522     s.AddrFrame.Offset = c->Ebp;
1523     s.AddrFrame.Mode = AddrModeFlat;
1524 #endif
1525
1526     memset( pSym, '\0', sizeof (IMAGEHLP_SYMBOL) + MAXNAMELEN );
1527     pSym->SizeOfStruct = sizeof (IMAGEHLP_SYMBOL);
1528     pSym->MaxNameLength = MAXNAMELEN;
1529   
1530     memset( &Line, '\0', sizeof Line );
1531     Line.SizeOfStruct = sizeof Line;
1532   
1533     memset( &Module, '\0', sizeof Module );
1534     Module.SizeOfStruct = sizeof Module;
1535   
1536     offset = 0;
1537   
1538     afsi_log("\n--# FV EIP----- RetAddr- FramePtr StackPtr Symbol" );
1539   
1540     for ( frameNum = 0; ; ++ frameNum )
1541     {
1542         /*
1543          * get next stack frame (StackWalk(), SymFunctionTableAccess(), 
1544          * SymGetModuleBase()). if this returns ERROR_INVALID_ADDRESS (487) or
1545          * ERROR_NOACCESS (998), you can assume that either you are done, or
1546          * that the stack is so hosed that the next deeper frame could not be
1547          * found.
1548          */
1549         if ( ! StackWalk( IMAGE_FILE_MACHINE_I386, hProcess, hThread, &s, c, 
1550                           NULL, SymFunctionTableAccess, SymGetModuleBase, 
1551                           NULL ) )
1552             break;
1553       
1554         /* display its contents */
1555         afsi_log("\n%3d %c%c %08lx %08lx %08lx %08lx ",
1556                  frameNum, s.Far? 'F': '.', s.Virtual? 'V': '.',
1557                  s.AddrPC.Offset, s.AddrReturn.Offset,
1558                  s.AddrFrame.Offset, s.AddrStack.Offset );
1559       
1560         if ( s.AddrPC.Offset == 0 )
1561         {
1562             afsi_log("(-nosymbols- PC == 0)" );
1563         }
1564         else
1565         { 
1566             /* show procedure info from a valid PC */
1567             if (!SymGetSymFromAddr(hProcess, s.AddrPC.Offset, &offset, pSym))
1568             {
1569                 if ( GetLastError() != ERROR_INVALID_ADDRESS )
1570                 {
1571                     afsi_log("SymGetSymFromAddr(): errno = %lu", 
1572                              GetLastError());
1573                 }
1574             }
1575             else
1576             {
1577                 UnDecorateSymbolName(pSym->Name, functionName, MAXNAMELEN, 
1578                                      UNDNAME_NAME_ONLY);
1579                 afsi_log("%s", functionName );
1580
1581                 if ( offset != 0 )
1582                 {
1583                     afsi_log(" %+ld bytes", (long) offset);
1584                 }
1585             }
1586
1587             if (!SymGetLineFromAddr(hProcess, s.AddrPC.Offset, &offset, &Line))
1588             {
1589                 if (GetLastError() != ERROR_INVALID_ADDRESS)
1590                 {
1591                     afsi_log("Error: SymGetLineFromAddr(): errno = %lu", 
1592                              GetLastError());
1593                 }
1594             }
1595             else
1596             {
1597                 afsi_log("    Line: %s(%lu) %+ld bytes", Line.FileName, 
1598                          Line.LineNumber, offset);
1599             }
1600         }
1601       
1602         /* no return address means no deeper stackframe */
1603         if (s.AddrReturn.Offset == 0)
1604         {
1605             SetLastError(0);
1606             break;
1607         }
1608     }
1609   
1610     if (GetLastError() != 0)
1611     {
1612         afsi_log("\nStackWalk(): errno = %lu\n", GetLastError());
1613     }
1614   
1615     SymCleanup(hProcess);
1616     GlobalFree(pSym);
1617 }
1618
1619 #ifdef _DEBUG
1620 static DWORD *afsd_crtDbgBreakCurrent = NULL;
1621 static DWORD afsd_crtDbgBreaks[256];
1622 #endif
1623
1624 static EFaultRepRetVal (WINAPI *pReportFault)(LPEXCEPTION_POINTERS pep, DWORD dwMode) = NULL;
1625 static BOOL (WINAPI *pMiniDumpWriteDump)(HANDLE hProcess,DWORD ProcessId,HANDLE hFile,
1626                                   MINIDUMP_TYPE DumpType,
1627                                   PMINIDUMP_EXCEPTION_INFORMATION ExceptionParam,
1628                                   PMINIDUMP_USER_STREAM_INFORMATION UserStreamParam,
1629                                   PMINIDUMP_CALLBACK_INFORMATION CallbackParam) = NULL;
1630
1631
1632 static HANDLE
1633 OpenDumpFile(void)
1634 {
1635     char wd[256];
1636     DWORD code;
1637
1638     code = GetEnvironmentVariable("TEMP", wd, sizeof(wd));
1639     if ( code == 0 || code > sizeof(wd) )
1640     {
1641         if (!GetWindowsDirectory(wd, sizeof(wd)))
1642             return NULL;
1643     }
1644     StringCbCatA(wd, sizeof(wd), "\\afsd.dmp");
1645     return CreateFile( wd, GENERIC_WRITE, FILE_SHARE_READ, NULL,
1646                             CREATE_ALWAYS, FILE_FLAG_WRITE_THROUGH, NULL);
1647 }
1648
1649 void 
1650 GenerateMiniDump(PEXCEPTION_POINTERS ep)
1651 {
1652         if (IsDebuggerPresent())
1653                 return;
1654
1655     if (ep == NULL) 
1656     {
1657         // Generate exception to get proper context in dump
1658         __try 
1659         {
1660             RaiseException(DBG_CONTINUE, 0, 0, NULL);
1661         } 
1662         __except(GenerateMiniDump(GetExceptionInformation()), EXCEPTION_CONTINUE_EXECUTION) 
1663         {
1664         }
1665     } 
1666     else
1667     {
1668         MINIDUMP_EXCEPTION_INFORMATION eInfo;
1669         HANDLE hFile = NULL;
1670         HMODULE hDbgHelp = NULL;
1671
1672         hDbgHelp = LoadLibrary("Dbghelp.dll");
1673         if ( hDbgHelp == NULL )
1674             return;
1675
1676         (FARPROC) pMiniDumpWriteDump = GetProcAddress(hDbgHelp, "MiniDumpWriteDump");
1677         if ( pMiniDumpWriteDump == NULL ) {
1678             FreeLibrary(hDbgHelp);
1679             return;
1680         }
1681
1682         hFile = OpenDumpFile();
1683
1684         if ( hFile ) {
1685             HKEY parmKey;
1686             DWORD dummyLen;
1687             DWORD dwValue;
1688             DWORD code;
1689             DWORD dwMiniDumpType = MiniDumpWithDataSegs;
1690
1691             code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_OPENAFS_SUBKEY,
1692                                  0, KEY_QUERY_VALUE, &parmKey);
1693             if (code == ERROR_SUCCESS) {
1694                 dummyLen = sizeof(DWORD);
1695                 code = RegQueryValueEx(parmKey, "MiniDumpType", NULL, NULL,
1696                                         (BYTE *) &dwValue, &dummyLen);
1697                 if (code == ERROR_SUCCESS)
1698                     dwMiniDumpType = dwValue;
1699                 RegCloseKey (parmKey);
1700             }
1701
1702             eInfo.ThreadId = GetCurrentThreadId();
1703             eInfo.ExceptionPointers = ep;
1704             eInfo.ClientPointers = FALSE;
1705
1706             pMiniDumpWriteDump( GetCurrentProcess(), GetCurrentProcessId(),
1707                                 hFile, dwMiniDumpType, ep ? &eInfo : NULL,
1708                                 NULL, NULL);
1709
1710             CloseHandle(hFile);
1711         }
1712         FreeLibrary(hDbgHelp);
1713     }
1714 }
1715
1716 LONG __stdcall afsd_ExceptionFilter(EXCEPTION_POINTERS *ep)
1717 {
1718     CONTEXT context;
1719 #ifdef _DEBUG  
1720     BOOL allocRequestBrk = FALSE;
1721 #endif 
1722     HMODULE hLib = NULL;
1723   
1724     afsi_log("UnhandledException : code : 0x%x, address: 0x%x\n", 
1725              ep->ExceptionRecord->ExceptionCode, 
1726              ep->ExceptionRecord->ExceptionAddress);
1727            
1728 #ifdef _DEBUG
1729     if (afsd_crtDbgBreakCurrent && 
1730         *afsd_crtDbgBreakCurrent == _CrtSetBreakAlloc(*afsd_crtDbgBreakCurrent))
1731     { 
1732         allocRequestBrk = TRUE;
1733         afsi_log("Breaking on alloc request # %d\n", *afsd_crtDbgBreakCurrent);
1734     }
1735 #endif
1736            
1737     /* save context if we want to print the stack information */
1738     context = *ep->ContextRecord;
1739            
1740     afsd_printStack(GetCurrentThread(), &context);
1741
1742     GenerateMiniDump(ep);
1743
1744     hLib = LoadLibrary("Faultrep.dll");
1745     if ( hLib ) {
1746         (FARPROC) pReportFault = GetProcAddress(hLib, "ReportFault");
1747         if ( pReportFault )
1748             pReportFault(ep, 0);
1749         FreeLibrary(hLib);
1750     }
1751
1752     if (ep->ExceptionRecord->ExceptionCode == EXCEPTION_BREAKPOINT)
1753     {
1754         afsi_log("\nEXCEPTION_BREAKPOINT - continue execution ...\n");
1755     
1756 #ifdef _DEBUG
1757         if (allocRequestBrk)
1758         {
1759             afsd_crtDbgBreakCurrent++;
1760             _CrtSetBreakAlloc(*afsd_crtDbgBreakCurrent);
1761         }
1762 #endif         
1763 #if defined(_X86)    
1764         ep->ContextRecord->Eip++;
1765 #endif
1766 #if defined(_AMD64_)
1767         ep->ContextRecord->Rip++;
1768 #endif
1769         return EXCEPTION_CONTINUE_EXECUTION;
1770     }
1771     else
1772     {
1773         return EXCEPTION_CONTINUE_SEARCH;
1774     }
1775 }
1776   
1777 void afsd_SetUnhandledExceptionFilter()
1778 {
1779     SetUnhandledExceptionFilter(afsd_ExceptionFilter);
1780 }
1781   
1782 #ifdef _DEBUG
1783 void afsd_DbgBreakAllocInit()
1784 {
1785     memset(afsd_crtDbgBreaks, -1, sizeof(afsd_crtDbgBreaks));
1786     afsd_crtDbgBreakCurrent = afsd_crtDbgBreaks;
1787 }
1788   
1789 void afsd_DbgBreakAdd(DWORD requestNumber)
1790 {
1791     int i;
1792     for (i = 0; i < sizeof(afsd_crtDbgBreaks) - 1; i++)
1793         {
1794         if (afsd_crtDbgBreaks[i] == -1)
1795             {
1796             break;
1797             }
1798         }
1799     afsd_crtDbgBreaks[i] = requestNumber;
1800
1801     _CrtSetBreakAlloc(afsd_crtDbgBreaks[0]);
1802 }
1803 #endif