blob: 645fb21743282e4d945503d7aaf409c5764b7483 [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 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
Eric Andersencc8ed391999-10-05 16:24:54 +000022
Manuel Novoa III cad53642003-03-19 09:13:01 +000023/* BB_AUDIT SUSv3 _NOT_ compliant -- options -a, -m, -r, -t not supported. */
24/* http://www.opengroup.org/onlinepubs/007904975/utilities/touch.html */
25
26/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
27 *
28 * Previous version called open() and then utime(). While this will be
29 * be necessary to implement -r and -t, it currently only makes things bigger.
30 * Also, exiting on a failure was a bug. All args should be processed.
31 */
32
Eric Andersen596e5461999-10-07 08:30:23 +000033#include <stdio.h>
34#include <sys/types.h>
Eric Andersen596e5461999-10-07 08:30:23 +000035#include <fcntl.h>
36#include <utime.h>
37#include <errno.h>
Eric Andersened3ef502001-01-27 08:24:39 +000038#include <unistd.h>
39#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000040#include "busybox.h"
Eric Andersen596e5461999-10-07 08:30:23 +000041
Erik Andersene49d5ec2000-02-08 19:58:47 +000042extern int touch_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000043{
Erik Andersene49d5ec2000-02-08 19:58:47 +000044 int fd;
Manuel Novoa III cad53642003-03-19 09:13:01 +000045 int flags;
46 int status = EXIT_SUCCESS;
Eric Andersen596e5461999-10-07 08:30:23 +000047
Manuel Novoa III cad53642003-03-19 09:13:01 +000048 flags = bb_getopt_ulflags(argc, argv, "c");
49
50 argv += optind;
51
52 if (!*argv) {
53 bb_show_usage();
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000054 }
55
Manuel Novoa III cad53642003-03-19 09:13:01 +000056 do {
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000057 if (utime(*argv, NULL)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000058 if (errno == ENOENT) { /* no such file*/
59 if (flags & 1) { /* Creation is disabled, so ignore. */
60 continue;
61 }
62 /* Try to create the file. */
63 fd = open(*argv, O_RDWR | O_CREAT,
64 S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH
65 );
66 if ((fd >= 0) && !close(fd)) {
67 continue;
68 }
69 }
70 status = EXIT_FAILURE;
71 bb_perror_msg("%s", *argv);
Eric Andersen5a0a2aa2000-06-02 23:26:44 +000072 }
Manuel Novoa III cad53642003-03-19 09:13:01 +000073 } while (*++argv);
Erik Andersene49d5ec2000-02-08 19:58:47 +000074
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 return status;
Eric Andersencc8ed391999-10-05 16:24:54 +000076}