3a4e0ca3ba27524b30d465214584d4696c12ebd4
[openafs.git] / src / WINNT / afsd / afsd_service.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
13 #include <windows.h>
14 #include <string.h>
15 #include <setjmp.h>
16 #include "afsd.h"
17 #include "afsd_init.h"
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <winsock2.h>
21
22 #include <osi.h>
23
24 #ifdef DEBUG
25 //#define NOTSERVICE
26 #endif
27
28 extern void afsi_log(char *pattern, ...);
29
30 extern char AFSConfigKeyName[];
31
32 HANDLE WaitToTerminate;
33
34 int GlobalStatus;
35
36 unsigned int MainThreadId;
37 jmp_buf notifier_jmp;
38
39 extern int traceOnPanic;
40
41 /*
42  * Notifier function for use by osi_panic
43  */
44 static void afsd_notifier(char *msgp, char *filep, long line)
45 {
46         char tbuffer[100];
47         char *ptbuf[1];
48         HANDLE h;
49
50         if (filep)
51                 sprintf(tbuffer, "Error at file %s, line %d: %s",
52                         filep, line, msgp);
53         else
54                 sprintf(tbuffer, "Error at unknown location: %s", msgp);
55
56         h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
57         ptbuf[0] = tbuffer;
58         ReportEvent(h, EVENTLOG_ERROR_TYPE, 0, line, NULL, 1, 0, ptbuf, NULL);
59         DeregisterEventSource(h);
60
61         GlobalStatus = line;
62
63         osi_LogEnable(afsd_logp);
64
65         afsd_ForceTrace(TRUE);
66
67         if (traceOnPanic) {
68                 _asm int 3h;
69         }
70
71         SetEvent(WaitToTerminate);
72
73         if (GetCurrentThreadId() == MainThreadId)
74                 longjmp(notifier_jmp, 1);
75         else
76                 ExitThread(1);
77 }
78
79 /*
80  * For use miscellaneously in smb.c; need to do better
81  */
82 static int DummyMessageBox(HWND h, LPCTSTR l1, LPCTSTR l2, UINT ui)
83 {
84         return 0;
85 }
86
87 static SERVICE_STATUS           ServiceStatus;
88 static SERVICE_STATUS_HANDLE    StatusHandle;
89
90 void afsd_ServiceControlHandler(DWORD ctrlCode)
91 {
92         HKEY parmKey;
93         DWORD dummyLen, doTrace;
94         long code;
95
96         switch (ctrlCode) {
97                 case SERVICE_CONTROL_STOP:
98                         /* Shutdown RPC */
99                         RpcMgmtStopServerListening(NULL);
100
101                         /* Force trace if requested */
102                         code = RegOpenKeyEx(HKEY_LOCAL_MACHINE,
103                                             AFSConfigKeyName,
104                                             0, KEY_QUERY_VALUE, &parmKey);
105                         if (code != ERROR_SUCCESS)
106                                 goto doneTrace;
107
108                         dummyLen = sizeof(doTrace);
109                         code = RegQueryValueEx(parmKey, "TraceOnShutdown",
110                                                 NULL, NULL,
111                                                 (BYTE *) &doTrace, &dummyLen);
112                         RegCloseKey (parmKey);
113                         if (code != ERROR_SUCCESS)
114                                 doTrace = 0;
115                         if (doTrace)
116                                 afsd_ForceTrace(FALSE);
117
118 doneTrace:
119                         ServiceStatus.dwCurrentState = SERVICE_STOP_PENDING;
120                         ServiceStatus.dwWin32ExitCode = NO_ERROR;
121                         ServiceStatus.dwCheckPoint = 1;
122                         ServiceStatus.dwWaitHint = 10000;
123                         ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
124                         SetServiceStatus(StatusHandle, &ServiceStatus);
125                         SetEvent(WaitToTerminate);
126                         break;
127                 case SERVICE_CONTROL_INTERROGATE:
128                         ServiceStatus.dwCurrentState = SERVICE_RUNNING;
129                         ServiceStatus.dwWin32ExitCode = NO_ERROR;
130                         ServiceStatus.dwCheckPoint = 0;
131                         ServiceStatus.dwWaitHint = 0;
132                         ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
133                         SetServiceStatus(StatusHandle, &ServiceStatus);
134                         break;
135                 /* XXX handle system shutdown */
136                 /* XXX handle pause & continue */
137         }
138 }
139
140 #if 1
141 /* This code was moved to Drivemap.cpp*/
142 /* Mount a drive into AFS if the user wants us to */
143 /* DEE Could check first if we are run as SYSTEM */
144 void CheckMountDrive()
145 {
146         char szAfsPath[_MAX_PATH];
147         char szDriveToMapTo[5];
148         DWORD dwResult;
149         char szKeyName[256];
150         HKEY hKey;
151         DWORD dwIndex = 0;
152         DWORD dwDriveSize;
153         DWORD dwSubMountSize;
154         char szSubMount[256];
155         DWORD dwType;
156
157         sprintf(szKeyName, "%s\\GlobalAutoMapper", AFSConfigKeyName);
158
159         dwResult = RegOpenKeyEx(HKEY_LOCAL_MACHINE, szKeyName, 0, KEY_QUERY_VALUE, &hKey);
160         if (dwResult != ERROR_SUCCESS)
161                 return;
162
163         while (1) {
164                 dwDriveSize = sizeof(szDriveToMapTo);
165                 dwSubMountSize = sizeof(szSubMount);
166                 dwResult = RegEnumValue(hKey, dwIndex++, szDriveToMapTo, &dwDriveSize, 0, &dwType, szSubMount, &dwSubMountSize);
167                 if (dwResult != ERROR_MORE_DATA) {
168                         if (dwResult != ERROR_SUCCESS) {
169                                 if (dwResult != ERROR_NO_MORE_ITEMS)
170                                         afsi_log("Failed to read GlobalAutoMapper values: %d\n", dwResult);
171                                 break;
172                         }
173                 }
174                 
175 #if 0
176                 sprintf(szAfsPath, "\\Device\\LanmanRedirector\\%s\\%s-AFS\\%s", szDriveToMapTo, cm_HostName, szSubMount);
177         
178                 dwResult = DefineDosDevice(DDD_RAW_TARGET_PATH, szDriveToMapTo, szAfsPath);
179 #else
180                 {
181                     NETRESOURCE nr;
182                     memset (&nr, 0x00, sizeof(NETRESOURCE));
183  
184                     sprintf(szAfsPath,"\\\\%s-AFS\\%s",cm_HostName,szSubMount);
185                     
186                     nr.dwScope = RESOURCE_GLOBALNET;
187                     nr.dwType=RESOURCETYPE_DISK;
188                     nr.lpLocalName=szDriveToMapTo;
189                     nr.lpRemoteName=szAfsPath;
190                     nr.dwDisplayType = RESOURCEDISPLAYTYPE_SHARE;
191                     nr.dwUsage = RESOURCEUSAGE_CONNECTABLE;
192
193                     dwResult = WNetAddConnection2(&nr,NULL,NULL,FALSE);
194                 }
195 #endif
196                 afsi_log("GlobalAutoMap of %s to %s %s", szDriveToMapTo, szSubMount, dwResult ? "succeeded" : "failed");
197         }        
198
199         RegCloseKey(hKey);
200 }
201 #endif
202
203 void afsd_Main()
204 {
205         long code;
206         char *reason;
207         int jmpret;
208
209         osi_InitPanic(afsd_notifier);
210         osi_InitTraceOption();
211
212         GlobalStatus = 0;
213
214         WaitToTerminate = CreateEvent(NULL, TRUE, FALSE, NULL);
215
216 #ifndef NOTSERVICE
217         StatusHandle = RegisterServiceCtrlHandler(AFS_DAEMON_SERVICE_NAME,
218                         (LPHANDLER_FUNCTION) afsd_ServiceControlHandler);
219
220         ServiceStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
221         ServiceStatus.dwServiceSpecificExitCode = 0;
222         ServiceStatus.dwCurrentState = SERVICE_START_PENDING;
223         ServiceStatus.dwWin32ExitCode = NO_ERROR;
224         ServiceStatus.dwCheckPoint = 1;
225         ServiceStatus.dwWaitHint = 15000;
226         ServiceStatus.dwControlsAccepted = 0;
227         SetServiceStatus(StatusHandle, &ServiceStatus);
228 #endif
229 {       
230         HANDLE h; char *ptbuf[1];
231         h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
232         ptbuf[0] = "AFS start pending";
233         ReportEvent(h, EVENTLOG_INFORMATION_TYPE, 0, 0, NULL, 1, 0, ptbuf, NULL);
234         DeregisterEventSource(h);
235 }
236
237         afsi_start();
238
239         MainThreadId = GetCurrentThreadId();
240         jmpret = setjmp(notifier_jmp);
241
242         if (jmpret == 0) {
243                 code = afsd_InitCM(&reason);
244                 if (code != 0)
245                         osi_panic(reason, __FILE__, __LINE__);
246
247                 code = afsd_InitDaemons(&reason);
248                 if (code != 0)
249                         osi_panic(reason, __FILE__, __LINE__);
250
251                 code = afsd_InitSMB(&reason, DummyMessageBox);
252                 if (code != 0)
253                         osi_panic(reason, __FILE__, __LINE__);
254
255 #ifndef NOTSERVICE
256                 ServiceStatus.dwCurrentState = SERVICE_RUNNING;
257                 ServiceStatus.dwWin32ExitCode = NO_ERROR;
258                 ServiceStatus.dwCheckPoint = 0;
259                 ServiceStatus.dwWaitHint = 0;
260                 ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
261                 SetServiceStatus(StatusHandle, &ServiceStatus);
262 #endif
263         {
264                 HANDLE h; char *ptbuf[1];
265                 h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
266                 ptbuf[0] = "AFS running";
267                 ReportEvent(h, EVENTLOG_INFORMATION_TYPE, 0, 0, NULL, 1, 0, ptbuf, NULL);
268                 DeregisterEventSource(h);
269         }
270         }
271
272         /* Check if we should mount a drive into AFS */
273         CheckMountDrive();
274
275         WaitForSingleObject(WaitToTerminate, INFINITE);
276         
277 {   
278         HANDLE h; char *ptbuf[1];
279         h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
280         ptbuf[0] = "AFS quitting";
281         ReportEvent(h,
282                 GlobalStatus ? EVENTLOG_ERROR_TYPE : EVENTLOG_INFORMATION_TYPE,
283                 0, 0, NULL, 1, 0, ptbuf, NULL);
284         DeregisterEventSource(h);
285 }
286
287         ServiceStatus.dwCurrentState = SERVICE_STOPPED;
288         ServiceStatus.dwWin32ExitCode = NO_ERROR;
289         ServiceStatus.dwCheckPoint = 0;
290         ServiceStatus.dwWaitHint = 0;
291         ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
292         SetServiceStatus(StatusHandle, &ServiceStatus);
293 }
294
295 #ifdef NOTSERVICE
296 void main()
297 {
298         afsd_Main();
299         Sleep(1000);
300         return ;
301 }
302 #else
303 void main()
304 {
305         LONG status = ERROR_SUCCESS;
306         SERVICE_TABLE_ENTRY dispatchTable[] = {
307                 {AFS_DAEMON_SERVICE_NAME, (LPSERVICE_MAIN_FUNCTION) afsd_Main},
308                 {NULL, NULL}
309         };
310
311         if (!StartServiceCtrlDispatcher(dispatchTable))
312                 status = GetLastError();
313 }
314 #endif