/[LeafOK_CVS]/lbbs/src/net_server.c
ViewVC logotype

Contents of /lbbs/src/net_server.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.91 - (show annotations)
Mon Nov 17 09:46:47 2025 UTC (3 months, 4 weeks ago) by sysadm
Branch: MAIN
Changes since 1.90: +1 -1 lines
Content type: text/x-csrc
Refine

1 /* SPDX-License-Identifier: GPL-3.0-or-later */
2 /*
3 * net_server
4 * - network server with SSH support
5 *
6 * Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com>
7 */
8
9 #ifdef HAVE_CONFIG_H
10 #include "config.h"
11 #endif
12
13 #include "bbs.h"
14 #include "bbs_main.h"
15 #include "bwf.h"
16 #include "common.h"
17 #include "database.h"
18 #include "file_loader.h"
19 #include "hash_dict.h"
20 #include "io.h"
21 #include "init.h"
22 #include "log.h"
23 #include "login.h"
24 #include "menu.h"
25 #include "net_server.h"
26 #include "section_list.h"
27 #include "section_list_loader.h"
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <pty.h>
31 #include <signal.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
35 #include <utmp.h>
36 #include <arpa/inet.h>
37 #include <libssh/callbacks.h>
38 #include <libssh/libssh.h>
39 #include <libssh/server.h>
40 #include <netinet/in.h>
41 #include <sys/ioctl.h>
42 #include <sys/socket.h>
43 #include <sys/types.h>
44 #include <sys/wait.h>
45
46 #ifdef HAVE_SYS_EPOLL_H
47 #include <sys/epoll.h>
48 #else
49 #include <poll.h>
50 #endif
51
52 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
53 #include <systemd/sd-daemon.h>
54 #endif
55
56 enum _net_server_constant_t
57 {
58 WAIT_CHILD_PROCESS_EXIT_TIMEOUT = 5, // second
59 WAIT_CHILD_PROCESS_KILL_TIMEOUT = 1, // second
60
61 SSH_AUTH_MAX_DURATION = 60 * 1000, // milliseconds
62 };
63
64 /* A userdata struct for session. */
65 struct session_data_struct
66 {
67 int tries;
68 int error;
69 };
70
71 /* A userdata struct for channel. */
72 struct channel_data_struct
73 {
74 /* pid of the child process the channel will spawn. */
75 pid_t pid;
76 /* For PTY allocation */
77 socket_t pty_master;
78 socket_t pty_slave;
79 /* For communication with the child process. */
80 socket_t child_stdin;
81 socket_t child_stdout;
82 /* Only used for subsystem and exec requests. */
83 socket_t child_stderr;
84 /* Event which is used to poll the above descriptors. */
85 ssh_event event;
86 /* Terminal size struct. */
87 struct winsize *winsize;
88 };
89
90 static int socket_server[2];
91 static int socket_client;
92
93 #ifdef HAVE_SYS_EPOLL_H
94 static int epollfd_server = -1;
95 #endif
96
97 static ssh_bind sshbind;
98
99 static HASH_DICT *hash_dict_pid_sockaddr = NULL;
100 static HASH_DICT *hash_dict_sockaddr_count = NULL;
101
102 static const char SFTP_SERVER_PATH[] = "/usr/lib/sftp-server";
103
104 static int auth_password(ssh_session session, const char *user,
105 const char *password, void *userdata)
106 {
107 struct session_data_struct *sdata = (struct session_data_struct *)userdata;
108 int ret;
109
110 if (strcmp(user, "guest") == 0)
111 {
112 ret = load_guest_info();
113 }
114 else
115 {
116 ret = check_user(user, password);
117 }
118
119 if (ret == 0)
120 {
121 return SSH_AUTH_SUCCESS;
122 }
123
124 if ((++(sdata->tries)) >= BBS_login_retry_times)
125 {
126 sdata->error = 1;
127 }
128
129 return SSH_AUTH_DENIED;
130 }
131
132 static int pty_request(ssh_session session, ssh_channel channel, const char *term,
133 int cols, int rows, int px, int py, void *userdata)
134 {
135 struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
136 int rc;
137
138 (void)session;
139 (void)channel;
140 (void)term;
141
142 cdata->winsize->ws_row = (unsigned short int)rows;
143 cdata->winsize->ws_col = (unsigned short int)cols;
144 cdata->winsize->ws_xpixel = (unsigned short int)px;
145 cdata->winsize->ws_ypixel = (unsigned short int)py;
146
147 rc = openpty(&cdata->pty_master, &cdata->pty_slave, NULL, NULL, cdata->winsize);
148 if (rc != 0)
149 {
150 log_error("Failed to open pty\n");
151 return SSH_ERROR;
152 }
153
154 return SSH_OK;
155 }
156
157 static int pty_resize(ssh_session session, ssh_channel channel, int cols, int rows,
158 int py, int px, void *userdata)
159 {
160 struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
161
162 (void)session;
163 (void)channel;
164
165 cdata->winsize->ws_row = (unsigned short int)rows;
166 cdata->winsize->ws_col = (unsigned short int)cols;
167 cdata->winsize->ws_xpixel = (unsigned short int)px;
168 cdata->winsize->ws_ypixel = (unsigned short int)py;
169
170 if (cdata->pty_master != -1)
171 {
172 return ioctl(cdata->pty_master, TIOCSWINSZ, cdata->winsize);
173 }
174
175 return SSH_ERROR;
176 }
177
178 static int exec_pty(const char *mode, const char *command, struct channel_data_struct *cdata)
179 {
180 (void)cdata;
181
182 if (command != NULL)
183 {
184 log_error("Forbid exec /bin/sh %s %s)\n", mode, command);
185 }
186
187 return SSH_OK;
188 }
189
190 static int exec_nopty(const char *command, struct channel_data_struct *cdata)
191 {
192 (void)cdata;
193
194 if (command != NULL)
195 {
196 log_error("Forbid exec /bin/sh -c %s)\n", command);
197 }
198
199 return SSH_OK;
200 }
201
202 static int exec_request(ssh_session session, ssh_channel channel, const char *command, void *userdata)
203 {
204 struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
205
206 (void)session;
207 (void)channel;
208
209 if (cdata->pid > 0)
210 {
211 return SSH_ERROR;
212 }
213
214 if (cdata->pty_master != -1 && cdata->pty_slave != -1)
215 {
216 return exec_pty("-c", command, cdata);
217 }
218 return exec_nopty(command, cdata);
219 }
220
221 static int shell_request(ssh_session session, ssh_channel channel, void *userdata)
222 {
223 struct channel_data_struct *cdata = (struct channel_data_struct *)userdata;
224
225 (void)session;
226 (void)channel;
227
228 if (cdata->pid > 0)
229 {
230 return SSH_ERROR;
231 }
232
233 if (cdata->pty_master != -1 && cdata->pty_slave != -1)
234 {
235 return exec_pty("-l", NULL, cdata);
236 }
237 /* Client requested a shell without a pty, let's pretend we allow that */
238 return SSH_OK;
239 }
240
241 static int subsystem_request(ssh_session session, ssh_channel channel, const char *subsystem, void *userdata)
242 {
243 (void)session;
244 (void)channel;
245
246 log_error("subsystem_request(subsystem=%s)\n", subsystem);
247
248 /* subsystem requests behave similarly to exec requests. */
249 if (strcmp(subsystem, "sftp") == 0)
250 {
251 return exec_request(session, channel, SFTP_SERVER_PATH, userdata);
252 }
253 return SSH_ERROR;
254 }
255
256 static ssh_channel channel_open(ssh_session session, void *userdata)
257 {
258 (void)userdata;
259
260 if (SSH_channel != NULL)
261 {
262 return NULL;
263 }
264
265 SSH_channel = ssh_channel_new(session);
266
267 return SSH_channel;
268 }
269
270 static int fork_server(void)
271 {
272 ssh_event event;
273 long int ssh_timeout = 0;
274 int pid;
275 int i;
276 int ret;
277
278 /* Structure for storing the pty size. */
279 struct winsize wsize = {
280 .ws_row = 0,
281 .ws_col = 0,
282 .ws_xpixel = 0,
283 .ws_ypixel = 0};
284
285 /* Our struct holding information about the channel. */
286 struct channel_data_struct cdata = {
287 .pid = 0,
288 .pty_master = -1,
289 .pty_slave = -1,
290 .child_stdin = -1,
291 .child_stdout = -1,
292 .child_stderr = -1,
293 .event = NULL,
294 .winsize = &wsize};
295
296 struct session_data_struct cb_data = {
297 .tries = 0,
298 .error = 0,
299 };
300
301 struct ssh_channel_callbacks_struct channel_cb = {
302 .userdata = &cdata,
303 .channel_pty_request_function = pty_request,
304 .channel_pty_window_change_function = pty_resize,
305 .channel_shell_request_function = shell_request,
306 .channel_exec_request_function = exec_request,
307 .channel_subsystem_request_function = subsystem_request};
308
309 struct ssh_server_callbacks_struct server_cb = {
310 .userdata = &cb_data,
311 .auth_password_function = auth_password,
312 .channel_open_request_session_function = channel_open,
313 };
314
315 pid = fork();
316
317 if (pid > 0) // Parent process
318 {
319 SYS_child_process_count++;
320 log_common("Child process (%d) start\n", pid);
321 return pid;
322 }
323 else if (pid < 0) // Error
324 {
325 log_error("fork() error (%d)\n", errno);
326 return -1;
327 }
328
329 // Child process
330 #ifdef HAVE_SYS_EPOLL_H
331 if (close(epollfd_server) < 0)
332 {
333 log_error("close(epollfd_server) error (%d)\n");
334 }
335 #endif
336
337 for (i = 0; i < 2; i++)
338 {
339 if (close(socket_server[i]) == -1)
340 {
341 log_error("Close server socket failed\n");
342 }
343 }
344
345 hash_dict_destroy(hash_dict_pid_sockaddr);
346 hash_dict_destroy(hash_dict_sockaddr_count);
347
348 SSH_session = ssh_new();
349
350 if (SSH_v2)
351 {
352 if (ssh_bind_accept_fd(sshbind, SSH_session, socket_client) != SSH_OK)
353 {
354 log_error("ssh_bind_accept_fd() error: %s\n", ssh_get_error(SSH_session));
355 goto cleanup;
356 }
357
358 ssh_bind_free(sshbind);
359
360 ssh_timeout = 60; // second
361 if (ssh_options_set(SSH_session, SSH_OPTIONS_TIMEOUT, &ssh_timeout) < 0)
362 {
363 log_error("Error setting SSH options: %s\n", ssh_get_error(SSH_session));
364 goto cleanup;
365 }
366
367 ssh_set_auth_methods(SSH_session, SSH_AUTH_METHOD_PASSWORD);
368
369 ssh_callbacks_init(&server_cb);
370 ssh_callbacks_init(&channel_cb);
371
372 ssh_set_server_callbacks(SSH_session, &server_cb);
373
374 if (ssh_handle_key_exchange(SSH_session))
375 {
376 log_error("ssh_handle_key_exchange() error: %s\n", ssh_get_error(SSH_session));
377 goto cleanup;
378 }
379
380 event = ssh_event_new();
381 ssh_event_add_session(event, SSH_session);
382
383 for (i = 0; i < SSH_AUTH_MAX_DURATION && !SYS_server_exit && !cb_data.error && SSH_channel == NULL; i += 100)
384 {
385 ret = ssh_event_dopoll(event, 100); // 0.1 second
386 if (ret == SSH_ERROR)
387 {
388 #ifdef _DEBUG
389 log_error("ssh_event_dopoll() error: %s\n", ssh_get_error(SSH_session));
390 #endif
391 goto cleanup;
392 }
393 }
394
395 if (cb_data.error)
396 {
397 log_error("SSH auth error, tried %d times\n", cb_data.tries);
398 goto cleanup;
399 }
400
401 ssh_set_channel_callbacks(SSH_channel, &channel_cb);
402
403 do
404 {
405 ret = ssh_event_dopoll(event, 100); // 0.1 second
406 if (ret == SSH_ERROR)
407 {
408 ssh_channel_close(SSH_channel);
409 }
410
411 if (ret == SSH_AGAIN) // loop until SSH connection is fully established
412 {
413 /* Executed only once, once the child process starts. */
414 cdata.event = event;
415 break;
416 }
417 } while (ssh_channel_is_open(SSH_channel));
418
419 ssh_timeout = 0;
420 if (ssh_options_set(SSH_session, SSH_OPTIONS_TIMEOUT, &ssh_timeout) < 0)
421 {
422 log_error("Error setting SSH options: %s\n", ssh_get_error(SSH_session));
423 goto cleanup;
424 }
425 }
426
427 // Redirect Input
428 if (dup2(socket_client, STDIN_FILENO) == -1)
429 {
430 log_error("Redirect stdin to client socket failed\n");
431 goto cleanup;
432 }
433
434 // Redirect Output
435 if (dup2(socket_client, STDOUT_FILENO) == -1)
436 {
437 log_error("Redirect stdout to client socket failed\n");
438 goto cleanup;
439 }
440
441 if (io_init() < 0)
442 {
443 log_error("io_init() error\n");
444 goto cleanup;
445 }
446
447 SYS_child_process_count = 0;
448
449 bbs_main();
450
451 cleanup:
452 // Child process exit
453 SYS_server_exit = 1;
454
455 if (SSH_v2)
456 {
457 if (cdata.pty_master != -1)
458 {
459 close(cdata.pty_master);
460 }
461 if (cdata.child_stdin != -1)
462 {
463 close(cdata.child_stdin);
464 }
465 if (cdata.child_stdout != -1)
466 {
467 close(cdata.child_stdout);
468 }
469 if (cdata.child_stderr != -1)
470 {
471 close(cdata.child_stderr);
472 }
473
474 ssh_channel_free(SSH_channel);
475 ssh_disconnect(SSH_session);
476 }
477 else if (close(socket_client) == -1)
478 {
479 log_error("Close client socket failed\n");
480 }
481
482 ssh_free(SSH_session);
483 ssh_finalize();
484
485 // Close Input and Output for client
486 io_cleanup();
487 close(STDIN_FILENO);
488 close(STDOUT_FILENO);
489
490 log_common("Process exit normally\n");
491 log_end();
492
493 _exit(0);
494
495 return 0;
496 }
497
498 int net_server(const char *hostaddr, in_port_t port[])
499 {
500 unsigned int addrlen;
501 int ret;
502 int flags_server[2];
503 struct sockaddr_in sin;
504
505 #ifdef HAVE_SYS_EPOLL_H
506 struct epoll_event ev, events[MAX_EVENTS];
507 #else
508 struct pollfd pfds[2];
509 #endif
510
511 int nfds;
512 int notify_child_exit = 0;
513 time_t tm_notify_child_exit = time(NULL);
514 MENU_SET bbs_menu_new;
515 MENU_SET top10_menu_new;
516 int i, j;
517 pid_t pid;
518 int ssh_log_level = SSH_LOG_NOLOG;
519
520 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
521 int sd_notify_stopping = 0;
522 #endif
523
524 ssh_init();
525
526 sshbind = ssh_bind_new();
527
528 if (ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDADDR, hostaddr) < 0 ||
529 ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT, &port) < 0 ||
530 ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, SSH_HOST_KEYFILE) < 0 ||
531 ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY_ALGORITHMS, "ssh-rsa,rsa-sha2-512,rsa-sha2-256") < 0 ||
532 ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY, &ssh_log_level) < 0)
533 {
534 log_error("Error setting SSH bind options: %s\n", ssh_get_error(sshbind));
535 ssh_bind_free(sshbind);
536 return -1;
537 }
538
539 #ifdef HAVE_SYS_EPOLL_H
540 epollfd_server = epoll_create1(0);
541 if (epollfd_server == -1)
542 {
543 log_error("epoll_create1() error (%d)\n", errno);
544 return -1;
545 }
546 #endif
547
548 // Server socket
549 for (i = 0; i < 2; i++)
550 {
551 socket_server[i] = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
552
553 if (socket_server[i] < 0)
554 {
555 log_error("Create socket_server error (%d)\n", errno);
556 return -1;
557 }
558
559 sin.sin_family = AF_INET;
560 sin.sin_addr.s_addr = (hostaddr[0] != '\0' ? inet_addr(hostaddr) : INADDR_ANY);
561 sin.sin_port = htons(port[i]);
562
563 // Reuse address and port
564 flags_server[i] = 1;
565 if (setsockopt(socket_server[i], SOL_SOCKET, SO_REUSEADDR, &flags_server[i], sizeof(flags_server[i])) < 0)
566 {
567 log_error("setsockopt SO_REUSEADDR error (%d)\n", errno);
568 }
569 #if defined(SO_REUSEPORT)
570 if (setsockopt(socket_server[i], SOL_SOCKET, SO_REUSEPORT, &flags_server[i], sizeof(flags_server[i])) < 0)
571 {
572 log_error("setsockopt SO_REUSEPORT error (%d)\n", errno);
573 }
574 #endif
575
576 if (bind(socket_server[i], (struct sockaddr *)&sin, sizeof(sin)) < 0)
577 {
578 log_error("Bind address %s:%u error (%d)\n",
579 inet_ntoa(sin.sin_addr), ntohs(sin.sin_port), errno);
580 return -1;
581 }
582
583 if (listen(socket_server[i], 10) < 0)
584 {
585 log_error("Telnet socket listen error (%d)\n", errno);
586 return -1;
587 }
588
589 log_common("Listening at %s:%u\n", inet_ntoa(sin.sin_addr), ntohs(sin.sin_port));
590
591 #ifdef HAVE_SYS_EPOLL_H
592 ev.events = EPOLLIN;
593 ev.data.fd = socket_server[i];
594 if (epoll_ctl(epollfd_server, EPOLL_CTL_ADD, socket_server[i], &ev) == -1)
595 {
596 log_error("epoll_ctl(socket_server[%d]) error (%d)\n", i, errno);
597 if (close(epollfd_server) < 0)
598 {
599 log_error("close(epoll) error (%d)\n");
600 }
601 return -1;
602 }
603 #endif
604
605 flags_server[i] = fcntl(socket_server[i], F_GETFL, 0);
606 fcntl(socket_server[i], F_SETFL, flags_server[i] | O_NONBLOCK);
607 }
608
609 hash_dict_pid_sockaddr = hash_dict_create(MAX_CLIENT_LIMIT);
610 if (hash_dict_pid_sockaddr == NULL)
611 {
612 log_error("hash_dict_create(hash_dict_pid_sockaddr) error\n");
613 return -1;
614 }
615 hash_dict_sockaddr_count = hash_dict_create(MAX_CLIENT_LIMIT);
616 if (hash_dict_sockaddr_count == NULL)
617 {
618 log_error("hash_dict_create(hash_dict_sockaddr_count) error\n");
619 return -1;
620 }
621
622 // Startup complete
623 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
624 sd_notifyf(0, "READY=1\n"
625 "STATUS=Listening at %s:%d (Telnet) and %s:%d (SSH2)\n"
626 "MAINPID=%d",
627 hostaddr, port[0], hostaddr, port[1], getpid());
628 #endif
629
630 while (!SYS_server_exit || SYS_child_process_count > 0)
631 {
632 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
633 if (SYS_server_exit && !sd_notify_stopping)
634 {
635 sd_notify(0, "STOPPING=1");
636 sd_notify_stopping = 1;
637 }
638 #endif
639
640 while ((SYS_child_exit || SYS_server_exit) && SYS_child_process_count > 0)
641 {
642 SYS_child_exit = 0;
643
644 pid = waitpid(-1, NULL, WNOHANG);
645 if (pid > 0)
646 {
647 SYS_child_exit = 1; // Retry waitid
648
649 SYS_child_process_count--;
650 log_common("Child process (%d) exited\n", pid);
651
652 if (pid != section_list_loader_pid)
653 {
654 j = 0;
655 ret = hash_dict_get(hash_dict_pid_sockaddr, (uint64_t)pid, (int64_t *)&j);
656 if (ret < 0)
657 {
658 log_error("hash_dict_get(hash_dict_pid_sockaddr, %d) error\n", pid);
659 }
660 else
661 {
662 ret = hash_dict_inc(hash_dict_sockaddr_count, (uint64_t)j, -1);
663 if (ret < 0)
664 {
665 log_error("hash_dict_inc(hash_dict_sockaddr_count, %d, -1) error\n", j);
666 }
667
668 ret = hash_dict_del(hash_dict_pid_sockaddr, (uint64_t)pid);
669 if (ret < 0)
670 {
671 log_error("hash_dict_del(hash_dict_pid_sockaddr, %d) error\n", pid);
672 }
673 }
674 }
675 }
676 else if (pid == 0)
677 {
678 break;
679 }
680 else if (pid < 0)
681 {
682 log_error("Error in waitpid(): %d\n", errno);
683 break;
684 }
685 }
686
687 if (SYS_server_exit && !SYS_child_exit && SYS_child_process_count > 0)
688 {
689 if (notify_child_exit == 0)
690 {
691 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
692 sd_notifyf(0, "STATUS=Notify %d child process to exit", SYS_child_process_count);
693 log_common("Notify %d child process to exit\n", SYS_child_process_count);
694 #endif
695
696 if (kill(-getpid(), SIGTERM) < 0)
697 {
698 log_error("Send SIGTERM signal failed (%d)\n", errno);
699 }
700
701 notify_child_exit = 1;
702 tm_notify_child_exit = time(NULL);
703 }
704 else if (notify_child_exit == 1 && time(NULL) - tm_notify_child_exit >= WAIT_CHILD_PROCESS_EXIT_TIMEOUT)
705 {
706 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
707 sd_notifyf(0, "STATUS=Kill %d child process", SYS_child_process_count);
708 #endif
709
710 if (kill(-getpid(), SIGKILL) < 0)
711 {
712 log_error("Send SIGKILL signal failed (%d)\n", errno);
713 }
714
715 notify_child_exit = 2;
716 tm_notify_child_exit = time(NULL);
717 }
718 else if (notify_child_exit == 2 && time(NULL) - tm_notify_child_exit >= WAIT_CHILD_PROCESS_KILL_TIMEOUT)
719 {
720 log_error("Main process prepare to exit without waiting for %d child process any longer\n", SYS_child_process_count);
721 SYS_child_process_count = 0;
722 }
723 }
724
725 if (SYS_conf_reload && !SYS_server_exit)
726 {
727 SYS_conf_reload = 0;
728
729 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
730 sd_notify(0, "RELOADING=1");
731 #endif
732
733 // Restart log
734 if (log_restart() < 0)
735 {
736 log_error("Restart logging failed\n");
737 }
738
739 // Reload configuration
740 if (load_conf(CONF_BBSD) < 0)
741 {
742 log_error("Reload conf failed\n");
743 }
744
745 // Reload BWF config
746 if (bwf_load(CONF_BWF) < 0)
747 {
748 log_error("Reload BWF conf failed\n");
749 }
750
751 if (load_menu(&bbs_menu_new, CONF_MENU) < 0)
752 {
753 unload_menu(&bbs_menu_new);
754 log_error("Reload bbs menu failed\n");
755 }
756 else
757 {
758 unload_menu(&bbs_menu);
759 memcpy(&bbs_menu, &bbs_menu_new, sizeof(bbs_menu_new));
760 log_common("Reload bbs menu successfully\n");
761 }
762
763 if (load_menu(&top10_menu_new, CONF_TOP10_MENU) < 0)
764 {
765 unload_menu(&top10_menu_new);
766 log_error("Reload top10 menu failed\n");
767 }
768 else
769 {
770 unload_menu(&top10_menu);
771 top10_menu_new.allow_exit = 1;
772 memcpy(&top10_menu, &top10_menu_new, sizeof(top10_menu_new));
773 log_common("Reload top10 menu successfully\n");
774 }
775
776 for (int i = 0; i < data_files_load_startup_count; i++)
777 {
778 if (load_file(data_files_load_startup[i]) < 0)
779 {
780 log_error("load_file(%s) error\n", data_files_load_startup[i]);
781 }
782 }
783 log_common("Reload data files successfully\n");
784
785 // Load section config and gen_ex
786 if (load_section_config_from_db(1) < 0)
787 {
788 log_error("load_section_config_from_db(1) error\n");
789 }
790 else
791 {
792 log_common("Reload section config and gen_ex successfully\n");
793 }
794
795 // Notify child processes to reload configuration
796 if (kill(-getpid(), SIGUSR1) < 0)
797 {
798 log_error("Send SIGUSR1 signal failed (%d)\n", errno);
799 }
800
801 #ifdef HAVE_SYSTEMD_SD_DAEMON_H
802 sd_notify(0, "READY=1");
803 #endif
804 }
805
806 #ifdef HAVE_SYS_EPOLL_H
807 nfds = epoll_wait(epollfd_server, events, MAX_EVENTS, 100); // 0.1 second
808 ret = nfds;
809 #else
810 pfds[0].fd = socket_server[0];
811 pfds[0].events = POLLIN;
812 pfds[1].fd = socket_server[1];
813 pfds[1].events = POLLIN;
814 nfds = 2;
815 ret = poll(pfds, (nfds_t)nfds, 100); // 0.1 second
816 #endif
817 if (ret < 0)
818 {
819 if (errno != EINTR)
820 {
821 #ifdef HAVE_SYS_EPOLL_H
822 log_error("epoll_wait() error (%d)\n", errno);
823 #else
824 log_error("poll() error (%d)\n", errno);
825 #endif
826 break;
827 }
828 continue;
829 }
830
831 // Stop accept new connection on exit
832 if (SYS_server_exit)
833 {
834 continue;
835 }
836
837 for (int i = 0; i < nfds; i++)
838 {
839 #ifdef HAVE_SYS_EPOLL_H
840 if (events[i].data.fd == socket_server[0] || events[i].data.fd == socket_server[1])
841 #else
842 if ((pfds[i].fd == socket_server[0] || pfds[i].fd == socket_server[1]) && (pfds[i].revents & POLLIN))
843 #endif
844 {
845 #ifdef HAVE_SYS_EPOLL_H
846 SSH_v2 = (events[i].data.fd == socket_server[1] ? 1 : 0);
847 #else
848 SSH_v2 = (pfds[i].fd == socket_server[1] ? 1 : 0);
849 #endif
850
851 while (!SYS_server_exit) // Accept all incoming connections until error
852 {
853 addrlen = sizeof(sin);
854 socket_client = accept(socket_server[SSH_v2], (struct sockaddr *)&sin, (socklen_t *)&addrlen);
855 if (socket_client < 0)
856 {
857 if (errno == EAGAIN || errno == EWOULDBLOCK)
858 {
859 break;
860 }
861 else if (errno == EINTR)
862 {
863 continue;
864 }
865 else
866 {
867 log_error("accept(socket_server) error (%d)\n", errno);
868 break;
869 }
870 }
871
872 strncpy(hostaddr_client, inet_ntoa(sin.sin_addr), sizeof(hostaddr_client) - 1);
873 hostaddr_client[sizeof(hostaddr_client) - 1] = '\0';
874
875 port_client = ntohs(sin.sin_port);
876
877 log_common("Accept %s connection from %s:%d\n", (SSH_v2 ? "SSH" : "telnet"), hostaddr_client, port_client);
878
879 if (SYS_child_process_count - 1 < BBS_max_client)
880 {
881 j = 0;
882 ret = hash_dict_get(hash_dict_sockaddr_count, (uint64_t)sin.sin_addr.s_addr, (int64_t *)&j);
883 if (ret < 0)
884 {
885 log_error("hash_dict_get(hash_dict_sockaddr_count, %s) error\n", hostaddr_client);
886 }
887
888 if (j < BBS_max_client_per_ip)
889 {
890 if ((pid = fork_server()) < 0)
891 {
892 log_error("fork_server() error\n");
893 }
894 else if (pid > 0)
895 {
896 ret = hash_dict_set(hash_dict_pid_sockaddr, (uint64_t)pid, sin.sin_addr.s_addr);
897 if (ret < 0)
898 {
899 log_error("hash_dict_set(hash_dict_pid_sockaddr, %d, %s) error\n", pid, hostaddr_client);
900 }
901
902 ret = hash_dict_inc(hash_dict_sockaddr_count, (uint64_t)sin.sin_addr.s_addr, 1);
903 if (ret < 0)
904 {
905 log_error("hash_dict_inc(hash_dict_sockaddr_count, %s, %d) error\n", hostaddr_client, 1);
906 }
907 }
908 }
909 else
910 {
911 log_error("Rejected client connection from %s over limit per IP (%d)\n", hostaddr_client, BBS_max_client_per_ip);
912 }
913 }
914 else
915 {
916 log_error("Rejected client connection over limit (%d)\n", SYS_child_process_count - 1);
917 }
918
919 if (close(socket_client) == -1)
920 {
921 log_error("close(socket_lient) error (%d)\n", errno);
922 }
923 }
924 }
925 }
926 }
927
928 #ifdef HAVE_SYS_EPOLL_H
929 if (close(epollfd_server) < 0)
930 {
931 log_error("close(epollfd_server) error (%d)\n");
932 }
933 #endif
934
935 for (i = 0; i < 2; i++)
936 {
937 if (close(socket_server[i]) == -1)
938 {
939 log_error("Close server socket failed\n");
940 }
941 }
942
943 hash_dict_destroy(hash_dict_pid_sockaddr);
944 hash_dict_destroy(hash_dict_sockaddr_count);
945
946 ssh_bind_free(sshbind);
947 ssh_finalize();
948
949 return 0;
950 }

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1