blob: 20191546cd1500a5b8c7aef49634e384151a6551 [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 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen596e5461999-10-07 08:30:23 +00008 */
Eric Andersencc8ed391999-10-05 16:24:54 +00009
Manuel Novoa III cad53642003-03-19 09:13:01 +000010/* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m, -r, -t not supported. */
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 Vlasenkob6adbf12007-05-26 19:00:18 +000020#include "libbb.h"
Eric Andersen596e5461999-10-07 08:30:23 +000021
Denis Vlasenko3f3aa2a2007-04-09 21:35:07 +000022/* This is a NOFORK applet. Be very careful! */
23
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000024/* coreutils implements:
25 * -a change only the access time
26 * -c, --no-create
27 * do not create any files
28 * -d, --date=STRING
29 * parse STRING and use it instead of current time
30 * -f (ignored, BSD compat)
31 * -m change only the modification time
32 * -r, --reference=FILE
33 * use this file's times instead of current time
34 * -t STAMP
35 * use [[CC]YY]MMDDhhmm[.ss] instead of current time
36 * --time=WORD
37 * change the specified time: WORD is access, atime, or use
38 */
39
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000040int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000041int touch_main(int argc UNUSED_PARAM, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000042{
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000043#if ENABLE_DESKTOP
Denis Vlasenko7241e6d2009-03-15 01:28:30 +000044#if ENABLE_GETOPT_LONG
45 static const char longopts[] ALIGN1 =
46 /* name, has_arg, val */
47 "no-create\0" No_argument "c"
48 "reference\0" Required_argument "r"
49 ;
50#endif
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000051 struct utimbuf timebuf;
52 char *reference_file = NULL;
53#else
54#define reference_file NULL
55#define timebuf (*(struct utimbuf*)NULL)
56#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000057 int fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 int status = EXIT_SUCCESS;
Denis Vlasenko7241e6d2009-03-15 01:28:30 +000059 int opts;
60
61#if ENABLE_DESKTOP
62#if ENABLE_GETOPT_LONG
63 applet_long_options = longopts;
64#endif
65#endif
66 opts = getopt32(argv, "c" USE_DESKTOP("r:")
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000067 /*ignored:*/ "fma"
68 USE_DESKTOP(, &reference_file));
Manuel Novoa III cad53642003-03-19 09:13:01 +000069
Denis Vlasenko7241e6d2009-03-15 01:28:30 +000070 opts &= 1; /* only -c bit is left */
Manuel Novoa III cad53642003-03-19 09:13:01 +000071 argv += optind;
Manuel Novoa III cad53642003-03-19 09:13:01 +000072 if (!*argv) {
73 bb_show_usage();
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000074 }
75
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000076 if (reference_file) {
77 struct stat stbuf;
78 xstat(reference_file, &stbuf);
79 timebuf.actime = stbuf.st_atime;
80 timebuf.modtime = stbuf.st_mtime;
81 }
82
Manuel Novoa III cad53642003-03-19 09:13:01 +000083 do {
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000084 if (utime(*argv, reference_file ? &timebuf : NULL)) {
85 if (errno == ENOENT) { /* no such file */
Denis Vlasenko7241e6d2009-03-15 01:28:30 +000086 if (opts) { /* creation is disabled, so ignore */
Manuel Novoa III cad53642003-03-19 09:13:01 +000087 continue;
88 }
89 /* Try to create the file. */
90 fd = open(*argv, O_RDWR | O_CREAT,
91 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH
92 );
93 if ((fd >= 0) && !close(fd)) {
Denis Vlasenkoed90bda2008-06-28 01:18:09 +000094 if (reference_file)
95 utime(*argv, &timebuf);
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 continue;
97 }
98 }
99 status = EXIT_FAILURE;
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +0000100 bb_simple_perror_msg(*argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +0000101 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000102 } while (*++argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000103
Manuel Novoa III cad53642003-03-19 09:13:01 +0000104 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +0000105}