Release 1.2.4.
[checkpath] / tmpdir.c
CommitLineData
efa7a97b 1/* -*-c-*-
2 *
efa7a97b 3 * Choose and check temporary directories
4 *
5 * (c) 1999 Mark Wooding
6 */
7
263d6e0d 8/*----- Licensing notice --------------------------------------------------*
efa7a97b 9 *
10 * This file is part of chkpath.
11 *
12 * chkpath is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
263d6e0d 16 *
efa7a97b 17 * chkpath is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
263d6e0d 21 *
efa7a97b 22 * You should have received a copy of the GNU General Public License
23 * along with chkpath; if not, write to the Free Software Foundation,
24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
efa7a97b 27/*----- Header files ------------------------------------------------------*/
28
9c42854d
MW
29#include "config.h"
30
efa7a97b 31#include <errno.h>
7d5bdc25 32#include <ctype.h>
efa7a97b 33#include <stdio.h>
34#include <stdlib.h>
35#include <string.h>
36
37#include <sys/types.h>
38#include <sys/stat.h>
39#include <unistd.h>
40#include <pwd.h>
7d5bdc25 41#include <grp.h>
efa7a97b 42
43#include <mLib/alloc.h>
44#include <mLib/dstr.h>
d8e11317 45#include <mLib/macros.h>
efa7a97b 46#include <mLib/mdwopt.h>
47#include <mLib/quis.h>
48#include <mLib/report.h>
49
d7b5ee0c 50#include "checkpath.h"
caa14ca2 51#include "utils.h"
efa7a97b 52
53/*----- Static variables --------------------------------------------------*/
54
55static uid_t me;
d7b5ee0c 56static struct checkpath cp;
efa7a97b 57static struct passwd *pw;
58
59/*----- Main code ---------------------------------------------------------*/
60
61/* --- @ok@ --- *
62 *
63 * Arguments: @const char *p@ = pathname to check
64 * @int *f@ = try-to-create flag
65 *
66 * Returns: Nonzero if the directory is OK
67 *
68 * Use: Ensures that a directory is OK. If @f@ is a real pointer,
69 * and @*f@ is set, then try to create the directory.
70 */
71
2422994b
MW
72static void complain(const char *p, const char *msg, int err)
73{
74 dstr d = DSTR_INIT;
75
76 if (!cp.cp_verbose) return;
77 dstr_putf(&d, "Path: %s: %s", p, msg);
78 if (err) dstr_putf(&d, ": %s", strerror(err));
79 moan(d.buf);
80 dstr_destroy(&d);
81}
82
efa7a97b 83static int ok(const char *p, int *f)
84{
85 struct stat st;
86
87 /* --- Read the directory status --- */
88
89 if (lstat(p, &st)) {
90
91 /* --- Maybe create it if it doesn't exist --- */
92
2422994b
MW
93 if (errno != ENOENT || !f || !*f) {
94 complain(p, "can't stat", errno);
efa7a97b 95 return (0);
2422994b 96 }
efa7a97b 97 if (mkdir(p, 0700)) {
2422994b 98 complain(p, "can't create", errno);
efa7a97b 99 *f = 0;
100 return (0);
101 }
102
103 /* --- Now read the new status --- *
104 *
105 * This fixes a race condition between the previous @lstat@ call and
106 * the @mkdir@.
107 */
108
2422994b
MW
109 if (lstat(p, &st)) {
110 complain(p, "can't stat after creating", errno);
efa7a97b 111 return (0);
2422994b 112 }
efa7a97b 113 }
114
115 /* --- Make sure the directory is good --- *
116 *
117 * It must be a genuine directory (not a link); it must be readable
118 * and writable only by its owner, and that owner must be me.
119 */
120
2422994b
MW
121 if (!S_ISDIR(st.st_mode))
122 complain(p, "not a directory", 0);
123 else if (st.st_uid != me)
124 complain(p, "not owner", 0);
125 else if ((st.st_mode & 0777) != 0700)
126 complain(p, "non-owner access permitted", 0);
127 else
efa7a97b 128 return (1);
129 return (0);
130}
131
132/* --- @trytmp@ --- *
133 *
134 * Arguments: @const char *parent@ = parent directory name
135 * @const char *base@ = subdirectory base name
136 *
137 * Returns: Pointer to directory name, or null. (String needs freeing.)
138 *
139 * Use: Tries to find or create an appropriate temporary directory.
140 */
141
142static char *trytmp(const char *parent, const char *base)
143{
144 static char c[] = { "0123456789"
145 "abcdefghijklmnopqrstuvwxyz"
146 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" };
147 char *p, *q;
148 char *qq;
72462155 149 dstr d = DSTR_INIT;
efa7a97b 150 int createflag = 1;
151
152 /* --- Make sure the parent directory is sane --- *
153 *
154 * Must make sure that all the lead-up to the temporary directory is safe.
155 * Otherwise other people can play with symlinks or rename directories
156 * after I've done all this careful work to make the endpoint directory
157 * safe.
158 */
159
d7b5ee0c 160 if (checkpath(parent, &cp))
efa7a97b 161 return (0);
162
163 /* --- See whether the trivial version will work --- */
164
efa7a97b 165 dstr_putf(&d, "%s/%s", parent, base);
166 if (ok(d.buf, &createflag))
167 goto good;
168
169 /* --- Now try with various suffixes --- */
170
171 DENSURE(&d, 4);
172 qq = d.buf + d.len;
173 *qq++ = '-';
174
175 for (p = c; *p; p++) {
176 qq[0] = *p;
177 qq[1] = 0;
178 if (ok(d.buf, &createflag))
179 goto good;
180 for (q = c; *q; q++) {
181 qq[1] = *q;
182 qq[2] = 0;
183 if (ok(d.buf, &createflag))
184 goto good;
185 }
186 }
187
188 /* --- No joy --- */
189
190 dstr_destroy(&d);
191 return (0);
192
193good:
194 p = xstrdup(d.buf);
195 dstr_destroy(&d);
196 return (p);
197}
198
199/* --- @fullcheck@ --- *
200 *
201 * Arguments: @const char *p@ = pointer to path to check
202 *
203 * Returns: Zero if it's a bad directory.
204 *
205 * Use: Runs a thorough check on a directory.
206 */
207
208static int fullcheck(const char *p)
5dd99356 209 { return (checkpath(p, &cp) == 0 && ok(p, 0)); }
efa7a97b 210
211/* --- @goodtmp@ --- *
212 *
213 * Arguments: ---
214 *
215 * Returns: Pointer to a known-good secure temporary directory, or
216 * null.
217 *
218 * Use: Finds a good place to store temporary files.
219 */
220
221static char *goodtmp(void)
222{
223 char *p, *q;
224
225 /* --- First of all, try the user's current choice --- */
226
227 if ((p = getenv("TMPDIR")) != 0 && fullcheck(p))
228 return (p);
229
230 /* --- Try making a directory in `/tmp' --- */
231
557179af 232 if ((q = trytmp("/tmp", pw->pw_name)) != 0)
efa7a97b 233 return (q);
234
235 /* --- That failed: try a directory in the user's home --- */
236
557179af 237 if ((q = trytmp(pw->pw_dir, "tmp")) != 0)
efa7a97b 238 return (q);
239
240 /* --- Still no joy: give up --- *
241 *
242 * To be fair, if the user can't find a safe place in his own home
243 * directory then he's pretty stuffed.
244 */
245
246 return (0);
247}
248
3d62246f
MW
249/* --- @report@ --- */
250
251static void report(unsigned what, int verbose,
252 const char *p, const char *msg,
253 void *arg)
254 { moan("%s", msg); }
255
efa7a97b 256/* --- @usage@ --- */
257
258static void usage(FILE *fp)
73e1a557 259 { fprintf(fp, "Usage: %s [-bcv] [-g NAME] [-C PATH]\n", QUIS); }
efa7a97b 260
261/* --- @version@ --- */
262
263static void version(FILE *fp)
5dd99356 264 { fprintf(fp, "%s version %s\n", QUIS, VERSION); }
efa7a97b 265
266/* --- @help@ --- */
267
268static void help(FILE *fp)
269{
270 version(fp);
271 putc('\n', fp);
272 usage(fp);
273 fputs("\n\
274Sets a suitable and secure temporary directory, or checks that a given\n\
275directory is suitable for use with temporary files. A directory is\n\
276considered good for a particular user if it's readable and writable only\n\
277by that user, and if all its parents are modifiable only by the user or\n\
278root.\n\
279\n\
280Options supported:\n\
281\n\
282-h, --help Display this help text.\n\
283-V, --version Display the program's version number.\n\
284-u, --usage Display a terse usage summary.\n\
285\n\
286-b, --bourne Output a `TMPDIR' setting for Bourne shell users.\n\
287-c, --cshell Output a `TMPDIR' setting for C shell users.\n\
3d62246f 288-v, --verbose Report problems to standard error.\n\
7d5bdc25 289-g, --group NAME Trust group NAME to be honest and true.\n\
3d62246f 290-C, --check PATH Check whether PATH is good, setting exit status.\n\
efa7a97b 291\n\
292The default action is to examine the caller's shell and output a suitable\n\
293setting for that shell type.\n\
294",
295 fp);
296}
297
298/* --- @main@ --- *
299 *
300 * Arguments: @int argc@ = number of command line arguments
301 * @char *argv[]@ = the actual argument strings
302 *
303 * Returns: Zero if all went well, else nonzero.
304 *
305 * Use: Performs helpful operations on temporary directories.
306 */
307
308int main(int argc, char *argv[])
309{
310 int shell = 0;
311 int duff = 0;
d8e11317 312 char *p;
efa7a97b 313
314 enum {
315 sh_unknown,
316 sh_bourne,
317 sh_csh
318 };
319
320 /* --- Initialize variables --- */
321
322 ego(argv[0]);
cf4df2cf 323 me = cp.cp_uid = geteuid();
7d5bdc25 324 cp.cp_what = (CP_WRWORLD | CP_WROTHGRP | CP_WROTHUSR |
f159f4ca 325 CP_STICKYOK | CP_REPORT | CP_ERROR);
efa7a97b 326 cp.cp_verbose = 0;
3d62246f 327 cp.cp_report = report;
7d5bdc25 328 cp.cp_gids = 0; /* ignore group membership */
efa7a97b 329 pw = getpwuid(me);
330 if (!pw)
331 die(1, "you don't exist");
332
333 /* --- Parse arguments --- */
334
335 for (;;) {
336 static struct option opts[] = {
337 { "help", 0, 0, 'h' },
b8eb35c1 338 { "version", 0, 0, 'V' },
efa7a97b 339 { "usage", 0, 0, 'u' },
340 { "bourne", 0, 0, 'b' },
341 { "cshell", 0, 0, 'c' },
3d62246f
MW
342 { "check", OPTF_ARGREQ, 0, 'C' },
343 { "verify", OPTF_ARGREQ, 0, 'C' },
344 { "verbose", 0, 0, 'v' },
7d5bdc25
MW
345 { "trust-groups", 0, 0, 't' },
346 { "group", OPTF_ARGREQ, 0, 'g' },
efa7a97b 347 { 0, 0, 0, 0 }
348 };
8bc488f0 349 int i = mdwopt(argc, argv, "hVu" "bcvtg:C:", opts, 0, 0, 0);
efa7a97b 350
351 if (i < 0)
352 break;
353 switch (i) {
354 case 'h':
355 help(stdout);
356 exit(0);
357 case 'V':
358 version(stdout);
359 exit(0);
360 case 'u':
361 usage(stdout);
362 exit(0);
363 case 'b':
364 shell = sh_bourne;
365 break;
366 case 'c':
367 shell = sh_csh;
368 break;
3d62246f 369 case 'C':
efa7a97b 370 return (!fullcheck(optarg));
371 break;
7d5bdc25 372 case 'g':
caa14ca2 373 allowgroup(&cp, optarg);
7d5bdc25 374 break;
3d62246f
MW
375 case 'v':
376 cp.cp_verbose++;
377 break;
efa7a97b 378 default:
379 duff = 1;
380 break;
381 }
382 }
383
384 if (duff || optind != argc) {
385 usage(stderr);
386 exit(1);
387 }
388
389 /* --- Choose a shell --- */
390
391 if (!shell) {
efa7a97b 392 if (!(p = getenv("SHELL")))
393 p = pw->pw_shell;
394 if (strstr(p, "csh"))
395 shell = sh_csh;
396 else
397 shell = sh_bourne;
398 }
399
400 /* --- Start the checking --- */
401
d8e11317
MW
402 if ((p = goodtmp()) == 0)
403 die(1, "no good tmp directory");
404 switch (shell) {
405 case sh_bourne:
406 printf("TMPDIR=\"%s\"; export TMPDIR\n", p);
407 break;
408 case sh_csh:
409 printf("setenv TMPDIR \"%s\"\n", p);
efa7a97b 410 break;
b8eb35c1 411 }
efa7a97b 412
413 return (0);
414}
415
416/*----- That's all, folks -------------------------------------------------*/