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 | */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 9 | |
Denys Vlasenko | 3ef3cc5 | 2011-12-13 16:56:47 +0100 | [diff] [blame] | 10 | /* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m not supported. */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html */ |
| 12 | |
| 13 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 14 | * |
| 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. |
| 18 | */ |
| 19 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 20 | #include "libbb.h" |
Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 21 | |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 22 | //config:config TOUCH |
| 23 | //config: bool "touch" |
| 24 | //config: default y |
| 25 | //config: help |
| 26 | //config: touch is used to create or change the access and/or |
| 27 | //config: modification timestamp of specified files. |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 28 | //config: |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 29 | //config:config FEATURE_TOUCH_NODEREF |
| 30 | //config: bool "Add support for -h" |
| 31 | //config: default y |
| 32 | //config: depends on TOUCH |
| 33 | //config: help |
| 34 | //config: Enable touch to have the -h option. |
| 35 | //config: This requires libc support for lutimes() function. |
| 36 | //config: |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 37 | //config:config FEATURE_TOUCH_SUSV3 |
| 38 | //config: bool "Add support for SUSV3 features (-d -t -r)" |
| 39 | //config: default y |
| 40 | //config: depends on TOUCH |
| 41 | //config: help |
| 42 | //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] | 43 | |
Denys Vlasenko | b9f2d9f | 2011-01-18 13:58:01 +0100 | [diff] [blame] | 44 | //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] | 45 | |
| 46 | //kbuild:lib-$(CONFIG_TOUCH) += touch.o |
| 47 | |
| 48 | //usage:#define touch_trivial_usage |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 49 | //usage: "[-c]" IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") " FILE..." |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 50 | //usage:#define touch_full_usage "\n\n" |
| 51 | //usage: "Update the last-modified date on the given FILE[s]\n" |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 52 | //usage: "\n -c Don't create files" |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 53 | //usage: IF_FEATURE_TOUCH_NODEREF( |
| 54 | //usage: "\n -h Don't follow links" |
| 55 | //usage: ) |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 56 | //usage: IF_FEATURE_TOUCH_SUSV3( |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 57 | //usage: "\n -d DT Date/time to use" |
Denys Vlasenko | 3ef3cc5 | 2011-12-13 16:56:47 +0100 | [diff] [blame] | 58 | //usage: "\n -t DT Date/time to use" |
Denys Vlasenko | 3f2477e | 2010-12-01 13:06:03 +0100 | [diff] [blame] | 59 | //usage: "\n -r FILE Use FILE's date/time" |
| 60 | //usage: ) |
| 61 | //usage: |
| 62 | //usage:#define touch_example_usage |
| 63 | //usage: "$ ls -l /tmp/foo\n" |
| 64 | //usage: "/bin/ls: /tmp/foo: No such file or directory\n" |
| 65 | //usage: "$ touch /tmp/foo\n" |
| 66 | //usage: "$ ls -l /tmp/foo\n" |
| 67 | //usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n" |
| 68 | |
Denis Vlasenko | 3f3aa2a | 2007-04-09 21:35:07 +0000 | [diff] [blame] | 69 | /* This is a NOFORK applet. Be very careful! */ |
| 70 | |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 71 | /* coreutils implements: |
| 72 | * -a change only the access time |
| 73 | * -c, --no-create |
| 74 | * do not create any files |
| 75 | * -d, --date=STRING |
| 76 | * parse STRING and use it instead of current time |
| 77 | * -f (ignored, BSD compat) |
| 78 | * -m change only the modification time |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 79 | * -h, --no-dereference |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 80 | * -r, --reference=FILE |
| 81 | * use this file's times instead of current time |
| 82 | * -t STAMP |
| 83 | * use [[CC]YY]MMDDhhmm[.ss] instead of current time |
| 84 | * --time=WORD |
| 85 | * change the specified time: WORD is access, atime, or use |
| 86 | */ |
| 87 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 88 | int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 89 | int touch_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 90 | { |
Denys Vlasenko | 389cca4 | 2009-11-15 02:28:56 +0100 | [diff] [blame] | 91 | int fd; |
| 92 | int status = EXIT_SUCCESS; |
| 93 | int opts; |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 94 | enum { |
| 95 | OPT_c = (1 << 0), |
| 96 | OPT_r = (1 << 1) * ENABLE_FEATURE_TOUCH_SUSV3, |
| 97 | OPT_d = (1 << 2) * ENABLE_FEATURE_TOUCH_SUSV3, |
| 98 | OPT_t = (1 << 3) * ENABLE_FEATURE_TOUCH_SUSV3, |
| 99 | OPT_h = (1 << 4) * ENABLE_FEATURE_TOUCH_NODEREF, |
| 100 | }; |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 101 | #if ENABLE_FEATURE_TOUCH_SUSV3 |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 102 | # if ENABLE_LONG_OPTS |
| 103 | static const char touch_longopts[] ALIGN1 = |
Denis Vlasenko | 7241e6d | 2009-03-15 01:28:30 +0000 | [diff] [blame] | 104 | /* name, has_arg, val */ |
| 105 | "no-create\0" No_argument "c" |
| 106 | "reference\0" Required_argument "r" |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 107 | "date\0" Required_argument "d" |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 108 | IF_FEATURE_TOUCH_NODEREF("no-dereference\0" No_argument "h") |
Denis Vlasenko | 7241e6d | 2009-03-15 01:28:30 +0000 | [diff] [blame] | 109 | ; |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 110 | # endif |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 111 | char *reference_file = NULL; |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 112 | char *date_str = NULL; |
Denys Vlasenko | dcbfaba | 2009-11-29 19:40:36 +0100 | [diff] [blame] | 113 | struct timeval timebuf[2]; |
| 114 | timebuf[1].tv_usec = timebuf[0].tv_usec = 0; |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 115 | #else |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 116 | # define reference_file NULL |
| 117 | # define date_str NULL |
Denys Vlasenko | d0f9d0e | 2009-11-30 11:36:14 +0100 | [diff] [blame] | 118 | # define timebuf ((struct timeval*)NULL) |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 119 | #endif |
Denis Vlasenko | 7241e6d | 2009-03-15 01:28:30 +0000 | [diff] [blame] | 120 | |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 121 | #if ENABLE_FEATURE_TOUCH_SUSV3 && ENABLE_LONG_OPTS |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 122 | applet_long_options = touch_longopts; |
Denis Vlasenko | 7241e6d | 2009-03-15 01:28:30 +0000 | [diff] [blame] | 123 | #endif |
Denys Vlasenko | 38dd8aa | 2009-07-18 04:49:20 +0200 | [diff] [blame] | 124 | /* -d and -t both set time. In coreutils, |
| 125 | * accepted data format differs a bit between -d and -t. |
| 126 | * We accept the same formats for both */ |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 127 | opts = getopt32(argv, "c" IF_FEATURE_TOUCH_SUSV3("r:d:t:") |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 128 | IF_FEATURE_TOUCH_NODEREF("h") |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 129 | /*ignored:*/ "fma" |
walter harms | fdf514f | 2011-12-14 08:48:59 +0100 | [diff] [blame] | 130 | IF_FEATURE_TOUCH_SUSV3(, &reference_file) |
| 131 | IF_FEATURE_TOUCH_SUSV3(, &date_str) |
| 132 | IF_FEATURE_TOUCH_SUSV3(, &date_str) |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 133 | ); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 134 | |
| 135 | argv += optind; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 136 | if (!*argv) { |
| 137 | bb_show_usage(); |
Eric Andersen | 5a0a2aa | 2000-06-02 23:26:44 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 140 | if (reference_file) { |
| 141 | struct stat stbuf; |
| 142 | xstat(reference_file, &stbuf); |
Denys Vlasenko | dcbfaba | 2009-11-29 19:40:36 +0100 | [diff] [blame] | 143 | timebuf[1].tv_sec = timebuf[0].tv_sec = stbuf.st_mtime; |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 144 | /* Can use .st_mtim.tv_nsec |
| 145 | * (or is it .st_mtimensec?? see date.c) |
| 146 | * to set microseconds too. |
| 147 | */ |
Denis Vlasenko | ed90bda | 2008-06-28 01:18:09 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 150 | if (date_str) { |
| 151 | struct tm tm_time; |
| 152 | time_t t; |
| 153 | |
Denys Vlasenko | 92ffe05 | 2011-01-02 20:02:09 +0100 | [diff] [blame] | 154 | //memset(&tm_time, 0, sizeof(tm_time)); |
| 155 | /* Better than memset: makes "HH:MM" dates meaningful */ |
| 156 | time(&t); |
| 157 | localtime_r(&t, &tm_time); |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 158 | parse_datestr(date_str, &tm_time); |
| 159 | |
| 160 | /* Correct any day of week and day of year etc. fields */ |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 161 | tm_time.tm_isdst = -1; /* Be sure to recheck dst */ |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 162 | t = validate_tm_time(date_str, &tm_time); |
| 163 | |
Denys Vlasenko | dcbfaba | 2009-11-29 19:40:36 +0100 | [diff] [blame] | 164 | timebuf[1].tv_sec = timebuf[0].tv_sec = t; |
Denys Vlasenko | 7aca89a | 2009-07-18 03:41:29 +0200 | [diff] [blame] | 165 | } |
| 166 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 167 | do { |
Denys Vlasenko | b535207 | 2013-09-11 11:58:33 +0200 | [diff] [blame] | 168 | int result; |
| 169 | result = ( |
| 170 | #if ENABLE_FEATURE_TOUCH_NODEREF |
| 171 | (opts & OPT_h) ? lutimes : |
| 172 | #endif |
| 173 | utimes)(*argv, (reference_file || date_str) ? timebuf : NULL); |
| 174 | if (result != 0) { |
| 175 | if (errno == ENOENT) { /* no such file? */ |
| 176 | if (opts & OPT_c) { |
| 177 | /* Creation is disabled, so ignore */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 178 | continue; |
| 179 | } |
Denys Vlasenko | d0f9d0e | 2009-11-30 11:36:14 +0100 | [diff] [blame] | 180 | /* Try to create the file */ |
| 181 | fd = open(*argv, O_RDWR | O_CREAT, 0666); |
| 182 | if (fd >= 0) { |
| 183 | xclose(fd); |
Mikhail Gusarov | 927e4bb | 2010-03-21 14:22:47 +0600 | [diff] [blame] | 184 | if (reference_file || date_str) |
Denys Vlasenko | dcbfaba | 2009-11-29 19:40:36 +0100 | [diff] [blame] | 185 | utimes(*argv, timebuf); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 186 | continue; |
| 187 | } |
| 188 | } |
| 189 | status = EXIT_FAILURE; |
Denis Vlasenko | 0c97c9d | 2007-10-01 11:58:38 +0000 | [diff] [blame] | 190 | bb_simple_perror_msg(*argv); |
Eric Andersen | 5a0a2aa | 2000-06-02 23:26:44 +0000 | [diff] [blame] | 191 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 192 | } while (*++argv); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 193 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 194 | return status; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 195 | } |