1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <getopt.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
char *progname;
void
usage (int status)
{
if (status)
fprintf(stderr, "Try `%s --help' for more information.\n", progname);
else
printf("Usage: %s [OPTION]\n\
Create a temporary file in a safe manner.
\n\
-d, --directory=DIR place temporary file in DIR\n\
-p, --prefix=STRING set temporary file's prefix to STRING\n\
-s, --suffix=STRING set temporary file's suffix to STRING\n\
-m, --mode=MODE open with MODE instead of 0600\n\
-n, --name=FILE use FILE instead of tempnam(3)\n\
--help display this help and exit\n\
--version output version information and exit\n", progname);
exit(status);
}
void
syserror (const char *fx)
{
perror(fx);
exit(1);
}
int
parsemode (const char *in, mode_t *out)
{
char *endptr;
long int mode;
mode = strtol(in, &endptr, 8);
if (*endptr || mode<0 || mode>07777)
return 1;
*out = (mode_t) mode;
return 0;
}
int
main (int argc, char **argv)
{
char *name=0, *dir=0, *pfx=0, *sfx=0;
mode_t mode = 0600;
int fd, optc;
struct option long_options[] = {
{"prefix", required_argument, 0, 'p'},
{"suffix", required_argument, 0, 's'},
{"directory", required_argument, 0, 'd'},
{"mode", required_argument, 0, 'm'},
{"name", required_argument, 0, 'n'},
{"help", no_argument, 0, 'h'},
{"version", no_argument, 0, 'v'},
{0, 0, 0, 0}
};
progname = argv[0];
while ((optc = getopt_long (argc, argv, "p:s:d:m:n:", long_options, 0))
!= EOF) {
switch (optc) {
case 0:
break;
case 'p':
pfx = optarg;
break;
case 's':
sfx = optarg;
break;
case 'd':
dir = optarg;
break;
case 'm':
if (parsemode(optarg, &mode)) {
fprintf(stderr, "Invalid mode `%s'. Mode must be octal.\n", optarg);
usage(1);
}
break;
case 'n':
name = optarg;
break;
case 'h':
usage(0);
case 'v':
puts("tempfile 1.0");
exit(0);
default:
usage(1);
}
}
if (name) {
if ((fd = open(name, O_RDWR | O_CREAT | O_EXCL, mode)) < 0)
syserror("open");
}
else {
for (;;) {
if (!(name = tempnam(dir, pfx)))
syserror("tempnam");
if ((fd = open(name, O_RDWR | O_CREAT | O_EXCL, mode)) < 0) {
if (errno == EEXIST) {
free(name);
continue;
}
syserror("open");
}
if (sfx) {
char *namesfx;
if (!(namesfx = malloc(strlen(name) + strlen(sfx) + 1)))
syserror("malloc");
strcpy(namesfx, name);
strcat(namesfx, sfx);
if (link(name, namesfx) < 0) {
if (errno == EEXIST) {
if (unlink(name) < 0)
syserror("unlink");
free(name);
free(namesfx);
continue;
}
syserror("link");
}
if (unlink(name) < 0)
syserror("unlink");
free(name);
name = namesfx;
}
break;
}
}
if (close(fd))
syserror("close");
puts(name);
exit(0);
}
|