/[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.55 by sysadm, Sat Oct 18 05:02:15 2025 UTC Revision 1.65 by sysadm, Tue Nov 11 00:28:05 2025 UTC
# Line 1  Line 1 
1  /***************************************************************************  /* SPDX-License-Identifier: GPL-3.0-or-later */
2                                                          io.c  -  description  /*
3                                                           -------------------   * io
4          Copyright            : (C) 2004-2025 by Leaflet   *   - basic terminal-based user input / output features
5          Email                : leaflet@leafok.com   *
6   ***************************************************************************/   * Copyright (C) 2004-2025  Leaflet <leaflet@leafok.com>
7     */
8  /***************************************************************************  
9   *                                                                         *  #ifdef HAVE_CONFIG_H
10   *   This program is free software; you can redistribute it and/or modify  *  #include "config.h"
11   *   it under the terms of the GNU General Public License as published by  *  #endif
  *   the Free Software Foundation; either version 3 of the License, or     *  
  *   (at your option) any later version.                                   *  
  *                                                                         *  
  ***************************************************************************/  
12    
13  #include "common.h"  #include "common.h"
14  #include "io.h"  #include "io.h"
# Line 31  Line 27 
27  #include <libssh/libssh.h>  #include <libssh/libssh.h>
28  #include <libssh/server.h>  #include <libssh/server.h>
29    
30  char stdio_charset[20] = BBS_DEFAULT_CHARSET;  const char BBS_default_charset[CHARSET_MAX_LEN + 1] = "UTF-8";
31    char stdio_charset[CHARSET_MAX_LEN + 1] = "UTF-8";
32    
33  // static input / output buffer  // static input / output buffer
34  static char stdin_buf[LINE_BUFFER_LEN];  static char stdin_buf[LINE_BUFFER_LEN];
35  static char stdin_conv[LINE_BUFFER_LEN];  static char stdout_buf[BUFSIZ];
36  static int stdin_buf_len = 0;  static int stdin_buf_len = 0;
37  static int stdin_conv_len = 0;  static int stdout_buf_len = 0;
38  static int stdin_buf_offset = 0;  static int stdin_buf_offset = 0;
39  static int stdin_conv_offset = 0;  static int stdout_buf_offset = 0;
40    
41  static char stdout_buf[BUFSIZ];  static char stdin_conv[LINE_BUFFER_LEN * 2];
42  static char stdout_conv[BUFSIZ];  static char stdout_conv[BUFSIZ * 2];
43  static int stdout_buf_len = 0;  static int stdin_conv_len = 0;
44  static int stdout_conv_len = 0;  static int stdout_conv_len = 0;
45  static int stdout_buf_offset = 0;  static int stdin_conv_offset = 0;
46  static int stdout_conv_offset = 0;  static int stdout_conv_offset = 0;
47    
48  static iconv_t stdin_cd = NULL;  static iconv_t stdin_cd = NULL;
# Line 170  int iflush(void) Line 167  int iflush(void)
167                                          if (ret < 0)                                          if (ret < 0)
168                                          {                                          {
169                                                  log_error("io_buf_conv(stdout, %d, %d, %d) error\n", stdout_buf_len, stdout_buf_offset, stdout_conv_len);                                                  log_error("io_buf_conv(stdout, %d, %d, %d) error\n", stdout_buf_len, stdout_buf_offset, stdout_conv_len);
170                                                    stdout_buf_len = stdout_buf_offset; // Discard invalid sequence
171                                          }                                          }
172                                  }                                  }
173    
# Line 244  int iflush(void) Line 242  int iflush(void)
242    
243  int igetch(int timeout)  int igetch(int timeout)
244  {  {
245            static int stdin_read_wait = 0;
246    
247          struct epoll_event ev, events[MAX_EVENTS];          struct epoll_event ev, events[MAX_EVENTS];
248          int nfds, epollfd;          int nfds, epollfd;
249          int ret;          int ret;
# Line 285  int igetch(int timeout) Line 285  int igetch(int timeout)
285                  flags = fcntl(STDIN_FILENO, F_GETFL, 0);                  flags = fcntl(STDIN_FILENO, F_GETFL, 0);
286                  fcntl(STDIN_FILENO, F_SETFL, flags | O_NONBLOCK);                  fcntl(STDIN_FILENO, F_SETFL, flags | O_NONBLOCK);
287    
288                  for (loop = 1; loop && stdin_conv_offset >= stdin_conv_len && !SYS_server_exit;)                  for (loop = 1; loop && stdin_buf_len < sizeof(stdin_buf) && stdin_conv_offset >= stdin_conv_len && !SYS_server_exit;)
289                  {                  {
290                          if (SSH_v2 && ssh_channel_is_closed(SSH_channel))                          if (SSH_v2 && ssh_channel_is_closed(SSH_channel))
291                          {                          {
# Line 294  int igetch(int timeout) Line 294  int igetch(int timeout)
294                                  break;                                  break;
295                          }                          }
296    
297                          nfds = epoll_wait(epollfd, events, MAX_EVENTS, timeout);                          if (!stdin_read_wait)
   
                         if (nfds < 0)  
298                          {                          {
299                                  if (errno != EINTR)                                  nfds = epoll_wait(epollfd, events, MAX_EVENTS, timeout);
300    
301                                    if (nfds < 0)
302                                    {
303                                            if (errno != EINTR)
304                                            {
305                                                    log_error("epoll_wait() error (%d)\n", errno);
306                                                    break;
307                                            }
308                                            continue;
309                                    }
310                                    else if (nfds == 0) // timeout
311                                  {                                  {
312                                          log_error("epoll_wait() error (%d)\n", errno);                                          out = KEY_TIMEOUT;
313                                          break;                                          break;
314                                  }                                  }
315                                  continue;  
316                          }                                  for (int i = 0; i < nfds; i++)
317                          else if (nfds == 0) // timeout                                  {
318                          {                                          if (events[i].data.fd == STDIN_FILENO)
319                                  out = KEY_TIMEOUT;                                          {
320                                  break;                                                  stdin_read_wait = 1;
321                                            }
322                                    }
323                          }                          }
324    
325                          for (int i = 0; i < nfds; i++)                          if (stdin_read_wait)
326                          {                          {
327                                  if (events[i].data.fd == STDIN_FILENO)                                  while (stdin_buf_len < sizeof(stdin_buf) && !SYS_server_exit) // read until complete or error
328                                  {                                  {
329                                          while (stdin_buf_len < sizeof(stdin_buf) && !SYS_server_exit) // read until complete or error                                          if (SSH_v2)
330                                          {                                          {
331                                                  if (SSH_v2)                                                  ret = ssh_channel_read_nonblocking(SSH_channel, stdin_buf + stdin_buf_len, sizeof(stdin_buf) - (uint32_t)stdin_buf_len, 0);
332                                                    if (ret == SSH_ERROR)
333                                                  {                                                  {
334                                                          ret = ssh_channel_read_nonblocking(SSH_channel, stdin_buf + stdin_buf_len, sizeof(stdin_buf) - (uint32_t)stdin_buf_len, 0);                                                          log_error("ssh_channel_read_nonblocking() error: %s\n", ssh_get_error(SSH_session));
335                                                          if (ret == SSH_ERROR)                                                          loop = 0;
336                                                          {                                                          break;
                                                                 log_error("ssh_channel_read_nonblocking() error: %s\n", ssh_get_error(SSH_session));  
                                                                 loop = 0;  
                                                                 break;  
                                                         }  
                                                         else if (ret == SSH_EOF)  
                                                         {  
                                                                 loop = 0;  
                                                                 break;  
                                                         }  
                                                         else if (ret == 0)  
                                                         {  
                                                                 out = 0;  
                                                                 loop = 0;  
                                                                 break;  
                                                         }  
337                                                  }                                                  }
338                                                  else                                                  else if (ret == SSH_EOF)
339                                                  {                                                  {
340                                                          ret = (int)read(STDIN_FILENO, stdin_buf + stdin_buf_len, sizeof(stdin_buf) - (size_t)stdin_buf_len);                                                          stdin_read_wait = 0;
341                                                            loop = 0;
342                                                            break;
343                                                  }                                                  }
344                                                  if (ret < 0)                                                  else if (ret == 0)
345                                                  {                                                  {
346                                                          if (errno == EAGAIN || errno == EWOULDBLOCK)                                                          out = 0;
347                                                          {                                                          stdin_read_wait = 0;
348                                                                  out = 0;                                                          loop = 0;
349                                                                  loop = 0;                                                          break;
                                                                 break;  
                                                         }  
                                                         else if (errno == EINTR)  
                                                         {  
                                                                 continue;  
                                                         }  
                                                         else  
                                                         {  
 #ifdef _DEBUG  
                                                                 log_error("read(STDIN) error (%d)\n", errno);  
 #endif  
                                                                 loop = 0;  
                                                                 break;  
                                                         }  
350                                                  }                                                  }
351                                                  else if (ret == 0) // broken pipe                                          }
352                                            else
353                                            {
354                                                    ret = (int)read(STDIN_FILENO, stdin_buf + stdin_buf_len, sizeof(stdin_buf) - (size_t)stdin_buf_len);
355                                            }
356                                            if (ret < 0)
357                                            {
358                                                    if (errno == EAGAIN || errno == EWOULDBLOCK)
359                                                  {                                                  {
360                                                            out = 0;
361                                                            stdin_read_wait = 0;
362                                                          loop = 0;                                                          loop = 0;
363                                                          break;                                                          break;
364                                                  }                                                  }
365                                                  else                                                  else if (errno == EINTR)
366                                                  {                                                  {
                                                         stdin_buf_len += ret;  
367                                                          continue;                                                          continue;
368                                                  }                                                  }
369                                                    else
370                                                    {
371    #ifdef _DEBUG
372                                                            log_error("read(STDIN) error (%d)\n", errno);
373    #endif
374                                                            loop = 0;
375                                                            break;
376                                                    }
377                                            }
378                                            else if (ret == 0) // broken pipe
379                                            {
380                                                    stdin_read_wait = 0;
381                                                    loop = 0;
382                                                    break;
383                                            }
384                                            else
385                                            {
386                                                    stdin_buf_len += ret;
387                                                    continue;
388                                          }                                          }
389                                  }                                  }
390                          }                          }
# Line 381  int igetch(int timeout) Line 393  int igetch(int timeout)
393  #ifdef _DEBUG  #ifdef _DEBUG
394                          for (int j = stdin_buf_offset; j < stdin_buf_len; j++)                          for (int j = stdin_buf_offset; j < stdin_buf_len; j++)
395                          {                          {
396                                  log_common("Debug: <--[%u]\n", (stdin_buf[j] + 256) % 256);                                  log_error("Debug input: <--[%u]\n", (stdin_buf[j] + 256) % 256);
397                          }                          }
398  #endif  #endif
399                  }                  }
# Line 399  int igetch(int timeout) Line 411  int igetch(int timeout)
411                          if (ret < 0)                          if (ret < 0)
412                          {                          {
413                                  log_error("io_buf_conv(stdin, %d, %d, %d) error\n", stdin_buf_len, stdin_buf_offset, stdin_conv_len);                                  log_error("io_buf_conv(stdin, %d, %d, %d) error\n", stdin_buf_len, stdin_buf_offset, stdin_conv_len);
414                                    stdin_buf_len = stdin_buf_offset; // Discard invalid sequence
415                          }                          }
416    
417                            // For debug
418    #ifdef _DEBUG
419                            for (int j = stdin_conv_offset; j < stdin_conv_len; j++)
420                            {
421                                    log_error("Debug input_conv: <--[%u]\n", (stdin_conv[j] + 256) % 256);
422                            }
423    #endif
424                  }                  }
425          }          }
426    
# Line 863  int igetch(int timeout) Line 884  int igetch(int timeout)
884  #ifdef _DEBUG  #ifdef _DEBUG
885          if (out != KEY_TIMEOUT && out != KEY_NULL)          if (out != KEY_TIMEOUT && out != KEY_NULL)
886          {          {
887                  log_common("Debug: -->[0x %x]\n", out);                  log_error("Debug: -->[0x %x]\n", out);
888          }          }
889  #endif  #endif
890    
# Line 899  int io_buf_conv(iconv_t cd, char *p_buf, Line 920  int io_buf_conv(iconv_t cd, char *p_buf,
920          size_t in_bytes;          size_t in_bytes;
921          size_t out_bytes;          size_t out_bytes;
922          int ret;          int ret;
923            int in_control = 0;
924            size_t i = 0;
925    
926          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)
927          {          {
# Line 913  int io_buf_conv(iconv_t cd, char *p_buf, Line 936  int io_buf_conv(iconv_t cd, char *p_buf,
936    
937          while (in_bytes > 0)          while (in_bytes > 0)
938          {          {
939                    if ((unsigned char)(*in_buf) == KEY_CONTROL)
940                    {
941                            if (in_control == 0)
942                            {
943                                    in_control = 1;
944                                    i = 0;
945                            }
946                    }
947    
948                    if (in_control)
949                    {
950                            if (out_bytes <= 0)
951                            {
952                                    log_error("No enough free space in p_conv, conv_len=%d, conv_size=%d\n", *p_conv_len, conv_size);
953                                    return -2;
954                            }
955    
956                            *out_buf = *in_buf;
957                            in_buf++;
958                            out_buf++;
959                            in_bytes--;
960                            out_bytes--;
961    
962                            (*p_buf_offset)++;
963                            *p_conv_len = (int)(conv_size - out_bytes);
964    
965                            i++;
966                            if (i >= 2)
967                            {
968                                    in_control = 0;
969                            }
970                            continue;
971                    }
972    
973                  ret = (int)iconv(cd, &in_buf, &in_bytes, &out_buf, &out_bytes);                  ret = (int)iconv(cd, &in_buf, &in_bytes, &out_buf, &out_bytes);
974                  if (ret == -1)                  if (ret == -1)
975                  {                  {
976                          if (errno == EINVAL) // Incomplete                          if (errno == EINVAL) // Incomplete
977                          {                          {
978  #ifdef _DEBUG  #ifdef _DEBUG
979                                  log_error("iconv(inbytes=%d, outbytes=%d) error: EINVAL\n", in_bytes, out_bytes);                                  log_error("iconv(inbytes=%d, outbytes=%d) error: EINVAL, in_buf[0]=%d\n", in_bytes, out_bytes, in_buf[0]);
980  #endif  #endif
981                                  *p_buf_len = (int)(p_buf + *p_buf_len - in_buf);                                  if (p_buf != in_buf)
982                                  *p_buf_offset = 0;                                  {
983                                  *p_conv_len = (int)(conv_size - out_bytes);                                          *p_buf_len = (int)(p_buf + *p_buf_len - in_buf);
984                                  memmove(p_buf, in_buf, (size_t)(*p_buf_len));                                          *p_buf_offset = 0;
985                                            *p_conv_len = (int)(conv_size - out_bytes);
986                                            memmove(p_buf, in_buf, (size_t)(*p_buf_len));
987                                    }
988    
989                                  break;                                  break;
990                          }                          }
# Line 941  int io_buf_conv(iconv_t cd, char *p_buf, Line 1001  int io_buf_conv(iconv_t cd, char *p_buf,
1001                                          return -2;                                          return -2;
1002                                  }                                  }
1003    
1004                                    // reset in_bytes when "//IGNORE" is applied
1005                                    if (in_bytes == 0)
1006                                    {
1007                                            in_bytes = (size_t)(*p_buf_len - *p_buf_offset);
1008                                    }
1009    
1010                                  *out_buf = *in_buf;                                  *out_buf = *in_buf;
1011                                  in_buf++;                                  in_buf++;
1012                                  out_buf++;                                  out_buf++;
# Line 965  int io_buf_conv(iconv_t cd, char *p_buf, Line 1031  int io_buf_conv(iconv_t cd, char *p_buf,
1031    
1032  int io_conv_init(const char *charset)  int io_conv_init(const char *charset)
1033  {  {
1034            char tocode[CHARSET_MAX_LEN + 20];
1035    
1036          if (charset == NULL)          if (charset == NULL)
1037          {          {
1038                  log_error("NULL pointer error\n");                  log_error("NULL pointer error\n");
# Line 976  int io_conv_init(const char *charset) Line 1044  int io_conv_init(const char *charset)
1044          strncpy(stdio_charset, charset, sizeof(stdio_charset) - 1);          strncpy(stdio_charset, charset, sizeof(stdio_charset) - 1);
1045          stdio_charset[sizeof(stdio_charset) - 1] = '\0';          stdio_charset[sizeof(stdio_charset) - 1] = '\0';
1046    
1047          stdin_cd = iconv_open(BBS_DEFAULT_CHARSET, stdio_charset);          snprintf(tocode, sizeof(tocode), "%s%s", BBS_default_charset,
1048                             (strcasecmp(stdio_charset, BBS_default_charset) == 0 ? "" : "//IGNORE"));
1049            stdin_cd = iconv_open(tocode, stdio_charset);
1050          if (stdin_cd == (iconv_t)(-1))          if (stdin_cd == (iconv_t)(-1))
1051          {          {
1052                  log_error("iconv_open(%s->%s) error: %d\n", stdio_charset, BBS_DEFAULT_CHARSET, errno);                  log_error("iconv_open(%s->%s) error: %d\n", stdio_charset, tocode, errno);
1053                  return -2;                  return -2;
1054          }          }
1055          stdout_cd = iconv_open(stdio_charset, BBS_DEFAULT_CHARSET);  
1056            snprintf(tocode, sizeof(tocode), "%s%s", stdio_charset,
1057                             (strcasecmp(BBS_default_charset, stdio_charset) == 0 ? "" : "//TRANSLIT"));
1058            stdout_cd = iconv_open(tocode, BBS_default_charset);
1059          if (stdout_cd == (iconv_t)(-1))          if (stdout_cd == (iconv_t)(-1))
1060          {          {
1061                  log_error("iconv_open(%s->%s) error: %d\n", BBS_DEFAULT_CHARSET, stdio_charset, errno);                  log_error("iconv_open(%s->%s) error: %d\n", BBS_default_charset, tocode, errno);
1062                  iconv_close(stdin_cd);                  iconv_close(stdin_cd);
1063                  return -2;                  return -2;
1064          }          }


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

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