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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
|
/*
* Copyright (c) 2009, Rambler media
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY Rambler media ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL Rambler BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "main.h"
#include "cfg_file.h"
#include "util.h"
#include "perl.h"
#include "lmtp.h"
/* 2 seconds to fork new process in place of dead one */
#define SOFT_FORK_TIME 2
struct config_file *cfg;
static void sig_handler (int );
static struct rspamd_worker * fork_worker (struct rspamd_main *, int, enum process_type);
sig_atomic_t do_restart;
sig_atomic_t do_terminate;
sig_atomic_t child_dead;
sig_atomic_t child_ready;
sig_atomic_t got_alarm;
extern int yynerrs;
extern FILE *yyin;
extern void xs_init(pTHX);
static int dump_vars = 0;
extern PerlInterpreter *perl_interpreter;
/* List of workers that are pending to start */
static GList *workers_pending = NULL;
static
void sig_handler (int signo)
{
switch (signo) {
case SIGHUP:
do_restart = 1;
do_reopen_log = 1;
break;
case SIGINT:
case SIGTERM:
do_terminate = 1;
break;
case SIGCHLD:
child_dead = 1;
break;
case SIGUSR2:
child_ready = 1;
break;
case SIGALRM:
got_alarm = 1;
break;
}
}
static void
read_cmd_line (int argc, char **argv, struct config_file *cfg)
{
int ch;
while ((ch = getopt(argc, argv, "tVhfc:u:g:")) != -1) {
switch (ch) {
case 'f':
cfg->no_fork = 1;
break;
case 'c':
if (optarg && cfg->cfg_name) {
cfg->cfg_name = memory_pool_strdup (cfg->cfg_pool, optarg);
}
break;
case 't':
cfg->config_test = 1;
break;
case 'V':
dump_vars = 1;
break;
case 'u':
if (optarg) {
cfg->rspamd_user = memory_pool_strdup (cfg->cfg_pool, optarg);
}
break;
case 'g':
if (optarg) {
cfg->rspamd_group = memory_pool_strdup (cfg->cfg_pool, optarg);
}
break;
case 'h':
case '?':
default:
/* Show help message and exit */
printf ("Rspamd version " RVERSION "\n"
"Usage: rspamd [-t] [-h] [-n] [-f] [-c config_file]\n"
"-h: This help message\n"
"-t: Do config test and exit\n"
"-V Print all rspamd variables and exit\n"
"-f: Do not daemonize main process\n"
"-c: Specify config file (./rspamd.conf is used by default)\n"
"-u: User to run rspamd as\n"
"-g: Group to run rspamd as\n");
exit (0);
break;
}
}
}
static void
drop_priv (struct config_file *cfg)
{
struct passwd *pwd;
struct group *grp;
if (geteuid () == 0 && cfg->rspamd_user) {
pwd = getpwnam (cfg->rspamd_user);
if (pwd == NULL) {
msg_err ("drop_priv: user specified does not exists (%s), aborting", strerror (errno));
exit (-errno);
}
if (cfg->rspamd_group) {
grp = getgrnam (cfg->rspamd_group);
if (grp == NULL) {
msg_err ("drop_priv: group specified does not exists (%s), aborting", strerror (errno));
exit (-errno);
}
if (setgid (grp->gr_gid) == -1) {
msg_err ("drop_priv: cannot setgid to %d (%s), aborting", (int)grp->gr_gid, strerror (errno));
exit (-errno);
}
if (initgroups(cfg->rspamd_user, grp->gr_gid) == -1) {
msg_err ("drop_priv: initgroups failed (%s), aborting", strerror (errno));
exit (-errno);
}
}
if (setuid (pwd->pw_uid) == -1) {
msg_err ("drop_priv: cannot setuid to %d (%s), aborting", (int)pwd->pw_uid, strerror (errno));
exit (-errno);
}
}
}
static void
config_logger (struct rspamd_main *rspamd, gboolean is_fatal)
{
switch (rspamd->cfg->log_type) {
case RSPAMD_LOG_CONSOLE:
if (!rspamd->cfg->no_fork) {
if (is_fatal) {
fprintf (stderr, "Cannot log to console while daemonized, disable logging");
}
rspamd->cfg->log_fd = -1;
}
else {
rspamd->cfg->log_fd = 2;
}
g_log_set_default_handler (file_log_function, rspamd->cfg);
break;
case RSPAMD_LOG_FILE:
if (rspamd->cfg->log_file == NULL || open_log (rspamd->cfg) == -1) {
if (is_fatal) {
fprintf (stderr, "Fatal error, cannot open logfile, exiting");
exit (EXIT_FAILURE);
}
else {
msg_err ("config_logger: cannot log to file, logfile unaccessable");
}
}
else {
g_log_set_default_handler (file_log_function, rspamd->cfg);
}
break;
case RSPAMD_LOG_SYSLOG:
if (open_log (rspamd->cfg) == -1) {
if (is_fatal) {
fprintf (stderr, "Fatal error, cannot open syslog facility, exiting");
exit (EXIT_FAILURE);
}
else {
msg_err ("config_logger: cannot log to syslog");
}
}
else {
g_log_set_default_handler (syslog_log_function, rspamd->cfg);
}
break;
}
}
static void
reread_config (struct rspamd_main *rspamd)
{
struct config_file *tmp_cfg;
char *cfg_file;
FILE *f;
tmp_cfg = (struct config_file *) g_malloc (sizeof (struct config_file));
if (tmp_cfg) {
bzero (tmp_cfg, sizeof (struct config_file));
tmp_cfg->cfg_pool = memory_pool_new (memory_pool_get_size ());
init_defaults (tmp_cfg);
cfg_file = memory_pool_strdup (tmp_cfg->cfg_pool, rspamd->cfg->cfg_name);
f = fopen (rspamd->cfg->cfg_name , "r");
if (f == NULL) {
msg_warn ("reread_config: cannot open file: %s", rspamd->cfg->cfg_name );
}
else {
yyin = f;
yyrestart (yyin);
if (yyparse() != 0 || yynerrs > 0) {
msg_warn ("reread_config: yyparse: cannot parse config file, %d errors", yynerrs);
fclose (f);
}
else {
msg_debug ("reread_config: replacing config");
free_config (rspamd->cfg);
close_log (rspamd->cfg);
g_free (rspamd->cfg);
rspamd->cfg = tmp_cfg;
rspamd->cfg->cfg_name = cfg_file;
config_logger (rspamd, FALSE);
msg_info ("reread_config: config rereaded successfully");
}
}
}
}
static struct rspamd_worker *
fork_worker (struct rspamd_main *rspamd, int listen_sock, enum process_type type)
{
struct rspamd_worker *cur;
/* Starting worker process */
cur = (struct rspamd_worker *)g_malloc (sizeof (struct rspamd_worker));
if (cur) {
bzero (cur, sizeof (struct rspamd_worker));
TAILQ_INSERT_HEAD (&rspamd->workers, cur, next);
cur->srv = rspamd;
cur->type = type;
cur->pid = fork();
switch (cur->pid) {
case 0:
/* TODO: add worker code */
switch (type) {
case TYPE_CONTROLLER:
setproctitle ("controller process");
pidfile_close (rspamd->pfh);
msg_info ("fork_worker: starting controller process %d", getpid ());
start_controller (cur);
break;
case TYPE_LMTP:
setproctitle ("lmtp process");
pidfile_close (rspamd->pfh);
msg_info ("fork_worker: starting lmtp process %d", getpid ());
start_lmtp_worker (cur, listen_sock);
case TYPE_WORKER:
default:
setproctitle ("worker process");
pidfile_close (rspamd->pfh);
msg_info ("fork_worker: starting worker process %d", getpid ());
start_worker (cur, listen_sock);
break;
}
break;
case -1:
msg_err ("fork_worker: cannot fork main process. %s", strerror (errno));
pidfile_remove (rspamd->pfh);
exit (-errno);
break;
}
}
return cur;
}
static void
delay_fork (enum process_type type)
{
workers_pending = g_list_prepend (workers_pending, GINT_TO_POINTER (type));
(void)alarm (SOFT_FORK_TIME);
}
static void
fork_delayed (struct rspamd_main *rspamd, int listen_sock)
{
GList *cur;
while (workers_pending != NULL) {
cur = workers_pending;
workers_pending = g_list_remove_link (workers_pending, cur);
fork_worker (rspamd, listen_sock, GPOINTER_TO_INT (cur->data));
g_list_free_1 (cur);
}
}
static void
dump_module_variables (gpointer key, gpointer value, gpointer data)
{
LIST_HEAD (moduleoptq, module_opt) *cur_module_opt = (struct moduleoptq *)value;
struct module_opt *cur, *tmp;
LIST_FOREACH_SAFE (cur, cur_module_opt, next, tmp) {
if (cur->value) {
printf ("$%s = \"%s\"\n", cur->param, cur->value);
}
}
}
static void
dump_all_variables (gpointer key, gpointer value, gpointer data)
{
printf ("$%s = \"%s\"\n", (char *)key, (char *)value);
}
static void
dump_cfg_vars ()
{
g_hash_table_foreach (cfg->variables, dump_all_variables, NULL);
g_hash_table_foreach (cfg->modules_opts, dump_module_variables, NULL);
}
static int
create_listen_socket (struct in_addr *addr, int port, int family, char *path)
{
int listen_sock = -1;
struct sockaddr_un *un_addr;
/* Create listen socket */
if (family == AF_INET) {
if ((listen_sock = make_tcp_socket (addr, port, TRUE)) == -1) {
msg_err ("create_listen_socket: cannot create tcp listen socket. %s", strerror (errno));
}
}
else {
un_addr = (struct sockaddr_un *) alloca (sizeof (struct sockaddr_un));
if (!un_addr || (listen_sock = make_unix_socket (path, un_addr, TRUE)) == -1) {
msg_err ("create_listen_socket: cannot create unix listen socket. %s", strerror (errno));
}
}
if (listen_sock != -1) {
if (listen (listen_sock, -1) == -1) {
msg_err ("start_lmtp: cannot listen on socket. %s", strerror (errno));
}
}
return listen_sock;
}
int
main (int argc, char **argv, char **env)
{
struct rspamd_main *rspamd;
struct module_ctx *cur_module = NULL;
int res = 0, i, listen_sock, lmtp_listen_sock;
struct sigaction signals;
struct rspamd_worker *cur, *cur_tmp, *active_worker;
FILE *f;
pid_t wrk;
char *args[] = { "", "-e", "0", NULL };
rspamd = (struct rspamd_main *)g_malloc (sizeof (struct rspamd_main));
bzero (rspamd, sizeof (struct rspamd_main));
rspamd->server_pool = memory_pool_new (memory_pool_get_size ());
cfg = (struct config_file *)g_malloc (sizeof (struct config_file));
rspamd->cfg = cfg;
if (!rspamd || !rspamd->cfg) {
fprintf(stderr, "Cannot allocate memory\n");
exit(-errno);
}
do_terminate = 0;
do_restart = 0;
child_dead = 0;
child_ready = 0;
do_reopen_log = 0;
active_worker = NULL;
rspamd->stat = memory_pool_alloc_shared (rspamd->server_pool, sizeof (struct rspamd_stat));
bzero (rspamd->stat, sizeof (struct rspamd_stat));
bzero (rspamd->cfg, sizeof (struct config_file));
rspamd->cfg->cfg_pool = memory_pool_new (memory_pool_get_size ());
init_defaults (rspamd->cfg);
bzero (&signals, sizeof (struct sigaction));
rspamd->cfg->cfg_name = memory_pool_strdup (rspamd->cfg->cfg_pool, FIXED_CONFIG_FILE);
read_cmd_line (argc, argv, rspamd->cfg);
if (cfg->config_test) {
cfg->log_level = G_LOG_LEVEL_DEBUG;
}
else {
cfg->log_level = G_LOG_LEVEL_CRITICAL;
}
#ifdef HAVE_SETLOCALE
/* Set locale setting to C locale to avoid problems in future */
setlocale (LC_ALL, "C");
setlocale (LC_CTYPE, "C");
setlocale (LC_MESSAGES, "C");
setlocale (LC_TIME, "C");
#endif
/* First set logger to console logger */
cfg->log_fd = STDERR_FILENO;
g_log_set_default_handler (file_log_function, cfg);
#ifndef HAVE_SETPROCTITLE
init_title (argc, argv, environ);
#endif
f = fopen (rspamd->cfg->cfg_name , "r");
if (f == NULL) {
msg_err ("main: cannot open file: %s", rspamd->cfg->cfg_name );
return EBADF;
}
yyin = f;
if (yyparse() != 0 || yynerrs > 0) {
msg_err ("main: cannot parse config file, %d errors", yynerrs);
return EBADF;
}
fclose (f);
/* Init C modules */
for (i = 0; i < MODULES_NUM; i ++) {
cur_module = memory_pool_alloc (rspamd->cfg->cfg_pool, sizeof (struct module_ctx));
if (modules[i].module_init_func(cfg, &cur_module) == 0) {
g_hash_table_insert (cfg->c_modules, (gpointer)modules[i].name, cur_module);
}
}
if (cfg->config_test || dump_vars) {
/* Init events to test modules */
event_init ();
res = TRUE;
/* Perform modules configuring */
for (i = 0; i < MODULES_NUM; i ++) {
if (!modules[i].module_config_func (cfg)) {
res = FALSE;
}
}
if (dump_vars) {
dump_cfg_vars ();
}
fprintf (stderr, "syntax %s\n", res ? "OK" : "BAD");
return res ? EXIT_SUCCESS : EXIT_FAILURE;
}
/* Create listen socket */
listen_sock = create_listen_socket (&rspamd->cfg->bind_addr, rspamd->cfg->bind_port,
rspamd->cfg->bind_family, rspamd->cfg->bind_host);
if (listen_sock == -1) {
exit(-errno);
}
if (cfg->lmtp_enable) {
lmtp_listen_sock = create_listen_socket (&rspamd->cfg->lmtp_addr, rspamd->cfg->lmtp_port,
rspamd->cfg->lmtp_family, rspamd->cfg->lmtp_host);
if (listen_sock == -1) {
exit(-errno);
}
}
/* Drop privilleges */
drop_priv (cfg);
config_logger (rspamd, TRUE);
msg_info ("main: rspamd "RVERSION " is starting");
rspamd->cfg->cfg_name = memory_pool_strdup (rspamd->cfg->cfg_pool, rspamd->cfg->cfg_name );
/* Strictly set temp dir */
if (!rspamd->cfg->temp_dir) {
msg_warn ("main: tempdir is not set, trying to use $TMPDIR");
rspamd->cfg->temp_dir = memory_pool_strdup (rspamd->cfg->cfg_pool, getenv ("TMPDIR"));
if (!rspamd->cfg->temp_dir) {
msg_warn ("main: $TMPDIR is empty too, using /tmp as default");
rspamd->cfg->temp_dir = memory_pool_strdup (rspamd->cfg->cfg_pool, "/tmp");
}
}
if (!rspamd->cfg->no_fork && daemon (1, 1) == -1) {
fprintf (stderr, "Cannot daemonize\n");
exit (-errno);
}
rspamd->pid = getpid();
rspamd->type = TYPE_MAIN;
init_signals (&signals, sig_handler);
if (write_pid (rspamd) == -1) {
msg_err ("main: cannot write pid file %s", rspamd->cfg->pid_file);
exit (-errno);
}
/* Init perl interpreter */
dTHXa (perl_interpreter);
PERL_SYS_INIT3 (&argc, &argv, &env);
perl_interpreter = perl_alloc ();
if (perl_interpreter == NULL) {
msg_err ("main: cannot allocate perl interpreter, %s", strerror (errno));
exit (-errno);
}
PERL_SET_CONTEXT (perl_interpreter);
perl_construct (perl_interpreter);
perl_parse (perl_interpreter, xs_init, 3, args, NULL);
/* Block signals to use sigsuspend in future */
sigprocmask(SIG_BLOCK, &signals.sa_mask, NULL);
TAILQ_INIT (&rspamd->workers);
setproctitle ("main process");
/* Init statfile pool */
rspamd->statfile_pool = statfile_pool_new (cfg->max_statfile_size);
for (i = 0; i < cfg->workers_number; i++) {
fork_worker (rspamd, listen_sock, TYPE_WORKER);
}
/* Start controller if enabled */
if (cfg->controller_enabled) {
fork_worker (rspamd, listen_sock, TYPE_CONTROLLER);
}
/* Start lmtp if enabled */
if (cfg->lmtp_enable) {
for (i = 0; i < cfg->lmtp_workers_number; i++) {
fork_worker (rspamd, lmtp_listen_sock, TYPE_LMTP);
}
}
/* Signal processing cycle */
for (;;) {
msg_debug ("main: calling sigsuspend");
sigemptyset (&signals.sa_mask);
sigsuspend (&signals.sa_mask);
if (do_terminate) {
msg_debug ("main: catch termination signal, waiting for childs");
pass_signal_worker (&rspamd->workers, SIGTERM);
break;
}
if (child_dead) {
child_dead = 0;
msg_debug ("main: catch SIGCHLD signal, finding terminated worker");
/* Remove dead child form childs list */
wrk = waitpid (0, &res, 0);
TAILQ_FOREACH_SAFE (cur, &rspamd->workers, next, cur_tmp) {
if (wrk == cur->pid) {
/* Catch situations if active worker is abnormally terminated */
if (cur == active_worker) {
active_worker = NULL;
}
TAILQ_REMOVE(&rspamd->workers, cur, next);
if (WIFEXITED (res) && WEXITSTATUS (res) == 0) {
/* Normal worker termination, do not fork one more */
msg_info ("main: %s process %d terminated normally",
(cur->type != TYPE_WORKER) ? "controller" : "worker", cur->pid);
/* But respawn controller */
if (cur->type == TYPE_CONTROLLER) {
fork_worker (rspamd, listen_sock, TYPE_CONTROLLER);
}
}
else {
if (WIFSIGNALED (res)) {
msg_warn ("main: %s process %d terminated abnormally by signal: %d",
(cur->type != TYPE_WORKER) ? "controller" : "worker",
cur->pid, WTERMSIG(res));
}
else {
msg_warn ("main: %s process %d terminated abnormally",
(cur->type != TYPE_WORKER) ? "controller" : "worker", cur->pid);
}
/* Fork another worker in replace of dead one */
delay_fork (cur->type);
}
g_free (cur);
}
}
}
if (do_restart) {
do_restart = 0;
do_reopen_log = 1;
msg_info ("main: rspamd "RVERSION " is restarting");
if (active_worker == NULL) {
/* reread_config (rspamd); */
TAILQ_FOREACH_SAFE (cur, &rspamd->workers, next, cur_tmp) {
if (cur->type == TYPE_WORKER || cur->type == TYPE_LMTP) {
/* Start new workers that would reread configuration */
active_worker = fork_worker (rspamd, listen_sock, cur->type);
}
/* Immideately send termination request to conroller and wait for SIGCHLD */
if (cur->type == TYPE_CONTROLLER) {
kill (cur->pid, SIGUSR2);
cur->is_dying = 1;
}
}
}
/* Do not start new workers until active worker is not ready for accept */
}
if (child_ready) {
child_ready = 0;
if (active_worker != NULL) {
msg_info ("main: worker process %d has been successfully started", active_worker->pid);
TAILQ_FOREACH_SAFE (cur, &rspamd->workers, next, cur_tmp) {
if (cur != active_worker && !cur->is_dying && cur->type != TYPE_CONTROLLER) {
/* Send to old workers SIGUSR2 */
kill (cur->pid, SIGUSR2);
cur->is_dying = 1;
}
}
active_worker = NULL;
}
}
if (got_alarm) {
got_alarm = 0;
fork_delayed (rspamd, listen_sock);
}
}
/* Wait for workers termination */
while (!TAILQ_EMPTY(&rspamd->workers)) {
cur = TAILQ_FIRST(&rspamd->workers);
waitpid (cur->pid, &res, 0);
msg_debug ("main(cleaning): worker process %d terminated", cur->pid);
TAILQ_REMOVE(&rspamd->workers, cur, next);
g_free(cur);
}
msg_info ("main: terminating...");
if (rspamd->cfg->bind_family == AF_UNIX) {
unlink (rspamd->cfg->bind_host);
}
free_config (rspamd->cfg);
g_free (rspamd->cfg);
g_free (rspamd);
return (res);
}
/*
* vi:ts=4
*/
|