blob: 0b58179e79ad63072a4862ba31746a5177fd799a [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 Vlasenko9b49a5e2007-10-11 10:05:36 +000024int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +000025int touch_main(int argc ATTRIBUTE_UNUSED, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000026{
Erik Andersene49d5ec2000-02-08 19:58:47 +000027 int fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +000028 int status = EXIT_SUCCESS;
Denis Vlasenkoc2537782007-11-28 19:25:32 +000029 int flags = getopt32(argv, "cf");
Manuel Novoa III cad53642003-03-19 09:13:01 +000030
Denis Vlasenkoc2537782007-11-28 19:25:32 +000031 flags &= 1; /* ignoring -f (BSD compat thingy) */
Manuel Novoa III cad53642003-03-19 09:13:01 +000032 argv += optind;
33
34 if (!*argv) {
35 bb_show_usage();
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000036 }
37
Manuel Novoa III cad53642003-03-19 09:13:01 +000038 do {
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000039 if (utime(*argv, NULL)) {
Denis Vlasenko3f3aa2a2007-04-09 21:35:07 +000040 if (errno == ENOENT) { /* no such file */
Bernhard Reutner-Fischerd19f4aa2007-01-20 21:32:38 +000041 if (flags) { /* Creation is disabled, so ignore. */
Manuel Novoa III cad53642003-03-19 09:13:01 +000042 continue;
43 }
44 /* Try to create the file. */
45 fd = open(*argv, O_RDWR | O_CREAT,
46 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH
47 );
48 if ((fd >= 0) && !close(fd)) {
49 continue;
50 }
51 }
52 status = EXIT_FAILURE;
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +000053 bb_simple_perror_msg(*argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000054 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000055 } while (*++argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +000056
Manuel Novoa III cad53642003-03-19 09:13:01 +000057 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +000058}