PR ada/71817
[official-gcc.git] / gcc / ada / adaint.c
blobe011fef46bd5f19de6a85633822990651d0a1f0e
1 /****************************************************************************
2 * *
3 * GNAT COMPILER COMPONENTS *
4 * *
5 * A D A I N T *
6 * *
7 * C Implementation File *
8 * *
9 * Copyright (C) 1992-2015, Free Software Foundation, Inc. *
10 * *
11 * GNAT is free software; you can redistribute it and/or modify it under *
12 * terms of the GNU General Public License as published by the Free Soft- *
13 * ware Foundation; either version 3, or (at your option) any later ver- *
14 * sion. GNAT is distributed in the hope that it will be useful, but WITH- *
15 * OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. *
17 * *
18 * As a special exception under Section 7 of GPL version 3, you are granted *
19 * additional permissions described in the GCC Runtime Library Exception, *
20 * version 3.1, as published by the Free Software Foundation. *
21 * *
22 * You should have received a copy of the GNU General Public License and *
23 * a copy of the GCC Runtime Library Exception along with this program; *
24 * see the files COPYING3 and COPYING.RUNTIME respectively. If not, see *
25 * <http://www.gnu.org/licenses/>. *
26 * *
27 * GNAT was originally developed by the GNAT team at New York University. *
28 * Extensive contributions were provided by Ada Core Technologies Inc. *
29 * *
30 ****************************************************************************/
32 /* This file contains those routines named by Import pragmas in
33 packages in the GNAT hierarchy (especially GNAT.OS_Lib) and in
34 package Osint. Many of the subprograms in OS_Lib import standard
35 library calls directly. This file contains all other routines. */
37 /* Ensure access to errno is thread safe. */
38 #define _REENTRANT
39 #define _THREAD_SAFE
41 /* Use 64 bit Large File API */
42 #ifndef _LARGEFILE_SOURCE
43 #define _LARGEFILE_SOURCE
44 #endif
45 #define _FILE_OFFSET_BITS 64
47 #ifdef __vxworks
49 /* No need to redefine exit here. */
50 #undef exit
52 /* We want to use the POSIX variants of include files. */
53 #define POSIX
54 #include "vxWorks.h"
56 #if defined (__mips_vxworks)
57 #include "cacheLib.h"
58 #endif /* __mips_vxworks */
60 /* If SMP, access vxCpuConfiguredGet */
61 #ifdef _WRS_CONFIG_SMP
62 #include <vxCpuLib.h>
63 #endif /* _WRS_CONFIG_SMP */
65 /* We need to know the VxWorks version because some file operations
66 (such as chmod) are only available on VxWorks 6. */
67 #include "version.h"
69 #endif /* VxWorks */
71 #if defined (__APPLE__)
72 #include <unistd.h>
73 #endif
75 #if defined (__hpux__)
76 #include <sys/param.h>
77 #include <sys/pstat.h>
78 #endif
80 #ifdef __PikeOS__
81 #define __BSD_VISIBLE 1
82 #endif
84 #ifdef IN_RTS
85 #include "tconfig.h"
86 #include "tsystem.h"
87 #include <sys/stat.h>
88 #include <fcntl.h>
89 #include <time.h>
91 #if defined (__vxworks) || defined (__ANDROID__)
92 /* S_IREAD and S_IWRITE are not defined in VxWorks or Android */
93 #ifndef S_IREAD
94 #define S_IREAD (S_IRUSR | S_IRGRP | S_IROTH)
95 #endif
97 #ifndef S_IWRITE
98 #define S_IWRITE (S_IWUSR)
99 #endif
100 #endif
102 /* We don't have libiberty, so use malloc. */
103 #define xmalloc(S) malloc (S)
104 #define xrealloc(V,S) realloc (V,S)
105 #else
106 #include "config.h"
107 #include "system.h"
108 #include "version.h"
109 #endif
111 #ifdef __cplusplus
112 extern "C" {
113 #endif
115 #if defined (__MINGW32__) || defined (__CYGWIN__)
117 #include "mingw32.h"
119 /* Current code page and CCS encoding to use, set in initialize.c. */
120 UINT CurrentCodePage;
121 UINT CurrentCCSEncoding;
123 #include <sys/utime.h>
125 /* For isalpha-like tests in the compiler, we're expected to resort to
126 safe-ctype.h/ISALPHA. This isn't available for the runtime library
127 build, so we fallback on ctype.h/isalpha there. */
129 #ifdef IN_RTS
130 #include <ctype.h>
131 #define ISALPHA isalpha
132 #endif
134 #elif defined (__Lynx__)
136 /* Lynx utime.h only defines the entities of interest to us if
137 defined (VMOS_DEV), so ... */
138 #define VMOS_DEV
139 #include <utime.h>
140 #undef VMOS_DEV
142 #else
143 #include <utime.h>
144 #endif
146 /* wait.h processing */
147 #ifdef __MINGW32__
148 # if OLD_MINGW
149 # include <sys/wait.h>
150 # endif
151 #elif defined (__vxworks) && defined (__RTP__)
152 # include <wait.h>
153 #elif defined (__Lynx__)
154 /* ??? We really need wait.h and it includes resource.h on Lynx. GCC
155 has a resource.h header as well, included instead of the lynx
156 version in our setup, causing lots of errors. We don't really need
157 the lynx contents of this file, so just workaround the issue by
158 preventing the inclusion of the GCC header from doing anything. */
159 # define GCC_RESOURCE_H
160 # include <sys/wait.h>
161 #elif defined (__PikeOS__)
162 /* No wait() or waitpid() calls available. */
163 #else
164 /* Default case. */
165 #include <sys/wait.h>
166 #endif
168 #if defined (_WIN32)
170 #include <process.h>
171 #include <signal.h>
172 #include <dir.h>
173 #include <windows.h>
174 #include <accctrl.h>
175 #include <aclapi.h>
176 #include <tlhelp32.h>
177 #undef DIR_SEPARATOR
178 #define DIR_SEPARATOR '\\'
180 #else
181 #include <utime.h>
182 #endif
184 #include "adaint.h"
186 /* Define symbols O_BINARY and O_TEXT as harmless zeroes if they are not
187 defined in the current system. On DOS-like systems these flags control
188 whether the file is opened/created in text-translation mode (CR/LF in
189 external file mapped to LF in internal file), but in Unix-like systems,
190 no text translation is required, so these flags have no effect. */
192 #ifndef O_BINARY
193 #define O_BINARY 0
194 #endif
196 #ifndef O_TEXT
197 #define O_TEXT 0
198 #endif
200 #ifndef HOST_EXECUTABLE_SUFFIX
201 #define HOST_EXECUTABLE_SUFFIX ""
202 #endif
204 #ifndef HOST_OBJECT_SUFFIX
205 #define HOST_OBJECT_SUFFIX ".o"
206 #endif
208 #ifndef PATH_SEPARATOR
209 #define PATH_SEPARATOR ':'
210 #endif
212 #ifndef DIR_SEPARATOR
213 #define DIR_SEPARATOR '/'
214 #endif
216 /* Check for cross-compilation. */
217 #if defined (CROSS_COMPILE) || defined (CROSS_DIRECTORY_STRUCTURE)
218 #define IS_CROSS 1
219 int __gnat_is_cross_compiler = 1;
220 #else
221 #undef IS_CROSS
222 int __gnat_is_cross_compiler = 0;
223 #endif
225 char __gnat_dir_separator = DIR_SEPARATOR;
227 char __gnat_path_separator = PATH_SEPARATOR;
229 /* The GNAT_LIBRARY_TEMPLATE contains a list of expressions that define
230 the base filenames that libraries specified with -lsomelib options
231 may have. This is used by GNATMAKE to check whether an executable
232 is up-to-date or not. The syntax is
234 library_template ::= { pattern ; } pattern NUL
235 pattern ::= [ prefix ] * [ postfix ]
237 These should only specify names of static libraries as it makes
238 no sense to determine at link time if dynamic-link libraries are
239 up to date or not. Any libraries that are not found are supposed
240 to be up-to-date:
242 * if they are needed but not present, the link
243 will fail,
245 * otherwise they are libraries in the system paths and so
246 they are considered part of the system and not checked
247 for that reason.
249 ??? This should be part of a GNAT host-specific compiler
250 file instead of being included in all user applications
251 as well. This is only a temporary work-around for 3.11b. */
253 #ifndef GNAT_LIBRARY_TEMPLATE
254 #define GNAT_LIBRARY_TEMPLATE "lib*.a"
255 #endif
257 const char *__gnat_library_template = GNAT_LIBRARY_TEMPLATE;
259 #if defined (__vxworks)
260 #define GNAT_MAX_PATH_LEN PATH_MAX
262 #else
264 #if defined (__MINGW32__)
265 #include "mingw32.h"
267 #if OLD_MINGW
268 #include <sys/param.h>
269 #endif
271 #else
272 #include <sys/param.h>
273 #endif
275 #ifdef MAXPATHLEN
276 #define GNAT_MAX_PATH_LEN MAXPATHLEN
277 #else
278 #define GNAT_MAX_PATH_LEN 256
279 #endif
281 #endif
283 /* Used for runtime check that Ada constant File_Attributes_Size is no
284 less than the actual size of struct file_attributes (see Osint
285 initialization). */
286 int __gnat_size_of_file_attributes = sizeof (struct file_attributes);
288 void __gnat_stat_to_attr (int fd, char* name, struct file_attributes* attr);
290 /* The __gnat_max_path_len variable is used to export the maximum
291 length of a path name to Ada code. max_path_len is also provided
292 for compatibility with older GNAT versions, please do not use
293 it. */
295 int __gnat_max_path_len = GNAT_MAX_PATH_LEN;
296 int max_path_len = GNAT_MAX_PATH_LEN;
298 /* Control whether we can use ACL on Windows. */
300 int __gnat_use_acl = 1;
302 /* The following macro HAVE_READDIR_R should be defined if the
303 system provides the routine readdir_r.
304 ... but we never define it anywhere??? */
305 #undef HAVE_READDIR_R
307 #define MAYBE_TO_PTR32(argv) argv
309 static const char ATTR_UNSET = 127;
311 /* Reset the file attributes as if no system call had been performed */
313 void
314 __gnat_reset_attributes (struct file_attributes* attr)
316 attr->exists = ATTR_UNSET;
317 attr->error = EINVAL;
319 attr->writable = ATTR_UNSET;
320 attr->readable = ATTR_UNSET;
321 attr->executable = ATTR_UNSET;
323 attr->regular = ATTR_UNSET;
324 attr->symbolic_link = ATTR_UNSET;
325 attr->directory = ATTR_UNSET;
327 attr->timestamp = (OS_Time)-2;
328 attr->file_length = -1;
332 __gnat_error_attributes (struct file_attributes *attr) {
333 return attr->error;
336 OS_Time
337 __gnat_current_time (void)
339 time_t res = time (NULL);
340 return (OS_Time) res;
343 /* Return the current local time as a string in the ISO 8601 format of
344 "YYYY-MM-DD HH:MM:SS.SS". The returned string is 22 + 1 (NULL) characters
345 long. */
347 void
348 __gnat_current_time_string (char *result)
350 const char *format = "%Y-%m-%d %H:%M:%S";
351 /* Format string necessary to describe the ISO 8601 format */
353 const time_t t_val = time (NULL);
355 strftime (result, 22, format, localtime (&t_val));
356 /* Convert the local time into a string following the ISO format, copying
357 at most 22 characters into the result string. */
359 result [19] = '.';
360 result [20] = '0';
361 result [21] = '0';
362 /* The sub-seconds are manually set to zero since type time_t lacks the
363 precision necessary for nanoseconds. */
366 void
367 __gnat_to_gm_time (OS_Time *p_time, int *p_year, int *p_month, int *p_day,
368 int *p_hours, int *p_mins, int *p_secs)
370 struct tm *res;
371 time_t time = (time_t) *p_time;
373 #ifdef _WIN32
374 /* On Windows systems, the time is sometimes rounded up to the nearest
375 even second, so if the number of seconds is odd, increment it. */
376 if (time & 1)
377 time++;
378 #endif
380 res = gmtime (&time);
381 if (res)
383 *p_year = res->tm_year;
384 *p_month = res->tm_mon;
385 *p_day = res->tm_mday;
386 *p_hours = res->tm_hour;
387 *p_mins = res->tm_min;
388 *p_secs = res->tm_sec;
390 else
391 *p_year = *p_month = *p_day = *p_hours = *p_mins = *p_secs = 0;
394 void
395 __gnat_to_os_time (OS_Time *p_time, int year, int month, int day,
396 int hours, int mins, int secs)
398 struct tm v;
400 v.tm_year = year;
401 v.tm_mon = month;
402 v.tm_mday = day;
403 v.tm_hour = hours;
404 v.tm_min = mins;
405 v.tm_sec = secs;
406 v.tm_isdst = -1;
408 /* returns -1 of failing, this is s-os_lib Invalid_Time */
410 *p_time = (OS_Time) mktime (&v);
413 /* Place the contents of the symbolic link named PATH in the buffer BUF,
414 which has size BUFSIZ. If PATH is a symbolic link, then return the number
415 of characters of its content in BUF. Otherwise, return -1.
416 For systems not supporting symbolic links, always return -1. */
419 __gnat_readlink (char *path ATTRIBUTE_UNUSED,
420 char *buf ATTRIBUTE_UNUSED,
421 size_t bufsiz ATTRIBUTE_UNUSED)
423 #if defined (_WIN32) \
424 || defined(__vxworks) || defined (__PikeOS__)
425 return -1;
426 #else
427 return readlink (path, buf, bufsiz);
428 #endif
431 /* Creates a symbolic link named NEWPATH which contains the string OLDPATH.
432 If NEWPATH exists it will NOT be overwritten.
433 For systems not supporting symbolic links, always return -1. */
436 __gnat_symlink (char *oldpath ATTRIBUTE_UNUSED,
437 char *newpath ATTRIBUTE_UNUSED)
439 #if defined (_WIN32) \
440 || defined(__vxworks) || defined (__PikeOS__)
441 return -1;
442 #else
443 return symlink (oldpath, newpath);
444 #endif
447 /* Try to lock a file, return 1 if success. */
449 #if defined (__vxworks) \
450 || defined (_WIN32) || defined (__PikeOS__)
452 /* Version that does not use link. */
455 __gnat_try_lock (char *dir, char *file)
457 int fd;
458 #ifdef __MINGW32__
459 TCHAR wfull_path[GNAT_MAX_PATH_LEN];
460 TCHAR wfile[GNAT_MAX_PATH_LEN];
461 TCHAR wdir[GNAT_MAX_PATH_LEN];
463 S2WSC (wdir, dir, GNAT_MAX_PATH_LEN);
464 S2WSC (wfile, file, GNAT_MAX_PATH_LEN);
466 /* ??? the code below crash on MingW64 for obscure reasons, a ticket
467 has been opened here:
469 https://sourceforge.net/p/mingw-w64/bugs/414/
471 As a workaround an equivalent set of code has been put in place below.
473 _stprintf (wfull_path, _T("%s%c%s"), wdir, _T(DIR_SEPARATOR), wfile);
476 _tcscpy (wfull_path, wdir);
477 _tcscat (wfull_path, L"\\");
478 _tcscat (wfull_path, wfile);
480 fd = _topen (wfull_path, O_CREAT | O_EXCL, 0600);
481 #else
482 char full_path[256];
484 sprintf (full_path, "%s%c%s", dir, DIR_SEPARATOR, file);
485 fd = open (full_path, O_CREAT | O_EXCL, 0600);
486 #endif
488 if (fd < 0)
489 return 0;
491 close (fd);
492 return 1;
495 #else
497 /* Version using link(), more secure over NFS. */
498 /* See TN 6913-016 for discussion ??? */
501 __gnat_try_lock (char *dir, char *file)
503 char full_path[256];
504 char temp_file[256];
505 GNAT_STRUCT_STAT stat_result;
506 int fd;
508 sprintf (full_path, "%s%c%s", dir, DIR_SEPARATOR, file);
509 sprintf (temp_file, "%s%cTMP-%ld-%ld",
510 dir, DIR_SEPARATOR, (long)getpid(), (long)getppid ());
512 /* Create the temporary file and write the process number. */
513 fd = open (temp_file, O_CREAT | O_WRONLY, 0600);
514 if (fd < 0)
515 return 0;
517 close (fd);
519 /* Link it with the new file. */
520 link (temp_file, full_path);
522 /* Count the references on the old one. If we have a count of two, then
523 the link did succeed. Remove the temporary file before returning. */
524 __gnat_stat (temp_file, &stat_result);
525 unlink (temp_file);
526 return stat_result.st_nlink == 2;
528 #endif
530 /* Return the maximum file name length. */
533 __gnat_get_maximum_file_name_length (void)
535 return -1;
538 /* Return nonzero if file names are case sensitive. */
540 static int file_names_case_sensitive_cache = -1;
543 __gnat_get_file_names_case_sensitive (void)
545 if (file_names_case_sensitive_cache == -1)
547 const char *sensitive = getenv ("GNAT_FILE_NAME_CASE_SENSITIVE");
549 if (sensitive != NULL
550 && (sensitive[0] == '0' || sensitive[0] == '1')
551 && sensitive[1] == '\0')
552 file_names_case_sensitive_cache = sensitive[0] - '0';
553 else
555 /* By default, we suppose filesystems aren't case sensitive on
556 Windows and Darwin (but they are on arm-darwin). */
557 #if defined (WINNT) \
558 || (defined (__APPLE__) && !(defined (__arm__) || defined (__arm64__)))
559 file_names_case_sensitive_cache = 0;
560 #else
561 file_names_case_sensitive_cache = 1;
562 #endif
565 return file_names_case_sensitive_cache;
568 /* Return nonzero if environment variables are case sensitive. */
571 __gnat_get_env_vars_case_sensitive (void)
573 #if defined (WINNT)
574 return 0;
575 #else
576 return 1;
577 #endif
580 char
581 __gnat_get_default_identifier_character_set (void)
583 return '1';
586 /* Return the current working directory. */
588 void
589 __gnat_get_current_dir (char *dir, int *length)
591 #if defined (__MINGW32__)
592 TCHAR wdir[GNAT_MAX_PATH_LEN];
594 _tgetcwd (wdir, *length);
596 WS2SC (dir, wdir, GNAT_MAX_PATH_LEN);
598 #else
599 getcwd (dir, *length);
600 #endif
602 *length = strlen (dir);
604 if (dir [*length - 1] != DIR_SEPARATOR)
606 dir [*length] = DIR_SEPARATOR;
607 ++(*length);
609 dir[*length] = '\0';
612 /* Return the suffix for object files. */
614 void
615 __gnat_get_object_suffix_ptr (int *len, const char **value)
617 *value = HOST_OBJECT_SUFFIX;
619 if (*value == 0)
620 *len = 0;
621 else
622 *len = strlen (*value);
624 return;
627 /* Return the suffix for executable files. */
629 void
630 __gnat_get_executable_suffix_ptr (int *len, const char **value)
632 *value = HOST_EXECUTABLE_SUFFIX;
633 if (!*value)
634 *len = 0;
635 else
636 *len = strlen (*value);
638 return;
641 /* Return the suffix for debuggable files. Usually this is the same as the
642 executable extension. */
644 void
645 __gnat_get_debuggable_suffix_ptr (int *len, const char **value)
647 *value = HOST_EXECUTABLE_SUFFIX;
649 if (*value == 0)
650 *len = 0;
651 else
652 *len = strlen (*value);
654 return;
657 /* Returns the OS filename and corresponding encoding. */
659 void
660 __gnat_os_filename (char *filename ATTRIBUTE_UNUSED,
661 char *w_filename ATTRIBUTE_UNUSED,
662 char *os_name, int *o_length,
663 char *encoding ATTRIBUTE_UNUSED, int *e_length)
665 #if defined (_WIN32) && ! defined (__vxworks) && ! defined (IS_CROSS)
666 WS2SC (os_name, (TCHAR *)w_filename, (DWORD)*o_length);
667 *o_length = strlen (os_name);
668 strcpy (encoding, "encoding=utf8");
669 *e_length = strlen (encoding);
670 #else
671 strcpy (os_name, filename);
672 *o_length = strlen (filename);
673 *e_length = 0;
674 #endif
677 /* Delete a file. */
680 __gnat_unlink (char *path)
682 #if defined (__MINGW32__) && ! defined (__vxworks) && ! defined (IS_CROSS)
684 TCHAR wpath[GNAT_MAX_PATH_LEN];
686 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
687 return _tunlink (wpath);
689 #else
690 return unlink (path);
691 #endif
694 /* Rename a file. */
697 __gnat_rename (char *from, char *to)
699 #if defined (__MINGW32__) && ! defined (__vxworks) && ! defined (IS_CROSS)
701 TCHAR wfrom[GNAT_MAX_PATH_LEN], wto[GNAT_MAX_PATH_LEN];
703 S2WSC (wfrom, from, GNAT_MAX_PATH_LEN);
704 S2WSC (wto, to, GNAT_MAX_PATH_LEN);
705 return _trename (wfrom, wto);
707 #else
708 return rename (from, to);
709 #endif
712 /* Changing directory. */
715 __gnat_chdir (char *path)
717 #if defined (__MINGW32__) && ! defined (__vxworks) && ! defined (IS_CROSS)
719 TCHAR wpath[GNAT_MAX_PATH_LEN];
721 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
722 return _tchdir (wpath);
724 #else
725 return chdir (path);
726 #endif
729 /* Removing a directory. */
732 __gnat_rmdir (char *path)
734 #if defined (__MINGW32__) && ! defined (__vxworks) && ! defined (IS_CROSS)
736 TCHAR wpath[GNAT_MAX_PATH_LEN];
738 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
739 return _trmdir (wpath);
741 #elif defined (VTHREADS)
742 /* rmdir not available */
743 return -1;
744 #else
745 return rmdir (path);
746 #endif
749 #if defined (_WIN32) || defined (__linux__) || defined (__sun__) \
750 || defined (__FreeBSD__) || defined(__DragonFly__)
751 #define HAS_TARGET_WCHAR_T
752 #endif
754 #ifdef HAS_TARGET_WCHAR_T
755 #include <wchar.h>
756 #endif
759 __gnat_fputwc(int c, FILE *stream)
761 #ifdef HAS_TARGET_WCHAR_T
762 return fputwc ((wchar_t)c, stream);
763 #else
764 return fputc (c, stream);
765 #endif
768 FILE *
769 __gnat_fopen (char *path, char *mode, int encoding ATTRIBUTE_UNUSED)
771 #if defined (_WIN32) && ! defined (__vxworks) && ! defined (IS_CROSS)
772 TCHAR wpath[GNAT_MAX_PATH_LEN];
773 TCHAR wmode[10];
775 S2WS (wmode, mode, 10);
777 if (encoding == Encoding_Unspecified)
778 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
779 else if (encoding == Encoding_UTF8)
780 S2WSU (wpath, path, GNAT_MAX_PATH_LEN);
781 else
782 S2WS (wpath, path, GNAT_MAX_PATH_LEN);
784 return _tfopen (wpath, wmode);
786 #else
787 return GNAT_FOPEN (path, mode);
788 #endif
791 FILE *
792 __gnat_freopen (char *path,
793 char *mode,
794 FILE *stream,
795 int encoding ATTRIBUTE_UNUSED)
797 #if defined (_WIN32) && ! defined (__vxworks) && ! defined (IS_CROSS)
798 TCHAR wpath[GNAT_MAX_PATH_LEN];
799 TCHAR wmode[10];
801 S2WS (wmode, mode, 10);
803 if (encoding == Encoding_Unspecified)
804 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
805 else if (encoding == Encoding_UTF8)
806 S2WSU (wpath, path, GNAT_MAX_PATH_LEN);
807 else
808 S2WS (wpath, path, GNAT_MAX_PATH_LEN);
810 return _tfreopen (wpath, wmode, stream);
811 #else
812 return freopen (path, mode, stream);
813 #endif
817 __gnat_open_read (char *path, int fmode)
819 int fd;
820 int o_fmode = O_BINARY;
822 if (fmode)
823 o_fmode = O_TEXT;
825 #if defined (__vxworks)
826 fd = open (path, O_RDONLY | o_fmode, 0444);
827 #elif defined (__MINGW32__)
829 TCHAR wpath[GNAT_MAX_PATH_LEN];
831 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
832 fd = _topen (wpath, O_RDONLY | o_fmode, 0444);
834 #else
835 fd = GNAT_OPEN (path, O_RDONLY | o_fmode);
836 #endif
838 return fd < 0 ? -1 : fd;
841 #if defined (__MINGW32__)
842 #define PERM (S_IREAD | S_IWRITE)
843 #else
844 #define PERM (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
845 #endif
848 __gnat_open_rw (char *path, int fmode)
850 int fd;
851 int o_fmode = O_BINARY;
853 if (fmode)
854 o_fmode = O_TEXT;
856 #if defined (__MINGW32__)
858 TCHAR wpath[GNAT_MAX_PATH_LEN];
860 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
861 fd = _topen (wpath, O_RDWR | o_fmode, PERM);
863 #else
864 fd = GNAT_OPEN (path, O_RDWR | o_fmode, PERM);
865 #endif
867 return fd < 0 ? -1 : fd;
871 __gnat_open_create (char *path, int fmode)
873 int fd;
874 int o_fmode = O_BINARY;
876 if (fmode)
877 o_fmode = O_TEXT;
879 #if defined (__MINGW32__)
881 TCHAR wpath[GNAT_MAX_PATH_LEN];
883 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
884 fd = _topen (wpath, O_WRONLY | O_CREAT | O_TRUNC | o_fmode, PERM);
886 #else
887 fd = GNAT_OPEN (path, O_WRONLY | O_CREAT | O_TRUNC | o_fmode, PERM);
888 #endif
890 return fd < 0 ? -1 : fd;
894 __gnat_create_output_file (char *path)
896 int fd;
897 #if defined (__MINGW32__)
899 TCHAR wpath[GNAT_MAX_PATH_LEN];
901 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
902 fd = _topen (wpath, O_WRONLY | O_CREAT | O_TRUNC | O_TEXT, PERM);
904 #else
905 fd = GNAT_OPEN (path, O_WRONLY | O_CREAT | O_TRUNC | O_TEXT, PERM);
906 #endif
908 return fd < 0 ? -1 : fd;
912 __gnat_create_output_file_new (char *path)
914 int fd;
915 #if defined (__MINGW32__)
917 TCHAR wpath[GNAT_MAX_PATH_LEN];
919 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
920 fd = _topen (wpath, O_WRONLY | O_CREAT | O_TRUNC | O_TEXT | O_EXCL, PERM);
922 #else
923 fd = GNAT_OPEN (path, O_WRONLY | O_CREAT | O_TRUNC | O_TEXT | O_EXCL, PERM);
924 #endif
926 return fd < 0 ? -1 : fd;
930 __gnat_open_append (char *path, int fmode)
932 int fd;
933 int o_fmode = O_BINARY;
935 if (fmode)
936 o_fmode = O_TEXT;
938 #if defined (__MINGW32__)
940 TCHAR wpath[GNAT_MAX_PATH_LEN];
942 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
943 fd = _topen (wpath, O_WRONLY | O_CREAT | O_APPEND | o_fmode, PERM);
945 #else
946 fd = GNAT_OPEN (path, O_WRONLY | O_CREAT | O_APPEND | o_fmode, PERM);
947 #endif
949 return fd < 0 ? -1 : fd;
952 /* Open a new file. Return error (-1) if the file already exists. */
955 __gnat_open_new (char *path, int fmode)
957 int fd;
958 int o_fmode = O_BINARY;
960 if (fmode)
961 o_fmode = O_TEXT;
963 #if defined (__MINGW32__)
965 TCHAR wpath[GNAT_MAX_PATH_LEN];
967 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
968 fd = _topen (wpath, O_WRONLY | O_CREAT | O_EXCL | o_fmode, PERM);
970 #else
971 fd = GNAT_OPEN (path, O_WRONLY | O_CREAT | O_EXCL | o_fmode, PERM);
972 #endif
974 return fd < 0 ? -1 : fd;
977 /* Open a new temp file. Return error (-1) if the file already exists. */
980 __gnat_open_new_temp (char *path, int fmode)
982 int fd;
983 int o_fmode = O_BINARY;
985 strcpy (path, "GNAT-XXXXXX");
987 #if (defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) \
988 || defined (__linux__) || defined (__GLIBC__) || defined (__ANDROID__) \
989 || defined (__DragonFly__)) && !defined (__vxworks)
990 return mkstemp (path);
991 #elif defined (__Lynx__)
992 mktemp (path);
993 #else
994 if (mktemp (path) == NULL)
995 return -1;
996 #endif
998 if (fmode)
999 o_fmode = O_TEXT;
1001 fd = GNAT_OPEN (path, O_WRONLY | O_CREAT | O_EXCL | o_fmode, PERM);
1002 return fd < 0 ? -1 : fd;
1006 __gnat_open (char *path, int fmode)
1008 int fd;
1010 #if defined (__MINGW32__)
1012 TCHAR wpath[GNAT_MAX_PATH_LEN];
1014 S2WSC (wpath, path, GNAT_MAX_PATH_LEN);
1015 fd = _topen (wpath, fmode, PERM);
1017 #else
1018 fd = GNAT_OPEN (path, fmode, PERM);
1019 #endif
1021 return fd < 0 ? -1 : fd;
1024 /****************************************************************
1025 ** Perform a call to GNAT_STAT or GNAT_FSTAT, and extract as much information
1026 ** as possible from it, storing the result in a cache for later reuse
1027 ****************************************************************/
1029 void
1030 __gnat_stat_to_attr (int fd, char* name, struct file_attributes* attr)
1032 GNAT_STRUCT_STAT statbuf;
1033 int ret, error;
1035 if (fd != -1) {
1036 /* GNAT_FSTAT returns -1 and sets errno for failure */
1037 ret = GNAT_FSTAT (fd, &statbuf);
1038 error = ret ? errno : 0;
1040 } else {
1041 /* __gnat_stat returns errno value directly */
1042 error = __gnat_stat (name, &statbuf);
1043 ret = error ? -1 : 0;
1047 * A missing file is reported as an attr structure with error == 0 and
1048 * exists == 0.
1051 if (error == 0 || error == ENOENT)
1052 attr->error = 0;
1053 else
1054 attr->error = error;
1056 attr->regular = (!ret && S_ISREG (statbuf.st_mode));
1057 attr->directory = (!ret && S_ISDIR (statbuf.st_mode));
1059 if (!attr->regular)
1060 attr->file_length = 0;
1061 else
1062 /* st_size may be 32 bits, or 64 bits which is converted to long. We
1063 don't return a useful value for files larger than 2 gigabytes in
1064 either case. */
1065 attr->file_length = statbuf.st_size; /* all systems */
1067 attr->exists = !ret;
1069 #if !defined (_WIN32)
1070 /* on Windows requires extra system call, see __gnat_is_readable_file_attr */
1071 attr->readable = (!ret && (statbuf.st_mode & S_IRUSR));
1072 attr->writable = (!ret && (statbuf.st_mode & S_IWUSR));
1073 attr->executable = (!ret && (statbuf.st_mode & S_IXUSR));
1074 #endif
1076 if (ret != 0) {
1077 attr->timestamp = (OS_Time)-1;
1078 } else {
1079 attr->timestamp = (OS_Time)statbuf.st_mtime;
1083 /****************************************************************
1084 ** Return the number of bytes in the specified file
1085 ****************************************************************/
1087 __int64
1088 __gnat_file_length_attr (int fd, char* name, struct file_attributes* attr)
1090 if (attr->file_length == -1) {
1091 __gnat_stat_to_attr (fd, name, attr);
1094 return attr->file_length;
1097 __int64
1098 __gnat_file_length (int fd)
1100 struct file_attributes attr;
1101 __gnat_reset_attributes (&attr);
1102 return __gnat_file_length_attr (fd, NULL, &attr);
1105 long
1106 __gnat_file_length_long (int fd)
1108 struct file_attributes attr;
1109 __gnat_reset_attributes (&attr);
1110 return (long)__gnat_file_length_attr (fd, NULL, &attr);
1113 __int64
1114 __gnat_named_file_length (char *name)
1116 struct file_attributes attr;
1117 __gnat_reset_attributes (&attr);
1118 return __gnat_file_length_attr (-1, name, &attr);
1121 /* Create a temporary filename and put it in string pointed to by
1122 TMP_FILENAME. */
1124 void
1125 __gnat_tmp_name (char *tmp_filename)
1127 #if defined (__MINGW32__)
1129 char *pname;
1130 char prefix[25];
1132 /* tempnam tries to create a temporary file in directory pointed to by
1133 TMP environment variable, in c:\temp if TMP is not set, and in
1134 directory specified by P_tmpdir in stdio.h if c:\temp does not
1135 exist. The filename will be created with the prefix "gnat-". */
1137 sprintf (prefix, "gnat-%d-", (int)getpid());
1138 pname = (char *) _tempnam ("c:\\temp", prefix);
1140 /* if pname is NULL, the file was not created properly, the disk is full
1141 or there is no more free temporary files */
1143 if (pname == NULL)
1144 *tmp_filename = '\0';
1146 /* If pname start with a back slash and not path information it means that
1147 the filename is valid for the current working directory. */
1149 else if (pname[0] == '\\')
1151 strcpy (tmp_filename, ".\\");
1152 strcat (tmp_filename, pname+1);
1154 else
1155 strcpy (tmp_filename, pname);
1157 free (pname);
1160 #elif defined (__linux__) || defined (__FreeBSD__) || defined (__NetBSD__) \
1161 || defined (__OpenBSD__) || defined (__GLIBC__) || defined (__ANDROID__) \
1162 || defined (__DragonFly__)
1163 #define MAX_SAFE_PATH 1000
1164 char *tmpdir = getenv ("TMPDIR");
1166 /* If tmpdir is longer than MAX_SAFE_PATH, revert to default value to avoid
1167 a buffer overflow. */
1168 if (tmpdir == NULL || strlen (tmpdir) > MAX_SAFE_PATH)
1169 #ifdef __ANDROID__
1170 strcpy (tmp_filename, "/cache/gnat-XXXXXX");
1171 #else
1172 strcpy (tmp_filename, "/tmp/gnat-XXXXXX");
1173 #endif
1174 else
1175 sprintf (tmp_filename, "%s/gnat-XXXXXX", tmpdir);
1177 close (mkstemp(tmp_filename));
1178 #elif defined (__vxworks) && !defined (VTHREADS)
1179 int index;
1180 char *pos;
1181 char *savepos;
1182 static ushort_t seed = 0; /* used to generate unique name */
1184 /* Generate a unique name. */
1185 strcpy (tmp_filename, "tmp");
1187 index = 5;
1188 savepos = pos = tmp_filename + strlen (tmp_filename) + index;
1189 *pos = '\0';
1191 while (1)
1193 FILE *f;
1194 ushort_t t;
1196 /* Fill up the name buffer from the last position. */
1197 seed++;
1198 for (t = seed; 0 <= --index; t >>= 3)
1199 *--pos = '0' + (t & 07);
1201 /* Check to see if its unique, if not bump the seed and try again. */
1202 f = fopen (tmp_filename, "r");
1203 if (f == NULL)
1204 break;
1205 fclose (f);
1206 pos = savepos;
1207 index = 5;
1209 #else
1210 tmpnam (tmp_filename);
1211 #endif
1214 /* Open directory and returns a DIR pointer. */
1216 DIR* __gnat_opendir (char *name)
1218 #if defined (__MINGW32__)
1219 TCHAR wname[GNAT_MAX_PATH_LEN];
1221 S2WSC (wname, name, GNAT_MAX_PATH_LEN);
1222 return (DIR*)_topendir (wname);
1224 #else
1225 return opendir (name);
1226 #endif
1229 /* Read the next entry in a directory. The returned string points somewhere
1230 in the buffer. */
1232 #if defined (__sun__)
1233 /* For Solaris, be sure to use the 64-bit version, otherwise NFS reads may
1234 fail with EOVERFLOW if the server uses 64-bit cookies. */
1235 #define dirent dirent64
1236 #define readdir readdir64
1237 #endif
1239 char *
1240 __gnat_readdir (DIR *dirp, char *buffer, int *len)
1242 #if defined (__MINGW32__)
1243 struct _tdirent *dirent = _treaddir ((_TDIR*)dirp);
1245 if (dirent != NULL)
1247 WS2SC (buffer, dirent->d_name, GNAT_MAX_PATH_LEN);
1248 *len = strlen (buffer);
1250 return buffer;
1252 else
1253 return NULL;
1255 #elif defined (HAVE_READDIR_R)
1256 /* If possible, try to use the thread-safe version. */
1257 if (readdir_r (dirp, buffer) != NULL)
1259 *len = strlen (((struct dirent*) buffer)->d_name);
1260 return ((struct dirent*) buffer)->d_name;
1262 else
1263 return NULL;
1265 #else
1266 struct dirent *dirent = (struct dirent *) readdir (dirp);
1268 if (dirent != NULL)
1270 strcpy (buffer, dirent->d_name);
1271 *len = strlen (buffer);
1272 return buffer;
1274 else
1275 return NULL;
1277 #endif
1280 /* Close a directory entry. */
1282 int __gnat_closedir (DIR *dirp)
1284 #if defined (__MINGW32__)
1285 return _tclosedir ((_TDIR*)dirp);
1287 #else
1288 return closedir (dirp);
1289 #endif
1292 /* Returns 1 if readdir is thread safe, 0 otherwise. */
1295 __gnat_readdir_is_thread_safe (void)
1297 #ifdef HAVE_READDIR_R
1298 return 1;
1299 #else
1300 return 0;
1301 #endif
1304 #if defined (_WIN32)
1305 /* Number of seconds between <Jan 1st 1601> and <Jan 1st 1970>. */
1306 static const unsigned long long w32_epoch_offset = 11644473600ULL;
1308 /* Returns the file modification timestamp using Win32 routines which are
1309 immune against daylight saving time change. It is in fact not possible to
1310 use fstat for this purpose as the DST modify the st_mtime field of the
1311 stat structure. */
1313 static time_t
1314 win32_filetime (HANDLE h)
1316 union
1318 FILETIME ft_time;
1319 unsigned long long ull_time;
1320 } t_write;
1322 /* GetFileTime returns FILETIME data which are the number of 100 nanosecs
1323 since <Jan 1st 1601>. This function must return the number of seconds
1324 since <Jan 1st 1970>. */
1326 if (GetFileTime (h, NULL, NULL, &t_write.ft_time))
1327 return (time_t) (t_write.ull_time / 10000000ULL - w32_epoch_offset);
1328 return (time_t) 0;
1331 /* As above but starting from a FILETIME. */
1332 static void
1333 f2t (const FILETIME *ft, __time64_t *t)
1335 union
1337 FILETIME ft_time;
1338 unsigned long long ull_time;
1339 } t_write;
1341 t_write.ft_time = *ft;
1342 *t = (__time64_t) (t_write.ull_time / 10000000ULL - w32_epoch_offset);
1344 #endif
1346 /* Return a GNAT time stamp given a file name. */
1348 OS_Time
1349 __gnat_file_time_name_attr (char* name, struct file_attributes* attr)
1351 if (attr->timestamp == (OS_Time)-2) {
1352 #if defined (_WIN32)
1353 BOOL res;
1354 WIN32_FILE_ATTRIBUTE_DATA fad;
1355 __time64_t ret = -1;
1356 TCHAR wname[GNAT_MAX_PATH_LEN];
1357 S2WSC (wname, name, GNAT_MAX_PATH_LEN);
1359 if ((res = GetFileAttributesEx (wname, GetFileExInfoStandard, &fad)))
1360 f2t (&fad.ftLastWriteTime, &ret);
1361 attr->timestamp = (OS_Time) ret;
1362 #else
1363 __gnat_stat_to_attr (-1, name, attr);
1364 #endif
1366 return attr->timestamp;
1369 OS_Time
1370 __gnat_file_time_name (char *name)
1372 struct file_attributes attr;
1373 __gnat_reset_attributes (&attr);
1374 return __gnat_file_time_name_attr (name, &attr);
1377 /* Return a GNAT time stamp given a file descriptor. */
1379 OS_Time
1380 __gnat_file_time_fd_attr (int fd, struct file_attributes* attr)
1382 if (attr->timestamp == (OS_Time)-2) {
1383 #if defined (_WIN32)
1384 HANDLE h = (HANDLE) _get_osfhandle (fd);
1385 time_t ret = win32_filetime (h);
1386 attr->timestamp = (OS_Time) ret;
1388 #else
1389 __gnat_stat_to_attr (fd, NULL, attr);
1390 #endif
1393 return attr->timestamp;
1396 OS_Time
1397 __gnat_file_time_fd (int fd)
1399 struct file_attributes attr;
1400 __gnat_reset_attributes (&attr);
1401 return __gnat_file_time_fd_attr (fd, &attr);
1404 /* Set the file time stamp. */
1406 void
1407 __gnat_set_file_time_name (char *name, time_t time_stamp)
1409 #if defined (__vxworks)
1411 /* Code to implement __gnat_set_file_time_name for these systems. */
1413 #elif defined (_WIN32)
1414 union
1416 FILETIME ft_time;
1417 unsigned long long ull_time;
1418 } t_write;
1419 TCHAR wname[GNAT_MAX_PATH_LEN];
1421 S2WSC (wname, name, GNAT_MAX_PATH_LEN);
1423 HANDLE h = CreateFile
1424 (wname, GENERIC_WRITE, FILE_SHARE_WRITE, NULL,
1425 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS,
1426 NULL);
1427 if (h == INVALID_HANDLE_VALUE)
1428 return;
1429 /* Add number of seconds between <Jan 1st 1601> and <Jan 1st 1970> */
1430 t_write.ull_time = ((unsigned long long)time_stamp + w32_epoch_offset);
1431 /* Convert to 100 nanosecond units */
1432 t_write.ull_time *= 10000000ULL;
1434 SetFileTime(h, NULL, NULL, &t_write.ft_time);
1435 CloseHandle (h);
1436 return;
1438 #else
1439 struct utimbuf utimbuf;
1440 time_t t;
1442 /* Set modification time to requested time. */
1443 utimbuf.modtime = time_stamp;
1445 /* Set access time to now in local time. */
1446 t = time ((time_t) 0);
1447 utimbuf.actime = mktime (localtime (&t));
1449 utime (name, &utimbuf);
1450 #endif
1453 /* Get the list of installed standard libraries from the
1454 HKEY_LOCAL_MACHINE\SOFTWARE\Ada Core Technologies\GNAT\Standard Libraries
1455 key. */
1457 char *
1458 __gnat_get_libraries_from_registry (void)
1460 char *result = (char *) xmalloc (1);
1462 result[0] = '\0';
1464 #if defined (_WIN32) && ! defined (__vxworks) && ! defined (IS_CROSS)
1466 HKEY reg_key;
1467 DWORD name_size, value_size;
1468 char name[256];
1469 char value[256];
1470 DWORD type;
1471 DWORD index;
1472 LONG res;
1474 /* First open the key. */
1475 res = RegOpenKeyExA (HKEY_LOCAL_MACHINE, "SOFTWARE", 0, KEY_READ, &reg_key);
1477 if (res == ERROR_SUCCESS)
1478 res = RegOpenKeyExA (reg_key, "Ada Core Technologies", 0,
1479 KEY_READ, &reg_key);
1481 if (res == ERROR_SUCCESS)
1482 res = RegOpenKeyExA (reg_key, "GNAT", 0, KEY_READ, &reg_key);
1484 if (res == ERROR_SUCCESS)
1485 res = RegOpenKeyExA (reg_key, "Standard Libraries", 0, KEY_READ, &reg_key);
1487 /* If the key exists, read out all the values in it and concatenate them
1488 into a path. */
1489 for (index = 0; res == ERROR_SUCCESS; index++)
1491 value_size = name_size = 256;
1492 res = RegEnumValueA (reg_key, index, name, &name_size, 0,
1493 &type, (LPBYTE)value, &value_size);
1495 if (res == ERROR_SUCCESS && type == REG_SZ)
1497 char *old_result = result;
1499 result = (char *) xmalloc (strlen (old_result) + value_size + 2);
1500 strcpy (result, old_result);
1501 strcat (result, value);
1502 strcat (result, ";");
1503 free (old_result);
1507 /* Remove the trailing ";". */
1508 if (result[0] != 0)
1509 result[strlen (result) - 1] = 0;
1511 #endif
1512 return result;
1515 /* Query information for the given file NAME and return it in STATBUF.
1516 * Returns 0 for success, or errno value for failure.
1519 __gnat_stat (char *name, GNAT_STRUCT_STAT *statbuf)
1521 #ifdef __MINGW32__
1522 WIN32_FILE_ATTRIBUTE_DATA fad;
1523 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
1524 int name_len;
1525 BOOL res;
1526 DWORD error;
1528 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
1529 name_len = _tcslen (wname);
1531 if (name_len > GNAT_MAX_PATH_LEN)
1532 return EINVAL;
1534 ZeroMemory (statbuf, sizeof(GNAT_STRUCT_STAT));
1536 res = GetFileAttributesEx (wname, GetFileExInfoStandard, &fad);
1538 if (res == FALSE) {
1539 error = GetLastError();
1541 /* Check file existence using GetFileAttributes() which does not fail on
1542 special Windows files like con:, aux:, nul: etc... */
1544 if (GetFileAttributes(wname) != INVALID_FILE_ATTRIBUTES) {
1545 /* Just pretend that it is a regular and readable file */
1546 statbuf->st_mode = S_IFREG | S_IREAD | S_IWRITE;
1547 return 0;
1550 switch (error) {
1551 case ERROR_ACCESS_DENIED:
1552 case ERROR_SHARING_VIOLATION:
1553 case ERROR_LOCK_VIOLATION:
1554 case ERROR_SHARING_BUFFER_EXCEEDED:
1555 return EACCES;
1556 case ERROR_BUFFER_OVERFLOW:
1557 return ENAMETOOLONG;
1558 case ERROR_NOT_ENOUGH_MEMORY:
1559 return ENOMEM;
1560 default:
1561 return ENOENT;
1565 f2t (&fad.ftCreationTime, &statbuf->st_ctime);
1566 f2t (&fad.ftLastWriteTime, &statbuf->st_mtime);
1567 f2t (&fad.ftLastAccessTime, &statbuf->st_atime);
1569 statbuf->st_size =
1570 (__int64)fad.nFileSizeLow | (__int64)fad.nFileSizeHigh << 32;
1572 /* We do not have the S_IEXEC attribute, but this is not used on GNAT. */
1573 statbuf->st_mode = S_IREAD;
1575 if (fad.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
1576 statbuf->st_mode |= S_IFDIR;
1577 else
1578 statbuf->st_mode |= S_IFREG;
1580 if (!(fad.dwFileAttributes & FILE_ATTRIBUTE_READONLY))
1581 statbuf->st_mode |= S_IWRITE;
1583 return 0;
1585 #else
1586 return GNAT_STAT (name, statbuf) == 0 ? 0 : errno;
1587 #endif
1590 /*************************************************************************
1591 ** Check whether a file exists
1592 *************************************************************************/
1595 __gnat_file_exists_attr (char* name, struct file_attributes* attr)
1597 if (attr->exists == ATTR_UNSET)
1598 __gnat_stat_to_attr (-1, name, attr);
1600 return attr->exists;
1604 __gnat_file_exists (char *name)
1606 struct file_attributes attr;
1607 __gnat_reset_attributes (&attr);
1608 return __gnat_file_exists_attr (name, &attr);
1611 /**********************************************************************
1612 ** Whether name is an absolute path
1613 **********************************************************************/
1616 __gnat_is_absolute_path (char *name, int length)
1618 #ifdef __vxworks
1619 /* On VxWorks systems, an absolute path can be represented (depending on
1620 the host platform) as either /dir/file, or device:/dir/file, or
1621 device:drive_letter:/dir/file. */
1623 int index;
1625 if (name[0] == '/')
1626 return 1;
1628 for (index = 0; index < length; index++)
1630 if (name[index] == ':' &&
1631 ((name[index + 1] == '/') ||
1632 (isalpha (name[index + 1]) && index + 2 <= length &&
1633 name[index + 2] == '/')))
1634 return 1;
1636 else if (name[index] == '/')
1637 return 0;
1639 return 0;
1640 #else
1641 return (length != 0) &&
1642 (*name == '/' || *name == DIR_SEPARATOR
1643 #if defined (WINNT)
1644 || (length > 1 && ISALPHA (name[0]) && name[1] == ':')
1645 #endif
1647 #endif
1651 __gnat_is_regular_file_attr (char* name, struct file_attributes* attr)
1653 if (attr->regular == ATTR_UNSET)
1654 __gnat_stat_to_attr (-1, name, attr);
1656 return attr->regular;
1660 __gnat_is_regular_file (char *name)
1662 struct file_attributes attr;
1664 __gnat_reset_attributes (&attr);
1665 return __gnat_is_regular_file_attr (name, &attr);
1669 __gnat_is_regular_file_fd (int fd)
1671 int ret;
1672 GNAT_STRUCT_STAT statbuf;
1674 ret = GNAT_FSTAT (fd, &statbuf);
1675 return (!ret && S_ISREG (statbuf.st_mode));
1679 __gnat_is_directory_attr (char* name, struct file_attributes* attr)
1681 if (attr->directory == ATTR_UNSET)
1682 __gnat_stat_to_attr (-1, name, attr);
1684 return attr->directory;
1688 __gnat_is_directory (char *name)
1690 struct file_attributes attr;
1692 __gnat_reset_attributes (&attr);
1693 return __gnat_is_directory_attr (name, &attr);
1696 #if defined (_WIN32)
1698 /* Returns the same constant as GetDriveType but takes a pathname as
1699 argument. */
1701 static UINT
1702 GetDriveTypeFromPath (TCHAR *wfullpath)
1704 TCHAR wdrv[MAX_PATH];
1705 TCHAR wpath[MAX_PATH];
1706 TCHAR wfilename[MAX_PATH];
1707 TCHAR wext[MAX_PATH];
1709 _tsplitpath (wfullpath, wdrv, wpath, wfilename, wext);
1711 if (_tcslen (wdrv) != 0)
1713 /* we have a drive specified. */
1714 _tcscat (wdrv, _T("\\"));
1715 return GetDriveType (wdrv);
1717 else
1719 /* No drive specified. */
1721 /* Is this a relative path, if so get current drive type. */
1722 if (wpath[0] != _T('\\') ||
1723 (_tcslen (wpath) > 2 && wpath[0] == _T('\\')
1724 && wpath[1] != _T('\\')))
1725 return GetDriveType (NULL);
1727 UINT result = GetDriveType (wpath);
1729 /* Cannot guess the drive type, is this \\.\ ? */
1731 if (result == DRIVE_NO_ROOT_DIR &&
1732 _tcslen (wpath) >= 4 && wpath[0] == _T('\\') && wpath[1] == _T('\\')
1733 && wpath[2] == _T('.') && wpath[3] == _T('\\'))
1735 if (_tcslen (wpath) == 4)
1736 _tcscat (wpath, wfilename);
1738 LPTSTR p = &wpath[4];
1739 LPTSTR b = _tcschr (p, _T('\\'));
1741 if (b != NULL)
1743 /* logical drive \\.\c\dir\file */
1744 *b++ = _T(':');
1745 *b++ = _T('\\');
1746 *b = _T('\0');
1748 else
1749 _tcscat (p, _T(":\\"));
1751 return GetDriveType (p);
1754 return result;
1758 /* This MingW section contains code to work with ACL. */
1759 static int
1760 __gnat_check_OWNER_ACL (TCHAR *wname,
1761 DWORD CheckAccessDesired,
1762 GENERIC_MAPPING CheckGenericMapping)
1764 DWORD dwAccessDesired, dwAccessAllowed;
1765 PRIVILEGE_SET PrivilegeSet;
1766 DWORD dwPrivSetSize = sizeof (PRIVILEGE_SET);
1767 BOOL fAccessGranted = FALSE;
1768 HANDLE hToken = NULL;
1769 DWORD nLength = 0;
1770 PSECURITY_DESCRIPTOR pSD = NULL;
1772 GetFileSecurity
1773 (wname, OWNER_SECURITY_INFORMATION |
1774 GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION,
1775 NULL, 0, &nLength);
1777 if ((pSD = (SECURITY_DESCRIPTOR *) HeapAlloc
1778 (GetProcessHeap (), HEAP_ZERO_MEMORY, nLength)) == NULL)
1779 return 0;
1781 /* Obtain the security descriptor. */
1783 if (!GetFileSecurity
1784 (wname, OWNER_SECURITY_INFORMATION |
1785 GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION,
1786 pSD, nLength, &nLength))
1787 goto error;
1789 if (!ImpersonateSelf (SecurityImpersonation))
1790 goto error;
1792 if (!OpenThreadToken
1793 (GetCurrentThread(), TOKEN_DUPLICATE | TOKEN_QUERY, FALSE, &hToken))
1794 goto error;
1796 /* Undoes the effect of ImpersonateSelf. */
1798 RevertToSelf ();
1800 /* We want to test for write permissions. */
1802 dwAccessDesired = CheckAccessDesired;
1804 MapGenericMask (&dwAccessDesired, &CheckGenericMapping);
1806 if (!AccessCheck
1807 (pSD , /* security descriptor to check */
1808 hToken, /* impersonation token */
1809 dwAccessDesired, /* requested access rights */
1810 &CheckGenericMapping, /* pointer to GENERIC_MAPPING */
1811 &PrivilegeSet, /* receives privileges used in check */
1812 &dwPrivSetSize, /* size of PrivilegeSet buffer */
1813 &dwAccessAllowed, /* receives mask of allowed access rights */
1814 &fAccessGranted))
1815 goto error;
1817 CloseHandle (hToken);
1818 HeapFree (GetProcessHeap (), 0, pSD);
1819 return fAccessGranted;
1821 error:
1822 if (hToken)
1823 CloseHandle (hToken);
1824 HeapFree (GetProcessHeap (), 0, pSD);
1825 return 0;
1828 static void
1829 __gnat_set_OWNER_ACL (TCHAR *wname,
1830 ACCESS_MODE AccessMode,
1831 DWORD AccessPermissions)
1833 PACL pOldDACL = NULL;
1834 PACL pNewDACL = NULL;
1835 PSECURITY_DESCRIPTOR pSD = NULL;
1836 EXPLICIT_ACCESS ea;
1837 TCHAR username [100];
1838 DWORD unsize = 100;
1840 /* Get current user, he will act as the owner */
1842 if (!GetUserName (username, &unsize))
1843 return;
1845 if (GetNamedSecurityInfo
1846 (wname,
1847 SE_FILE_OBJECT,
1848 DACL_SECURITY_INFORMATION,
1849 NULL, NULL, &pOldDACL, NULL, &pSD) != ERROR_SUCCESS)
1850 return;
1852 BuildExplicitAccessWithName
1853 (&ea, username, AccessPermissions, (ACCESS_MODE) AccessMode, NO_INHERITANCE);
1855 if (AccessMode == SET_ACCESS)
1857 /* SET_ACCESS, we want to set an explicte set of permissions, do not
1858 merge with current DACL. */
1859 if (SetEntriesInAcl (1, &ea, NULL, &pNewDACL) != ERROR_SUCCESS)
1860 return;
1862 else
1863 if (SetEntriesInAcl (1, &ea, pOldDACL, &pNewDACL) != ERROR_SUCCESS)
1864 return;
1866 if (SetNamedSecurityInfo
1867 (wname, SE_FILE_OBJECT,
1868 DACL_SECURITY_INFORMATION, NULL, NULL, pNewDACL, NULL) != ERROR_SUCCESS)
1869 return;
1871 LocalFree (pSD);
1872 LocalFree (pNewDACL);
1875 /* Check if it is possible to use ACL for wname, the file must not be on a
1876 network drive. */
1878 static int
1879 __gnat_can_use_acl (TCHAR *wname)
1881 return __gnat_use_acl && GetDriveTypeFromPath (wname) != DRIVE_REMOTE;
1884 #endif /* defined (_WIN32) */
1887 __gnat_is_readable_file_attr (char* name, struct file_attributes* attr)
1889 if (attr->readable == ATTR_UNSET)
1891 #if defined (_WIN32)
1892 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
1893 GENERIC_MAPPING GenericMapping;
1895 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
1897 if (__gnat_can_use_acl (wname))
1899 ZeroMemory (&GenericMapping, sizeof (GENERIC_MAPPING));
1900 GenericMapping.GenericRead = GENERIC_READ;
1901 attr->readable =
1902 __gnat_check_OWNER_ACL (wname, FILE_READ_DATA, GenericMapping);
1904 else
1905 attr->readable = GetFileAttributes (wname) != INVALID_FILE_ATTRIBUTES;
1906 #else
1907 __gnat_stat_to_attr (-1, name, attr);
1908 #endif
1911 return attr->readable;
1915 __gnat_is_read_accessible_file (char *name)
1917 #if defined (_WIN32)
1918 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
1920 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
1922 return !_waccess (wname, 4);
1924 #elif defined (__vxworks)
1925 int fd;
1927 if ((fd = open (name, O_RDONLY, 0)) < 0)
1928 return 0;
1929 close (fd);
1930 return 1;
1932 #else
1933 return !access (name, R_OK);
1934 #endif
1938 __gnat_is_readable_file (char *name)
1940 struct file_attributes attr;
1942 __gnat_reset_attributes (&attr);
1943 return __gnat_is_readable_file_attr (name, &attr);
1947 __gnat_is_writable_file_attr (char* name, struct file_attributes* attr)
1949 if (attr->writable == ATTR_UNSET)
1951 #if defined (_WIN32)
1952 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
1953 GENERIC_MAPPING GenericMapping;
1955 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
1957 if (__gnat_can_use_acl (wname))
1959 ZeroMemory (&GenericMapping, sizeof (GENERIC_MAPPING));
1960 GenericMapping.GenericWrite = GENERIC_WRITE;
1962 attr->writable = __gnat_check_OWNER_ACL
1963 (wname, FILE_WRITE_DATA | FILE_APPEND_DATA, GenericMapping)
1964 && !(GetFileAttributes (wname) & FILE_ATTRIBUTE_READONLY);
1966 else
1967 attr->writable =
1968 !(GetFileAttributes (wname) & FILE_ATTRIBUTE_READONLY);
1970 #else
1971 __gnat_stat_to_attr (-1, name, attr);
1972 #endif
1975 return attr->writable;
1979 __gnat_is_writable_file (char *name)
1981 struct file_attributes attr;
1983 __gnat_reset_attributes (&attr);
1984 return __gnat_is_writable_file_attr (name, &attr);
1988 __gnat_is_write_accessible_file (char *name)
1990 #if defined (_WIN32)
1991 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
1993 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
1995 return !_waccess (wname, 2);
1997 #elif defined (__vxworks)
1998 int fd;
2000 if ((fd = open (name, O_WRONLY, 0)) < 0)
2001 return 0;
2002 close (fd);
2003 return 1;
2005 #else
2006 return !access (name, W_OK);
2007 #endif
2011 __gnat_is_executable_file_attr (char* name, struct file_attributes* attr)
2013 if (attr->executable == ATTR_UNSET)
2015 #if defined (_WIN32)
2016 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
2017 GENERIC_MAPPING GenericMapping;
2019 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
2021 if (__gnat_can_use_acl (wname))
2023 ZeroMemory (&GenericMapping, sizeof (GENERIC_MAPPING));
2024 GenericMapping.GenericExecute = GENERIC_EXECUTE;
2026 attr->executable =
2027 __gnat_check_OWNER_ACL (wname, FILE_EXECUTE, GenericMapping);
2029 else
2031 TCHAR *l, *last = _tcsstr(wname, _T(".exe"));
2033 /* look for last .exe */
2034 if (last)
2035 while ((l = _tcsstr(last+1, _T(".exe"))))
2036 last = l;
2038 attr->executable =
2039 GetFileAttributes (wname) != INVALID_FILE_ATTRIBUTES
2040 && (last - wname) == (int) (_tcslen (wname) - 4);
2042 #else
2043 __gnat_stat_to_attr (-1, name, attr);
2044 #endif
2047 return attr->regular && attr->executable;
2051 __gnat_is_executable_file (char *name)
2053 struct file_attributes attr;
2055 __gnat_reset_attributes (&attr);
2056 return __gnat_is_executable_file_attr (name, &attr);
2059 void
2060 __gnat_set_writable (char *name)
2062 #if defined (_WIN32)
2063 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
2065 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
2067 if (__gnat_can_use_acl (wname))
2068 __gnat_set_OWNER_ACL (wname, GRANT_ACCESS, FILE_GENERIC_WRITE);
2070 SetFileAttributes
2071 (wname, GetFileAttributes (wname) & ~FILE_ATTRIBUTE_READONLY);
2072 #elif ! (defined (__vxworks) && _WRS_VXWORKS_MAJOR < 6)
2073 GNAT_STRUCT_STAT statbuf;
2075 if (GNAT_STAT (name, &statbuf) == 0)
2077 statbuf.st_mode = statbuf.st_mode | S_IWUSR;
2078 chmod (name, statbuf.st_mode);
2080 #endif
2083 /* must match definition in s-os_lib.ads */
2084 #define S_OWNER 1
2085 #define S_GROUP 2
2086 #define S_OTHERS 4
2088 void
2089 __gnat_set_executable (char *name, int mode ATTRIBUTE_UNUSED)
2091 #if defined (_WIN32)
2092 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
2094 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
2096 if (__gnat_can_use_acl (wname))
2097 __gnat_set_OWNER_ACL (wname, GRANT_ACCESS, FILE_GENERIC_EXECUTE);
2099 #elif ! (defined (__vxworks) && _WRS_VXWORKS_MAJOR < 6)
2100 GNAT_STRUCT_STAT statbuf;
2102 if (GNAT_STAT (name, &statbuf) == 0)
2104 if (mode & S_OWNER)
2105 statbuf.st_mode = statbuf.st_mode | S_IXUSR;
2106 if (mode & S_GROUP)
2107 statbuf.st_mode = statbuf.st_mode | S_IXGRP;
2108 if (mode & S_OTHERS)
2109 statbuf.st_mode = statbuf.st_mode | S_IXOTH;
2110 chmod (name, statbuf.st_mode);
2112 #endif
2115 void
2116 __gnat_set_non_writable (char *name)
2118 #if defined (_WIN32)
2119 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
2121 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
2123 if (__gnat_can_use_acl (wname))
2124 __gnat_set_OWNER_ACL
2125 (wname, DENY_ACCESS,
2126 FILE_WRITE_DATA | FILE_APPEND_DATA |
2127 FILE_WRITE_EA | FILE_WRITE_ATTRIBUTES);
2129 SetFileAttributes
2130 (wname, GetFileAttributes (wname) | FILE_ATTRIBUTE_READONLY);
2131 #elif ! (defined (__vxworks) && _WRS_VXWORKS_MAJOR < 6)
2132 GNAT_STRUCT_STAT statbuf;
2134 if (GNAT_STAT (name, &statbuf) == 0)
2136 statbuf.st_mode = statbuf.st_mode & 07577;
2137 chmod (name, statbuf.st_mode);
2139 #endif
2142 void
2143 __gnat_set_readable (char *name)
2145 #if defined (_WIN32)
2146 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
2148 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
2150 if (__gnat_can_use_acl (wname))
2151 __gnat_set_OWNER_ACL (wname, GRANT_ACCESS, FILE_GENERIC_READ);
2153 #elif ! (defined (__vxworks) && _WRS_VXWORKS_MAJOR < 6)
2154 GNAT_STRUCT_STAT statbuf;
2156 if (GNAT_STAT (name, &statbuf) == 0)
2158 chmod (name, statbuf.st_mode | S_IREAD);
2160 #endif
2163 void
2164 __gnat_set_non_readable (char *name)
2166 #if defined (_WIN32)
2167 TCHAR wname [GNAT_MAX_PATH_LEN + 2];
2169 S2WSC (wname, name, GNAT_MAX_PATH_LEN + 2);
2171 if (__gnat_can_use_acl (wname))
2172 __gnat_set_OWNER_ACL (wname, DENY_ACCESS, FILE_GENERIC_READ);
2174 #elif ! (defined (__vxworks) && _WRS_VXWORKS_MAJOR < 6)
2175 GNAT_STRUCT_STAT statbuf;
2177 if (GNAT_STAT (name, &statbuf) == 0)
2179 chmod (name, statbuf.st_mode & (~S_IREAD));
2181 #endif
2185 __gnat_is_symbolic_link_attr (char* name ATTRIBUTE_UNUSED,
2186 struct file_attributes* attr)
2188 if (attr->symbolic_link == ATTR_UNSET)
2190 #if defined (__vxworks)
2191 attr->symbolic_link = 0;
2193 #elif defined (_AIX) || defined (__APPLE__) || defined (__unix__)
2194 int ret;
2195 GNAT_STRUCT_STAT statbuf;
2196 ret = GNAT_LSTAT (name, &statbuf);
2197 attr->symbolic_link = (!ret && S_ISLNK (statbuf.st_mode));
2198 #else
2199 attr->symbolic_link = 0;
2200 #endif
2202 return attr->symbolic_link;
2206 __gnat_is_symbolic_link (char *name ATTRIBUTE_UNUSED)
2208 struct file_attributes attr;
2210 __gnat_reset_attributes (&attr);
2211 return __gnat_is_symbolic_link_attr (name, &attr);
2214 #if defined (__sun__)
2215 /* Using fork on Solaris will duplicate all the threads. fork1, which
2216 duplicates only the active thread, must be used instead, or spawning
2217 subprocess from a program with tasking will lead into numerous problems. */
2218 #define fork fork1
2219 #endif
2222 __gnat_portable_spawn (char *args[] ATTRIBUTE_UNUSED)
2224 int status ATTRIBUTE_UNUSED = 0;
2225 int finished ATTRIBUTE_UNUSED;
2226 int pid ATTRIBUTE_UNUSED;
2228 #if defined (__vxworks) || defined(__PikeOS__)
2229 return -1;
2231 #elif defined (_WIN32)
2232 /* args[0] must be quotes as it could contain a full pathname with spaces */
2233 char *args_0 = args[0];
2234 args[0] = (char *)xmalloc (strlen (args_0) + 3);
2235 strcpy (args[0], "\"");
2236 strcat (args[0], args_0);
2237 strcat (args[0], "\"");
2239 status = spawnvp (P_WAIT, args_0, (char ** const)args);
2241 /* restore previous value */
2242 free (args[0]);
2243 args[0] = (char *)args_0;
2245 if (status < 0)
2246 return -1;
2247 else
2248 return status;
2250 #else
2252 pid = fork ();
2253 if (pid < 0)
2254 return -1;
2256 if (pid == 0)
2258 /* The child. */
2259 if (execv (args[0], MAYBE_TO_PTR32 (args)) != 0)
2260 _exit (1);
2263 /* The parent. */
2264 finished = waitpid (pid, &status, 0);
2266 if (finished != pid || WIFEXITED (status) == 0)
2267 return -1;
2269 return WEXITSTATUS (status);
2270 #endif
2272 return 0;
2275 /* Create a copy of the given file descriptor.
2276 Return -1 if an error occurred. */
2279 __gnat_dup (int oldfd)
2281 #if defined (__vxworks) && !defined (__RTP__)
2282 /* Not supported on VxWorks 5.x, but supported on VxWorks 6.0 when using
2283 RTPs. */
2284 return -1;
2285 #else
2286 return dup (oldfd);
2287 #endif
2290 /* Make newfd be the copy of oldfd, closing newfd first if necessary.
2291 Return -1 if an error occurred. */
2294 __gnat_dup2 (int oldfd ATTRIBUTE_UNUSED, int newfd ATTRIBUTE_UNUSED)
2296 #if defined (__vxworks) && !defined (__RTP__)
2297 /* Not supported on VxWorks 5.x, but supported on VxWorks 6.0 when using
2298 RTPs. */
2299 return -1;
2300 #elif defined (__PikeOS__)
2301 /* Not supported. */
2302 return -1;
2303 #elif defined (_WIN32)
2304 /* Special case when oldfd and newfd are identical and are the standard
2305 input, output or error as this makes Windows XP hangs. Note that we
2306 do that only for standard file descriptors that are known to be valid. */
2307 if (oldfd == newfd && newfd >= 0 && newfd <= 2)
2308 return newfd;
2309 else
2310 return dup2 (oldfd, newfd);
2311 #else
2312 return dup2 (oldfd, newfd);
2313 #endif
2317 __gnat_number_of_cpus (void)
2319 int cores = 1;
2321 #if defined (__linux__) || defined (__sun__) || defined (_AIX) \
2322 || defined (__APPLE__) || defined (__FreeBSD__) || defined (__OpenBSD__) \
2323 || defined (__DragonFly__) || defined (__NetBSD__)
2324 cores = (int) sysconf (_SC_NPROCESSORS_ONLN);
2326 #elif defined (__hpux__)
2327 struct pst_dynamic psd;
2328 if (pstat_getdynamic (&psd, sizeof (psd), 1, 0) != -1)
2329 cores = (int) psd.psd_proc_cnt;
2331 #elif defined (_WIN32)
2332 SYSTEM_INFO sysinfo;
2333 GetSystemInfo (&sysinfo);
2334 cores = (int) sysinfo.dwNumberOfProcessors;
2336 #elif defined (_WRS_CONFIG_SMP)
2337 unsigned int vxCpuConfiguredGet (void);
2339 cores = vxCpuConfiguredGet ();
2341 #endif
2343 return cores;
2346 /* WIN32 code to implement a wait call that wait for any child process. */
2348 #if defined (_WIN32)
2350 /* Synchronization code, to be thread safe. */
2352 #ifdef CERT
2354 /* For the Cert run times on native Windows we use dummy functions
2355 for locking and unlocking tasks since we do not support multiple
2356 threads on this configuration (Cert run time on native Windows). */
2358 static void EnterCS (void) {}
2359 static void LeaveCS (void) {}
2360 static void SignalListChanged (void) {}
2362 #else
2364 CRITICAL_SECTION ProcListCS;
2365 HANDLE ProcListEvt = NULL;
2367 static void EnterCS (void)
2369 EnterCriticalSection(&ProcListCS);
2372 static void LeaveCS (void)
2374 LeaveCriticalSection(&ProcListCS);
2377 static void SignalListChanged (void)
2379 SetEvent (ProcListEvt);
2382 #endif
2384 static HANDLE *HANDLES_LIST = NULL;
2385 static int *PID_LIST = NULL, plist_length = 0, plist_max_length = 0;
2387 static void
2388 add_handle (HANDLE h, int pid)
2390 /* -------------------- critical section -------------------- */
2391 EnterCS();
2393 if (plist_length == plist_max_length)
2395 plist_max_length += 100;
2396 HANDLES_LIST =
2397 (HANDLE *) xrealloc (HANDLES_LIST, sizeof (HANDLE) * plist_max_length);
2398 PID_LIST =
2399 (int *) xrealloc (PID_LIST, sizeof (int) * plist_max_length);
2402 HANDLES_LIST[plist_length] = h;
2403 PID_LIST[plist_length] = pid;
2404 ++plist_length;
2406 SignalListChanged();
2407 LeaveCS();
2408 /* -------------------- critical section -------------------- */
2412 __gnat_win32_remove_handle (HANDLE h, int pid)
2414 int j;
2415 int found = 0;
2417 /* -------------------- critical section -------------------- */
2418 EnterCS();
2420 for (j = 0; j < plist_length; j++)
2422 if ((HANDLES_LIST[j] == h) || (PID_LIST[j] == pid))
2424 CloseHandle (h);
2425 --plist_length;
2426 HANDLES_LIST[j] = HANDLES_LIST[plist_length];
2427 PID_LIST[j] = PID_LIST[plist_length];
2428 found = 1;
2429 break;
2433 LeaveCS();
2434 /* -------------------- critical section -------------------- */
2436 if (found)
2437 SignalListChanged();
2439 return found;
2442 static void
2443 win32_no_block_spawn (char *command, char *args[], HANDLE *h, int *pid)
2445 BOOL result;
2446 STARTUPINFO SI;
2447 PROCESS_INFORMATION PI;
2448 SECURITY_ATTRIBUTES SA;
2449 int csize = 1;
2450 char *full_command;
2451 int k;
2453 /* compute the total command line length */
2454 k = 0;
2455 while (args[k])
2457 csize += strlen (args[k]) + 1;
2458 k++;
2461 full_command = (char *) xmalloc (csize);
2463 /* Startup info. */
2464 SI.cb = sizeof (STARTUPINFO);
2465 SI.lpReserved = NULL;
2466 SI.lpReserved2 = NULL;
2467 SI.lpDesktop = NULL;
2468 SI.cbReserved2 = 0;
2469 SI.lpTitle = NULL;
2470 SI.dwFlags = 0;
2471 SI.wShowWindow = SW_HIDE;
2473 /* Security attributes. */
2474 SA.nLength = sizeof (SECURITY_ATTRIBUTES);
2475 SA.bInheritHandle = TRUE;
2476 SA.lpSecurityDescriptor = NULL;
2478 /* Prepare the command string. */
2479 strcpy (full_command, command);
2480 strcat (full_command, " ");
2482 k = 1;
2483 while (args[k])
2485 strcat (full_command, args[k]);
2486 strcat (full_command, " ");
2487 k++;
2491 int wsize = csize * 2;
2492 TCHAR *wcommand = (TCHAR *) xmalloc (wsize);
2494 S2WSC (wcommand, full_command, wsize);
2496 free (full_command);
2498 result = CreateProcess
2499 (NULL, wcommand, &SA, NULL, TRUE,
2500 GetPriorityClass (GetCurrentProcess()), NULL, NULL, &SI, &PI);
2502 free (wcommand);
2505 if (result == TRUE)
2507 CloseHandle (PI.hThread);
2508 *h = PI.hProcess;
2509 *pid = PI.dwProcessId;
2511 else
2513 *h = NULL;
2514 *pid = 0;
2518 static int
2519 win32_wait (int *status)
2521 DWORD exitcode, pid;
2522 HANDLE *hl;
2523 HANDLE h;
2524 int *pidl;
2525 DWORD res;
2526 int hl_len;
2527 int found;
2529 START_WAIT:
2531 if (plist_length == 0)
2533 errno = ECHILD;
2534 return -1;
2537 /* -------------------- critical section -------------------- */
2538 EnterCS();
2540 hl_len = plist_length;
2542 #ifdef CERT
2543 hl = (HANDLE *) xmalloc (sizeof (HANDLE) * hl_len);
2544 memmove (hl, HANDLES_LIST, sizeof (HANDLE) * hl_len);
2545 pidl = (int *) xmalloc (sizeof (int) * hl_len);
2546 memmove (pidl, PID_LIST, sizeof (int) * hl_len);
2547 #else
2548 /* Note that index 0 contains the event handle that is signaled when the
2549 process list has changed */
2550 hl = (HANDLE *) xmalloc (sizeof (HANDLE) * hl_len + 1);
2551 hl[0] = ProcListEvt;
2552 memmove (&hl[1], HANDLES_LIST, sizeof (HANDLE) * hl_len);
2553 pidl = (int *) xmalloc (sizeof (int) * hl_len + 1);
2554 memmove (&pidl[1], PID_LIST, sizeof (int) * hl_len);
2555 hl_len++;
2556 #endif
2558 LeaveCS();
2559 /* -------------------- critical section -------------------- */
2561 res = WaitForMultipleObjects (hl_len, hl, FALSE, INFINITE);
2563 /* if the ProcListEvt has been signaled then the list of processes has been
2564 updated to add or remove a handle, just loop over */
2566 if (res - WAIT_OBJECT_0 == 0)
2568 free (hl);
2569 free (pidl);
2570 goto START_WAIT;
2573 h = hl[res - WAIT_OBJECT_0];
2574 GetExitCodeProcess (h, &exitcode);
2575 pid = pidl [res - WAIT_OBJECT_0];
2577 found = __gnat_win32_remove_handle (h, -1);
2579 free (hl);
2580 free (pidl);
2582 /* if not found another process waiting has already handled this process */
2584 if (!found)
2586 goto START_WAIT;
2589 *status = (int) exitcode;
2590 return (int) pid;
2593 #endif
2596 __gnat_portable_no_block_spawn (char *args[] ATTRIBUTE_UNUSED)
2599 #if defined (__vxworks) || defined (__PikeOS__)
2600 /* Not supported. */
2601 return -1;
2603 #elif defined (_WIN32)
2605 HANDLE h = NULL;
2606 int pid;
2608 win32_no_block_spawn (args[0], args, &h, &pid);
2609 if (h != NULL)
2611 add_handle (h, pid);
2612 return pid;
2614 else
2615 return -1;
2617 #else
2619 int pid = fork ();
2621 if (pid == 0)
2623 /* The child. */
2624 if (execv (args[0], MAYBE_TO_PTR32 (args)) != 0)
2625 _exit (1);
2628 return pid;
2630 #endif
2634 __gnat_portable_wait (int *process_status)
2636 int status = 0;
2637 int pid = 0;
2639 #if defined (__vxworks) || defined (__PikeOS__)
2640 /* Not sure what to do here, so do nothing but return zero. */
2642 #elif defined (_WIN32)
2644 pid = win32_wait (&status);
2646 #else
2648 pid = waitpid (-1, &status, 0);
2649 status = status & 0xffff;
2650 #endif
2652 *process_status = status;
2653 return pid;
2656 void
2657 __gnat_os_exit (int status)
2659 exit (status);
2663 __gnat_current_process_id (void)
2665 #if defined (__vxworks) || defined (__PikeOS__)
2666 return -1;
2668 #elif defined (_WIN32)
2670 return (int)GetCurrentProcessId();
2672 #else
2674 return (int)getpid();
2675 #endif
2678 /* Locate file on path, that matches a predicate */
2680 char *
2681 __gnat_locate_file_with_predicate (char *file_name, char *path_val,
2682 int (*predicate)(char *))
2684 char *ptr;
2685 char *file_path = (char *) alloca (strlen (file_name) + 1);
2686 int absolute;
2688 /* Return immediately if file_name is empty */
2690 if (*file_name == '\0')
2691 return 0;
2693 /* Remove quotes around file_name if present */
2695 ptr = file_name;
2696 if (*ptr == '"')
2697 ptr++;
2699 strcpy (file_path, ptr);
2701 ptr = file_path + strlen (file_path) - 1;
2703 if (*ptr == '"')
2704 *ptr = '\0';
2706 /* Handle absolute pathnames. */
2708 absolute = __gnat_is_absolute_path (file_path, strlen (file_name));
2710 if (absolute)
2712 if (predicate (file_path))
2713 return xstrdup (file_path);
2715 return 0;
2718 /* If file_name include directory separator(s), try it first as
2719 a path name relative to the current directory */
2720 for (ptr = file_name; *ptr && *ptr != '/' && *ptr != DIR_SEPARATOR; ptr++)
2723 if (*ptr != 0)
2725 if (predicate (file_name))
2726 return xstrdup (file_name);
2729 if (path_val == 0)
2730 return 0;
2733 /* The result has to be smaller than path_val + file_name. */
2734 char *file_path =
2735 (char *) alloca (strlen (path_val) + strlen (file_name) + 2);
2737 for (;;)
2739 /* Skip the starting quote */
2741 if (*path_val == '"')
2742 path_val++;
2744 for (ptr = file_path; *path_val && *path_val != PATH_SEPARATOR; )
2745 *ptr++ = *path_val++;
2747 /* If directory is empty, it is the current directory*/
2749 if (ptr == file_path)
2751 *ptr = '.';
2753 else
2754 ptr--;
2756 /* Skip the ending quote */
2758 if (*ptr == '"')
2759 ptr--;
2761 if (*ptr != '/' && *ptr != DIR_SEPARATOR)
2762 *++ptr = DIR_SEPARATOR;
2764 strcpy (++ptr, file_name);
2766 if (predicate (file_path))
2767 return xstrdup (file_path);
2769 if (*path_val == 0)
2770 return 0;
2772 /* Skip path separator */
2774 path_val++;
2778 return 0;
2781 /* Locate an executable file, give a Path value. */
2783 char *
2784 __gnat_locate_executable_file (char *file_name, char *path_val)
2786 return __gnat_locate_file_with_predicate
2787 (file_name, path_val, &__gnat_is_executable_file);
2790 /* Locate a regular file, give a Path value. */
2792 char *
2793 __gnat_locate_regular_file (char *file_name, char *path_val)
2795 return __gnat_locate_file_with_predicate
2796 (file_name, path_val, &__gnat_is_regular_file);
2799 /* Locate an executable given a Path argument. This routine is only used by
2800 gnatbl and should not be used otherwise. Use locate_exec_on_path
2801 instead. */
2803 char *
2804 __gnat_locate_exec (char *exec_name, char *path_val)
2806 char *ptr;
2807 if (!strstr (exec_name, HOST_EXECUTABLE_SUFFIX))
2809 char *full_exec_name =
2810 (char *) alloca
2811 (strlen (exec_name) + strlen (HOST_EXECUTABLE_SUFFIX) + 1);
2813 strcpy (full_exec_name, exec_name);
2814 strcat (full_exec_name, HOST_EXECUTABLE_SUFFIX);
2815 ptr = __gnat_locate_executable_file (full_exec_name, path_val);
2817 if (ptr == 0)
2818 return __gnat_locate_executable_file (exec_name, path_val);
2819 return ptr;
2821 else
2822 return __gnat_locate_executable_file (exec_name, path_val);
2825 /* Locate an executable using the Systems default PATH. */
2827 char *
2828 __gnat_locate_exec_on_path (char *exec_name)
2830 char *apath_val;
2832 #if defined (_WIN32)
2833 TCHAR *wpath_val = _tgetenv (_T("PATH"));
2834 TCHAR *wapath_val;
2835 /* In Win32 systems we expand the PATH as for XP environment
2836 variables are not automatically expanded. We also prepend the
2837 ".;" to the path to match normal NT path search semantics */
2839 #define EXPAND_BUFFER_SIZE 32767
2841 wapath_val = (TCHAR *) alloca (EXPAND_BUFFER_SIZE);
2843 wapath_val [0] = '.';
2844 wapath_val [1] = ';';
2846 DWORD res = ExpandEnvironmentStrings
2847 (wpath_val, &wapath_val[2], EXPAND_BUFFER_SIZE - 2);
2849 if (!res) wapath_val [0] = _T('\0');
2851 apath_val = (char *) alloca (EXPAND_BUFFER_SIZE);
2853 WS2SC (apath_val, wapath_val, EXPAND_BUFFER_SIZE);
2855 #else
2856 const char *path_val = getenv ("PATH");
2858 /* If PATH is not defined, proceed with __gnat_locate_exec anyway, so we can
2859 find files that contain directory names. */
2861 if (path_val == NULL) path_val = "";
2862 apath_val = (char *) alloca (strlen (path_val) + 1);
2863 strcpy (apath_val, path_val);
2864 #endif
2866 return __gnat_locate_exec (exec_name, apath_val);
2869 /* Dummy functions for Osint import for non-VMS systems.
2870 ??? To be removed. */
2873 __gnat_to_canonical_file_list_init (char *dirspec ATTRIBUTE_UNUSED,
2874 int onlydirs ATTRIBUTE_UNUSED)
2876 return 0;
2879 char *
2880 __gnat_to_canonical_file_list_next (void)
2882 static char empty[] = "";
2883 return empty;
2886 void
2887 __gnat_to_canonical_file_list_free (void)
2891 char *
2892 __gnat_to_canonical_dir_spec (char *dirspec, int prefixflag ATTRIBUTE_UNUSED)
2894 return dirspec;
2897 char *
2898 __gnat_to_canonical_file_spec (char *filespec)
2900 return filespec;
2903 char *
2904 __gnat_to_canonical_path_spec (char *pathspec)
2906 return pathspec;
2909 char *
2910 __gnat_to_host_dir_spec (char *dirspec, int prefixflag ATTRIBUTE_UNUSED)
2912 return dirspec;
2915 char *
2916 __gnat_to_host_file_spec (char *filespec)
2918 return filespec;
2921 void
2922 __gnat_adjust_os_resource_limits (void)
2926 #if defined (__mips_vxworks)
2928 _flush_cache (void)
2930 CACHE_USER_FLUSH (0, ENTIRE_CACHE);
2932 #endif
2934 #if defined (_WIN32)
2935 int __gnat_argument_needs_quote = 1;
2936 #else
2937 int __gnat_argument_needs_quote = 0;
2938 #endif
2940 /* This option is used to enable/disable object files handling from the
2941 binder file by the GNAT Project module. For example, this is disabled on
2942 Windows (prior to GCC 3.4) as it is already done by the mdll module.
2943 Stating with GCC 3.4 the shared libraries are not based on mdll
2944 anymore as it uses the GCC's -shared option */
2945 #if defined (_WIN32) \
2946 && ((__GNUC__ < 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ < 4)))
2947 int __gnat_prj_add_obj_files = 0;
2948 #else
2949 int __gnat_prj_add_obj_files = 1;
2950 #endif
2952 /* char used as prefix/suffix for environment variables */
2953 #if defined (_WIN32)
2954 char __gnat_environment_char = '%';
2955 #else
2956 char __gnat_environment_char = '$';
2957 #endif
2959 /* This functions copy the file attributes from a source file to a
2960 destination file.
2962 mode = 0 : In this mode copy only the file time stamps (last access and
2963 last modification time stamps).
2965 mode = 1 : In this mode, time stamps and read/write/execute attributes are
2966 copied.
2968 mode = 2 : In this mode, only read/write/execute attributes are copied
2970 Returns 0 if operation was successful and -1 in case of error. */
2973 __gnat_copy_attribs (char *from ATTRIBUTE_UNUSED, char *to ATTRIBUTE_UNUSED,
2974 int mode ATTRIBUTE_UNUSED)
2976 #if (defined (__vxworks) && _WRS_VXWORKS_MAJOR < 6)
2977 return -1;
2979 #elif defined (_WIN32)
2980 TCHAR wfrom [GNAT_MAX_PATH_LEN + 2];
2981 TCHAR wto [GNAT_MAX_PATH_LEN + 2];
2982 BOOL res;
2983 FILETIME fct, flat, flwt;
2984 HANDLE hfrom, hto;
2986 S2WSC (wfrom, from, GNAT_MAX_PATH_LEN + 2);
2987 S2WSC (wto, to, GNAT_MAX_PATH_LEN + 2);
2989 /* Do we need to copy the timestamp ? */
2991 if (mode != 2) {
2992 /* retrieve from times */
2994 hfrom = CreateFile
2995 (wfrom, GENERIC_READ, 0, NULL, OPEN_EXISTING,
2996 FILE_ATTRIBUTE_NORMAL, NULL);
2998 if (hfrom == INVALID_HANDLE_VALUE)
2999 return -1;
3001 res = GetFileTime (hfrom, &fct, &flat, &flwt);
3003 CloseHandle (hfrom);
3005 if (res == 0)
3006 return -1;
3008 /* retrieve from times */
3010 hto = CreateFile
3011 (wto, GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
3012 FILE_ATTRIBUTE_NORMAL, NULL);
3014 if (hto == INVALID_HANDLE_VALUE)
3015 return -1;
3017 res = SetFileTime (hto, NULL, &flat, &flwt);
3019 CloseHandle (hto);
3021 if (res == 0)
3022 return -1;
3025 /* Do we need to copy the permissions ? */
3026 /* Set file attributes in full mode. */
3028 if (mode != 0)
3030 DWORD attribs = GetFileAttributes (wfrom);
3032 if (attribs == INVALID_FILE_ATTRIBUTES)
3033 return -1;
3035 res = SetFileAttributes (wto, attribs);
3036 if (res == 0)
3037 return -1;
3040 return 0;
3042 #else
3043 GNAT_STRUCT_STAT fbuf;
3044 struct utimbuf tbuf;
3046 if (GNAT_STAT (from, &fbuf) == -1) {
3047 return -1;
3050 /* Do we need to copy timestamp ? */
3051 if (mode != 2) {
3052 tbuf.actime = fbuf.st_atime;
3053 tbuf.modtime = fbuf.st_mtime;
3055 if (utime (to, &tbuf) == -1) {
3056 return -1;
3060 /* Do we need to copy file permissions ? */
3061 if (mode != 0 && (chmod (to, fbuf.st_mode) == -1)) {
3062 return -1;
3065 return 0;
3066 #endif
3070 __gnat_lseek (int fd, long offset, int whence)
3072 return (int) lseek (fd, offset, whence);
3075 /* This function returns the major version number of GCC being used. */
3077 get_gcc_version (void)
3079 #ifdef IN_RTS
3080 return __GNUC__;
3081 #else
3082 return (int) (version_string[0] - '0');
3083 #endif
3087 * Set Close_On_Exec as indicated.
3088 * Note: this is used for both GNAT.OS_Lib and GNAT.Sockets.
3092 __gnat_set_close_on_exec (int fd ATTRIBUTE_UNUSED,
3093 int close_on_exec_p ATTRIBUTE_UNUSED)
3095 #if defined (F_GETFD) && defined (FD_CLOEXEC) && ! defined (__vxworks)
3096 int flags = fcntl (fd, F_GETFD, 0);
3097 if (flags < 0)
3098 return flags;
3099 if (close_on_exec_p)
3100 flags |= FD_CLOEXEC;
3101 else
3102 flags &= ~FD_CLOEXEC;
3103 return fcntl (fd, F_SETFD, flags);
3104 #elif defined(_WIN32)
3105 HANDLE h = (HANDLE) _get_osfhandle (fd);
3106 if (h == (HANDLE) -1)
3107 return -1;
3108 if (close_on_exec_p)
3109 return ! SetHandleInformation (h, HANDLE_FLAG_INHERIT, 0);
3110 return ! SetHandleInformation (h, HANDLE_FLAG_INHERIT,
3111 HANDLE_FLAG_INHERIT);
3112 #else
3113 /* TODO: Unimplemented. */
3114 return -1;
3115 #endif
3118 /* Indicates if platforms supports automatic initialization through the
3119 constructor mechanism */
3121 __gnat_binder_supports_auto_init (void)
3123 return 1;
3126 /* Indicates that Stand-Alone Libraries are automatically initialized through
3127 the constructor mechanism */
3129 __gnat_sals_init_using_constructors (void)
3131 #if defined (__vxworks) || defined (__Lynx__)
3132 return 0;
3133 #else
3134 return 1;
3135 #endif
3138 #if defined (__linux__) || defined (__ANDROID__)
3139 /* There is no function in the glibc to retrieve the LWP of the current
3140 thread. We need to do a system call in order to retrieve this
3141 information. */
3142 #include <sys/syscall.h>
3143 void *
3144 __gnat_lwp_self (void)
3146 return (void *) syscall (__NR_gettid);
3148 #endif
3150 #if defined (__APPLE__)
3151 #include <mach/thread_info.h>
3152 #include <mach/mach_init.h>
3153 #include <mach/thread_act.h>
3155 /* System-wide thread identifier. Note it could be truncated on 32 bit
3156 hosts.
3157 Previously was: pthread_mach_thread_np (pthread_self ()). */
3158 void *
3159 __gnat_lwp_self (void)
3161 thread_identifier_info_data_t data;
3162 mach_msg_type_number_t count = THREAD_IDENTIFIER_INFO_COUNT;
3163 kern_return_t kret;
3165 kret = thread_info (mach_thread_self (), THREAD_IDENTIFIER_INFO,
3166 (thread_info_t) &data, &count);
3167 if (kret == KERN_SUCCESS)
3168 return (void *)(uintptr_t)data.thread_id;
3169 else
3170 return 0;
3172 #endif
3174 #if defined (__linux__)
3175 #include <sched.h>
3177 /* glibc versions earlier than 2.7 do not define the routines to handle
3178 dynamically allocated CPU sets. For these targets, we use the static
3179 versions. */
3181 #ifdef CPU_ALLOC
3183 /* Dynamic cpu sets */
3185 cpu_set_t *
3186 __gnat_cpu_alloc (size_t count)
3188 return CPU_ALLOC (count);
3191 size_t
3192 __gnat_cpu_alloc_size (size_t count)
3194 return CPU_ALLOC_SIZE (count);
3197 void
3198 __gnat_cpu_free (cpu_set_t *set)
3200 CPU_FREE (set);
3203 void
3204 __gnat_cpu_zero (size_t count, cpu_set_t *set)
3206 CPU_ZERO_S (count, set);
3209 void
3210 __gnat_cpu_set (int cpu, size_t count, cpu_set_t *set)
3212 /* Ada handles CPU numbers starting from 1, while C identifies the first
3213 CPU by a 0, so we need to adjust. */
3214 CPU_SET_S (cpu - 1, count, set);
3217 #else /* !CPU_ALLOC */
3219 /* Static cpu sets */
3221 cpu_set_t *
3222 __gnat_cpu_alloc (size_t count ATTRIBUTE_UNUSED)
3224 return (cpu_set_t *) xmalloc (sizeof (cpu_set_t));
3227 size_t
3228 __gnat_cpu_alloc_size (size_t count ATTRIBUTE_UNUSED)
3230 return sizeof (cpu_set_t);
3233 void
3234 __gnat_cpu_free (cpu_set_t *set)
3236 free (set);
3239 void
3240 __gnat_cpu_zero (size_t count ATTRIBUTE_UNUSED, cpu_set_t *set)
3242 CPU_ZERO (set);
3245 void
3246 __gnat_cpu_set (int cpu, size_t count ATTRIBUTE_UNUSED, cpu_set_t *set)
3248 /* Ada handles CPU numbers starting from 1, while C identifies the first
3249 CPU by a 0, so we need to adjust. */
3250 CPU_SET (cpu - 1, set);
3252 #endif /* !CPU_ALLOC */
3253 #endif /* __linux__ */
3255 /* Return the load address of the executable, or 0 if not known. In the
3256 specific case of error, (void *)-1 can be returned. Beware: this unit may
3257 be in a shared library. As low-level units are needed, we allow #include
3258 here. */
3260 #if defined (__APPLE__)
3261 #include <mach-o/dyld.h>
3262 #endif
3264 const void *
3265 __gnat_get_executable_load_address (void)
3267 #if defined (__APPLE__)
3268 return _dyld_get_image_header (0);
3270 #elif 0 && defined (__linux__)
3271 /* Currently disabled as it needs at least -ldl. */
3272 struct link_map *map = _r_debug.r_map;
3274 return (const void *)map->l_addr;
3276 #else
3277 return NULL;
3278 #endif
3281 void
3282 __gnat_kill (int pid, int sig, int close ATTRIBUTE_UNUSED)
3284 #if defined(_WIN32)
3285 HANDLE h = OpenProcess (PROCESS_ALL_ACCESS, FALSE, pid);
3286 if (h == NULL)
3287 return;
3288 if (sig == 9)
3290 TerminateProcess (h, 1);
3292 else if (sig == SIGINT)
3293 GenerateConsoleCtrlEvent (CTRL_C_EVENT, pid);
3294 else if (sig == SIGBREAK)
3295 GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, pid);
3296 /* ??? The last two alternatives don't really work. SIGBREAK requires setting
3297 up process groups at start time which we don't do; treating SIGINT is just
3298 not possible apparently. So we really only support signal 9. Fortunately
3299 that's all we use in GNAT.Expect */
3301 CloseHandle (h);
3302 #elif defined (__vxworks)
3303 /* Not implemented */
3304 #else
3305 kill (pid, sig);
3306 #endif
3309 void __gnat_killprocesstree (int pid, int sig_num)
3311 #if defined(_WIN32)
3312 PROCESSENTRY32 pe;
3314 memset(&pe, 0, sizeof(PROCESSENTRY32));
3315 pe.dwSize = sizeof(PROCESSENTRY32);
3317 HANDLE hSnap = CreateToolhelp32Snapshot (TH32CS_SNAPPROCESS, 0);
3319 /* cannot take snapshot, just kill the parent process */
3321 if (hSnap == INVALID_HANDLE_VALUE)
3323 __gnat_kill (pid, sig_num, 1);
3324 return;
3327 if (Process32First(hSnap, &pe))
3329 BOOL bContinue = TRUE;
3331 /* kill child processes first */
3333 while (bContinue)
3335 if (pe.th32ParentProcessID == (DWORD)pid)
3336 __gnat_killprocesstree (pe.th32ProcessID, sig_num);
3338 bContinue = Process32Next (hSnap, &pe);
3342 CloseHandle (hSnap);
3344 /* kill process */
3346 __gnat_kill (pid, sig_num, 1);
3348 #elif defined (__vxworks)
3349 /* not implemented */
3351 #elif defined (__linux__)
3352 DIR *dir;
3353 struct dirent *d;
3355 /* read all processes' pid and ppid */
3357 dir = opendir ("/proc");
3359 /* cannot open proc, just kill the parent process */
3361 if (!dir)
3363 __gnat_kill (pid, sig_num, 1);
3364 return;
3367 /* kill child processes first */
3369 while ((d = readdir (dir)) != NULL)
3371 if ((d->d_type & DT_DIR) == DT_DIR)
3373 char statfile[64] = { 0 };
3374 int _pid, _ppid;
3376 /* read /proc/<PID>/stat */
3378 strncpy (statfile, "/proc/", sizeof(statfile));
3379 strncat (statfile, d->d_name, sizeof(statfile));
3380 strncat (statfile, "/stat", sizeof(statfile));
3382 FILE *fd = fopen (statfile, "r");
3384 if (fd)
3386 const int match = fscanf (fd, "%d %*s %*s %d", &_pid, &_ppid);
3387 fclose (fd);
3389 if (match == 2 && _ppid == pid)
3390 __gnat_killprocesstree (_pid, sig_num);
3395 closedir (dir);
3397 /* kill process */
3399 __gnat_kill (pid, sig_num, 1);
3400 #else
3401 __gnat_kill (pid, sig_num, 1);
3402 #endif
3403 /* Note on Solaris it is possible to read /proc/<PID>/status.
3404 The 5th and 6th words are the pid and the 7th and 8th the ppid.
3405 See: /usr/include/sys/procfs.h (struct pstatus).
3409 #ifdef __cplusplus
3411 #endif