2 * Copyright 2000, International Business Machines Corporation and others.
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
10 #include <afs/param.h>
17 #include "afsd_init.h"
25 //#define NOTSERVICE
\r
28 extern void afsi_log(char *pattern, ...);
30 extern char AFSConfigKeyName[];
32 HANDLE WaitToTerminate;
36 unsigned int MainThreadId;
39 extern int traceOnPanic;
42 * Notifier function for use by osi_panic
44 static void afsd_notifier(char *msgp, char *filep, long line)
51 sprintf(tbuffer, "Error at file %s, line %d: %s",
54 sprintf(tbuffer, "Error at unknown location: %s", msgp);
56 h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
58 ReportEvent(h, EVENTLOG_ERROR_TYPE, 0, line, NULL, 1, 0, ptbuf, NULL);
59 DeregisterEventSource(h);
63 osi_LogEnable(afsd_logp);
65 afsd_ForceTrace(TRUE);
71 SetEvent(WaitToTerminate);
73 if (GetCurrentThreadId() == MainThreadId)
74 longjmp(notifier_jmp, 1);
80 * For use miscellaneously in smb.c; need to do better
82 static int DummyMessageBox(HWND h, LPCTSTR l1, LPCTSTR l2, UINT ui)
87 static SERVICE_STATUS ServiceStatus;
88 static SERVICE_STATUS_HANDLE StatusHandle;
90 void afsd_ServiceControlHandler(DWORD ctrlCode)
93 DWORD dummyLen, doTrace;
97 case SERVICE_CONTROL_STOP:
99 RpcMgmtStopServerListening(NULL);
101 /* Force trace if requested */
102 code = RegOpenKeyEx(HKEY_LOCAL_MACHINE,
104 0, KEY_QUERY_VALUE, &parmKey);
105 if (code != ERROR_SUCCESS)
108 dummyLen = sizeof(doTrace);
109 code = RegQueryValueEx(parmKey, "TraceOnShutdown",
111 (BYTE *) &doTrace, &dummyLen);
112 RegCloseKey (parmKey);
113 if (code != ERROR_SUCCESS)
116 afsd_ForceTrace(FALSE);
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);
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);
135 /* XXX handle system shutdown */
136 /* XXX handle pause & continue */
141 /* This code was moved to Drivemap.cpp*/
142 /* Mount a drive into AFS if the user wants us to */
143 void CheckMountDrive()
145 char szAfsPath[_MAX_PATH];
146 char szDriveToMapTo[5];
152 DWORD dwSubMountSize;
153 char szSubMount[256];
156 sprintf(szKeyName, "%s\\GlobalAutoMapper", AFSConfigKeyName);
158 dwResult = RegOpenKeyEx(HKEY_LOCAL_MACHINE, szKeyName, 0, KEY_QUERY_VALUE, &hKey);
159 if (dwResult != ERROR_SUCCESS)
163 dwDriveSize = sizeof(szDriveToMapTo);
164 dwSubMountSize = sizeof(szSubMount);
165 dwResult = RegEnumValue(hKey, dwIndex++, szDriveToMapTo, &dwDriveSize, 0, &dwType, szSubMount, &dwSubMountSize);
166 if (dwResult != ERROR_MORE_DATA) {
167 if (dwResult != ERROR_SUCCESS) {
168 if (dwResult != ERROR_NO_MORE_ITEMS)
169 afsi_log("Failed to read GlobalAutoMapper values: %d\n", dwResult);
174 sprintf(szAfsPath, "\\Device\\LanmanRedirector\\%s\\%s-AFS\\%s", szDriveToMapTo, cm_HostName, szSubMount);
176 dwResult = DefineDosDevice(DDD_RAW_TARGET_PATH, szDriveToMapTo, szAfsPath);
177 afsi_log("GlobalAutoMap of %s to %s %s", szDriveToMapTo, szSubMount, dwResult ? "succeeded" : "failed");
190 osi_InitPanic(afsd_notifier);
191 osi_InitTraceOption();
195 WaitToTerminate = CreateEvent(NULL, TRUE, FALSE, NULL);
198 StatusHandle = RegisterServiceCtrlHandler(AFS_DAEMON_SERVICE_NAME,
199 (LPHANDLER_FUNCTION) afsd_ServiceControlHandler);
201 ServiceStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
202 ServiceStatus.dwServiceSpecificExitCode = 0;
203 ServiceStatus.dwCurrentState = SERVICE_START_PENDING;
204 ServiceStatus.dwWin32ExitCode = NO_ERROR;
205 ServiceStatus.dwCheckPoint = 1;
206 ServiceStatus.dwWaitHint = 15000;
207 ServiceStatus.dwControlsAccepted = 0;
208 SetServiceStatus(StatusHandle, &ServiceStatus);
211 HANDLE h; char *ptbuf[1];
212 h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
213 ptbuf[0] = "AFS start pending";
214 ReportEvent(h, EVENTLOG_INFORMATION_TYPE, 0, 0, NULL, 1, 0, ptbuf, NULL);
215 DeregisterEventSource(h);
220 MainThreadId = GetCurrentThreadId();
221 jmpret = setjmp(notifier_jmp);
224 code = afsd_InitCM(&reason);
226 osi_panic(reason, __FILE__, __LINE__);
228 code = afsd_InitDaemons(&reason);
230 osi_panic(reason, __FILE__, __LINE__);
232 code = afsd_InitSMB(&reason, DummyMessageBox);
234 osi_panic(reason, __FILE__, __LINE__);
237 ServiceStatus.dwCurrentState = SERVICE_RUNNING;
238 ServiceStatus.dwWin32ExitCode = NO_ERROR;
239 ServiceStatus.dwCheckPoint = 0;
240 ServiceStatus.dwWaitHint = 0;
241 ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
242 SetServiceStatus(StatusHandle, &ServiceStatus);
245 HANDLE h; char *ptbuf[1];
246 h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
247 ptbuf[0] = "AFS running";
248 ReportEvent(h, EVENTLOG_INFORMATION_TYPE, 0, 0, NULL, 1, 0, ptbuf, NULL);
249 DeregisterEventSource(h);
253 /* Check if we should mount a drive into AFS */
254 /* CheckMountDrive();*/
256 WaitForSingleObject(WaitToTerminate, INFINITE);
259 HANDLE h; char *ptbuf[1];
260 h = RegisterEventSource(NULL, AFS_DAEMON_EVENT_NAME);
261 ptbuf[0] = "AFS quitting";
263 GlobalStatus ? EVENTLOG_ERROR_TYPE : EVENTLOG_INFORMATION_TYPE,
264 0, 0, NULL, 1, 0, ptbuf, NULL);
265 DeregisterEventSource(h);
268 ServiceStatus.dwCurrentState = SERVICE_STOPPED;
269 ServiceStatus.dwWin32ExitCode = NO_ERROR;
270 ServiceStatus.dwCheckPoint = 0;
271 ServiceStatus.dwWaitHint = 0;
272 ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP;
273 SetServiceStatus(StatusHandle, &ServiceStatus);
286 LONG status = ERROR_SUCCESS;
287 SERVICE_TABLE_ENTRY dispatchTable[] = {
288 {AFS_DAEMON_SERVICE_NAME, (LPSERVICE_MAIN_FUNCTION) afsd_Main},
292 if (!StartServiceCtrlDispatcher(dispatchTable))
293 status = GetLastError();