1 /* Copyright (C) 2002-2018 Free Software Foundation, Inc.
2 Contributed by Andy Vaught
4 This file is part of the GNU Fortran runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #include "libgfortran.h"
36 /* Implementation of secure_getenv() for targets where it is not
39 #ifdef FALLBACK_SECURE_GETENV
41 #if SUPPORTS_WEAKREF && defined(HAVE___SECURE_GETENV)
42 static char* weak_secure_getenv (const char*)
43 __attribute__((__weakref__("__secure_getenv")));
47 secure_getenv (const char *name
)
49 #if SUPPORTS_WEAKREF && defined(HAVE___SECURE_GETENV)
50 if (weak_secure_getenv
)
51 return weak_secure_getenv (name
);
54 if ((getuid () == geteuid ()) && (getgid () == getegid ()))
63 /* Examine the environment for controlling aspects of the program's
64 execution. Our philosophy here that the environment should not prevent
65 the program from running, so any invalid value will be ignored. */
70 typedef struct variable
75 void (*init
) (struct variable
*);
79 static void init_unformatted (variable
*);
82 /* Initialize an integer environment variable. */
85 init_integer (variable
* v
)
94 if (!isdigit (*q
) && (p
!= q
|| *q
!= '-'))
101 /* Initialize an integer environment variable which has to be positive. */
104 init_unsigned_integer (variable
* v
)
108 p
= getenv (v
->name
);
120 /* Initialize a boolean environment variable. We only look at the first
121 letter of the value. */
124 init_boolean (variable
* v
)
128 p
= getenv (v
->name
);
132 if (*p
== '1' || *p
== 'Y' || *p
== 'y')
134 else if (*p
== '0' || *p
== 'N' || *p
== 'n')
139 /* Initialize a list output separator. It may contain any number of spaces
140 and at most one comma. */
143 init_sep (variable
* v
)
148 p
= getenv (v
->name
);
152 options
.separator
= p
;
153 options
.separator_len
= strlen (p
);
155 /* Make sure the separator is valid */
157 if (options
.separator_len
== 0)
179 options
.separator
= " ";
180 options
.separator_len
= 1;
184 static variable variable_table
[] = {
186 /* Unit number that will be preconnected to standard input */
187 { "GFORTRAN_STDIN_UNIT", GFC_STDIN_UNIT_NUMBER
, &options
.stdin_unit
,
190 /* Unit number that will be preconnected to standard output */
191 { "GFORTRAN_STDOUT_UNIT", GFC_STDOUT_UNIT_NUMBER
, &options
.stdout_unit
,
194 /* Unit number that will be preconnected to standard error */
195 { "GFORTRAN_STDERR_UNIT", GFC_STDERR_UNIT_NUMBER
, &options
.stderr_unit
,
198 /* If TRUE, all output will be unbuffered */
199 { "GFORTRAN_UNBUFFERED_ALL", 0, &options
.all_unbuffered
, init_boolean
},
201 /* If TRUE, output to preconnected units will be unbuffered */
202 { "GFORTRAN_UNBUFFERED_PRECONNECTED", 0, &options
.unbuffered_preconnected
,
205 /* Whether to print filename and line number on runtime error */
206 { "GFORTRAN_SHOW_LOCUS", 1, &options
.locus
, init_boolean
},
208 /* Print optional plus signs in numbers where permitted */
209 { "GFORTRAN_OPTIONAL_PLUS", 0, &options
.optional_plus
, init_boolean
},
211 /* Separator to use when writing list output */
212 { "GFORTRAN_LIST_SEPARATOR", 0, NULL
, init_sep
},
214 /* Set the default data conversion for unformatted I/O */
215 { "GFORTRAN_CONVERT_UNIT", 0, 0, init_unformatted
},
217 /* Print out a backtrace if possible on runtime error */
218 { "GFORTRAN_ERROR_BACKTRACE", -1, &options
.backtrace
, init_boolean
},
220 { NULL
, 0, NULL
, NULL
}
224 /* Initialize most runtime variables from
225 * environment variables. */
228 init_variables (void)
232 for (v
= variable_table
; v
->name
; v
++)
235 *v
->var
= v
->default_value
;
241 /* This is the handling of the GFORTRAN_CONVERT_UNITS environment variable.
242 It is called from environ.c to parse this variable, and from
243 open.c to determine if the user specified a default for an
245 The syntax of the environment variable is, in bison grammar:
247 GFORTRAN_CONVERT_UNITS: mode | mode ';' exception ;
248 mode: 'native' | 'swap' | 'big_endian' | 'little_endian' ;
249 exception: mode ':' unit_list | unit_list ;
250 unit_list: unit_spec | unit_list unit_spec ;
251 unit_spec: INTEGER | INTEGER '-' INTEGER ;
254 /* Defines for the tokens. Other valid tokens are ',', ':', '-'. */
261 /* Some space for additional tokens later. */
273 static char *p
; /* Main character pointer for parsing. */
274 static char *lastpos
; /* Auxiliary pointer, for backing up. */
275 static int unit_num
; /* The last unit number read. */
276 static int unit_count
; /* The number of units found. */
277 static int do_count
; /* Parsing is done twice - first to count the number
278 of units, then to fill in the table. This
279 variable controls what to do. */
280 static exception_t
*elist
; /* The list of exceptions to the default. This is
281 sorted according to unit number. */
282 static int n_elist
; /* Number of exceptions to the default. */
284 static unit_convert endian
; /* Current endianness. */
286 static unit_convert def
; /* Default as specified (if any). */
288 /* Search for a unit number, using a binary search. The
289 first argument is the unit number to search for. The second argument
290 is a pointer to an index.
291 If the unit number is found, the function returns 1, and the index
292 is that of the element.
293 If the unit number is not found, the function returns 0, and the
294 index is the one where the element would be inserted. */
297 search_unit (int unit
, int *ip
)
312 mid
= (low
+ high
) / 2;
313 if (unit
== elist
[mid
].unit
)
318 else if (unit
> elist
[mid
].unit
)
322 } while (low
<= high
);
324 if (unit
> elist
[mid
].unit
)
332 /* This matches a keyword. If it is found, return the token supplied,
333 otherwise return ILLEGAL. */
336 match_word (const char *word
, int tok
)
340 if (strncasecmp (p
, word
, strlen (word
)) == 0)
350 /* Match an integer and store its value in unit_num. This only works
351 if p actually points to the start of an integer. The caller has
359 unit_num
= unit_num
* 10 + (*p
++ - '0');
363 /* This reads the next token from the GFORTRAN_CONVERT_UNITS variable.
364 Returned values are the different tokens. */
388 result
= match_word ("big_endian", BIG
);
393 result
= match_word ("little_endian", LITTLE
);
398 result
= match_word ("native", NATIVE
);
403 result
= match_word ("swap", SWAP
);
406 case '1': case '2': case '3': case '4': case '5':
407 case '6': case '7': case '8': case '9':
408 result
= match_integer ();
418 /* Back up the last token by setting back the character pointer. */
426 /* This is called when a unit is identified. If do_count is nonzero,
427 increment the number of units by one. If do_count is zero,
428 put the unit into the table. */
431 mark_single (int unit
)
440 if (search_unit (unit
, &i
))
442 elist
[i
].conv
= endian
;
446 for (j
=n_elist
-1; j
>=i
; j
--)
447 elist
[j
+1] = elist
[j
];
450 elist
[i
].unit
= unit
;
451 elist
[i
].conv
= endian
;
455 /* This is called when a unit range is identified. If do_count is
456 nonzero, increase the number of units. If do_count is zero,
457 put the unit into the table. */
460 mark_range (int unit1
, int unit2
)
464 unit_count
+= abs (unit2
- unit1
) + 1;
468 for (i
=unit2
; i
<=unit1
; i
++)
471 for (i
=unit1
; i
<=unit2
; i
++)
476 /* Parse the GFORTRAN_CONVERT_UNITS variable. This is called
477 twice, once to count the units and once to actually mark them in
478 the table. When counting, we don't check for double occurrences
493 /* Parse the string. First, let's look for a default. */
498 endian
= GFC_CONVERT_NATIVE
;
502 endian
= GFC_CONVERT_SWAP
;
506 endian
= GFC_CONVERT_BIG
;
510 endian
= GFC_CONVERT_LITTLE
;
514 /* A leading digit means that we are looking at an exception.
515 Reset the position to the beginning, and continue processing
516 at the exception list. */
538 /* This isn't a default after all. Reset the position to the
539 beginning, and continue processing at the exception list. */
556 /* Loop over all exceptions. */
563 if (next_token () != ':')
565 endian
= GFC_CONVERT_NATIVE
;
569 if (next_token () != ':')
571 endian
= GFC_CONVERT_SWAP
;
575 if (next_token () != ':')
577 endian
= GFC_CONVERT_LITTLE
;
581 if (next_token () != ':')
583 endian
= GFC_CONVERT_BIG
;
598 /* We arrive here when we want to parse a list of
609 /* The number can be followed by a - and another number,
610 which means that this is a unit range, a comma
614 if (next_token () != INTEGER
)
617 mark_range (unit1
, unit_num
);
646 } while (continue_ulist
);
651 def
= GFC_CONVERT_NONE
;
655 void init_unformatted (variable
* v
)
658 val
= getenv (v
->name
);
659 def
= GFC_CONVERT_NONE
;
674 elist
= xmallocarray (unit_count
, sizeof (exception_t
));
681 /* Get the default conversion for for an unformatted unit. */
684 get_unformatted_convert (int unit
)
690 else if (search_unit (unit
, &i
))
691 return elist
[i
].conv
;