blob: 1216ca202b0ea4efe02be0f10d9c7aacb0d04d6b [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 */
Eric Andersencc8ed391999-10-05 16:24:54 +00009
Denys Vlasenko3ef3cc52011-12-13 16:56:47 +010010/* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m not supported. */
Manuel Novoa III cad53642003-03-19 09:13:01 +000011/* 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 Vlasenkob6adbf12007-05-26 19:00:18 +000020#include "libbb.h"
Eric Andersen596e5461999-10-07 08:30:23 +000021
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010022//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 harmsfdf514f2011-12-14 08:48:59 +010028//config:
29//config:config FEATURE_TOUCH_SUSV3
30//config: bool "Add support for SUSV3 features (-d -t -r)"
31//config: default y
32//config: depends on TOUCH
33//config: help
34//config: Enable touch to use a reference file or a given date/time argument.
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010035
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010036//applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch))
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010037
38//kbuild:lib-$(CONFIG_TOUCH) += touch.o
39
40//usage:#define touch_trivial_usage
walter harmsfdf514f2011-12-14 08:48:59 +010041//usage: "[-c]" IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") " FILE..."
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010042//usage:#define touch_full_usage "\n\n"
43//usage: "Update the last-modified date on the given FILE[s]\n"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010044//usage: "\n -c Don't create files"
walter harmsfdf514f2011-12-14 08:48:59 +010045//usage: IF_FEATURE_TOUCH_SUSV3(
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010046//usage: "\n -d DT Date/time to use"
Denys Vlasenko3ef3cc52011-12-13 16:56:47 +010047//usage: "\n -t DT Date/time to use"
Denys Vlasenko3f2477e2010-12-01 13:06:03 +010048//usage: "\n -r FILE Use FILE's date/time"
49//usage: )
50//usage:
51//usage:#define touch_example_usage
52//usage: "$ ls -l /tmp/foo\n"
53//usage: "/bin/ls: /tmp/foo: No such file or directory\n"
54//usage: "$ touch /tmp/foo\n"
55//usage: "$ ls -l /tmp/foo\n"
56//usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n"
57
Denis Vlasenko3f3aa2a2007-04-09 21:35:07 +000058/* This is a NOFORK applet. Be very careful! */
59
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000060/* coreutils implements:
61 * -a change only the access time
62 * -c, --no-create
63 * do not create any files
64 * -d, --date=STRING
65 * parse STRING and use it instead of current time
66 * -f (ignored, BSD compat)
67 * -m change only the modification time
68 * -r, --reference=FILE
69 * use this file's times instead of current time
70 * -t STAMP
71 * use [[CC]YY]MMDDhhmm[.ss] instead of current time
72 * --time=WORD
73 * change the specified time: WORD is access, atime, or use
74 */
75
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000076int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000077int touch_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000078{
Denys Vlasenko389cca42009-11-15 02:28:56 +010079 int fd;
80 int status = EXIT_SUCCESS;
81 int opts;
walter harmsfdf514f2011-12-14 08:48:59 +010082#if ENABLE_FEATURE_TOUCH_SUSV3
Denys Vlasenko7aca89a2009-07-18 03:41:29 +020083# if ENABLE_LONG_OPTS
84 static const char touch_longopts[] ALIGN1 =
Denis Vlasenko7241e6d2009-03-15 01:28:30 +000085 /* name, has_arg, val */
86 "no-create\0" No_argument "c"
87 "reference\0" Required_argument "r"
Denys Vlasenko7aca89a2009-07-18 03:41:29 +020088 "date\0" Required_argument "d"
Denis Vlasenko7241e6d2009-03-15 01:28:30 +000089 ;
Denys Vlasenko7aca89a2009-07-18 03:41:29 +020090# endif
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000091 char *reference_file = NULL;
Denys Vlasenko7aca89a2009-07-18 03:41:29 +020092 char *date_str = NULL;
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +010093 struct timeval timebuf[2];
94 timebuf[1].tv_usec = timebuf[0].tv_usec = 0;
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000095#else
Denys Vlasenko7aca89a2009-07-18 03:41:29 +020096# define reference_file NULL
97# define date_str NULL
Denys Vlasenkod0f9d0e2009-11-30 11:36:14 +010098# define timebuf ((struct timeval*)NULL)
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000099#endif
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000100
walter harmsfdf514f2011-12-14 08:48:59 +0100101#if ENABLE_FEATURE_TOUCH_SUSV3 && ENABLE_LONG_OPTS
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200102 applet_long_options = touch_longopts;
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000103#endif
Denys Vlasenko38dd8aa2009-07-18 04:49:20 +0200104 /* -d and -t both set time. In coreutils,
105 * accepted data format differs a bit between -d and -t.
106 * We accept the same formats for both */
walter harmsfdf514f2011-12-14 08:48:59 +0100107 opts = getopt32(argv, "c" IF_FEATURE_TOUCH_SUSV3("r:d:t:")
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000108 /*ignored:*/ "fma"
walter harmsfdf514f2011-12-14 08:48:59 +0100109 IF_FEATURE_TOUCH_SUSV3(, &reference_file)
110 IF_FEATURE_TOUCH_SUSV3(, &date_str)
111 IF_FEATURE_TOUCH_SUSV3(, &date_str)
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200112 );
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000114 opts &= 1; /* only -c bit is left */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000115 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000116 if (!*argv) {
117 bb_show_usage();
Eric Andersen5a0a2aa2000-06-02 23:26:44 +0000118 }
119
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000120 if (reference_file) {
121 struct stat stbuf;
122 xstat(reference_file, &stbuf);
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100123 timebuf[1].tv_sec = timebuf[0].tv_sec = stbuf.st_mtime;
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000124 }
125
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200126 if (date_str) {
127 struct tm tm_time;
128 time_t t;
129
Denys Vlasenko92ffe052011-01-02 20:02:09 +0100130 //memset(&tm_time, 0, sizeof(tm_time));
131 /* Better than memset: makes "HH:MM" dates meaningful */
132 time(&t);
133 localtime_r(&t, &tm_time);
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200134 parse_datestr(date_str, &tm_time);
135
136 /* Correct any day of week and day of year etc. fields */
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200137 tm_time.tm_isdst = -1; /* Be sure to recheck dst */
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200138 t = validate_tm_time(date_str, &tm_time);
139
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100140 timebuf[1].tv_sec = timebuf[0].tv_sec = t;
Denys Vlasenko7aca89a2009-07-18 03:41:29 +0200141 }
142
Manuel Novoa III cad53642003-03-19 09:13:01 +0000143 do {
Mikhail Gusarov927e4bb2010-03-21 14:22:47 +0600144 if (utimes(*argv, (reference_file || date_str) ? timebuf : NULL) != 0) {
Denis Vlasenkoed90bda2008-06-28 01:18:09 +0000145 if (errno == ENOENT) { /* no such file */
Denis Vlasenko7241e6d2009-03-15 01:28:30 +0000146 if (opts) { /* creation is disabled, so ignore */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 continue;
148 }
Denys Vlasenkod0f9d0e2009-11-30 11:36:14 +0100149 /* Try to create the file */
150 fd = open(*argv, O_RDWR | O_CREAT, 0666);
151 if (fd >= 0) {
152 xclose(fd);
Mikhail Gusarov927e4bb2010-03-21 14:22:47 +0600153 if (reference_file || date_str)
Denys Vlasenkodcbfaba2009-11-29 19:40:36 +0100154 utimes(*argv, timebuf);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000155 continue;
156 }
157 }
158 status = EXIT_FAILURE;
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000159 bb_simple_perror_msg(*argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +0000160 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161 } while (*++argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000162
Manuel Novoa III cad53642003-03-19 09:13:01 +0000163 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +0000164}