2017-01-01 01:14:16 +01:00
|
|
|
/* Copyright (C) 1991-2017 Free Software Foundation, Inc.
|
1997-01-24 03:23:54 +01:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-01-24 03:23:54 +01:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
1997-01-24 03:23:54 +01:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-10 00:18:22 +01:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
1998-09-10 15:11:25 +02:00
|
|
|
static char tmpnam_buffer[L_tmpnam];
|
|
|
|
|
1996-09-28 05:24:10 +02:00
|
|
|
/* Generate a unique filename in P_tmpdir.
|
|
|
|
|
|
|
|
This function is *not* thread safe! */
|
1995-02-18 02:27:10 +01:00
|
|
|
char *
|
1996-09-28 05:24:10 +02:00
|
|
|
tmpnam (char *s)
|
1995-02-18 02:27:10 +01:00
|
|
|
{
|
1996-09-28 05:24:10 +02:00
|
|
|
/* By using two buffers we manage to be thread safe in the case
|
|
|
|
where S != NULL. */
|
2000-09-29 04:56:42 +02:00
|
|
|
char tmpbufmem[L_tmpnam];
|
2000-09-29 07:29:24 +02:00
|
|
|
char *tmpbuf = s ?: tmpbufmem;
|
1996-09-28 05:24:10 +02:00
|
|
|
|
|
|
|
/* In the following call we use the buffer pointed to by S if
|
|
|
|
non-NULL although we don't know the size. But we limit the size
|
1998-08-03 18:47:01 +02:00
|
|
|
to L_tmpnam characters in any case. */
|
2000-09-29 04:56:42 +02:00
|
|
|
if (__builtin_expect (__path_search (tmpbuf, L_tmpnam, NULL, NULL, 0),
|
|
|
|
0))
|
1998-08-03 18:47:01 +02:00
|
|
|
return NULL;
|
|
|
|
|
2014-02-10 14:45:42 +01:00
|
|
|
if (__glibc_unlikely (__gen_tempname (tmpbuf, 0, 0, __GT_NOCREATE)))
|
1998-08-03 18:47:01 +02:00
|
|
|
return NULL;
|
1996-09-28 05:24:10 +02:00
|
|
|
|
1998-08-03 18:47:01 +02:00
|
|
|
if (s == NULL)
|
1998-09-10 15:11:25 +02:00
|
|
|
return (char *) memcpy (tmpnam_buffer, tmpbuf, L_tmpnam);
|
|
|
|
|
|
|
|
return s;
|
1995-02-18 02:27:10 +01:00
|
|
|
}
|
2000-09-26 09:18:57 +02:00
|
|
|
|
|
|
|
link_warning (tmpnam,
|
|
|
|
"the use of `tmpnam' is dangerous, better use `mkstemp'")
|