xref: /netbsd/usr.bin/touch/touch.c (revision 6550d01e)
1 /*	$NetBSD: touch.c,v 1.28 2009/04/28 02:47:12 yamt Exp $	*/
2 
3 /*
4  * Copyright (c) 1993
5  *	The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 #ifndef lint
34 __COPYRIGHT("@(#) Copyright (c) 1993\
35  The Regents of the University of California.  All rights reserved.");
36 #endif /* not lint */
37 
38 #ifndef lint
39 #if 0
40 static char sccsid[] = "@(#)touch.c	8.2 (Berkeley) 4/28/95";
41 #endif
42 __RCSID("$NetBSD: touch.c,v 1.28 2009/04/28 02:47:12 yamt Exp $");
43 #endif /* not lint */
44 
45 #include <sys/types.h>
46 #include <sys/stat.h>
47 #include <sys/time.h>
48 
49 #include <err.h>
50 #include <errno.h>
51 #include <fcntl.h>
52 #include <stdio.h>
53 #include <stdlib.h>
54 #include <string.h>
55 #include <locale.h>
56 #include <time.h>
57 #include <tzfile.h>
58 #include <unistd.h>
59 
60 int	main __P((int, char **));
61 int	rw __P((char *, struct stat *, int));
62 void	stime_arg1 __P((char *, struct timeval *));
63 void	stime_arg2 __P((char *, int, struct timeval *));
64 void	stime_file __P((char *, struct timeval *));
65 void	usage __P((void));
66 
67 int
68 main(argc, argv)
69 	int argc;
70 	char *argv[];
71 {
72 	struct stat sb;
73 	struct timeval tv[2];
74 	int aflag, cflag, fflag, hflag, mflag, ch, fd, len, rval, timeset;
75 	char *p;
76 	int (*change_file_times) __P((const char *, const struct timeval *));
77 	int (*get_file_status) __P((const char *, struct stat *));
78 
79 	setlocale(LC_ALL, "");
80 
81 	aflag = cflag = fflag = hflag = mflag = timeset = 0;
82 	if (gettimeofday(&tv[0], NULL))
83 		err(1, "gettimeofday");
84 
85 	while ((ch = getopt(argc, argv, "acfhmr:t:")) != -1)
86 		switch(ch) {
87 		case 'a':
88 			aflag = 1;
89 			break;
90 		case 'c':
91 			cflag = 1;
92 			break;
93 		case 'f':
94 			fflag = 1;
95 			break;
96 		case 'h':
97 			hflag = 1;
98 			break;
99 		case 'm':
100 			mflag = 1;
101 			break;
102 		case 'r':
103 			timeset = 1;
104 			stime_file(optarg, tv);
105 			break;
106 		case 't':
107 			timeset = 1;
108 			stime_arg1(optarg, tv);
109 			break;
110 		case '?':
111 		default:
112 			usage();
113 		}
114 	argc -= optind;
115 	argv += optind;
116 
117 	/* Default is both -a and -m. */
118 	if (aflag == 0 && mflag == 0)
119 		aflag = mflag = 1;
120 
121 	if (hflag) {
122 		cflag = 1;		/* Don't create new file */
123 		change_file_times = lutimes;
124 		get_file_status = lstat;
125 	} else {
126 		change_file_times = utimes;
127 		get_file_status = stat;
128 	}
129 
130 	/*
131 	 * If no -r or -t flag, at least two operands, the first of which
132 	 * is an 8 or 10 digit number, use the obsolete time specification.
133 	 */
134 	if (!timeset && argc > 1) {
135 		(void)strtol(argv[0], &p, 10);
136 		len = p - argv[0];
137 		if (*p == '\0' && (len == 8 || len == 10)) {
138 			timeset = 1;
139 			stime_arg2(*argv++, len == 10, tv);
140 		}
141 	}
142 
143 	/* Otherwise use the current time of day. */
144 	if (!timeset)
145 		tv[1] = tv[0];
146 
147 	if (*argv == NULL)
148 		usage();
149 
150 	for (rval = 0; *argv; ++argv) {
151 		/* See if the file exists. */
152 		if ((*get_file_status)(*argv, &sb)) {
153 			if (!cflag) {
154 				/* Create the file. */
155 				fd = open(*argv,
156 				    O_WRONLY | O_CREAT, DEFFILEMODE);
157 				if (fd == -1 || fstat(fd, &sb) || close(fd)) {
158 					rval = 1;
159 					warn("%s", *argv);
160 					continue;
161 				}
162 
163 				/* If using the current time, we're done. */
164 				if (!timeset)
165 					continue;
166 			} else
167 				continue;
168 		}
169 		if (!aflag)
170 			TIMESPEC_TO_TIMEVAL(&tv[0], &sb.st_atimespec);
171 		if (!mflag)
172 			TIMESPEC_TO_TIMEVAL(&tv[1], &sb.st_mtimespec);
173 
174 		/* Try utimes(2). */
175 		if (!(*change_file_times)(*argv, tv))
176 			continue;
177 
178 		/* If the user specified a time, nothing else we can do. */
179 		if (timeset) {
180 			rval = 1;
181 			warn("%s", *argv);
182 		}
183 
184 		/*
185 		 * System V and POSIX 1003.1 require that a NULL argument
186 		 * set the access/modification times to the current time.
187 		 * The permission checks are different, too, in that the
188 		 * ability to write the file is sufficient.  Take a shot.
189 		 */
190 		 if (!(*change_file_times)(*argv, NULL))
191 			continue;
192 
193 		rval = 1;
194 		warn("%s", *argv);
195 	}
196 	exit(rval);
197 }
198 
199 #define	ATOI2(s)	((s) += 2, ((s)[-2] - '0') * 10 + ((s)[-1] - '0'))
200 
201 void
202 stime_arg1(arg, tvp)
203 	char *arg;
204 	struct timeval *tvp;
205 {
206 	struct tm *t;
207 	time_t tmptime;
208 	int yearset;
209 	char *p;
210 					/* Start with the current time. */
211 	tmptime = tvp[0].tv_sec;
212 	if ((t = localtime(&tmptime)) == NULL)
213 		err(1, "localtime");
214 					/* [[CC]YY]MMDDhhmm[.SS] */
215 	if ((p = strchr(arg, '.')) == NULL)
216 		t->tm_sec = 0;		/* Seconds defaults to 0. */
217 	else {
218 		if (strlen(p + 1) != 2)
219 			goto terr;
220 		*p++ = '\0';
221 		t->tm_sec = ATOI2(p);
222 	}
223 
224 	yearset = 0;
225 	switch (strlen(arg)) {
226 	case 12:			/* CCYYMMDDhhmm */
227 		t->tm_year = ATOI2(arg) * 100 - TM_YEAR_BASE;
228 		yearset = 1;
229 		/* FALLTHROUGH */
230 	case 10:			/* YYMMDDhhmm */
231 		if (yearset) {
232 			t->tm_year += ATOI2(arg);
233 		} else {
234 			yearset = ATOI2(arg);
235 			if (yearset < 69)
236 				t->tm_year = yearset + 2000 - TM_YEAR_BASE;
237 			else
238 				t->tm_year = yearset + 1900 - TM_YEAR_BASE;
239 		}
240 		/* FALLTHROUGH */
241 	case 8:				/* MMDDhhmm */
242 		t->tm_mon = ATOI2(arg);
243 		--t->tm_mon;		/* Convert from 01-12 to 00-11 */
244 		/* FALLTHROUGH */
245 	case 6:
246 		t->tm_mday = ATOI2(arg);
247 		/* FALLTHROUGH */
248 	case 4:
249 		t->tm_hour = ATOI2(arg);
250 		/* FALLTHROUGH */
251 	case 2:
252 		t->tm_min = ATOI2(arg);
253 		break;
254 	default:
255 		goto terr;
256 	}
257 
258 	t->tm_isdst = -1;		/* Figure out DST. */
259 	tvp[0].tv_sec = tvp[1].tv_sec = mktime(t);
260 	if (tvp[0].tv_sec == -1)
261 terr:		errx(1,
262 	"out of range or illegal time specification: [[CC]YY]MMDDhhmm[.SS]");
263 
264 	tvp[0].tv_usec = tvp[1].tv_usec = 0;
265 }
266 
267 void
268 stime_arg2(arg, year, tvp)
269 	char *arg;
270 	int year;
271 	struct timeval *tvp;
272 {
273 	struct tm *t;
274 	time_t tmptime;
275 					/* Start with the current time. */
276 	tmptime = tvp[0].tv_sec;
277 	if ((t = localtime(&tmptime)) == NULL)
278 		err(1, "localtime");
279 
280 	t->tm_mon = ATOI2(arg);		/* MMDDhhmm[yy] */
281 	--t->tm_mon;			/* Convert from 01-12 to 00-11 */
282 	t->tm_mday = ATOI2(arg);
283 	t->tm_hour = ATOI2(arg);
284 	t->tm_min = ATOI2(arg);
285 	if (year) {
286 		year = ATOI2(arg);
287 		if (year < 69)
288 			t->tm_year = year + 2000 - TM_YEAR_BASE;
289 		else
290 			t->tm_year = year + 1900 - TM_YEAR_BASE;
291 	}
292 	t->tm_sec = 0;
293 
294 	t->tm_isdst = -1;		/* Figure out DST. */
295 	tvp[0].tv_sec = tvp[1].tv_sec = mktime(t);
296 	if (tvp[0].tv_sec == -1)
297 		errx(1,
298 	"out of range or illegal time specification: MMDDhhmm[yy]");
299 
300 	tvp[0].tv_usec = tvp[1].tv_usec = 0;
301 }
302 
303 void
304 stime_file(fname, tvp)
305 	char *fname;
306 	struct timeval *tvp;
307 {
308 	struct stat sb;
309 
310 	if (stat(fname, &sb))
311 		err(1, "%s", fname);
312 	TIMESPEC_TO_TIMEVAL(&tvp[0], &sb.st_atimespec);
313 	TIMESPEC_TO_TIMEVAL(&tvp[1], &sb.st_mtimespec);
314 }
315 
316 __dead void
317 usage()
318 {
319 	(void)fprintf(stderr,
320 	    "usage: touch [-acfhm] [-r file] [-t time] file ...\n");
321 	exit(1);
322 }
323