2000-04-26 04:54:55 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini mktemp implementation for busybox
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Daniel Jacobowitz
|
|
|
|
* Written by Daniel Jacobowitz <dan@debian.org>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2000-04-26 04:54:55 +05:30
|
|
|
*/
|
|
|
|
|
2008-06-05 17:36:00 +05:30
|
|
|
/* Coreutils 6.12 man page says:
|
|
|
|
* mktemp [OPTION]... [TEMPLATE]
|
|
|
|
* Create a temporary file or directory, safely, and print its name. If
|
|
|
|
* TEMPLATE is not specified, use tmp.XXXXXXXXXX.
|
|
|
|
* -d, --directory
|
|
|
|
* create a directory, not a file
|
|
|
|
* -q, --quiet
|
|
|
|
* suppress diagnostics about file/dir-creation failure
|
|
|
|
* -u, --dry-run
|
|
|
|
* do not create anything; merely print a name (unsafe)
|
|
|
|
* --tmpdir[=DIR]
|
|
|
|
* interpret TEMPLATE relative to DIR. If DIR is not specified,
|
|
|
|
* use $TMPDIR if set, else /tmp. With this option, TEMPLATE must
|
|
|
|
* not be an absolute name. Unlike with -t, TEMPLATE may contain
|
|
|
|
* slashes, but even here, mktemp still creates only the final com-
|
|
|
|
* ponent.
|
|
|
|
* -p DIR use DIR as a prefix; implies -t [deprecated]
|
|
|
|
* -t interpret TEMPLATE as a single file name component, relative to
|
|
|
|
* a directory: $TMPDIR, if set; else the directory specified via
|
|
|
|
* -p; else /tmp [deprecated]
|
|
|
|
*/
|
2015-10-19 04:22:26 +05:30
|
|
|
//config:config MKTEMP
|
|
|
|
//config: bool "mktemp"
|
|
|
|
//config: default y
|
|
|
|
//config: help
|
|
|
|
//config: mktemp is used to create unique temporary files
|
|
|
|
|
|
|
|
//applet:IF_MKTEMP(APPLET(mktemp, BB_DIR_BIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_MKTEMP) += mktemp.o
|
2008-06-05 17:36:00 +05:30
|
|
|
|
2011-02-13 22:08:34 +05:30
|
|
|
//usage:#define mktemp_trivial_usage
|
|
|
|
//usage: "[-dt] [-p DIR] [TEMPLATE]"
|
|
|
|
//usage:#define mktemp_full_usage "\n\n"
|
|
|
|
//usage: "Create a temporary file with name based on TEMPLATE and print its name.\n"
|
|
|
|
//usage: "TEMPLATE must end with XXXXXX (e.g. [/dir/]nameXXXXXX).\n"
|
|
|
|
//usage: "Without TEMPLATE, -t tmp.XXXXXX is assumed.\n"
|
|
|
|
//usage: "\n -d Make directory, not file"
|
2012-10-08 15:17:22 +05:30
|
|
|
//usage: "\n -q Fail silently on errors"
|
2011-02-13 22:08:34 +05:30
|
|
|
//usage: "\n -t Prepend base directory name to TEMPLATE"
|
|
|
|
//usage: "\n -p DIR Use DIR as a base directory (implies -t)"
|
2012-04-17 19:30:20 +05:30
|
|
|
//usage: "\n -u Do not create anything; print a name"
|
2011-02-13 22:08:34 +05:30
|
|
|
//usage: "\n"
|
|
|
|
//usage: "\nBase directory is: -p DIR, else $TMPDIR, else /tmp"
|
|
|
|
//usage:
|
|
|
|
//usage:#define mktemp_example_usage
|
|
|
|
//usage: "$ mktemp /tmp/temp.XXXXXX\n"
|
|
|
|
//usage: "/tmp/temp.mWiLjM\n"
|
|
|
|
//usage: "$ ls -la /tmp/temp.mWiLjM\n"
|
|
|
|
//usage: "-rw------- 1 andersen andersen 0 Apr 25 17:10 /tmp/temp.mWiLjM\n"
|
2008-06-05 17:36:00 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-04-26 04:54:55 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int mktemp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int mktemp_main(int argc UNUSED_PARAM, char **argv)
|
2000-04-26 04:54:55 +05:30
|
|
|
{
|
2008-02-09 11:56:53 +05:30
|
|
|
const char *path;
|
2006-10-10 20:58:41 +05:30
|
|
|
char *chp;
|
2010-06-18 06:46:27 +05:30
|
|
|
unsigned opts;
|
2011-02-13 22:08:34 +05:30
|
|
|
enum {
|
|
|
|
OPT_d = 1 << 0,
|
|
|
|
OPT_q = 1 << 1,
|
|
|
|
OPT_t = 1 << 2,
|
|
|
|
OPT_p = 1 << 3,
|
2012-04-17 19:30:20 +05:30
|
|
|
OPT_u = 1 << 4,
|
2011-02-13 22:08:34 +05:30
|
|
|
};
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2010-06-18 06:46:27 +05:30
|
|
|
path = getenv("TMPDIR");
|
|
|
|
if (!path || path[0] == '\0')
|
|
|
|
path = "/tmp";
|
|
|
|
|
2008-06-05 17:36:00 +05:30
|
|
|
opt_complementary = "?1"; /* 1 argument max */
|
2012-04-17 19:30:20 +05:30
|
|
|
opts = getopt32(argv, "dqtp:u", &path);
|
2006-10-10 20:58:41 +05:30
|
|
|
|
2011-02-13 22:08:34 +05:30
|
|
|
chp = argv[optind];
|
|
|
|
if (!chp) {
|
|
|
|
/* GNU coreutils 8.4:
|
|
|
|
* bare "mktemp" -> "mktemp -t tmp.XXXXXX"
|
|
|
|
*/
|
|
|
|
chp = xstrdup("tmp.XXXXXX");
|
|
|
|
opts |= OPT_t;
|
|
|
|
}
|
2012-10-08 15:17:22 +05:30
|
|
|
#if 0
|
|
|
|
/* Don't allow directory separator in template */
|
|
|
|
if ((opts & OPT_t) && bb_basename(chp) != chp) {
|
|
|
|
errno = EINVAL;
|
|
|
|
goto error;
|
2012-04-17 19:30:20 +05:30
|
|
|
}
|
2012-10-08 15:17:22 +05:30
|
|
|
#endif
|
2011-02-13 22:08:34 +05:30
|
|
|
if (opts & (OPT_t|OPT_p))
|
2010-07-12 07:13:39 +05:30
|
|
|
chp = concat_path_file(path, chp);
|
2006-10-10 20:58:41 +05:30
|
|
|
|
2012-10-08 15:17:22 +05:30
|
|
|
if (opts & OPT_u) {
|
|
|
|
chp = mktemp(chp);
|
|
|
|
if (chp[0] == '\0')
|
|
|
|
goto error;
|
|
|
|
} else if (opts & OPT_d) {
|
2006-10-10 20:58:41 +05:30
|
|
|
if (mkdtemp(chp) == NULL)
|
2012-10-08 15:17:22 +05:30
|
|
|
goto error;
|
2006-10-10 20:58:41 +05:30
|
|
|
} else {
|
|
|
|
if (mkstemp(chp) < 0)
|
2012-10-08 15:17:22 +05:30
|
|
|
goto error;
|
2003-04-26 10:26:17 +05:30
|
|
|
}
|
2006-10-10 20:58:41 +05:30
|
|
|
puts(chp);
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
2012-10-08 15:17:22 +05:30
|
|
|
error:
|
|
|
|
if (opts & OPT_q)
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
/* don't use chp as it gets mangled in case of error */
|
|
|
|
bb_perror_nomsg_and_die();
|
2000-04-26 04:54:55 +05:30
|
|
|
}
|