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

Diff of /lbbs/src/net_server.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.54 by sysadm, Thu Jun 5 09:13:22 2025 UTC Revision 1.72 by sysadm, Mon Oct 13 07:13:39 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17  #define _XOPEN_SOURCE 500  #include "bbs.h"
18  #define _POSIX_C_SOURCE 200809L  #include "bbs_main.h"
 #define _GNU_SOURCE  
   
 #include "net_server.h"  
19  #include "common.h"  #include "common.h"
20  #include "log.h"  #include "database.h"
21    #include "file_loader.h"
22  #include "io.h"  #include "io.h"
23  #include "init.h"  #include "init.h"
24  #include "fork.h"  #include "log.h"
25    #include "login.h"
26  #include "menu.h"  #include "menu.h"
27  #include "file_loader.h"  #include "net_server.h"
28    #include "section_list.h"
29  #include "section_list_loader.h"  #include "section_list_loader.h"
30  #include <errno.h>  #include <errno.h>
31  #include <fcntl.h>  #include <fcntl.h>
 #include <string.h>  
32  #include <signal.h>  #include <signal.h>
33  #include <stdlib.h>  #include <stdlib.h>
34    #include <string.h>
35  #include <unistd.h>  #include <unistd.h>
 #include <sys/syscall.h>  
 #include <sys/socket.h>  
 #include <sys/wait.h>  
 #include <sys/epoll.h>  
36  #include <arpa/inet.h>  #include <arpa/inet.h>
37    #include <libssh/callbacks.h>
38    #include <libssh/libssh.h>
39    #include <libssh/server.h>
40  #include <netinet/in.h>  #include <netinet/in.h>
41    #include <sys/epoll.h>
42    #include <sys/socket.h>
43    #include <sys/syscall.h>
44    #include <sys/types.h>
45    #include <sys/wait.h>
46  #include <systemd/sd-daemon.h>  #include <systemd/sd-daemon.h>
47    
48    #define WAIT_CHILD_PROCESS_EXIT_TIMEOUT 5 // second
49    #define WAIT_CHILD_PROCESS_KILL_TIMEOUT 1 // second
50    
51  struct process_sockaddr_t  struct process_sockaddr_t
52  {  {
53          pid_t pid;          pid_t pid;
# Line 50  typedef struct process_sockaddr_t PROCES Line 57  typedef struct process_sockaddr_t PROCES
57    
58  static PROCESS_SOCKADDR process_sockaddr_pool[MAX_CLIENT_LIMIT];  static PROCESS_SOCKADDR process_sockaddr_pool[MAX_CLIENT_LIMIT];
59    
60    #define SSH_AUTH_MAX_DURATION (60 * 1000) // milliseconds
61    
62    struct ssl_server_cb_data_t
63    {
64            int tries;
65            int error;
66    };
67    
68    static int auth_password(ssh_session session, const char *user,
69                                                     const char *password, void *userdata)
70    {
71            struct ssl_server_cb_data_t *p_data = userdata;
72            int ret;
73    
74            if (strcmp(user, "guest") == 0)
75            {
76                    ret = load_guest_info();
77            }
78            else
79            {
80                    ret = check_user(user, password);
81            }
82    
83            if (ret == 0)
84            {
85                    return SSH_AUTH_SUCCESS;
86            }
87    
88            if ((++(p_data->tries)) >= BBS_login_retry_times)
89            {
90                    p_data->error = 1;
91            }
92    
93            return SSH_AUTH_DENIED;
94    }
95    
96    static int pty_request(ssh_session session, ssh_channel channel, const char *term,
97                                               int x, int y, int px, int py, void *userdata)
98    {
99            return 0;
100    }
101    
102    static int shell_request(ssh_session session, ssh_channel channel, void *userdata)
103    {
104            return 0;
105    }
106    
107    static struct ssh_channel_callbacks_struct channel_cb = {
108            .channel_pty_request_function = pty_request,
109            .channel_shell_request_function = shell_request};
110    
111    static ssh_channel new_session_channel(ssh_session session, void *userdata)
112    {
113            if (SSH_channel != NULL)
114            {
115                    return NULL;
116            }
117    
118            SSH_channel = ssh_channel_new(session);
119            ssh_callbacks_init(&channel_cb);
120            ssh_set_channel_callbacks(SSH_channel, &channel_cb);
121    
122            return SSH_channel;
123    }
124    
125    static int fork_server(void)
126    {
127            ssh_event event;
128            long int ssh_timeout = 0;
129            int pid;
130            int i;
131            int ret;
132    
133            struct ssl_server_cb_data_t cb_data = {
134                    .tries = 0,
135                    .error = 0,
136            };
137    
138            struct ssh_server_callbacks_struct cb = {
139                    .userdata = &cb_data,
140                    .auth_password_function = auth_password,
141                    .channel_open_request_session_function = new_session_channel,
142            };
143    
144            pid = fork();
145    
146            if (pid > 0) // Parent process
147            {
148                    SYS_child_process_count++;
149                    log_common("Child process (%d) start\n", pid);
150                    return pid;
151            }
152            else if (pid < 0) // Error
153            {
154                    log_error("fork() error (%d)\n", errno);
155                    return -1;
156            }
157    
158            // Child process
159    
160            if (close(socket_server[0]) == -1 || close(socket_server[1]) == -1)
161            {
162                    log_error("Close server socket failed\n");
163            }
164    
165            SSH_session = ssh_new();
166    
167            if (SSH_v2)
168            {
169                    if (ssh_bind_accept_fd(sshbind, SSH_session, socket_client) != SSH_OK)
170                    {
171                            log_error("ssh_bind_accept_fd() error: %s\n", ssh_get_error(SSH_session));
172                            goto cleanup;
173                    }
174    
175                    ssh_bind_free(sshbind);
176    
177                    ssh_callbacks_init(&cb);
178                    ssh_set_server_callbacks(SSH_session, &cb);
179    
180                    ssh_timeout = 60; // second
181                    if (ssh_options_set(SSH_session, SSH_OPTIONS_TIMEOUT, &ssh_timeout) < 0)
182                    {
183                            log_error("Error setting SSH options: %s\n", ssh_get_error(SSH_session));
184                            goto cleanup;
185                    }
186    
187                    if (ssh_handle_key_exchange(SSH_session))
188                    {
189                            log_error("ssh_handle_key_exchange() error: %s\n", ssh_get_error(SSH_session));
190                            goto cleanup;
191                    }
192                    ssh_set_auth_methods(SSH_session, SSH_AUTH_METHOD_PASSWORD);
193    
194                    event = ssh_event_new();
195                    ssh_event_add_session(event, SSH_session);
196    
197                    for (i = 0; i < SSH_AUTH_MAX_DURATION && !SYS_server_exit && !cb_data.error && SSH_channel == NULL; i += 100)
198                    {
199                            ret = ssh_event_dopoll(event, 100); // 0.1 second
200                            if (ret == SSH_ERROR)
201                            {
202                                    log_error("ssh_event_dopoll() error: %s\n", ssh_get_error(SSH_session));
203                                    goto cleanup;
204                            }
205                    }
206    
207                    if (cb_data.error)
208                    {
209                            log_error("SSH auth error, tried %d times\n", cb_data.tries);
210                            goto cleanup;
211                    }
212    
213                    ssh_timeout = 0;
214                    if (ssh_options_set(SSH_session, SSH_OPTIONS_TIMEOUT, &ssh_timeout) < 0)
215                    {
216                            log_error("Error setting SSH options: %s\n", ssh_get_error(SSH_session));
217                            goto cleanup;
218                    }
219            }
220    
221            // Redirect Input
222            close(STDIN_FILENO);
223            if (dup2(socket_client, STDIN_FILENO) == -1)
224            {
225                    log_error("Redirect stdin to client socket failed\n");
226                    goto cleanup;
227            }
228    
229            // Redirect Output
230            close(STDOUT_FILENO);
231            if (dup2(socket_client, STDOUT_FILENO) == -1)
232            {
233                    log_error("Redirect stdout to client socket failed\n");
234                    goto cleanup;
235            }
236    
237            SYS_child_process_count = 0;
238    
239            bbs_main();
240    
241    cleanup:
242            // Child process exit
243            SYS_server_exit = 1;
244    
245            if (SSH_v2)
246            {
247                    ssh_channel_free(SSH_channel);
248                    ssh_disconnect(SSH_session);
249            }
250            else if (close(socket_client) == -1)
251            {
252                    log_error("Close client socket failed\n");
253            }
254    
255            ssh_free(SSH_session);
256            ssh_finalize();
257    
258            // Close Input and Output for client
259            close(STDIN_FILENO);
260            close(STDOUT_FILENO);
261    
262            log_common("Process exit normally\n");
263            log_end();
264    
265            _exit(0);
266    
267            return 0;
268    }
269    
270  int net_server(const char *hostaddr, in_port_t port[])  int net_server(const char *hostaddr, in_port_t port[])
271  {  {
272          unsigned int addrlen;          unsigned int addrlen;
# Line 59  int net_server(const char *hostaddr, in_ Line 276  int net_server(const char *hostaddr, in_
276          struct epoll_event ev, events[MAX_EVENTS];          struct epoll_event ev, events[MAX_EVENTS];
277          int nfds, epollfd;          int nfds, epollfd;
278          siginfo_t siginfo;          siginfo_t siginfo;
279            int notify_child_exit = 0;
280            time_t tm_notify_child_exit = time(NULL);
281          int sd_notify_stopping = 0;          int sd_notify_stopping = 0;
282          MENU_SET *p_bbs_menu_new;          MENU_SET bbs_menu_new;
283            MENU_SET top10_menu_new;
284          int i, j;          int i, j;
285          pid_t pid;          pid_t pid;
286          int ssh_log_level = SSH_LOG_NOLOG;          int ssh_log_level = SSH_LOG_NOLOG;
# Line 72  int net_server(const char *hostaddr, in_ Line 292  int net_server(const char *hostaddr, in_
292          if (ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDADDR, hostaddr) < 0 ||          if (ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDADDR, hostaddr) < 0 ||
293                  ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT, &port) < 0 ||                  ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_BINDPORT, &port) < 0 ||
294                  ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, SSH_HOST_KEYFILE) < 0 ||                  ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY, SSH_HOST_KEYFILE) < 0 ||
295                    ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_HOSTKEY_ALGORITHMS, "ssh-rsa,rsa-sha2-512,rsa-sha2-256") < 0 ||
296                  ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY, &ssh_log_level) < 0)                  ssh_bind_options_set(sshbind, SSH_BIND_OPTIONS_LOG_VERBOSITY, &ssh_log_level) < 0)
297          {          {
298                  log_error("Error setting SSH bind options: %s\n", ssh_get_error(sshbind));                  log_error("Error setting SSH bind options: %s\n", ssh_get_error(sshbind));
# Line 200  int net_server(const char *hostaddr, in_ Line 421  int net_server(const char *hostaddr, in_
421    
422                  if (SYS_server_exit && !SYS_child_exit && SYS_child_process_count > 0)                  if (SYS_server_exit && !SYS_child_exit && SYS_child_process_count > 0)
423                  {                  {
424                          log_common("Notify %d child process to exit\n", SYS_child_process_count);                          if (notify_child_exit == 0)
                         if (kill(0, SIGTERM) < 0)  
425                          {                          {
426                                  log_error("Send SIGTERM signal failed (%d)\n", errno);                                  sd_notifyf(0, "STATUS=Notify %d child process to exit", SYS_child_process_count);
427                                    log_common("Notify %d child process to exit\n", SYS_child_process_count);
428    
429                                    if (kill(0, SIGTERM) < 0)
430                                    {
431                                            log_error("Send SIGTERM signal failed (%d)\n", errno);
432                                    }
433    
434                                    notify_child_exit = 1;
435                                    tm_notify_child_exit = time(NULL);
436                          }                          }
437                            else if (notify_child_exit == 1 && time(NULL) - tm_notify_child_exit >= WAIT_CHILD_PROCESS_EXIT_TIMEOUT)
438                            {
439                                    sd_notifyf(0, "STATUS=Kill %d child process", SYS_child_process_count);
440    
441                                    for (i = 0; i < BBS_max_client; i++)
442                                    {
443                                            if (process_sockaddr_pool[i].pid != 0)
444                                            {
445                                                    log_error("Kill child process (pid=%d)\n", process_sockaddr_pool[i].pid);
446                                                    if (kill(process_sockaddr_pool[i].pid, SIGKILL) < 0)
447                                                    {
448                                                            log_error("Send SIGKILL signal failed (%d)\n", errno);
449                                                    }
450                                            }
451                                    }
452    
453                          sd_notifyf(0, "STATUS=Waiting for %d child process to exit", SYS_child_process_count);                                  notify_child_exit = 2;
454                                    tm_notify_child_exit = time(NULL);
455                            }
456                            else if (notify_child_exit == 2 && time(NULL) - tm_notify_child_exit >= WAIT_CHILD_PROCESS_KILL_TIMEOUT)
457                            {
458                                    log_error("Main process prepare to exit without waiting for %d child process any longer\n", SYS_child_process_count);
459                                    SYS_child_process_count = 0;
460                            }
461                  }                  }
462    
463                  if (SYS_conf_reload && !SYS_server_exit)                  if (SYS_conf_reload && !SYS_server_exit)
# Line 220  int net_server(const char *hostaddr, in_ Line 471  int net_server(const char *hostaddr, in_
471                                  log_error("Reload conf failed\n");                                  log_error("Reload conf failed\n");
472                          }                          }
473    
474                          p_bbs_menu_new = calloc(1, sizeof(MENU_SET));                          if (load_menu(&bbs_menu_new, CONF_MENU) < 0)
                         if (p_bbs_menu_new == NULL)  
475                          {                          {
476                                  log_error("OOM: calloc(MENU_SET)\n");                                  unload_menu(&bbs_menu_new);
477                                    log_error("Reload bbs menu failed\n");
478                          }                          }
479                          else if (load_menu(p_bbs_menu_new, CONF_MENU) < 0)                          else
480                          {                          {
481                                  unload_menu(p_bbs_menu_new);                                  unload_menu(&bbs_menu);
482                                  free(p_bbs_menu_new);                                  memcpy(&bbs_menu, &bbs_menu_new, sizeof(bbs_menu_new));
483                                  p_bbs_menu_new = NULL;                                  log_common("Reload bbs menu successfully\n");
484                            }
485    
486                                  log_error("Reload menu failed\n");                          if (load_menu(&top10_menu_new, CONF_TOP10_MENU) < 0)
487                            {
488                                    unload_menu(&top10_menu_new);
489                                    log_error("Reload top10 menu failed\n");
490                          }                          }
491                          else                          else
492                          {                          {
493                                  unload_menu(p_bbs_menu);                                  unload_menu(&top10_menu);
494                                  free(p_bbs_menu);                                  top10_menu_new.allow_exit = 1;
495                                    memcpy(&top10_menu, &top10_menu_new, sizeof(top10_menu_new));
496                                  p_bbs_menu = p_bbs_menu_new;                                  log_common("Reload top10 menu successfully\n");
                                 p_bbs_menu_new = NULL;  
   
                                 log_common("Reload menu successfully\n");  
497                          }                          }
498    
                         sd_notify(0, "READY=1");  
                 }  
   
                 if (SYS_data_file_reload && !SYS_server_exit)  
                 {  
                         SYS_data_file_reload = 0;  
                         sd_notify(0, "RELOADING=1");  
   
499                          for (int i = 0; i < data_files_load_startup_count; i++)                          for (int i = 0; i < data_files_load_startup_count; i++)
500                          {                          {
501                                  if (load_file(data_files_load_startup[i]) < 0)                                  if (load_file(data_files_load_startup[i]) < 0)
# Line 259  int net_server(const char *hostaddr, in_ Line 503  int net_server(const char *hostaddr, in_
503                                          log_error("load_file_mmap(%s) error\n", data_files_load_startup[i]);                                          log_error("load_file_mmap(%s) error\n", data_files_load_startup[i]);
504                                  }                                  }
505                          }                          }
   
506                          log_common("Reload data files successfully\n");                          log_common("Reload data files successfully\n");
                         sd_notify(0, "READY=1");  
                 }  
507    
508                  if (SYS_section_list_reload && !SYS_server_exit)                          // Load section config and gen_ex
509                  {                          if (load_section_config_from_db(1) < 0)
                         SYS_section_list_reload = 0;  
   
                         if (section_list_loader_reload() < 0)  
510                          {                          {
511                                  log_error("ksection_list_loader_reload() failed\n");                                  log_error("load_section_config_from_db(1) error\n");
512                          }                          }
513                            else
514                            {
515                                    log_common("Reload section config and gen_ex successfully\n");
516                            }
517    
518                            sd_notify(0, "READY=1");
519                  }                  }
520    
521                  nfds = epoll_wait(epollfd, events, MAX_EVENTS, 100); // 0.1 second                  nfds = epoll_wait(epollfd, events, MAX_EVENTS, 100); // 0.1 second
# Line 324  int net_server(const char *hostaddr, in_ Line 568  int net_server(const char *hostaddr, in_
568    
569                                          port_client = ntohs(sin.sin_port);                                          port_client = ntohs(sin.sin_port);
570    
571                                          log_common("Accept %sconnection from %s:%d\n", (SSH_v2 ? "" : "SSH2 "), hostaddr_client, port_client);                                          log_common("Accept %s connection from %s:%d\n", (SSH_v2 ? "SSH" : "telnet"), hostaddr_client, port_client);
572    
573                                          if (SYS_child_process_count - 1 < BBS_max_client)                                          if (SYS_child_process_count - 1 < BBS_max_client)
574                                          {                                          {


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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