1 |
|
/* |
2 |
< |
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
3 |
< |
* s_misc.c: Yet another miscellaneous functions file. |
2 |
> |
* ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd) |
3 |
|
* |
4 |
< |
* Copyright (C) 2002 by the past and present ircd coders, and others. |
4 |
> |
* Copyright (c) 1997-2016 ircd-hybrid development team |
5 |
|
* |
6 |
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
* it under the terms of the GNU General Public License as published by |
15 |
|
* |
16 |
|
* You should have received a copy of the GNU General Public License |
17 |
|
* along with this program; if not, write to the Free Software |
18 |
< |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
18 |
> |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 |
19 |
|
* USA |
20 |
< |
* |
21 |
< |
* $Id$ |
20 |
> |
*/ |
21 |
> |
|
22 |
> |
/*! \file s_misc.c |
23 |
> |
* \brief Yet another miscellaneous functions file. |
24 |
> |
* \version $Id$ |
25 |
|
*/ |
26 |
|
|
27 |
|
#include "stdinc.h" |
28 |
< |
#include "s_misc.h" |
27 |
< |
#include "client.h" |
28 |
> |
#include "misc.h" |
29 |
|
#include "irc_string.h" |
29 |
– |
#include "sprintf_irc.h" |
30 |
|
#include "ircd.h" |
31 |
– |
#include "numeric.h" |
32 |
– |
#include "irc_res.h" |
33 |
– |
#include "fdlist.h" |
34 |
– |
#include "s_bsd.h" |
35 |
– |
#include "s_conf.h" |
36 |
– |
#include "s_serv.h" |
37 |
– |
#include "send.h" |
38 |
– |
#include "memory.h" |
31 |
|
|
32 |
|
|
33 |
< |
static const char *months[] = |
33 |
> |
const char * |
34 |
> |
date(uintmax_t lclock) |
35 |
|
{ |
36 |
< |
"January", "February", "March", "April", |
37 |
< |
"May", "June", "July", "August", |
45 |
< |
"September", "October", "November","December" |
46 |
< |
}; |
36 |
> |
static char buf[80]; |
37 |
> |
static uintmax_t lclock_last; |
38 |
|
|
39 |
< |
static const char *weekdays[] = |
40 |
< |
{ |
41 |
< |
"Sunday", "Monday", "Tuesday", "Wednesday", |
42 |
< |
"Thursday", "Friday", "Saturday" |
43 |
< |
}; |
39 |
> |
if (!lclock) |
40 |
> |
lclock = CurrentTime; |
41 |
> |
|
42 |
> |
if (lclock_last != lclock) |
43 |
> |
{ |
44 |
> |
lclock_last = lclock; |
45 |
> |
strftime(buf, sizeof(buf), "%A %B %-e %Y -- %T %z", localtime((time_t *)&lclock)); |
46 |
> |
} |
47 |
> |
|
48 |
> |
return buf; |
49 |
> |
} |
50 |
|
|
51 |
< |
char * |
52 |
< |
date(time_t lclock) |
51 |
> |
const char * |
52 |
> |
date_iso8601(uintmax_t lclock) |
53 |
|
{ |
54 |
< |
static char buf[80], plus; |
55 |
< |
struct tm *lt, *gm; |
59 |
< |
struct tm gmbuf; |
60 |
< |
int minswest; |
54 |
> |
static char buf[MAX_DATE_STRING]; |
55 |
> |
static uintmax_t lclock_last; |
56 |
|
|
57 |
< |
if (!lclock) |
57 |
> |
if (!lclock) |
58 |
|
lclock = CurrentTime; |
59 |
< |
gm = gmtime(&lclock); |
60 |
< |
memcpy(&gmbuf, gm, sizeof(gmbuf)); |
61 |
< |
gm = &gmbuf; |
62 |
< |
lt = localtime(&lclock); |
63 |
< |
|
64 |
< |
/* |
65 |
< |
* There is unfortunately no clean portable way to extract time zone |
71 |
< |
* offset information, so do ugly things. |
72 |
< |
*/ |
73 |
< |
minswest = (gm->tm_hour - lt->tm_hour) * 60 + (gm->tm_min - lt->tm_min); |
74 |
< |
|
75 |
< |
if (lt->tm_yday != gm->tm_yday) |
76 |
< |
{ |
77 |
< |
if ((lt->tm_yday > gm->tm_yday && lt->tm_year == gm->tm_year) || |
78 |
< |
(lt->tm_yday < gm->tm_yday && lt->tm_year != gm->tm_year)) |
79 |
< |
minswest -= 24 * 60; |
80 |
< |
else |
81 |
< |
minswest += 24 * 60; |
82 |
< |
} |
83 |
< |
|
84 |
< |
plus = (minswest > 0) ? '-' : '+'; |
85 |
< |
if (minswest < 0) |
86 |
< |
minswest = -minswest; |
87 |
< |
|
88 |
< |
snprintf(buf, sizeof(buf), "%s %s %d %d -- %02u:%02u:%02u %c%02u:%02u", |
89 |
< |
weekdays[lt->tm_wday], months[lt->tm_mon],lt->tm_mday, |
90 |
< |
lt->tm_year + 1900, lt->tm_hour, lt->tm_min, lt->tm_sec, |
91 |
< |
plus, minswest/60, minswest%60); |
59 |
> |
|
60 |
> |
if (lclock_last != lclock) |
61 |
> |
{ |
62 |
> |
lclock_last = lclock; |
63 |
> |
strftime(buf, sizeof(buf), "%FT%T%z", localtime((time_t *)&lclock)); |
64 |
> |
} |
65 |
> |
|
66 |
|
return buf; |
67 |
|
} |
68 |
|
|
69 |
+ |
/* |
70 |
+ |
* myctime - This is like standard ctime()-function, but it zaps away |
71 |
+ |
* the newline from the end of that string. Also, it takes |
72 |
+ |
* the time value as parameter, instead of pointer to it. |
73 |
+ |
* Note that it is necessary to copy the string to alternate |
74 |
+ |
* buffer (who knows how ctime() implements it, maybe it statically |
75 |
+ |
* has newline there and never 'refreshes' it -- zapping that |
76 |
+ |
* might break things in other places...) |
77 |
+ |
* |
78 |
+ |
* |
79 |
+ |
* Thu Nov 24 18:22:48 1986 |
80 |
+ |
*/ |
81 |
|
const char * |
82 |
< |
smalldate(time_t lclock) |
82 |
> |
date_ctime(uintmax_t lclock) |
83 |
|
{ |
84 |
|
static char buf[MAX_DATE_STRING]; |
85 |
< |
struct tm *lt, *gm; |
100 |
< |
struct tm gmbuf; |
85 |
> |
static uintmax_t lclock_last; |
86 |
|
|
87 |
|
if (!lclock) |
88 |
|
lclock = CurrentTime; |
89 |
|
|
90 |
< |
gm = gmtime(&lclock); |
91 |
< |
memcpy(&gmbuf, gm, sizeof(gmbuf)); |
92 |
< |
gm = &gmbuf; |
93 |
< |
lt = localtime(&lclock); |
94 |
< |
|
95 |
< |
snprintf(buf, sizeof(buf), "%d/%d/%d %02d.%02d", |
96 |
< |
lt->tm_year + 1900, lt->tm_mon + 1, lt->tm_mday, |
97 |
< |
lt->tm_hour, lt->tm_min); |
90 |
> |
if (lclock_last != lclock) |
91 |
> |
{ |
92 |
> |
lclock_last = lclock; |
93 |
> |
strftime(buf, sizeof(buf), "%a %b %-e %T %Y", localtime((time_t *)&lclock)); |
94 |
> |
} |
95 |
> |
|
96 |
> |
return buf; |
97 |
> |
} |
98 |
> |
|
99 |
> |
const char * |
100 |
> |
time_dissect(uintmax_t duration) |
101 |
> |
{ |
102 |
> |
static char buf[32]; /* 32 = sizeof("9999999999999999 days, 23:59:59") */ |
103 |
> |
unsigned int days = 0, hours = 0, minutes = 0, seconds = 0; |
104 |
> |
|
105 |
> |
while (duration >= 60 * 60 * 24) |
106 |
> |
{ |
107 |
> |
duration -= 60 * 60 * 24; |
108 |
> |
++days; |
109 |
> |
} |
110 |
> |
|
111 |
> |
while (duration >= 60 * 60) |
112 |
> |
{ |
113 |
> |
duration -= 60 * 60; |
114 |
> |
++hours; |
115 |
> |
} |
116 |
|
|
117 |
+ |
while (duration >= 60) |
118 |
+ |
{ |
119 |
+ |
duration -= 60; |
120 |
+ |
++minutes; |
121 |
+ |
} |
122 |
+ |
|
123 |
+ |
seconds = duration; |
124 |
+ |
|
125 |
+ |
snprintf(buf, sizeof(buf), "%u day%s, %02u:%02u:%02u", |
126 |
+ |
days, days == 1 ? "" : "s", hours, minutes, seconds); |
127 |
|
return buf; |
128 |
|
} |
129 |
|
|
130 |
< |
#ifdef HAVE_LIBCRYPTO |
131 |
< |
char * |
119 |
< |
ssl_get_cipher(const SSL *ssl) |
130 |
> |
void |
131 |
> |
binary_to_hex(const unsigned char *bin, char *hex, unsigned int length) |
132 |
|
{ |
133 |
< |
static char buffer[IRCD_BUFSIZE / 4]; |
122 |
< |
int bits = 0; |
133 |
> |
static const char trans[] = "0123456789ABCDEF"; |
134 |
|
|
135 |
< |
SSL_CIPHER_get_bits(SSL_get_current_cipher(ssl), &bits); |
135 |
> |
for (const unsigned char *const end = bin + length; bin < end; ++bin) |
136 |
> |
{ |
137 |
> |
*hex++ = trans[*bin >> 4]; |
138 |
> |
*hex++ = trans[*bin & 0xf]; |
139 |
> |
} |
140 |
|
|
141 |
< |
snprintf(buffer, sizeof(buffer), "%s %s-%d", SSL_get_version(ssl), |
127 |
< |
SSL_get_cipher(ssl), bits); |
128 |
< |
|
129 |
< |
return buffer; |
141 |
> |
*hex = '\0'; |
142 |
|
} |
131 |
– |
#endif |