]> git.pond.sub.org Git - empserver/blob - src/lib/empthread/ntthread.c
92181766f0ff1def931210c2abff2157bd98ef2c
[empserver] / src / lib / empthread / ntthread.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  ntthread.c: Interface from Empire threads to Windows NT threads
29  * 
30  *  Known contributors to this file:
31  *     Doug Hay, 1998
32  *     Steve McClure, 1998
33  */
34
35 /*
36  * EMPTHREADs for Windows NT.
37  *
38  * Actually, threads for any Win32 platform, like Win95, Win98, WinCE,
39  * and whatever other toy OSs are in our future from Microsoft.
40  *
41  * WIN32 has a full pre-emptive threading environment.  But Empire can
42  * not handle pre-emptive threading.  Thus, we will use the threads,
43  * but limit the preemption using a Mutex semaphore.
44  *
45  */
46
47 #include <config.h>
48
49 #include <stdio.h>
50 #include <sys/types.h>
51 #include <signal.h>
52 #include <errno.h>
53 #include <time.h>
54 #include "misc.h"
55 #include "empthread.h"
56 #include "prototypes.h"
57
58 #define WIN32
59 #include <winsock2.h>
60 #undef NS_ALL
61 #include <windows.h>
62 #include <process.h>
63
64 #define loc_MIN_THREAD_STACK  16384
65
66 /************************
67  * loc_Thread_t
68  */
69 struct loc_Thread_t {
70
71     /* The thread name, passed in at create time. */
72     char szName[17];
73     /* The thread description, passed in at create time. */
74     char szDesc[80];
75
76     /* True if this is the main line, and not a real thread. */
77     BOOL bMainThread;
78
79     /* The user data passed in at create time. */
80     void *pvUserData;
81
82     /* True if this thread has been killed. */
83     BOOL bKilled;
84
85     /* The entry function for the thread. */
86     void (*pfnEntry) (void *);
87
88     /* The system thread ID. */
89     unsigned long ulThreadID;
90
91     /* An Event sem that the thread will wait/sleep on. */
92     HANDLE hThreadEvent;
93 };
94
95
96 /************************
97  * loc_Sem_t
98  */
99 struct loc_Sem_t {
100
101     char szName[17];
102
103     /* An exclusion semaphore for this sem. */
104     HANDLE hMutex;
105     /* An Event sem that the thread(s) will sleep on. */
106
107     HANDLE hEvent;
108     /* The count variable */
109     int count;
110 };
111
112 /* This is the thread exclusion/non-premption mutex. */
113 /* The running thread has this MUTEX, and all others are */
114 /* either blocked on it, or waiting for some OS response. */
115 static HANDLE hThreadMutex;
116
117 /* This is the thread startup event sem. */
118 /* We use this to lockstep when we are starting up threads. */
119 static HANDLE hThreadStartEvent;
120
121 /* This is an event used to wakeup the main thread */
122 /* to start the shutdown sequence. */
123 static HANDLE hShutdownEvent;
124
125 /* The Thread Local Storage index.  We store the pThread pointer */
126 /* for each thread at this index. */
127 static DWORD dwTLSIndex;
128
129 /* The current running thread. */
130 static empth_t *pCurThread;
131
132 /* Ticks at start */
133 static unsigned long ulTickAtStart;
134
135 /* Pointer out to global context.  "player". */
136 /* From empth_init parameter. */
137 static void **ppvUserData;
138
139 /* Global flags.  From empth_init parameter. */
140 static int global_flags;
141
142
143 /************************
144  * loc_debug
145  *
146  * Print out the current thread's status??
147  */
148 static void
149 loc_debug(const char *pszFmt, ...)
150 {
151     va_list vaList;
152     unsigned long ulCurTick;
153     unsigned long ulRunTick;
154     unsigned long ulMs, ulSec, ulMin, ulHr;
155     empth_t *pThread = TlsGetValue(dwTLSIndex);
156     char buf[1024];
157
158     if ((global_flags & EMPTH_PRINT) != 0) {
159
160         /* Ticks are in milliseconds */
161         ulCurTick = GetTickCount();
162
163         ulRunTick = ulCurTick - ulTickAtStart;
164         ulMs = ulRunTick % 1000L;
165         ulSec = (ulRunTick / 1000L) % 60L;
166         ulMin = (ulRunTick / (60L * 1000L)) % 60L;
167         ulHr = (ulRunTick / (60L * 60L * 1000L));
168
169         va_start(vaList, pszFmt);
170         vsprintf(buf, pszFmt, vaList);
171         va_end(vaList);
172
173         if (pThread) {
174             printf("%ld:%02ld:%02ld.%03ld %17s: %s\n",
175                    ulHr, ulMin, ulSec, ulMs, pThread->szName, buf);
176         } else {
177             printf("%ld:%02ld:%02ld.%03ld %17s: %s\n",
178                    ulHr, ulMin, ulSec, ulMs, "UNKNOWN", buf);
179         }
180
181     }
182 }
183
184 /************************
185  * loc_FreeThreadInfo
186  *
187  */
188 static void
189 loc_FreeThreadInfo(empth_t *pThread)
190 {
191     if (pThread) {
192         if (pThread->hThreadEvent)
193             CloseHandle(pThread->hThreadEvent);
194         memset(pThread, 0, sizeof(*pThread));
195         free(pThread);
196     }
197 }
198
199 /************************
200  * loc_RunThisThread
201  *
202  * This thread wants to run.
203  * When this function returns, the globals are set to this thread
204  * info, and the thread owns the MUTEX sem.
205  */
206 static void
207 loc_RunThisThread(void)
208 {
209     empth_t *pThread = TlsGetValue(dwTLSIndex);
210
211     if (pThread->bKilled) {
212         if (!pThread->bMainThread) {
213             TlsSetValue(dwTLSIndex, NULL);
214             loc_FreeThreadInfo(pThread);
215             _endthread();
216         }
217     }
218
219     /* Get the MUTEX semaphore, wait forever. */
220     WaitForSingleObject(hThreadMutex, INFINITE);
221
222     if (!pCurThread) {
223         /* Set the globals to this thread. */
224         *ppvUserData = pThread->pvUserData;
225
226         pCurThread = pThread;
227     } else {
228         /* Hmm, a problem, eh? */
229         logerror("RunThisThread, someone already running.");
230     }
231 }
232
233 /************************
234  * loc_BlockThisThread
235  *
236  * This thread was running.  It no longer wants to.
237  */
238 static void
239 loc_BlockThisThread(void)
240 {
241     empth_t *pThread = TlsGetValue(dwTLSIndex);
242
243     if (pCurThread == pThread) {
244         /* Reset the globals back to original */
245
246         pCurThread = NULL;
247         *ppvUserData = NULL;
248
249         /* Release the MUTEX */
250         ReleaseMutex(hThreadMutex);
251     } else {
252         /* Hmm, this thread was not the running one. */
253         logerror("BlockThisThread, not running.");
254     }
255 }
256
257 /************************
258  * loc_Exit_Handler
259  *
260  * Ctrl-C, Ctrl-Break, Window-Closure, User-Logging-Off or
261  * System-Shutdown will initiate a shutdown.
262  * This is done by calling empth_request_shutdown()
263  */
264 static BOOL
265 loc_Exit_Handler(DWORD fdwCtrlType)
266 {
267     switch (fdwCtrlType) 
268     { 
269         case CTRL_C_EVENT:
270         case CTRL_CLOSE_EVENT:
271         case CTRL_BREAK_EVENT: 
272         case CTRL_LOGOFF_EVENT: 
273         case CTRL_SHUTDOWN_EVENT: 
274             empth_request_shutdown();
275             return TRUE;
276         default:
277             return FALSE;
278     }
279 }
280
281 /************************
282  * empth_request_shutdown
283  *
284  * This wakes up the main thread so shutdown can proceed.
285  * This is done by signalling hShutdownEvent.
286  */
287 void
288 empth_request_shutdown(void)
289 {
290     SetEvent(hShutdownEvent);
291 }
292
293 /************************
294  * loc_BlockMainThread
295  *
296  * This blocks up the main thread.  loc_WakeupMainThread() is used
297  * wakeup the main so shutdown can proceed.
298  */
299 static void
300 loc_BlockMainThread(void)
301 {
302     /* Get the MUTEX semaphore, wait the number of MS */
303     WaitForSingleObject(hShutdownEvent, INFINITE);
304 }
305
306 /************************
307  * empth_threadMain
308  *
309  * This is the main line of each thread.
310  * This is really a static local func....
311  */
312 static void
313 empth_threadMain(void *pvData)
314 {
315     time_t now;
316
317     empth_t *pThread = pvData;
318
319     /* Out of here... */
320     if (!pvData)
321         return;
322
323     /* Store pThread on this thread. */
324     TlsSetValue(dwTLSIndex, pvData);
325
326     /* Get the ID of the thread. */
327     pThread->ulThreadID = GetCurrentThreadId();
328
329     /* Signal that the thread has started. */
330     SetEvent(hThreadStartEvent);
331
332     /* seed the rand() function */
333     time(&now);
334     srand(now ^ (unsigned int)pThread);
335
336     /* Switch to this thread context */
337     loc_RunThisThread();
338
339     /* Run the thread. */
340     if (pThread->pfnEntry)
341         pThread->pfnEntry(pThread->pvUserData);
342
343     /* Kill the thread. */
344     empth_exit();
345 }
346
347 /************************
348  * empth_init
349  *
350  * Initialize the thread environment.
351  *
352  * This is called from the program main line.
353  */
354 int
355 empth_init(void **ctx_ptr, int flags)
356 {
357     empth_t *pThread = NULL;
358
359     ulTickAtStart = GetTickCount();
360     ppvUserData = ctx_ptr;
361     global_flags = flags;
362     dwTLSIndex = TlsAlloc();
363
364     /* Create the thread mutex sem. */
365     /* Initally unowned. */
366     hThreadMutex = CreateMutex(NULL, FALSE, NULL);
367     if (!hThreadMutex) {
368         logerror("Failed to create mutex %lu", GetLastError());
369         return 0;
370     }
371
372     /* Create the thread start event sem. */
373     /* Automatic state reset. */
374     hThreadStartEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
375     if (!hThreadStartEvent) {
376         logerror("Failed to create start event %lu", GetLastError());
377         return 0;
378     }
379
380     /* Create the shutdown event for the main thread. */
381     /* Manual reset */
382     hShutdownEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
383     if (!hShutdownEvent) {
384         logerror("Failed to create shutdown event %lu", GetLastError());
385         return 0;
386     }
387     SetConsoleCtrlHandler((PHANDLER_ROUTINE)loc_Exit_Handler, TRUE);
388
389     /* Create the global Thread context. */
390     pThread = malloc(sizeof(*pThread));
391     if (!pThread) {
392         logerror("not enough memory to create main thread.");
393         return 0;
394     }
395     memset(pThread, 0, sizeof(*pThread));
396
397     strncpy(pThread->szName, "Main", sizeof(pThread->szName) - 1);
398     strncpy(pThread->szDesc, "The main process",
399             sizeof(pThread->szDesc) - 1);
400     pThread->ulThreadID = GetCurrentThreadId();
401     pThread->bMainThread = TRUE;
402
403     TlsSetValue(dwTLSIndex, pThread);
404
405     /* Make this the running thread. */
406     loc_RunThisThread();
407
408     logerror("NT pthreads initialized");
409     return 0;
410 }
411
412
413 /************************
414  * empth_create
415  *
416  * Create a new thread.
417  *
418  * prio  - priority, not particularly useful in our context.
419  * entry - entry point function for thread.
420  * size  - stack size.
421  * flags - debug control.
422  *           LWP_STACKCHECK  - not needed
423  * name  - name of the thread, for debug.
424  * desc  - description of thread, for debug.
425  * ud    - "user data".  The "ctx_ptr" gets this value
426  *         when the thread is active.
427  *         It is also passed to the entry function...
428  */
429 empth_t *
430 empth_create(int prio, void (*entry)(void *), int size, int flags,
431              char *name, char *desc, void *ud)
432 {
433     empth_t *pThread = NULL;
434
435     loc_debug("creating new thread %s:%s", name, desc);
436
437     pThread = malloc(sizeof(*pThread));
438     if (!pThread) {
439         logerror("not enough memory to create thread: %s (%s)", name,
440                  desc);
441         return NULL;
442     }
443     memset(pThread, 0, sizeof(*pThread));
444
445     strncpy(pThread->szName, name, sizeof(pThread->szName) - 1);
446     strncpy(pThread->szDesc, desc, sizeof(pThread->szDesc) - 1);
447     pThread->pvUserData = ud;
448     pThread->pfnEntry = entry;
449     pThread->bMainThread = FALSE;
450
451     /* Create thread event sem, auto reset. */
452     pThread->hThreadEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
453
454     if (size < loc_MIN_THREAD_STACK)
455         size = loc_MIN_THREAD_STACK;
456
457     pThread->ulThreadID = _beginthread(empth_threadMain, size, pThread);
458     if (pThread->ulThreadID == -1) {
459         logerror("can not create thread: %s (%s): %s", name, desc,
460                  strerror(errno));
461         goto bad;
462     }
463
464     loc_debug("new thread id is %ld", pThread->ulThreadID);
465     return pThread;
466
467   bad:
468     if (pThread) {
469         loc_FreeThreadInfo(pThread);
470     }
471     return NULL;
472 }
473
474
475 /************************
476  * empth_self
477  */
478 empth_t *
479 empth_self(void)
480 {
481     empth_t *pThread = TlsGetValue(dwTLSIndex);
482
483     return pThread;
484 }
485
486 /************************
487  * empth_exit
488  */
489 void
490 empth_exit(void)
491 {
492     empth_t *pThread = TlsGetValue(dwTLSIndex);
493
494     loc_BlockThisThread();
495
496     loc_debug("empth_exit");
497
498     if (pThread->bMainThread) {
499         loc_BlockMainThread();
500         loc_RunThisThread();
501         shutdwn(0);
502     } else {
503         TlsSetValue(dwTLSIndex, NULL);
504         loc_FreeThreadInfo(pThread);
505         _endthread();
506     }
507 }
508
509 /************************
510  * empth_yield
511  *
512  * Yield processing to another thread.
513  */
514 void
515 empth_yield(void)
516 {
517     loc_BlockThisThread();
518     loc_RunThisThread();
519 }
520
521 /************************
522  * empth_terminate
523  *
524  * Kill off the thread.
525  */
526 void
527 empth_terminate(empth_t *pThread)
528 {
529     loc_debug("killing thread %s", pThread->szName);
530     pThread->bKilled = TRUE;
531
532     SetEvent(pThread->hThreadEvent);
533 }
534
535 /************************
536  * empth_select
537  *
538  * Do a select on the given file.
539  * Wait for IO on it.
540  *
541  * This would be one of the main functions used within gen\io.c
542  */
543 void
544 empth_select(int fd, int flags)
545 {
546     WSAEVENT hEventObject[2];
547     empth_t *pThread = TlsGetValue(dwTLSIndex);
548
549     loc_debug("%s select on %d",
550               flags == EMPTH_FD_READ ? "read" : "write", fd);
551     loc_BlockThisThread();
552
553     hEventObject[0] = WSACreateEvent();
554     hEventObject[1] = pThread->hThreadEvent;
555
556     if (flags == EMPTH_FD_READ)
557         WSAEventSelect(fd, hEventObject[0], FD_READ | FD_ACCEPT | FD_CLOSE);
558     else if (flags == EMPTH_FD_WRITE)
559         WSAEventSelect(fd, hEventObject[0], FD_WRITE | FD_CLOSE);
560     else {
561         logerror("bad flag %d passed to empth_select", flags);
562         empth_exit();
563     }
564
565     WSAWaitForMultipleEvents(2, hEventObject, FALSE, WSA_INFINITE, FALSE);
566
567     WSAEventSelect(fd, hEventObject[0], 0);
568
569     WSACloseEvent(hEventObject[0]);
570
571     loc_RunThisThread();
572 }
573
574 /************************
575  * empth_wakeup
576  *
577  * Wake up the specified thread.
578  */
579 void
580 empth_wakeup(empth_t *pThread)
581 {
582     loc_debug("waking up thread %s", pThread->szName);
583
584     /* Let it run if it is blocked... */
585     SetEvent(pThread->hThreadEvent);
586 }
587
588 /************************
589  * empth_sleep
590  *
591  * Put the given thread to sleep...
592  */
593 void
594 empth_sleep(time_t until)
595 {
596     long lSec;
597
598     loc_BlockThisThread();
599
600     while ((lSec = until - time(0)) > 0) {
601         loc_debug("going to sleep %ld sec", lSec);
602         Sleep(lSec * 1000L);
603     }
604
605     loc_debug("sleep done. Waiting to run.");
606
607     loc_RunThisThread();
608 }
609
610
611 /************************
612  * empth_sem_create
613  *
614  * Create a signalling semaphore.
615  */
616 empth_sem_t *
617 empth_sem_create(char *name, int cnt)
618 {
619     empth_sem_t *pSem;
620
621     pSem = malloc(sizeof(*pSem));
622     if (!pSem) {
623         logerror("out of memory at %s:%d", __FILE__, __LINE__);
624         return NULL;
625     }
626
627     memset(pSem, 0, sizeof(pSem));
628     strncpy(pSem->szName, name, sizeof(pSem->szName) - 1);
629
630     pSem->hMutex = CreateMutex(NULL, FALSE, NULL);
631     pSem->hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);
632     pSem->count = cnt;
633
634     return pSem;
635 }
636
637 /************************
638  * empth_sem_signal
639  *
640  * Hit/signal the specified semaphore.
641  */
642 void
643 empth_sem_signal(empth_sem_t *pSem)
644 {
645     loc_debug("signal on semaphore %s:%d", pSem->szName, pSem->count);
646
647     /* Wait for the Semaphore */
648     WaitForSingleObject(pSem->hMutex, INFINITE);
649
650     if (pSem->count++ < 0) {
651         SetEvent(pSem->hEvent);
652     }
653
654     ReleaseMutex(pSem->hMutex);
655 }
656
657 /************************
658  * empth_sem_wait
659  *
660  * Wait for the specified signal semaphore to be signaled.
661  */
662 void
663 empth_sem_wait(empth_sem_t *pSem)
664 {
665     empth_t *pThread = TlsGetValue(dwTLSIndex);
666
667     loc_debug("wait on semaphore %s:%d", pSem->szName, pSem->count);
668
669     /* Remove the thread from the running state. */
670     loc_BlockThisThread();
671
672     /* Wait for the Semaphore */
673     WaitForSingleObject(pSem->hMutex, INFINITE);
674     if (--pSem->count < 0) {
675         loc_debug("blocking");
676         ReleaseMutex(pSem->hMutex);
677
678         WaitForSingleObject(pSem->hEvent, INFINITE);
679
680         loc_debug("waking up");
681     } else
682         ReleaseMutex(pSem->hMutex);
683
684     loc_RunThisThread();
685 }