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

Diff of /lbbs/src/io.c

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

Revision 1.66 by sysadm, Mon Nov 17 02:32:42 2025 UTC Revision 1.70 by sysadm, Sun Nov 23 01:47:47 2025 UTC
# Line 20  Line 20 
20  #include <string.h>  #include <string.h>
21  #include <time.h>  #include <time.h>
22  #include <unistd.h>  #include <unistd.h>
 #include <sys/epoll.h>  
23  #include <sys/ioctl.h>  #include <sys/ioctl.h>
24  #include <sys/select.h>  #include <sys/select.h>
25  #include <libssh/callbacks.h>  #include <libssh/callbacks.h>
26  #include <libssh/libssh.h>  #include <libssh/libssh.h>
27  #include <libssh/server.h>  #include <libssh/server.h>
28    
29    #ifdef HAVE_SYS_EPOLL_H
30    #include <sys/epoll.h>
31    #else
32    #include <poll.h>
33    #endif
34    
35    enum _io_constant_t
36    {
37            OUTPUT_BUF_SIZE = 8192,
38    };
39    
40  const char BBS_default_charset[CHARSET_MAX_LEN + 1] = "UTF-8";  const char BBS_default_charset[CHARSET_MAX_LEN + 1] = "UTF-8";
41  char stdio_charset[CHARSET_MAX_LEN + 1] = "UTF-8";  char stdio_charset[CHARSET_MAX_LEN + 1] = "UTF-8";
42    
43    #ifdef HAVE_SYS_EPOLL_H
44  // epoll for STDIO  // epoll for STDIO
45  static int stdin_epollfd = -1;  static int stdin_epollfd = -1;
46  static int stdout_epollfd = -1;  static int stdout_epollfd = -1;
47  static int stdin_flags;  #endif
48  static int stdout_flags;  
49    static int stdin_flags = 0;
50    static int stdout_flags = 0;
51    
52  // static input / output buffer  // static input / output buffer
53  static char stdin_buf[LINE_BUFFER_LEN];  static char stdin_buf[LINE_BUFFER_LEN];
54  static char stdout_buf[BUFSIZ];  static char stdout_buf[OUTPUT_BUF_SIZE];
55  static int stdin_buf_len = 0;  static int stdin_buf_len = 0;
56  static int stdout_buf_len = 0;  static int stdout_buf_len = 0;
57  static int stdin_buf_offset = 0;  static int stdin_buf_offset = 0;
58  static int stdout_buf_offset = 0;  static int stdout_buf_offset = 0;
59    
60  static char stdin_conv[LINE_BUFFER_LEN * 2];  static char stdin_conv[LINE_BUFFER_LEN * 2];
61  static char stdout_conv[BUFSIZ * 2];  static char stdout_conv[OUTPUT_BUF_SIZE * 2];
62  static int stdin_conv_len = 0;  static int stdin_conv_len = 0;
63  static int stdout_conv_len = 0;  static int stdout_conv_len = 0;
64  static int stdin_conv_offset = 0;  static int stdin_conv_offset = 0;
# Line 56  static iconv_t stdout_cd = NULL; Line 69  static iconv_t stdout_cd = NULL;
69    
70  int io_init(void)  int io_init(void)
71  {  {
72    #ifdef HAVE_SYS_EPOLL_H
73          struct epoll_event ev;          struct epoll_event ev;
74    
75          if (stdin_epollfd == -1)          if (stdin_epollfd == -1)
# Line 106  int io_init(void) Line 120  int io_init(void)
120                          return -1;                          return -1;
121                  }                  }
122    
                 // Set STDOUT as non-blocking  
123                  stdout_flags = fcntl(STDOUT_FILENO, F_GETFL, 0);                  stdout_flags = fcntl(STDOUT_FILENO, F_GETFL, 0);
124                  fcntl(STDOUT_FILENO, F_SETFL, stdout_flags | O_NONBLOCK);                  fcntl(STDOUT_FILENO, F_SETFL, stdout_flags | O_NONBLOCK);
125          }          }
126    #else
127            if (stdin_flags == 0)
128            {
129                    stdin_flags = fcntl(STDIN_FILENO, F_GETFL, 0);
130                    fcntl(STDIN_FILENO, F_SETFL, stdin_flags | O_NONBLOCK);
131            }
132    
133            if (stdout_flags == 0)
134            {
135                    stdout_flags = fcntl(STDOUT_FILENO, F_GETFL, 0);
136                    fcntl(STDOUT_FILENO, F_SETFL, stdout_flags | O_NONBLOCK);
137            }
138    #endif
139    
140          return 0;          return 0;
141  }  }
142    
143  void io_cleanup(void)  void io_cleanup(void)
144  {  {
145    #ifdef HAVE_SYS_EPOLL_H
146          if (stdin_epollfd != -1)          if (stdin_epollfd != -1)
147          {          {
148                  fcntl(STDIN_FILENO, F_SETFL, stdin_flags);                  fcntl(STDIN_FILENO, F_SETFL, stdin_flags);
149                    stdin_flags = 0;
150    
151                  if (close(stdin_epollfd) < 0)                  if (close(stdin_epollfd) < 0)
152                  {                  {
# Line 130  void io_cleanup(void) Line 158  void io_cleanup(void)
158          if (stdout_epollfd != -1)          if (stdout_epollfd != -1)
159          {          {
160                  fcntl(STDOUT_FILENO, F_SETFL, stdout_flags);                  fcntl(STDOUT_FILENO, F_SETFL, stdout_flags);
161                    stdout_flags = 0;
162    
163                  if (close(stdout_epollfd) < 0)                  if (close(stdout_epollfd) < 0)
164                  {                  {
# Line 137  void io_cleanup(void) Line 166  void io_cleanup(void)
166                  }                  }
167                  stdout_epollfd = -1;                  stdout_epollfd = -1;
168          }          }
169    #else
170            if (stdin_flags != 0)
171            {
172                    fcntl(STDIN_FILENO, F_SETFL, stdin_flags);
173                    stdin_flags = 0;
174            }
175    
176            if (stdout_flags != 0)
177            {
178                    fcntl(STDOUT_FILENO, F_SETFL, stdout_flags);
179                    stdout_flags = 0;
180            }
181    #endif
182  }  }
183    
184  int prints(const char *format, ...)  int prints(const char *format, ...)
185  {  {
186          char buf[BUFSIZ];          char buf[OUTPUT_BUF_SIZE];
187          va_list args;          va_list args;
188          int ret;          int ret;
189    
# Line 151  int prints(const char *format, ...) Line 193  int prints(const char *format, ...)
193    
194          if (ret > 0)          if (ret > 0)
195          {          {
196                  if (stdout_buf_len + ret > BUFSIZ)                  if (stdout_buf_len + ret > OUTPUT_BUF_SIZE)
197                  {                  {
198                          iflush();                          iflush();
199                  }                  }
200    
201                  if (stdout_buf_len + ret <= BUFSIZ)                  if (stdout_buf_len + ret <= OUTPUT_BUF_SIZE)
202                  {                  {
203                          memcpy(stdout_buf + stdout_buf_len, buf, (size_t)ret);                          memcpy(stdout_buf + stdout_buf_len, buf, (size_t)ret);
204                          stdout_buf_len += ret;                          stdout_buf_len += ret;
# Line 164  int prints(const char *format, ...) Line 206  int prints(const char *format, ...)
206                  else                  else
207                  {                  {
208                          errno = EAGAIN;                          errno = EAGAIN;
209                          ret = (BUFSIZ - stdout_buf_len - ret);                          ret = (OUTPUT_BUF_SIZE - stdout_buf_len - ret);
210                          log_error("Output buffer is full, additional %d is required\n", ret);                          log_error("Output buffer is full, additional %d is required\n", ret);
211                  }                  }
212          }          }
# Line 176  int outc(char c) Line 218  int outc(char c)
218  {  {
219          int ret;          int ret;
220    
221          if (stdout_buf_len + 1 > BUFSIZ)          if (stdout_buf_len + 1 > OUTPUT_BUF_SIZE)
222          {          {
223                  iflush();                  iflush();
224          }          }
225    
226          if (stdout_buf_len + 1 <= BUFSIZ)          if (stdout_buf_len + 1 <= OUTPUT_BUF_SIZE)
227          {          {
228                  stdout_buf[stdout_buf_len] = c;                  stdout_buf[stdout_buf_len] = c;
229                  stdout_buf_len++;                  stdout_buf_len++;
# Line 197  int outc(char c) Line 239  int outc(char c)
239    
240  int iflush(void)  int iflush(void)
241  {  {
242    #ifdef HAVE_SYS_EPOLL_H
243          struct epoll_event events[MAX_EVENTS];          struct epoll_event events[MAX_EVENTS];
244    #else
245            struct pollfd pfds[1];
246    #endif
247    
248          int nfds;          int nfds;
249          int retry;          int retry;
250          int ret = 0;          int ret = 0;
# Line 208  int iflush(void) Line 255  int iflush(void)
255          {          {
256                  retry--;                  retry--;
257    
258    #ifdef HAVE_SYS_EPOLL_H
259                  nfds = epoll_wait(stdout_epollfd, events, MAX_EVENTS, 100); // 0.1 second                  nfds = epoll_wait(stdout_epollfd, events, MAX_EVENTS, 100); // 0.1 second
260                    ret = nfds;
261    #else
262                    pfds[0].fd = STDOUT_FILENO;
263                    pfds[0].events = POLLOUT;
264                    nfds = 1;
265                    ret = poll(pfds, (nfds_t)nfds, 100); // 0.1 second
266    #endif
267    
268                  if (nfds < 0)                  if (ret < 0)
269                  {                  {
270                          if (errno != EINTR)                          if (errno != EINTR)
271                          {                          {
272    #ifdef HAVE_SYS_EPOLL_H
273                                  log_error("epoll_wait() error (%d)\n", errno);                                  log_error("epoll_wait() error (%d)\n", errno);
274    #else
275                                    log_error("poll() error (%d)\n", errno);
276    #endif
277                                  break;                                  break;
278                          }                          }
279                          continue;                          continue;
280                  }                  }
281                  else if (nfds == 0) // timeout                  else if (ret == 0) // timeout
282                  {                  {
283                          continue;                          continue;
284                  }                  }
285    
286                  for (int i = 0; i < nfds; i++)                  for (int i = 0; i < nfds; i++)
287                  {                  {
288    #ifdef HAVE_SYS_EPOLL_H
289                          if (events[i].data.fd == STDOUT_FILENO)                          if (events[i].data.fd == STDOUT_FILENO)
290    #else
291                            if (pfds[i].fd == STDOUT_FILENO && (pfds[i].revents & POLLOUT))
292    #endif
293                          {                          {
294                                  if (stdout_buf_offset < stdout_buf_len)                                  if (stdout_buf_offset < stdout_buf_len)
295                                  {                                  {
# Line 303  int igetch(int timeout) Line 366  int igetch(int timeout)
366  {  {
367          static int stdin_read_wait = 0;          static int stdin_read_wait = 0;
368    
369    #ifdef HAVE_SYS_EPOLL_H
370          struct epoll_event events[MAX_EVENTS];          struct epoll_event events[MAX_EVENTS];
371    #else
372            struct pollfd pfds[1];
373    #endif
374    
375          int nfds;          int nfds;
376          int ret;          int ret;
377          int loop;          int loop;
# Line 331  int igetch(int timeout) Line 399  int igetch(int timeout)
399    
400                          if (!stdin_read_wait)                          if (!stdin_read_wait)
401                          {                          {
402    #ifdef HAVE_SYS_EPOLL_H
403                                  nfds = epoll_wait(stdin_epollfd, events, MAX_EVENTS, timeout);                                  nfds = epoll_wait(stdin_epollfd, events, MAX_EVENTS, timeout);
404                                    ret = nfds;
405    #else
406                                    pfds[0].fd = STDIN_FILENO;
407                                    pfds[0].events = POLLIN;
408                                    nfds = 1;
409                                    ret = poll(pfds, (nfds_t)nfds, timeout);
410    #endif
411    
412                                  if (nfds < 0)                                  if (ret < 0)
413                                  {                                  {
414                                          if (errno != EINTR)                                          if (errno != EINTR)
415                                          {                                          {
416    #ifdef HAVE_SYS_EPOLL_H
417                                                  log_error("epoll_wait() error (%d)\n", errno);                                                  log_error("epoll_wait() error (%d)\n", errno);
418    #else
419                                                    log_error("poll() error (%d)\n", errno);
420    #endif
421                                                  break;                                                  break;
422                                          }                                          }
423                                          continue;                                          continue;
424                                  }                                  }
425                                  else if (nfds == 0) // timeout                                  else if (ret == 0) // timeout
426                                  {                                  {
427                                          out = KEY_TIMEOUT;                                          out = KEY_TIMEOUT;
428                                          break;                                          break;
# Line 350  int igetch(int timeout) Line 430  int igetch(int timeout)
430    
431                                  for (int i = 0; i < nfds; i++)                                  for (int i = 0; i < nfds; i++)
432                                  {                                  {
433    #ifdef HAVE_SYS_EPOLL_H
434                                          if (events[i].data.fd == STDIN_FILENO)                                          if (events[i].data.fd == STDIN_FILENO)
435    #else
436                                            if (pfds[i].fd == STDIN_FILENO && (pfds[i].revents & POLLIN))
437    #endif
438                                          {                                          {
439                                                  stdin_read_wait = 1;                                                  stdin_read_wait = 1;
440                                          }                                          }
# Line 950  int io_buf_conv(iconv_t cd, char *p_buf, Line 1034  int io_buf_conv(iconv_t cd, char *p_buf,
1034          int ret;          int ret;
1035          int in_control = 0;          int in_control = 0;
1036          size_t i = 0;          size_t i = 0;
1037            int skip_current = 0;
1038    
1039          if (cd == NULL || p_buf == NULL || p_buf_len == NULL || p_buf_offset == NULL || p_conv == NULL || p_conv_len == NULL)          if (cd == NULL || p_buf == NULL || p_buf_len == NULL || p_buf_offset == NULL || p_conv == NULL || p_conv_len == NULL)
1040          {          {
# Line 973  int io_buf_conv(iconv_t cd, char *p_buf, Line 1058  int io_buf_conv(iconv_t cd, char *p_buf,
1058                          }                          }
1059                  }                  }
1060    
1061                  if (in_control)                  if (in_control || skip_current)
1062                  {                  {
1063                            skip_current = 0;
1064    
1065                          if (out_bytes <= 0)                          if (out_bytes <= 0)
1066                          {                          {
1067                                  log_error("No enough free space in p_conv, conv_len=%d, conv_size=%d\n", *p_conv_len, conv_size);                                  log_error("No enough free space in p_conv, conv_len=%d, conv_size=%d\n", *p_conv_len, conv_size);
# Line 988  int io_buf_conv(iconv_t cd, char *p_buf, Line 1075  int io_buf_conv(iconv_t cd, char *p_buf,
1075                          out_bytes--;                          out_bytes--;
1076    
1077                          (*p_buf_offset)++;                          (*p_buf_offset)++;
1078                          *p_conv_len = (int)(conv_size - out_bytes);                          (*p_conv_len)++;
1079    
1080                          i++;                          i++;
1081                          if (i >= 2)                          if (i >= 2)
# Line 1008  int io_buf_conv(iconv_t cd, char *p_buf, Line 1095  int io_buf_conv(iconv_t cd, char *p_buf,
1095  #endif  #endif
1096                                  if (p_buf != in_buf)                                  if (p_buf != in_buf)
1097                                  {                                  {
1098                                          *p_buf_len = (int)(p_buf + *p_buf_len - in_buf);                                          *p_buf_len -= (int)(in_buf - p_buf);
1099                                          *p_buf_offset = 0;                                          *p_buf_offset = 0;
1100                                          *p_conv_len = (int)(conv_size - out_bytes);                                          *p_conv_len = (int)(conv_size - out_bytes);
1101                                          memmove(p_buf, in_buf, (size_t)(*p_buf_len));                                          memmove(p_buf, in_buf, (size_t)(*p_buf_len));
# Line 1041  int io_buf_conv(iconv_t cd, char *p_buf, Line 1128  int io_buf_conv(iconv_t cd, char *p_buf,
1128                                  in_bytes--;                                  in_bytes--;
1129                                  out_bytes--;                                  out_bytes--;
1130    
1131                                    (*p_buf_offset)++;
1132                                    (*p_conv_len)++;
1133    
1134                                    continue;
1135                            }
1136                            else // something strange
1137                            {
1138    #ifdef _DEBUG
1139                                    log_error("iconv(in_bytes=%d, out_bytes=%d) error: %d, in_buf[0]=%d\n",
1140                                                      in_bytes, out_bytes, errno, in_buf[0]);
1141    #endif
1142    
1143                                    *p_buf_offset = (int)(in_buf - p_buf);
1144                                    *p_conv_len = (int)(conv_size - out_bytes);
1145                                    skip_current = 1;
1146    
1147                                  continue;                                  continue;
1148                          }                          }
1149                  }                  }
# Line 1054  int io_buf_conv(iconv_t cd, char *p_buf, Line 1157  int io_buf_conv(iconv_t cd, char *p_buf,
1157                  }                  }
1158          }          }
1159    
1160            if (*p_buf_offset >= *p_buf_len)
1161            {
1162                    *p_buf_len = 0;
1163                    *p_buf_offset = 0;
1164            }
1165    
1166          return 0;          return 0;
1167  }  }
1168    


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

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