windows-max-volumes-20080314
[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 dwValue;
558     DWORD rx_enable_peer_stats;
559     DWORD rx_enable_process_stats;
560     long traceBufSize;
561     long maxcpus;
562     long ltt, ltto;
563     long rx_nojumbo;
564     long virtualCache = 0;
565     char rootCellName[256];
566     struct rx_service *serverp;
567     static struct rx_securityClass *nullServerSecurityClassp;
568     struct hostent *thp;
569     char *msgBuf;
570     char buf[1024];
571     HKEY parmKey;
572     DWORD dummyLen;
573     DWORD regType;
574     long code;
575     /*int freelanceEnabled;*/
576     WSADATA WSAjunk;
577     int i;
578     char *p, *q; 
579     int cm_noIPAddr;         /* number of client network interfaces */
580     int cm_IPAddr[CM_MAXINTERFACE_ADDR];    /* client's IP address in host order */
581     int cm_SubnetMask[CM_MAXINTERFACE_ADDR];/* client's subnet mask in host order*/
582     int cm_NetMtu[CM_MAXINTERFACE_ADDR];    /* client's MTU sizes */
583     int cm_NetFlags[CM_MAXINTERFACE_ADDR];  /* network flags */
584
585     WSAStartup(0x0101, &WSAjunk);
586
587     afsd_initUpperCaseTable();
588     init_et_to_sys_error();
589
590     /* setup osidebug server at RPC slot 1000 */
591     osi_LongToUID(1000, &debugID);
592     code = osi_InitDebug(&debugID);
593     afsi_log("osi_InitDebug code %d", code);
594
595     //  osi_LockTypeSetDefault("stat"); /* comment this out for speed */
596     if (code != 0) {
597         if (code == RPC_S_NO_PROTSEQS)
598             *reasonP = "No RPC Protocol Sequences registered.  Check HKLM\\SOFTWARE\\Microsoft\\RPC\\ClientProtocols";
599         else
600             *reasonP = "unknown error";
601         return -1;
602     }
603
604     /* who are we ? */
605     gethostname(cm_HostName, sizeof(cm_HostName));
606     afsi_log("gethostname %s", cm_HostName);
607     thp = gethostbyname(cm_HostName);
608     memcpy(&cm_HostAddr, thp->h_addr_list[0], 4);
609
610     /* seed random number generator */
611     srand(ntohl(cm_HostAddr));
612
613     /* Look up configuration parameters in Registry */
614     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
615                          0, KEY_QUERY_VALUE, &parmKey);
616     if (code != ERROR_SUCCESS) {
617         FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM
618                        | FORMAT_MESSAGE_ALLOCATE_BUFFER,
619                        NULL, code, 0, (LPTSTR)&msgBuf, 0, NULL);
620         StringCbPrintfA(buf, sizeof(buf),
621                          "Failure in configuration while opening Registry: %s",
622                          msgBuf);
623         osi_panic(buf, __FILE__, __LINE__);
624     }
625
626     dummyLen = sizeof(maxcpus);
627     code = RegQueryValueEx(parmKey, "MaxCPUs", NULL, NULL,
628                             (BYTE *) &maxcpus, &dummyLen);
629     if (code == ERROR_SUCCESS) {
630         HANDLE hProcess;
631         DWORD_PTR processAffinityMask, systemAffinityMask;
632
633         hProcess = OpenProcess(PROCESS_QUERY_INFORMATION|PROCESS_SET_INFORMATION,
634                                FALSE, GetCurrentProcessId());
635         if ( hProcess != NULL &&
636              GetProcessAffinityMask(hProcess, &processAffinityMask, &systemAffinityMask) )
637         {
638             int i, n, bits;
639             DWORD_PTR mask, newAffinityMask;
640
641 #if defined(_WIN64)
642             bits = 64;
643 #else
644             bits = 32;
645 #endif
646             for ( i=0, n=0, mask=1, newAffinityMask=0; i<bits && n<maxcpus; i++ ) {
647                 if ( processAffinityMask & mask ) {
648                     newAffinityMask |= mask;
649                     n++;
650                 }
651                 mask *= 2;
652             }
653
654             SetProcessAffinityMask(hProcess, newAffinityMask);
655             CloseHandle(hProcess);
656             afsi_log("CPU Restrictions set to %d cpu(s); %d cpu(s) available", maxcpus, n);
657         } else {
658             afsi_log("CPU Restrictions set to %d cpu(s); unable to access process information", maxcpus);
659         }
660     }
661
662     dummyLen = sizeof(TraceOption);
663     code = RegQueryValueEx(parmKey, "TraceOption", NULL, NULL,
664                             (BYTE *) &TraceOption, &dummyLen);
665     afsi_log("Trace Options = %lX", TraceOption);
666
667     dummyLen = sizeof(traceBufSize);
668     code = RegQueryValueEx(parmKey, "TraceBufferSize", NULL, NULL,
669                             (BYTE *) &traceBufSize, &dummyLen);
670     if (code == ERROR_SUCCESS)
671         afsi_log("Trace Buffer size %d", traceBufSize);
672     else {
673         traceBufSize = CM_CONFIGDEFAULT_TRACEBUFSIZE;
674         afsi_log("Default trace buffer size %d", traceBufSize);
675     }
676
677     /* setup and enable debug log */
678     afsd_logp = osi_LogCreate("afsd", traceBufSize);
679     afsi_log("osi_LogCreate log addr %x", PtrToUlong(afsd_logp));
680     if ((TraceOption & 0x8)
681 #ifdef DEBUG
682          || 1
683 #endif
684          ) {
685         osi_LogEnable(afsd_logp);
686     }
687     logReady = 1;
688
689     osi_Log0(afsd_logp, "Log init");
690
691     dummyLen = sizeof(cacheSize);
692     code = RegQueryValueEx(parmKey, "CacheSize", NULL, NULL,
693                             (BYTE *) &cacheSize, &dummyLen);
694     if (code == ERROR_SUCCESS)
695         afsi_log("Cache size %d", cacheSize);
696     else {
697         cacheSize = CM_CONFIGDEFAULT_CACHESIZE;
698         afsi_log("Default cache size %d", cacheSize);
699     }
700
701     dummyLen = sizeof(logChunkSize);
702     code = RegQueryValueEx(parmKey, "ChunkSize", NULL, NULL,
703                             (BYTE *) &logChunkSize, &dummyLen);
704     if (code == ERROR_SUCCESS) {
705         if (logChunkSize < 12 || logChunkSize > 30) {
706             afsi_log("Invalid chunk size %d, using default",
707                       logChunkSize);
708             logChunkSize = CM_CONFIGDEFAULT_CHUNKSIZE;
709         }
710     } else {
711         logChunkSize = CM_CONFIGDEFAULT_CHUNKSIZE;
712     }
713     cm_logChunkSize = logChunkSize;
714     cm_chunkSize = 1 << logChunkSize;
715     afsi_log("Chunk size %u (%d)", cm_chunkSize, cm_logChunkSize);
716
717     dummyLen = sizeof(blockSize);
718     code = RegQueryValueEx(parmKey, "blockSize", NULL, NULL,
719                             (BYTE *) &blockSize, &dummyLen);
720     if (code == ERROR_SUCCESS) {
721         if (blockSize < 1 || 
722             (blockSize > 1024 && (blockSize % CM_CONFIGDEFAULT_BLOCKSIZE != 0))) 
723         {
724             afsi_log("Invalid block size %u specified, using default", blockSize);
725             blockSize = CM_CONFIGDEFAULT_BLOCKSIZE;
726         } else {
727             /* 
728              * if the blockSize is less than 1024 we permit the blockSize to be
729              * specified in multiples of the default blocksize
730              */
731             if (blockSize <= 1024)
732                 blockSize *= CM_CONFIGDEFAULT_BLOCKSIZE;
733         }
734     } else {
735         blockSize = CM_CONFIGDEFAULT_BLOCKSIZE;
736     }
737     if (blockSize > cm_chunkSize) {
738         afsi_log("Block size (%d) cannot be larger than Chunk size (%d).", 
739                   blockSize, cm_chunkSize);
740         blockSize = cm_chunkSize;
741     }
742     if (cm_chunkSize % blockSize != 0) {
743         afsi_log("Block size (%d) must be a factor of Chunk size (%d).",
744                   blockSize, cm_chunkSize);
745         blockSize = CM_CONFIGDEFAULT_BLOCKSIZE;
746     }
747     afsi_log("Block size %u", blockSize);
748
749     dummyLen = sizeof(numBkgD);
750     code = RegQueryValueEx(parmKey, "Daemons", NULL, NULL,
751                             (BYTE *) &numBkgD, &dummyLen);
752     if (code == ERROR_SUCCESS) {
753         if (numBkgD > CM_MAX_DAEMONS)
754             numBkgD = CM_MAX_DAEMONS;
755         afsi_log("%d background daemons", numBkgD);
756     } else {
757         numBkgD = CM_CONFIGDEFAULT_DAEMONS;
758         afsi_log("Defaulting to %d background daemons", numBkgD);
759     }
760
761     dummyLen = sizeof(numSvThreads);
762     code = RegQueryValueEx(parmKey, "ServerThreads", NULL, NULL,
763                             (BYTE *) &numSvThreads, &dummyLen);
764     if (code == ERROR_SUCCESS)
765         afsi_log("%d server threads", numSvThreads);
766     else {
767         numSvThreads = CM_CONFIGDEFAULT_SVTHREADS;
768         afsi_log("Defaulting to %d server threads", numSvThreads);
769     }
770
771     dummyLen = sizeof(stats);
772     code = RegQueryValueEx(parmKey, "Stats", NULL, NULL,
773                             (BYTE *) &stats, &dummyLen);
774     if (code == ERROR_SUCCESS)
775         afsi_log("Status cache entries: %d", stats);
776     else {
777         stats = CM_CONFIGDEFAULT_STATS;
778         afsi_log("Default status cache entries: %d", stats);
779     }
780
781     dummyLen = sizeof(volumes);
782     code = RegQueryValueEx(parmKey, "Volumes", NULL, NULL,
783                             (BYTE *) &volumes, &dummyLen);
784     if (code == ERROR_SUCCESS)
785         afsi_log("Volumes cache entries: %d", volumes);
786     else {
787         volumes = CM_CONFIGDEFAULT_STATS / 3;
788         afsi_log("Default volume cache entries: %d", volumes);
789     }
790
791     dummyLen = sizeof(ltt);
792     code = RegQueryValueEx(parmKey, "LogoffTokenTransfer", NULL, NULL,
793                             (BYTE *) &ltt, &dummyLen);
794     if (code != ERROR_SUCCESS)
795         ltt = 1;
796     smb_LogoffTokenTransfer = ltt;
797     afsi_log("Logoff token transfer %s",  (ltt ? "on" : "off"));
798
799     if (ltt) {
800         dummyLen = sizeof(ltto);
801         code = RegQueryValueEx(parmKey, "LogoffTokenTransferTimeout",
802                                 NULL, NULL, (BYTE *) &ltto, &dummyLen);
803         if (code != ERROR_SUCCESS)
804             ltto = 120;
805     } else {
806         ltto = 0;
807     }   
808     smb_LogoffTransferTimeout = ltto;
809     afsi_log("Logoff token transfer timeout %d seconds", ltto);
810
811     dummyLen = sizeof(cm_rootVolumeName);
812     code = RegQueryValueEx(parmKey, "RootVolume", NULL, NULL,
813                             cm_rootVolumeName, &dummyLen);
814     if (code == ERROR_SUCCESS)
815         afsi_log("Root volume %s", cm_rootVolumeName);
816     else {
817         StringCbCopyA(cm_rootVolumeName, sizeof(cm_rootVolumeName), "root.afs");
818         afsi_log("Default root volume name root.afs");
819     }
820
821     cm_mountRootLen = sizeof(cm_mountRoot);
822     code = RegQueryValueEx(parmKey, "MountRoot", NULL, NULL,
823                             cm_mountRoot, &cm_mountRootLen);
824     if (code == ERROR_SUCCESS) {
825         afsi_log("Mount root %s", cm_mountRoot);
826         cm_mountRootLen = (DWORD)strlen(cm_mountRoot);
827     } else {
828         StringCbCopyA(cm_mountRoot, sizeof(cm_mountRoot), "/afs");
829         cm_mountRootLen = 4;
830         /* Don't log */
831     }
832
833     dummyLen = sizeof(buf);
834     code = RegQueryValueEx(parmKey, "CachePath", NULL, &regType,
835                             buf, &dummyLen);
836     if (code == ERROR_SUCCESS && buf[0]) {
837         if (regType == REG_EXPAND_SZ) {
838             dummyLen = ExpandEnvironmentStrings(buf, cm_CachePath, sizeof(cm_CachePath));
839             if (dummyLen > sizeof(cm_CachePath)) {
840                 afsi_log("Cache path [%s] longer than %d after expanding env strings", buf, sizeof(cm_CachePath));
841                 osi_panic("CachePath too long", __FILE__, __LINE__);
842             }
843         } else {
844             StringCbCopyA(cm_CachePath, sizeof(cm_CachePath), buf);
845         }
846         afsi_log("Cache path %s", cm_CachePath);
847     } else {
848         dummyLen = ExpandEnvironmentStrings("%TEMP%\\AFSCache", cm_CachePath, sizeof(cm_CachePath));
849         if (dummyLen > sizeof(cm_CachePath)) {
850             afsi_log("Cache path [%%TEMP%%\\AFSCache] longer than %d after expanding env strings", 
851                      sizeof(cm_CachePath));
852             osi_panic("CachePath too long", __FILE__, __LINE__);
853         }
854         afsi_log("Default cache path %s", cm_CachePath);
855     }
856
857     dummyLen = sizeof(virtualCache);
858     code = RegQueryValueEx(parmKey, "NonPersistentCaching", NULL, NULL,
859                             (LPBYTE)&virtualCache, &dummyLen);
860     afsi_log("Cache type is %s", (virtualCache?"VIRTUAL":"FILE"));
861
862     if (!virtualCache) {
863         dummyLen = sizeof(cm_ValidateCache);
864         code = RegQueryValueEx(parmKey, "ValidateCache", NULL, NULL,
865                                (LPBYTE)&cm_ValidateCache, &dummyLen);
866         if ( cm_ValidateCache < 0 || cm_ValidateCache > 2 )
867             cm_ValidateCache = 1;
868         switch (cm_ValidateCache) {
869         case 0:
870             afsi_log("Cache Validation disabled");
871             break;
872         case 1:
873             afsi_log("Cache Validation on Startup");
874             break;
875         case 2:
876             afsi_log("Cache Validation on Startup and Shutdown");
877             break;
878         }
879     }
880
881     dummyLen = sizeof(traceOnPanic);
882     code = RegQueryValueEx(parmKey, "TrapOnPanic", NULL, NULL,
883                             (BYTE *) &traceOnPanic, &dummyLen);
884     if (code != ERROR_SUCCESS)
885         traceOnPanic = 1;              /* log */
886     afsi_log("Set to %s on panic", traceOnPanic ? "trap" : "not trap");
887
888     dummyLen = sizeof(reportSessionStartups);
889     code = RegQueryValueEx(parmKey, "ReportSessionStartups", NULL, NULL,
890                             (BYTE *) &reportSessionStartups, &dummyLen);
891     if (code == ERROR_SUCCESS)
892         afsi_log("Session startups %s be recorded in the Event Log",
893                   reportSessionStartups ? "will" : "will not");
894     else {
895         reportSessionStartups = 0;
896         /* Don't log */
897     }
898
899     for ( i=0; i < MAXNUMSYSNAMES; i++ ) {
900         cm_sysNameList[i] = osi_Alloc(MAXSYSNAME);
901         cm_sysNameList[i][0] = '\0';
902     }
903     cm_sysName = cm_sysNameList[0];
904
905     dummyLen = sizeof(buf);
906     code = RegQueryValueEx(parmKey, "SysName", NULL, NULL, buf, &dummyLen);
907     if (code != ERROR_SUCCESS || !buf[0]) {
908 #if defined(_IA64_)
909         StringCbCopyA(buf, sizeof(buf), "ia64_win64");
910 #elif defined(_AMD64_)
911         StringCbCopyA(buf, sizeof(buf), "amd64_win64 x86_win32 i386_w2k");
912 #else /* assume x86 32-bit */
913         StringCbCopyA(buf, sizeof(buf), "x86_win32 i386_w2k i386_nt40");
914 #endif
915     }
916     afsi_log("Sys name %s", buf); 
917
918     /* breakup buf into individual search string entries */
919     for (p = q = buf; p < buf + dummyLen; p++)
920     {
921         if (*p == '\0' || isspace(*p)) {
922             memcpy(cm_sysNameList[cm_sysNameCount],q,p-q);
923             cm_sysNameList[cm_sysNameCount][p-q] = '\0';
924             cm_sysNameCount++;
925
926             do {
927                 if (*p == '\0')
928                     goto done_sysname;
929                 p++;
930             } while (*p == '\0' || isspace(*p));
931             q = p;
932             p--;
933         }
934     }
935   done_sysname:
936     StringCbCopyA(cm_sysName, MAXSYSNAME, cm_sysNameList[0]);
937
938     dummyLen = sizeof(cryptall);
939     code = RegQueryValueEx(parmKey, "SecurityLevel", NULL, NULL,
940                             (BYTE *) &cryptall, &dummyLen);
941     if (code == ERROR_SUCCESS) {
942         afsi_log("SecurityLevel is %s", cryptall?"crypt":"clear");
943     } else {
944         cryptall = 0;
945         afsi_log("Default SecurityLevel is clear");
946     }
947
948     if (cryptall)
949         LogEvent(EVENTLOG_INFORMATION_TYPE, MSG_CRYPT_ON);
950     else
951         LogEvent(EVENTLOG_INFORMATION_TYPE, MSG_CRYPT_OFF);
952
953     dummyLen = sizeof(cryptall);
954     code = RegQueryValueEx(parmKey, "ForceAnonVLDB", NULL, NULL,
955                             (BYTE *) &cm_anonvldb, &dummyLen);
956     afsi_log("CM ForceAnonVLDB is %s", cm_anonvldb ? "on" : "off");
957
958 #ifdef AFS_AFSDB_ENV
959     dummyLen = sizeof(cm_dnsEnabled);
960     code = RegQueryValueEx(parmKey, "UseDNS", NULL, NULL,
961                             (BYTE *) &cm_dnsEnabled, &dummyLen);
962     if (code == ERROR_SUCCESS) {
963         afsi_log("DNS %s be used to find AFS cell servers",
964                   cm_dnsEnabled ? "will" : "will not");
965     }       
966     else {
967         cm_dnsEnabled = 1;   /* default on */
968         afsi_log("Default to use DNS to find AFS cell servers");
969     }
970 #else /* AFS_AFSDB_ENV */
971     afsi_log("AFS not built with DNS support to find AFS cell servers");
972 #endif /* AFS_AFSDB_ENV */
973
974 #ifdef AFS_FREELANCE_CLIENT
975     dummyLen = sizeof(cm_freelanceEnabled);
976     code = RegQueryValueEx(parmKey, "FreelanceClient", NULL, NULL,
977                             (BYTE *) &cm_freelanceEnabled, &dummyLen);
978     if (code == ERROR_SUCCESS) {
979         afsi_log("Freelance client feature %s activated",
980                   cm_freelanceEnabled ? "is" : "is not");
981     }       
982     else {
983         cm_freelanceEnabled = 1;  /* default on */
984     }
985 #endif /* AFS_FREELANCE_CLIENT */
986
987     dummyLen = sizeof(smb_hideDotFiles);
988     code = RegQueryValueEx(parmKey, "HideDotFiles", NULL, NULL,
989                            (BYTE *) &smb_hideDotFiles, &dummyLen);
990     if (code != ERROR_SUCCESS) {
991         smb_hideDotFiles = 1; /* default on */
992     }
993     afsi_log("Dot files/dirs will %sbe marked hidden",
994               smb_hideDotFiles ? "" : "not ");
995
996     dummyLen = sizeof(smb_maxMpxRequests);
997     code = RegQueryValueEx(parmKey, "MaxMpxRequests", NULL, NULL,
998                            (BYTE *) &smb_maxMpxRequests, &dummyLen);
999     if (code != ERROR_SUCCESS) {
1000         smb_maxMpxRequests = 50;
1001     }
1002     afsi_log("Maximum number of multiplexed sessions is %d", smb_maxMpxRequests);
1003
1004     dummyLen = sizeof(smb_maxVCPerServer);
1005     code = RegQueryValueEx(parmKey, "MaxVCPerServer", NULL, NULL,
1006                            (BYTE *) &smb_maxVCPerServer, &dummyLen);
1007     if (code != ERROR_SUCCESS) {
1008         smb_maxVCPerServer = 100;
1009     }
1010     afsi_log("Maximum number of VCs per server is %d", smb_maxVCPerServer);
1011
1012     dummyLen = sizeof(smb_authType);
1013     code = RegQueryValueEx(parmKey, "SMBAuthType", NULL, NULL,
1014                             (BYTE *) &smb_authType, &dummyLen);
1015
1016     if (code != ERROR_SUCCESS || 
1017          (smb_authType != SMB_AUTH_EXTENDED && smb_authType != SMB_AUTH_NTLM && smb_authType != SMB_AUTH_NONE)) {
1018         smb_authType = SMB_AUTH_EXTENDED; /* default is to use extended authentication */
1019     }
1020     afsi_log("SMB authentication type is %s", ((smb_authType == SMB_AUTH_NONE)?"NONE":((smb_authType == SMB_AUTH_EXTENDED)?"EXTENDED":"NTLM")));
1021
1022     dummyLen = sizeof(rx_nojumbo);
1023     code = RegQueryValueEx(parmKey, "RxNoJumbo", NULL, NULL,
1024                            (BYTE *) &rx_nojumbo, &dummyLen);
1025     if (code != ERROR_SUCCESS) {
1026         rx_nojumbo = 0;
1027     }
1028     if (rx_nojumbo)
1029         afsi_log("RX Jumbograms are disabled");
1030
1031     dummyLen = sizeof(rx_extraPackets);
1032     code = RegQueryValueEx(parmKey, "RxExtraPackets", NULL, NULL,
1033                            (BYTE *) &rx_extraPackets, &dummyLen);
1034     if (code != ERROR_SUCCESS) {
1035         rx_extraPackets = 120;
1036     }
1037     if (rx_extraPackets)
1038         afsi_log("RX extraPackets is %d", rx_extraPackets);
1039
1040     dummyLen = sizeof(rx_mtu);
1041     code = RegQueryValueEx(parmKey, "RxMaxMTU", NULL, NULL,
1042                            (BYTE *) &rx_mtu, &dummyLen);
1043     if (code != ERROR_SUCCESS || !rx_mtu) {
1044         rx_mtu = -1;
1045     }
1046     if (rx_mtu != -1)
1047         afsi_log("RX maximum MTU is %d", rx_mtu);
1048
1049     dummyLen = sizeof(rx_enable_peer_stats);
1050     code = RegQueryValueEx(parmKey, "RxEnablePeerStats", NULL, NULL,
1051                            (BYTE *) &rx_enable_peer_stats, &dummyLen);
1052     if (code != ERROR_SUCCESS) {
1053         rx_enable_peer_stats = 1;
1054     }
1055     if (rx_enable_peer_stats)
1056         afsi_log("RX Peer Statistics gathering is enabled");
1057     else
1058         afsi_log("RX Peer Statistics gathering is disabled");
1059
1060     dummyLen = sizeof(rx_enable_process_stats);
1061     code = RegQueryValueEx(parmKey, "RxEnableProcessStats", NULL, NULL,
1062                            (BYTE *) &rx_enable_process_stats, &dummyLen);
1063     if (code != ERROR_SUCCESS) {
1064         rx_enable_process_stats = 1;
1065     }
1066     if (rx_enable_process_stats)
1067         afsi_log("RX Process Statistics gathering is enabled");
1068     else
1069         afsi_log("RX Process Statistics gathering is disabled");
1070
1071     dummyLen = sizeof(dwValue);
1072     dwValue = 0;
1073     code = RegQueryValueEx(parmKey, "RxEnableHotThread", NULL, NULL,
1074                             (BYTE *) &dwValue, &dummyLen);
1075      if (code != ERROR_SUCCESS || dwValue != 0) {
1076          rx_EnableHotThread();
1077          afsi_log("RX Hot Thread is enabled");
1078      }
1079      else
1080          afsi_log("RX Hot Thread is disabled");
1081
1082     dummyLen = sizeof(DWORD);
1083     code = RegQueryValueEx(parmKey, "CallBackPort", NULL, NULL,
1084                            (BYTE *) &dwValue, &dummyLen);
1085     if (code == ERROR_SUCCESS) {
1086         cm_callbackport = (unsigned short) dwValue;
1087     }
1088     afsi_log("CM CallBackPort is %u", cm_callbackport);
1089
1090     dummyLen = sizeof(DWORD);
1091     code = RegQueryValueEx(parmKey, "EnableServerLocks", NULL, NULL,
1092                            (BYTE *) &dwValue, &dummyLen);
1093     if (code == ERROR_SUCCESS) {
1094         cm_enableServerLocks = (unsigned short) dwValue;
1095     } 
1096     switch (cm_enableServerLocks) {
1097     case 0:
1098         afsi_log("EnableServerLocks: never");
1099         break;
1100     case 2:
1101         afsi_log("EnableServerLocks: always");
1102         break;
1103     case 1:
1104     default:
1105         afsi_log("EnableServerLocks: server requested");
1106         break;
1107     }
1108
1109     dummyLen = sizeof(DWORD);
1110     code = RegQueryValueEx(parmKey, "DeleteReadOnly", NULL, NULL,
1111                            (BYTE *) &dwValue, &dummyLen);
1112     if (code == ERROR_SUCCESS) {
1113         cm_deleteReadOnly = (unsigned short) dwValue;
1114     } 
1115     afsi_log("CM DeleteReadOnly is %u", cm_deleteReadOnly);
1116     
1117 #ifdef USE_BPLUS
1118     dummyLen = sizeof(DWORD);
1119     code = RegQueryValueEx(parmKey, "BPlusTrees", NULL, NULL,
1120                            (BYTE *) &dwValue, &dummyLen);
1121     if (code == ERROR_SUCCESS) {
1122         cm_BPlusTrees = (unsigned short) dwValue;
1123     } 
1124     afsi_log("CM BPlusTrees is %u", cm_BPlusTrees);
1125
1126     if (cm_BPlusTrees && !cm_InitBPlusDir()) {
1127         cm_BPlusTrees = 0;
1128         afsi_log("CM BPlusTree initialization failure; disabled for this session");
1129     }
1130 #else
1131     afsi_log("CM BPlusTrees is not supported");
1132 #endif
1133
1134     if ((RegQueryValueEx( parmKey, "PrefetchExecutableExtensions", 0, 
1135                           &regType, NULL, &dummyLen) == ERROR_SUCCESS) &&
1136          (regType == REG_MULTI_SZ)) 
1137     {
1138         char * pSz;
1139         dummyLen += 3; /* in case the source string is not nul terminated */
1140         pSz = malloc(dummyLen);
1141         if ((RegQueryValueEx( parmKey, "PrefetchExecutableExtensions", 0, &regType, 
1142                              pSz, &dummyLen) == ERROR_SUCCESS) &&
1143              (regType == REG_MULTI_SZ))
1144         {
1145             int cnt;
1146             char * p;
1147
1148             for (cnt = 0, p = pSz; (p - pSz < dummyLen) && *p; cnt++, p += strlen(p) + 1);
1149
1150             smb_ExecutableExtensions = malloc(sizeof(char *) * (cnt+1));
1151
1152             for (cnt = 0, p = pSz; (p - pSz < dummyLen) && *p; cnt++, p += strlen(p) + 1)
1153             {
1154                 smb_ExecutableExtensions[cnt] = p;
1155                 afsi_log("PrefetchExecutableExtension: \"%s\"", p);
1156             }
1157             smb_ExecutableExtensions[cnt] = NULL;
1158         }
1159         
1160         if (!smb_ExecutableExtensions)
1161             free(pSz);
1162     }
1163     if (!smb_ExecutableExtensions)
1164         afsi_log("No PrefetchExecutableExtensions");
1165
1166     dummyLen = sizeof(DWORD);
1167     code = RegQueryValueEx(parmKey, "OfflineReadOnlyIsValid", NULL, NULL,
1168                            (BYTE *) &dwValue, &dummyLen);
1169     if (code == ERROR_SUCCESS) {
1170         cm_OfflineROIsValid = (unsigned short) dwValue;
1171     } 
1172     afsi_log("CM OfflineReadOnlyIsValid is %u", cm_deleteReadOnly);
1173     
1174     dummyLen = sizeof(DWORD);
1175     code = RegQueryValueEx(parmKey, "GiveUpAllCallBacks", NULL, NULL,
1176                            (BYTE *) &dwValue, &dummyLen);
1177     if (code == ERROR_SUCCESS) {
1178         cm_giveUpAllCBs = (unsigned short) dwValue;
1179     } 
1180     afsi_log("CM GiveUpAllCallBacks is %u", cm_giveUpAllCBs);
1181
1182     dummyLen = sizeof(DWORD);
1183     code = RegQueryValueEx(parmKey, "FollowBackupPath", NULL, NULL,
1184                            (BYTE *) &dwValue, &dummyLen);
1185     if (code == ERROR_SUCCESS) {
1186         cm_followBackupPath = (unsigned short) dwValue;
1187     } 
1188     afsi_log("CM FollowBackupPath is %u", cm_followBackupPath);
1189
1190     RegCloseKey (parmKey);
1191
1192     cacheBlocks = ((afs_uint64)cacheSize * 1024) / blockSize;
1193         
1194     /* get network related info */
1195     cm_noIPAddr = CM_MAXINTERFACE_ADDR;
1196     code = syscfg_GetIFInfo(&cm_noIPAddr,
1197                              cm_IPAddr, cm_SubnetMask,
1198                              cm_NetMtu, cm_NetFlags);
1199
1200     if ( (cm_noIPAddr <= 0) || (code <= 0 ) )
1201         afsi_log("syscfg_GetIFInfo error code %d", code);
1202     else
1203         afsi_log("First Network address %x SubnetMask %x",
1204                   cm_IPAddr[0], cm_SubnetMask[0]);
1205
1206     /*
1207      * Save client configuration for GetCacheConfig requests
1208      */
1209     cm_initParams.nChunkFiles = 0;
1210     cm_initParams.nStatCaches = stats;
1211     cm_initParams.nDataCaches = (afs_uint32)(cacheBlocks > 0xFFFFFFFF ? 0xFFFFFFFF : cacheBlocks);
1212     cm_initParams.nVolumeCaches = volumes;
1213     cm_initParams.firstChunkSize = cm_chunkSize;
1214     cm_initParams.otherChunkSize = cm_chunkSize;
1215     cm_initParams.cacheSize = cacheSize;
1216     cm_initParams.setTime = 0;
1217     cm_initParams.memCache = 1;
1218
1219     /* Ensure the AFS Netbios Name is registered to allow loopback access */
1220     configureBackConnectionHostNames();
1221
1222     /* init user daemon, and other packages */
1223     cm_InitUser();
1224
1225     cm_InitConn();
1226
1227     cm_InitServer();
1228         
1229     cm_InitIoctl();
1230         
1231     smb_InitIoctl();
1232         
1233     cm_InitCallback();
1234
1235     code = cm_InitMappedMemory(virtualCache, cm_CachePath, stats, volumes, cm_chunkSize, cacheBlocks, blockSize);
1236     afsi_log("cm_InitMappedMemory code %x", code);
1237     if (code != 0) {
1238         *reasonP = "error initializing cache file";
1239         return -1;
1240     }
1241
1242 #ifdef AFS_AFSDB_ENV
1243 #if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0500)
1244     if (cm_InitDNS(cm_dnsEnabled) == -1)
1245         cm_dnsEnabled = 0;  /* init failed, so deactivate */
1246     afsi_log("cm_InitDNS %d", cm_dnsEnabled);
1247 #endif
1248 #endif
1249
1250     /* Set RX parameters before initializing RX */
1251     if ( rx_nojumbo ) {
1252         rx_SetNoJumbo();
1253         afsi_log("rx_SetNoJumbo successful");
1254     }
1255
1256     if ( rx_mtu != -1 ) {
1257         rx_SetMaxMTU(rx_mtu);
1258         afsi_log("rx_SetMaxMTU %d successful", rx_mtu);
1259     }
1260
1261     /* initialize RX, and tell it to listen to the callbackport, 
1262      * which is used for callback RPC messages.
1263      */
1264     code = rx_Init(htons(cm_callbackport));
1265     if (code != 0) {
1266         afsi_log("rx_Init code %x - retrying with a random port number", code);
1267         code = rx_Init(0);
1268     }
1269     afsi_log("rx_Init code %x", code);
1270     if (code != 0) {
1271         *reasonP = "afsd: failed to init rx client";
1272         return -1;
1273     }
1274
1275     /* create an unauthenticated service #1 for callbacks */
1276     nullServerSecurityClassp = rxnull_NewServerSecurityObject();
1277     serverp = rx_NewService(0, 1, "AFS", &nullServerSecurityClassp, 1,
1278                              RXAFSCB_ExecuteRequest);
1279     afsi_log("rx_NewService addr %x", PtrToUlong(serverp));
1280     if (serverp == NULL) {
1281         *reasonP = "unknown error";
1282         return -1;
1283     }
1284
1285     nullServerSecurityClassp = rxnull_NewServerSecurityObject();
1286     serverp = rx_NewService(0, RX_STATS_SERVICE_ID, "rpcstats",
1287                              &nullServerSecurityClassp, 1, RXSTATS_ExecuteRequest);
1288     afsi_log("rx_NewService addr %x", PtrToUlong(serverp));
1289     if (serverp == NULL) {
1290         *reasonP = "unknown error";
1291         return -1;
1292     }
1293         
1294     /* start server threads, *not* donating this one to the pool */
1295     rx_StartServer(0);
1296     afsi_log("rx_StartServer");
1297
1298     if (rx_enable_peer_stats)
1299         rx_enablePeerRPCStats();
1300
1301     if (rx_enable_process_stats)
1302         rx_enableProcessRPCStats();
1303
1304     code = cm_GetRootCellName(rootCellName);
1305     afsi_log("cm_GetRootCellName code %d, cm_freelanceEnabled= %d, rcn= %s", 
1306               code, cm_freelanceEnabled, (code ? "<none>" : rootCellName));
1307     if (code != 0 && !cm_freelanceEnabled) 
1308     {
1309         *reasonP = "can't find root cell name in " AFS_CELLSERVDB;
1310         return -1;
1311     }   
1312     else if (cm_freelanceEnabled)
1313         cm_data.rootCellp = NULL;
1314
1315     if (code == 0 && !cm_freelanceEnabled) 
1316     {
1317         cm_data.rootCellp = cm_GetCell(rootCellName, CM_FLAG_CREATE);
1318         afsi_log("cm_GetCell addr %x", PtrToUlong(cm_data.rootCellp));
1319         if (cm_data.rootCellp == NULL) 
1320         {
1321             *reasonP = "can't find root cell in " AFS_CELLSERVDB;
1322             return -1;
1323         }
1324     }
1325
1326 #ifdef AFS_FREELANCE_CLIENT
1327     if (cm_freelanceEnabled)
1328         cm_InitFreelance();
1329 #endif
1330
1331     /* Initialize the RPC server for session keys */
1332     RpcInit();
1333
1334     afsd_InitServerPreferences();
1335     return 0;
1336 }
1337
1338 int afsd_ShutdownCM(void)
1339 {
1340     cm_ReleaseSCache(cm_data.rootSCachep);
1341
1342     return 0;
1343 }
1344
1345 int afsd_InitDaemons(char **reasonP)
1346 {
1347     long code;
1348     cm_req_t req;
1349
1350     cm_InitReq(&req);
1351
1352     /* this should really be in an init daemon from here on down */
1353
1354     if (!cm_freelanceEnabled) {
1355         int attempts = 10;
1356
1357         osi_Log0(afsd_logp, "Loading Root Volume from cell");
1358         do {
1359             code = cm_FindVolumeByName(cm_data.rootCellp, cm_rootVolumeName, cm_rootUserp,
1360                                        &req, CM_GETVOL_FLAG_CREATE, &cm_data.rootVolumep);
1361             afsi_log("cm_FindVolumeByName code %x root vol %x", code,
1362                       (code ? (cm_volume_t *)-1 : cm_data.rootVolumep));
1363         } while (code && --attempts);
1364         if (code != 0) {
1365             *reasonP = "can't find root volume in root cell";
1366             return -1;
1367         }
1368     }
1369
1370     /* compute the root fid */
1371     if (!cm_freelanceEnabled) {
1372         cm_SetFid(&cm_data.rootFid, cm_data.rootCellp->cellID, cm_GetROVolumeID(cm_data.rootVolumep), 1, 1);
1373     }
1374     else
1375         cm_FakeRootFid(&cm_data.rootFid);
1376         
1377     code = cm_GetSCache(&cm_data.rootFid, &cm_data.rootSCachep, cm_rootUserp, &req);
1378     afsi_log("cm_GetSCache code %x scache %x", code,
1379              (code ? (cm_scache_t *)-1 : cm_data.rootSCachep));
1380     if (code != 0) {
1381         *reasonP = "unknown error";
1382         return -1;
1383     }
1384
1385     cm_InitDaemon(numBkgD);
1386     afsi_log("cm_InitDaemon complete");
1387
1388     return 0;
1389 }
1390
1391 int afsd_InitSMB(char **reasonP, void *aMBfunc)
1392 {
1393     HKEY parmKey;
1394     DWORD dummyLen;
1395     DWORD dwValue;
1396     DWORD code;
1397
1398     code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_OPENAFS_SUBKEY,
1399                          0, KEY_QUERY_VALUE, &parmKey);
1400     if (code == ERROR_SUCCESS) {
1401         dummyLen = sizeof(DWORD);
1402         code = RegQueryValueEx(parmKey, "StoreAnsiFilenames", NULL, NULL,
1403                                 (BYTE *) &dwValue, &dummyLen);
1404         if (code == ERROR_SUCCESS)
1405             smb_StoreAnsiFilenames = dwValue ? 1 : 0;
1406         afsi_log("StoreAnsiFilenames = %d", smb_StoreAnsiFilenames);
1407
1408         dummyLen = sizeof(DWORD);
1409         code = RegQueryValueEx(parmKey, "EnableSMBAsyncStore", NULL, NULL,
1410                                 (BYTE *) &dwValue, &dummyLen);
1411         if (code == ERROR_SUCCESS)
1412             smb_AsyncStore = dwValue == 2 ? 2 : (dwValue ? 1 : 0);
1413         afsi_log("EnableSMBAsyncStore = %d", smb_AsyncStore);
1414
1415         dummyLen = sizeof(DWORD);
1416         code = RegQueryValueEx(parmKey, "SMBAsyncStoreSize", NULL, NULL,
1417                                 (BYTE *) &dwValue, &dummyLen);
1418         if (code == ERROR_SUCCESS) {
1419             /* Should check for >= blocksize && <= chunksize && round down to multiple of blocksize */
1420             if (dwValue > cm_chunkSize)
1421                 smb_AsyncStoreSize = cm_chunkSize;
1422             else if (dwValue <  cm_data.buf_blockSize)
1423                 smb_AsyncStoreSize = cm_data.buf_blockSize;
1424             else
1425                 smb_AsyncStoreSize = (dwValue & ~(cm_data.buf_blockSize-1));
1426         } else 
1427             smb_AsyncStoreSize = CM_CONFIGDEFAULT_ASYNCSTORESIZE;
1428         afsi_log("SMBAsyncStoreSize = %d", smb_AsyncStoreSize);
1429         
1430         RegCloseKey (parmKey);
1431     }
1432
1433     /* Do this last so that we don't handle requests before init is done.
1434      * Here we initialize the SMB listener.
1435      */
1436     smb_Init(afsd_logp, smb_UseV3, numSvThreads, aMBfunc);
1437     afsi_log("smb_Init complete");
1438
1439     return 0;
1440 }
1441
1442 #ifdef ReadOnly
1443 #undef ReadOnly
1444 #endif
1445
1446 #ifdef File
1447 #undef File
1448 #endif
1449
1450 #pragma pack( push, before_imagehlp, 8 )
1451 #include <imagehlp.h>
1452 #pragma pack( pop, before_imagehlp )
1453
1454 #define MAXNAMELEN 1024
1455
1456 void afsd_printStack(HANDLE hThread, CONTEXT *c)
1457 {
1458     HANDLE hProcess = GetCurrentProcess();
1459     int frameNum;
1460 #if defined(_AMD64_)
1461     DWORD64 offset;
1462 #elif defined(_X86_)
1463     DWORD offset;
1464 #endif
1465     DWORD symOptions;
1466     char functionName[MAXNAMELEN];
1467   
1468     IMAGEHLP_MODULE Module;
1469     IMAGEHLP_LINE Line;
1470   
1471     STACKFRAME s;
1472     IMAGEHLP_SYMBOL *pSym;
1473   
1474     afsi_log_useTimestamp = 0;
1475   
1476     pSym = (IMAGEHLP_SYMBOL *) GlobalAlloc(0, sizeof (IMAGEHLP_SYMBOL) + MAXNAMELEN);
1477   
1478     memset( &s, '\0', sizeof s );
1479     if (!SymInitialize(hProcess, NULL, 1) )
1480     {
1481         afsi_log("SymInitialize(): GetLastError() = %lu\n", GetLastError() );
1482       
1483         SymCleanup( hProcess );
1484         GlobalFree(pSym);
1485       
1486         return;
1487     }
1488   
1489     symOptions = SymGetOptions();
1490     symOptions |= SYMOPT_LOAD_LINES;
1491     symOptions &= ~SYMOPT_UNDNAME;
1492     SymSetOptions( symOptions );
1493   
1494     /*
1495      * init STACKFRAME for first call
1496      * Notes: AddrModeFlat is just an assumption. I hate VDM debugging.
1497      * Notes: will have to be #ifdef-ed for Alphas; MIPSes are dead anyway,
1498      * and good riddance.
1499      */
1500 #if defined (_ALPHA_) || defined (_MIPS_) || defined (_PPC_)
1501 #error The STACKFRAME initialization in afsd_printStack() for this platform
1502 #error must be properly configured
1503 #elif defined(_AMD64_)
1504     s.AddrPC.Offset = c->Rip;
1505     s.AddrPC.Mode = AddrModeFlat;
1506     s.AddrFrame.Offset = c->Rbp;
1507     s.AddrFrame.Mode = AddrModeFlat;
1508 #else
1509     s.AddrPC.Offset = c->Eip;
1510     s.AddrPC.Mode = AddrModeFlat;
1511     s.AddrFrame.Offset = c->Ebp;
1512     s.AddrFrame.Mode = AddrModeFlat;
1513 #endif
1514
1515     memset( pSym, '\0', sizeof (IMAGEHLP_SYMBOL) + MAXNAMELEN );
1516     pSym->SizeOfStruct = sizeof (IMAGEHLP_SYMBOL);
1517     pSym->MaxNameLength = MAXNAMELEN;
1518   
1519     memset( &Line, '\0', sizeof Line );
1520     Line.SizeOfStruct = sizeof Line;
1521   
1522     memset( &Module, '\0', sizeof Module );
1523     Module.SizeOfStruct = sizeof Module;
1524   
1525     offset = 0;
1526   
1527     afsi_log("\n--# FV EIP----- RetAddr- FramePtr StackPtr Symbol" );
1528   
1529     for ( frameNum = 0; ; ++ frameNum )
1530     {
1531         /*
1532          * get next stack frame (StackWalk(), SymFunctionTableAccess(), 
1533          * SymGetModuleBase()). if this returns ERROR_INVALID_ADDRESS (487) or
1534          * ERROR_NOACCESS (998), you can assume that either you are done, or
1535          * that the stack is so hosed that the next deeper frame could not be
1536          * found.
1537          */
1538         if ( ! StackWalk( IMAGE_FILE_MACHINE_I386, hProcess, hThread, &s, c, 
1539                           NULL, SymFunctionTableAccess, SymGetModuleBase, 
1540                           NULL ) )
1541             break;
1542       
1543         /* display its contents */
1544         afsi_log("\n%3d %c%c %08lx %08lx %08lx %08lx ",
1545                  frameNum, s.Far? 'F': '.', s.Virtual? 'V': '.',
1546                  s.AddrPC.Offset, s.AddrReturn.Offset,
1547                  s.AddrFrame.Offset, s.AddrStack.Offset );
1548       
1549         if ( s.AddrPC.Offset == 0 )
1550         {
1551             afsi_log("(-nosymbols- PC == 0)" );
1552         }
1553         else
1554         { 
1555             /* show procedure info from a valid PC */
1556             if (!SymGetSymFromAddr(hProcess, s.AddrPC.Offset, &offset, pSym))
1557             {
1558                 if ( GetLastError() != ERROR_INVALID_ADDRESS )
1559                 {
1560                     afsi_log("SymGetSymFromAddr(): errno = %lu", 
1561                              GetLastError());
1562                 }
1563             }
1564             else
1565             {
1566                 UnDecorateSymbolName(pSym->Name, functionName, MAXNAMELEN, 
1567                                      UNDNAME_NAME_ONLY);
1568                 afsi_log("%s", functionName );
1569
1570                 if ( offset != 0 )
1571                 {
1572                     afsi_log(" %+ld bytes", (long) offset);
1573                 }
1574             }
1575
1576             if (!SymGetLineFromAddr(hProcess, s.AddrPC.Offset, &offset, &Line))
1577             {
1578                 if (GetLastError() != ERROR_INVALID_ADDRESS)
1579                 {
1580                     afsi_log("Error: SymGetLineFromAddr(): errno = %lu", 
1581                              GetLastError());
1582                 }
1583             }
1584             else
1585             {
1586                 afsi_log("    Line: %s(%lu) %+ld bytes", Line.FileName, 
1587                          Line.LineNumber, offset);
1588             }
1589         }
1590       
1591         /* no return address means no deeper stackframe */
1592         if (s.AddrReturn.Offset == 0)
1593         {
1594             SetLastError(0);
1595             break;
1596         }
1597     }
1598   
1599     if (GetLastError() != 0)
1600     {
1601         afsi_log("\nStackWalk(): errno = %lu\n", GetLastError());
1602     }
1603   
1604     SymCleanup(hProcess);
1605     GlobalFree(pSym);
1606 }
1607
1608 #ifdef _DEBUG
1609 static DWORD *afsd_crtDbgBreakCurrent = NULL;
1610 static DWORD afsd_crtDbgBreaks[256];
1611 #endif
1612
1613 static EFaultRepRetVal (WINAPI *pReportFault)(LPEXCEPTION_POINTERS pep, DWORD dwMode) = NULL;
1614 static BOOL (WINAPI *pMiniDumpWriteDump)(HANDLE hProcess,DWORD ProcessId,HANDLE hFile,
1615                                   MINIDUMP_TYPE DumpType,
1616                                   PMINIDUMP_EXCEPTION_INFORMATION ExceptionParam,
1617                                   PMINIDUMP_USER_STREAM_INFORMATION UserStreamParam,
1618                                   PMINIDUMP_CALLBACK_INFORMATION CallbackParam) = NULL;
1619
1620
1621 static HANDLE
1622 OpenDumpFile(void)
1623 {
1624     char wd[256];
1625     DWORD code;
1626
1627     code = GetEnvironmentVariable("TEMP", wd, sizeof(wd));
1628     if ( code == 0 || code > sizeof(wd) )
1629     {
1630         if (!GetWindowsDirectory(wd, sizeof(wd)))
1631             return NULL;
1632     }
1633     StringCbCatA(wd, sizeof(wd), "\\afsd.dmp");
1634     return CreateFile( wd, GENERIC_WRITE, FILE_SHARE_READ, NULL,
1635                             CREATE_ALWAYS, FILE_FLAG_WRITE_THROUGH, NULL);
1636 }
1637
1638 void 
1639 GenerateMiniDump(PEXCEPTION_POINTERS ep)
1640 {
1641         if (IsDebuggerPresent())
1642                 return;
1643
1644     if (ep == NULL) 
1645     {
1646         // Generate exception to get proper context in dump
1647         __try 
1648         {
1649             RaiseException(DBG_CONTINUE, 0, 0, NULL);
1650         } 
1651         __except(GenerateMiniDump(GetExceptionInformation()), EXCEPTION_CONTINUE_EXECUTION) 
1652         {
1653         }
1654     } 
1655     else
1656     {
1657         MINIDUMP_EXCEPTION_INFORMATION eInfo;
1658         HANDLE hFile = NULL;
1659         HMODULE hDbgHelp = NULL;
1660
1661         hDbgHelp = LoadLibrary("Dbghelp.dll");
1662         if ( hDbgHelp == NULL )
1663             return;
1664
1665         (FARPROC) pMiniDumpWriteDump = GetProcAddress(hDbgHelp, "MiniDumpWriteDump");
1666         if ( pMiniDumpWriteDump == NULL ) {
1667             FreeLibrary(hDbgHelp);
1668             return;
1669         }
1670
1671         hFile = OpenDumpFile();
1672
1673         if ( hFile ) {
1674             HKEY parmKey;
1675             DWORD dummyLen;
1676             DWORD dwValue;
1677             DWORD code;
1678             DWORD dwMiniDumpType = MiniDumpWithDataSegs;
1679
1680             code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_OPENAFS_SUBKEY,
1681                                  0, KEY_QUERY_VALUE, &parmKey);
1682             if (code == ERROR_SUCCESS) {
1683                 dummyLen = sizeof(DWORD);
1684                 code = RegQueryValueEx(parmKey, "MiniDumpType", NULL, NULL,
1685                                         (BYTE *) &dwValue, &dummyLen);
1686                 if (code == ERROR_SUCCESS)
1687                     dwMiniDumpType = dwValue;
1688                 RegCloseKey (parmKey);
1689             }
1690
1691             eInfo.ThreadId = GetCurrentThreadId();
1692             eInfo.ExceptionPointers = ep;
1693             eInfo.ClientPointers = FALSE;
1694
1695             pMiniDumpWriteDump( GetCurrentProcess(), GetCurrentProcessId(),
1696                                 hFile, dwMiniDumpType, ep ? &eInfo : NULL,
1697                                 NULL, NULL);
1698
1699             CloseHandle(hFile);
1700         }
1701         FreeLibrary(hDbgHelp);
1702     }
1703 }
1704
1705 LONG __stdcall afsd_ExceptionFilter(EXCEPTION_POINTERS *ep)
1706 {
1707     CONTEXT context;
1708 #ifdef _DEBUG  
1709     BOOL allocRequestBrk = FALSE;
1710 #endif 
1711     HMODULE hLib = NULL;
1712   
1713     afsi_log("UnhandledException : code : 0x%x, address: 0x%x\n", 
1714              ep->ExceptionRecord->ExceptionCode, 
1715              ep->ExceptionRecord->ExceptionAddress);
1716            
1717 #ifdef _DEBUG
1718     if (afsd_crtDbgBreakCurrent && 
1719         *afsd_crtDbgBreakCurrent == _CrtSetBreakAlloc(*afsd_crtDbgBreakCurrent))
1720     { 
1721         allocRequestBrk = TRUE;
1722         afsi_log("Breaking on alloc request # %d\n", *afsd_crtDbgBreakCurrent);
1723     }
1724 #endif
1725            
1726     /* save context if we want to print the stack information */
1727     context = *ep->ContextRecord;
1728            
1729     afsd_printStack(GetCurrentThread(), &context);
1730
1731     GenerateMiniDump(ep);
1732
1733     hLib = LoadLibrary("Faultrep.dll");
1734     if ( hLib ) {
1735         (FARPROC) pReportFault = GetProcAddress(hLib, "ReportFault");
1736         if ( pReportFault )
1737             pReportFault(ep, 0);
1738         FreeLibrary(hLib);
1739     }
1740
1741     if (ep->ExceptionRecord->ExceptionCode == EXCEPTION_BREAKPOINT)
1742     {
1743         afsi_log("\nEXCEPTION_BREAKPOINT - continue execution ...\n");
1744     
1745 #ifdef _DEBUG
1746         if (allocRequestBrk)
1747         {
1748             afsd_crtDbgBreakCurrent++;
1749             _CrtSetBreakAlloc(*afsd_crtDbgBreakCurrent);
1750         }
1751 #endif         
1752 #if defined(_X86)    
1753         ep->ContextRecord->Eip++;
1754 #endif
1755 #if defined(_AMD64_)
1756         ep->ContextRecord->Rip++;
1757 #endif
1758         return EXCEPTION_CONTINUE_EXECUTION;
1759     }
1760     else
1761     {
1762         return EXCEPTION_CONTINUE_SEARCH;
1763     }
1764 }
1765   
1766 void afsd_SetUnhandledExceptionFilter()
1767 {
1768     SetUnhandledExceptionFilter(afsd_ExceptionFilter);
1769 }
1770   
1771 #ifdef _DEBUG
1772 void afsd_DbgBreakAllocInit()
1773 {
1774     memset(afsd_crtDbgBreaks, -1, sizeof(afsd_crtDbgBreaks));
1775     afsd_crtDbgBreakCurrent = afsd_crtDbgBreaks;
1776 }
1777   
1778 void afsd_DbgBreakAdd(DWORD requestNumber)
1779 {
1780     int i;
1781     for (i = 0; i < sizeof(afsd_crtDbgBreaks) - 1; i++)
1782         {
1783         if (afsd_crtDbgBreaks[i] == -1)
1784             {
1785             break;
1786             }
1787         }
1788     afsd_crtDbgBreaks[i] = requestNumber;
1789
1790     _CrtSetBreakAlloc(afsd_crtDbgBreaks[0]);
1791 }
1792 #endif