2007-09-02 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / io-layer / handles.c
index 057121088121b0e2302d4a3281290638cfa30734..7e9c173ceaab42ed5a51c0f0f6a05ac85cdbb365 100644 (file)
@@ -30,6 +30,7 @@
 #include <mono/io-layer/shared.h>
 #include <mono/io-layer/collection.h>
 #include <mono/io-layer/process-private.h>
+#include <mono/io-layer/critical-section-private.h>
 
 #undef DEBUG
 #undef DEBUG_REFS
@@ -110,6 +111,7 @@ mono_mutex_t _wapi_global_signal_mutex;
 pthread_cond_t _wapi_global_signal_cond;
 
 int _wapi_sem_id;
+gboolean _wapi_has_shut_down = FALSE;
 
 /* Use this instead of getpid(), to cope with linuxthreads.  It's a
  * function rather than a variable lookup because we need to get at
@@ -155,6 +157,23 @@ static void handle_cleanup (void)
                        if (_WAPI_SHARED_HANDLE (type)) {
                                gpointer handle = GINT_TO_POINTER (i*_WAPI_HANDLE_INITIAL_COUNT+j);
                                
+                               if (type == WAPI_HANDLE_THREAD) {
+                                       /* Special-case thread handles
+                                        * because they need extra
+                                        * cleanup.  This also avoids
+                                        * a race condition between
+                                        * the application exit and
+                                        * the finalizer thread - if
+                                        * it finishes up between now
+                                        * and actual app termination
+                                        * it will find all its handle
+                                        * details have been blown
+                                        * away, so this sets those
+                                        * anyway.
+                                        */
+                                       _wapi_thread_set_termination_details (handle, 0);
+                               }
+                               
                                for(k = handle_data->ref; k > 0; k--) {
 #ifdef DEBUG
                                        g_message ("%s: unreffing %s handle %p", __func__, _wapi_handle_typename[type], handle);
@@ -167,6 +186,20 @@ static void handle_cleanup (void)
        }
        
        _wapi_shm_semaphores_remove ();
+
+       mono_mutex_destroy(&_wapi_global_signal_mutex);
+       pthread_cond_destroy(&_wapi_global_signal_cond);
+}
+
+void _wapi_cleanup ()
+{
+       g_assert (_wapi_has_shut_down == FALSE);
+       
+       _wapi_has_shut_down = TRUE;
+
+       _wapi_critical_section_cleanup ();
+       _wapi_error_cleanup ();
+       _wapi_thread_cleanup ();
 }
 
 static mono_once_t shared_init_once = MONO_ONCE_INIT;
@@ -215,6 +248,8 @@ static void _wapi_handle_init_shared (struct _WapiHandleShared *handle,
                                      WapiHandleType type,
                                      gpointer handle_specific)
 {
+       g_assert (_wapi_has_shut_down == FALSE);
+       
        handle->type = type;
        handle->timestamp = (guint32)(time (NULL) & 0xFFFFFFFF);
        handle->signalled = FALSE;
@@ -230,6 +265,8 @@ static void _wapi_handle_init (struct _WapiHandleUnshared *handle,
 {
        int thr_ret;
        
+       g_assert (_wapi_has_shut_down == FALSE);
+       
        handle->type = type;
        handle->signalled = FALSE;
        handle->ref = 1;
@@ -255,6 +292,8 @@ static guint32 _wapi_handle_new_shared (WapiHandleType type,
        static guint32 last = 1;
        int thr_ret;
        
+       g_assert (_wapi_has_shut_down == FALSE);
+       
        /* Leave the first slot empty as a guard */
 again:
        /* FIXME: expandable array */
@@ -310,6 +349,8 @@ static guint32 _wapi_handle_new_internal (WapiHandleType type,
        static guint32 last = 0;
        gboolean retry = FALSE;
        
+       g_assert (_wapi_has_shut_down == FALSE);
+       
        /* A linear scan should be fast enough.  Start from the last
         * allocation, assuming that handles are allocated more often
         * than they're freed. Leave the space reserved for file
@@ -355,6 +396,8 @@ gpointer _wapi_handle_new (WapiHandleType type, gpointer handle_specific)
        gpointer handle;
        int thr_ret;
        
+       g_assert (_wapi_has_shut_down == FALSE);
+       
        mono_once (&shared_init_once, shared_init);
        
 #ifdef DEBUG
@@ -436,6 +479,8 @@ gpointer _wapi_handle_new_from_offset (WapiHandleType type, guint32 offset,
        struct _WapiHandleShared *shared;
        guint32 now = (guint32)(time (NULL) & 0xFFFFFFFF);
        
+       g_assert (_wapi_has_shut_down == FALSE);
+       
        mono_once (&shared_init_once, shared_init);
 
 #ifdef DEBUG
@@ -450,7 +495,7 @@ gpointer _wapi_handle_new_from_offset (WapiHandleType type, guint32 offset,
        shared = &_wapi_shared_layout->handles[offset];
        if (timestamp) {
                /* Bump up the timestamp for this offset */
-               InterlockedExchange (&shared->timestamp, now);
+               InterlockedExchange ((gint32 *)&shared->timestamp, now);
        }
                
        pthread_cleanup_push ((void(*)(void *))mono_mutex_unlock_in_cleanup,
@@ -531,7 +576,7 @@ first_pass_done:
        handle = GUINT_TO_POINTER (handle_idx);
                
        _WAPI_PRIVATE_HANDLES(handle_idx).u.shared.offset = offset;
-       InterlockedIncrement (&shared->handle_refs);
+       InterlockedIncrement ((gint32 *)&shared->handle_refs);
        
 #ifdef DEBUG
        g_message ("%s: Allocated new handle %p referencing 0x%x (shared refs %d)", __func__, handle, offset, shared->handle_refs);
@@ -549,6 +594,8 @@ gpointer _wapi_handle_new_fd (WapiHandleType type, int fd,
        struct _WapiHandleUnshared *handle;
        int thr_ret;
        
+       g_assert (_wapi_has_shut_down == FALSE);
+       
        mono_once (&shared_init_once, shared_init);
        
 #ifdef DEBUG
@@ -764,7 +811,7 @@ gpointer _wapi_search_handle (WapiHandleType type,
                                        
                                        if (shared->type == type) {
                                                guint32 now = (guint32)(time (NULL) & 0xFFFFFFFF);
-                                               InterlockedExchange (&shared->timestamp, now);
+                                               InterlockedExchange ((gint32 *)&shared->timestamp, now);
 
                                                found = TRUE;
                                                handle_data = &_WAPI_PRIVATE_HANDLES(GPOINTER_TO_UINT(ret));
@@ -899,7 +946,7 @@ void _wapi_handle_ref (gpointer handle)
 
        handle_data = &_WAPI_PRIVATE_HANDLES(idx);
        
-       InterlockedIncrement (&handle_data->ref);
+       InterlockedIncrement ((gint32 *)&handle_data->ref);
 
        /* It's possible for processes to exit before getting around
         * to updating timestamps in the collection thread, so if a
@@ -909,7 +956,7 @@ void _wapi_handle_ref (gpointer handle)
        if (_WAPI_SHARED_HANDLE(handle_data->type)) {
                struct _WapiHandleShared *shared_data = &_wapi_shared_layout->handles[handle_data->u.shared.offset];
                
-               InterlockedExchange (&shared_data->timestamp, now);
+               InterlockedExchange ((gint32 *)&shared_data->timestamp, now);
        }
        
 #ifdef DEBUG_REFS
@@ -942,7 +989,7 @@ void _wapi_handle_unref (gpointer handle)
         * could lock a mutex, but I'm not sure that allowing a handle
         * reference to reach 0 isn't an application bug anyway.
         */
-       destroy = (InterlockedDecrement (&_WAPI_PRIVATE_HANDLES(idx).ref) ==0);
+       destroy = (InterlockedDecrement ((gint32 *)&_WAPI_PRIVATE_HANDLES(idx).ref) ==0);
        
 #ifdef DEBUG_REFS
        g_message ("%s: %s handle %p ref now %d (destroy %s)", __func__,
@@ -1193,6 +1240,23 @@ void _wapi_handle_ops_prewait (gpointer handle)
  */
 gboolean CloseHandle(gpointer handle)
 {
+       if (handle == NULL) {
+               /* Problem: because we map file descriptors to the
+                * same-numbered handle we can't tell the difference
+                * between a bogus handle and the handle to stdin.
+                * Assume that it's the console handle if that handle
+                * exists...
+                */
+               if (_WAPI_PRIVATE_HANDLES (0).type != WAPI_HANDLE_CONSOLE) {
+                       SetLastError (ERROR_INVALID_PARAMETER);
+                       return(FALSE);
+               }
+       }
+       if (handle == _WAPI_HANDLE_INVALID){
+               SetLastError (ERROR_INVALID_PARAMETER);
+               return(FALSE);
+       }
+       
        _wapi_handle_unref (handle);
        
        return(TRUE);
@@ -1367,26 +1431,33 @@ void _wapi_handle_unlock_handles (guint32 numhandles, gpointer *handles)
        }
 }
 
-static int timedwait_signal_poll_cond (pthread_cond_t *cond, mono_mutex_t *mutex, struct timespec *timeout)
+static int timedwait_signal_poll_cond (pthread_cond_t *cond, mono_mutex_t *mutex, struct timespec *timeout, gboolean alertable)
 {
        struct timespec fake_timeout;
        int ret;
-       
-       _wapi_calc_timeout (&fake_timeout, 100);
-       
-       if (timeout != NULL && ((fake_timeout.tv_sec > timeout->tv_sec) ||
-          (fake_timeout.tv_sec == timeout->tv_sec &&
-               fake_timeout.tv_nsec > timeout->tv_nsec))) {
-               /* Real timeout is less than 100ms time */
-               ret=mono_cond_timedwait (cond, mutex, timeout);
+
+       if (!alertable) {
+               if (timeout)
+                       ret=mono_cond_timedwait (cond, mutex, timeout);
+               else
+                       ret=mono_cond_wait (cond, mutex);
        } else {
-               ret=mono_cond_timedwait (cond, mutex, &fake_timeout);
+               _wapi_calc_timeout (&fake_timeout, 100);
+       
+               if (timeout != NULL && ((fake_timeout.tv_sec > timeout->tv_sec) ||
+                                                               (fake_timeout.tv_sec == timeout->tv_sec &&
+                                                                fake_timeout.tv_nsec > timeout->tv_nsec))) {
+                       /* Real timeout is less than 100ms time */
+                       ret=mono_cond_timedwait (cond, mutex, timeout);
+               } else {
+                       ret=mono_cond_timedwait (cond, mutex, &fake_timeout);
 
-               /* Mask the fake timeout, this will cause
-                * another poll if the cond was not really signaled
-                */
-               if (ret==ETIMEDOUT) {
-                       ret=0;
+                       /* Mask the fake timeout, this will cause
+                        * another poll if the cond was not really signaled
+                        */
+                       if (ret==ETIMEDOUT) {
+                               ret=0;
+                       }
                }
        }
        
@@ -1395,25 +1466,25 @@ static int timedwait_signal_poll_cond (pthread_cond_t *cond, mono_mutex_t *mutex
 
 int _wapi_handle_wait_signal (void)
 {
-       return timedwait_signal_poll_cond (&_wapi_global_signal_cond, &_wapi_global_signal_mutex, NULL);
+       return timedwait_signal_poll_cond (&_wapi_global_signal_cond, &_wapi_global_signal_mutex, NULL, TRUE);
 }
 
 int _wapi_handle_timedwait_signal (struct timespec *timeout)
 {
-       return timedwait_signal_poll_cond (&_wapi_global_signal_cond, &_wapi_global_signal_mutex, timeout);
+       return timedwait_signal_poll_cond (&_wapi_global_signal_cond, &_wapi_global_signal_mutex, timeout, TRUE);
 }
 
-int _wapi_handle_wait_signal_handle (gpointer handle)
+int _wapi_handle_wait_signal_handle (gpointer handle, gboolean alertable)
 {
 #ifdef DEBUG
        g_message ("%s: waiting for %p", __func__, handle);
 #endif
        
-       return _wapi_handle_timedwait_signal_handle (handle, NULL);
+       return _wapi_handle_timedwait_signal_handle (handle, NULL, alertable);
 }
 
 int _wapi_handle_timedwait_signal_handle (gpointer handle,
-                                         struct timespec *timeout)
+                                         struct timespec *timeout, gboolean alertable)
 {
 #ifdef DEBUG
        g_message ("%s: waiting for %p (type %s)", __func__, handle,
@@ -1449,7 +1520,7 @@ int _wapi_handle_timedwait_signal_handle (gpointer handle,
                
        } else {
                guint32 idx = GPOINTER_TO_UINT(handle);
-               return timedwait_signal_poll_cond (&_WAPI_PRIVATE_HANDLES(idx).signal_cond, &_WAPI_PRIVATE_HANDLES(idx).signal_mutex, timeout);
+               return timedwait_signal_poll_cond (&_WAPI_PRIVATE_HANDLES(idx).signal_cond, &_WAPI_PRIVATE_HANDLES(idx).signal_mutex, timeout, alertable);
        }
 }
 
@@ -1504,7 +1575,7 @@ gboolean _wapi_handle_get_or_set_share (dev_t device, ino_t inode,
                         * This makes the increment atomic wrt
                         * collections
                         */
-                       InterlockedIncrement (&file_share->handle_refs);
+                       InterlockedIncrement ((gint32 *)&file_share->handle_refs);
                        
                        exists = TRUE;
                        break;
@@ -1533,7 +1604,7 @@ gboolean _wapi_handle_get_or_set_share (dev_t device, ino_t inode,
        }
 
        if (*share_info != NULL) {
-               InterlockedExchange (&(*share_info)->timestamp, now);
+               InterlockedExchange ((gint32 *)&(*share_info)->timestamp, now);
        }
        
        thr_ret = _wapi_shm_sem_unlock (_WAPI_SHARED_SEM_FILESHARE);
@@ -1771,8 +1842,7 @@ void _wapi_handle_update_refs (void)
                                g_message ("%s: (%d) Updating timestamp of handle 0x%x", __func__, _wapi_getpid (), handle->u.shared.offset);
 #endif
 
-                               InterlockedExchange (&shared_data->timestamp,
-                                                    now);
+                               InterlockedExchange ((gint32 *)&shared_data->timestamp, now);
                        } else if (handle->type == WAPI_HANDLE_FILE) {
                                struct _WapiHandle_file *file_handle = &handle->u.file;
                                
@@ -1786,7 +1856,7 @@ void _wapi_handle_update_refs (void)
                                g_message ("%s: (%d) Inc refs on fileshare 0x%x", __func__, _wapi_getpid (), (file_handle->share_info - &_wapi_fileshare_layout->share_info[0]) / sizeof(struct _WapiFileShare));
 #endif
 
-                               InterlockedExchange (&file_handle->share_info->timestamp, now);
+                               InterlockedExchange ((gint32 *)&file_handle->share_info->timestamp, now);
                        }
                }
        }