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 <afsconfig.h>
11 #include <afs/param.h>
27 #include <rx/rx_prototypes.h>
28 #include <WINNT/afsreg.h>
33 long cm_daemonCheckDownInterval = 180;
34 long cm_daemonCheckUpInterval = 240;
35 long cm_daemonCheckVolInterval = 3600;
36 long cm_daemonCheckCBInterval = 60;
37 long cm_daemonCheckVolCBInterval = 0;
38 long cm_daemonCheckLockInterval = 2;
39 long cm_daemonTokenCheckInterval = 180;
40 long cm_daemonCheckOfflineVolInterval = 600;
41 long cm_daemonPerformanceTuningInterval = 0;
42 long cm_daemonRankServerInterval = 600;
44 osi_rwlock_t cm_daemonLock;
46 long cm_bkgQueueCount; /* # of queued requests */
48 int cm_bkgWaitingForCount; /* true if someone's waiting for cm_bkgQueueCount to drop */
50 cm_bkgRequest_t *cm_bkgListp; /* first elt in the list of requests */
51 cm_bkgRequest_t *cm_bkgListEndp; /* last elt in the list of requests */
53 extern int powerStateSuspended;
54 int daemon_ShutdownFlag = 0;
55 static int cm_nDaemons = 0;
56 static time_t lastIPAddrChange = 0;
58 static EVENT_HANDLE cm_Daemon_ShutdownEvent = NULL;
59 static EVENT_HANDLE cm_LockDaemon_ShutdownEvent = NULL;
60 static EVENT_HANDLE cm_IPAddrDaemon_ShutdownEvent = NULL;
61 static EVENT_HANDLE cm_BkgDaemon_ShutdownEvent[CM_MAX_DAEMONS] =
62 {NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
64 void cm_IpAddrDaemon(long parm)
66 extern void smb_CheckVCs(void);
67 char * name = "cm_IPAddrDaemon_ShutdownEvent";
69 cm_IPAddrDaemon_ShutdownEvent = thrd_CreateEvent(NULL, FALSE, FALSE, name);
70 if ( GetLastError() == ERROR_ALREADY_EXISTS )
71 afsi_log("Event Object Already Exists: %s", name);
73 rx_StartClientThread();
75 while (daemon_ShutdownFlag == 0) {
78 thrd_SetEvent(cm_IPAddrDaemon_ShutdownEvent);
79 Result = NotifyAddrChange(NULL,NULL);
80 if (Result == NO_ERROR && daemon_ShutdownFlag == 0) {
81 lastIPAddrChange = osi_Time();
82 smb_SetLanAdapterChangeDetected();
83 cm_SetLanAdapterChangeDetected();
84 thrd_ResetEvent(cm_IPAddrDaemon_ShutdownEvent);
88 thrd_SetEvent(cm_IPAddrDaemon_ShutdownEvent);
91 void cm_BkgDaemon(void * parm)
96 long daemonID = (long)(LONG_PTR)parm;
98 snprintf(name, sizeof(name), "cm_BkgDaemon_ShutdownEvent%u", daemonID);
100 cm_BkgDaemon_ShutdownEvent[daemonID] = thrd_CreateEvent(NULL, FALSE, FALSE, name);
101 if ( GetLastError() == ERROR_ALREADY_EXISTS )
102 afsi_log("Event Object Already Exists: %s", name);
104 rx_StartClientThread();
106 lock_ObtainWrite(&cm_daemonLock);
107 while (daemon_ShutdownFlag == 0) {
108 if (powerStateSuspended) {
112 if (!cm_bkgListEndp) {
113 osi_SleepW((LONG_PTR)&cm_bkgListp, &cm_daemonLock);
114 lock_ObtainWrite(&cm_daemonLock);
118 /* we found a request */
119 for (rp = cm_bkgListEndp; rp; rp = (cm_bkgRequest_t *) osi_QPrev(&rp->q))
121 if (cm_ServerAvailable(&rp->scp->fid, rp->userp) ||
122 rp->scp->flags & CM_SCACHEFLAG_DELETED)
126 /* we couldn't find a request that we could process at the current time */
127 lock_ReleaseWrite(&cm_daemonLock);
129 lock_ObtainWrite(&cm_daemonLock);
133 osi_QRemoveHT((osi_queue_t **) &cm_bkgListp, (osi_queue_t **) &cm_bkgListEndp, &rp->q);
134 osi_assertx(cm_bkgQueueCount-- > 0, "cm_bkgQueueCount 0");
135 lock_ReleaseWrite(&cm_daemonLock);
137 osi_Log1(afsd_logp,"cm_BkgDaemon processing request 0x%p", rp);
139 if (rp->scp->flags & CM_SCACHEFLAG_DELETED) {
140 osi_Log1(afsd_logp,"cm_BkgDaemon DELETED scp 0x%x",rp->scp);
141 code = CM_ERROR_BADFD;
143 #ifdef DEBUG_REFCOUNT
144 osi_Log2(afsd_logp,"cm_BkgDaemon (before) scp 0x%x ref %d",rp->scp, rp->scp->refCount);
146 code = (*rp->procp)(rp->scp, rp->p1, rp->p2, rp->p3, rp->p4, rp->userp);
147 #ifdef DEBUG_REFCOUNT
148 osi_Log2(afsd_logp,"cm_BkgDaemon (after) scp 0x%x ref %d",rp->scp, rp->scp->refCount);
153 * Keep the following list synchronized with the
154 * error code list in cm_BkgStore.
155 * cm_SyncOpDone(CM_SCACHESYNC_ASYNCSTORE) will be called there unless
156 * one of these errors has occurred.
159 case CM_ERROR_TIMEDOUT: /* or server restarting */
161 case CM_ERROR_WOULDBLOCK:
162 case CM_ERROR_ALLBUSY:
163 case CM_ERROR_ALLDOWN:
164 case CM_ERROR_ALLOFFLINE:
165 case CM_ERROR_PARTIALWRITE:
166 if (rp->procp == cm_BkgStore) {
168 "cm_BkgDaemon re-queueing failed request 0x%p code 0x%x",
170 lock_ObtainWrite(&cm_daemonLock);
172 osi_QAddT((osi_queue_t **) &cm_bkgListp, (osi_queue_t **)&cm_bkgListEndp, &rp->q);
174 } /* otherwise fall through */
175 case 0: /* success */
176 default: /* other error */
178 osi_Log1(afsd_logp,"cm_BkgDaemon SUCCESS: request 0x%p", rp);
180 osi_Log2(afsd_logp,"cm_BkgDaemon FAILED: request dropped 0x%p code 0x%x",
182 cm_ReleaseUser(rp->userp);
183 cm_ReleaseSCache(rp->scp);
185 lock_ObtainWrite(&cm_daemonLock);
188 lock_ReleaseWrite(&cm_daemonLock);
189 thrd_SetEvent(cm_BkgDaemon_ShutdownEvent[daemonID]);
192 void cm_QueueBKGRequest(cm_scache_t *scp, cm_bkgProc_t *procp, afs_uint32 p1, afs_uint32 p2, afs_uint32 p3, afs_uint32 p4,
197 rp = malloc(sizeof(*rp));
198 memset(rp, 0, sizeof(*rp));
210 lock_ObtainWrite(&cm_daemonLock);
212 osi_QAdd((osi_queue_t **) &cm_bkgListp, &rp->q);
215 lock_ReleaseWrite(&cm_daemonLock);
217 osi_Wakeup((LONG_PTR) &cm_bkgListp);
221 IsWindowsFirewallPresent(void)
226 BOOLEAN result = FALSE;
227 LPQUERY_SERVICE_CONFIG pConfig = NULL;
231 /* Open services manager */
232 scm = OpenSCManager(NULL, NULL, GENERIC_READ);
233 if (!scm) return FALSE;
235 /* Open Windows Firewall service */
236 svc = OpenService(scm, "MpsSvc", SERVICE_QUERY_CONFIG);
238 afsi_log("MpsSvc Service could not be opened for query: 0x%x", GetLastError());
239 svc = OpenService(scm, "SharedAccess", SERVICE_QUERY_CONFIG);
241 afsi_log("SharedAccess Service could not be opened for query: 0x%x", GetLastError());
246 /* Query Windows Firewall service config, first just to get buffer size */
247 /* Expected to fail, so don't test return value */
248 (void) QueryServiceConfig(svc, NULL, 0, &BufSize);
249 status = GetLastError();
250 if (status != ERROR_INSUFFICIENT_BUFFER)
253 /* Allocate buffer */
254 pConfig = (LPQUERY_SERVICE_CONFIG)GlobalAlloc(GMEM_FIXED,BufSize);
258 /* Query Windows Firewall service config, this time for real */
259 flag = QueryServiceConfig(svc, pConfig, BufSize, &BufSize);
261 afsi_log("QueryServiceConfig failed: 0x%x", GetLastError());
265 /* Is it autostart? */
266 afsi_log("AutoStart 0x%x", pConfig->dwStartType);
267 if (pConfig->dwStartType < SERVICE_DEMAND_START)
273 CloseServiceHandle(svc);
275 CloseServiceHandle(scm);
281 cm_DaemonCheckInit(void)
288 code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
289 0, KEY_QUERY_VALUE, &parmKey);
293 dummyLen = sizeof(DWORD);
294 code = RegQueryValueEx(parmKey, "daemonCheckDownInterval", NULL, NULL,
295 (BYTE *) &dummy, &dummyLen);
296 if (code == ERROR_SUCCESS && dummy)
297 cm_daemonCheckDownInterval = dummy;
298 afsi_log("daemonCheckDownInterval is %d", cm_daemonCheckDownInterval);
300 dummyLen = sizeof(DWORD);
301 code = RegQueryValueEx(parmKey, "daemonCheckUpInterval", NULL, NULL,
302 (BYTE *) &dummy, &dummyLen);
303 if (code == ERROR_SUCCESS && dummy)
304 cm_daemonCheckUpInterval = dummy;
305 afsi_log("daemonCheckUpInterval is %d", cm_daemonCheckUpInterval);
307 dummyLen = sizeof(DWORD);
308 code = RegQueryValueEx(parmKey, "daemonCheckVolInterval", NULL, NULL,
309 (BYTE *) &dummy, &dummyLen);
310 if (code == ERROR_SUCCESS && dummy)
311 cm_daemonCheckVolInterval = dummy;
312 afsi_log("daemonCheckVolInterval is %d", cm_daemonCheckVolInterval);
314 dummyLen = sizeof(DWORD);
315 code = RegQueryValueEx(parmKey, "daemonCheckCBInterval", NULL, NULL,
316 (BYTE *) &dummy, &dummyLen);
317 if (code == ERROR_SUCCESS && dummy)
318 cm_daemonCheckCBInterval = dummy;
319 afsi_log("daemonCheckCBInterval is %d", cm_daemonCheckCBInterval);
321 dummyLen = sizeof(DWORD);
322 code = RegQueryValueEx(parmKey, "daemonCheckVolCBInterval", NULL, NULL,
323 (BYTE *) &dummy, &dummyLen);
324 if (code == ERROR_SUCCESS && dummy)
325 cm_daemonCheckVolCBInterval = dummy;
326 afsi_log("daemonCheckVolCBInterval is %d", cm_daemonCheckVolCBInterval);
328 dummyLen = sizeof(DWORD);
329 code = RegQueryValueEx(parmKey, "daemonCheckLockInterval", NULL, NULL,
330 (BYTE *) &dummy, &dummyLen);
331 if (code == ERROR_SUCCESS && dummy)
332 cm_daemonCheckLockInterval = dummy;
333 afsi_log("daemonCheckLockInterval is %d", cm_daemonCheckLockInterval);
335 dummyLen = sizeof(DWORD);
336 code = RegQueryValueEx(parmKey, "daemonCheckTokenInterval", NULL, NULL,
337 (BYTE *) &dummy, &dummyLen);
338 if (code == ERROR_SUCCESS && dummy)
339 cm_daemonTokenCheckInterval = dummy;
340 afsi_log("daemonCheckTokenInterval is %d", cm_daemonTokenCheckInterval);
342 dummyLen = sizeof(DWORD);
343 code = RegQueryValueEx(parmKey, "daemonCheckOfflineVolInterval", NULL, NULL,
344 (BYTE *) &dummy, &dummyLen);
345 if (code == ERROR_SUCCESS && dummy)
346 cm_daemonCheckOfflineVolInterval = dummy;
347 afsi_log("daemonCheckOfflineVolInterval is %d", cm_daemonCheckOfflineVolInterval);
349 dummyLen = sizeof(DWORD);
350 code = RegQueryValueEx(parmKey, "daemonPerformanceTuningInterval", NULL, NULL,
351 (BYTE *) &dummy, &dummyLen);
352 if (code == ERROR_SUCCESS)
353 cm_daemonPerformanceTuningInterval = dummy;
354 afsi_log("daemonPerformanceTuningInterval is %d", cm_daemonPerformanceTuningInterval);
356 dummyLen = sizeof(DWORD);
357 code = RegQueryValueEx(parmKey, "daemonRankServerInterval", NULL, NULL,
358 (BYTE *) &dummy, &dummyLen);
359 if (code == ERROR_SUCCESS && dummy)
360 cm_daemonRankServerInterval = dummy;
361 afsi_log("daemonRankServerInterval is %d", cm_daemonRankServerInterval);
363 RegCloseKey(parmKey);
365 if (cm_daemonPerformanceTuningInterval)
366 cm_PerformanceTuningInit();
369 /* periodic lock check daemon */
370 void cm_LockDaemon(long parm)
373 time_t lastLockCheck;
374 char * name = "cm_LockDaemon_ShutdownEvent";
376 cm_LockDaemon_ShutdownEvent = thrd_CreateEvent(NULL, FALSE, FALSE, name);
377 if ( GetLastError() == ERROR_ALREADY_EXISTS )
378 afsi_log("Event Object Already Exists: %s", name);
381 lastLockCheck = now - cm_daemonCheckLockInterval/2 + (rand() % cm_daemonCheckLockInterval);
383 while (daemon_ShutdownFlag == 0) {
384 if (powerStateSuspended) {
391 if (now > lastLockCheck + cm_daemonCheckLockInterval &&
392 daemon_ShutdownFlag == 0 &&
393 powerStateSuspended == 0) {
396 if (daemon_ShutdownFlag == 1)
400 thrd_Sleep(1000); /* sleep 1 second */
402 thrd_SetEvent(cm_LockDaemon_ShutdownEvent);
405 /* periodic check daemon */
406 void cm_Daemon(long parm)
410 time_t lastCBExpirationCheck;
411 time_t lastVolCBRenewalCheck;
412 time_t lastDownServerCheck;
413 time_t lastUpServerCheck;
414 time_t lastTokenCacheCheck;
415 time_t lastBusyVolCheck;
416 time_t lastPerformanceCheck;
417 time_t lastServerRankCheck;
422 char * name = "cm_Daemon_ShutdownEvent";
423 int configureFirewall = IsWindowsFirewallPresent();
424 int bAddrChangeCheck = 0;
426 cm_Daemon_ShutdownEvent = thrd_CreateEvent(NULL, FALSE, FALSE, name);
427 if ( GetLastError() == ERROR_ALREADY_EXISTS )
428 afsi_log("Event Object Already Exists: %s", name);
430 if (!configureFirewall) {
431 afsi_log("No Windows Firewall detected");
434 if (cm_freelanceEnabled && cm_freelanceImportCellServDB)
435 cm_FreelanceImportCellServDB();
437 /* ping all file servers, up or down, with unauthenticated connection,
438 * to find out whether we have all our callbacks from the server still.
439 * Also, ping down VLDBs.
442 * Seed the random number generator with our own address, so that
443 * clients starting at the same time don't all do vol checks at the
446 gethostname(thostName, sizeof(thostName));
447 thp = gethostbyname(thostName);
448 if (thp == NULL) /* In djgpp, gethostname returns the netbios
449 name of the machine. gethostbyname will fail
450 looking this up if it differs from DNS name. */
453 memcpy(&code, thp->h_addr_list[0], 4);
457 cm_DaemonCheckInit();
460 lastVolCheck = now - cm_daemonCheckVolInterval/2 + (rand() % cm_daemonCheckVolInterval);
461 lastCBExpirationCheck = now - cm_daemonCheckCBInterval/2 + (rand() % cm_daemonCheckCBInterval);
462 if (cm_daemonCheckVolCBInterval)
463 lastVolCBRenewalCheck = now - cm_daemonCheckVolCBInterval/2 + (rand() % cm_daemonCheckVolCBInterval);
464 lastDownServerCheck = now - cm_daemonCheckDownInterval/2 + (rand() % cm_daemonCheckDownInterval);
465 lastUpServerCheck = now - cm_daemonCheckUpInterval/2 + (rand() % cm_daemonCheckUpInterval);
466 lastTokenCacheCheck = now - cm_daemonTokenCheckInterval/2 + (rand() % cm_daemonTokenCheckInterval);
467 lastBusyVolCheck = now - cm_daemonCheckOfflineVolInterval/2 * (rand() % cm_daemonCheckOfflineVolInterval);
468 if (cm_daemonPerformanceTuningInterval)
469 lastPerformanceCheck = now - cm_daemonPerformanceTuningInterval/2 * (rand() % cm_daemonPerformanceTuningInterval);
470 lastServerRankCheck = now - cm_daemonRankServerInterval/2 * (rand() % cm_daemonRankServerInterval);
472 while (daemon_ShutdownFlag == 0) {
473 if (powerStateSuspended) {
477 /* check to see if the listener threads halted due to network
478 * disconnect or other issues. If so, attempt to restart them.
480 smb_RestartListeners(0);
482 if (daemon_ShutdownFlag == 1)
485 if (configureFirewall) {
486 /* Open Microsoft Firewall to allow in port 7001 */
487 switch (icf_CheckAndAddAFSPorts(AFS_PORTSET_CLIENT)) {
489 afsi_log("Windows Firewall Configuration succeeded");
490 configureFirewall = 0;
493 afsi_log("Invalid Windows Firewall Port Set");
496 afsi_log("Unable to open Windows Firewall Profile");
499 afsi_log("Unable to create/modify Windows Firewall Port entries");
502 afsi_log("Unknown Windows Firewall Configuration error");
506 /* find out what time it is */
509 /* Determine whether an address change took place that we need to respond to */
510 if (bAddrChangeCheck)
511 bAddrChangeCheck = 0;
513 if (lastIPAddrChange != 0 && lastIPAddrChange + 2500 < now) {
514 bAddrChangeCheck = 1;
515 lastIPAddrChange = 0;
518 /* check down servers */
519 if ((bAddrChangeCheck || now > lastDownServerCheck + cm_daemonCheckDownInterval) &&
520 daemon_ShutdownFlag == 0 &&
521 powerStateSuspended == 0) {
522 lastDownServerCheck = now;
523 osi_Log0(afsd_logp, "cm_Daemon CheckDownServers");
524 cm_CheckServers(CM_FLAG_CHECKDOWNSERVERS, NULL);
525 if (daemon_ShutdownFlag == 1)
530 if (bAddrChangeCheck &&
531 daemon_ShutdownFlag == 0 &&
532 powerStateSuspended == 0) {
533 cm_ForceNewConnectionsAllServers();
536 /* check up servers */
537 if ((bAddrChangeCheck || now > lastUpServerCheck + cm_daemonCheckUpInterval) &&
538 daemon_ShutdownFlag == 0 &&
539 powerStateSuspended == 0) {
540 lastUpServerCheck = now;
541 osi_Log0(afsd_logp, "cm_Daemon CheckUpServers");
542 cm_CheckServers(CM_FLAG_CHECKUPSERVERS, NULL);
543 if (daemon_ShutdownFlag == 1)
548 if (bAddrChangeCheck &&
549 daemon_ShutdownFlag == 0 &&
550 powerStateSuspended == 0) {
552 cm_VolStatus_Network_Addr_Change();
556 * Once every five minutes inspect the volume list and enforce
557 * the volume location expiration time.
559 if (now > lastVolCheck + 300 &&
560 daemon_ShutdownFlag == 0 &&
561 powerStateSuspended == 0) {
563 cm_RefreshVolumes(cm_daemonCheckVolInterval);
564 if (daemon_ShutdownFlag == 1)
569 /* Rank all up servers */
570 if ((now > lastServerRankCheck + cm_daemonRankServerInterval) &&
571 daemon_ShutdownFlag == 0 &&
572 powerStateSuspended == 0) {
573 lastServerRankCheck = now;
574 osi_Log0(afsd_logp, "cm_Daemon RankServer");
576 if(daemon_ShutdownFlag == 1)
581 if (cm_daemonCheckVolCBInterval &&
582 now > lastVolCBRenewalCheck + cm_daemonCheckVolCBInterval &&
583 daemon_ShutdownFlag == 0 &&
584 powerStateSuspended == 0) {
585 lastVolCBRenewalCheck = now;
586 cm_VolumeRenewROCallbacks();
587 if (daemon_ShutdownFlag == 1)
592 if ((bAddrChangeCheck || now > lastBusyVolCheck + cm_daemonCheckOfflineVolInterval) &&
593 daemon_ShutdownFlag == 0 &&
594 powerStateSuspended == 0) {
595 lastBusyVolCheck = now;
596 cm_CheckOfflineVolumes();
597 if (daemon_ShutdownFlag == 1)
602 if (now > lastCBExpirationCheck + cm_daemonCheckCBInterval &&
603 daemon_ShutdownFlag == 0 &&
604 powerStateSuspended == 0) {
605 lastCBExpirationCheck = now;
606 cm_CheckCBExpiration();
607 if (daemon_ShutdownFlag == 1)
612 if (now > lastTokenCacheCheck + cm_daemonTokenCheckInterval &&
613 daemon_ShutdownFlag == 0 &&
614 powerStateSuspended == 0) {
615 lastTokenCacheCheck = now;
616 cm_CheckTokenCache(now);
617 if (daemon_ShutdownFlag == 1)
622 /* allow an exit to be called prior to stopping the service */
623 hHookDll = cm_LoadAfsdHookLib();
627 AfsdDaemonHook daemonHook = ( AfsdDaemonHook ) GetProcAddress(hHookDll, AFSD_DAEMON_HOOK);
630 hookRc = daemonHook();
632 FreeLibrary(hHookDll);
637 SetEvent(WaitToTerminate);
640 if (daemon_ShutdownFlag == 1) {
646 if (cm_daemonPerformanceTuningInterval &&
647 now > lastPerformanceCheck + cm_daemonPerformanceTuningInterval &&
648 daemon_ShutdownFlag == 0 &&
649 powerStateSuspended == 0) {
650 lastPerformanceCheck = now;
651 cm_PerformanceTuningCheck();
652 if (daemon_ShutdownFlag == 1)
658 * sleep .5 seconds. if the thread blocks for a long time
659 * we risk not being able to close the cache before Windows
660 * kills our process during system shutdown.
665 thrd_SetEvent(cm_Daemon_ShutdownEvent);
668 void cm_DaemonShutdown(void)
673 daemon_ShutdownFlag = 1;
674 osi_Wakeup((LONG_PTR) &cm_bkgListp);
676 /* wait for shutdown */
677 for ( i=0; i<cm_nDaemons; i++) {
678 if (cm_BkgDaemon_ShutdownEvent[i])
679 code = thrd_WaitForSingleObject_Event(cm_BkgDaemon_ShutdownEvent[i], INFINITE);
682 if (cm_Daemon_ShutdownEvent)
683 code = thrd_WaitForSingleObject_Event(cm_Daemon_ShutdownEvent, INFINITE);
685 if (cm_LockDaemon_ShutdownEvent)
686 code = thrd_WaitForSingleObject_Event(cm_LockDaemon_ShutdownEvent, INFINITE);
690 * Do not waste precious time waiting for the ipaddr daemon to shutdown.
691 * When it does it means we have lost our network connection and we need
692 * it during cache shutdown in order to notify the file servers that this
693 * client is giving up all callbacks.
695 if (cm_IPAddrDaemon_ShutdownEvent)
696 code = thrd_WaitForSingleObject_Event(cm_IPAddrDaemon_ShutdownEvent, INFINITE);
700 void cm_InitDaemon(int nDaemons)
702 static osi_once_t once;
707 cm_nDaemons = (nDaemons > CM_MAX_DAEMONS) ? CM_MAX_DAEMONS : nDaemons;
709 if (osi_Once(&once)) {
710 lock_InitializeRWLock(&cm_daemonLock, "cm_daemonLock",
711 LOCK_HIERARCHY_DAEMON_GLOBAL);
714 /* creating IP Address Change monitor daemon */
715 phandle = thrd_Create((SecurityAttrib) 0, 0,
716 (ThreadFunc) cm_IpAddrDaemon, 0, 0, &pid, "cm_IpAddrDaemon");
717 osi_assertx(phandle != NULL, "cm_IpAddrDaemon thread creation failure");
718 thrd_CloseHandle(phandle);
720 /* creating pinging daemon */
721 phandle = thrd_Create((SecurityAttrib) 0, 0,
722 (ThreadFunc) cm_Daemon, 0, 0, &pid, "cm_Daemon");
723 osi_assertx(phandle != NULL, "cm_Daemon thread creation failure");
724 thrd_CloseHandle(phandle);
726 phandle = thrd_Create((SecurityAttrib) 0, 0,
727 (ThreadFunc) cm_LockDaemon, 0, 0, &pid, "cm_LockDaemon");
728 osi_assertx(phandle != NULL, "cm_LockDaemon thread creation failure");
729 thrd_CloseHandle(phandle);
731 for(i=0; i < cm_nDaemons; i++) {
732 phandle = thrd_Create((SecurityAttrib) 0, 0,
733 (ThreadFunc) cm_BkgDaemon, (LPVOID)(LONG_PTR)i, 0, &pid,
735 osi_assertx(phandle != NULL, "cm_BkgDaemon thread creation failure");
736 thrd_CloseHandle(phandle);