1 /* vi: set sw=4 ts=4: */
3 * Mini touch implementation for busybox
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
10 /* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m, -r, -t not supported. */
11 /* http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html */
13 /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
15 * Previous version called open() and then utime(). While this will be
16 * be necessary to implement -r and -t, it currently only makes things bigger.
17 * Also, exiting on a failure was a bug. All args should be processed.
23 //config: bool "touch"
26 //config: touch is used to create or change the access and/or
27 //config: modification timestamp of specified files.
29 //applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch))
31 //kbuild:lib-$(CONFIG_TOUCH) += touch.o
33 //usage:#define touch_trivial_usage
34 //usage: "[-c]" IF_DESKTOP(" [-d DATE] [-r FILE]") " FILE [FILE]..."
35 //usage:#define touch_full_usage "\n\n"
36 //usage: "Update the last-modified date on the given FILE[s]\n"
38 //usage: "\n -c Don't create files"
40 //usage: "\n -d DT Date/time to use"
41 //usage: "\n -r FILE Use FILE's date/time"
44 //usage:#define touch_example_usage
45 //usage: "$ ls -l /tmp/foo\n"
46 //usage: "/bin/ls: /tmp/foo: No such file or directory\n"
47 //usage: "$ touch /tmp/foo\n"
48 //usage: "$ ls -l /tmp/foo\n"
49 //usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n"
51 /* This is a NOFORK applet. Be very careful! */
53 /* coreutils implements:
54 * -a change only the access time
56 * do not create any files
58 * parse STRING and use it instead of current time
59 * -f (ignored, BSD compat)
60 * -m change only the modification time
61 * -r, --reference=FILE
62 * use this file's times instead of current time
64 * use [[CC]YY]MMDDhhmm[.ss] instead of current time
66 * change the specified time: WORD is access, atime, or use
69 int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
70 int touch_main(int argc UNUSED_PARAM, char **argv)
73 int status = EXIT_SUCCESS;
77 static const char touch_longopts[] ALIGN1 =
78 /* name, has_arg, val */
79 "no-create\0" No_argument "c"
80 "reference\0" Required_argument "r"
81 "date\0" Required_argument "d"
84 char *reference_file = NULL;
85 char *date_str = NULL;
86 struct timeval timebuf[2];
87 timebuf[1].tv_usec = timebuf[0].tv_usec = 0;
89 # define reference_file NULL
90 # define date_str NULL
91 # define timebuf ((struct timeval*)NULL)
94 #if ENABLE_DESKTOP && ENABLE_LONG_OPTS
95 applet_long_options = touch_longopts;
97 /* -d and -t both set time. In coreutils,
98 * accepted data format differs a bit between -d and -t.
99 * We accept the same formats for both */
100 opts = getopt32(argv, "c" IF_DESKTOP("r:d:t:")
102 IF_DESKTOP(, &reference_file)
103 IF_DESKTOP(, &date_str)
104 IF_DESKTOP(, &date_str)
107 opts &= 1; /* only -c bit is left */
113 if (reference_file) {
115 xstat(reference_file, &stbuf);
116 timebuf[1].tv_sec = timebuf[0].tv_sec = stbuf.st_mtime;
123 //memset(&tm_time, 0, sizeof(tm_time));
124 /* Better than memset: makes "HH:MM" dates meaningful */
126 localtime_r(&t, &tm_time);
127 parse_datestr(date_str, &tm_time);
129 /* Correct any day of week and day of year etc. fields */
130 tm_time.tm_isdst = -1; /* Be sure to recheck dst */
131 t = validate_tm_time(date_str, &tm_time);
133 timebuf[1].tv_sec = timebuf[0].tv_sec = t;
137 if (utimes(*argv, (reference_file || date_str) ? timebuf : NULL) != 0) {
138 if (errno == ENOENT) { /* no such file */
139 if (opts) { /* creation is disabled, so ignore */
142 /* Try to create the file */
143 fd = open(*argv, O_RDWR | O_CREAT, 0666);
146 if (reference_file || date_str)
147 utimes(*argv, timebuf);
151 status = EXIT_FAILURE;
152 bb_simple_perror_msg(*argv);