blob: 77490faf0452e63d996b63bea346ddeadac44c1c [file] [log] [blame]
Igor Sysoevd59a0472003-11-10 21:09:22 +00001
Igor Sysoevd90282d2004-09-28 08:34:51 +00002/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Maxim Konovalovf8d59e32012-01-18 15:07:43 +00004 * Copyright (C) Nginx, Inc.
Igor Sysoevd90282d2004-09-28 08:34:51 +00005 */
6
7
Igor Sysoevd59a0472003-11-10 21:09:22 +00008#include <ngx_config.h>
9#include <ngx_core.h>
10
11
Igor Sysoevc0247302004-06-27 18:01:57 +000012/*
Igor Sysoevc2068d02005-10-19 12:33:58 +000013 * The time may be updated by signal handler or by several threads.
14 * The time update operations are rare and require to hold the ngx_time_lock.
15 * The time read operations are frequent, so they are lock-free and get time
16 * values and strings from the current slot. Thus thread may get the corrupted
17 * values only if it is preempted while copying and then it is not scheduled
18 * to run more than NGX_TIME_SLOTS seconds.
Igor Sysoevc0247302004-06-27 18:01:57 +000019 */
20
Igor Sysoevc2068d02005-10-19 12:33:58 +000021#define NGX_TIME_SLOTS 64
Igor Sysoevc0247302004-06-27 18:01:57 +000022
Igor Sysoevf4b34c42006-12-19 12:38:20 +000023static ngx_uint_t slot;
Igor Sysoevc2068d02005-10-19 12:33:58 +000024static ngx_atomic_t ngx_time_lock;
Igor Sysoevc0247302004-06-27 18:01:57 +000025
Igor Sysoevc2068d02005-10-19 12:33:58 +000026volatile ngx_msec_t ngx_current_msec;
27volatile ngx_time_t *ngx_cached_time;
28volatile ngx_str_t ngx_cached_err_log_time;
29volatile ngx_str_t ngx_cached_http_time;
30volatile ngx_str_t ngx_cached_http_log_time;
Igor Sysoevc9d671c2011-03-16 15:46:57 +000031volatile ngx_str_t ngx_cached_http_log_iso8601;
Igor Sysoevc0247302004-06-27 18:01:57 +000032
Igor Sysoev6d45d8a2010-03-25 09:10:10 +000033#if !(NGX_WIN32)
Igor Sysoev2f916a92010-03-13 18:08:07 +000034
35/*
Ruslan Ermilov47a04aa2012-04-03 07:37:31 +000036 * localtime() and localtime_r() are not Async-Signal-Safe functions, therefore,
Igor Sysoev6d45d8a2010-03-25 09:10:10 +000037 * they must not be called by a signal handler, so we use the cached
Igor Sysoev2f916a92010-03-13 18:08:07 +000038 * GMT offset value. Fortunately the value is changed only two times a year.
39 */
40
41static ngx_int_t cached_gmtoff;
42#endif
43
Igor Sysoevc2068d02005-10-19 12:33:58 +000044static ngx_time_t cached_time[NGX_TIME_SLOTS];
45static u_char cached_err_log_time[NGX_TIME_SLOTS]
46 [sizeof("1970/09/28 12:00:00")];
47static u_char cached_http_time[NGX_TIME_SLOTS]
48 [sizeof("Mon, 28 Sep 1970 06:00:00 GMT")];
49static u_char cached_http_log_time[NGX_TIME_SLOTS]
50 [sizeof("28/Sep/1970:12:00:00 +0600")];
Igor Sysoevc9d671c2011-03-16 15:46:57 +000051static u_char cached_http_log_iso8601[NGX_TIME_SLOTS]
52 [sizeof("1970-09-28T12:00:00+06:00")];
Igor Sysoevd59a0472003-11-10 21:09:22 +000053
54
Igor Sysoev3f4685f2004-04-25 20:13:21 +000055static char *week[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
Igor Sysoev562e53e2003-11-13 06:14:05 +000056static char *months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
57 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
58
Igor Sysoevc1571722005-03-19 12:38:37 +000059void
60ngx_time_init(void)
Igor Sysoev562e53e2003-11-13 06:14:05 +000061{
Igor Sysoevc0247302004-06-27 18:01:57 +000062 ngx_cached_err_log_time.len = sizeof("1970/09/28 12:00:00") - 1;
63 ngx_cached_http_time.len = sizeof("Mon, 28 Sep 1970 06:00:00 GMT") - 1;
64 ngx_cached_http_log_time.len = sizeof("28/Sep/1970:12:00:00 +0600") - 1;
Igor Sysoevc9d671c2011-03-16 15:46:57 +000065 ngx_cached_http_log_iso8601.len = sizeof("1970-09-28T12:00:00+06:00") - 1;
Igor Sysoev732a2712004-04-21 18:54:33 +000066
Igor Sysoevc0247302004-06-27 18:01:57 +000067 ngx_cached_time = &cached_time[0];
Igor Sysoevf5003d82003-12-04 14:53:00 +000068
Igor Sysoev6d45d8a2010-03-25 09:10:10 +000069 ngx_time_update();
Igor Sysoev562e53e2003-11-13 06:14:05 +000070}
71
72
Igor Sysoevc1571722005-03-19 12:38:37 +000073void
Igor Sysoev6d45d8a2010-03-25 09:10:10 +000074ngx_time_update(void)
Igor Sysoevd59a0472003-11-10 21:09:22 +000075{
Igor Sysoevc9d671c2011-03-16 15:46:57 +000076 u_char *p0, *p1, *p2, *p3;
Igor Sysoevc2068d02005-10-19 12:33:58 +000077 ngx_tm_t tm, gmt;
Igor Sysoev2f916a92010-03-13 18:08:07 +000078 time_t sec;
79 ngx_uint_t msec;
Igor Sysoevc2068d02005-10-19 12:33:58 +000080 ngx_time_t *tp;
81 struct timeval tv;
Igor Sysoevd59a0472003-11-10 21:09:22 +000082
Igor Sysoevc2068d02005-10-19 12:33:58 +000083 if (!ngx_trylock(&ngx_time_lock)) {
Igor Sysoev898446c2004-02-26 17:10:01 +000084 return;
Igor Sysoevb54698b2004-02-23 20:57:12 +000085 }
Igor Sysoevc0247302004-06-27 18:01:57 +000086
Igor Sysoev2f916a92010-03-13 18:08:07 +000087 ngx_gettimeofday(&tv);
Igor Sysoevb54698b2004-02-23 20:57:12 +000088
Igor Sysoev2f916a92010-03-13 18:08:07 +000089 sec = tv.tv_sec;
90 msec = tv.tv_usec / 1000;
Igor Sysoev3c3ca172004-01-05 20:55:48 +000091
Igor Sysoevc2068d02005-10-19 12:33:58 +000092 ngx_current_msec = (ngx_msec_t) sec * 1000 + msec;
Igor Sysoevc0247302004-06-27 18:01:57 +000093
Igor Sysoevc2068d02005-10-19 12:33:58 +000094 tp = &cached_time[slot];
95
Igor Sysoevc2068d02005-10-19 12:33:58 +000096 if (tp->sec == sec) {
Igor Sysoevc3d106a2006-12-06 14:25:20 +000097 tp->msec = msec;
Igor Sysoevc2068d02005-10-19 12:33:58 +000098 ngx_unlock(&ngx_time_lock);
99 return;
100 }
101
Igor Sysoevf51d4fe2007-01-29 11:52:25 +0000102 if (slot == NGX_TIME_SLOTS - 1) {
Igor Sysoevc3d106a2006-12-06 14:25:20 +0000103 slot = 0;
104 } else {
105 slot++;
106 }
107
108 tp = &cached_time[slot];
109
Igor Sysoevc2068d02005-10-19 12:33:58 +0000110 tp->sec = sec;
Igor Sysoevc3d106a2006-12-06 14:25:20 +0000111 tp->msec = msec;
Igor Sysoevc2068d02005-10-19 12:33:58 +0000112
113 ngx_gmtime(sec, &gmt);
Igor Sysoevd59a0472003-11-10 21:09:22 +0000114
Igor Sysoev732a2712004-04-21 18:54:33 +0000115
Igor Sysoev80a29012007-01-25 22:01:23 +0000116 p0 = &cached_http_time[slot][0];
Igor Sysoev732a2712004-04-21 18:54:33 +0000117
Igor Sysoevc2068d02005-10-19 12:33:58 +0000118 (void) ngx_sprintf(p0, "%s, %02d %s %4d %02d:%02d:%02d GMT",
119 week[gmt.ngx_tm_wday], gmt.ngx_tm_mday,
120 months[gmt.ngx_tm_mon - 1], gmt.ngx_tm_year,
121 gmt.ngx_tm_hour, gmt.ngx_tm_min, gmt.ngx_tm_sec);
Igor Sysoev732a2712004-04-21 18:54:33 +0000122
Igor Sysoevf6906042004-11-25 16:17:31 +0000123#if (NGX_HAVE_GETTIMEZONE)
Igor Sysoev732a2712004-04-21 18:54:33 +0000124
Igor Sysoevc2068d02005-10-19 12:33:58 +0000125 tp->gmtoff = ngx_gettimezone();
126 ngx_gmtime(sec + tp->gmtoff * 60, &tm);
Igor Sysoev732a2712004-04-21 18:54:33 +0000127
Igor Sysoev6d45d8a2010-03-25 09:10:10 +0000128#elif (NGX_HAVE_GMTOFF)
129
130 ngx_localtime(sec, &tm);
131 cached_gmtoff = (ngx_int_t) (tm.ngx_tm_gmtoff / 60);
132 tp->gmtoff = cached_gmtoff;
133
Igor Sysoev732a2712004-04-21 18:54:33 +0000134#else
Igor Sysoevd59a0472003-11-10 21:09:22 +0000135
Igor Sysoev6d45d8a2010-03-25 09:10:10 +0000136 ngx_localtime(sec, &tm);
137 cached_gmtoff = ngx_timezone(tm.ngx_tm_isdst);
Igor Sysoev2f916a92010-03-13 18:08:07 +0000138 tp->gmtoff = cached_gmtoff;
Igor Sysoevd59a0472003-11-10 21:09:22 +0000139
Igor Sysoev732a2712004-04-21 18:54:33 +0000140#endif
Igor Sysoev562e53e2003-11-13 06:14:05 +0000141
Igor Sysoev732a2712004-04-21 18:54:33 +0000142
Igor Sysoev80a29012007-01-25 22:01:23 +0000143 p1 = &cached_err_log_time[slot][0];
Igor Sysoev732a2712004-04-21 18:54:33 +0000144
Igor Sysoevc2068d02005-10-19 12:33:58 +0000145 (void) ngx_sprintf(p1, "%4d/%02d/%02d %02d:%02d:%02d",
Igor Sysoev4959ec42005-05-23 12:07:45 +0000146 tm.ngx_tm_year, tm.ngx_tm_mon,
147 tm.ngx_tm_mday, tm.ngx_tm_hour,
148 tm.ngx_tm_min, tm.ngx_tm_sec);
Igor Sysoev732a2712004-04-21 18:54:33 +0000149
Igor Sysoev732a2712004-04-21 18:54:33 +0000150
Igor Sysoev80a29012007-01-25 22:01:23 +0000151 p2 = &cached_http_log_time[slot][0];
Igor Sysoev732a2712004-04-21 18:54:33 +0000152
Igor Sysoevc2068d02005-10-19 12:33:58 +0000153 (void) ngx_sprintf(p2, "%02d/%s/%d:%02d:%02d:%02d %c%02d%02d",
Igor Sysoev4959ec42005-05-23 12:07:45 +0000154 tm.ngx_tm_mday, months[tm.ngx_tm_mon - 1],
155 tm.ngx_tm_year, tm.ngx_tm_hour,
156 tm.ngx_tm_min, tm.ngx_tm_sec,
Igor Sysoevc2068d02005-10-19 12:33:58 +0000157 tp->gmtoff < 0 ? '-' : '+',
158 ngx_abs(tp->gmtoff / 60), ngx_abs(tp->gmtoff % 60));
Igor Sysoev732a2712004-04-21 18:54:33 +0000159
Igor Sysoevc9d671c2011-03-16 15:46:57 +0000160 p3 = &cached_http_log_iso8601[slot][0];
161
162 (void) ngx_sprintf(p3, "%4d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
163 tm.ngx_tm_year, tm.ngx_tm_mon,
164 tm.ngx_tm_mday, tm.ngx_tm_hour,
165 tm.ngx_tm_min, tm.ngx_tm_sec,
166 tp->gmtoff < 0 ? '-' : '+',
167 ngx_abs(tp->gmtoff / 60), ngx_abs(tp->gmtoff % 60));
168
Igor Sysoevb54698b2004-02-23 20:57:12 +0000169
Igor Sysoevc2068d02005-10-19 12:33:58 +0000170 ngx_memory_barrier();
Igor Sysoevb54698b2004-02-23 20:57:12 +0000171
Igor Sysoevc2068d02005-10-19 12:33:58 +0000172 ngx_cached_time = tp;
173 ngx_cached_http_time.data = p0;
174 ngx_cached_err_log_time.data = p1;
175 ngx_cached_http_log_time.data = p2;
Igor Sysoevc9d671c2011-03-16 15:46:57 +0000176 ngx_cached_http_log_iso8601.data = p3;
Igor Sysoevc2068d02005-10-19 12:33:58 +0000177
178 ngx_unlock(&ngx_time_lock);
Igor Sysoevd59a0472003-11-10 21:09:22 +0000179}
Igor Sysoev562e53e2003-11-13 06:14:05 +0000180
181
Igor Sysoev6d45d8a2010-03-25 09:10:10 +0000182#if !(NGX_WIN32)
183
184void
185ngx_time_sigsafe_update(void)
186{
187 u_char *p;
188 ngx_tm_t tm;
189 time_t sec;
Igor Sysoev6d45d8a2010-03-25 09:10:10 +0000190 ngx_time_t *tp;
191 struct timeval tv;
192
193 if (!ngx_trylock(&ngx_time_lock)) {
194 return;
195 }
196
197 ngx_gettimeofday(&tv);
198
199 sec = tv.tv_sec;
Igor Sysoev6d45d8a2010-03-25 09:10:10 +0000200
201 tp = &cached_time[slot];
202
203 if (tp->sec == sec) {
204 ngx_unlock(&ngx_time_lock);
205 return;
206 }
207
208 if (slot == NGX_TIME_SLOTS - 1) {
209 slot = 0;
210 } else {
211 slot++;
212 }
213
Maxim Dounin25197b32012-08-03 09:10:39 +0000214 tp = &cached_time[slot];
215
216 tp->sec = 0;
217
Igor Sysoev6d45d8a2010-03-25 09:10:10 +0000218 ngx_gmtime(sec + cached_gmtoff * 60, &tm);
219
220 p = &cached_err_log_time[slot][0];
221
222 (void) ngx_sprintf(p, "%4d/%02d/%02d %02d:%02d:%02d",
223 tm.ngx_tm_year, tm.ngx_tm_mon,
224 tm.ngx_tm_mday, tm.ngx_tm_hour,
225 tm.ngx_tm_min, tm.ngx_tm_sec);
226
227 ngx_memory_barrier();
228
229 ngx_cached_err_log_time.data = p;
230
231 ngx_unlock(&ngx_time_lock);
232}
233
234#endif
235
236
Igor Sysoevc1571722005-03-19 12:38:37 +0000237u_char *
238ngx_http_time(u_char *buf, time_t t)
Igor Sysoev562e53e2003-11-13 06:14:05 +0000239{
240 ngx_tm_t tm;
241
242 ngx_gmtime(t, &tm);
243
Igor Sysoevc0edbcc2004-10-21 15:34:38 +0000244 return ngx_sprintf(buf, "%s, %02d %s %4d %02d:%02d:%02d GMT",
245 week[tm.ngx_tm_wday],
246 tm.ngx_tm_mday,
247 months[tm.ngx_tm_mon - 1],
248 tm.ngx_tm_year,
249 tm.ngx_tm_hour,
250 tm.ngx_tm_min,
251 tm.ngx_tm_sec);
Igor Sysoeva7c4a2a2004-08-29 03:55:41 +0000252}
253
254
Igor Sysoevc1571722005-03-19 12:38:37 +0000255u_char *
256ngx_http_cookie_time(u_char *buf, time_t t)
Igor Sysoeva7c4a2a2004-08-29 03:55:41 +0000257{
258 ngx_tm_t tm;
259
260 ngx_gmtime(t, &tm);
261
262 /*
263 * Netscape 3.x does not understand 4-digit years at all and
264 * 2-digit years more than "37"
265 */
266
Igor Sysoevc0edbcc2004-10-21 15:34:38 +0000267 return ngx_sprintf(buf,
268 (tm.ngx_tm_year > 2037) ?
269 "%s, %02d-%s-%d %02d:%02d:%02d GMT":
270 "%s, %02d-%s-%02d %02d:%02d:%02d GMT",
271 week[tm.ngx_tm_wday],
272 tm.ngx_tm_mday,
273 months[tm.ngx_tm_mon - 1],
274 (tm.ngx_tm_year > 2037) ? tm.ngx_tm_year:
275 tm.ngx_tm_year % 100,
276 tm.ngx_tm_hour,
277 tm.ngx_tm_min,
278 tm.ngx_tm_sec);
Igor Sysoev562e53e2003-11-13 06:14:05 +0000279}
280
281
Igor Sysoevc1571722005-03-19 12:38:37 +0000282void
283ngx_gmtime(time_t t, ngx_tm_t *tp)
Igor Sysoev562e53e2003-11-13 06:14:05 +0000284{
Igor Sysoev4611ad32008-04-13 13:33:12 +0000285 ngx_int_t yday;
286 ngx_uint_t n, sec, min, hour, mday, mon, year, wday, days, leap;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000287
Igor Sysoevac5deaa2008-01-31 15:14:31 +0000288 /* the calculation is valid for positive time_t only */
Igor Sysoev4611ad32008-04-13 13:33:12 +0000289
Igor Sysoevac5deaa2008-01-31 15:14:31 +0000290 n = (ngx_uint_t) t;
291
292 days = n / 86400;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000293
Ruslan Ermilovb74f8ff2012-02-28 11:31:05 +0000294 /* January 1, 1970 was Thursday */
Igor Sysoev4611ad32008-04-13 13:33:12 +0000295
Igor Sysoev562e53e2003-11-13 06:14:05 +0000296 wday = (4 + days) % 7;
297
Igor Sysoevac5deaa2008-01-31 15:14:31 +0000298 n %= 86400;
299 hour = n / 3600;
300 n %= 3600;
301 min = n / 60;
302 sec = n % 60;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000303
Igor Sysoev4611ad32008-04-13 13:33:12 +0000304 /*
305 * the algorithm based on Gauss' formula,
306 * see src/http/ngx_http_parse_time.c
307 */
Igor Sysoev5f800782003-12-08 20:48:12 +0000308
Igor Sysoev4611ad32008-04-13 13:33:12 +0000309 /* days since March 1, 1 BC */
Igor Sysoev562e53e2003-11-13 06:14:05 +0000310 days = days - (31 + 28) + 719527;
311
Igor Sysoev4611ad32008-04-13 13:33:12 +0000312 /*
313 * The "days" should be adjusted to 1 only, however, some March 1st's go
314 * to previous year, so we adjust them to 2. This causes also shift of the
Ruslan Ermilov47a04aa2012-04-03 07:37:31 +0000315 * last February days to next year, but we catch the case when "yday"
Igor Sysoev4611ad32008-04-13 13:33:12 +0000316 * becomes negative.
317 */
318
319 year = (days + 2) * 400 / (365 * 400 + 100 - 4 + 1);
320
Igor Sysoev562e53e2003-11-13 06:14:05 +0000321 yday = days - (365 * year + year / 4 - year / 100 + year / 400);
322
Igor Sysoev4611ad32008-04-13 13:33:12 +0000323 if (yday < 0) {
324 leap = (year % 4 == 0) && (year % 100 || (year % 400 == 0));
325 yday = 365 + leap + yday;
326 year--;
327 }
Igor Sysoev562e53e2003-11-13 06:14:05 +0000328
Igor Sysoev4611ad32008-04-13 13:33:12 +0000329 /*
330 * The empirical formula that maps "yday" to month.
331 * There are at least 10 variants, some of them are:
332 * mon = (yday + 31) * 15 / 459
333 * mon = (yday + 31) * 17 / 520
334 * mon = (yday + 31) * 20 / 612
335 */
336
337 mon = (yday + 31) * 10 / 306;
338
339 /* the Gauss' formula that evaluates days before the month */
340
341 mday = yday - (367 * mon / 12 - 30) + 1;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000342
343 if (yday >= 306) {
Igor Sysoevd90282d2004-09-28 08:34:51 +0000344
Igor Sysoev4611ad32008-04-13 13:33:12 +0000345 year++;
346 mon -= 10;
347
Igor Sysoev11dbe972004-03-29 17:43:58 +0000348 /*
Igor Sysoeve772e8f2004-04-21 20:13:48 +0000349 * there is no "yday" in Win32 SYSTEMTIME
Igor Sysoev11dbe972004-03-29 17:43:58 +0000350 *
351 * yday -= 306;
352 */
353
Igor Sysoev4611ad32008-04-13 13:33:12 +0000354 } else {
Igor Sysoev562e53e2003-11-13 06:14:05 +0000355
Igor Sysoev4611ad32008-04-13 13:33:12 +0000356 mon += 2;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000357
Igor Sysoev4611ad32008-04-13 13:33:12 +0000358 /*
359 * there is no "yday" in Win32 SYSTEMTIME
360 *
361 * yday += 31 + 28 + leap;
362 */
Igor Sysoev562e53e2003-11-13 06:14:05 +0000363 }
364
Igor Sysoev10a543a2004-03-16 07:10:12 +0000365 tp->ngx_tm_sec = (ngx_tm_sec_t) sec;
366 tp->ngx_tm_min = (ngx_tm_min_t) min;
367 tp->ngx_tm_hour = (ngx_tm_hour_t) hour;
368 tp->ngx_tm_mday = (ngx_tm_mday_t) mday;
369 tp->ngx_tm_mon = (ngx_tm_mon_t) mon;
370 tp->ngx_tm_year = (ngx_tm_year_t) year;
371 tp->ngx_tm_wday = (ngx_tm_wday_t) wday;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000372}
Igor Sysoevc2717752008-08-11 15:28:15 +0000373
374
375time_t
376ngx_next_time(time_t when)
377{
378 time_t now, next;
379 struct tm tm;
380
381 now = ngx_time();
382
383 ngx_libc_localtime(now, &tm);
384
385 tm.tm_hour = (int) (when / 3600);
386 when %= 3600;
387 tm.tm_min = (int) (when / 60);
388 tm.tm_sec = (int) (when % 60);
389
390 next = mktime(&tm);
391
392 if (next == -1) {
393 return -1;
394 }
395
396 if (next - now > 0) {
397 return next;
398 }
399
400 tm.tm_mday++;
401
402 /* mktime() should normalize a date (Jan 32, etc) */
403
404 next = mktime(&tm);
405
406 if (next != -1) {
407 return next;
408 }
409
410 return -1;
411}