2009-01-26 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / io-layer / ChangeLog
1 2009-01-20  Rodrigo Kumpera  <rkumpera@novell.com>
2
3         * threads.c: Add wapi_current_thread_desc that produces
4         a string representation of the current thread state.
5
6         * threads.h: Export wapi_current_thread_desc.
7
8 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
9
10         * io.c (GetDiskFreeSpaceEx): Applied patch from Koushik Dutta
11         (koush@koushikdutta.com). Disable this on android.
12
13 2009-01-16  Rodrigo Kumpera  <rkumpera@novell.com>
14
15         * handles.c (_wapi_handle_timedwait_signal_handle): Don't use the
16         set_wait_handle/clear_wait_handle machinery for alertable waits in
17         case of non-alertable waits.
18
19         Non-alertable waits must continue and wait on the cond as this will
20         release the lock. Otherwise this will cause a deadlock as anyone trying
21         to pulse the cond will block trying to acquire the said lock because
22         the thread in non-alertable wait will be busy looping in WaitForSingleObjectEx
23         or similar function, never releasing the lock.
24
25         Thou this fixes quite a few of the hangs introduced by non-pooling alertable
26         waits, the long term plan is to verify if all non-alertable waits really need
27         to be as such.
28
29 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
30
31         * handles-private.h (_wapi_handle_set_signal_state): Set the signalled state
32         of the handle while locking the global signal cond mutex.
33
34         * wait.c (WaitForMultipleObjectsEx): Check the signalled state of handles
35         inside the critical section before waiting, otherwise we could go to waiting
36         even when the handles are already signalled.
37
38 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
39
40         Reapply r122913, this time handling processes by falling back to polling.
41         
42         * handles.c: Rework the way the global signal stuff is handled: instead of
43         allocating a separate mutex/condvar pair for it, allocate a normal handle.
44         This way, it can reuse the alertable waiting code, allowing 
45         WaitForMultipleObject to work without polling.
46
47 2009-01-09  Miguel de Icaza  <miguel@novell.com>
48
49         Incorporate a few patches from Paolo, slightly modified:        
50
51         * handles.c (_wapi_handle_check_share): On non-Linux systems, do
52         not even compile in the code that scans for /proc/fd, and go
53         directly to the fallback function.
54
55 2009-01-09  Paolo Molaro (lupus@ximian.com)
56
57         * handles.c: Do not include some header files in platforms that
58         lack it.
59
60 2009-01-09  Miguel de Icaza  <miguel@novell.com>
61
62         * messages.c: Eliminate a warning.
63         
64 2009-01-09  Paolo Molaro (lupus@ximian.com)
65
66         * error.c: On some platforms that do not define these variables,
67         do not use them.
68
69         * security.c, io-private.h: Only include some headers if they
70         exist on the system
71
72         * sockets.c, sockets.h: do not import on this header files that
73         are only consumed internally in sockets.c.
74
75 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
76
77         * threads.c (_wapi_thread_apc_pending): Check for thread->wait_handle ==
78         INTERRUPTION_REQUESTED_HANDLE too.
79         (wapi_interrupt_thread): Rework the comments, the thread is no longer
80         required to call QueueUserAPC to make the wait functions return.
81
82         * threads.c handles.c threads-internal.h: Implement alertable waits without
83         polling.
84
85 2009-01-08  Geoff Norton  <gnorton@novell.com>
86
87         * processes.c: Fix the osx version check to properly detect 10.5 v 10.4
88
89 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
90
91         * types.h: added WapiULargeInteger.
92
93         * uglify.h: added ULARGE_INTEGER, PULARGE_INTEGER.
94
95         * io.h: added WapiDriveType, added method declarations
96         for GetDiskFreeSpaceEx and GetDriveType
97
98         * io.c: added GetDiskFreeSpaceEx() to query disk size
99         and free space via statvfs or statfs system call.
100         added GetDriveType to query drive type via /etc/mtab or /etc/mnttab.
101
102 2009-01-07  Geoff Norton  <gnorton@novell.com>
103
104         * processes.c: Properly implement support for Process.Modules on OSX.
105         Fixes OSX on nunit 2.4
106
107 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
108
109         * io.c (GetCurrentDirectory): Avoid calling g_get_current_dir straight
110         away as it doesn't handle ENAMETOOLONG correctly. As a bonus we avoid
111         allocating memory in the common path.
112
113 2009-01-07  Geoff Norton  <gnorton@novell.com>
114
115         * processes.c: Only use open -W on OSX 10.5+.  Patch from
116         Miguel
117
118 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
119
120         * processes.c (get_module_name) : adjust size for unicode characters.
121
122         Code is contributed under MIT/X11 license.
123
124 2008-11-21  Zoltan Varga  <vargaz@gmail.com>
125
126         * atomic.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>. Add
127         netbsd support.
128
129 2008-11-18  Mark Probst  <mark.probst@gmail.com>
130
131         * atomic.h: InterlockedExchangePointer and
132         InterlockedCompareExchangePointer for PPC64.
133
134         Code submitted by andreas.faerber@web.de at
135         https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
136         X11/MIT license.
137
138 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
139
140         * wait.h : Adding method declaration for WaitForInputIdle.
141           
142         * wait.c : Adding implementation for WaitForInputIdle.
143           
144         Code is contributed under MIT/X11 license.
145
146 Fri Oct 17 15:23:00 CEST 2008 Paolo Molaro <lupus@ximian.com>
147
148         * processes.c: patch from Geoff Norton (gnorton@novell.com) to
149         strdup the open program on OSX (bug #431811).
150
151 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
152
153         * versioninfo.c: remove the use of g_strdown.
154
155 2008-09-25  Dick Porter  <dick@ximian.com>
156
157         * wait.c: Make sure we keep references to handles we're waiting
158         for.  Fixes bug 424851.
159
160 2008-07-29  Dick Porter  <dick@ximian.com>
161
162         * processes.c (get_module_name): Make a last-ditch effort to
163         figure out the process name.  Fixes bug 413723, patch by Casey
164         Marshall <casey.s.marshall@gmail.com>
165
166 2008-07-28  Dick Porter  <dick@ximian.com>
167
168         * handles.c (_wapi_handle_count_signalled_handles): Remove an
169         unmatched _wapi_handle_ref().  Fixes bug 410743.
170
171 2008-07-15  Rodrigo Kumpera  <rkumpera@novell.com>
172
173         * versioninfo.c (map_pe_file): Fix memory leak.
174
175 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
176
177         * process-private.h (_WAPI_PROCESS_UNHANDLED_PID_MASK): Fix the amd64 build.
178
179 2008-06-27  Dick Porter  <dick@ximian.com>
180
181         * processes.c: Implement a form of process pseudo-handle to allow
182         non-mono processes to be manipulated.  Fixes bug 313231.
183
184         * wait.c: Check for process pseudo-handles and fail if an attempt
185         is made to wait on one.
186
187 2008-06-19  Dick Porter  <dick@ximian.com>
188
189         * sockets.c: Implement WSASend() and WSAReceive().
190
191 2008-06-02  Dick Porter  <dick@ximian.com>
192
193         * wapi.h: 
194         * Makefile.am: 
195         * messages.h: 
196         * messages.c: Implement FormatMessage, fixes bug 321827.
197
198 2008-05-29  Dick Porter  <dick@ximian.com>
199
200         * sockets.c (socket_close): Clear any saved errors
201         (_wapi_connect): Don't save EWOULDBLOCK errors here, as that
202         breaks async connects.  (Bug 377589 test case broken by the
203         previous fix to bug 356552)
204
205 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
206
207         * thread-private.h (struct _WapiHandle_thread): Remove 'owner_pid' field. Reorder
208         fields so this struct (which is the biggest of the handle structs) takes less
209         space.
210
211         * threads.c (QueueUserAPC): Make this function signal safe by adding some
212         restrictions on its usage.
213
214 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
215
216         * mono-mutex.h: Get rid of the #ifdef __cplusplus defines, use G_BEGIN_DECLS
217         /G_END_DECLS.
218
219 2008-05-07  Dick Porter  <dick@ximian.com>
220
221         * io.c (FindNextFile): Handle symlinks correctly.  Fixes bug
222         385765.
223
224 2008-04-25  Zoltan Varga  <vargaz@gmail.com>
225
226         * handles.c (_wapi_handle_check_share): Fix a crash introduced by the lazy
227         creation of wapi handle slots.
228
229 2008-04-24  Zoltan Varga  <vargaz@gmail.com>
230
231         * handles.c (shared_init): Align _wapi_fd_reserve to a multiple of 
232         _WAPI_HANDLE_INITIAL_COUNT to avoid a problem when allocating handles.
233
234 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
235
236         * handles.c: Initialize the handle array entries on demand to save memory.
237
238         * wapi-private.h (_WAPI_HANDLE_INITIAL_COUNT): Decrease this to 256 to save
239         memory.
240
241         * handles-private.h (_WAPI_PRIVATE_MAX_SLOTS): Increase this to 1024*16 to
242         compensate for the decrease in _WAPI_HANDLE_INITIAL_COUNT.
243         
244         * threads.c: Use #ifdef instead of #if for checking for valgrind/memcheck.h.
245
246 2008-04-22  Dick Porter  <dick@ximian.com>
247
248         * wapi_glob.c (globextend): Comment out the code using ARG_MAX, as
249         that is broken on the latest opensuse.
250
251 2008-04-21  Dick Porter  <dick@ximian.com>
252
253         * io.c (DeleteFile): Disable for now the bug fix for 323389, it's
254         breaking too much other stuff.
255
256 2008-04-20  Geoff Norton  <gnorton@novell.com>
257
258         * processes.c: Fix the _NSGetEnviron define to prevent an impropoer
259         pointer dereference.
260
261 2008-04-18  Miguel de Icaza  <miguel@novell.com>
262
263         * Applied patch from Dick Porter from bug #380649
264
265 2008-04-17  Dick Porter  <dick@ximian.com>
266
267         * io.c (DeleteFile): Check file shares before deleting a file.
268         Fixes bug 323389.
269
270 2008-04-17  Dick Porter  <dick@ximian.com>
271
272         * io.c (DeleteFile): Return ERROR_ACCESS_DENIED if the file is
273         readonly.  Fixes bug 378229.
274
275 2008-04-11  Geoff Norton  <gnorton@novell.com>
276
277         * processes.c: The global extern environ doesn't exist on Mac.  We
278         need to call NSGetEnviron instead.
279
280 2008-04-08  Dick Porter  <dick@ximian.com>
281
282         * processes.c (CreateProcess): Improve the managed binary support,
283         so it works when the executable is passed in as the appname.
284         Fixes bug 377815.
285
286 2008-04-04  Dick Porter  <dick@ximian.com>
287
288         * io.c (MoveFile): Check file shares before moving a file.  Fixes
289         bug 377049.
290
291 2008-04-04  Dick Porter  <dick@ximian.com>
292
293         * error.c (errno_to_WSA): handle ENODEV.  Fixes the reopened part
294         of bug 324035.
295
296 2008-04-04  Dick Porter  <dick@ximian.com>
297
298         * processes.c (GetModuleInformation): 
299         * versioninfo.h: 
300         * versioninfo.c: 64bit fixes
301
302 2008-04-03  Dick Porter  <dick@ximian.com>
303
304         * io-portability.c (_wapi_basename, _wapi_dirname): Only turn \
305         into / when MONO_IOMAP is in effect.  Fixes bug 346123.
306
307 2008-04-03  Dick Porter  <dick@ximian.com>
308
309         * timefuncs.c (GetTickCount): Use mono_msec_ticks(), see bug
310         347476.
311
312 2008-04-01  Dick Porter  <dick@ximian.com>
313
314         * versioninfo.c (get_string_block): Refine the fix for bug 354856
315         (r93661) so that it also fixes the new part of bug 374600.
316
317 2008-03-28  Dick Porter  <dick@ximian.com>
318
319         * processes.c (GetExitCodeProcess): Check if a process has exited
320         and recorded it's exit code, before seeing if the process is
321         signalled.  Fixes bug 325463.
322
323 2008-03-27  Dick Porter  <dick@ximian.com>
324
325         * processes.c (match_procname_to_modulename): Check the whole
326         process name first, in case it is recorded as an absolute path.
327         Fixes bug 360348.
328
329 2008-03-27  Dick Porter  <dick@ximian.com>
330
331         * processes.c (ShellExecuteEx): Grotty kludge to work around
332         unpleasant feature in g_shell_parse_argv() where it treats '#'
333         embedded in a filename as a comment marker, and throws away the
334         rest of the line.  When we're directly opening URLs quote the
335         filename, to avoid this.  Fixes bug 371567.
336
337 2008-03-25  Dick Porter  <dick@ximian.com>
338
339         * wapi-private.h (_WAPI_HANDLE_VERSION): Increment file layout
340         version
341
342         * threads.c: Make thread handles private to the process that owns
343         them.
344
345 2008-03-22  Kornél Pál  <kornelpal@gmail.com>
346
347         * io-layer.h: Windows: Rename GetProcessId to __GetProcessId for targets not
348         supporting it. This fixes MSVC build with new Windows SDKs that declare
349         GetProcessId unconditionally.
350
351 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
352
353         * io-layer.h: Removed Windows version macros.
354
355 Thu Mar 13 16:24:53 CET 2008 Paolo Molaro <lupus@ximian.com>
356
357         * processes.c: properly check for executable files (fixes bug #368829).
358
359 2008-02-05  Dick Porter  <dick@ximian.com>
360
361         * versioninfo.c (VerLanguageName): Implement VerLanguageName.
362
363 2008-01-31  Bill Holmes  <billholmes54@gmail.com>
364         * processes.c (match_procname_to_modulename) : Added to check if the last 
365           part of module name is equal to the process name.
366
367         * processes.c (EnumProcessModules) : Changed the first entry in the returned 
368           modules array (the process module) to be populated from the entry found
369           in /proc/<PID>/maps.
370
371         * processes.c (get_module_name & GetModuleInformation) : In the case where 
372           the module passed in is NULL, search the /proc/<PID>/maps for a name that
373           matches the process name to populate the return information.
374
375         Fixes #357062
376
377 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
378
379         * security.c (RevertToSelf): Make this return TRUE if impersonating is not
380         supported.
381
382         * sockets.c (_wapi_connect): Add a workaround to a solaris x86 problem where
383         getsockopt (SO_ERROR) doesn't return an error code after connect () fails. Fixes
384         #356552.
385
386 2008-01-23  Dick Porter  <dick@ximian.com>
387
388         * versioninfo.c (get_string_block): When stepping over the
389         StringTable block, do not read an extra block at the end.  Fixes
390         the new part of bug 354856.
391
392 2008-01-19  Dick Porter  <dick@ximian.com>
393
394         * versioninfo.c (get_stringtable_block): Cope when the StringTable
395         block is first in the resources data, and we just need to step
396         over it.  Fixes bug 354856.
397
398 2008-01-16  Dick Porter  <dick@ximian.com>
399
400         * threads.c (_wapi_thread_set_termination_details): Move the
401         thread abandonment to outside the shared handle lock.  Fixes bug
402         349680.
403
404 2008-01-16  Dick Porter  <dick@ximian.com>
405
406         * versioninfo.c (VerQueryValue): Include trailing null in returned
407         string length, for MS compatibility.
408
409 2008-01-09  Dick Porter  <dick@ximian.com>
410
411         * versioninfo.c (get_ptr_from_rva, scan_resource_dir): Make it
412         work on big-endian systems.
413         (scan_resource_dir): Copy the resource directory entry and
414         byteswap if necessary so it works big-endian.  This fixes bug
415         345972 for real this time.
416         (VerQueryValue): String values set the length to the number of
417         unicode chars, but the data length reported was already correct so
418         don't halve it again.  Fixes the previous fix for bug 345972.
419         (GetFileVersionInfo): On big-endian systems, scan the resource
420         data and turn all unicode strings into UTF-16BE.  FileVersionInfo
421         now works big-endian.
422
423 2008-01-04  Dick Porter  <dick@ximian.com>
424
425         * versioninfo.c (VerQueryValue): Returned buffer length counts
426         chars not bytes for string data.  Fixes bug 345972 again.
427         (get_enclosing_section_header): Make sure values read are treated
428         as LE.  Fixes crash on ppc reported in bug 345972.
429
430 2007-12-17  Mark Probst  <mark.probst@gmail.com>
431
432         * threads.c: Guard against a race condition involving
433         thread_hash_key that can occur during shutdown.
434
435 2007-12-08  Zoltan Varga  <vargaz@gmail.com>
436
437         * processes.c: Include sys/mkdev.h if exists. Fixes solaris x86 build.
438
439 2007-12-06  Dick Porter  <dick@ximian.com>
440
441         * versioninfo.c: Resource language values must be compared in a
442         'case'-insensitive manner.  Fixes bug 345972.
443
444 2007-12-05  Dick Porter  <dick@ximian.com>
445
446         * io.c (CreateFile): Create files with mode 0666 (&~umask) by
447         default.  Fixes bugs 325299 and 337040.
448
449 2007-11-22  Dick Porter  <dick@ximian.com>
450
451         * critical-sections.h (EnterCriticalSection): Reinstate the
452         asserts in the devel branch, so any problems aren't obscured.
453
454 2007-11-22  Dick Porter  <dick@ximian.com>
455
456         * versioninfo.c (find_pe_file_resources): Make it work on 64bit
457         systems.  Fixes bug 343353.
458
459 2007-11-21  Dick Porter  <dick@ximian.com>
460
461         * processes.c (load_modules): Rewrite based on the libgc
462         /proc/<pid>/maps parsing to avoid using glib functions only
463         available since 2004.
464         (load_modules): Check for duplicates before adding a module to the
465         list.
466
467 2007-11-15  Dick Porter  <dick@ximian.com>
468
469         * processes.c (load_modules): Don't bother if we don't have
470         g_strsplit_set() and g_strv_length().  Allows building against old
471         glib versions.
472         (EnumProcessModules): Don't miss the first module returned by
473         load_modules().
474
475 2007-11-15  Dick Porter  <dick@ximian.com>
476
477         * processes.c: Implement process module support by reading from
478         /proc if it's available.
479
480         * versioninfo.h: 
481         * versioninfo.c: New functions to implement PE file version info
482         support.
483
484 2007-11-08  Dick Porter  <dick@ximian.com>
485
486         * critical-sections.h (EnterCriticalSection): Disable the critical
487         section asserts for the release branch
488
489 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
490
491         * io-layer.h: Added includes for run-time GetProcessId API detection for
492         Windows.
493
494 2007-10-26  Dick Porter  <dick@ximian.com>
495
496         * shared.c (_wapi_shm_file_open): Set the umask when opening
497         shared files, so restrictive defaults don't prevent subsequent
498         processes re-opening them.
499
500 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
501
502         * atomic.h (InterlockedCompareExchange): Fix the ia64 version so it works for
503         negative values too. Hopefully fixes #332700.
504
505 2007-09-26  Dick Porter  <dick@ximian.com>
506
507         * io-portability.c (_wapi_io_scandir): Only update the error
508         status of glob() when performing a secondary glob() if the first
509         returned an error.  Fixes bug 325107.
510
511 2007-09-12  Marek Habersack  <mhabersack@novell.com>
512
513         * io-portability.c: options_init moved to
514         utils/mono-io-portability.c
515         Do not initialize portability helpers here, it's done in
516         mono_runtime_init.
517         find_file and find_in_dir moved to utils/mono-io-portability.c
518
519 2007-09-09  Robert Jordan  <robertj@gmx.net>
520
521         * sockets.c (_wapi_setsockopt): Add support for FreeBSD multicast
522         sockets. Fixes #81891.
523         Code is contributed under MIT/X11 license.
524
525 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
526
527         * processes.h, processes.c : ok, they are simple string.
528
529 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
530
531         * processes.h : sigh, I really hate fixing them on windows :(
532
533 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
534
535         * processes.c : fix build again.
536
537 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
538
539         * processes.h : removed extra parameters from CreateProcessWithLogonW.
540
541 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
542
543         * processes.c, processes.h: added CreateProcessWithLogonW(). For now
544           it just calls CreateProcess().
545         * io-layer.h : CreateProcessWithLogonW() requires WINVER 0x0500
546           on Windows.
547
548 2007-08-23  Robert Jordan  <robertj@gmx.net>
549
550         * processes.[c|h]: Implement Get|SetPriorityClass ().
551         Code is contributed under MIT/X11 license.
552
553 Tue Aug 21 20:08:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
554
555         * io.c: made convert_arg_to_utf8() and write_file() static.
556         Worked around gcc's incorrect warning.
557
558 2007-08-20  William Holmes  <billholmes54@gmail.com>
559
560         *io.c: Added implementation for ReplaceFile.
561         *io.h: Added deceleration for ReplaceFile method.
562
563         Code is contributed under MIT/X11 license.
564
565 2007-08-20  Wade Berrier  <wberrier@novell.com>
566
567         * processes.c: include sys/resource.h for rusage to fix 
568         mac 10.3 build
569
570 Mon Aug 20 12:36:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
571
572         * processes.c: implemented query for user/system times using
573         getrusage ().
574
575 2007-08-10  Dick Porter  <dick@ximian.com>
576
577         * sockets.c (_wapi_getsockopt, _wapi_setsockopt): Check the option
578         level as well as the name when mangling some of the values.  Fixes
579         bug 82000.
580
581 2007-08-02  Dick Porter  <dick@ximian.com>
582
583         * sockets.c: Changes in error handling, and move the SO_REUSEADDR
584         setting from metadata/socket-io.c.
585
586 2007-08-01  Dick Porter  <dick@ximian.com>
587
588         * io-portability.c (_wapi_io_scandir): Special-case patterns
589         ending in '.*' so that files with no extension are also matched.
590         Fixes bug 82212.
591
592         * wapi_glob.h: 
593         * wapi_glob.c: Reinstate WAPI_GLOB_APPEND, and add
594         WAPI_GLOB_UNIQUE to avoid matching the same entry twice when
595         appending.
596
597 2007-07-26  Dick Porter  <dick@ximian.com>
598
599         * handles-private.h: 
600         * thread-private.h: 
601         * handles.h: 
602         * critical-sections.c: 
603         * handles.c: 
604         * critical-section-private.h:
605         * error.h: 
606         * threads.c: 
607         * error.c: Clean up TLS and pthreads structures.  Finishes off bug
608         78739.
609
610         * collection.c (collection_thread): Exit the collection thread if
611         the io-layer has been cleaned up.
612
613         * mono-mutex.h (mono_mutexattr_destroy): Add this define too
614
615 Mon Jul 23 10:40:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
616
617         * timefuncs.c: make TickCount measure from boot time if it's
618         available.
619
620 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
621
622         * io.c (MoveFile): Fix a leak. 
623
624 Fri Jul 13 12:46:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
625
626         * handles-private.h, handles.c, thread-private.h, threads.c,
627         uglify.h, wait.c: temporarily revert the alertable wait changes
628         (r79386) until the deadlock issues are fixed.
629
630 2007-06-22  Dick Porter  <dick@ximian.com>
631
632         * shared.c: The non-shared mutexes weren't being initialised properly
633         on macos.  Fixes bug 81929.
634
635 2007-06-13  Randolph Chung  <tausq@debian.org>
636
637         * atomic.h: Enable for all hppa targets.
638         * Makefile.am: rename hppa_atomic.s to hppa_atomic.S so the preprocessor
639         can handle the file.
640         * hppa_atomic.s: Renamed to ...
641         * hppa_atomic.S: ... and updated to work on both HPUX and Linux.
642
643 2007-06-13  Dick Porter  <dick@ximian.com>
644
645         * handles.c (timedwait_signal_wait_cond): Alertable waits on
646         private handles are now interrupted by signalling the same
647         condition that would end the wait if the handle became signalled,
648         rather than polling.  (Shared handles still have to poll.)
649
650         * threads.c (_wapi_thread_queue_apc): Interrupt the thread if it's
651         waiting on a handle
652
653         * handles-private.h (_wapi_handle_current_thread_set_waiting_on):
654         Helper functions to inform the APC queuing functions when threads
655         are waiting for handles, and to interrupt the wait.
656
657         * wait.c (WaitForMultipleObjectsEx): Need to tell the handle
658         waiting functions if any of the handles in question are shared
659
660 2007-06-06  Miguel de Icaza  <miguel@novell.com>
661
662         * processes.c (is_managed_binary): Fix for OSX.
663
664 2007-06-06  Wade Berrier  <wberrier@novell.com>
665
666         * atomic.h (InterlockedExchangePointer): cast to pointer to to silence
667         compiler warnings (autobuild fails the build on this type of warning)
668
669 2007-05-21  Dick Porter  <dick@ximian.com>
670
671         * io-portability.c (_wapi_g_dir_open): Don't propagate any errors
672         from the second call to g_dir_open, preserve the original error if
673         the second call still fails but clear the error if it succeeds.
674
675 2007-05-10  Dick Porter  <dick@ximian.com>
676
677         * sockets.c (_wapi_recvfrom): Refine the fix to bug 75705 so EINTR
678         isn't returned if the remote end shuts down cleanly.  Fixes zmd
679         and the second example in bug 75705.
680
681 2007-04-26  Dick Porter  <dick@ximian.com>
682
683         * shared.c (_wapi_shm_semaphores_init): Need to check
684         MONO_DISABLE_SHM in this entry point, as it's called before
685         _wapi_shm_attach().  Fixes bug 81436.
686
687 2007-04-24  Dick Porter  <dick@ximian.com>
688
689         * sockets.c (_wapi_recvfrom, socket_close): Force recvfrom() to
690         error if the socket is closed while the receive is blocking.
691         Fixes bug 75705.
692
693 2007-04-13  Dick Porter  <dick@ximian.com>
694
695         * shared.h:
696         * shared.c: Complete the reimplementation of disabling of shared
697         memory, by not allocating sysv semaphores when shm disabling has
698         been requested (either at compile time or run time.)
699
700         * processes.c (CreateProcess): Don't synchronize locking across
701         processes when forking, when shared memory has been disabled.
702
703 2007-04-06  Andreas Faerber  <andreas.faerber@web.de>
704
705         * wapi_glob.h:
706         * wapi_glob.c: remove reference to sys/cdefs.h, use glib instead.
707         Fixes: 81326
708
709 2007-04-05  Dick Porter  <dick@ximian.com>
710
711         * io.c:
712         * io-portability.c (_wapi_io_scandir): Moved from io.c, and
713         changed to use a cut-down version of glob(3) that has been
714         extended to match with case-insensitivity if needed.
715
716         * wapi_glob.h:
717         * wapi_glob.c: Cut down implementation of glob(3), based on
718         OpenBSD.
719
720 2007-03-22  Dick Porter  <dick@ximian.com>
721
722         * sockets.c (_wapi_connect): Do additional checks when connect(2)
723         fails, because some systems don't let it be restarted.  Patch
724         based on one submitted by Robert S Wojciechowski <robertw@ssgx.com>,
725         fixes bug 81010.
726
727 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
728
729         * io-layer.h:  Remove UNICODE and _UNICODE defines as 
730         these are done by configure.in now.
731         
732         Code is contributed under MIT/X11 license.
733         
734 Thu Mar 8 19:42:17 CET 2007 Paolo Molaro <lupus@ximian.com>
735
736         * shared.c: partial support for MONO_DISABLE_SHM env var.
737
738 2007-03-05  Wade Berrier  <wberrier@novell.com>
739
740         * atomic.h: atomic fixes from Michael Matz for for s390 
741         and s390x ( bnc #237611 and bxc #80892 )
742
743 2007-03-05  Miguel de Icaza  <miguel@novell.com>
744
745         * io.c (CreateFile): Use FILE_ATTRIBUTE_TEMPORARY to mean 0600
746         permissions.  For 80688
747
748         (MoveFile): Use errno_copy here, just to avoid a potential
749         errno-changing code in the future from g_free. 
750         
751         Also, ignore EXDEV errors as they are handled immediately after
752         (avoid printing out an error). 
753
754         Fixes: 80655
755
756 Mon Feb 12 15:50:24 CET 2007 Paolo Molaro <lupus@ximian.com>
757
758         * shared.c: exit if semaphores can't be created (bug #80616).
759
760 2007-02-01  Geoff Norton  <gnorton@customerdna.com>
761
762         * collection.c: NetBSD doesn't define PTHREAD_STACK_MIN.
763
764 2007-01-26  Dick Porter  <dick@ximian.com>
765
766         * socket-private.h: 
767         * sockets.c (_wapi_getsockopt): Windows seems to not reset
768         SO_ERROR values when they're read, contrary to the documentation.
769         Fixes the new issues raised in bug 79878 (example in C showing
770         winsock behaviour attached to that bug.)
771
772 2007-01-15 Mark Mason <mason@broadcom.com
773
774         * atomic.h: add locking primitives for MIPS.
775         
776 2007-01-11  Dick Porter  <dick@ximian.com>
777
778         * sockets.c (_wapi_connect): Don't do the SO_BROADCAST setting
779         here, do it in managed code instead.
780         (_wapi_getsockopt): SO_RCVTIMEO and SO_SNDTIMEO use struct
781         timeval, which has a microsecond field, not milliseconds.
782         (_wapi_setsockopt): ditto.
783         (_wapi_setsockopt): Halve the SO_SNDBUF and SO_RCVBUF values on
784         Linux, as the kernel doubles whatever we set.
785         (_wapi_socket): Save socket domain, type and protocol so it can be
786         duplicated later.
787         (socket_disconnect): Implement socket disconnect (closing the
788         socket, but keeping the file descriptor.)
789         (wapi_disconnectex): A basic implementation of DisconnectEx().
790         (wapi_transmitfile): A very basic implementation of
791         TransmitFile().
792         (WSAIoctl): Implement the SIO_GET_EXTENSION_FUNCTION_POINTER
793         ioctl.
794
795         * socket-private.h (struct _WapiHandle_socket): Record socket
796         domain, type and protocol info so it can be duplicated later.
797
798         * sockets.h (WSAID_DISCONNECTEX,WSAID_TRANSMITFILE): Structures
799         and defines needed to look up the DisconnectEx() and
800         TransmitFile() functions by GUID.
801
802         * error.c (errno_to_WSA): Change ETIMEDOUT mapping to
803         WSAETIMEDOUT; add EDESTADDRREQ.
804
805         * io-layer.h: Need mswsock.h on windows now.
806
807 2007-01-04  Miguel de Icaza  <miguel@novell.com>
808
809         * io-portability.c (find_file): Fix a coverity warning (scanning
810         being unassigned).   
811
812 2006-12-31  Miguel de Icaza  <miguel@novell.com>
813
814         * io-portability.c (find_file): Do not abort if an empty filename
815         has been passed.  This fixes the case where MONO_IOMAP=all would
816         assert if Directory.Exists ("") was called.
817
818 Mon Dec 18 14:54:37 CET 2006 Paolo Molaro <lupus@ximian.com>
819
820         * processes.c: moved a free on the error path.
821
822 Thu Dec 14 21:42:39 CET 2006 Paolo Molaro <lupus@ximian.com>
823
824         * processes.c: fixed a few memory leaks when executing
825         processes.
826
827 Mon Nov 27 13:12:17 GMT 2006 Paolo Molaro <lupus@ximian.com>
828
829         * atomic.h: fix arm compare and exchange (bug #78500).
830
831 2006-11-23  Dick Porter  <dick@ximian.com>
832
833         * process-private.h (struct _WapiHandle_process): Add 'waited'
834         parameter
835
836         * processes.c (process_wait): Check the 'waited' parameter not the
837         signalled state when testing if a process has already been waited
838         for, as the child process itself may set signalled when exiting.
839         Fixes bug 79885.
840
841         * wapi-private.h (_WAPI_HANDLE_VERSION): Bump shared data version
842
843         * shared.c: Now the shared data version has been incremented we
844         can set the counter semaphore initial value correctly
845
846 2006-11-22  Dick Porter  <dick@ximian.com>
847
848         * processes.c (process_wait): Cope when the background process
849         reaper gets the process we were waiting for.  Special case for
850         waiting for our own process to exit.  Fixes bug 77736.
851
852 2006-11-17  Dick Porter  <dick@ximian.com>
853
854         * processes.c: Fix const correctness and typos that caused memory
855         corruption. 
856         
857 2006-11-17  Miguel de Icaza  <miguel@novell.com>
858
859         * processes.c (ShellExecuteEx): Check error after CreateProcess,
860         thanks to Dick for pointing this out. 
861
862 2006-11-16  Miguel de Icaza  <miguel@novell.com>
863
864         * processes.c (ShellExecuteEx): If we fail to create a process in
865         ShellExecute, then try to use the xdg-open command, and if that
866         fails, try to use the gnome-open command, 
867
868         Refactor the code so that we do not have to duplicate all this
869         code, but instead use a ucs2-aware version of the code to do
870         concatenations.
871
872 2006-11-13  Dick Porter  <dick@ximian.com>
873
874         * io.c (_wapi_stat_to_file_attributes): If the file is a symlink
875         add the FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to
876         follow the specs for the windows symlink support, but will
877         probably have to be reworked when I have test data from a vista
878         machine.  Fixes bug 79887.
879
880 2006-11-11  Miguel de Icaza  <miguel@novell.com>
881
882         * handles.c (CloseHandle): Cope here with the new value
883         INVALID_HANDLE_VALUE set on handles.  
884
885         * processes.c (CreateProcess): Initialize the value of hThread to
886         be INVALID_HANDLE_VALUE on failure, not to be NULL.  Improvement
887         for #75733
888
889 2006-11-09  Dick Porter  <dick@ximian.com>
890
891         * sockets.c (_wapi_select): Do some sanity checking on the
892         fd_sets, to avoid file descriptors > FD_SETSIZE.
893         (_wapi_FD_CLR, _wapi_FD_ISSET, _wapi_FD_SET): Avoid file
894         descriptors > FD_SETSIZE.
895
896 2006-10-27  Dick Porter  <dick@ximian.com>
897
898         * io.c (GetFileAttributes): Force symlinks to directories to be
899         returned as a regular file.  Fixes bug 79733.
900
901 2006-10-18  Miguel de Icaza  <miguel@novell.com>
902
903         * io-portability.c (find_in_dir): First string dup, then closedir.
904
905 2006-10-12  Dick Porter  <dick@ximian.com>
906
907         * processes.c (_wapi_process_reap): Unref a process handle if we
908         reaped it, found by Zoltan.  Fixes bug 79286.
909         (process_wait): Don't wait again if we've already waited for a
910         process.
911
912 2006-10-11  Sergey Tikhonov <tsv@solvo.ru>
913
914         * atomic.h: Fix atomic decrement.
915
916         * mini/cpu-alpha.md: Use native long shift insts
917
918         * mono/mono/mini/tramp-alpha.c: Implemented
919         mono_arch_patch_delegate_trampoline method
920
921         * Started work on using global registers
922         
923         * Use byte/word memory load/store insts if cpu supports it
924         
925         * Code clean up
926
927         
928 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
929
930         * handles.c (timedwait_signal_poll_cond): Add an alertable parameter, and if it
931         is FALSE, avoid busy waiting.
932
933         * wait.c: Add an alertable parameter to the wait routines.
934
935 2006-10-06  Miguel de Icaza  <miguel@novell.com>
936
937         * io-portability.c (find_file): Rename from
938         MONO_IO_PORTABILITY_HELP to MONO_IOMAP.
939
940 2006-10-03  Dick Porter  <dick@ximian.com>
941
942         * io-portability.h: 
943         * io-portability.c: Optional portability helpers and wrapped
944         system calls to try to cope with windows filenames in
945         applications.
946
947         * io.c: Use the wrapped system calls
948
949 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
950
951         * critical-sections.h critical-sections.c: Make Enter/LeaveCriticalSection a macro
952         since they are perf critical.
953
954         * atomic.h: Applied patch from Jakub Boqusz <qboosh@pld-linux.org>.
955         Add atomic ops implementation for alpha.
956
957 2006-08-11  Dick Porter  <dick@ximian.com>
958
959         * processes.c (_wapi_process_reap): Avoid a deadlock by setting
960         process termination details in an outer loop, not the
961         _wapi_search_handle() one.
962
963 2006-08-10  Dick Porter  <dick@ximian.com>
964
965         * threads.c (_wapi_thread_queue_apc)
966         (_wapi_thread_dispatch_apc_queue): Use a process-local mutex here
967         instead of the cross process semaphore.  We already check that
968         access to the APC queue is within the owning process so there's no
969         need to protect from other processes.  Avoids a global deadlock
970         when a thread is aborted while it holds the handle semaphore
971         locked.
972         (_wapi_thread_apc_pending): Hide an annoying message which can
973         happen if a thread handle has been blown away at process shutdown
974         while it is in an alertable wait.
975
976         Both problems seen while shutting down monodevelop.
977
978 2006-07-25  Dick Porter  <dick@ximian.com>
979
980         * shared.c (_wapi_shm_file): Remove '/' characters from the uname
981         results.  Fixes bug 78917.
982
983 2006-07-20  Dick Porter  <dick@ximian.com>
984
985         * threads.c (_wapi_thread_set_termination_details): Improve the
986         test for already-disposed thread handles, and hold the lock around
987         the mutex abandoning.
988
989 2006-07-17  Dick Porter  <dick@ximian.com>
990
991         * processes.c (CreateProcess): Don't change directory unless a new
992         one has been specified.  Fixes bug 78751.
993
994 2006-07-06  Dick Porter  <dick@ximian.com>
995
996         * io.c (_wapi_stat_to_file_attributes): Do a better job at
997         figuring out the file attributes
998         (_wapi_set_last_path_error_from_errno): New helper function to
999         turn errno into w32 error codes that handles the differences
1000         between file and directory errors
1001         (file_setendoffile): Try turning off the extra write used to
1002         extend files, because we probably don't need it on any modern
1003         platform.  If it is needed though, we also need to lseek the file
1004         position back again
1005         (CreateFile): Treat character-special devices as a console handle,
1006         because they can't be seeked
1007         (CopyFile): If fail_if_exists is set, then the destination needs
1008         to be opened with O_EXCL
1009         (CopyFile): If fail_if_exists is not set and the destination
1010         already exists, then we should set the ERROR_ALREADY_EXISTS error
1011         even though we return success
1012         (stdhandle_create): STD_INPUT_HANDLES cannot be written to
1013         (GetStdHandle): Rework without using mono_once, so console handles
1014         can be properly closed and reopened.
1015         (mono_io_scandir): Only override errno with EACCES when the
1016         directory actually exists
1017         (FindFirstFile): Set ERROR_FILE_NOT_FOUND when no files are
1018         returned
1019         (FindClose): Cope with NULL handles
1020         (CreateDirectory): When the target already exists, just return an
1021         error.  It's the caller's job to figure out what to do.
1022         (SetCurrentDirectory): Cope with a NULL path
1023         (RemoveDirectory, GetFileAttributes, GetFileAttributesEx,
1024         SetFileAttributes, FindFirstFile, DeleteFile, MoveFile, CopyFile,
1025         CreateFile): Set path error correctly
1026
1027         * handles.c (CloseHandle): Kludge to try and cope with passing a
1028         NULL handle
1029
1030         * error.h: Add NO_ERROR as an alternative to ERROR_SUCCESS
1031
1032         * uglify.h: Added some more typedefs
1033
1034 2006-07-05  Dick Porter  <dick@ximian.com>
1035
1036         * io.c (GetFileAttributes, GetFileAttributesEx): Cope with
1037         dangling symlinks.  Fixes bug 78664.
1038
1039 2006-06-23  Dick Porter  <dick@ximian.com>
1040
1041         * handles.c (handle_cleanup): 
1042         * threads.c: Clean up threads properly when we're forcibly
1043         removing the handle entries from the shared file in
1044         handle_cleanup().  Fixes bug 78241, for real this time.
1045
1046 2006-06-15 Neale Ferguson <neale@sinenomine.net>
1047
1048         * atomic.h: More tinkering with InterlockedExchange/InterlockedCompareExchange
1049         for s390/s390x.
1050
1051 2006-06-14 Neale Ferguson <neale@sinenomine.net>
1052
1053         * atomic.h: Fix atomic exchange pointer operations for s390x - these
1054         were broken as they used 32-bit instructions rather than their 64-bit
1055         versions.
1056
1057 2006-06-14  Dick Porter  <dick@ximian.com>
1058
1059         * processes.c: Don't run the atexit handlers when bailing out
1060         of a fork/exec.
1061
1062 2006-06-14  Dick Porter  <dick@ximian.com>
1063
1064         * wait.c: Fix stupid typo shown up by gcc 4.1.1, = not ==
1065
1066         * handles-private.h: 
1067         * shared.c: 
1068         * io.c: 
1069         * processes.c: 
1070         * mono-spinlock.h: 
1071         * handles.c: 
1072         * collection.c: Fix a bunch of signed/unsigned warnings from gcc
1073         4.1.1
1074
1075 2006-06-09 Neale Ferguson <neale@sinenomine.net>
1076
1077         * atomic.h: Fix atomic operations for s390x (not really broken 
1078         but changed to use full 64-bit opcodes).
1079
1080 2006-05-24  Dick Porter  <dick@ximian.com>
1081
1082         * processes.c (process_set_current): Don't take an extra reference
1083         if we have to create our own process handle.  Fixes bug 78241
1084         again.
1085
1086         * threads.c (_wapi_thread_signal_self): Renamed from
1087         _wapi_thread_abandon_mutexes, also sets the thread state to
1088         signalled and drops a reference.  Called by the runtime when the
1089         main thread cleans itself up.
1090
1091         * handles.c (handle_cleanup): As a last resort, unref every shared
1092         handle as the process is now exiting.
1093
1094 2006-05-16  Dick Porter  <dick@ximian.com>
1095
1096         * processes.c (process_set_termination_details): Unref the handle
1097         when we've stored the exit details.  Fixes the rest of 78241.
1098
1099 2006-05-12  Dick Porter  <dick@ximian.com>
1100
1101         * threads.c: Implement pseudo handles, making GetCurrentThread()
1102         match MS behaviour.  Notice when attached threads exit, and unref
1103         the handle.  Fix usage of GetCurrentThread() in other places.
1104
1105         * handles.c (DuplicateHandle): Implement a basic form of
1106         DuplicateHandle().
1107
1108         * wait.c: Fix usage of GetCurrentThread() throughout, and cope
1109         with pseudo handles.
1110
1111 2006-04-26  Miguel de Icaza  <miguel@novell.com>
1112
1113         * io.c (file_close): Oops, do not use DeleteFile which expects
1114         unicode, instead use unlink directly
1115
1116         Add support for the new FileOptions bits on .NET 2.0.
1117
1118         It might be good if Dick reviews these changes.
1119         
1120         * io.c (file_close): If DeleteOnClose is set, then delete the file
1121         before freeing it.
1122         (CreateFile): Do not support encryption per user. 
1123         
1124         If posix_fadvise exists, pass hints on sequential scan and random
1125         access.   Did not figure out what WRITE_THROUGH maps to.
1126
1127 2006-04-26  Dick Porter  <dick@ximian.com>
1128
1129         * sockets.c (WSAIoctl): Check the output buffer is valid before
1130         writing to it.
1131
1132         * handles.c (_wapi_search_handle): Set shared pointer if we find a
1133         shared handle that has been already opened.
1134
1135 2006-04-21  Dick Porter  <dick@ximian.com>
1136
1137         * threads.c (GetCurrentThread): Reference the handle if we return
1138         an already-known thread.
1139
1140 2006-04-07  Dick Porter  <dick@ximian.com>
1141
1142         * processes.c: Fix build for older glib.
1143
1144 2006-04-06  Dick Porter  <dick@ximian.com>
1145         
1146         * processes.c (CreateProcess): Add a reference to the child
1147         process' handle, so it won't be destroyed if this process closes
1148         its copy of the handle.  Fixes bug 77393.
1149         
1150         * processes.c (process_set_current): Fall through to creating a
1151         new one if the handle lookup fails.
1152
1153         * processes.c (_wapi_process_signal_self):
1154         * handles.c (handle_cleanup): The process is exiting, so set the
1155         handle state for this process to signalled.  This should let other
1156         non-related processes wait for this handle.
1157         
1158         * handles.c (_wapi_search_handle): Don't search shared handles in
1159         all cases.
1160
1161         * collection.c (collection_thread): No need to do a collection
1162         scan straight away, do the waiting first.
1163
1164 2006-04-06  Dick Porter  <dick@ximian.com>
1165
1166         * shared.c: Fix parameters in semctl () call.
1167
1168 2006-03-28  Zoltan Varga  <vargaz@gmail.com>
1169
1170         * atomic.h atomic.c: Applied patch from David S. Miller 
1171         <davem@davemloft.net>: Reimplement Interlocked* primitives on sparc 
1172         using CAS/CASx when __GNUC__, else we will fall back to the generic 
1173         pthread version.
1174
1175 2006-03-27  Dick Porter  <dick@ximian.com>
1176
1177         * shared.c (_wapi_shm_file_open): Break out of a loop if the
1178         shared file is smaller than expected.  (We loop a few times in
1179         case another process is in the middle of creating the file.)
1180
1181 2006-03-22  Dick Porter  <dick@ximian.com>
1182
1183         * handles.c:
1184         * wapi-private.h:
1185         * shared.h:
1186         * shared.c: Delete the semaphores and shared files when the last
1187         process has finished with them
1188
1189 2006-03-15  Dick Porter  <dick@ximian.com>
1190
1191         * events.c: 
1192         * io.c: 
1193         * mutexes.c: 
1194         * processes.c: 
1195         * semaphores.c: 
1196         * sockets.c: 
1197         * threads.c: Explicitly initialise the handle ops struct
1198
1199 2006-03-14  Dick Porter  <dick@ximian.com>
1200
1201         * handles-private.h: 
1202         * wapi-private.h: 
1203         * wait.c: 
1204         * handles.c: Add a 'prewait' stage to the handle waiting, to give
1205         waiting threads a chance to check for bogus states before
1206         blocking.
1207
1208         * mutexes.c (namedmutex_prewait): Use the prewait stage to check
1209         for named mutexes that have been abandoned in a locked state (eg
1210         if a process exited abnormally while owning the mutex) and
1211         override it if needed.
1212
1213 2006-03-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1214
1215         * wait.c: speed up WaitFor* when the timeout is 0.
1216
1217 2006-03-03  Dick Porter  <dick@ximian.com>
1218
1219         * processes.c (ShellExecuteEx): Cope when some of the parameters
1220         are NULL.
1221
1222 2006-02-27  Dick Porter  <dick@ximian.com>
1223
1224         * mutexes.c: 
1225         * mono-mutex.c: 
1226         * threads.c: Comparing pthread_t with == is not portable, so use
1227         pthread_equal().
1228
1229 Thu Feb 23 18:47:20 GMT 2006 Paolo Molaro <lupus@ximian.com>
1230
1231         * *.h, *.h: patch from Dick to make Linuxthreads systems work again.
1232
1233 2006-02-22  Dick Porter  <dick@ximian.com>
1234
1235         * thread-private.h: 
1236         * threads.c: There's no need to use the timed-thread support code
1237         any more, as we aren't using the timed join.  This greatly
1238         simplifies thread setup, and fixes a memory leak (bug 77521).
1239
1240         Don't bother to store thread IDs in a hash table, use TLS instead.
1241         The one case that needs to look up the handle of a different
1242         thread (OpenThread()) can do the extra work itself.  Fixes bug
1243         77536.
1244
1245         * handles.c (_wapi_search_handle): Add a reference when returning
1246         a private handle (shared handles are already reffed.)
1247         
1248 2006-02-17  Dick Porter  <dick@ximian.com>
1249
1250         * handles-private.h: 
1251         * handles.c: Check handle values passed to array lookups.  Fixes
1252         bug 77572.
1253
1254 2006-02-09  Dick Porter  <dick@ximian.com>
1255
1256         * threads.c: Cope with the problems caused by attaching already
1257         existing threads - they don't get the infrastructure to clean up
1258         after themselves, especially the ID to handle hash.  This fixes
1259         bug 77468.
1260
1261 2006-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1262
1263         * shared.c: use MONO_SHARED_HOSTNAME as a substitute for gethostname()
1264         when creating the shared files in the .wapi directory. Fixes bug #77371.
1265
1266 2006-02-02  Martin Baulig  <martin@ximian.com>
1267
1268         * threads.c: Removed the `WITH_INCLUDED_LIBGC' section; it has
1269         never been used so far. 
1270
1271         * timed-thread.h (TimedThread): Removed the `stack_ptr' field; it
1272         has only been used by the removed code.
1273
1274 2006-01-03  Neale Ferguson <neale@sinenomine.net>
1275
1276         * atomic.h: Correct s390x definitions and eliminate compiler warnings.
1277
1278 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
1279
1280         * io.c: Patch _wapi_stat_to_file_attributes against bug #76966, where
1281         sockets could be considered as directory.
1282
1283 2005-12-23  Dick Porter  <dick@ximian.com>
1284
1285
1286         * semaphores.h: 
1287         * semaphores.c: Implement OpenSemaphore
1288
1289         * mutexes.c: 
1290         * mutexes.h: Implement OpenMutex
1291
1292         * wapi-private.h: 
1293         * handles.c: 
1294         * events.c: 
1295         * events.h: 
1296         * event-private.h: Implement named events.  Implement OpenEvent.
1297
1298 2005-12-15  Dick Porter  <dick@ximian.com>
1299
1300         * processes.c (CreateProcess): The pipe-based cross-process
1301         exclusion technique was trying to write NULL buffers when appname
1302         was NULL (eg when coming from ShellExecuteEx,) which usually
1303         succeeded even though EFAULT was returned - but sometimes it
1304         failed.  This meant that the child process could block forever on
1305         the pipe read.  Replace it with the simpler shared handle
1306         semaphore protection used everywhere else.  This showed up with
1307         the test case in bug 76684.
1308
1309 Tue Dec 13 11:41:49 GMT 2005 Paolo Molaro <lupus@ximian.com>
1310
1311         * shared.c: fallback to private mmap when shared mmap doesn't work
1312         (like on jffs).
1313
1314 2005-12-06  Dick Porter  <dick@ximian.com>
1315
1316         * wapi-private.h: 
1317         * handles.c: 
1318         * semaphore-private.h: 
1319         * semaphores.c: Implement named semaphores
1320
1321 2005-11-24  Dick Porter  <dick@ximian.com>
1322
1323         * processes.c (GetProcessId): Implement GetProcessId()
1324
1325 2005-11-17  Dick Porter  <dick@ximian.com>
1326
1327         * processes.h: 
1328         * processes.c: Implement ShellExecuteEx as a wrapper around
1329         CreateProcess.
1330
1331 2005-11-11  Dick Porter  <dick@ximian.com>
1332
1333         * threads.c: Give mutex abandoning its own exported function, so
1334         it can be called when the runtime is cleaning up.
1335
1336         * handles.c (_wapi_search_handle_namespace): Do a handle
1337         collection befre starting to check namespace strings, so that any
1338         stale cruft gets removed.
1339
1340 2005-11-11  Dick Porter  <dick@ximian.com>
1341
1342         * threads.c: Move thread handles back into the shared space.
1343
1344         * handles.c (_wapi_handle_unref): Add support for shared handles
1345         with close() handlers
1346
1347 2005-11-04  Dick Porter  <dick@ximian.com>
1348
1349         * sockets.c (ioctlsocket): Use select instead of if to avoid a
1350         type promotion problem on 64bit freebsd.  Based on patch by Lou
1351         Kamenov <kamenovl@gmail.com>, fixes bug 76447.
1352
1353 2005-11-04  Dick Porter  <dick@ximian.com>
1354
1355         * io.c (file_write): Only do the file locking if
1356         MONO_STRICT_IO_EMULATION is set.
1357
1358 2005-10-21  Dick Porter  <dick@ximian.com>
1359
1360         * processes.c: 
1361         * handles.c (_wapi_lookup_handle): Cope when the shared part of a
1362         handle has been deleted.
1363         (_wapi_handle_unref): And when the deleted shared part is pointed
1364         to as a handle is deleted
1365
1366 2005-10-20  Dick Porter  <dick@ximian.com>
1367
1368         * processes.c (process_set_current): If the expected process
1369         handle slot doesn't contain the correct pid, create a new handle.
1370
1371         * handles.c (_wapi_search_handle): When the search doesn't find
1372         anything, return failure instead of the last handle we looked at.
1373         (_wapi_handle_ref, _wapi_handle_unref): Don't try to ref or unref
1374         unused handles (makes tracking refcounting bugs easier.)
1375
1376 2005-10-19  Dick Porter  <dick@ximian.com>
1377
1378         * handles.c:
1379         * handles-private.h:
1380         * wapi-private.h: 
1381         * processes.c: 
1382         * mutexes.c:
1383         * collection.c (_wapi_handle_collect): Remove the shared handle
1384         indirection layer, and use locking instead.  Delete other
1385         complexity that is no longer needed.  Refcount shared handles and
1386         delete them when needed, but keep the timestamps so that orphaned
1387         handles will be cleaned up eventually.
1388
1389         * shared.c (_wapi_shm_file): Add processor, OS and struct size
1390         info to the shared file names, to cope with dual-boot and 32/64bit
1391         size issues.  Fixes bug 75839.
1392
1393         * wait.c (WaitForMultipleObjectsEx): No need to distinguish
1394         between shared handles and private, as the wait functions cope
1395         with both together now.
1396
1397 2005-10-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1398
1399         * io.c: removed NO_SIGPIPE macro.
1400         * sockets.c: no need for MSG_NOSIGNAL or ignoring SIGPIPE.
1401
1402 2005-10-11  Dick Porter  <dick@ximian.com>
1403
1404         * sockets.c (_wapi_getsockopt): Translate SO_ERROR results into
1405         w32 error codes.
1406
1407         * error.c (errno_to_WSA): Don't return a bogus error if someone
1408         asks to translate errno 0.
1409
1410 2005-10-11  Dick Porter  <dick@ximian.com>
1411
1412         * handles.c: Fix several race conditions
1413
1414 2005-10-11 Miguel de Icaza <miguel@novell.com>
1415
1416         * io.c: no need to block SIGPIPE anymore, as it is ignored.
1417
1418 2005-10-05  Dick Porter  <dick@ximian.com>
1419
1420         * threads.c (_wapi_thread_own_mutex, _wapi_thread_disown_mutex):
1421         Keep a reference to mutexes owned by threads, so they won't be
1422         destroyed prematurely.  Fixes dotmsnclient crash.
1423
1424 2005-09-26  Sebastien Pouliot  <sebastien@ximian.com>
1425
1426         * io.c: Apply patch from #76192 (Can't write files past 2gb on AMD64 
1427         (x86_64)) for Brion on IRC (Dick approved it).
1428
1429 2005-09-23  Dick Porter  <dick@ximian.com>
1430
1431         * processes.c: Don't wait for processes that have already been
1432         signalled; also fix typo.
1433
1434         * handles.c: Improve locking inside new handle and handle
1435         searching functions.
1436
1437 2005-09-20  Dick Porter  <dick@ximian.com>
1438
1439         * collection.c: 
1440         * processes.c: Periodically waitpid for known process IDs.  Fixes
1441         bug 74870.
1442
1443 2005-09-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1444
1445         * io.c:
1446         (CreateFile): if the file is a named pipe, treat the handle as a pipe,
1447         not as a file. Fixes bug #76075.
1448
1449 2005-08-27  Zoltan Varga  <vargaz@gmail.com>
1450
1451         * atomic.h: Add support for intel icc.
1452
1453 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
1454
1455         * io-layer.h: Include winbase.h not WinBase.h.
1456
1457 2005-08-19  Dick Porter  <dick@ximian.com>
1458
1459         * threads.c, threads.h, thread-private.h: Use a gsize to store the
1460         thread ID, so it can hold a 64 bit value if needed.
1461
1462 2005-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1463
1464         * error.c: map ENOENT to WSAECONNREFUSED. It might happen when
1465         connecting to unix sockets. Closes bug #75632.
1466
1467 2005-07-05  Dick Porter  <dick@ximian.com>
1468
1469         * io.c: Make sure SIGPIPE is ignored when calling write(2).
1470         Prevents the runtime exiting when writing to a closed pipe,
1471         fixing bug 75468.
1472
1473 2005-06-30  Dick Porter  <dick@ximian.com>
1474
1475         * shared.c (_wapi_shm_semaphores_init): Add some helpful error
1476         messages when semget () fails due to lack of resources.
1477
1478 2005-06-21  Dick Porter  <dick@ximian.com>
1479
1480         * mutex-private.h:
1481         * thread-private.h:
1482         * mutexes.c: 
1483         * threads.c: Keep a list of owned mutexes in each thread handle,
1484         so that it is easier to abandon them when the thread exits.
1485         Removes a bottleneck when multiple threads are finishing in
1486         parallel.
1487
1488 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1489
1490         * io.c: (GetLogicalDrives) when a bogus line is read, don't leak memory.
1491         When the buffer has not enough space, close the file before returning.
1492
1493 2005-06-09  Duncan Mak  <duncan@novell.com>
1494
1495         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
1496         all public headers. Fixes #74919.
1497
1498 2005-05-30  Zoltan Varga  <vargaz@freemail.hu>
1499
1500         * atomic.h: Add IA64 atomic ops.
1501
1502 2005-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1503
1504         * processes.c: make ExitCode be valid even if the user didn't call
1505         WaitForExit() and is just polling on HasExited.
1506
1507 2005-05-17  Dick Porter  <dick@ximian.com>
1508
1509         * io.c (file_getfilesize): Clear the error value, so that files
1510         with sizes with the low bits 0xFFFFFFFF can be distinguished from
1511         a genuine error.
1512
1513 2005-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1514
1515         * shared.c: forgot to ignore a warning.
1516
1517 2005-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1518
1519         * shared.c: don't display warnings after reboots.
1520
1521 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1522
1523         * sockets.c: on windows, getsockopt/setsockopt for send/receive timeout
1524         use an integer in milliseconds. We were using a struct timeval.
1525
1526 2005-05-06  Dick Porter  <dick@ximian.com>
1527
1528         * handles-private.h: 
1529         * mutexes.c: 
1530         * wapi-private.h: 
1531         * shared.h:
1532         * shared.c: 
1533         * wait.c: 
1534         * handles.c: 
1535         * collection.h: Use SysV semaphores for managing access to the
1536         shared memory - in return for the ludicrous api we get
1537         synchronisation primitives that can be cleaned up by the kernel
1538         even when a process quits unexpectedly.  This removes the
1539         timestamp issues.
1540
1541 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
1542
1543         * handles.c: Always use polling in the waits, since
1544         mono_cond_timedwait can't be interruped by the thread abort signal.
1545
1546 2005-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1547
1548         * events.c: calling Set on AutoResetEvent several times has the same
1549         effect as calling it only once if no thread is waiting for it.
1550
1551 2005-04-29  Dick Porter  <dick@ximian.com>
1552
1553         * processes.c (EnumProcesses): Use a GArray instead of a GPtrArray
1554         now it's storing pids not handles, also fixes memory leak caused
1555         by unclear glib documentation.
1556
1557         * sockets.c (WSACleanup): Remove unused variable
1558
1559 2005-04-29  Dick Porter  <dick@ximian.com>
1560
1561         * handles.c (_wapi_handle_check_share_by_pid): For systems that
1562         don't have file descriptor info in /proc check that the original
1563         opener of a file is still there, if a share violation would
1564         otherwise happen.
1565
1566 2005-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1567
1568         * handles.c:
1569         * handles-private.h: added _wapi_handle_forecch that loops through all
1570         the handles and call a callback function when a handle of the given
1571         type is found.
1572
1573         * sockets.c: no need to keep open sockets in an array, as we have them 
1574         in the handles structure.
1575
1576         Fixes bug #74755.
1577
1578 2005-04-28  Dick Porter  <dick@ximian.com>
1579
1580         * processes.c: Cope with handles that are only around for as long
1581         as the search is running.  If we're searching for process handles,
1582         check to see if the process is still running and signal it if not.
1583
1584         * handles.c (_wapi_search_handle): Search in the shared space as
1585         well.  Fixed bug 74752.
1586
1587         * mutexes.c:
1588         * handles.c (_wapi_handle_new_from_offset):
1589         _wapi_handle_new_for_existing_ns () was doing exactly the same as
1590         this, so deleted it.
1591
1592 2005-04-26  Dick Porter  <dick@ximian.com>
1593
1594         * handles.c: Fix stupid thinko where if a new shared handle is
1595         created but a collection was needed to free some space, it
1596         returned an error anyway.  Should fix the messages shown in bug
1597         74659.
1598
1599 2005-04-25  Dick Porter  <dick@ximian.com>
1600
1601         * handles.c (_wapi_handle_check_share): Only consider mono
1602         processes when looking to see if a file is still being held open,
1603         while checking share permissions.
1604
1605 2005-04-25  Dick Porter  <dick@ximian.com>
1606
1607         * sockets.c: 
1608         * io.c: 
1609         * wapi-private.h (struct _WapiHandleOps): 
1610         * handles.c (_wapi_handle_unref): When destroying handles, save
1611         the handle data and call the close function only after the array
1612         slot has been cleared.  This prevents race conditions with file
1613         descriptors, fixing bug 74713.
1614
1615         * mutexes.c: Delete the handle close functions, they didn't do
1616         anything anyway
1617
1618         * error.c (_wapi_get_win32_file_error): Add a mapping for EINTR so
1619         the "Unknown error" g_warning doesn't get displayed.
1620
1621 2005-04-25  Dick Porter  <dick@ximian.com>
1622
1623         * wapi-private.h: 
1624         * threads.c: Make thread handles process-private for now to take
1625         some of the space pressure off the shared memory, while I work on
1626         a real fix.
1627
1628 2005-04-21  Dick Porter  <dick@ximian.com>
1629
1630         * handles.c (_wapi_handle_check_share): Make sure there is a "fd"
1631         dir in /proc before blowing away handle info.  Fixes bug 74649.
1632
1633 2005-04-21  Dick Porter  <dick@ximian.com>
1634
1635         * wait.c (WaitForMultipleObjectsEx): Implement special waits
1636
1637         * handles.c (_wapi_handle_wait_signal_poll_share): Don't return a
1638         timeout, just wait briefly for the private signals and let the
1639         waiting thread test again.  This prevents us missing shared
1640         signals.
1641
1642 2005-04-21  Dick Porter  <dick@ximian.com>
1643
1644         * collection.h (_WAPI_HANDLE_COLLECTION_EXPIRED_INTERVAL): Reduce
1645         the time before a slot is considered too old and deleted.  This is
1646         a workaround while I come up with a proper fix.
1647
1648 2005-04-21  Dick Porter  <dick@ximian.com>
1649
1650         * mutexes.c: 
1651         * processes.c: 
1652         * threads.c: 
1653         * handles.c (_wapi_handle_new): Turn assertions into errors.
1654
1655         * collection.c (_wapi_handle_collect): Use symbols not magic
1656         numbers for timeout values
1657
1658 2005-04-19  Dick Porter  <dick@ximian.com>
1659
1660         * mutexes.c: 
1661         * wait.c: 
1662         * handles.c (_wapi_handle_count_signalled_handles)
1663         * handles-private.h (_wapi_handle_shared_lock_handle): Use new
1664         shared handle locks in critical sections.
1665
1666         * handles.c (_wapi_handle_new_for_existing_ns): Reuse old handles
1667         if there is already one there.
1668         
1669         * handles.c (_wapi_handle_ref): It was possible for a process to
1670         exit before getting around to updating shared handle timestamps,
1671         so do it here too.
1672
1673 Tue Apr 19 16:25:47 CEST 2005 Paolo Molaro <lupus@ximian.com>
1674
1675         * threads.c: fix lookup of the thread id in the has table:
1676         always use the id value, not the pointer to the id.
1677
1678 2005-04-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1679
1680         * handles.c: fix handle returned in _wapi_handle_search_handle. Dick
1681         pointed it out.
1682
1683 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1684
1685         * io-layer/sockets.c: FIONBIO with a TRUE argument means we want
1686         non-blocking IO, not the other way around.
1687
1688 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1689
1690         * handles.c:
1691         * io.c:
1692         * handles-private.h: GetFileType wasn't checking if we have memory
1693         allocated for the handle before dereferencing it. Fixes a FileStream
1694         nunit test.
1695
1696 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1697
1698         * handles.c:
1699         * processes.c:
1700         * handles-private.h: we were calling g_renew to expand the handle array,
1701         but that might move the memory and we might have pthread conditions or
1702         mutexes in the original memory area that are being used. Now instead of
1703         expanding an existing array, we just create new ones and keep a list of
1704         them. Access to _wapi_private_handles had to be modified accordingly.
1705
1706 2005-04-15  Dick Porter  <dick@ximian.com>
1707
1708         * collection.c: FreeBSD needs more than PTHREAD_STACK_MIN
1709
1710 2005-04-14  Raja R Harinath  <rharinath@novell.com>
1711
1712         * wapi-private.h: Remove reference to 'daemon-private.h'.
1713
1714 Wed Apr 13 13:12:33 EDT 2005 Paolo Molaro <lupus@ximian.com>
1715
1716         * atomic.h: applied patch from mass@akuma.org (David Waite)
1717         to fix InterlockedExchangeAdd.
1718         Fixed a few other functions, including InterlockedCompareExchange()
1719         which was miscompiled by gcc with optimizations enabled.
1720
1721 2005-04-13  Dick Porter  <dick@ximian.com>
1722
1723         * io.c (share_check): 
1724         * handles.c (_wapi_handle_check_share): Refine the file check so
1725         that sharing violations within the same process don't cause
1726         assertion failures.
1727
1728 2005-04-13  Dick Porter  <dick@ximian.com>
1729
1730         * io.c (FindFirstFile): Fix bugs introduced with the merge (bug
1731         74586)
1732
1733 2005-04-12  Dick Porter  <dick@ximian.com>
1734         
1735         The daemon-less io-layer.  Extensive lowlevel changes in
1736         handles.c, requiring some corresponding changes in other files
1737         calling these functions.  Private_foo structures have been
1738         eliminated.
1739
1740         File descriptor handling differences account for most of the
1741         changes in io.c and sockets.c.
1742
1743         Other highlights:
1744         
1745         * mutexes.c: Named mutexes are now a distinct type.
1746         * atomic.h: Fix a PPC uninitialised variable warning.
1747         * wait.c: Check conditions before waiting on a condition variable.
1748         * processes.c: Handle process fork and wait without a daemon
1749         (though this has the limitation of only being able to wait for
1750         child processes.)
1751
1752 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1753
1754         * io-private.h:
1755         * threads.c:
1756         * threads.h:
1757         * io.c:
1758         * sockets.c:
1759         * sockets.h: removed dead code that deals with async IO.
1760
1761 2005-03-30  Zoltan Varga  <vargaz@freemail.hu>
1762
1763         * atomic.c (InterlockedIncrement): Fix fallback implementation of
1764         InterlockedIncrement and InterlockedDecrement. Fixes #74228.
1765
1766 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
1767
1768         * io-layer.h: Add required header files for compiling with VS.NET.
1769
1770 2005-03-17 Miguel de Icaza <miguel@novell.com>
1771
1772         * io.c: don't fail on NFS when there are no more locks available.
1773
1774 2005-03-09  Dick Porter  <dick@ximian.com>
1775
1776         * error.c (_wapi_get_win32_file_error): ENFILE and EMFILE should
1777         map to ERROR_TOO_MANY_OPEN_FILES, not ERROR_NO_MORE_FILES.  Fixes
1778         bug 72671.
1779
1780 2005-03-09  Dick Porter  <dick@ximian.com>
1781
1782         * daemon.c (process_process_fork): Initialise the handle data
1783         before using it in the error case.  This is probably the error
1784         we're working around in the previous change.  Spotted by Taru Jain
1785         <tjain@novell.com> and Hemanth Yamijala <YHemanth@novell.com>.
1786
1787 2005-03-07  Dick Porter  <dick@ximian.com>
1788
1789         * daemon.c: It looks like g_shell_parse_argv() can return
1790         argv[0]=NULL somehow, yet still not give an error.  Make sure we
1791         don't pass NULL to strrchr(), working around a segfault that
1792         showed up on ZLM testing.
1793
1794 2005-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1795
1796         * sockets.c: translate EINPROGRESS to EWOULDBLOCK in connect. This is
1797         the expected error code showed by the test case in bug #73053.
1798
1799 2005-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1800
1801         * io.c: another leftover.
1802
1803 Fri Feb 18 17:37:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1804
1805         * io.c: fixed logic in checking errno in rev 40815.
1806
1807 Fri Feb 18 16:00:29 CET 2005 Paolo Molaro <lupus@ximian.com>
1808
1809         * threads.c: we don't depend on the GC checking tls
1810         slots anymore.
1811         * processes.c: remove unused ref to GC headers.
1812
1813 Thu Feb 17 19:57:11 CET 2005 Paolo Molaro <lupus@ximian.com>
1814
1815         * io.c: remove _wapi_thread_cur_apc_pending () checks
1816         when the siscall should return immediatly and handle
1817         the case when a syscall is interrupted without
1818         erroring out, but returning a 0 read/write if possible.
1819         Still the cases of read from file need to be handled.
1820
1821 Tue Feb 8 18:28:11 CET 2005 Paolo Molaro <lupus@ximian.com>
1822
1823         * threads.c: make people test with 1 MB stack per thread.
1824
1825 2005-01-17  Dick Porter  <dick@ximian.com>
1826
1827         * timefuncs.h: Make WapiFileTime endian-aware, as it's often
1828         cast to and from 64bit ints.  Fixes bug 71213.
1829
1830 2005-01-11  Dick Porter  <dick@ximian.com>
1831
1832         * error.c (errno_to_WSA): Add EADDRNOTAVAIL error code
1833         translation.
1834
1835 Mon Jan 10 16:15:19 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
1836
1837         * atomic.h: Fix functions on s390.
1838
1839 Mon Jan 10 20:30:19 CET 2005 Paolo Molaro <lupus@ximian.com>
1840
1841         * atomic.h: fix some functions on ppc (tests/interlocked.cs).
1842
1843 2005-01-10  Dick Porter  <dick@ximian.com>
1844
1845         * misc.c (_wapi_calc_timeout): Guard against overflow when
1846         calculating timeouts.  This makes waiting with a large
1847         (Int32.MaxValue) timeout not return immediately.
1848
1849 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
1850
1851         * io.c (io_ops): make this `const' so it is shareable (well, only
1852         really shareable if it is statically linked...)
1853
1854 Mon Dec 20 11:58:33 CET 2004 Paolo Molaro <lupus@ximian.com>
1855
1856         * threads.c, threads.h: add accessor to get the pthread_key_t for
1857         a tls id.
1858
1859 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1860
1861         * io.c: check for the existence of 'dest' and set ERROR_ALREADY_EXISTS
1862         if it exists and is not the same as 'src'.
1863
1864 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1865
1866         * atomic.h : Fix InterlockedCompareExchange for s390/s390x.
1867
1868 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1869
1870         * processes.c: unquote the cmd path, allow for ' or " when quoting and
1871         pass the quoted program name to the daemon, otherwise the call to
1872         g_shell_unquote in the daemon will break things up.
1873
1874 2004-10-14  Dick Porter  <dick@ximian.com>
1875
1876         * sockets.c (_wapi_accept): Revert the previous change.  We now
1877         set the accepted socket to have the same blocking status as the
1878         listening socket in managed code.  This follows MS behaviour.
1879         
1880 2004-10-14  Dick Porter  <dick@ximian.com>
1881
1882         * sockets.c (_wapi_accept): On Darwin, make sure a newly
1883         accept()ed socket is blocking.  Fixes bug 67355, patch by
1884         grompf@sublimeintervention.com.
1885
1886 2004-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
1887
1888         * system.c: check the number of online processors instead of the
1889         existing ones. Sanitize return value if it's an error.
1890
1891 2004-10-03 Ben Maurer  <bmaurer@ximian.com>
1892
1893         * system.c: Add support for getting the # of cpus.
1894
1895 2004-09-28  Dick Porter  <dick@ximian.com>
1896
1897         * io.c (pipe_close_private): Fix one small typo in the last change
1898         that totally hosed process creation with redirected pipes.
1899
1900 2004-09-24  Dick Porter  <dick@ximian.com>
1901
1902         * wapi-private.h: 
1903         * sockets.c: 
1904         * socket-private.h: 
1905         * io.c: 
1906         * io-private.h: 
1907         * handles-private.h: Cope when a file descriptor is reused while
1908         the handle that thought it owned it is still referenced, instead
1909         of asserting.  Probably fixes bug 66479, though we've been unable
1910         to reproduce it.
1911
1912 2004-09-09  Dick Porter  <dick@ximian.com>
1913
1914         * error.c:
1915         * io.c: Set error codes everywhere.
1916
1917 2004-09-06  Dick Porter  <dick@ximian.com>
1918
1919         * handles.c (_wapi_handle_unref): Reset the private record's type
1920         (CloseHandle): Check for a fd mapping failure, and return FALSE.
1921         (_wapi_handle_process_fork): Fix long-standing bug in checking
1922         handle return values.  Also do the required bookkeeping with the
1923         new process's handles.
1924
1925         * daemon.c: When creating a new process's handles, check whether
1926         the shared space needs to be increased
1927
1928 2004-09-05  Zoltan Varga  <vargaz@freemail.hu>
1929
1930         * shared.c (_wapi_shm_file): Fix leaking of filename.
1931
1932 2004-08-19  Dick Porter  <dick@ximian.com>
1933
1934         * handles.c (_wapi_handle_count_signalled_handles): Fix thinko
1935         introduced with the fd offset stuff: unlock handles properly when
1936         backing off.  Fixes the monologue hang at exit.
1937
1938 2004-08-18  Dick Porter  <dick@ximian.com>
1939
1940         * sockets.c: 
1941         * io.c: Check that new fds fit in the table, return error if not
1942
1943         * daemon.c (_wapi_daemon_main): 
1944         * handles.c (shared_init): Have all processes agree on a size for
1945         the fd table.
1946
1947 2004-08-17  Dick Porter  <dick@ximian.com>
1948
1949         * daemon.c (process_new): 
1950         * handles.c (_wapi_handle_new_internal): Cope when the space
1951         reserved for file descriptors is larger than the shared segment
1952         size.  Fixes the crash reported when running mono under gdb on
1953         macosx.
1954
1955 2004-08-16  Dick Porter  <dick@ximian.com>
1956
1957         * sockets.c:
1958         * io.c:
1959         * handles-private.h (_wapi_handle_fd_offset_to_handle): Improve
1960         error checking with passed-in file descriptors.
1961
1962 2004-08-11  Dick Porter  <dick@ximian.com>
1963
1964         * sockets.c: 
1965         * io.c: Returned handle values are the file descriptor the handle
1966         encapsulates
1967
1968         * handles.c: 
1969         * handles-private.h: 
1970         * daemon.c: Reserve the range of handles that can have the same
1971         values as file descriptors.  These won't be used, but the values
1972         will be used as file, console, pipe or socket handles.  The fd to
1973         handle mapping is done internally and is invisible to users.
1974         Fixes bug 61828.
1975
1976         * wapi-private.h (_WAPI_HANDLE_VERSION): Increment, because we now
1977         reserve a chunk of handle space.
1978
1979 2004-08-04  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
1980
1981         * atomic.h: add support for 64-bit S/390
1982
1983 2004-07-22  Dick Porter  <dick@ximian.com>
1984
1985         * timed-thread.c: 
1986         * threads.c: Move the destruction of the internal thread data to
1987         after the thread has been joined.  Fixes bug 61418.
1988
1989 2004-07-14  Dick Porter  <dick@ximian.com>
1990
1991         * wait.c (test_and_own): When not waiting for all handles to
1992         become signalled, only own and return the lowest.  All the
1993         documentation suggests that the old way was correct, but
1994         experimentation shows it actually works like this.  Patch by
1995         Sébastien Robitaille
1996         (sebastien.robitaille@croesus.com), fixes bug 61511.
1997
1998 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
1999
2000         * threads.c: register roots for gc
2001
2002 2004-07-08  Dick Porter  <dick@ximian.com>
2003
2004         * io.c (file_seek): If there is a high 32bit offset part, make
2005         sure the low part isn't sign-extended.  Set error codes when
2006         returning failure.  Fixes bug 61131.
2007
2008 2004-07-06  Dick Porter  <dick@ximian.com>
2009
2010         * io.c (file_setfiletime): Check for underflow when converting to
2011         time_t values.  Set error codes when returning failure.  Fixes bug
2012         60970.
2013
2014 2004-07-05  Dick Porter  <dick@ximian.com>
2015
2016         * mutexes.c (mutex_ops_init): Make the named mutex mutex sharable.
2017
2018         * daemon.c (unref_handle): Only destroy a handle if all processes
2019         have released it, not just the current one.  Fixes bug 60887.
2020
2021 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
2022
2023         * mono-mutex.h atomic.h: Add G_GNUC_UNUSED to static inline functions
2024         to prevent warnings.
2025
2026 2004-06-24  Dick Porter  <dick@ximian.com>
2027
2028         * mutexes.c: Indicate when a named mutex was reused
2029
2030 2004-06-24  Dick Porter  <dick@ximian.com>
2031
2032         * threads.c (SuspendThread): 
2033         * timed-thread.c (_wapi_timed_thread_suspend): Wrap sem_wait in a
2034         while loop.  See bug 58161.
2035
2036 Wed Jun 23 23:29:04 CEST 2004 Paolo Molaro <lupus@ximian.com>
2037
2038         * io.c: don't use sharemode for on-disk file permissions: it's used
2039         for shared access to the open file.
2040
2041 2004-06-22  Dick Porter  <dick@ximian.com>
2042
2043         * events.c (CreateEvent): When creating an auto-reset event that
2044         is initially owned, make sure the set count starts at 1.
2045
2046 2004-06-18  Dick Porter  <dick@ximian.com>
2047
2048         * event-private.h:
2049         * events.c: Auto-reset events need to release one thread for each
2050         time SetEvent() is called.  Fixes bug 41292.
2051
2052         * threads.h:
2053         * mutex-private.h:
2054         * mutexes.c: Scan for mutexes that are still locked by a thread
2055         when it exits.  Fixes the MS demo app linked by bug 41292.
2056
2057         * wait.c (test_and_own): Make sure a handle is signalled before it
2058         is owned.
2059
2060 2004-06-16  Dick Porter  <dick@ximian.com>
2061
2062         * timed-thread.c: Call the thread cleanup exit routine before taking
2063         the join mutex, because this could deadlock if another thread tries
2064         to join in the meantime.  This fixes the hang-at-exit problem seen
2065         on macos.
2066
2067 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
2068
2069         * threads.c: Implemented SleepEx.
2070         * threads.h: Fixed SleepEx signature.
2071
2072 2004-06-03  Miguel de Icaza  <miguel@ximian.com>
2073
2074         * threads.c: When running under valgrind, do not allocate too much
2075         stack, as Valgrind default is 1 meg.
2076
2077 2004-05-27  Dick Porter  <dick@ximian.com>
2078
2079         * io.h:
2080         * io.c: Implemented LockFile() and UnlockFile()
2081
2082 2004-05-21  Dick Porter  <dick@ximian.com>
2083
2084         * io.c (CreateFile): Check for existing share modes when opening
2085         a file.
2086
2087         * handles.c: 
2088         * handles-private.h: 
2089         * daemon-messages.h: 
2090         * daemon.c: Maintain a hash of file share modes, keying on device
2091         and inode (to cope with symlinks.)
2092
2093 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
2094
2095         * daemon-messages.c: Retry if the communication with the daemon is
2096           interrupted by a signal.
2097         * io.c, sockets.c: Check for EINTR in every syscall that can be interrumped. 
2098           Only return an error in this case if there is something in the apc queue
2099           (which means that it is an interruption requested by the "user").
2100         * processes.c: Use WaitForSingleObjectEx. No need to pass "alertable" as
2101           true since the wait is small.
2102         * shared.c: Retry write calls when interrumped by a signal.
2103         * timed-thread.h, timed-thread.c: added _wapi_thread_apc_pending, which
2104           returns TRUE if there are pending asynchronous calls (APC) for the
2105           provided thread. Also added _wapi_thread_dispatch_apc_queue which calls
2106           the enqueued APCs. Defined a new struct ApcInfo that holds information
2107           about an enqueued APC.
2108         * thread-private.h, threads.c: Implemented QueueUserAPC (which does the same
2109           as in win32),_wapi_thread_apc_pending and _wapi_thread_dispatch_apc_queue. 
2110           These last two methods call the corresponding apc methods in 
2111           thread-private using the provided thread handle.
2112         * threads.h: Added QueueUserAPC.
2113         * uglify.h: Added WapiApcProc (needed by QueueUserAPC).
2114         * wait.c, wait.h: Changed WaitForSingleObject to WaitForSingleObjectEx, and
2115           WaitForMultipleObjects to WaitForMultipleObjectsEx. Implemented support
2116           for APCs in those two methods and also in SleepEx.
2117
2118 2004-05-17  Dick Porter  <dick@ximian.com>
2119
2120         * io.c (CopyFile): Speed up.  Fixes bug 57859.
2121
2122 2004-05-13  Dick Porter  <dick@ximian.com>
2123         * mono-mutex.c (mono_mutex_unlock): Return EPERM when the current
2124         thread doesn't own the mutex, rather than assert()ing.
2125
2126 2004-05-11  Dick Porter  <dick@ximian.com>
2127
2128         * shared.c (_wapi_shm_attach): Cope when a previous daemon startup
2129         attempt failed, leaving shared files that look like a daemon is
2130         still starting.
2131
2132 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2133
2134         * io.c:
2135         (SetFileAttributes): don't the the exec bit if the corresponding read
2136         bit is not set.
2137
2138 2004-05-10  Zoltan Varga  <vargaz@freemail.hu>
2139
2140         * io.c (FindFirstFile): Fix invalid free.
2141
2142 2004-05-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2143
2144         * io.c: translate from GFileError to errno codes and don't free
2145         variables right after calling mono_io_scandir, as we may overwrite
2146         errno value.
2147
2148 2004-05-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2149
2150         * io.c: g_dir_open return ENOENT for directories on which we don't have
2151         read/execute permission, while returning EPERM for anything below those.
2152         So, change ENOENT by EPERM if the directory exists.
2153
2154 2004-05-07  Dick Porter  <dick@ximian.com>
2155
2156         * io.c (SetFileAttributes): Don't have failed chmod()s cause a
2157         "file not found" error.  Fixes bug 54032.
2158         
2159 2004-05-07  Dick Porter  <dick@ximian.com>
2160
2161         * io.c (FindFirstFile): Comment out a windows-compatibility check
2162         that breaks when directories have metachars in their names.
2163         Workaround for bug 58116.
2164
2165 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2166
2167         * io.c: fixed for FindFirstFile for empty directories. Closes
2168         bug #58147.
2169
2170 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2171
2172         * processes.c: set the start time for the current process. Fixes bug
2173         #58109.
2174
2175 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2176
2177         * io-private.h: 'namelist' is now a gchar ** in _WapiHandlePrivate_find.
2178         * io.c: implemented scandir using glib functions.
2179
2180 2004-05-04  Dick Porter  <dick@ximian.com>
2181
2182         * daemon.c (read_message): Return FALSE on error so the GSource
2183         callback itself can return FALSE.  Cures the infinite loop poll()
2184         warning on MacosX.
2185         * shared.c: Fix some daemon startup race conditions.
2186
2187 2004-04-29  Miguel de Icaza  <miguel@ximian.com>
2188
2189         * io.c (CopyFile): Use 32k buffers to copy the file instead of 2k,
2190         use the stack, do not use dynamic memory.
2191
2192 2004-04-29  Zoltan Varga  <vargaz@freemail.hu>
2193
2194         * io.c: Add scandir implementation for platforms which do not have
2195         it, like solaris.
2196
2197 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2198
2199         * io.[ch]: implemented GetLogicalDriveStrings.
2200
2201 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2202
2203         * io.c:
2204         * sockets.c: use the field name from configure when accessing sigval
2205         pointer field. Makes this work on the Mac.
2206
2207 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
2208
2209         * atomic.c: (InterlockedExchange) fix typo for
2210         mutex name
2211
2212 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2213
2214         * io.c:
2215         * sockets.c: added check for sys/aio.h.
2216
2217 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2218
2219         * error.[ch]: added _wapi_get_win32_file_error...
2220         * io.c: ... which was _wapi_get_win32_error here.
2221         * sockets.c: rename the function calls here too.
2222
2223 2004-04-28  Dick Porter  <dick@ximian.com>
2224
2225         * daemon-messages.c: Avoid a deadlock when a thread is killed while
2226         waiting for the daemon by using a recursive mutex.  Helps bug 56699.
2227
2228 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2229
2230         * io.c: fixed leak in async_notifier().
2231
2232         * sockets.[ch]: added AIO support for sockets and fixed WSAIoctl
2233         declaration.
2234
2235         * threads.c: removed old comment.
2236
2237 2004-04-26  David Waite  <mass@akuma.org>
2238
2239         * daemon-messages.h:
2240         * daemon-private.h
2241         * error.h:
2242         * io.h:
2243         * processes.h:
2244         * shared.h:
2245         * thread-private.h:
2246         * wapi-private.h: remove comma from end of enumeration declarations
2247         * status.h: cast unsigned int types to int for enum assignment
2248
2249 2004-04-26 David Waite <mass@akuma.org>
2250
2251         * io.c:
2252         * timefuncs.c: declare 64-bit constants as long long types (i.e.
2253         10ULL)
2254
2255 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2256
2257         * socket-wrappers.h: _wapi_socket == WSASocket now. Added
2258         WSA_FLAG_OVERLAPPED.
2259
2260         * sockets.c: new unused parameters for _wapi_socket.
2261
2262 2004-04-22  Miguel de Icaza  <miguel@ximian.com>
2263
2264         * timed-thread.c: Replace sem_init with MONO_SEM_INIT to handle
2265         the fact that MacOS X is a piece of junk (sem_init is *defined* in
2266         the libc, but they return `not implemented'). 
2267
2268 2004-04-22  Dick Porter  <dick@ximian.com>
2269
2270         * handles.c: 
2271         * handles-private.h: Reference the handle when it is locked, so
2272         that another thread can't blow it away while we're waiting for it
2273         to become signalled.
2274         
2275         * wait.c: 
2276         * timed-thread.c: 
2277         * threads.c: 
2278         * sockets.c: 
2279         * semaphores.c: 
2280         * mutexes.c: 
2281         * mono-mutex.c: 
2282         * io.c: 
2283         * handles.c: 
2284         * handles-private.h: 
2285         * events.c: 
2286         * error.c: 
2287         * daemon-messages.c: 
2288         * critical-sections.c: 
2289         * atomic.c: Added pthreads cleanup handlers and error asserts
2290
2291         * shared.c: 
2292         * handles.c: Fixed the gcc "variable might be used uninitialised"
2293         warnings.  They can't happen, but gcc doesn't know that
2294         g_assert()s don't return.
2295
2296         Fixed the declaration of _wapi_handle_process_kill() so that it
2297         expects the correct type for the pid.
2298         
2299         * threads.c: Removed the TLS_PTHREAD_MUTEX style locking that
2300         hasn't been used in ages and just made the code more complex.
2301
2302 2004-04-17  Zoltan Varga  <vargaz@freemail.hu>
2303
2304         * processes.c: Include <signal.h> for SIGKILL and SIGILL + fix some
2305         warnings. Fixes #57168.
2306
2307 2004-04-16  Dick Porter  <dick@ximian.com>
2308
2309         * threads.c (Sleep): Using div(3) with a negative (when signed)
2310         numerator causes the quotient to be 0 and the remainder to be the
2311         numerator.  This feeds a small negative value to nanosleep(3),
2312         which will return immediately and cause a busy wait.  Fixes bug
2313         56351.
2314
2315 2004-04-15  Dick Porter  <dick@ximian.com>
2316
2317         * io-private.h:
2318         * io.c: Rewrite FindFirstFile and FindNextFile using scandir(3)
2319         and fnmatch(3) instead of glob(3).  glob() can't cope with being
2320         given filenames containing metachars.  This fixes bug 40557.
2321
2322 2004-04-14  Bernie Solomon  <bernard@ugsolutions.com>
2323
2324         * security.c: #warning is a GCC-ism
2325
2326 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
2327
2328         * security.c: Removed GetUserName as glib g_get_user_name does a
2329         better (portability) job. Added ImpersonateLoggedOnUser and
2330         RevertToSelf.
2331
2332 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2333
2334         * mono-mutex.h: move pthread_mutex_timedlock declaration to...
2335         * mono-mutex.c: ...here. It was causing a warning that prevented
2336         libgdiplus compilation.
2337
2338 2004-04-04  Miguel de Icaza  <miguel@ximian.com>
2339
2340         * security.c (GetUserName): Make it work on MacOS X
2341
2342 2004-04-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2343
2344         * security.c: use getpwuid_r if available. This one is thread-safe.
2345
2346 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2347
2348         * Makefile.am: Added security.c|h.
2349         * security.c: New file for security related functions. Added function
2350         GetUserName to fix #56144.
2351         * security.h: New. Header file for security.c
2352         * wapi.h: Added include for security.h
2353
2354 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2355
2356         * daemon-messages.h: added kill structs.
2357
2358         * daemon.c: implemented process_process_kill.
2359         * handles-private.h:  define process_process_kill.
2360         * handles.c: implemented _wapi_handle_process_kill.
2361         * processes.[ch]: implemented TerminateProcess.
2362
2363 2004-03-25  Bernie Solomon  <bernard@ugsolutions.com>
2364
2365         * daemon.c (rem_fd): On solaris you seem to get an
2366         error even after removing the input source so don't
2367         try and rem_fd it twice.
2368
2369 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
2370
2371         * daemon.c: in process_post_mortem, If the child terminated due to the 
2372         receipt of a signal, the exit status must be based on WTERMSIG, since 
2373         WEXITSTATUS returns 0 in this case.
2374
2375 2004-03-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2376
2377         * daemon.c: turned a warning into a DEBUG statement. Now we may hit it.
2378
2379 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2380
2381         * daemon.c: only call getdtablesize () once.
2382         * processes.c: wait 500 ms to check if execve failed and throw the same
2383         exception as MS on failure. Fixes bug #32809.
2384
2385 2004-03-17  Bernie Solomon  <bernard@ugsolutions.com>
2386
2387         * io.c (async_notifier): use "union sigval" rather
2388         than sigval_t as Solaris doesn't have sigval_t
2389         (which isn't in IEEE 1003.1 either).
2390
2391 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2392
2393         * io.c: added debug stuff and removed a few redundant lines in
2394         file_write.
2395
2396 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2397
2398         * io-private.h: added new fields for file structure. Declare
2399         _wapi_io_add_callback.
2400
2401         * io.c: added _wapi_get_win32_error, support aio_read/write in
2402         file_read/write. Implemented _wapi_io_add_callback, which is where
2403         BindHandle ends up.
2404         
2405         * io.h: added new fields for WapiOverlapped and typedef for the
2406         callback.
2407
2408         * processes.c: fixed off-by-one bug when handling environment variables 
2409         passed in.
2410
2411         * threads.[ch]: implemented BindIoCompletionCallback.
2412
2413         * uglify.h: added typedef for LPOVERLAPPED_COMPLETION_ROUTINE.
2414
2415 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
2416
2417         * socket-wrappers.h: Remove extra semicolon.
2418
2419 2004-03-03  Dave Camp  <dave@ximian.com>
2420
2421         * daemon.c: (add_fd), (fd_activity), (_wapi_daemon_main):
2422         Use a new main context.
2423
2424 2004-03-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2425
2426         * io.c:
2427         (GetFileAttributes): set the error depending on errno instead of
2428         setting ERROR_FILE_NOT_FOUND always. See bug #55160.
2429
2430 2004-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2431
2432         * io.c:
2433         (CopyFile): free the buffer on error.
2434         * sockets.c:
2435         (WSAIoctl): free the buffer on error.
2436
2437 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2438
2439         * error.c: fixed mapping for EPROTONOSUPPORT and ESOCKTNOSUPPORT.
2440
2441         * sockets.[ch]: retry creating the socket for AF_INET, SOCK_RAW
2442         using IP protocol with IP over IP. Implemented WSAIoctl UNIX-style.
2443
2444 2004-01-27  Bernie Solomon  <bernard@ugsolutions.com>
2445
2446         * shared.c (_wapi_shm_file): add hostname
2447         to shared data file names to handle NFS mounted
2448         .wapi directories.
2449
2450 Mon Jan 26 16:15:03 CET 2004 Paolo Molaro <lupus@ximian.com>
2451
2452         * sockets.h: remove obsolete soklen_t typedef.
2453
2454 Fri Jan 23 21:07:02 CET 2004 Paolo Molaro <lupus@ximian.com>
2455
2456         * socket-wrappers.h, sockets.h, sockets.c, Makefile.am: move socket
2457         wrappers to its own non-installed header file.
2458
2459 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2460
2461         * io.c:
2462         (FindFirstFile): unlock the handle if FindNextFile fails.
2463         (FindNextFile): g_free a couple of pointers before retrying.
2464
2465         * wait.c:
2466         (WaitForMultipleObjects): if only one handle provided, use
2467         WaitForSingleObject.
2468
2469 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
2470
2471         * handles-private.h: (_wapi_handle_type) check
2472         for segment in range before using it
2473
2474 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
2475
2476         * thread-private.h: _wapi_thread_ops is now const
2477         must match .c file.
2478
2479 Mon Dec 22 18:29:03 CET 2003 Paolo Molaro <lupus@ximian.com>
2480
2481         * threads.c, timed-thread.c, timed-thread.h: use mach
2482         semaphores on Darwin (MacOSX) since the posix ones
2483         are mostly broken there (threads are not created suspended
2484         and they can start executing before they are fully initialized
2485         like in tests/thread-static.cs).
2486
2487 Mon Dec 22 17:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
2488
2489         * atomic.h: ppc fixes.
2490
2491 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
2492
2493         * handles.c: remove my bad use of MONO_ZERO_ARRAY_LENGTH
2494         in HDRSIZE 
2495
2496 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
2497
2498         * shared.c: (_wapi_shm_open) make scratch file
2499         not have to immediately regrow to avoid remaps
2500         (HPUX can't cope with these).
2501         (_wapi_shm_attach) use actual size of file
2502         to set scratch data_len for the creating process.
2503
2504         * handles.c: (_wapi_handle_new_internal) make
2505         sure mutex & cond var are initialized even for
2506         non process shared ones. 
2507         (_wapi_handle_unref) always call destroy 
2508         routines on mutex & cond var
2509
2510 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
2511
2512         * daemon.c: change channel data structure so
2513         input sources are removed from glib event loop
2514         properly. xsp works better on Solaris and 
2515         fixes #51278
2516
2517 2003-12-12  Bernie Solomon  <bernard@ugsolutions.com>
2518
2519         * wapi-private.h: Replace G_GNUC_PRETTY_FUNCTION
2520         definition with file & line number for non-GCC
2521         compiles.
2522
2523 2003-12-08  Bernie Solomon  <bernard@ugsolutions.com>
2524
2525         * Makefile.am: make sure hppa_atomic.s is in distribution
2526
2527 2003-12-01  Dick Porter  <dick@ximian.com>
2528
2529         * wapi-private.h: 
2530         * mutexes.c (CreateMutex): 
2531         * mutex-private.h (struct _WapiHandle_mutex): 
2532         * handles.c: Look up certain handle types by name, in a shared
2533         namespace.  Currently only mutex handles have this implemented.
2534         Fixes bug 51089.
2535
2536         * semaphores.c (CreateSemaphore): 
2537         * events.c (CreateEvent): Fix signature
2538
2539 2003-11-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2540
2541         * io.c: don't call g_free before testing errno as it may modify it.
2542         If the path exists, return an error if it's not a directory. Fixes
2543         bug #50753.
2544
2545 2003-11-20  Dick Porter  <dick@ximian.com>
2546
2547         * io.c: Missed a little-endian UTF16 conversion.  Patch from
2548         Jeroen Zwartepoorte (Jeroen@xs4all.nl), fixes bug 51065.
2549
2550 2003-10-29  Dick Porter  <dick@ximian.com>
2551
2552         * io.c (MoveFile): If the move crosses filesystems, try and fall
2553         back to copy and delete.  Patch from Jörg Rosenkranz
2554         (JoergR@voelcker.com), fixes bug 50298.
2555
2556 2003-10-28  Dick Porter  <dick@ximian.com>
2557
2558         * io.c: Use the new encoding conversion to cope with non-utf8
2559         locales in filenames.
2560
2561         * processes.c: Ditto for process arguments.
2562
2563 Tue Oct 21 12:01:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
2564
2565         * atomic.h: some ppc inline asm fixes (incorrect use of labels, 
2566         incorrect register constraints, incorrect clobber lists).
2567
2568 2003-10-13  Bernie Solomon  <bernard@ugsolutions.com>
2569
2570         * Makefile.am hppa_atomic.s: add HP 64bit
2571         implementation of atomic ops
2572
2573 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
2574
2575         * threads.c (CreateThread): Wrap pthread_attr_setstacksize call in
2576         a conditional for platforms that don't have it.
2577
2578 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
2579
2580         * threads.c: (CreateThread) use stacksize argument
2581         if non-zero - change default for 64 bits to 4Mb
2582
2583 2003-09-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2584
2585         * sockets.c: set last error when socket creation fails. This shed some
2586         light on bug #49015.
2587
2588 2003-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2589
2590         * processes.c: fixed bug #48973: we only change \ by / for the argument
2591         to be used as command.
2592         When getting the program name from the args, don't let the space between
2593         them in the args.
2594
2595 2003-09-24  Bernie Solomon <bernard@ugsolutions.com>
2596
2597         * atomic.h atomic.c: fix sparc so lock is
2598         global, increment does so and it compiles under Sun compiler.
2599
2600 2003-09-22  Bernie Solomon <bernard@ugsolutions.com>
2601
2602         * handles.c: include <string.h> directly as may
2603         not be nested in <sys/un.h> like Linux
2604
2605 2003-09-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2606
2607         * io.c:
2608         (DeleteFile): call SetLastError on failure. Fix by
2609         richard.torkar@htu.se (Richard Torkar). Closes bug #48222.
2610
2611 2003-09-15  Lluis Sanchez Gual  <lluis@ximian.com>
2612
2613         * daemon.c: In compare_process(), discard handles already signalled.
2614
2615 2003-09-02  Dick Porter  <dick@ximian.com>
2616
2617         * io.c: Work around glib brain-dead assumptions about utf8-encoded
2618         filenames.  Fixes bug 30781.
2619
2620 2003-08-28  Dick Porter  <dick@ximian.com>
2621
2622         * critical-sections.c:  Patch from Bernie Solomon
2623         <bernard@ugsolutions.com> to emit a warning if locking a critical
2624         section fails.
2625
2626 2003-07-23  Dick Porter  <dick@ximian.com>
2627
2628         * shared.c:
2629         * daemon.c (maybe_exit): Avoid the race condition when the daemon is
2630         closing but another client comes along when the shared data is still
2631         visible.  Should fix bugs 33671 and 35213.
2632
2633 2003-07-23  Dick Porter  <dick@ximian.com>
2634
2635         * handles.c:  Initialise handle mutex and cond.  Fix by
2636         Bernie Solomon <bernard@ugsolutions.com>
2637
2638 2003-07-15  Dick Porter  <dick@ximian.com>
2639
2640         * timed-thread.c (timed_thread_start_routine): Fix virtual memory
2641         leak when threads quit.  Fixes bug 44067.
2642
2643 Wed Jun 18 19:08:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
2644
2645         * io.c: never add write permission for group or others in
2646         SetFileAttributes ().
2647
2648 2003-06-17  Dick Porter  <dick@ximian.com>
2649
2650         * io.c (SetFileAttributes): Implement the ReadOnly attribute, and
2651         ignore the unsupported ones ("fixes" bug 44977).
2652
2653 2003-06-17  Lluis Sanchez Gual  <lluis@ximian.com>
2654
2655         * misc.c: fix bug in _wapi_calc_timeout. It gave wrong values for
2656           high ms values (there was an overflow).
2657
2658 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
2659
2660         * system.h (struct _WapiSystemInfo ): Fix warnings when using gcc-3.3.
2661
2662 2003-06-11  Dick Porter  <dick@ximian.com>
2663
2664         * shared.c: Fix shared directory creation.  Patch from
2665         Pablo Baena <pbaena@uol.com.ar>
2666
2667 2003-06-10  Dick Porter  <dick@ximian.com>
2668
2669         * atomic.c: Delete the useless compile warning
2670
2671 2003-06-09  Dick Porter  <dick@ximian.com>
2672
2673         * daemon.c: Lookup env as a string array.  Fixes bug 44289.  Also
2674         make setting the process handle value in the environment actually
2675         work.
2676
2677         * processes.c: Pretty up the process name, if it happens to be
2678         "mono" such as when another mono process forks "mono foo.exe"
2679
2680 2003-06-05  Dick Porter  <dick@ximian.com>
2681
2682         * processes.c (process_set_current): Don't do an expensive handle
2683         search at application startup, check the environment to see if the
2684         process handle has already been created.
2685
2686         * io.c: Don't do an expensive handle search when creating stdin,
2687         stdout and stderr handles, just create them all the first time one
2688         is requested.
2689
2690         * wapi-private.h:
2691         * shared.c:
2692         * shared.h:
2693         * handles.c:
2694         * handles-private.h:
2695         * daemon-messages.h:
2696         * daemon-private.h:
2697         * daemon.c: Support for "unlimited" number of handles and scratch
2698         data.
2699
2700         Speed up application startup by passing process handle in the
2701         environment, rather than let the app scan all handles (which gets
2702         really slow when there are more than a few thousand to check.)
2703
2704         Initialise some structs passed to syscalls, noticed by valgrind.
2705         
2706
2707 2003-05-20  Dick Porter  <dick@ximian.com>
2708
2709         * io.c (FindFirstFile): Include . files in the glob.  Fixes bug
2710         43229.
2711
2712 2003-05-19  Dick Porter  <dick@ximian.com>
2713
2714         * threads.c: Set the new thread's stack size to 2M.  Fix needed
2715         for BSD, reported by Martin Dvorak <md@9ll.cz>
2716
2717 2003-05-16  Dick Porter  <dick@ximian.com>
2718
2719         * io.h:
2720         * io.c: Implement GetTempPath()
2721
2722 2003-05-16  Dick Porter  <dick@ximian.com>
2723
2724         * processes.c (CreateProcess): Set some error codes
2725
2726 2003-05-12  Dick Porter  <dick@ximian.com>
2727
2728         * misc.c (_wapi_calc_timeout): Cope with overflowing tv_nsec.
2729         Patch from Martin Dvorak <mdvorak@ninell.cz>.
2730
2731 2003-05-10  Dick Porter  <dick@ximian.com>
2732
2733         * io.c (CopyFile): Copy file mode as well as file data.  Based on
2734         suggestion by Giuseppe Greco <giuseppe.greco@agamura.com>, bug
2735         42706.
2736
2737 2003-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2738
2739         * handles.c: don't call GC_gcollect when creating new handles.
2740
2741 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2742
2743         * handles.c: added some debugging code. Call GC_gcollect
2744         before creating a new handle. It makes Lupus' test run smoother and
2745         faster (from 62 to 83 request per second). Notice that calling
2746         GC_finalizer_notifier if needed (GC_should_invoke_finalizer ()) does
2747         not improve nor degrade the performance, so i don't do it.
2748
2749 2003-05-02  Dick Porter  <dick@ximian.com>
2750
2751         * sockets.c: Rearrange closesocket() and socket_close_private(),
2752         and remember to unref the handle, so we don't leak socket handles.
2753         Fix from Pelle Johnsen <pelle.johnsen@mail.dk>
2754
2755 2003-04-11  Dick Porter  <dick@ximian.com>
2756
2757         * atomic.h: ARM atomic operations by Malte Hildingson
2758         <tds00mahi@tellus.thn.htu.se>
2759
2760 Tue Apr 8 11:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
2761
2762         * atomic.h: fix macosx build by "Urs C. Muff" <umuff@quark.com>.
2763
2764 2003-04-03  Martin Baulig  <martin@ximian.com>
2765
2766         The following change is conditional to `WITH_INCLUDED_LIBGC'
2767         which is not yet enabled by default.
2768
2769         * threads.c (SuspendThread, ResumeThread): Fully implemented this.
2770         (gc_init): New static function; install a signal handler for
2771         SIGPWR which is used to suspend threads.  [FIXME: it SIGPWR
2772         doesn't exist on all Unix systems, we need to find another
2773         signal].
2774         (mono_wapi_push_thread_stack): New public function.  Tells the
2775         garbage collector about the current stack pointer of a suspended
2776         thread.
2777
2778 2003-04-03  Martin Baulig  <martin@ximian.com>
2779
2780         * timed-thread.h (TimedThread): Added `suspended_sem',
2781         `suspend_count' and `stack_ptr'.
2782
2783 2003-03-28  Dick Porter  <dick@ximian.com>
2784
2785         * atomic.h: PPC support gratiously donated to the public domain
2786         by John Duncan <jddst19@mac.com>
2787
2788 2003-03-20  Dick Porter  <dick@ximian.com>
2789
2790         * sockets.c (_wapi_connect): If connect() fails with EACCES, try
2791         setting SO_BROADCAST and connecting again.  Fixes bug 39178.
2792
2793 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2794
2795         * processes.c: included Jerome Laban's patch and call SetLastError when
2796         the executable is not found.
2797
2798 2003-03-03  Dick Porter  <dick@ximian.com>
2799
2800         * io.c (CreateFile): Try opening directories readonly, so that
2801         timestamps can be adjusted.  Patch by Elan Feingold
2802         <efeingold@mn.rr.com>.
2803
2804 2003-02-25  Dick Porter  <dick@ximian.com>
2805
2806         * shared.c (_wapi_shm_attach): Return a failure code on system
2807         call errors, rather than exiting.
2808
2809 2003-02-21  Dick Porter  <dick@ximian.com>
2810
2811         * processes.c (GetCurrentProcessId): Use the current process
2812         handle to return the process ID, as getpid() is unreliable
2813         (linuxthreads gives each thread a different pid).  Fixes bug
2814         37550.
2815
2816 2003-02-21  Dick Porter  <dick@ximian.com>
2817
2818         * io.c (FindNextFile): Skip over dangling symlinks.  Fixes bug
2819         34076.
2820
2821 2003-02-11  Dick Porter  <dick@ximian.com>
2822
2823         * timefuncs.h: 
2824         * timefuncs.c: Added GetTickCount()
2825
2826 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2827
2828         * error.c: added WSA_EHOSTUNREACH mapping.
2829
2830 2003-01-26  Miguel de Icaza  <miguel@ximian.com>
2831
2832         * io.c (SetFileAttributes): This routine is not currently
2833         implemented for the general case, but I added a special case to
2834         set the executable bit on Linux.
2835
2836 Wed Jan 15 15:55:40 CET 2003 Paolo Molaro <lupus@ximian.com>
2837
2838         * sockets.h, daemon.c, io.c: compilation fixes on MacOSX.
2839
2840 2003-01-08  Dick Porter  <dick@ximian.com>
2841
2842         * sockets.c: Fixed setting blocking mode to true (fixes bug 36388)
2843
2844 2002-12-11  Juli Mallett  <jmallett@FreeBSD.org>
2845
2846         * daemon.c, handles-private.h, handles.c, wapi-private.h:
2847         Check for an implementation which says it supports
2848         _POSIX_THREAD_PROCESS_SHARED, rather than just one that
2849         defines the symbol.  Defined but with a value of -1 still
2850         means that it is unsupported.
2851
2852 2002-12-08  Martin Baulig  <martin@ximian.com>
2853
2854         * handles.c (_wapi_handle_new): Create new non-shared handles with
2855         an initial refcount of 1, not 0.
2856
2857 2002-11-22  Dietmar Maurer  <dietmar@ximian.com>
2858
2859         * threads.c (TlsGetValue): removed unnecessary mutex
2860
2861 2002-11-20  Dick Porter  <dick@ximian.com>
2862
2863         * timed-thread.c (_wapi_timed_thread_attach): Attached threads
2864         need to store their data structure too.
2865
2866         * threads.c: Make sure the threading data is initialised wherever
2867         it is needed
2868
2869 2002-11-15  Dick Porter  <dick@ximian.com>
2870
2871         * timed-thread.c: Removed unneeded parameters in
2872         _wapi_timed_thread_attach().
2873
2874         * threads.c: Renamed AttachThread() to make it not look like
2875         external API.  Removed unneeded parameters.
2876
2877 2002-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2878
2879         * error.[ch]: added errno_to_WSA (). It displays a warning and return
2880         WSASYSCALLFAILURE if there is no error mapping for the given errno,
2881
2882         * sockets.c: use errno_to_WSA and fixed display of warning for h_errno.
2883
2884 2002-10-31  Dick Porter  <dick@ximian.com>
2885
2886         * io.h: 
2887         * io.c: Define and use INVALID_FILE_ATTRIBUTES
2888
2889 2002-10-07  Dick Porter  <dick@ximian.com>
2890
2891         * timefuncs.c:
2892         * daemon.c: Use a more accurate time source for process start and
2893         end times.
2894
2895 2002-10-03  Dick Porter  <dick@ximian.com>
2896
2897         * daemon.c:
2898         * handles.c:
2899         * threads.c:  Fixes for freebsd.  Make sure that mutex and condition
2900         creation and deletion happen in the process that owns them, when
2901         POSIX shared thread objects aren't supported.  This breaks on
2902         freebsd, as pthread_t is a pointer to data.
2903
2904 2002-10-02  Dick Porter  <dick@ximian.com>
2905
2906         * shared.c: Use mmap() instead of sysv shm for the shared data.
2907
2908         * wapi-private.h (_WAPI_HANDLE_VERSION): Reset back to 0, for the
2909         new system
2910
2911         * daemon-private.h: 
2912         * daemon.c: mmap()ed regions survive fork, so just pass the
2913         pointer to _wapi_daemon_main instead of mapping it again.
2914
2915 2002-10-01  Dick Porter  <dick@ximian.com>
2916
2917         * timed-thread.c: Kludge for CREATE_SUSPENDED thread creation.
2918         Unfortunately libgc uses the same thread suspend technique that I
2919         want to, and the two don't mix: libgc will deadlock when it tries
2920         to stop the world if a thread has already been suspended by
2921         someone else.  Just do the simple suspended create rather than the
2922         general purpose thread suspension for now.
2923
2924         * threads.c: Pass create flags to the timed_thread create call, to
2925         implement suspended thread creation.  ResumeThread() partially
2926         implemented, to cope with the case where a newly created but
2927         suspended thread is launched.
2928
2929 2002-09-30  Dick Porter  <dick@ximian.com>
2930
2931         * sockets.c (ioctlsocket): Set non-blocking mode in a better way,
2932         with fcntl.
2933
2934 2002-09-27  Dick Porter  <dick@ximian.com>
2935
2936         * semaphores.c: Only include semaphore.h if it's present. Patch
2937         for BSD from jmmv@hispabsd.org (Julio Merino).
2938
2939 2002-09-27  Dick Porter  <dick@ximian.com>
2940
2941         * processes.c: Pass environment and working directory to the
2942         daemon when forking.  Don't let argv[0] be duplicated when looking
2943         for the program name.  Implement EnumProcessModules (simple
2944         version for now, lsof-style later if needed), GetModuleBaseName,
2945         {Get,Set}ProcessWorkingSetSize (just faked, because the vm hints
2946         aren't available on Linux).
2947
2948         * process-private.h: Store the process name, and the working set
2949         min and max
2950
2951         * handles.c:
2952         * handles-private.h: New functions to store and retrieve an array
2953         of strings in the scratch space
2954
2955         * daemon.c: Don't miss deleting some handles when a client exits
2956         (we used to rely on the client doing the final cleanup, but
2957         obviously if the client is no longer there the daemon has to do
2958         it).
2959
2960         Process forking now sets the environment and the working
2961         directory.
2962
2963         * io.c: Don't confuse fd 0 with an unassigned handle struct
2964
2965         * atomic.h: Add a google cache alternative to the msdn URL
2966
2967 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
2968
2969         * sockets.c:
2970         (_wapi_recvfrom): added ECONNRESET to the switch.
2971
2972 2002-09-24  Mark Crichton  <crichton@gimp.org>
2973
2974         * atomic.h: Yea.  On linux, sparc isn't sparc, it's __sparc__.
2975         Added to ifdef.
2976
2977 2002-09-19  Mark Crichton  <crichton@gimp.org>
2978
2979         * daemon.c, shared.c: Added NEED_LINK_UNLINK for systems that
2980         dont have Linux's abstract filesystem for sockets.
2981
2982 2002-09-19  Mark Crichton  <crichton@gimp.org>
2983
2984         * atomic.h: Added SPARC atomic asm code.
2985         * daemon.c, handles-private.h, handles.c, wapi-private.h:
2986         undefined _POSIX_THREAD_PROCESS_SHARED.  This actually exists on
2987         Solaris 9, however, the code paths don't seem to work.  More testing
2988         on the shared case is *really* needed.
2989
2990 2002-09-03  Dick Porter  <dick@ximian.com>
2991
2992         * threads.h: 
2993         * threads.c: Removed PosixKillThread(), because it's not in the
2994         w32 api
2995
2996 2002-08-20  Dick Porter  <dick@ximian.com>
2997
2998         * handles.c (_wapi_handle_scratch_store): Made stored byte lengths
2999         multiples of 4 bytes, to keep header structures aligned.  Needed
3000         for sparc, at least. (Patch from crichton@gimp.org)
3001
3002         * handles.c: Removed 'disable_shm' variable (we've defaulted to
3003         building with shm enabled for months now)
3004
3005 2002-08-19  Dick Porter  <dick@ximian.com>
3006
3007         * daemon.c: Rewrote the poll() loop to use GIOChannels instead,
3008         for legacy NeXT-based systems.
3009
3010 2002-08-12  Dick Porter  <dick@ximian.com>
3011
3012         * atomic.h: Rename some parameters to avoid c++ keywords (Patch
3013         from Joseph Wenninger <kde@jowenn.at>)
3014
3015 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
3016
3017         * threads.c: use fast spinlocks by default
3018
3019 2002-08-02  Dick Porter  <dick@ximian.com>
3020
3021         * io.c (GetStdHandle): Add a handle reference when returning a
3022         duplicate console handle.  This fixes the unref_handle errors in
3023         NUnit.
3024
3025 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
3026
3027         * threads.c (TLS_PTHREAD_MUTEX): define this because else some
3028         tests does not work
3029
3030 2002-08-01  Dick Porter  <dick@ximian.com>
3031
3032         * threads.c: Use atomic spinlocks in TLS functions
3033
3034         * mono-spinlock.h:
3035         * Makefile.am: Added mono-spinlock.h
3036
3037 2002-07-21  Jeffrey Stedfast  <fejj@ximian.com>
3038
3039         * daemon-messages.c: #include <sys/types.h> and <sys/sockets.h> -
3040         these are needed for sendmsg() and also for struct msghdr (at
3041         least on Solaris). Solaris still won't build because struct msghdr
3042         doesn't have msg_flags, msg_control, or msg_controllen members.
3043         (CMSG_SPACE): Define for systems that don't have it.
3044         (CMSG_LEN): Same.
3045
3046 2002-07-20  Dick Porter  <dick@ximian.com>
3047
3048         * wapi-private.h:
3049         * io-private.h:
3050         * io.h:
3051         * io.c:
3052         * handles.c: Implemented pipe handles
3053         
3054         * handles.c:
3055         * daemon.c: Fixed bug in handle closing.
3056
3057         * shared.c:
3058         * daemon.c: Forked processes now close all open file descriptors.
3059
3060 Fri Jul 19 19:05:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
3061
3062         * sockets.h, io-layer.h, critical-sections.h: don't include config.h
3063         in header files.
3064
3065 2002-07-19  Martin Baulig  <martin@gnome.org>
3066
3067         * threads.c (ExitThread): Call exit() if no threads has been
3068         created yet.
3069
3070 2002-07-17  Dick Porter  <dick@ximian.com>
3071
3072         * daemon-messages.c: Freebsd fixes from Andreas Kohn
3073         <andreas.kohn@gmx.net>
3074
3075 2002-07-15  Dick Porter  <dick@ximian.com>
3076
3077         * io.c: Removed bogus console_flush() method, that was just cut
3078         and pasted from file_flush when I separated the two handle types.
3079
3080 2002-07-12  Dick Porter  <dick@ximian.com>
3081
3082         * io.c (convert_from_flags): Fixed misunderstanding wrt fcntl
3083         flags.  Fixes bug 27633.
3084
3085 2002-07-12  Dick Porter  <dick@ximian.com>
3086
3087         * wapi-private.h:
3088         * handles.c:
3089         * daemon.c: Use size of sockaddr_un.sun_path from config.h
3090
3091 2002-07-12  Dick Porter  <dick@ximian.com>
3092
3093         * processes.c (CreateProcess): Send stdin, stdout and stderr
3094         handles if the startup info doesnt specify new ones
3095
3096         * io.c (GetStdHandle): Return the same handle when the same
3097         standard handle is requested
3098
3099         * handles.c: Pass file descriptors when forking
3100
3101         * daemon.c: Use supplied file descriptors when forking a new
3102         process
3103
3104         * daemon-messages.h: 
3105         * daemon-messages.c: Pass stdin, stdout and stderr file
3106         descriptors to the daemon (used when forking)
3107
3108 2002-07-11  Miguel de Icaza  <miguel@ximian.com>
3109
3110         * daemon.c (_wapi_daemon_main): Use sizeof
3111         (main_socket_address.sun_path) instead of hardcoded 108 value.
3112
3113         * handles.c (shared_init): Use sizeof
3114         (shared_socket_address.sun_path) instead of hardcoded 108 value.
3115
3116 2002-07-10  Dennis Haney  <davh@davh.dk>
3117
3118         * shared.c:
3119         * handles.c:
3120         * daemon.c: Lots of documentation, some added error checking, and
3121         code readability improvements.
3122
3123         * daemon-messages.h: Add the Error request type to improve error
3124         checking.
3125
3126         * daemon-messages.c: Do a bit more error checking on send() and
3127         recv(), and log errors with a higher severity level.
3128
3129 2002-07-04  Dick Porter  <dick@ximian.com>
3130
3131         * daemon.c (process_process_fork): Fix argument handling, due to
3132         buggy understanding of g_strsplit() behaviour.
3133
3134 2002-07-03  Dick Porter  <dick@ximian.com>
3135
3136         * threads.h:
3137         * threads.c: Implement OpenThread().  Define access-control values
3138         for thread handles.
3139
3140         * wapi.h:
3141         * processes.h:
3142         * access.h:
3143         * Makefile.am: Added access.h, to hold shared access-control
3144         definitions
3145
3146 2002-07-02  Dick Porter  <dick@ximian.com>
3147
3148         * wapi-private.h (_WAPI_HANDLE_VERSION): New protocol version
3149         
3150 2002-07-02  Dick Porter  <dick@ximian.com>
3151
3152         * handles.c (shared_init): Make a second attempt to contact the
3153         daemon if the shared memory attach succeeds, but the connect()
3154         fails. (This copes with the daemon crashing without cleaning up
3155         the shared memory.)
3156
3157         * Makefile.am: 
3158         * daemon-private.h:
3159         * daemon.c:
3160         * shared.c (_wapi_shm_attach): Don't exec() anything when we fork
3161         the daemon, it's now built into the library.
3162
3163 2002-06-25  Dick Porter  <dick@ximian.com>
3164
3165         * handles.c:
3166         * handles-private.h:
3167         * daemon-messages.h:
3168         * daemon.c: Process forking and handle data management
3169
3170         * processes.h:
3171         * process-private.h:
3172         * processes.c: Process forking and other support functions
3173
3174 2002-06-25  Dick Porter  <dick@ximian.com>
3175
3176         * versioninfo.h: PE resource decoding
3177
3178         * unicode.c (_wapi_unicode_to_utf8): g_utf16_to_utf8 doesnt need
3179         to be told the string length
3180
3181         * io.c: Removed the ACTUALLY_DO_UNICODE option.  Fixed some leaks.
3182         Moved _wapi_time_t_to_filetime and the WapiFileTime typedef to
3183         timefuncs.c
3184
3185 2002-06-12  Dick Porter  <dick@ximian.com>
3186
3187         * daemon.c: 
3188         * daemon-messages.c: Handle SIGPIPE in a non-stupid way in the
3189         daemon, if MSG_NOSIGNAL isn't available.  Thanks to Jaroslaw
3190         Kowalski <jarek@atm.com.pl> for pointing out the bogosity.
3191
3192 2002-06-10  Jaroslaw Kowalski <jarek@atm.com.pl>
3193
3194         * sockets.c, daemon-messages.c: Prevent SIGPIPE from being raised
3195         when writing to a closed socket.
3196
3197 2002-06-08  Jeffrey Stedfast  <fejj@ximian.com>
3198
3199         * mono-mutex.c (mono_once): New convenience function for my
3200         previous fix.
3201
3202         * handles.c:
3203         * error.c: 
3204         * critical-sections.c: 
3205         * threads.c: 
3206         * sockets.c: 
3207         * semaphores.c: 
3208         * processes.c: 
3209         * mutexes.c: 
3210         * io.c: 
3211         * events.c: 
3212         * atomic.c: Use mono_once() rather than pthread_once().
3213
3214 2002-06-06  Jeffrey Stedfast  <fejj@ximian.com>
3215
3216         * handles.c (_wapi_handle_new): pthread_once() is not atomic, so
3217         if multiple threads all try to call _wapi_handle_new() before the
3218         shared data has been initialized, it is possible that we could get
3219         into a condition where shared_init() is being executed and later
3220         threads will pass by pthread_once() due to the fact that it has
3221         already been called and so therefor will attempt to use the shared
3222         data before it has been completely initialized. If we instead use
3223         a standard mutex locking mechanism around shared_init(), we can
3224         avoid the situation entirely. By wrapping the mutex locking in a
3225         check to see if we've already initialized the data, we can even
3226         avoid wasting resources by having to lock/unlock the mutex in any
3227         later calls (the only time we'd have to worry about
3228         locking/unlocking is the initial race to call shared_init() at
3229         startup).
3230
3231 Sat Jun 1 13:27:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
3232
3233         * atomic.h: inline asm fixes from Dennis Haney (davh@davh.dk).
3234
3235 Fri May 31 16:21:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
3236
3237         * daemon.c, handles.c: rename "sun" local var since it's apparently
3238         a #define on Solaris.
3239
3240 Fri May 31 15:40:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
3241
3242         * daemon-messages.c: work-around MSG_NOSIGNAL missing on some
3243         platforms.
3244
3245 2002-05-15  Dick Porter  <dick@ximian.com>
3246
3247         * wait.c: Fix a deadlock in WaitForMultipleObjects
3248
3249 2002-05-14  Dick Porter  <dick@ximian.com>
3250
3251         * io.c: Fix a cut&paste error, found by
3252         Jaroslaw Kowalski <jarek@atm.com.pl>
3253
3254 2002-05-10  Dan Lewis  <dihlewis@yahoo.co.uk>
3255
3256         * io.c: Nasty typo.
3257
3258 2002-05-09  Dick Porter  <dick@ximian.com>
3259
3260         * threads.c: 
3261         * semaphores.c: 
3262         * processes.c: 
3263         * mutexes.c: 
3264         * handles-private.h: 
3265         * events.c: 
3266         * Makefile.am: Remove now-unused file wait-private.h
3267
3268 2002-05-08  Dick Porter  <dick@ximian.com>
3269
3270         * shared.c: Better error messages, and report when daemon
3271         connection fails rather than blocking forever.  Do some more
3272         shared memory sanity checking.
3273
3274         * handles.c: Better error messages when connecting to shared
3275         memory and the handle daemon.  Fall back to non-shared handles if
3276         an error occurs.  Set the default back to 'shared handles'.  Fix a
3277         crashing bug in scratch space allocation that mangled the block
3278         headers.
3279
3280 2002-05-07  Miguel de Icaza  <miguel@ximian.com>
3281
3282         * handles.c (shared_init): Disable SHM for now, people have too
3283         many problems with this, and the diagnostics are not helping.
3284
3285 2002-05-06  Dan Lewis  <dihlewis@yahoo.co.uk>
3286
3287         * io.c: CreateFile sets win32 last error.
3288
3289 2002-05-05  Dick Porter  <dick@ximian.com>
3290
3291         * wapi-private.h: 
3292         * handles-private.h:
3293         * io.c: 
3294         * io-private.h:
3295         * mutexes.c: 
3296         * mutex-private.h: 
3297         * processes.c: 
3298         * process-private.h: 
3299         * semaphores.c: 
3300         * semaphore-private.h: 
3301         * sockets.c: 
3302         * socket-private.h: 
3303         * events.c: 
3304         * event-private.h: Simplify the WapiHandleOps struct: take out all
3305         the file-specific entries, leaving just the items that operate on
3306         handles themselves.  Split the close operation into shared and
3307         private parts: shared close is called by the daemon.
3308
3309         * handles.c: As above, but also pass handle allocation, ref and
3310         unref operations to the daemon.  Populate the handle_ops array at
3311         compile time, because the daemon needs to call ops on handles too.
3312         Don't bother to track open handle counts any more, the daemon does
3313         that.
3314         
3315         * threads.c: 
3316         * thread-private.h: As above, but also make the thread data
3317         handle-private.
3318
3319         * shared.c: Fork a handle daemon if the calling process created
3320         the shared memory segment.
3321
3322         * daemon.c:
3323         * daemon-messages.c:
3324         * daemon-messages.h:
3325         * Makefile.am: Build a daemon to manage handle allocation and
3326         destruction without needing to lock the shared memory
3327
3328 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
3329
3330         * atomic.c: Changed to use a normal mutex rather than a spinlock
3331         since a lot of platforms seem to not have them :\
3332
3333 2002-04-30  Dick Porter  <dick@ximian.com>
3334
3335         * Completely rewrote the handle waiting code: removed the helper
3336         thread and its attendant complexity.  All handle waiting is now
3337         abstracted into the WaitForSingleObject() and
3338         WaitForMultipleObjects() functions.
3339
3340         * Implemented inter-process sharing of handles using sysv shared
3341         memory.  This makes handles even more opaque, with a handle now
3342         just an index into an array.
3343         
3344 2002-04-25  Dan Lewis  <dihlewis@yahoo.co.uk>
3345
3346         * io.c: unitialized pointer in GetCurrentDirectory.
3347
3348 Sat Apr 20 13:37:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
3349
3350         * threads.c: destroy the mutex at thread destruction
3351         (if/when thread destruction code will be actually called).
3352         When protecting a tls data pointer from the gc, use also the 
3353         thread id in the key.
3354         
3355 Wed Apr 17 18:36:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
3356
3357         * timed-thread.c: avoid race condition when setting the thread to
3358         detached.
3359
3360 2002-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
3361
3362         * jit.h: to more #include lines to avoid breaking compilation
3363         under windows when upgrading mingw and w32api to version
3364         1.3 (thanks Dick!).
3365
3366 2002-04-16  Dick Porter  <dick@ximian.com>
3367
3368         * atomic.h: Explanatory comment about lack of 80386 support
3369
3370 2002-04-15  Dick Porter  <dick@ximian.com>
3371
3372         * atomic.h: use xaddl for InterlockedIncrement() and
3373         InterlockedDecrement().  Use cmpxchgl in a loop for
3374         InterlockedExchange() and InterlockedExchangePointer().
3375
3376 Mon Apr 15 13:31:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
3377
3378         * unicode.c: fix unicode_len() to not access uninitialized memory
3379         (and updated to conform to mono code style).
3380
3381 Fri Mar 29 17:15:11 CET 2002 Paolo Molaro <lupus@ximian.com>
3382
3383         * io.c: EEXISTS is ignored for directory creation.
3384         * mono-mutex.h: remove silly "pragma }" that emacs users insert
3385         because they use a broken editor:-)
3386
3387 2002-03-28  Dick Porter  <dick@ximian.com>
3388
3389         * sockets.h: 
3390         * sockets.c: 
3391         * io.c: 
3392         * handles.h: 
3393         * handles.c: Warning cleanups
3394
3395 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
3396
3397         * unicode.h, unicode.c: changed to gunichar2
3398         * io.h, io.c: changed strings to gunichar2*, added
3399         SetFileAttributes(), GetCurrentDirectory(), SetCurrentDirectory(),
3400         some fixes to FindFirstFile() and friends.
3401
3402 2002-03-26  Dick Porter  <dick@ximian.com>
3403
3404         * types.h: Implement the large integer struct
3405
3406         * timefuncs.h:
3407         * timefuncs.c: Dummy functions that don't yet implement
3408         QueryPerformanceCounter() and QueryPerformanceFrequency()
3409
3410         * threads.h:
3411         * threads.c: Implement SleepEx()
3412
3413         * system.h:
3414         * system.c: Beginnings of GetSystemInfo()
3415
3416         * mono-mutex.c (pthread_mutex_timedlock): Fix a ms/ns conversion
3417         thinko
3418
3419         * context.h:
3420         * context.c: Dummy function that doesnt yet implement
3421         GetThreadContext()
3422
3423         * atomic.h: 
3424         * atomic.c: Interlocked functions
3425
3426 Mon Mar 25 13:01:40 CET 2002 Paolo Molaro <lupus@ximian.com>
3427
3428         * threads.c: use a gc-safe hash table to store tls pointers.
3429
3430 2002-03-22  Dick Porter  <dick@ximian.com>
3431
3432         * threads.c: Fix a race condition where a thread can start and
3433         exit before the handle has been properly initialised (no reason
3434         why the handle couldn't be initialised beforehand, so do so)
3435
3436         Fix a ms to ns conversion magnitude thinko.
3437
3438 2002-03-21  Dick Porter  <dick@ximian.com>
3439
3440         * semaphores.c: Fix a problem when waiting for one or more
3441         semaphores, and another semaphore is Released (all waiting
3442         semaphores assumed they were signalled)
3443
3444 2002-03-29  Dan Lewis <dihlewis@yahoo.co.uk>
3445
3446         * io.h, io.c, uglify.h: added MoveFile, CopyFile, CreateDirectory,
3447         RemoveDirectory, GetFileAttributes, GetFileAttributesEx
3448
3449 2002-03-19  Dietmar Maurer  <dietmar@ximian.com>
3450
3451         * threads.c (Sleep): bug fix: 1ms == 1000000ns
3452
3453 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
3454
3455         * io.h, io.c, events.c, mutexes.c, semaphores.c, sockets.c,
3456         threads.c, io.c: added flush method to handles.
3457
3458         * io.c: FlushFileBuffers() and FindFirstFile() functions.
3459
3460 Thu Mar 7 17:21:52 CET 2002 Paolo Molaro <lupus@ximian.com>
3461
3462         * threads.c, timed-thread.c, wait.c: Boehm-GC anable.
3463
3464 2002-02-20  Dick Porter  <dick@ximian.com>
3465
3466         * io-layer.h: Always build without cygwin support on windows
3467
3468 Mon Feb 18 15:50:59 CET 2002 Paolo Molaro <lupus@ximian.com>
3469
3470         * sockets.c: #undef DEBUG.
3471
3472 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3473
3474         * io-layer.h: conditionally include sys/filio.h and sys/sockio.h
3475         for FIONBIO, FIONREAD, and SIOCATMARK.
3476
3477 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
3478
3479         * sockets.c: conditionally include sys/filio.h and sys/sockio.h
3480         for FIONBIO, FIONREAD, and SIOCATMARK.
3481
3482 2002-02-13  Dick Porter  <dick@ximian.com>
3483
3484         * sockets.c: Implement shutdown and select
3485
3486 2002-02-13  Jeffrey Stedfast  <fejj@ximian.com>
3487
3488         * mono-mutex.[c,h]: New source files that thinly wrap all pthread
3489         functions that take pthread_mutex_t and/or pthread_mutexattr_t
3490         arguments for the sake of portability. Implements recursive
3491         mutexes and pthread_mutex_timedlock.
3492
3493         * critical-sections.c:
3494         * events.c:
3495         * handles.c:
3496         * mutexes.c:
3497         * semaphores.c:
3498         * threads.c:
3499         * timed-thread.c:
3500         * wait.c: Use the mono-mutex wrapper portability functions/macros.
3501
3502         * pthread-compat.[c,h]: Replaced by mono-mutex.[c,h]
3503
3504 2002-01-23  Dick Porter  <dick@ximian.com>
3505
3506         * sockets.c: Networking support, mostly wrapping BSD socket APIs
3507         with handle code, and translating errno into w32 error codes.
3508
3509         * macros.h: Some w32 macros used with the socket support
3510
3511         * error.c: Implemented GetLastError() and SetLastError()
3512
3513         * Makefile.am: Added sockets, with kludge to override some symbols
3514
3515 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
3516
3517         * unicode.c (_wapi_unicode_to_utf8): byteswap UTF16 strings before
3518         passing them to iconv
3519         (_wapi_unicode_to_utf8): only swap bytes on LE systems, remove bug
3520         from previous commit.
3521
3522 2001-12-11  Dick Porter  <dick@ximian.com>
3523
3524         * io.c: Implement DeleteFile(), GetFileTime(), SetFileTime() and
3525         FileTimeToSystemTime().
3526
3527         * unicode.c (unicode_len): Nasty way of finding length of unicode
3528         string with embedded NULLs (counts until two NULLs together).
3529
3530         * mutexes.c (mutex_close): 
3531         * events.c (event_close): Release the internal pthreads resources
3532
3533 2001-11-26  Dick Porter  <dick@ximian.com>
3534
3535         * critical-sections.c:
3536         * events.c:
3537         * handles.c:
3538         * io.c:
3539         * mutexes.c:
3540         * semaphores.c:
3541         * threads.c:
3542         * timed-thread.c:
3543         * wait.c: turn off DEBUG messages
3544
3545 2001-11-22  Dick Porter  <dick@ximian.com>
3546
3547         * handles.c (SignalObjectAndWait): Implement
3548
3549         * wait.c (WaitForSingleObject): Fix case where timeout == 0
3550
3551         * threads.c:
3552         * semaphores.c:
3553         * mutexes.c:
3554         * io.c:
3555         * events.c: Support for SignalObjectAndWait
3556         
3557 2001-11-21  Dick Porter  <dick@ximian.com>
3558
3559         * events.c:
3560         * handles.c:
3561         * mutexes.c:
3562         * semaphores.c:
3563         * threads.c:
3564         * wait.c: Reliable method of returning which handle was signalled
3565         on return from WaitForMultipleObjects().
3566
3567 2001-11-21  Dick Porter  <dick@ximian.com>
3568
3569         * events.c: Implement events
3570
3571 2001-11-15  Dick Porter  <dick@ximian.com>
3572
3573         * mutexes.c: Implement mutexes
3574
3575         * threads.c: 
3576         * semaphores.c: 
3577         * misc.c: Factor out some common code
3578
3579 2001-11-13  Dick Porter  <dick@ximian.com>
3580
3581         * threads.c: Implement TLS.  Implement GetCurrentThreadId(), and
3582         GetCurrentThread() by maintaining a hash of thread handles.
3583
3584         * threads.h: Define thread and process creation flags
3585
3586 2001-11-12  Dick Porter  <dick@ximian.com>
3587
3588         * critical-sections.c: Implement critical sections
3589
3590 2001-11-12  Dick Porter  <dick@ximian.com>
3591
3592         * semaphores.c: Implement semaphores
3593
3594         * wait.c (wait_for_item): Maintain a wait count rather than count
3595         signalled booleans.
3596
3597         * threads.c (thread_wait_multiple): Don't lock the wait item, that
3598         will block other wait threads
3599
3600 2001-11-11  Dick Porter  <dick@ximian.com>
3601
3602         * Makefile.am: Rename some automake variables
3603         (from Nick Drochak <ndrochak@gol.com>)
3604
3605 2001-11-10  Dick Porter  <dick@ximian.com>
3606
3607         * Makefile.am (libwapiincludedir): Fix include destination
3608
3609         * .cvsignore: Ignore generated files
3610
3611 2001-11-10  Dietmar Maurer  <dietmar@ximian.com>
3612
3613         * pthread-compat.c: added some include files to make it compile on
3614         linux.
3615
3616 2001-11-08  Dick Porter  <dick@ximian.com>
3617
3618         * Initial checkin.
3619
3620         This is a library emulating the win32 threading and IO API.