Remove unterminated comment to fix compile
[obnox/wireshark/wip.git] / tempfile.c
1 /* tempfile.c
2  * Routines to create temporary files
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <glib.h>
30
31 #include <stdlib.h>
32 #include <string.h>
33 #include <stdio.h>
34 #include <errno.h>
35
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39
40 #include "file_util.h"
41
42 #ifdef HAVE_WINDOWS_H
43 #include <windows.h>
44 #endif
45
46 #include "tempfile.h"
47 #include "mkstemp.h"
48
49 static const char *
50 setup_tmpdir(const char *dir)
51 {
52         size_t len = strlen(dir);
53         char *newdir;
54
55         /* Append path separator if necessary */
56         if (len != 0 && dir[len - 1] == G_DIR_SEPARATOR) {
57                 return dir;
58         }
59         else {
60                 newdir = g_strdup_printf("%s%s", dir, G_DIR_SEPARATOR_S);
61                 return newdir;
62         }
63 }
64
65 static int
66 try_tempfile(char *namebuf, int namebuflen, const char *dir, const char *pfx)
67 {
68         static const char suffix[] = "XXXXXXXXXX";
69         int namelen = strlen(dir) + strlen(pfx) + sizeof suffix;
70         int old_umask;
71         int tmp_fd;
72
73         g_snprintf(namebuf, namebuflen, "%s%s%s", dir, pfx, suffix);
74         if (namebuflen < namelen) {
75                 /* Stick with the truncated name, so that if this error is
76                    reported with the file name, you at least get
77                    something. */
78                 errno = ENAMETOOLONG;
79                 return -1;
80         }
81
82         /* The Single UNIX Specification doesn't say that "mkstemp()"
83            creates the temporary file with mode rw-------, so we
84            won't assume that all UNIXes will do so; instead, we set
85            the umask to 0077 to take away all group and other
86            permissions, attempt to create the file, and then put
87            the umask back. */
88         old_umask = umask(0077);
89         tmp_fd = mkstemp(namebuf);
90         umask(old_umask);
91         return tmp_fd;
92 }
93
94 static const char *tmpdir = NULL;
95 #ifdef _WIN32
96 static const char *temp = NULL;
97 #endif
98 static const char *E_tmpdir;
99
100 #ifndef P_tmpdir
101 #define P_tmpdir "/var/tmp"
102 #endif
103
104 int
105 create_tempfile(char *namebuf, int namebuflen, const char *pfx)
106 {
107         char *dir;
108         int fd;
109         static gboolean initialized;
110
111         if (!initialized) {
112                 if ((dir = getenv("TMPDIR")) != NULL)
113                         tmpdir = setup_tmpdir(dir);
114 #ifdef _WIN32
115                 if ((dir = getenv("TEMP")) != NULL)
116                         temp = setup_tmpdir(dir);
117 #endif
118
119                 E_tmpdir = setup_tmpdir(P_tmpdir);
120                 initialized = TRUE;
121         }
122
123         if (tmpdir != NULL) {
124                 fd = try_tempfile(namebuf, namebuflen, tmpdir, pfx);
125                 if (fd != -1)
126                         return fd;
127         }
128
129 #ifdef _WIN32
130         if (temp != NULL) {
131                 fd = try_tempfile(namebuf, namebuflen, temp, pfx);
132                 if (fd != -1)
133                         return fd;
134         }
135 #endif
136
137         fd = try_tempfile(namebuf, namebuflen, E_tmpdir, pfx);
138         if (fd != -1)
139                 return fd;
140
141         return try_tempfile(namebuf, namebuflen, G_DIR_SEPARATOR_S "tmp", pfx);
142 }