1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2006, 2007 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include <data/file-name.h>
33 #include <data/settings.h>
34 #include <libpspp/hash.h>
35 #include <libpspp/message.h>
36 #include <libpspp/str.h>
37 #include <libpspp/verbose-msg.h>
38 #include <libpspp/version.h>
43 #define _(msgid) gettext (msgid)
48 #if defined _WIN32 || defined __WIN32__
49 #define WIN32_LEAN_AND_MEAN /* avoid including junk */
55 const char *config_path;
60 config_path = fn_getenv_default ("STAT_CONFIG_PATH", default_config_path);
63 /* Functions for performing operations on file names. */
66 /* Substitutes $variables in SRC, putting the result in DST,
67 properly handling the case where SRC is a substring of DST.
68 Variables are as defined by GETENV. Supports $var and ${var}
69 syntaxes; $$ substitutes as $. */
71 fn_interp_vars (struct substring src, const char *(*getenv) (const char *),
74 struct string dst = DS_EMPTY_INITIALIZER;
77 while ((c = ss_get_char (&src)) != EOF)
79 ds_put_char (&dst, c);
82 if (ss_match_char (&src, '$') || ss_is_empty (src))
83 ds_put_char (&dst, '$');
86 struct substring var_name;
90 if (ss_match_char (&src, '('))
91 ss_get_until (&src, ')', &var_name);
92 else if (ss_match_char (&src, '{'))
93 ss_get_until (&src, '}', &var_name);
95 ss_get_chars (&src, MAX (1, ss_span (src, ss_cstr (CC_ALNUM))),
98 start = ds_length (&dst);
99 ds_put_substring (&dst, var_name);
100 value = getenv (ds_cstr (&dst) + start);
101 ds_truncate (&dst, start);
103 ds_put_cstr (&dst, value);
107 ds_swap (&dst, dst_);
111 /* Searches for a configuration file with name NAME in the path
112 given by PATH, which is environment-interpolated.
113 Directories in PATH are delimited by ':'. Returns the
114 malloc'd full name of the first file found, or NULL if none is
117 fn_search_path (const char *base_name, const char *path_)
120 struct substring dir;
121 struct string file = DS_EMPTY_INITIALIZER;
124 if (fn_is_absolute (base_name))
125 return xstrdup (base_name);
127 /* Interpolate environment variables. */
128 ds_init_cstr (&path, path_);
129 fn_interp_vars (ds_ss (&path), fn_getenv, &path);
131 verbose_msg (2, _("searching for \"%s\" in path \"%s\""),
132 base_name, ds_cstr (&path));
133 while (ds_separate (&path, ss_cstr (":"), &save_idx, &dir))
135 /* Construct file name. */
137 ds_put_substring (&file, dir);
138 if (!ds_is_empty (&file) && !ISSLASH (ds_last (&file)))
139 ds_put_char (&file, '/');
140 ds_put_cstr (&file, base_name);
142 /* Check whether file exists. */
143 if (fn_exists (ds_cstr (&file)))
145 verbose_msg (2, _("...found \"%s\""), ds_cstr (&file));
147 return ds_cstr (&file);
152 verbose_msg (2, _("...not found"));
158 /* Returns the directory part of FILE_NAME, as a malloc()'d
161 fn_dir_name (const char *file_name)
163 return dir_name (file_name);
166 /* Returns the extension part of FILE_NAME as a malloc()'d string.
167 If FILE_NAME does not have an extension, returns an empty
170 fn_extension (const char *file_name)
172 const char *extension = strrchr (file_name, '.');
173 if (extension == NULL)
175 return xstrdup (extension);
178 /* Find out information about files. */
180 /* Returns true iff NAME specifies an absolute file name. */
182 fn_is_absolute (const char *name)
184 return IS_ABSOLUTE_FILE_NAME (name);
187 /* Returns true if FILE_NAME is a virtual file that doesn't
188 really exist on disk, false if it's a real file name. */
190 fn_is_special (const char *file_name)
192 if (!strcmp (file_name, "-") || !strcmp (file_name, "stdin")
193 || !strcmp (file_name, "stdout") || !strcmp (file_name, "stderr")
195 || file_name[0] == '|'
196 || (*file_name && file_name[strlen (file_name) - 1] == '|')
204 /* Returns true if file with name NAME exists. */
206 fn_exists (const char *name)
209 return stat (name, &temp) == 0;
212 /* Environment variables. */
214 /* Simulates $VER and $ARCH environment variables. */
216 fn_getenv (const char *s)
218 if (!strcmp (s, "VER"))
219 return fn_getenv_default ("STAT_VER", bare_version);
220 else if (!strcmp (s, "ARCH"))
221 return fn_getenv_default ("STAT_ARCH", host_system);
226 /* Returns getenv(KEY) if that's non-NULL; else returns DEF. */
228 fn_getenv_default (const char *key, const char *def)
230 const char *value = getenv (key);
231 return value ? value : def;
234 /* Basic file handling. */
237 /* Used for giving an error message on a set_safer security
240 safety_violation (const char *fn)
242 msg (SE, _("Not opening pipe file `%s' because SAFER option set."), fn);
248 /* As a general comment on the following routines, a `sensible value'
249 for errno includes 0 if there is no associated system error. The
250 routines will only set errno to 0 if there is an error in a
251 callback that sets errno to 0; they themselves won't. */
253 /* File open routine that understands `-' as stdin/stdout and `|cmd'
254 as a pipe to command `cmd'. Returns resultant FILE on success,
255 NULL on failure. If NULL is returned then errno is set to a
258 fn_open (const char *fn, const char *mode)
260 assert (mode[0] == 'r' || mode[0] == 'w' || mode[0] == 'a');
262 if (mode[0] == 'r' && (!strcmp (fn, "stdin") || !strcmp (fn, "-")))
264 else if (mode[0] == 'w' && (!strcmp (fn, "stdout") || !strcmp (fn, "-")))
266 else if (mode[0] == 'w' && !strcmp (fn, "stderr"))
272 if (settings_get_safer_mode ())
273 return safety_violation (fn);
275 return popen (&fn[1], mode[0] == 'r' ? "r" : "w");
277 else if (*fn && fn[strlen (fn) - 1] == '|')
282 if (settings_get_safer_mode ())
283 return safety_violation (fn);
285 s = xmalloca (strlen (fn));
286 memcpy (s, fn, strlen (fn) - 1);
287 s[strlen (fn) - 1] = 0;
289 f = popen (s, mode[0] == 'r' ? "r" : "w");
298 FILE *f = fopen (fn, mode);
300 if (f && mode[0] == 'w')
301 setvbuf (f, NULL, _IOLBF, 0);
307 /* Counterpart to fn_open that closes file F with name FN; returns 0
308 on success, EOF on failure. If EOF is returned, errno is set to a
311 fn_close (const char *fn, FILE *f)
313 if (fileno (f) == STDIN_FILENO
314 || fileno (f) == STDOUT_FILENO
315 || fileno (f) == STDERR_FILENO)
318 else if (fn[0] == '|' || (*fn && fn[strlen (fn) - 1] == '|'))
328 /* Creates a new file named FN with the given PERMISSIONS bits,
329 and returns a stream for it or a null pointer on failure.
330 MODE should be "w" or "wb". */
332 create_stream (const char *fn, const char *mode, mode_t permissions)
337 fd = open (fn, O_WRONLY | O_CREAT | O_TRUNC, permissions);
341 stream = fdopen (fd, mode);
344 int save_errno = errno;
352 /* A file's identity:
354 - For a file that exists, this is its device and inode.
356 - For a file that does not exist, but which has a directory
357 name that exists, this is the device and inode of the
358 directory, plus the file's base name.
360 - For a file that does not exist and has a nonexistent
361 directory, this is the file name.
363 Windows doesn't have inode numbers, so we just use the name
367 dev_t device; /* Device number. */
368 ino_t inode; /* Inode number. */
369 char *name; /* File name, where needed, otherwise NULL. */
372 /* Returns a pointer to a dynamically allocated structure whose
373 value can be used to tell whether two files are actually the
374 same file. Returns a null pointer if no information about the
375 file is available, perhaps because it does not exist. The
376 caller is responsible for freeing the structure with
377 fn_free_identity() when finished. */
378 struct file_identity *
379 fn_get_identity (const char *file_name)
381 struct file_identity *identity = xmalloc (sizeof *identity);
383 #if !(defined _WIN32 || defined __WIN32__)
385 if (lstat (file_name, &s) == 0)
387 identity->device = s.st_dev;
388 identity->inode = s.st_ino;
389 identity->name = NULL;
393 char *dir = dir_name (file_name);
394 if (last_component (file_name) != NULL && stat (dir, &s) == 0)
396 identity->device = s.st_dev;
397 identity->inode = s.st_ino;
398 identity->name = base_name (file_name);
402 identity->device = 0;
404 identity->name = xstrdup (file_name);
409 char cname[PATH_MAX];
410 int ok = GetFullPathName (file_name, sizeof cname, cname, NULL);
411 identity->device = 0;
413 identity->name = xstrdup (ok ? cname : file_name);
414 str_lowercase (identity->name);
420 /* Frees IDENTITY obtained from fn_get_identity(). */
422 fn_free_identity (struct file_identity *identity)
424 if (identity != NULL)
426 free (identity->name);
431 /* Compares A and B, returning a strcmp()-type result. */
433 fn_compare_file_identities (const struct file_identity *a,
434 const struct file_identity *b)
436 if (a->device != b->device)
437 return a->device < b->device ? -1 : 1;
438 else if (a->inode != b->inode)
439 return a->inode < b->inode ? -1 : 1;
440 else if (a->name != NULL)
441 return b->name != NULL ? strcmp (a->name, b->name) : 1;
443 return b->name != NULL ? -1 : 0;
446 /* Returns a hash value for IDENTITY. */
448 fn_hash_identity (const struct file_identity *identity)
450 unsigned int hash = identity->device ^ identity->inode;
451 if (identity->name != NULL)
452 hash ^= hsh_hash_string (identity->name);