3 * Choose and check temporary directories
5 * (c) 1999 Mark Wooding
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of chkpath.
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.
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.
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.
27 /*----- Header files ------------------------------------------------------*/
37 #include <sys/types.h>
43 #include <mLib/alloc.h>
44 #include <mLib/dstr.h>
45 #include <mLib/macros.h>
46 #include <mLib/mdwopt.h>
47 #include <mLib/quis.h>
48 #include <mLib/report.h>
50 #include "checkpath.h"
53 /*----- Static variables --------------------------------------------------*/
56 static struct checkpath cp;
57 static struct passwd *pw;
59 /*----- Main code ---------------------------------------------------------*/
63 * Arguments: @const char *p@ = pathname to check
64 * @int *f@ = try-to-create flag
66 * Returns: Nonzero if the directory is OK
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.
72 static int ok(const char *p, int *f)
76 /* --- Read the directory status --- */
80 /* --- Maybe create it if it doesn't exist --- */
82 if (errno != ENOENT || !f || !*f)
89 /* --- Now read the new status --- *
91 * This fixes a race condition between the previous @lstat@ call and
99 /* --- Make sure the directory is good --- *
101 * It must be a genuine directory (not a link); it must be readable
102 * and writable only by its owner, and that owner must be me.
105 if (S_ISDIR(st.st_mode) && (st.st_mode & 0777) == 0700 && st.st_uid == me)
110 /* --- @trytmp@ --- *
112 * Arguments: @const char *parent@ = parent directory name
113 * @const char *base@ = subdirectory base name
115 * Returns: Pointer to directory name, or null. (String needs freeing.)
117 * Use: Tries to find or create an appropriate temporary directory.
120 static char *trytmp(const char *parent, const char *base)
122 static char c[] = { "0123456789"
123 "abcdefghijklmnopqrstuvwxyz"
124 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" };
130 /* --- Make sure the parent directory is sane --- *
132 * Must make sure that all the lead-up to the temporary directory is safe.
133 * Otherwise other people can play with symlinks or rename directories
134 * after I've done all this careful work to make the endpoint directory
138 if (checkpath(parent, &cp))
141 /* --- See whether the trivial version will work --- */
143 dstr_putf(&d, "%s/%s", parent, base);
144 if (ok(d.buf, &createflag))
147 /* --- Now try with various suffixes --- */
153 for (p = c; *p; p++) {
156 if (ok(d.buf, &createflag))
158 for (q = c; *q; q++) {
161 if (ok(d.buf, &createflag))
177 /* --- @fullcheck@ --- *
179 * Arguments: @const char *p@ = pointer to path to check
181 * Returns: Zero if it's a bad directory.
183 * Use: Runs a thorough check on a directory.
186 static int fullcheck(const char *p)
187 { return (checkpath(p, &cp) == 0 && ok(p, 0)); }
189 /* --- @goodtmp@ --- *
193 * Returns: Pointer to a known-good secure temporary directory, or
196 * Use: Finds a good place to store temporary files.
199 static char *goodtmp(void)
203 /* --- First of all, try the user's current choice --- */
205 if ((p = getenv("TMPDIR")) != 0 && fullcheck(p))
208 /* --- Try making a directory in `/tmp' --- */
210 if ((q = trytmp("/tmp", pw->pw_name)) != 0)
213 /* --- That failed: try a directory in the user's home --- */
215 if ((q = trytmp(pw->pw_dir, "tmp")) != 0)
218 /* --- Still no joy: give up --- *
220 * To be fair, if the user can't find a safe place in his own home
221 * directory then he's pretty stuffed.
227 /* --- @report@ --- */
229 static void report(unsigned what, int verbose,
230 const char *p, const char *msg,
234 /* --- @usage@ --- */
236 static void usage(FILE *fp)
237 { fprintf(fp, "Usage: %s [-bcv] [-g NAME] [-C PATH]\n", QUIS); }
239 /* --- @version@ --- */
241 static void version(FILE *fp)
242 { fprintf(fp, "%s version %s\n", QUIS, VERSION); }
246 static void help(FILE *fp)
252 Sets a suitable and secure temporary directory, or checks that a given\n\
253 directory is suitable for use with temporary files. A directory is\n\
254 considered good for a particular user if it's readable and writable only\n\
255 by that user, and if all its parents are modifiable only by the user or\n\
258 Options supported:\n\
260 -h, --help Display this help text.\n\
261 -V, --version Display the program's version number.\n\
262 -u, --usage Display a terse usage summary.\n\
264 -b, --bourne Output a `TMPDIR' setting for Bourne shell users.\n\
265 -c, --cshell Output a `TMPDIR' setting for C shell users.\n\
266 -v, --verbose Report problems to standard error.\n\
267 -g, --group NAME Trust group NAME to be honest and true.\n\
268 -C, --check PATH Check whether PATH is good, setting exit status.\n\
270 The default action is to examine the caller's shell and output a suitable\n\
271 setting for that shell type.\n\
278 * Arguments: @int argc@ = number of command line arguments
279 * @char *argv[]@ = the actual argument strings
281 * Returns: Zero if all went well, else nonzero.
283 * Use: Performs helpful operations on temporary directories.
286 int main(int argc, char *argv[])
298 /* --- Initialize variables --- */
301 me = cp.cp_uid = geteuid();
302 cp.cp_what = (CP_WRWORLD | CP_WROTHGRP | CP_WROTHUSR |
303 CP_STICKYOK | CP_REPORT);
305 cp.cp_report = report;
306 cp.cp_gids = 0; /* ignore group membership */
309 die(1, "you don't exist");
311 /* --- Parse arguments --- */
314 static struct option opts[] = {
315 { "help", 0, 0, 'h' },
316 { "version", 0, 0, 'V' },
317 { "usage", 0, 0, 'u' },
318 { "bourne", 0, 0, 'b' },
319 { "cshell", 0, 0, 'c' },
320 { "check", OPTF_ARGREQ, 0, 'C' },
321 { "verify", OPTF_ARGREQ, 0, 'C' },
322 { "verbose", 0, 0, 'v' },
323 { "trust-groups", 0, 0, 't' },
324 { "group", OPTF_ARGREQ, 0, 'g' },
327 int i = mdwopt(argc, argv, "hVu" "bcvtg:C:", opts, 0, 0, 0);
348 return (!fullcheck(optarg));
351 allowgroup(&cp, optarg);
362 if (duff || optind != argc) {
367 /* --- Choose a shell --- */
370 if (!(p = getenv("SHELL")))
372 if (strstr(p, "csh"))
378 /* --- Start the checking --- */
380 if ((p = goodtmp()) == 0)
381 die(1, "no good tmp directory");
384 printf("TMPDIR=\"%s\"; export TMPDIR\n", p);
387 printf("setenv TMPDIR \"%s\"\n", p);
394 /*----- That's all, folks -------------------------------------------------*/