-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathlibsvc.c
234 lines (183 loc) · 4.86 KB
/
libsvc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/******************************************************************************
* Copyright (C) 2008 - 2014 Andreas Öman
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************/
#include <pthread.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <sys/resource.h>
#include "libsvc.h"
#include "tcp.h"
#include "misc.h"
#include "init.h"
#include "trace.h"
#include "vec.h"
#ifdef WITH_OPENSSL
#include <openssl/rand.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#endif
#ifdef WITH_MYSQL
#include "db.h"
#endif
#ifdef WITH_ASYNCIO
#include "asyncio.h"
#endif
#ifdef WITH_CURL
#include <curl/curl.h>
#endif
typedef struct {
void (*init)(void);
void (*term)(void);
void (*fini)(void);
int prio;
} inithelper_t;
static VEC_HEAD(, inithelper_t) inithelpers;
/**
*
*/
static int
ihcmp(const inithelper_t *a, const inithelper_t *b)
{
return a->prio - b->prio;
}
void
inithelper_register(void (*init)(void), void (*term)(void),
void (*fini)(void), int prio)
{
VEC_PUSH_BACK(&inithelpers, ((const inithelper_t) {
.init = init, .term = term, .fini = fini, .prio = prio}));
}
char *libsvc_app_version;
char *libsvc_app_version_only;
void
libsvc_set_app_version(const char *version)
{
libsvc_app_version = fmt("%s-%s", PROGNAME, version);
libsvc_app_version_only = strdup(version);
}
void
libsvc_init(void)
{
#ifdef WITH_MYSQL
db_init();
#endif
#ifdef WITH_ASYNCIO
asyncio_init();
#endif
tcp_init(NULL);
#ifdef WITH_CURL
curl_global_init(CURL_GLOBAL_ALL);
#endif
#ifdef WITH_TCP_SERVER
tcp_server_init();
#endif
VEC_SORT(&inithelpers, ihcmp);
for(ssize_t i = 0; i < VEC_LEN(&inithelpers); i++) {
if(VEC_ITEM(&inithelpers, i).init)
VEC_ITEM(&inithelpers, i).init();
}
}
void
libsvc_fini(void)
{
for(ssize_t i = VEC_LEN(&inithelpers) - 1; i >= 0; i--) {
if(VEC_ITEM(&inithelpers, i).fini)
VEC_ITEM(&inithelpers, i).fini();
}
}
void
libsvc_term(void)
{
for(ssize_t i = VEC_LEN(&inithelpers) - 1; i >= 0; i--) {
if(VEC_ITEM(&inithelpers, i).term)
VEC_ITEM(&inithelpers, i).term();
}
}
void
libsvc_set_fdlimit(int num_fd)
{
struct rlimit lim;
if(getrlimit(RLIMIT_NOFILE, &lim) == -1) {
trace(LOG_ERR, "Unable to get fdlimit -- %s",
strerror(errno));
}
lim.rlim_cur = num_fd < lim.rlim_max ? num_fd : lim.rlim_max;
if(setrlimit(RLIMIT_NOFILE, &lim) == -1) {
trace(LOG_ERR, "Unable to set fdlimit to %d -- %s",
num_fd, strerror(errno));
trace(LOG_INFO, "Current fdlimit %ld (max: %ld)",
(long)lim.rlim_cur, (long)lim.rlim_max);
exit(1);
}
trace(LOG_INFO, "Current fdlimit %ld (max: %ld)",
(long)lim.rlim_cur, (long)lim.rlim_max);
}
#if defined(WITH_OPENSSL)
#if OPENSSL_VERSION_NUMBER < 0x10100000
static pthread_mutex_t *ssl_locks;
/**
*
*/
static unsigned long __attribute__((unused))
ssl_tid_fn(void)
{
return (unsigned long)pthread_self();
}
static void __attribute__((unused))
ssl_lock_fn(int mode, int n, const char *file, int line)
{
if(mode & CRYPTO_LOCK)
pthread_mutex_lock(&ssl_locks[n]);
else if(mode & CRYPTO_UNLOCK)
pthread_mutex_unlock(&ssl_locks[n]);
}
#endif
static pthread_once_t once_openssl = PTHREAD_ONCE_INIT;
static void
init_openssl(void)
{
#if OPENSSL_VERSION_NUMBER < 0x10100000
SSL_library_init();
SSL_load_error_strings();
int i, n = CRYPTO_num_locks();
ssl_locks = malloc_mul(sizeof(pthread_mutex_t), n);
for(i = 0; i < n; i++)
pthread_mutex_init(&ssl_locks[i], NULL);
CRYPTO_set_locking_callback(ssl_lock_fn);
CRYPTO_set_id_callback(ssl_tid_fn);
#endif
uint8_t randomness[32];
get_random_bytes(randomness, sizeof(randomness));
RAND_seed(randomness, sizeof(randomness));
}
void
libsvc_openssl_init(void)
{
pthread_once(&once_openssl, init_openssl);
}
#else
void
libsvc_openssl_init(void)
{
}
#endif