blob: 78100ba1dbac0ab8891155b8e3dce1ffebea3ec1 [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 Vlasenkob097a842018-12-28 03:20:17 +010016//config: bool "touch (5.9 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:
22//config:config FEATURE_TOUCH_SUSV3
Xabier Oneca520bb3e2021-04-09 23:15:29 +020023//config: bool "Add support for SUSV3 features (-a -d -m -t -r)"
walter harmsfdf514f2011-12-14 08:48:59 +010024//config: default y
25//config: depends on TOUCH
26//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020027//config: Enable touch to use a reference file or a given date/time argument.
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010028
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010029//applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch))
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010030
31//kbuild:lib-$(CONFIG_TOUCH) += touch.o
32
33//usage:#define touch_trivial_usage
Denys Vlasenko18492852021-06-13 03:12:09 +020034//usage: "[-ch" IF_FEATURE_TOUCH_SUSV3("am") "]"
Xabier Oneca520bb3e2021-04-09 23:15:29 +020035//usage: IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]")
36//usage: " FILE..."
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010037//usage:#define touch_full_usage "\n\n"
Denys Vlasenkoba9f9c22021-04-14 15:15:45 +020038//usage: "Update mtime of FILEs\n"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010039//usage: "\n -c Don't create files"
Denys Vlasenkob5352072013-09-11 11:58:33 +020040//usage: "\n -h Don't follow links"
walter harmsfdf514f2011-12-14 08:48:59 +010041//usage: IF_FEATURE_TOUCH_SUSV3(
Xabier Oneca520bb3e2021-04-09 23:15:29 +020042//usage: "\n -a Change only atime"
43//usage: "\n -m Change only mtime"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010044//usage: "\n -d DT Date/time to use"
Denys Vlasenko3ef3cc52011-12-13 16:56:47 +010045//usage: "\n -t DT Date/time to use"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010046//usage: "\n -r FILE Use FILE's date/time"
47//usage: )
48//usage:
49//usage:#define touch_example_usage
50//usage: "$ ls -l /tmp/foo\n"
51//usage: "/bin/ls: /tmp/foo: No such file or directory\n"
52//usage: "$ touch /tmp/foo\n"
53//usage: "$ ls -l /tmp/foo\n"
54//usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n"
55
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000056/* coreutils implements:
57 * -a change only the access time
58 * -c, --no-create
59 * do not create any files
60 * -d, --date=STRING
61 * parse STRING and use it instead of current time
62 * -f (ignored, BSD compat)
63 * -m change only the modification time
Denys Vlasenkob5352072013-09-11 11:58:33 +020064 * -h, --no-dereference
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000065 * -r, --reference=FILE
66 * use this file's times instead of current time
67 * -t STAMP
68 * use [[CC]YY]MMDDhhmm[.ss] instead of current time
69 * --time=WORD
70 * change the specified time: WORD is access, atime, or use
71 */
72
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010073#include "libbb.h"
74
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000075int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000076int touch_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000077{
Denys Vlasenko389cca42009-11-15 02:28:56 +010078 int fd;
Denys Vlasenko389cca42009-11-15 02:28:56 +010079 int opts;
Denys Vlasenko6f63a2b2021-04-13 15:11:47 +020080 smalluint status = EXIT_SUCCESS;
81#if ENABLE_FEATURE_TOUCH_SUSV3
Denys Vlasenko36300542021-04-13 15:41:57 +020082 char *reference_file;
83 char *date_str;
Denys Vlasenko6f63a2b2021-04-13 15:11:47 +020084 /* timebuf[0] is atime, timebuf[1] is mtime */
85 struct timespec timebuf[2];
86#else
87# define reference_file NULL
88# define date_str NULL
89# define timebuf ((struct timespec*)NULL)
90#endif
91
Denys Vlasenkob5352072013-09-11 11:58:33 +020092 enum {
93 OPT_c = (1 << 0),
Denys Vlasenko6b6ff802021-04-13 15:44:13 +020094 OPT_h = (1 << 1),
95 OPT_r = (1 << 2) * ENABLE_FEATURE_TOUCH_SUSV3,
96 OPT_d = (1 << 3) * ENABLE_FEATURE_TOUCH_SUSV3,
97 OPT_t = (1 << 4) * ENABLE_FEATURE_TOUCH_SUSV3,
98 OPT_a = (1 << 5) * ENABLE_FEATURE_TOUCH_SUSV3,
99 OPT_m = (1 << 6) * ENABLE_FEATURE_TOUCH_SUSV3,
Denys Vlasenkob5352072013-09-11 11:58:33 +0200100 };
Xabier Oneca7ec25442021-04-09 23:27:41 +0200101#if ENABLE_LONG_OPTS
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200102 static const char touch_longopts[] ALIGN1 =
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000103 /* name, has_arg, val */
Denys Vlasenko6b6ff802021-04-13 15:44:13 +0200104 "no-create\0" No_argument "c"
105 "no-dereference\0" No_argument "h"
Xabier Oneca7ec25442021-04-09 23:27:41 +0200106 IF_FEATURE_TOUCH_SUSV3("reference\0" Required_argument "r")
107 IF_FEATURE_TOUCH_SUSV3("date\0" Required_argument "d")
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000108 ;
Xabier Oneca7ec25442021-04-09 23:27:41 +0200109#endif
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200110 /* -d and -t both set time. In coreutils,
111 * accepted data format differs a bit between -d and -t.
Denys Vlasenko1a181262021-04-12 20:12:56 +0200112 * We accept the same formats for both
113 */
Xabier Onecae3c6a092021-04-10 00:11:46 +0200114 opts = getopt32long(argv, "^"
Denys Vlasenko6b6ff802021-04-13 15:44:13 +0200115 "ch"
Xabier Onecae3c6a092021-04-10 00:11:46 +0200116 IF_FEATURE_TOUCH_SUSV3("r:d:t:am")
117 /*ignored:*/ "f" IF_NOT_FEATURE_TOUCH_SUSV3("am")
118 "\0" /* opt_complementary: */
Denys Vlasenko6f63a2b2021-04-13 15:11:47 +0200119 /* at least one arg: */ "-1"
120 /* coreutils forbids -r and -t at once: */ IF_FEATURE_TOUCH_SUSV3(":r--t:t--r")
121 /* but allows these combinations: "r--d:d--r:t--d:d--t" */
122 , touch_longopts
Xabier Oneca7ec25442021-04-09 23:27:41 +0200123#if ENABLE_FEATURE_TOUCH_SUSV3
Xabier Onecae3c6a092021-04-10 00:11:46 +0200124 , &reference_file
125 , &date_str
126 , &date_str
Xabier Oneca7ec25442021-04-09 23:27:41 +0200127#endif
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200128 );
Manuel Novoa III cad53642003-03-19 09:13:01 +0000129
Denys Vlasenkoac2d4d82021-08-15 20:23:40 +0200130#if ENABLE_FEATURE_TOUCH_SUSV3
Denys Vlasenko79c92db2021-04-11 06:41:31 +0100131 timebuf[0].tv_nsec = timebuf[1].tv_nsec = UTIME_NOW;
Denys Vlasenko36300542021-04-13 15:41:57 +0200132 if (opts & OPT_r) {
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000133 struct stat stbuf;
134 xstat(reference_file, &stbuf);
Xabier Onecade1a49c2021-04-08 02:05:37 +0200135 timebuf[0].tv_sec = stbuf.st_atime;
136 timebuf[1].tv_sec = stbuf.st_mtime;
Denys Vlasenko79c92db2021-04-11 06:41:31 +0100137 timebuf[0].tv_nsec = stbuf.st_atim.tv_nsec;
138 timebuf[1].tv_nsec = stbuf.st_mtim.tv_nsec;
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000139 }
Denys Vlasenko36300542021-04-13 15:41:57 +0200140 if (opts & (OPT_d|OPT_t)) {
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200141 struct tm tm_time;
142 time_t t;
143
Denys Vlasenko92ffe052011-01-02 20:02:09 +0100144 //memset(&tm_time, 0, sizeof(tm_time));
145 /* Better than memset: makes "HH:MM" dates meaningful */
146 time(&t);
147 localtime_r(&t, &tm_time);
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200148 parse_datestr(date_str, &tm_time);
149
150 /* Correct any day of week and day of year etc. fields */
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200151 tm_time.tm_isdst = -1; /* Be sure to recheck dst */
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200152 t = validate_tm_time(date_str, &tm_time);
153
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100154 timebuf[1].tv_sec = timebuf[0].tv_sec = t;
Denys Vlasenko79c92db2021-04-11 06:41:31 +0100155 timebuf[1].tv_nsec = timebuf[0].tv_nsec = 0;
Xabier Oneca520bb3e2021-04-09 23:15:29 +0200156 }
Denys Vlasenkofe9507f2021-04-14 01:01:20 +0200157 /* If both -a and -m specified, both times should be set.
158 * IOW: set OMIT only if one, not both, of them is given!
159 */
Denys Vlasenkod156bcf2021-04-14 14:46:35 +0200160 if ((opts & (OPT_a|OPT_m)) == OPT_a)
161 timebuf[1].tv_nsec = UTIME_OMIT;
162 if ((opts & (OPT_a|OPT_m)) == OPT_m)
163 timebuf[0].tv_nsec = UTIME_OMIT;
Denys Vlasenkoac2d4d82021-08-15 20:23:40 +0200164#endif
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200165
Denys Vlasenko6f63a2b2021-04-13 15:11:47 +0200166 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000167 do {
Denys Vlasenko79c92db2021-04-11 06:41:31 +0100168 int result = utimensat(AT_FDCWD, *argv, timebuf,
169 (opts & OPT_h) ? AT_SYMLINK_NOFOLLOW : 0);
Denys Vlasenkob5352072013-09-11 11:58:33 +0200170 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) {
Denys Vlasenko9c210f02021-04-13 15:49:06 +0200179 if (opts & (OPT_r|OPT_d|OPT_t))
Denys Vlasenko79c92db2021-04-11 06:41:31 +0100180 futimens(fd, timebuf);
181 xclose(fd);
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}