1 /* Temporary file handling for tests.
2 Copyright (C) 1998-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
19 /* This is required to get an mkstemp which can create large files on
20 some 32-bit platforms. */
21 #define _FILE_OFFSET_BITS 64
23 #include <support/temp_file.h>
24 #include <support/temp_file-internal.h>
25 #include <support/support.h>
33 /* List of temporary files. */
34 static struct temp_name_list
36 struct temp_name_list
*next
;
41 /* Location of the temporary files. Set by the test skeleton via
42 support_set_test_dir. The string is not be freed. */
43 static const char *test_dir
= _PATH_TMP
;
46 add_temp_file (const char *name
)
48 struct temp_name_list
*newp
49 = (struct temp_name_list
*) xcalloc (sizeof (*newp
), 1);
50 char *newname
= strdup (name
);
54 newp
->next
= temp_name_list
;
55 newp
->owner
= getpid ();
56 temp_name_list
= newp
;
63 create_temp_file (const char *base
, char **filename
)
68 fname
= (char *) xmalloc (strlen (test_dir
) + 1 + strlen (base
)
70 strcpy (stpcpy (stpcpy (stpcpy (fname
, test_dir
), "/"), base
), "XXXXXX");
75 printf ("cannot open temporary file '%s': %m\n", fname
);
80 add_temp_file (fname
);
89 /* Helper functions called by the test skeleton follow. */
92 support_set_test_dir (const char *path
)
98 support_delete_temp_files (void)
100 pid_t pid
= getpid ();
101 while (temp_name_list
!= NULL
)
103 /* Only perform the removal if the path was registed in the same
104 process, as identified by the PID. (This assumes that the
105 parent process which registered the temporary file sticks
106 around, to prevent PID reuse.) */
107 if (temp_name_list
->owner
== pid
)
109 if (remove (temp_name_list
->name
) != 0)
110 printf ("warning: could not remove temporary file: %s: %m\n",
111 temp_name_list
->name
);
113 free (temp_name_list
->name
);
115 struct temp_name_list
*next
= temp_name_list
->next
;
116 free (temp_name_list
);
117 temp_name_list
= next
;
122 support_print_temp_files (FILE *f
)
124 if (temp_name_list
!= NULL
)
126 struct temp_name_list
*n
;
127 fprintf (f
, "temp_files=(\n");
128 for (n
= temp_name_list
; n
!= NULL
; n
= n
->next
)
129 fprintf (f
, " '%s'\n", n
->name
);