*** empty log message ***
[platform/upstream/coreutils.git] / src / touch.c
1 /* touch -- change modification and access times of files
2    Copyright (C) 87, 1989-1991, 1995-2001 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Written by Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie,
19    and Randy Smith. */
20
21 #include <config.h>
22 #include <stdio.h>
23 #include <getopt.h>
24 #include <sys/types.h>
25
26 #include "system.h"
27 #include "argmatch.h"
28 #include "error.h"
29 #include "getdate.h"
30 #include "posixtm.h"
31 #include "quote.h"
32 #include "safe-read.h"
33
34 /* The official name of this program (e.g., no `g' prefix).  */
35 #define PROGRAM_NAME "touch"
36
37 #define AUTHORS \
38   "Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith"
39
40 #ifndef STDC_HEADERS
41 time_t time ();
42 #endif
43
44 /* Bitmasks for `change_times'. */
45 #define CH_ATIME 1
46 #define CH_MTIME 2
47
48 #if !defined O_NDELAY
49 # define O_NDELAY 0
50 #endif
51
52 #if !defined O_NONBLOCK
53 # define O_NONBLOCK O_NDELAY
54 #endif
55
56 #if !defined O_NOCTTY
57 # define O_NOCTTY 0
58 #endif
59
60 #if !defined EISDIR
61 # define EISDIR 0
62 #endif
63
64 /* The name by which this program was run. */
65 char *program_name;
66
67 /* Which timestamps to change. */
68 static int change_times;
69
70 /* (-c) If nonzero, don't create if not already there. */
71 static int no_create;
72
73 /* (-d) If nonzero, date supplied on command line in get_date formats. */
74 static int flexible_date;
75
76 /* (-r) If nonzero, use times from a reference file. */
77 static int use_ref;
78
79 /* (-t) If nonzero, date supplied on command line in POSIX format. */
80 static int posix_date;
81
82 /* If nonzero, the only thing we have to do is change both the
83    modification and access time to the current time, so we don't
84    have to own the file, just be able to read and write it.
85    On some systems, we can do this if we own the file, even though
86    we have neither read nor write access to it.  */
87 static int amtime_now;
88
89 /* New time to use when setting time. */
90 static time_t newtime;
91
92 /* File to use for -r. */
93 static char *ref_file;
94
95 /* Info about the reference file. */
96 static struct stat ref_stats;
97
98 /* For long options that have no equivalent short option, use a
99    non-character as a pseudo short option, starting with CHAR_MAX + 1.  */
100 enum
101 {
102   TIME_OPTION = CHAR_MAX + 1
103 };
104
105 static struct option const longopts[] =
106 {
107   {"time", required_argument, 0, TIME_OPTION},
108   {"no-create", no_argument, 0, 'c'},
109   {"date", required_argument, 0, 'd'},
110   {"file", required_argument, 0, 'r'}, /* FIXME: phase out --file */
111   {"reference", required_argument, 0, 'r'},
112   {GETOPT_HELP_OPTION_DECL},
113   {GETOPT_VERSION_OPTION_DECL},
114   {0, 0, 0, 0}
115 };
116
117 /* Valid arguments to the `--time' option. */
118 static char const* const time_args[] =
119 {
120   "atime", "access", "use", "mtime", "modify", 0
121 };
122
123 /* The bits in `change_times' that those arguments set. */
124 static int const time_masks[] =
125 {
126   CH_ATIME, CH_ATIME, CH_ATIME, CH_MTIME, CH_MTIME
127 };
128
129 /* Update the time of file FILE according to the options given.
130    Return 0 if successful, 1 if an error occurs. */
131
132 static int
133 touch (const char *file)
134 {
135   int status;
136   struct stat sbuf;
137   int fd = -1;
138   int open_errno = 0;
139
140   if (! no_create)
141     {
142       /* Try to open FILE, creating it if necessary.  */
143       fd = open (file, O_WRONLY | O_CREAT | O_NONBLOCK | O_NOCTTY,
144                  S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
145
146       /* Don't save a copy of errno if it's EISDIR, since that would lead
147          touch to give a bogus diagnostic for e.g., `touch /' (assuming
148          we don't own / or have write access to it).  On Solaris 5.6,
149          and probably other systems, it is EINVAL.  */
150       if (fd == -1 && errno != EISDIR && errno != EINVAL)
151         open_errno = errno;
152     }
153
154   if (! amtime_now)
155     {
156       /* We're setting only one of the time values.  stat the target to get
157          the other one.  If we have the file descriptor already, use fstat.
158          Otherwise, either we're in no-create mode (and hence didn't call open)
159          or FILE is inaccessible or a directory, so we have to use stat.  */
160       if (fd != -1 ? fstat (fd, &sbuf) : stat (file, &sbuf))
161         {
162           if (open_errno)
163             error (0, open_errno, _("creating %s"), quote (file));
164           else
165             error (0, errno, _("getting attributes of %s"), quote (file));
166           close (fd);
167           return 1;
168         }
169     }
170
171   if (fd != -1 && close (fd) < 0)
172     {
173       error (0, errno, _("creating %s"), quote (file));
174       return 1;
175     }
176
177   if (amtime_now)
178     {
179       /* Pass NULL to utime so it will not fail if we just have
180          write access to the file, but don't own it.  */
181       status = utime (file, NULL);
182     }
183   else
184     {
185       struct utimbuf utb;
186
187       /* There's currently no interface to set file timestamps with
188          better than 1-second resolution, so discard any fractional
189          part of the source timestamp.  */
190
191       if (use_ref)
192         {
193           utb.actime = ref_stats.st_atime;
194           utb.modtime = ref_stats.st_mtime;
195         }
196       else
197         utb.actime = utb.modtime = newtime;
198
199       if (!(change_times & CH_ATIME))
200         utb.actime = sbuf.st_atime;
201
202       if (!(change_times & CH_MTIME))
203         utb.modtime = sbuf.st_mtime;
204
205       status = utime (file, &utb);
206     }
207
208   if (status)
209     {
210       if (open_errno)
211         error (0, open_errno, _("creating %s"), quote (file));
212       else
213         error (0, errno, _("setting times of %s"), quote (file));
214       return 1;
215     }
216
217   return 0;
218 }
219
220 void
221 usage (int status)
222 {
223   if (status != 0)
224     fprintf (stderr, _("Try `%s --help' for more information.\n"),
225              program_name);
226   else
227     {
228       printf (_("Usage: %s [OPTION]... FILE...\n"), program_name);
229       printf (_("  or:  %s [-acm] MMDDhhmm[YY] FILE... (obsolescent)\n"),
230               program_name);
231       printf (_("\
232 Update the access and modification times of each FILE to the current time.\n\
233 \n\
234   -a                     change only the access time\n\
235   -c, --no-create        do not create any files\n\
236   -d, --date=STRING      parse STRING and use it instead of current time\n\
237   -f                     (ignored)\n\
238   -m                     change only the modification time\n\
239   -r, --reference=FILE   use this file's times instead of current time\n\
240   -t STAMP               use [[CC]YY]MMDDhhmm[.ss] instead of current time\n\
241   --time=WORD            set time given by WORD: access atime use (same as -a)\n\
242                            modify mtime (same as -m)\n\
243       --help             display this help and exit\n\
244       --version          output version information and exit\n\
245 \n\
246 Note that the three time-date formats recognized for the -d and -t options\n\
247 and for the obsolescent argument are all different.\n\
248 "));
249       puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
250     }
251   exit (status);
252 }
253
254 int
255 main (int argc, char **argv)
256 {
257   int c;
258   int date_set = 0;
259   int err = 0;
260
261   program_name = argv[0];
262   setlocale (LC_ALL, "");
263   bindtextdomain (PACKAGE, LOCALEDIR);
264   textdomain (PACKAGE);
265
266   atexit (close_stdout);
267
268   change_times = no_create = use_ref = posix_date = flexible_date = 0;
269   newtime = (time_t) -1;
270
271   while ((c = getopt_long (argc, argv, "acd:fmr:t:", longopts, NULL)) != -1)
272     {
273       switch (c)
274         {
275         case 0:
276           break;
277
278         case 'a':
279           change_times |= CH_ATIME;
280           break;
281
282         case 'c':
283           no_create++;
284           break;
285
286         case 'd':
287           flexible_date++;
288           newtime = get_date (optarg, NULL);
289           if (newtime == (time_t) -1)
290             error (1, 0, _("invalid date format %s"), quote (optarg));
291           date_set++;
292           break;
293
294         case 'f':
295           break;
296
297         case 'm':
298           change_times |= CH_MTIME;
299           break;
300
301         case 'r':
302           use_ref++;
303           ref_file = optarg;
304           break;
305
306         case 't':
307           posix_date++;
308           newtime = posixtime (optarg,
309                                PDS_LEADING_YEAR | PDS_CENTURY | PDS_SECONDS);
310           if (newtime == (time_t) -1)
311             error (1, 0, _("invalid date format %s"), quote (optarg));
312           date_set++;
313           break;
314
315         case TIME_OPTION:       /* --time */
316           change_times |= XARGMATCH ("--time", optarg,
317                                      time_args, time_masks);
318           break;
319
320         case_GETOPT_HELP_CHAR;
321
322         case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
323
324         default:
325           usage (1);
326         }
327     }
328
329   if (change_times == 0)
330     change_times = CH_ATIME | CH_MTIME;
331
332   if ((use_ref && (posix_date || flexible_date))
333       || (posix_date && flexible_date))
334     {
335       error (0, 0, _("cannot specify times from more than one source"));
336       usage (1);
337     }
338
339   if (use_ref)
340     {
341       if (stat (ref_file, &ref_stats))
342         error (1, errno, _("getting attributes of %s"), quote (ref_file));
343       date_set++;
344     }
345
346   /* The obsolescent `MMDDhhmm[YY]' form is valid IFF there are
347      two or more non-option arguments.  */
348   if (!date_set && 2 <= argc - optind && !STREQ (argv[optind - 1], "--"))
349     {
350       newtime = posixtime (argv[optind], PDS_TRAILING_YEAR);
351       if (newtime != (time_t) -1)
352         {
353           optind++;
354           date_set++;
355         }
356     }
357   if (!date_set)
358     {
359       if ((change_times & (CH_ATIME | CH_MTIME)) == (CH_ATIME | CH_MTIME))
360         amtime_now = 1;
361       else
362         time (&newtime);
363     }
364
365   if (optind == argc)
366     {
367       error (0, 0, _("file arguments missing"));
368       usage (1);
369     }
370
371   for (; optind < argc; ++optind)
372     err += touch (argv[optind]);
373
374   exit (err != 0);
375 }