]>
git.proxmox.com Git - mirror_edk2.git/blob - StdLib/LibC/Stdio/tempnam.c
3 Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials are licensed and made available under
5 the terms and conditions of the BSD License that accompanies this distribution.
6 The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 * Copyright (c) 1988, 1993
13 * The Regents of the University of California. All rights reserved.
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 * 3. Neither the name of the University nor the names of its contributors
24 * may be used to endorse or promote products derived from this software
25 * without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 tempnam.c 8.1 (Berkeley) 6/4/93
40 NetBSD: tempnam.c,v 1.19 2005/07/27 13:23:07 drochner Exp
42 #include <LibConfig.h>
43 #include <sys/EfiCdefs.h>
45 #include "namespace.h"
46 #include <sys/param.h>
53 #include "reentrant.h"
56 __warn_references(tempnam
,
57 "warning: tempnam() possibly used unsafely, use mkstemp() or mkdtemp()")
60 trailsl(const char *f
)
65 return (f
!= s
&& s
[-1] == '/') ? "" : "/";
69 gentemp(char *name
, size_t len
, const char *tmp
, const char *pfx
)
71 (void)snprintf(name
, len
, "%s%s%sXXXX", tmp
, trailsl(tmp
), pfx
);
76 tempnam(const char *dir
, const char *pfx
)
82 if ((name
= malloc((size_t)MAXPATHLEN
)) == NULL
)
88 if ((tmp
= getenv("TMPDIR")) != NULL
&&
89 (f
= gentemp(name
, (size_t)MAXPATHLEN
, tmp
, pfx
)) != NULL
)
93 (f
= gentemp(name
, (size_t)MAXPATHLEN
, dir
, pfx
)) != NULL
)
96 //if ((f = gentemp(name, (size_t)MAXPATHLEN, P_tmpdir, pfx)) != NULL)
99 if ((f
= gentemp(name
, (size_t)MAXPATHLEN
, _PATH_TMP
, pfx
)) != NULL
)