Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini touch implementation for busybox |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 8 | */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 9 | /* 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 Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 15 | //config:config TOUCH |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 16 | //config: bool "touch (5.9 kb)" |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 17 | //config: default y |
| 18 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 19 | //config: touch is used to create or change the access and/or |
| 20 | //config: modification timestamp of specified files. |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 21 | //config: |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 22 | //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 Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 27 | //config: Enable touch to have the -h option. |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 28 | //config: |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 29 | //config:config FEATURE_TOUCH_SUSV3 |
Xabier Oneca | 520bb3e | 2021-04-09 23:15:29 +0200 | [diff] [blame] | 30 | //config: bool "Add support for SUSV3 features (-a -d -m -t -r)" |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 31 | //config: default y |
| 32 | //config: depends on TOUCH |
| 33 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 34 | //config: Enable touch to use a reference file or a given date/time argument. |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 35 | |
Denys Vlasenko | b9f2d9f | 2011-01-18 13:58:01 +0100 | [diff] [blame] | 36 | //applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch)) |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 37 | |
| 38 | //kbuild:lib-$(CONFIG_TOUCH) += touch.o |
| 39 | |
| 40 | //usage:#define touch_trivial_usage |
Xabier Oneca | 520bb3e | 2021-04-09 23:15:29 +0200 | [diff] [blame] | 41 | //usage: "[-c" IF_FEATURE_TOUCH_SUSV3("am") "]" |
| 42 | //usage: IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") |
| 43 | //usage: " FILE..." |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 44 | //usage:#define touch_full_usage "\n\n" |
| 45 | //usage: "Update the last-modified date on the given FILE[s]\n" |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 46 | //usage: "\n -c Don't create files" |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 47 | //usage: IF_FEATURE_TOUCH_NODEREF( |
| 48 | //usage: "\n -h Don't follow links" |
| 49 | //usage: ) |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 50 | //usage: IF_FEATURE_TOUCH_SUSV3( |
Xabier Oneca | 520bb3e | 2021-04-09 23:15:29 +0200 | [diff] [blame] | 51 | //usage: "\n -a Change only atime" |
| 52 | //usage: "\n -m Change only mtime" |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 53 | //usage: "\n -d DT Date/time to use" |
Denys Vlasenko | 3ef3cc5 | 2011-12-13 16:56:47 +0100 | [diff] [blame] | 54 | //usage: "\n -t DT Date/time to use" |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 55 | //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 Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 65 | /* 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 Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 73 | * -h, --no-dereference |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 74 | * -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 Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 82 | #include "libbb.h" |
| 83 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 84 | int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 85 | int touch_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 86 | { |
Denys Vlasenko | 389cca4 | 2009-11-15 02:28:56 +0100 | [diff] [blame] | 87 | int fd; |
Denys Vlasenko | 389cca4 | 2009-11-15 02:28:56 +0100 | [diff] [blame] | 88 | int opts; |
Denys Vlasenko | 6f63a2b | 2021-04-13 15:11:47 +0200 | [diff] [blame] | 89 | smalluint status = EXIT_SUCCESS; |
| 90 | #if ENABLE_FEATURE_TOUCH_SUSV3 |
Denys Vlasenko | 3630054 | 2021-04-13 15:41:57 +0200 | [diff] [blame^] | 91 | char *reference_file; |
| 92 | char *date_str; |
Denys Vlasenko | 6f63a2b | 2021-04-13 15:11:47 +0200 | [diff] [blame] | 93 | /* timebuf[0] is atime, timebuf[1] is mtime */ |
| 94 | struct timespec timebuf[2]; |
| 95 | #else |
| 96 | # define reference_file NULL |
| 97 | # define date_str NULL |
| 98 | # define timebuf ((struct timespec*)NULL) |
| 99 | #endif |
| 100 | |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 101 | enum { |
| 102 | OPT_c = (1 << 0), |
Denys Vlasenko | 1a18126 | 2021-04-12 20:12:56 +0200 | [diff] [blame] | 103 | OPT_h = (1 << 1) * ENABLE_FEATURE_TOUCH_NODEREF, |
| 104 | OPT_r = (1 << (1+ENABLE_FEATURE_TOUCH_NODEREF)) * ENABLE_FEATURE_TOUCH_SUSV3, |
| 105 | OPT_d = (1 << (2+ENABLE_FEATURE_TOUCH_NODEREF)) * ENABLE_FEATURE_TOUCH_SUSV3, |
| 106 | OPT_t = (1 << (3+ENABLE_FEATURE_TOUCH_NODEREF)) * ENABLE_FEATURE_TOUCH_SUSV3, |
| 107 | OPT_a = (1 << (4+ENABLE_FEATURE_TOUCH_NODEREF)) * ENABLE_FEATURE_TOUCH_SUSV3, |
| 108 | OPT_m = (1 << (5+ENABLE_FEATURE_TOUCH_NODEREF)) * ENABLE_FEATURE_TOUCH_SUSV3, |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 109 | }; |
Xabier Oneca | 7ec2544 | 2021-04-09 23:27:41 +0200 | [diff] [blame] | 110 | #if ENABLE_LONG_OPTS |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 111 | static const char touch_longopts[] ALIGN1 = |
Denis Vlasenko | 7241e6d | 2009-03-15 01:28:30 +0000 | [diff] [blame] | 112 | /* name, has_arg, val */ |
| 113 | "no-create\0" No_argument "c" |
Xabier Oneca | 7ec2544 | 2021-04-09 23:27:41 +0200 | [diff] [blame] | 114 | IF_FEATURE_TOUCH_SUSV3("reference\0" Required_argument "r") |
| 115 | IF_FEATURE_TOUCH_SUSV3("date\0" Required_argument "d") |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 116 | IF_FEATURE_TOUCH_NODEREF("no-dereference\0" No_argument "h") |
Denis Vlasenko | 7241e6d | 2009-03-15 01:28:30 +0000 | [diff] [blame] | 117 | ; |
Xabier Oneca | 7ec2544 | 2021-04-09 23:27:41 +0200 | [diff] [blame] | 118 | #endif |
Denys Vlasenko | 38dd8aa | 2009-07-18 04:49:20 +0200 | [diff] [blame] | 119 | /* -d and -t both set time. In coreutils, |
| 120 | * accepted data format differs a bit between -d and -t. |
Denys Vlasenko | 1a18126 | 2021-04-12 20:12:56 +0200 | [diff] [blame] | 121 | * We accept the same formats for both |
| 122 | */ |
Xabier Oneca | e3c6a09 | 2021-04-10 00:11:46 +0200 | [diff] [blame] | 123 | opts = getopt32long(argv, "^" |
| 124 | "c" IF_FEATURE_TOUCH_NODEREF("h") |
| 125 | IF_FEATURE_TOUCH_SUSV3("r:d:t:am") |
| 126 | /*ignored:*/ "f" IF_NOT_FEATURE_TOUCH_SUSV3("am") |
| 127 | "\0" /* opt_complementary: */ |
Denys Vlasenko | 6f63a2b | 2021-04-13 15:11:47 +0200 | [diff] [blame] | 128 | /* at least one arg: */ "-1" |
| 129 | /* coreutils forbids -r and -t at once: */ IF_FEATURE_TOUCH_SUSV3(":r--t:t--r") |
| 130 | /* but allows these combinations: "r--d:d--r:t--d:d--t" */ |
| 131 | , touch_longopts |
Xabier Oneca | 7ec2544 | 2021-04-09 23:27:41 +0200 | [diff] [blame] | 132 | #if ENABLE_FEATURE_TOUCH_SUSV3 |
Xabier Oneca | e3c6a09 | 2021-04-10 00:11:46 +0200 | [diff] [blame] | 133 | , &reference_file |
| 134 | , &date_str |
| 135 | , &date_str |
Xabier Oneca | 7ec2544 | 2021-04-09 23:27:41 +0200 | [diff] [blame] | 136 | #endif |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 137 | ); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 138 | |
Denys Vlasenko | 79c92db | 2021-04-11 06:41:31 +0100 | [diff] [blame] | 139 | timebuf[0].tv_nsec = timebuf[1].tv_nsec = UTIME_NOW; |
Denys Vlasenko | 3630054 | 2021-04-13 15:41:57 +0200 | [diff] [blame^] | 140 | if (opts & OPT_r) { |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 141 | struct stat stbuf; |
| 142 | xstat(reference_file, &stbuf); |
Xabier Oneca | de1a49c | 2021-04-08 02:05:37 +0200 | [diff] [blame] | 143 | timebuf[0].tv_sec = stbuf.st_atime; |
| 144 | timebuf[1].tv_sec = stbuf.st_mtime; |
Denys Vlasenko | 79c92db | 2021-04-11 06:41:31 +0100 | [diff] [blame] | 145 | timebuf[0].tv_nsec = stbuf.st_atim.tv_nsec; |
| 146 | timebuf[1].tv_nsec = stbuf.st_mtim.tv_nsec; |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 147 | } |
Denys Vlasenko | 3630054 | 2021-04-13 15:41:57 +0200 | [diff] [blame^] | 148 | if (opts & (OPT_d|OPT_t)) { |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 149 | struct tm tm_time; |
| 150 | time_t t; |
| 151 | |
Denys Vlasenko | 92ffe05 | 2011-01-02 20:02:09 +0100 | [diff] [blame] | 152 | //memset(&tm_time, 0, sizeof(tm_time)); |
| 153 | /* Better than memset: makes "HH:MM" dates meaningful */ |
| 154 | time(&t); |
| 155 | localtime_r(&t, &tm_time); |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 156 | parse_datestr(date_str, &tm_time); |
| 157 | |
| 158 | /* Correct any day of week and day of year etc. fields */ |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 159 | tm_time.tm_isdst = -1; /* Be sure to recheck dst */ |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 160 | t = validate_tm_time(date_str, &tm_time); |
| 161 | |
Denys Vlasenko | dcbfaba | 2009-11-29 19:40:36 +0100 | [diff] [blame] | 162 | timebuf[1].tv_sec = timebuf[0].tv_sec = t; |
Denys Vlasenko | 79c92db | 2021-04-11 06:41:31 +0100 | [diff] [blame] | 163 | timebuf[1].tv_nsec = timebuf[0].tv_nsec = 0; |
Xabier Oneca | 520bb3e | 2021-04-09 23:15:29 +0200 | [diff] [blame] | 164 | } |
Denys Vlasenko | 79c92db | 2021-04-11 06:41:31 +0100 | [diff] [blame] | 165 | if (opts & OPT_a) { |
| 166 | timebuf[1].tv_nsec = UTIME_OMIT; |
| 167 | } |
| 168 | if (opts & OPT_m) { |
| 169 | timebuf[0].tv_nsec = UTIME_OMIT; |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 170 | } |
| 171 | |
Denys Vlasenko | 6f63a2b | 2021-04-13 15:11:47 +0200 | [diff] [blame] | 172 | argv += optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 173 | do { |
Denys Vlasenko | 79c92db | 2021-04-11 06:41:31 +0100 | [diff] [blame] | 174 | int result = utimensat(AT_FDCWD, *argv, timebuf, |
| 175 | (opts & OPT_h) ? AT_SYMLINK_NOFOLLOW : 0); |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 176 | if (result != 0) { |
| 177 | if (errno == ENOENT) { /* no such file? */ |
| 178 | if (opts & OPT_c) { |
| 179 | /* Creation is disabled, so ignore */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 180 | continue; |
| 181 | } |
Denys Vlasenko | d0f9d0e | 2009-11-30 11:36:14 +0100 | [diff] [blame] | 182 | /* Try to create the file */ |
| 183 | fd = open(*argv, O_RDWR | O_CREAT, 0666); |
| 184 | if (fd >= 0) { |
Mikhail Gusarov | 927e4bb | 2010-03-21 14:22:47 +0600 | [diff] [blame] | 185 | if (reference_file || date_str) |
Denys Vlasenko | 79c92db | 2021-04-11 06:41:31 +0100 | [diff] [blame] | 186 | futimens(fd, timebuf); |
| 187 | xclose(fd); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 188 | continue; |
| 189 | } |
| 190 | } |
| 191 | status = EXIT_FAILURE; |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 192 | bb_simple_perror_msg(*argv); |
Eric Andersen | 5a0a2aa | 2000-06-02 23:26:44 +0000 | [diff] [blame] | 193 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 194 | } while (*++argv); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 195 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 196 | return status; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 197 | } |