blob: e1af7d0dce5458dcd212361f0b31ed4850ce47c5 [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
Eric Andersen596e5461999-10-07 08:30:23 +000020#include <stdio.h>
21#include <sys/types.h>
Eric Andersen596e5461999-10-07 08:30:23 +000022#include <fcntl.h>
23#include <utime.h>
24#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000025#include <unistd.h>
26#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000027#include "busybox.h"
Eric Andersen596e5461999-10-07 08:30:23 +000028
Rob Landleydfba7412006-03-06 20:47:33 +000029int touch_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000030{
Erik Andersene49d5ec2000-02-08 19:58:47 +000031 int fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +000032 int flags;
33 int status = EXIT_SUCCESS;
Eric Andersen596e5461999-10-07 08:30:23 +000034
Denis Vlasenko67b23e62006-10-03 21:00:06 +000035 flags = getopt32(argc, argv, "c");
Manuel Novoa III cad53642003-03-19 09:13:01 +000036
37 argv += optind;
38
39 if (!*argv) {
40 bb_show_usage();
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000041 }
42
Manuel Novoa III cad53642003-03-19 09:13:01 +000043 do {
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000044 if (utime(*argv, NULL)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000045 if (errno == ENOENT) { /* no such file*/
46 if (flags & 1) { /* Creation is disabled, so ignore. */
47 continue;
48 }
49 /* Try to create the file. */
50 fd = open(*argv, O_RDWR | O_CREAT,
51 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH
52 );
53 if ((fd >= 0) && !close(fd)) {
54 continue;
55 }
56 }
57 status = EXIT_FAILURE;
58 bb_perror_msg("%s", *argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000059 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000060 } while (*++argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +000061
Manuel Novoa III cad53642003-03-19 09:13:01 +000062 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +000063}