1 /* Parse dates for touch and date.
3 Copyright (C) 1989-1991, 1998, 2000-2020 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Yacc-based version written by Jim Kingdon and David MacKenzie.
19 Rewritten by Jim Meyering. */
27 #include <sys/types.h>
31 # include "unlocked-io.h"
34 /* ISDIGIT differs from isdigit, as follows:
35 - Its arg may be any int or unsigned int; it need not be an unsigned char
37 - It's typically faster.
38 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
39 isdigit unless it's important to use the locale's definition
40 of "digit" even when the host does not conform to POSIX. */
41 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9)
46 touch -t [[CC]YY]mmddhhmm[.ss] FILE...
47 8, 10, or 12 digits, followed by optional .ss
48 (PDS_CENTURY | PDS_SECONDS)
50 touch mmddhhmm[YY] FILE... (obsoleted by POSIX 1003.1-2001)
51 8 or 10 digits, YY (if present) must be in the range 69-99
52 (PDS_TRAILING_YEAR | PDS_PRE_2000)
56 (PDS_TRAILING_YEAR | PDS_CENTURY)
61 year (struct tm
*tm
, const int *digit_pair
, size_t n
, unsigned int syntax_bits
)
66 tm
->tm_year
= *digit_pair
;
67 /* Deduce the century based on the year.
68 POSIX requires that 00-68 be interpreted as 2000-2068,
69 and that 69-99 be interpreted as 1969-1999. */
70 if (digit_pair
[0] <= 68)
72 if (syntax_bits
& PDS_PRE_2000
)
79 if (! (syntax_bits
& PDS_CENTURY
))
81 tm
->tm_year
= digit_pair
[0] * 100 + digit_pair
[1] - 1900;
89 /* Use current year. */
91 tmp
= localtime (&now
);
94 tm
->tm_year
= tmp
->tm_year
;
106 posix_time_parse (struct tm
*tm
, const char *s
, unsigned int syntax_bits
)
108 const char *dot
= NULL
;
113 size_t s_len
= strlen (s
);
116 if (syntax_bits
& PDS_SECONDS
)
118 dot
= strchr (s
, '.');
122 if (s_len
- len
!= 3)
127 if (! (8 <= len
&& len
<= 12 && len
% 2 == 0))
130 for (i
= 0; i
< len
; i
++)
135 for (i
= 0; i
< len
; i
++)
136 pair
[i
] = 10 * (s
[2*i
] - '0') + s
[2*i
+ 1] - '0';
139 if (! (syntax_bits
& PDS_TRAILING_YEAR
))
141 if (! year (tm
, p
, len
- 4, syntax_bits
))
147 /* Handle 8 digits worth of 'MMDDhhmm'. */
148 tm
->tm_mon
= *p
++ - 1;
154 /* Handle any trailing year. */
155 if (syntax_bits
& PDS_TRAILING_YEAR
)
157 if (! year (tm
, p
, len
, syntax_bits
))
161 /* Handle seconds. */
164 else if (ISDIGIT (dot
[1]) && ISDIGIT (dot
[2]))
165 tm
->tm_sec
= 10 * (dot
[1] - '0') + dot
[2] - '0';
172 /* Parse a POSIX-style date, returning true if successful. */
175 posixtime (time_t *p
, const char *s
, unsigned int syntax_bits
)
181 if (! posix_time_parse (&tm0
, s
, syntax_bits
))
184 tm1
.tm_sec
= tm0
.tm_sec
;
185 tm1
.tm_min
= tm0
.tm_min
;
186 tm1
.tm_hour
= tm0
.tm_hour
;
187 tm1
.tm_mday
= tm0
.tm_mday
;
188 tm1
.tm_mon
= tm0
.tm_mon
;
189 tm1
.tm_year
= tm0
.tm_year
;
197 /* Reject dates like "September 31" and times like "25:61".
198 However, allow a seconds count of 60 even in time zones that do
199 not support leap seconds, treating it as the following second;
200 POSIX requires this. */
201 if ((tm0
.tm_year
^ tm1
.tm_year
)
202 | (tm0
.tm_mon
^ tm1
.tm_mon
)
203 | (tm0
.tm_mday
^ tm1
.tm_mday
)
204 | (tm0
.tm_hour
^ tm1
.tm_hour
)
205 | (tm0
.tm_min
^ tm1
.tm_min
)
206 | (tm0
.tm_sec
^ tm1
.tm_sec
))
208 /* Any mismatch without 60 in the tm_sec field is invalid. */
209 if (tm0
.tm_sec
!= 60)
213 /* Allow times like 01:35:60 or 23:59:60. */
216 char *b
= stpcpy (buf
, s
);
217 strcpy (b
- 2, "59");
218 if (!posixtime (&dummy
, buf
, syntax_bits
))