1 /* Copyright (C) 2002-2016 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 secure_getenv (const char *name
)
43 if ((getuid () == geteuid ()) && (getgid () == getegid ()))
52 /* Examine the environment for controlling aspects of the program's
53 execution. Our philosophy here that the environment should not prevent
54 the program from running, so any invalid value will be ignored. */
59 typedef struct variable
64 void (*init
) (struct variable
*);
68 static void init_unformatted (variable
*);
71 /* Initialize an integer environment variable. */
74 init_integer (variable
* v
)
83 if (!isdigit (*q
) && (p
!= q
|| *q
!= '-'))
90 /* Initialize an integer environment variable which has to be positive. */
93 init_unsigned_integer (variable
* v
)
109 /* Initialize a boolean environment variable. We only look at the first
110 letter of the value. */
113 init_boolean (variable
* v
)
117 p
= getenv (v
->name
);
121 if (*p
== '1' || *p
== 'Y' || *p
== 'y')
123 else if (*p
== '0' || *p
== 'N' || *p
== 'n')
128 /* Initialize a list output separator. It may contain any number of spaces
129 and at most one comma. */
132 init_sep (variable
* v
)
137 p
= getenv (v
->name
);
141 options
.separator
= p
;
142 options
.separator_len
= strlen (p
);
144 /* Make sure the separator is valid */
146 if (options
.separator_len
== 0)
168 options
.separator
= " ";
169 options
.separator_len
= 1;
173 static variable variable_table
[] = {
175 /* Unit number that will be preconnected to standard input */
176 { "GFORTRAN_STDIN_UNIT", GFC_STDIN_UNIT_NUMBER
, &options
.stdin_unit
,
179 /* Unit number that will be preconnected to standard output */
180 { "GFORTRAN_STDOUT_UNIT", GFC_STDOUT_UNIT_NUMBER
, &options
.stdout_unit
,
183 /* Unit number that will be preconnected to standard error */
184 { "GFORTRAN_STDERR_UNIT", GFC_STDERR_UNIT_NUMBER
, &options
.stderr_unit
,
187 /* If TRUE, all output will be unbuffered */
188 { "GFORTRAN_UNBUFFERED_ALL", 0, &options
.all_unbuffered
, init_boolean
},
190 /* If TRUE, output to preconnected units will be unbuffered */
191 { "GFORTRAN_UNBUFFERED_PRECONNECTED", 0, &options
.unbuffered_preconnected
,
194 /* Whether to print filename and line number on runtime error */
195 { "GFORTRAN_SHOW_LOCUS", 1, &options
.locus
, init_boolean
},
197 /* Print optional plus signs in numbers where permitted */
198 { "GFORTRAN_OPTIONAL_PLUS", 0, &options
.optional_plus
, init_boolean
},
200 /* Default maximum record length for sequential files */
201 { "GFORTRAN_DEFAULT_RECL", DEFAULT_RECL
, &options
.default_recl
,
202 init_unsigned_integer
},
204 /* Separator to use when writing list output */
205 { "GFORTRAN_LIST_SEPARATOR", 0, NULL
, init_sep
},
207 /* Set the default data conversion for unformatted I/O */
208 { "GFORTRAN_CONVERT_UNIT", 0, 0, init_unformatted
},
210 /* Print out a backtrace if possible on runtime error */
211 { "GFORTRAN_ERROR_BACKTRACE", -1, &options
.backtrace
, init_boolean
},
213 { NULL
, 0, NULL
, NULL
}
217 /* Initialize most runtime variables from
218 * environment variables. */
221 init_variables (void)
225 for (v
= variable_table
; v
->name
; v
++)
228 *v
->var
= v
->default_value
;
234 /* This is the handling of the GFORTRAN_CONVERT_UNITS environment variable.
235 It is called from environ.c to parse this variable, and from
236 open.c to determine if the user specified a default for an
238 The syntax of the environment variable is, in bison grammar:
240 GFORTRAN_CONVERT_UNITS: mode | mode ';' exception ;
241 mode: 'native' | 'swap' | 'big_endian' | 'little_endian' ;
242 exception: mode ':' unit_list | unit_list ;
243 unit_list: unit_spec | unit_list unit_spec ;
244 unit_spec: INTEGER | INTEGER '-' INTEGER ;
247 /* Defines for the tokens. Other valid tokens are ',', ':', '-'. */
254 /* Some space for additional tokens later. */
266 static char *p
; /* Main character pointer for parsing. */
267 static char *lastpos
; /* Auxiliary pointer, for backing up. */
268 static int unit_num
; /* The last unit number read. */
269 static int unit_count
; /* The number of units found. */
270 static int do_count
; /* Parsing is done twice - first to count the number
271 of units, then to fill in the table. This
272 variable controls what to do. */
273 static exception_t
*elist
; /* The list of exceptions to the default. This is
274 sorted according to unit number. */
275 static int n_elist
; /* Number of exceptions to the default. */
277 static unit_convert endian
; /* Current endianness. */
279 static unit_convert def
; /* Default as specified (if any). */
281 /* Search for a unit number, using a binary search. The
282 first argument is the unit number to search for. The second argument
283 is a pointer to an index.
284 If the unit number is found, the function returns 1, and the index
285 is that of the element.
286 If the unit number is not found, the function returns 0, and the
287 index is the one where the element would be inserted. */
290 search_unit (int unit
, int *ip
)
305 mid
= (low
+ high
) / 2;
306 if (unit
== elist
[mid
].unit
)
311 else if (unit
> elist
[mid
].unit
)
315 } while (low
<= high
);
317 if (unit
> elist
[mid
].unit
)
325 /* This matches a keyword. If it is found, return the token supplied,
326 otherwise return ILLEGAL. */
329 match_word (const char *word
, int tok
)
333 if (strncasecmp (p
, word
, strlen (word
)) == 0)
343 /* Match an integer and store its value in unit_num. This only works
344 if p actually points to the start of an integer. The caller has
352 unit_num
= unit_num
* 10 + (*p
++ - '0');
356 /* This reads the next token from the GFORTRAN_CONVERT_UNITS variable.
357 Returned values are the different tokens. */
381 result
= match_word ("big_endian", BIG
);
386 result
= match_word ("little_endian", LITTLE
);
391 result
= match_word ("native", NATIVE
);
396 result
= match_word ("swap", SWAP
);
399 case '1': case '2': case '3': case '4': case '5':
400 case '6': case '7': case '8': case '9':
401 result
= match_integer ();
411 /* Back up the last token by setting back the character pointer. */
419 /* This is called when a unit is identified. If do_count is nonzero,
420 increment the number of units by one. If do_count is zero,
421 put the unit into the table. */
424 mark_single (int unit
)
433 if (search_unit (unit
, &i
))
435 elist
[i
].conv
= endian
;
439 for (j
=n_elist
-1; j
>=i
; j
--)
440 elist
[j
+1] = elist
[j
];
443 elist
[i
].unit
= unit
;
444 elist
[i
].conv
= endian
;
448 /* This is called when a unit range is identified. If do_count is
449 nonzero, increase the number of units. If do_count is zero,
450 put the unit into the table. */
453 mark_range (int unit1
, int unit2
)
457 unit_count
+= abs (unit2
- unit1
) + 1;
461 for (i
=unit2
; i
<=unit1
; i
++)
464 for (i
=unit1
; i
<=unit2
; i
++)
469 /* Parse the GFORTRAN_CONVERT_UNITS variable. This is called
470 twice, once to count the units and once to actually mark them in
471 the table. When counting, we don't check for double occurrences
486 /* Parse the string. First, let's look for a default. */
491 endian
= GFC_CONVERT_NATIVE
;
495 endian
= GFC_CONVERT_SWAP
;
499 endian
= GFC_CONVERT_BIG
;
503 endian
= GFC_CONVERT_LITTLE
;
507 /* A leading digit means that we are looking at an exception.
508 Reset the position to the beginning, and continue processing
509 at the exception list. */
531 /* This isn't a default after all. Reset the position to the
532 beginning, and continue processing at the exception list. */
549 /* Loop over all exceptions. */
556 if (next_token () != ':')
558 endian
= GFC_CONVERT_NATIVE
;
562 if (next_token () != ':')
564 endian
= GFC_CONVERT_SWAP
;
568 if (next_token () != ':')
570 endian
= GFC_CONVERT_LITTLE
;
574 if (next_token () != ':')
576 endian
= GFC_CONVERT_BIG
;
591 /* We arrive here when we want to parse a list of
602 /* The number can be followed by a - and another number,
603 which means that this is a unit range, a comma
607 if (next_token () != INTEGER
)
610 mark_range (unit1
, unit_num
);
639 } while (continue_ulist
);
644 def
= GFC_CONVERT_NONE
;
648 void init_unformatted (variable
* v
)
651 val
= getenv (v
->name
);
652 def
= GFC_CONVERT_NONE
;
667 elist
= xmallocarray (unit_count
, sizeof (exception_t
));
674 /* Get the default conversion for for an unformatted unit. */
677 get_unformatted_convert (int unit
)
683 else if (search_unit (unit
, &i
))
684 return elist
[i
].conv
;