diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-12 14:16:29 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-04-12 14:16:29 +0200 |
commit | 0cecbe7d5de237a6c699c67ae53ae2e2481eff43 (patch) | |
tree | a775f19e4b5739d688c56f633584728718e2ae40 /coreutils | |
parent | 783d57af7bb2b851c16cf87df848e0365e5052da (diff) | |
download | busybox-w32-0cecbe7d5de237a6c699c67ae53ae2e2481eff43.tar.gz busybox-w32-0cecbe7d5de237a6c699c67ae53ae2e2481eff43.tar.bz2 busybox-w32-0cecbe7d5de237a6c699c67ae53ae2e2481eff43.zip |
Sort more misplaced applets into coreutils or util-linux
No code changes
Surprisingly, nice and renice are coming from different packages :)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cal.c | 390 | ||||
-rw-r--r-- | coreutils/mktemp.c | 122 |
2 files changed, 122 insertions, 390 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c deleted file mode 100644 index af02608f0..000000000 --- a/coreutils/cal.c +++ /dev/null | |||
@@ -1,390 +0,0 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Calendar implementation for busybox | ||
4 | * | ||
5 | * See original copyright at the end of this file | ||
6 | * | ||
7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | ||
8 | */ | ||
9 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) | ||
10 | * | ||
11 | * Major size reduction... over 50% (>1.5k) on i386. | ||
12 | */ | ||
13 | //config:config CAL | ||
14 | //config: bool "cal" | ||
15 | //config: default y | ||
16 | //config: help | ||
17 | //config: cal is used to display a monthly calendar. | ||
18 | |||
19 | //applet:IF_CAL(APPLET(cal, BB_DIR_USR_BIN, BB_SUID_DROP)) | ||
20 | |||
21 | //kbuild:lib-$(CONFIG_CAL) += cal.o | ||
22 | |||
23 | /* BB_AUDIT SUSv3 compliant with -j and -y extensions (from util-linux). */ | ||
24 | /* BB_AUDIT BUG: The output of 'cal -j 1752' is incorrect. The upstream | ||
25 | * BB_AUDIT BUG: version in util-linux seems to be broken as well. */ | ||
26 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/cal.html */ | ||
27 | |||
28 | //usage:#define cal_trivial_usage | ||
29 | //usage: "[-jy] [[MONTH] YEAR]" | ||
30 | //usage:#define cal_full_usage "\n\n" | ||
31 | //usage: "Display a calendar\n" | ||
32 | //usage: "\n -j Use julian dates" | ||
33 | //usage: "\n -y Display the entire year" | ||
34 | |||
35 | #include "libbb.h" | ||
36 | #include "unicode.h" | ||
37 | |||
38 | /* We often use "unsigned" intead of "int", it's easier to div on most CPUs */ | ||
39 | |||
40 | #define THURSDAY 4 /* for reformation */ | ||
41 | #define SATURDAY 6 /* 1 Jan 1 was a Saturday */ | ||
42 | |||
43 | #define FIRST_MISSING_DAY 639787 /* 3 Sep 1752 */ | ||
44 | #define NUMBER_MISSING_DAYS 11 /* 11 day correction */ | ||
45 | |||
46 | #define MAXDAYS 42 /* max slots in a month array */ | ||
47 | #define SPACE -1 /* used in day array */ | ||
48 | |||
49 | static const unsigned char days_in_month[] ALIGN1 = { | ||
50 | 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 | ||
51 | }; | ||
52 | |||
53 | static const unsigned char sep1752[] ALIGN1 = { | ||
54 | 1, 2, 14, 15, 16, | ||
55 | 17, 18, 19, 20, 21, 22, 23, | ||
56 | 24, 25, 26, 27, 28, 29, 30 | ||
57 | }; | ||
58 | |||
59 | /* Set to 0 or 1 in main */ | ||
60 | #define julian ((unsigned)option_mask32) | ||
61 | |||
62 | /* leap year -- account for Gregorian reformation in 1752 */ | ||
63 | static int leap_year(unsigned yr) | ||
64 | { | ||
65 | if (yr <= 1752) | ||
66 | return !(yr % 4); | ||
67 | return (!(yr % 4) && (yr % 100)) || !(yr % 400); | ||
68 | } | ||
69 | |||
70 | /* number of centuries since 1700, not inclusive */ | ||
71 | #define centuries_since_1700(yr) \ | ||
72 | ((yr) > 1700 ? (yr) / 100 - 17 : 0) | ||
73 | |||
74 | /* number of centuries since 1700 whose modulo of 400 is 0 */ | ||
75 | #define quad_centuries_since_1700(yr) \ | ||
76 | ((yr) > 1600 ? ((yr) - 1600) / 400 : 0) | ||
77 | |||
78 | /* number of leap years between year 1 and this year, not inclusive */ | ||
79 | #define leap_years_since_year_1(yr) \ | ||
80 | ((yr) / 4 - centuries_since_1700(yr) + quad_centuries_since_1700(yr)) | ||
81 | |||
82 | static void center(char *, unsigned, unsigned); | ||
83 | static void day_array(unsigned, unsigned, unsigned *); | ||
84 | static void trim_trailing_spaces_and_print(char *); | ||
85 | |||
86 | static void blank_string(char *buf, size_t buflen); | ||
87 | static char *build_row(char *p, unsigned *dp); | ||
88 | |||
89 | #define DAY_LEN 3 /* 3 spaces per day */ | ||
90 | #define J_DAY_LEN (DAY_LEN + 1) | ||
91 | #define WEEK_LEN 20 /* 7 * 3 - one space at the end */ | ||
92 | #define J_WEEK_LEN (WEEK_LEN + 7) | ||
93 | #define HEAD_SEP 2 /* spaces between day headings */ | ||
94 | |||
95 | int cal_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | ||
96 | int cal_main(int argc UNUSED_PARAM, char **argv) | ||
97 | { | ||
98 | struct tm zero_tm; | ||
99 | time_t now; | ||
100 | unsigned month, year, flags, i; | ||
101 | char *month_names[12]; | ||
102 | /* normal heading: */ | ||
103 | /* "Su Mo Tu We Th Fr Sa" */ | ||
104 | /* -j heading: */ | ||
105 | /* " Su Mo Tu We Th Fr Sa" */ | ||
106 | char day_headings[ENABLE_UNICODE_SUPPORT ? 28 * 6 : 28]; | ||
107 | IF_UNICODE_SUPPORT(char *hp = day_headings;) | ||
108 | char buf[40]; | ||
109 | |||
110 | init_unicode(); | ||
111 | |||
112 | flags = getopt32(argv, "jy"); | ||
113 | /* This sets julian = flags & 1: */ | ||
114 | option_mask32 &= 1; | ||
115 | month = 0; | ||
116 | argv += optind; | ||
117 | |||
118 | if (!argv[0]) { | ||
119 | struct tm *ptm; | ||
120 | |||
121 | time(&now); | ||
122 | ptm = localtime(&now); | ||
123 | year = ptm->tm_year + 1900; | ||
124 | if (!(flags & 2)) { /* no -y */ | ||
125 | month = ptm->tm_mon + 1; | ||
126 | } | ||
127 | } else { | ||
128 | if (argv[1]) { | ||
129 | if (argv[2]) { | ||
130 | bb_show_usage(); | ||
131 | } | ||
132 | if (!(flags & 2)) { /* no -y */ | ||
133 | month = xatou_range(*argv, 1, 12); | ||
134 | } | ||
135 | argv++; | ||
136 | } | ||
137 | year = xatou_range(*argv, 1, 9999); | ||
138 | } | ||
139 | |||
140 | blank_string(day_headings, sizeof(day_headings) - 7 + 7*julian); | ||
141 | |||
142 | i = 0; | ||
143 | do { | ||
144 | zero_tm.tm_mon = i; | ||
145 | /* full month name according to locale */ | ||
146 | strftime(buf, sizeof(buf), "%B", &zero_tm); | ||
147 | month_names[i] = xstrdup(buf); | ||
148 | |||
149 | if (i < 7) { | ||
150 | zero_tm.tm_wday = i; | ||
151 | /* abbreviated weekday name according to locale */ | ||
152 | strftime(buf, sizeof(buf), "%a", &zero_tm); | ||
153 | #if ENABLE_UNICODE_SUPPORT | ||
154 | if (julian) | ||
155 | *hp++ = ' '; | ||
156 | { | ||
157 | char *two_wchars = unicode_conv_to_printable_fixedwidth(/*NULL,*/ buf, 2); | ||
158 | strcpy(hp, two_wchars); | ||
159 | free(two_wchars); | ||
160 | } | ||
161 | hp += strlen(hp); | ||
162 | *hp++ = ' '; | ||
163 | #else | ||
164 | strncpy(day_headings + i * (3+julian) + julian, buf, 2); | ||
165 | #endif | ||
166 | } | ||
167 | } while (++i < 12); | ||
168 | IF_UNICODE_SUPPORT(hp[-1] = '\0';) | ||
169 | |||
170 | if (month) { | ||
171 | unsigned row, len, days[MAXDAYS]; | ||
172 | unsigned *dp = days; | ||
173 | char lineout[30]; | ||
174 | |||
175 | day_array(month, year, dp); | ||
176 | len = sprintf(lineout, "%s %u", month_names[month - 1], year); | ||
177 | printf("%*s%s\n%s\n", | ||
178 | ((7*julian + WEEK_LEN) - len) / 2, "", | ||
179 | lineout, day_headings); | ||
180 | for (row = 0; row < 6; row++) { | ||
181 | build_row(lineout, dp)[0] = '\0'; | ||
182 | dp += 7; | ||
183 | trim_trailing_spaces_and_print(lineout); | ||
184 | } | ||
185 | } else { | ||
186 | unsigned row, which_cal, week_len, days[12][MAXDAYS]; | ||
187 | unsigned *dp; | ||
188 | char lineout[80]; | ||
189 | |||
190 | sprintf(lineout, "%u", year); | ||
191 | center(lineout, | ||
192 | (WEEK_LEN * 3 + HEAD_SEP * 2) | ||
193 | + julian * (J_WEEK_LEN * 2 + HEAD_SEP | ||
194 | - (WEEK_LEN * 3 + HEAD_SEP * 2)), | ||
195 | 0 | ||
196 | ); | ||
197 | puts("\n"); /* two \n's */ | ||
198 | for (i = 0; i < 12; i++) { | ||
199 | day_array(i + 1, year, days[i]); | ||
200 | } | ||
201 | blank_string(lineout, sizeof(lineout)); | ||
202 | week_len = WEEK_LEN + julian * (J_WEEK_LEN - WEEK_LEN); | ||
203 | for (month = 0; month < 12; month += 3-julian) { | ||
204 | center(month_names[month], week_len, HEAD_SEP); | ||
205 | if (!julian) { | ||
206 | center(month_names[month + 1], week_len, HEAD_SEP); | ||
207 | } | ||
208 | center(month_names[month + 2 - julian], week_len, 0); | ||
209 | printf("\n%s%*s%s", day_headings, HEAD_SEP, "", day_headings); | ||
210 | if (!julian) { | ||
211 | printf("%*s%s", HEAD_SEP, "", day_headings); | ||
212 | } | ||
213 | bb_putchar('\n'); | ||
214 | for (row = 0; row < (6*7); row += 7) { | ||
215 | for (which_cal = 0; which_cal < 3-julian; which_cal++) { | ||
216 | dp = days[month + which_cal] + row; | ||
217 | build_row(lineout + which_cal * (week_len + 2), dp); | ||
218 | } | ||
219 | /* blank_string took care of nul termination. */ | ||
220 | trim_trailing_spaces_and_print(lineout); | ||
221 | } | ||
222 | } | ||
223 | } | ||
224 | |||
225 | fflush_stdout_and_exit(EXIT_SUCCESS); | ||
226 | } | ||
227 | |||
228 | /* | ||
229 | * day_array -- | ||
230 | * Fill in an array of 42 integers with a calendar. Assume for a moment | ||
231 | * that you took the (maximum) 6 rows in a calendar and stretched them | ||
232 | * out end to end. You would have 42 numbers or spaces. This routine | ||
233 | * builds that array for any month from Jan. 1 through Dec. 9999. | ||
234 | */ | ||
235 | static void day_array(unsigned month, unsigned year, unsigned *days) | ||
236 | { | ||
237 | unsigned long temp; | ||
238 | unsigned i; | ||
239 | unsigned day, dw, dm; | ||
240 | |||
241 | memset(days, SPACE, MAXDAYS * sizeof(int)); | ||
242 | |||
243 | if ((month == 9) && (year == 1752)) { | ||
244 | /* Assumes the Gregorian reformation eliminates | ||
245 | * 3 Sep. 1752 through 13 Sep. 1752. | ||
246 | */ | ||
247 | unsigned j_offset = julian * 244; | ||
248 | size_t oday = 0; | ||
249 | |||
250 | do { | ||
251 | days[oday+2] = sep1752[oday] + j_offset; | ||
252 | } while (++oday < sizeof(sep1752)); | ||
253 | |||
254 | return; | ||
255 | } | ||
256 | |||
257 | /* day_in_year | ||
258 | * return the 1 based day number within the year | ||
259 | */ | ||
260 | day = 1; | ||
261 | if ((month > 2) && leap_year(year)) { | ||
262 | ++day; | ||
263 | } | ||
264 | |||
265 | i = month; | ||
266 | while (i) { | ||
267 | day += days_in_month[--i]; | ||
268 | } | ||
269 | |||
270 | /* day_in_week | ||
271 | * return the 0 based day number for any date from 1 Jan. 1 to | ||
272 | * 31 Dec. 9999. Assumes the Gregorian reformation eliminates | ||
273 | * 3 Sep. 1752 through 13 Sep. 1752. Returns Thursday for all | ||
274 | * missing days. | ||
275 | */ | ||
276 | temp = (long)(year - 1) * 365 + leap_years_since_year_1(year - 1) + day; | ||
277 | if (temp < FIRST_MISSING_DAY) { | ||
278 | dw = ((temp - 1 + SATURDAY) % 7); | ||
279 | } else { | ||
280 | dw = (((temp - 1 + SATURDAY) - NUMBER_MISSING_DAYS) % 7); | ||
281 | } | ||
282 | |||
283 | if (!julian) { | ||
284 | day = 1; | ||
285 | } | ||
286 | |||
287 | dm = days_in_month[month]; | ||
288 | if ((month == 2) && leap_year(year)) { | ||
289 | ++dm; | ||
290 | } | ||
291 | |||
292 | do { | ||
293 | days[dw++] = day++; | ||
294 | } while (--dm); | ||
295 | } | ||
296 | |||
297 | static void trim_trailing_spaces_and_print(char *s) | ||
298 | { | ||
299 | char *p = s; | ||
300 | |||
301 | while (*p) { | ||
302 | ++p; | ||
303 | } | ||
304 | while (p != s) { | ||
305 | --p; | ||
306 | if (!isspace(*p)) { | ||
307 | p[1] = '\0'; | ||
308 | break; | ||
309 | } | ||
310 | } | ||
311 | |||
312 | puts(s); | ||
313 | } | ||
314 | |||
315 | static void center(char *str, unsigned len, unsigned separate) | ||
316 | { | ||
317 | unsigned n = strlen(str); | ||
318 | len -= n; | ||
319 | printf("%*s%*s", (len/2) + n, str, (len/2) + (len % 2) + separate, ""); | ||
320 | } | ||
321 | |||
322 | static void blank_string(char *buf, size_t buflen) | ||
323 | { | ||
324 | memset(buf, ' ', buflen); | ||
325 | buf[buflen-1] = '\0'; | ||
326 | } | ||
327 | |||
328 | static char *build_row(char *p, unsigned *dp) | ||
329 | { | ||
330 | unsigned col, val, day; | ||
331 | |||
332 | memset(p, ' ', (julian + DAY_LEN) * 7); | ||
333 | |||
334 | col = 0; | ||
335 | do { | ||
336 | day = *dp++; | ||
337 | if (day != SPACE) { | ||
338 | if (julian) { | ||
339 | ++p; | ||
340 | if (day >= 100) { | ||
341 | *p = '0'; | ||
342 | p[-1] = (day / 100) + '0'; | ||
343 | day %= 100; | ||
344 | } | ||
345 | } | ||
346 | val = day / 10; | ||
347 | if (val > 0) { | ||
348 | *p = val + '0'; | ||
349 | } | ||
350 | *++p = day % 10 + '0'; | ||
351 | p += 2; | ||
352 | } else { | ||
353 | p += DAY_LEN + julian; | ||
354 | } | ||
355 | } while (++col < 7); | ||
356 | |||
357 | return p; | ||
358 | } | ||
359 | |||
360 | /* | ||
361 | * Copyright (c) 1989, 1993, 1994 | ||
362 | * The Regents of the University of California. All rights reserved. | ||
363 | * | ||
364 | * This code is derived from software contributed to Berkeley by | ||
365 | * Kim Letkeman. | ||
366 | * | ||
367 | * Redistribution and use in source and binary forms, with or without | ||
368 | * modification, are permitted provided that the following conditions | ||
369 | * are met: | ||
370 | * 1. Redistributions of source code must retain the above copyright | ||
371 | * notice, this list of conditions and the following disclaimer. | ||
372 | * 2. Redistributions in binary form must reproduce the above copyright | ||
373 | * notice, this list of conditions and the following disclaimer in the | ||
374 | * documentation and/or other materials provided with the distribution. | ||
375 | * 3. Neither the name of the University nor the names of its contributors | ||
376 | * may be used to endorse or promote products derived from this software | ||
377 | * without specific prior written permission. | ||
378 | * | ||
379 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
380 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
381 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
382 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
383 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
384 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
385 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
386 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
387 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
388 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
389 | * SUCH DAMAGE. | ||
390 | */ | ||
diff --git a/coreutils/mktemp.c b/coreutils/mktemp.c new file mode 100644 index 000000000..65353697a --- /dev/null +++ b/coreutils/mktemp.c | |||
@@ -0,0 +1,122 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Mini mktemp implementation for busybox | ||
4 | * | ||
5 | * | ||
6 | * Copyright (C) 2000 by Daniel Jacobowitz | ||
7 | * Written by Daniel Jacobowitz <dan@debian.org> | ||
8 | * | ||
9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | ||
10 | */ | ||
11 | |||
12 | /* Coreutils 6.12 man page says: | ||
13 | * mktemp [OPTION]... [TEMPLATE] | ||
14 | * Create a temporary file or directory, safely, and print its name. If | ||
15 | * TEMPLATE is not specified, use tmp.XXXXXXXXXX. | ||
16 | * -d, --directory | ||
17 | * create a directory, not a file | ||
18 | * -q, --quiet | ||
19 | * suppress diagnostics about file/dir-creation failure | ||
20 | * -u, --dry-run | ||
21 | * do not create anything; merely print a name (unsafe) | ||
22 | * --tmpdir[=DIR] | ||
23 | * interpret TEMPLATE relative to DIR. If DIR is not specified, | ||
24 | * use $TMPDIR if set, else /tmp. With this option, TEMPLATE must | ||
25 | * not be an absolute name. Unlike with -t, TEMPLATE may contain | ||
26 | * slashes, but even here, mktemp still creates only the final com- | ||
27 | * ponent. | ||
28 | * -p DIR use DIR as a prefix; implies -t [deprecated] | ||
29 | * -t interpret TEMPLATE as a single file name component, relative to | ||
30 | * a directory: $TMPDIR, if set; else the directory specified via | ||
31 | * -p; else /tmp [deprecated] | ||
32 | */ | ||
33 | //config:config MKTEMP | ||
34 | //config: bool "mktemp" | ||
35 | //config: default y | ||
36 | //config: help | ||
37 | //config: mktemp is used to create unique temporary files | ||
38 | |||
39 | //applet:IF_MKTEMP(APPLET(mktemp, BB_DIR_BIN, BB_SUID_DROP)) | ||
40 | |||
41 | //kbuild:lib-$(CONFIG_MKTEMP) += mktemp.o | ||
42 | |||
43 | //usage:#define mktemp_trivial_usage | ||
44 | //usage: "[-dt] [-p DIR] [TEMPLATE]" | ||
45 | //usage:#define mktemp_full_usage "\n\n" | ||
46 | //usage: "Create a temporary file with name based on TEMPLATE and print its name.\n" | ||
47 | //usage: "TEMPLATE must end with XXXXXX (e.g. [/dir/]nameXXXXXX).\n" | ||
48 | //usage: "Without TEMPLATE, -t tmp.XXXXXX is assumed.\n" | ||
49 | //usage: "\n -d Make directory, not file" | ||
50 | //usage: "\n -q Fail silently on errors" | ||
51 | //usage: "\n -t Prepend base directory name to TEMPLATE" | ||
52 | //usage: "\n -p DIR Use DIR as a base directory (implies -t)" | ||
53 | //usage: "\n -u Do not create anything; print a name" | ||
54 | //usage: "\n" | ||
55 | //usage: "\nBase directory is: -p DIR, else $TMPDIR, else /tmp" | ||
56 | //usage: | ||
57 | //usage:#define mktemp_example_usage | ||
58 | //usage: "$ mktemp /tmp/temp.XXXXXX\n" | ||
59 | //usage: "/tmp/temp.mWiLjM\n" | ||
60 | //usage: "$ ls -la /tmp/temp.mWiLjM\n" | ||
61 | //usage: "-rw------- 1 andersen andersen 0 Apr 25 17:10 /tmp/temp.mWiLjM\n" | ||
62 | |||
63 | #include "libbb.h" | ||
64 | |||
65 | int mktemp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | ||
66 | int mktemp_main(int argc UNUSED_PARAM, char **argv) | ||
67 | { | ||
68 | const char *path; | ||
69 | char *chp; | ||
70 | unsigned opts; | ||
71 | enum { | ||
72 | OPT_d = 1 << 0, | ||
73 | OPT_q = 1 << 1, | ||
74 | OPT_t = 1 << 2, | ||
75 | OPT_p = 1 << 3, | ||
76 | OPT_u = 1 << 4, | ||
77 | }; | ||
78 | |||
79 | path = getenv("TMPDIR"); | ||
80 | if (!path || path[0] == '\0') | ||
81 | path = "/tmp"; | ||
82 | |||
83 | opt_complementary = "?1"; /* 1 argument max */ | ||
84 | opts = getopt32(argv, "dqtp:u", &path); | ||
85 | |||
86 | chp = argv[optind]; | ||
87 | if (!chp) { | ||
88 | /* GNU coreutils 8.4: | ||
89 | * bare "mktemp" -> "mktemp -t tmp.XXXXXX" | ||
90 | */ | ||
91 | chp = xstrdup("tmp.XXXXXX"); | ||
92 | opts |= OPT_t; | ||
93 | } | ||
94 | #if 0 | ||
95 | /* Don't allow directory separator in template */ | ||
96 | if ((opts & OPT_t) && bb_basename(chp) != chp) { | ||
97 | errno = EINVAL; | ||
98 | goto error; | ||
99 | } | ||
100 | #endif | ||
101 | if (opts & (OPT_t|OPT_p)) | ||
102 | chp = concat_path_file(path, chp); | ||
103 | |||
104 | if (opts & OPT_u) { | ||
105 | chp = mktemp(chp); | ||
106 | if (chp[0] == '\0') | ||
107 | goto error; | ||
108 | } else if (opts & OPT_d) { | ||
109 | if (mkdtemp(chp) == NULL) | ||
110 | goto error; | ||
111 | } else { | ||
112 | if (mkstemp(chp) < 0) | ||
113 | goto error; | ||
114 | } | ||
115 | puts(chp); | ||
116 | return EXIT_SUCCESS; | ||
117 | error: | ||
118 | if (opts & OPT_q) | ||
119 | return EXIT_FAILURE; | ||
120 | /* don't use chp as it gets mangled in case of error */ | ||
121 | bb_perror_nomsg_and_die(); | ||
122 | } | ||