blob: 3105beb47f4b8cf8241adb7e67c6129b04c1d752 [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
Igor Sysoevd90282d2004-09-28 08:34:51 +00004 */
5
6
Igor Sysoevd59a0472003-11-10 21:09:22 +00007#include <ngx_config.h>
8#include <ngx_core.h>
9
10
Igor Sysoevc0247302004-06-27 18:01:57 +000011/*
Igor Sysoevc2068d02005-10-19 12:33:58 +000012 * The time may be updated by signal handler or by several threads.
13 * The time update operations are rare and require to hold the ngx_time_lock.
14 * The time read operations are frequent, so they are lock-free and get time
15 * values and strings from the current slot. Thus thread may get the corrupted
16 * values only if it is preempted while copying and then it is not scheduled
17 * to run more than NGX_TIME_SLOTS seconds.
Igor Sysoevc0247302004-06-27 18:01:57 +000018 */
19
Igor Sysoevc2068d02005-10-19 12:33:58 +000020#define NGX_TIME_SLOTS 64
Igor Sysoevc0247302004-06-27 18:01:57 +000021
Igor Sysoevf4b34c42006-12-19 12:38:20 +000022static ngx_uint_t slot;
Igor Sysoevc2068d02005-10-19 12:33:58 +000023static ngx_atomic_t ngx_time_lock;
Igor Sysoevc0247302004-06-27 18:01:57 +000024
Igor Sysoevc2068d02005-10-19 12:33:58 +000025volatile ngx_msec_t ngx_current_msec;
26volatile ngx_time_t *ngx_cached_time;
27volatile ngx_str_t ngx_cached_err_log_time;
28volatile ngx_str_t ngx_cached_http_time;
29volatile ngx_str_t ngx_cached_http_log_time;
Igor Sysoevc0247302004-06-27 18:01:57 +000030
Igor Sysoevc2068d02005-10-19 12:33:58 +000031static ngx_time_t cached_time[NGX_TIME_SLOTS];
32static u_char cached_err_log_time[NGX_TIME_SLOTS]
33 [sizeof("1970/09/28 12:00:00")];
34static u_char cached_http_time[NGX_TIME_SLOTS]
35 [sizeof("Mon, 28 Sep 1970 06:00:00 GMT")];
36static u_char cached_http_log_time[NGX_TIME_SLOTS]
37 [sizeof("28/Sep/1970:12:00:00 +0600")];
Igor Sysoevd59a0472003-11-10 21:09:22 +000038
39
Igor Sysoev3f4685f2004-04-25 20:13:21 +000040static char *week[] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" };
Igor Sysoev562e53e2003-11-13 06:14:05 +000041static char *months[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun",
42 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
43
Igor Sysoevc1571722005-03-19 12:38:37 +000044void
45ngx_time_init(void)
Igor Sysoev562e53e2003-11-13 06:14:05 +000046{
Igor Sysoevc0247302004-06-27 18:01:57 +000047 ngx_cached_err_log_time.len = sizeof("1970/09/28 12:00:00") - 1;
48 ngx_cached_http_time.len = sizeof("Mon, 28 Sep 1970 06:00:00 GMT") - 1;
49 ngx_cached_http_log_time.len = sizeof("28/Sep/1970:12:00:00 +0600") - 1;
Igor Sysoev732a2712004-04-21 18:54:33 +000050
Igor Sysoevc0247302004-06-27 18:01:57 +000051 ngx_cached_time = &cached_time[0];
Igor Sysoevf5003d82003-12-04 14:53:00 +000052
Igor Sysoevc2068d02005-10-19 12:33:58 +000053 ngx_time_update(0, 0);
Igor Sysoev562e53e2003-11-13 06:14:05 +000054}
55
56
Igor Sysoevc1571722005-03-19 12:38:37 +000057void
Igor Sysoevc2068d02005-10-19 12:33:58 +000058ngx_time_update(time_t sec, ngx_uint_t msec)
Igor Sysoevd59a0472003-11-10 21:09:22 +000059{
Igor Sysoevc2068d02005-10-19 12:33:58 +000060 u_char *p0, *p1, *p2;
61 ngx_tm_t tm, gmt;
62 ngx_time_t *tp;
63 struct timeval tv;
Igor Sysoevd59a0472003-11-10 21:09:22 +000064
Igor Sysoevc2068d02005-10-19 12:33:58 +000065 if (!ngx_trylock(&ngx_time_lock)) {
Igor Sysoev898446c2004-02-26 17:10:01 +000066 return;
Igor Sysoevb54698b2004-02-23 20:57:12 +000067 }
Igor Sysoevc0247302004-06-27 18:01:57 +000068
Igor Sysoevc2068d02005-10-19 12:33:58 +000069 if (sec == 0) {
70 ngx_gettimeofday(&tv);
Igor Sysoevb54698b2004-02-23 20:57:12 +000071
Igor Sysoevc2068d02005-10-19 12:33:58 +000072 sec = tv.tv_sec;
73 msec = tv.tv_usec / 1000;
74 }
Igor Sysoev3c3ca172004-01-05 20:55:48 +000075
Igor Sysoevc2068d02005-10-19 12:33:58 +000076 ngx_current_msec = (ngx_msec_t) sec * 1000 + msec;
Igor Sysoevc0247302004-06-27 18:01:57 +000077
Igor Sysoevc2068d02005-10-19 12:33:58 +000078 tp = &cached_time[slot];
79
Igor Sysoevc2068d02005-10-19 12:33:58 +000080 if (tp->sec == sec) {
Igor Sysoevc3d106a2006-12-06 14:25:20 +000081 tp->msec = msec;
Igor Sysoevc2068d02005-10-19 12:33:58 +000082 ngx_unlock(&ngx_time_lock);
83 return;
84 }
85
Igor Sysoevf51d4fe2007-01-29 11:52:25 +000086 if (slot == NGX_TIME_SLOTS - 1) {
Igor Sysoevc3d106a2006-12-06 14:25:20 +000087 slot = 0;
88 } else {
89 slot++;
90 }
91
92 tp = &cached_time[slot];
93
Igor Sysoevc2068d02005-10-19 12:33:58 +000094 tp->sec = sec;
Igor Sysoevc3d106a2006-12-06 14:25:20 +000095 tp->msec = msec;
Igor Sysoevc2068d02005-10-19 12:33:58 +000096
97 ngx_gmtime(sec, &gmt);
Igor Sysoevd59a0472003-11-10 21:09:22 +000098
Igor Sysoev732a2712004-04-21 18:54:33 +000099
Igor Sysoev80a29012007-01-25 22:01:23 +0000100 p0 = &cached_http_time[slot][0];
Igor Sysoev732a2712004-04-21 18:54:33 +0000101
Igor Sysoevc2068d02005-10-19 12:33:58 +0000102 (void) ngx_sprintf(p0, "%s, %02d %s %4d %02d:%02d:%02d GMT",
103 week[gmt.ngx_tm_wday], gmt.ngx_tm_mday,
104 months[gmt.ngx_tm_mon - 1], gmt.ngx_tm_year,
105 gmt.ngx_tm_hour, gmt.ngx_tm_min, gmt.ngx_tm_sec);
Igor Sysoev732a2712004-04-21 18:54:33 +0000106
Igor Sysoevf6906042004-11-25 16:17:31 +0000107#if (NGX_HAVE_GETTIMEZONE)
Igor Sysoev732a2712004-04-21 18:54:33 +0000108
Igor Sysoevc2068d02005-10-19 12:33:58 +0000109 tp->gmtoff = ngx_gettimezone();
110 ngx_gmtime(sec + tp->gmtoff * 60, &tm);
Igor Sysoev732a2712004-04-21 18:54:33 +0000111
Igor Sysoevf6906042004-11-25 16:17:31 +0000112#elif (NGX_HAVE_GMTOFF)
Igor Sysoev415b1ce2004-06-17 17:18:53 +0000113
Igor Sysoevc2068d02005-10-19 12:33:58 +0000114 ngx_localtime(sec, &tm);
115 tp->gmtoff = (ngx_int_t) (tm.ngx_tm_gmtoff / 60);
Igor Sysoev415b1ce2004-06-17 17:18:53 +0000116
Igor Sysoev732a2712004-04-21 18:54:33 +0000117#else
Igor Sysoevd59a0472003-11-10 21:09:22 +0000118
Igor Sysoevc2068d02005-10-19 12:33:58 +0000119 ngx_localtime(sec, &tm);
120 tp->gmtoff = ngx_timezone(tm.ngx_tm_isdst);
Igor Sysoevd59a0472003-11-10 21:09:22 +0000121
Igor Sysoev732a2712004-04-21 18:54:33 +0000122#endif
Igor Sysoev562e53e2003-11-13 06:14:05 +0000123
Igor Sysoev732a2712004-04-21 18:54:33 +0000124
Igor Sysoev80a29012007-01-25 22:01:23 +0000125 p1 = &cached_err_log_time[slot][0];
Igor Sysoev732a2712004-04-21 18:54:33 +0000126
Igor Sysoevc2068d02005-10-19 12:33:58 +0000127 (void) ngx_sprintf(p1, "%4d/%02d/%02d %02d:%02d:%02d",
Igor Sysoev4959ec42005-05-23 12:07:45 +0000128 tm.ngx_tm_year, tm.ngx_tm_mon,
129 tm.ngx_tm_mday, tm.ngx_tm_hour,
130 tm.ngx_tm_min, tm.ngx_tm_sec);
Igor Sysoev732a2712004-04-21 18:54:33 +0000131
Igor Sysoev732a2712004-04-21 18:54:33 +0000132
Igor Sysoev80a29012007-01-25 22:01:23 +0000133 p2 = &cached_http_log_time[slot][0];
Igor Sysoev732a2712004-04-21 18:54:33 +0000134
Igor Sysoevc2068d02005-10-19 12:33:58 +0000135 (void) ngx_sprintf(p2, "%02d/%s/%d:%02d:%02d:%02d %c%02d%02d",
Igor Sysoev4959ec42005-05-23 12:07:45 +0000136 tm.ngx_tm_mday, months[tm.ngx_tm_mon - 1],
137 tm.ngx_tm_year, tm.ngx_tm_hour,
138 tm.ngx_tm_min, tm.ngx_tm_sec,
Igor Sysoevc2068d02005-10-19 12:33:58 +0000139 tp->gmtoff < 0 ? '-' : '+',
140 ngx_abs(tp->gmtoff / 60), ngx_abs(tp->gmtoff % 60));
Igor Sysoev732a2712004-04-21 18:54:33 +0000141
Igor Sysoevb54698b2004-02-23 20:57:12 +0000142
Igor Sysoevc2068d02005-10-19 12:33:58 +0000143 ngx_memory_barrier();
Igor Sysoevb54698b2004-02-23 20:57:12 +0000144
Igor Sysoevc2068d02005-10-19 12:33:58 +0000145 ngx_cached_time = tp;
146 ngx_cached_http_time.data = p0;
147 ngx_cached_err_log_time.data = p1;
148 ngx_cached_http_log_time.data = p2;
149
150 ngx_unlock(&ngx_time_lock);
Igor Sysoevd59a0472003-11-10 21:09:22 +0000151}
Igor Sysoev562e53e2003-11-13 06:14:05 +0000152
153
Igor Sysoevc1571722005-03-19 12:38:37 +0000154u_char *
155ngx_http_time(u_char *buf, time_t t)
Igor Sysoev562e53e2003-11-13 06:14:05 +0000156{
157 ngx_tm_t tm;
158
159 ngx_gmtime(t, &tm);
160
Igor Sysoevc0edbcc2004-10-21 15:34:38 +0000161 return ngx_sprintf(buf, "%s, %02d %s %4d %02d:%02d:%02d GMT",
162 week[tm.ngx_tm_wday],
163 tm.ngx_tm_mday,
164 months[tm.ngx_tm_mon - 1],
165 tm.ngx_tm_year,
166 tm.ngx_tm_hour,
167 tm.ngx_tm_min,
168 tm.ngx_tm_sec);
Igor Sysoeva7c4a2a2004-08-29 03:55:41 +0000169}
170
171
Igor Sysoevc1571722005-03-19 12:38:37 +0000172u_char *
173ngx_http_cookie_time(u_char *buf, time_t t)
Igor Sysoeva7c4a2a2004-08-29 03:55:41 +0000174{
175 ngx_tm_t tm;
176
177 ngx_gmtime(t, &tm);
178
179 /*
180 * Netscape 3.x does not understand 4-digit years at all and
181 * 2-digit years more than "37"
182 */
183
Igor Sysoevc0edbcc2004-10-21 15:34:38 +0000184 return ngx_sprintf(buf,
185 (tm.ngx_tm_year > 2037) ?
186 "%s, %02d-%s-%d %02d:%02d:%02d GMT":
187 "%s, %02d-%s-%02d %02d:%02d:%02d GMT",
188 week[tm.ngx_tm_wday],
189 tm.ngx_tm_mday,
190 months[tm.ngx_tm_mon - 1],
191 (tm.ngx_tm_year > 2037) ? tm.ngx_tm_year:
192 tm.ngx_tm_year % 100,
193 tm.ngx_tm_hour,
194 tm.ngx_tm_min,
195 tm.ngx_tm_sec);
Igor Sysoev562e53e2003-11-13 06:14:05 +0000196}
197
198
Igor Sysoevc1571722005-03-19 12:38:37 +0000199void
200ngx_gmtime(time_t t, ngx_tm_t *tp)
Igor Sysoev562e53e2003-11-13 06:14:05 +0000201{
Igor Sysoev4611ad32008-04-13 13:33:12 +0000202 ngx_int_t yday;
203 ngx_uint_t n, sec, min, hour, mday, mon, year, wday, days, leap;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000204
Igor Sysoevac5deaa2008-01-31 15:14:31 +0000205 /* the calculation is valid for positive time_t only */
Igor Sysoev4611ad32008-04-13 13:33:12 +0000206
Igor Sysoevac5deaa2008-01-31 15:14:31 +0000207 n = (ngx_uint_t) t;
208
209 days = n / 86400;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000210
211 /* Jaunary 1, 1970 was Thursday */
Igor Sysoev4611ad32008-04-13 13:33:12 +0000212
Igor Sysoev562e53e2003-11-13 06:14:05 +0000213 wday = (4 + days) % 7;
214
Igor Sysoevac5deaa2008-01-31 15:14:31 +0000215 n %= 86400;
216 hour = n / 3600;
217 n %= 3600;
218 min = n / 60;
219 sec = n % 60;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000220
Igor Sysoev4611ad32008-04-13 13:33:12 +0000221 /*
222 * the algorithm based on Gauss' formula,
223 * see src/http/ngx_http_parse_time.c
224 */
Igor Sysoev5f800782003-12-08 20:48:12 +0000225
Igor Sysoev4611ad32008-04-13 13:33:12 +0000226 /* days since March 1, 1 BC */
Igor Sysoev562e53e2003-11-13 06:14:05 +0000227 days = days - (31 + 28) + 719527;
228
Igor Sysoev4611ad32008-04-13 13:33:12 +0000229 /*
230 * The "days" should be adjusted to 1 only, however, some March 1st's go
231 * to previous year, so we adjust them to 2. This causes also shift of the
232 * last Feburary days to next year, but we catch the case when "yday"
233 * becomes negative.
234 */
235
236 year = (days + 2) * 400 / (365 * 400 + 100 - 4 + 1);
237
Igor Sysoev562e53e2003-11-13 06:14:05 +0000238 yday = days - (365 * year + year / 4 - year / 100 + year / 400);
239
Igor Sysoev4611ad32008-04-13 13:33:12 +0000240 if (yday < 0) {
241 leap = (year % 4 == 0) && (year % 100 || (year % 400 == 0));
242 yday = 365 + leap + yday;
243 year--;
244 }
Igor Sysoev562e53e2003-11-13 06:14:05 +0000245
Igor Sysoev4611ad32008-04-13 13:33:12 +0000246 /*
247 * The empirical formula that maps "yday" to month.
248 * There are at least 10 variants, some of them are:
249 * mon = (yday + 31) * 15 / 459
250 * mon = (yday + 31) * 17 / 520
251 * mon = (yday + 31) * 20 / 612
252 */
253
254 mon = (yday + 31) * 10 / 306;
255
256 /* the Gauss' formula that evaluates days before the month */
257
258 mday = yday - (367 * mon / 12 - 30) + 1;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000259
260 if (yday >= 306) {
Igor Sysoevd90282d2004-09-28 08:34:51 +0000261
Igor Sysoev4611ad32008-04-13 13:33:12 +0000262 year++;
263 mon -= 10;
264
Igor Sysoev11dbe972004-03-29 17:43:58 +0000265 /*
Igor Sysoeve772e8f2004-04-21 20:13:48 +0000266 * there is no "yday" in Win32 SYSTEMTIME
Igor Sysoev11dbe972004-03-29 17:43:58 +0000267 *
268 * yday -= 306;
269 */
270
Igor Sysoev4611ad32008-04-13 13:33:12 +0000271 } else {
Igor Sysoev562e53e2003-11-13 06:14:05 +0000272
Igor Sysoev4611ad32008-04-13 13:33:12 +0000273 mon += 2;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000274
Igor Sysoev4611ad32008-04-13 13:33:12 +0000275 /*
276 * there is no "yday" in Win32 SYSTEMTIME
277 *
278 * yday += 31 + 28 + leap;
279 */
Igor Sysoev562e53e2003-11-13 06:14:05 +0000280 }
281
Igor Sysoev10a543a2004-03-16 07:10:12 +0000282 tp->ngx_tm_sec = (ngx_tm_sec_t) sec;
283 tp->ngx_tm_min = (ngx_tm_min_t) min;
284 tp->ngx_tm_hour = (ngx_tm_hour_t) hour;
285 tp->ngx_tm_mday = (ngx_tm_mday_t) mday;
286 tp->ngx_tm_mon = (ngx_tm_mon_t) mon;
287 tp->ngx_tm_year = (ngx_tm_year_t) year;
288 tp->ngx_tm_wday = (ngx_tm_wday_t) wday;
Igor Sysoev562e53e2003-11-13 06:14:05 +0000289}
Igor Sysoevc2717752008-08-11 15:28:15 +0000290
291
292time_t
293ngx_next_time(time_t when)
294{
295 time_t now, next;
296 struct tm tm;
297
298 now = ngx_time();
299
300 ngx_libc_localtime(now, &tm);
301
302 tm.tm_hour = (int) (when / 3600);
303 when %= 3600;
304 tm.tm_min = (int) (when / 60);
305 tm.tm_sec = (int) (when % 60);
306
307 next = mktime(&tm);
308
309 if (next == -1) {
310 return -1;
311 }
312
313 if (next - now > 0) {
314 return next;
315 }
316
317 tm.tm_mday++;
318
319 /* mktime() should normalize a date (Jan 32, etc) */
320
321 next = mktime(&tm);
322
323 if (next != -1) {
324 return next;
325 }
326
327 return -1;
328}