blob: 11b40d4276ccc7d0d5eec1af270d6fe30cea0c73 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen596e5461999-10-07 08:30:23 +00002/*
3 * Mini touch implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen596e5461999-10-07 08:30:23 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen596e5461999-10-07 08:30:23 +00008 */
Manuel Novoa III cad53642003-03-19 09:13:01 +00009/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
10 *
11 * Previous version called open() and then utime(). While this will be
12 * be necessary to implement -r and -t, it currently only makes things bigger.
13 * Also, exiting on a failure was a bug. All args should be processed.
14 */
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010015//config:config TOUCH
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020016//config: bool "touch (5.8 kb)"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010017//config: default y
18//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020019//config: touch is used to create or change the access and/or
20//config: modification timestamp of specified files.
walter harmsfdf514f2011-12-14 08:48:59 +010021//config:
Denys Vlasenkob5352072013-09-11 11:58:33 +020022//config:config FEATURE_TOUCH_NODEREF
23//config: bool "Add support for -h"
24//config: default y
25//config: depends on TOUCH
26//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020027//config: Enable touch to have the -h option.
28//config: This requires libc support for lutimes() function.
Denys Vlasenkob5352072013-09-11 11:58:33 +020029//config:
walter harmsfdf514f2011-12-14 08:48:59 +010030//config:config FEATURE_TOUCH_SUSV3
31//config: bool "Add support for SUSV3 features (-d -t -r)"
32//config: default y
33//config: depends on TOUCH
34//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020035//config: Enable touch to use a reference file or a given date/time argument.
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010036
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010037//applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch))
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010038
39//kbuild:lib-$(CONFIG_TOUCH) += touch.o
40
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010041/* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m not supported. */
42/* http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html */
43
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010044//usage:#define touch_trivial_usage
walter harmsfdf514f2011-12-14 08:48:59 +010045//usage: "[-c]" IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") " FILE..."
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010046//usage:#define touch_full_usage "\n\n"
47//usage: "Update the last-modified date on the given FILE[s]\n"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010048//usage: "\n -c Don't create files"
Denys Vlasenkob5352072013-09-11 11:58:33 +020049//usage: IF_FEATURE_TOUCH_NODEREF(
50//usage: "\n -h Don't follow links"
51//usage: )
walter harmsfdf514f2011-12-14 08:48:59 +010052//usage: IF_FEATURE_TOUCH_SUSV3(
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010053//usage: "\n -d DT Date/time to use"
Denys Vlasenko3ef3cc52011-12-13 16:56:47 +010054//usage: "\n -t DT Date/time to use"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010055//usage: "\n -r FILE Use FILE's date/time"
56//usage: )
57//usage:
58//usage:#define touch_example_usage
59//usage: "$ ls -l /tmp/foo\n"
60//usage: "/bin/ls: /tmp/foo: No such file or directory\n"
61//usage: "$ touch /tmp/foo\n"
62//usage: "$ ls -l /tmp/foo\n"
63//usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n"
64
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000065/* coreutils implements:
66 * -a change only the access time
67 * -c, --no-create
68 * do not create any files
69 * -d, --date=STRING
70 * parse STRING and use it instead of current time
71 * -f (ignored, BSD compat)
72 * -m change only the modification time
Denys Vlasenkob5352072013-09-11 11:58:33 +020073 * -h, --no-dereference
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000074 * -r, --reference=FILE
75 * use this file's times instead of current time
76 * -t STAMP
77 * use [[CC]YY]MMDDhhmm[.ss] instead of current time
78 * --time=WORD
79 * change the specified time: WORD is access, atime, or use
80 */
81
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010082#include "libbb.h"
83
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000084int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000085int touch_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000086{
Denys Vlasenko389cca42009-11-15 02:28:56 +010087 int fd;
88 int status = EXIT_SUCCESS;
89 int opts;
Denys Vlasenkob5352072013-09-11 11:58:33 +020090 enum {
91 OPT_c = (1 << 0),
92 OPT_r = (1 << 1) * ENABLE_FEATURE_TOUCH_SUSV3,
93 OPT_d = (1 << 2) * ENABLE_FEATURE_TOUCH_SUSV3,
94 OPT_t = (1 << 3) * ENABLE_FEATURE_TOUCH_SUSV3,
95 OPT_h = (1 << 4) * ENABLE_FEATURE_TOUCH_NODEREF,
96 };
walter harmsfdf514f2011-12-14 08:48:59 +010097#if ENABLE_FEATURE_TOUCH_SUSV3
Denys Vlasenko7aca89a2009-07-18 03:41:29 +020098# if ENABLE_LONG_OPTS
99 static const char touch_longopts[] ALIGN1 =
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000100 /* name, has_arg, val */
101 "no-create\0" No_argument "c"
102 "reference\0" Required_argument "r"
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200103 "date\0" Required_argument "d"
Denys Vlasenkob5352072013-09-11 11:58:33 +0200104 IF_FEATURE_TOUCH_NODEREF("no-dereference\0" No_argument "h")
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000105 ;
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200106# endif
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000107 char *reference_file = NULL;
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200108 char *date_str = NULL;
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100109 struct timeval timebuf[2];
110 timebuf[1].tv_usec = timebuf[0].tv_usec = 0;
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000111#else
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200112# define reference_file NULL
113# define date_str NULL
Denys Vlasenkod0f9d0e2009-11-30 11:36:14 +0100114# define timebuf ((struct timeval*)NULL)
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000115#endif
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000116
walter harmsfdf514f2011-12-14 08:48:59 +0100117#if ENABLE_FEATURE_TOUCH_SUSV3 && ENABLE_LONG_OPTS
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200118 applet_long_options = touch_longopts;
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000119#endif
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200120 /* -d and -t both set time. In coreutils,
121 * accepted data format differs a bit between -d and -t.
122 * We accept the same formats for both */
walter harmsfdf514f2011-12-14 08:48:59 +0100123 opts = getopt32(argv, "c" IF_FEATURE_TOUCH_SUSV3("r:d:t:")
Denys Vlasenkob5352072013-09-11 11:58:33 +0200124 IF_FEATURE_TOUCH_NODEREF("h")
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000125 /*ignored:*/ "fma"
walter harmsfdf514f2011-12-14 08:48:59 +0100126 IF_FEATURE_TOUCH_SUSV3(, &reference_file)
127 IF_FEATURE_TOUCH_SUSV3(, &date_str)
128 IF_FEATURE_TOUCH_SUSV3(, &date_str)
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200129 );
Manuel Novoa III cad53642003-03-19 09:13:01 +0000130
131 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000132 if (!*argv) {
133 bb_show_usage();
Eric Andersen5a0a2aa2000-06-02 23:26:44 +0000134 }
135
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000136 if (reference_file) {
137 struct stat stbuf;
138 xstat(reference_file, &stbuf);
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100139 timebuf[1].tv_sec = timebuf[0].tv_sec = stbuf.st_mtime;
Denys Vlasenkob5352072013-09-11 11:58:33 +0200140 /* Can use .st_mtim.tv_nsec
141 * (or is it .st_mtimensec?? see date.c)
142 * to set microseconds too.
143 */
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000144 }
145
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200146 if (date_str) {
147 struct tm tm_time;
148 time_t t;
149
Denys Vlasenko92ffe052011-01-02 20:02:09 +0100150 //memset(&tm_time, 0, sizeof(tm_time));
151 /* Better than memset: makes "HH:MM" dates meaningful */
152 time(&t);
153 localtime_r(&t, &tm_time);
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200154 parse_datestr(date_str, &tm_time);
155
156 /* Correct any day of week and day of year etc. fields */
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200157 tm_time.tm_isdst = -1; /* Be sure to recheck dst */
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200158 t = validate_tm_time(date_str, &tm_time);
159
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100160 timebuf[1].tv_sec = timebuf[0].tv_sec = t;
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200161 }
162
Manuel Novoa III cad53642003-03-19 09:13:01 +0000163 do {
Denys Vlasenkob5352072013-09-11 11:58:33 +0200164 int result;
165 result = (
166#if ENABLE_FEATURE_TOUCH_NODEREF
167 (opts & OPT_h) ? lutimes :
168#endif
169 utimes)(*argv, (reference_file || date_str) ? timebuf : NULL);
170 if (result != 0) {
171 if (errno == ENOENT) { /* no such file? */
172 if (opts & OPT_c) {
173 /* Creation is disabled, so ignore */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000174 continue;
175 }
Denys Vlasenkod0f9d0e2009-11-30 11:36:14 +0100176 /* Try to create the file */
177 fd = open(*argv, O_RDWR | O_CREAT, 0666);
178 if (fd >= 0) {
179 xclose(fd);
Mikhail Gusarov927e4bb2010-03-21 14:22:47 +0600180 if (reference_file || date_str)
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100181 utimes(*argv, timebuf);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000182 continue;
183 }
184 }
185 status = EXIT_FAILURE;
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000186 bb_simple_perror_msg(*argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +0000187 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 } while (*++argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189
Manuel Novoa III cad53642003-03-19 09:13:01 +0000190 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +0000191}