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