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

Diff of /lbbs/src/login.c

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

Revision 1.46 by sysadm, Tue Jun 17 13:17:04 2025 UTC Revision 1.64 by sysadm, Tue Nov 4 11:20:16 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
 #include "login.h"  
17  #include "bbs.h"  #include "bbs.h"
 #include "user_priv.h"  
18  #include "common.h"  #include "common.h"
19  #include "log.h"  #include "database.h"
20  #include "io.h"  #include "io.h"
21    #include "ip_mask.h"
22    #include "log.h"
23    #include "login.h"
24  #include "screen.h"  #include "screen.h"
25  #include "database.h"  #include "user_priv.h"
 #include <errno.h>  
26  #include <ctype.h>  #include <ctype.h>
27    #include <errno.h>
28    #include <stdlib.h>
29  #include <string.h>  #include <string.h>
30  #include <regex.h>  #include <regex.h>
 #include <stdlib.h>  
31  #include <unistd.h>  #include <unistd.h>
32  #include <mysql/mysql.h>  #include <mysql/mysql.h>
33    #include <sys/param.h>
34    
35    static const int BBS_username_min_len = 3; // common len = 5, special len = 3
36    static const int BBS_password_min_len = 5; // legacy len = 5, current len = 6
37    
38  int bbs_login(void)  int bbs_login(void)
39  {  {
# Line 39  int bbs_login(void) Line 44  int bbs_login(void)
44    
45          for (; !SYS_server_exit && !ok && i < BBS_login_retry_times; i++)          for (; !SYS_server_exit && !ok && i < BBS_login_retry_times; i++)
46          {          {
47                  prints("\033[1;33m请输入帐号\033[m(试用请输入`\033[1;36mguest\033[m', "                  prints("\033[1;33m璇疯緭鍏ュ笎鍙穃033[m(璇曠敤璇疯緭鍏\033[1;36mguest\033[m', "
48                             "注册请输入`\033[1;31mnew\033[m'): ");                             "娉ㄥ唽璇疯緭鍏\033[1;31mnew\033[m'): ");
49                  iflush();                  iflush();
50    
51                  if (str_input(username, sizeof(username), DOECHO) < 0)                  if (str_input(username, sizeof(username), DOECHO) < 0)
# Line 59  int bbs_login(void) Line 64  int bbs_login(void)
64                  {                  {
65                          display_file(DATA_REGISTER, 1);                          display_file(DATA_REGISTER, 1);
66    
67                          return 0;                          return -1;
68                  }                  }
69    
70                  if (username[0] != '\0')                  if (username[0] != '\0')
71                  {                  {
72                          prints("\033[1;37m请输入密码\033[m: ");                          prints("\033[1;37m璇疯緭鍏ュ瘑鐮乗033[m: ");
73                          iflush();                          iflush();
74    
75                          if (str_input(password, sizeof(password), NOECHO) < 0)                          if (str_input(password, sizeof(password), NOECHO) < 0)
# Line 112  int check_user(const char *username, con Line 117  int check_user(const char *username, con
117          // Verify format          // Verify format
118          for (i = 0; ok && username[i] != '\0'; i++)          for (i = 0; ok && username[i] != '\0'; i++)
119          {          {
120                  if (!(isalpha(username[i]) || (i > 0 && isdigit(username[i]))))                  if (!(isalpha(username[i]) || (i > 0 && (isdigit(username[i]) || username[i] == '_'))))
121                  {                  {
122                          ok = 0;                          ok = 0;
123                  }                  }
124          }          }
125          if (ok && (i < 3 || i > 12))          if (ok && (i < BBS_username_min_len || i > BBS_username_max_len))
126          {          {
127                  ok = 0;                  ok = 0;
128          }          }
# Line 128  int check_user(const char *username, con Line 133  int check_user(const char *username, con
133                          ok = 0;                          ok = 0;
134                  }                  }
135          }          }
136          if (ok && (i < 5 || i > 12))          if (ok && (i < BBS_password_min_len || i > BBS_password_max_len))
137          {          {
138                  ok = 0;                  ok = 0;
139          }          }
140    
141          if (!ok)          if (!ok)
142          {          {
143                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");                  prints("\033[1;31m鐢ㄦ埛鍚嶆垨瀵嗙爜鏍煎紡閿欒...\033[m\r\n");
144                  ret = 1;                  ret = 1;
145                  goto cleanup;                  goto cleanup;
146          }          }
# Line 179  int check_user(const char *username, con Line 184  int check_user(const char *username, con
184          }          }
185          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
186          {          {
187                  if (atoi(row[0]) > BBS_allowed_login_failures_within_interval)                  if (atoi(row[0]) >= BBS_allowed_login_failures_within_interval)
188                  {                  {
189                          prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试\033[m\r\n");                          prints("\033[1;31m鏉ユ簮瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃绋嶅悗鍐嶈瘯锛屾垨浣跨敤Web鏂瑰紡璁块棶\033[m\r\n");
190                          ret = 1;                          ret = 1;
191                          goto cleanup;                          goto cleanup;
192                  }                  }
# Line 189  int check_user(const char *username, con Line 194  int check_user(const char *username, con
194          mysql_free_result(rs);          mysql_free_result(rs);
195          rs = NULL;          rs = NULL;
196    
197          // Failed login attempts against the current username during certain time period          // Failed login attempts against the current username since last successful login
198          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
199                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "
200                           "WHERE username = '%s' AND login_dt >= SUBDATE(NOW(), INTERVAL 1 DAY)",                           "LEFT JOIN user_list ON user_err_login_log.username = user_list.username "
201                             "LEFT JOIN user_pubinfo ON user_list.UID = user_pubinfo.UID "
202                             "WHERE user_err_login_log.username = '%s' "
203                             "AND (user_err_login_log.login_dt >= user_pubinfo.last_login_dt "
204                             "OR user_pubinfo.last_login_dt IS NULL)",
205                           username);                           username);
206          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
207          {          {
# Line 208  int check_user(const char *username, con Line 217  int check_user(const char *username, con
217          }          }
218          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
219          {          {
220                  if (atoi(row[0]) >= 5)                  if (atoi(row[0]) >= BBS_allowed_login_failures_per_account)
221                  {                  {
222                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");                          prints("\033[1;31m璐︽埛瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃浣跨敤Web鏂瑰紡鐧诲綍瑙i攣\033[m\r\n");
223                          ret = 1;                          ret = 1;
224                          goto cleanup;                          goto cleanup;
225                  }                  }
# Line 266  int check_user(const char *username, con Line 275  int check_user(const char *username, con
275    
276                  if (p_login == 0)                  if (p_login == 0)
277                  {                  {
278                          prints("\033[1;31m您目前无权登陆...\033[m\r\n");                          prints("\033[1;31m鎮ㄧ洰鍓嶆棤鏉冪櫥闄...\033[m\r\n");
279                          ret = 1;                          ret = 1;
280                          goto cleanup;                          goto cleanup;
281                  }                  }
# Line 295  int check_user(const char *username, con Line 304  int check_user(const char *username, con
304                          goto cleanup;                          goto cleanup;
305                  }                  }
306    
307                  prints("\033[1;31m错误的用户名或密码...\033[m\r\n");                  prints("\033[1;31m閿欒鐨勭敤鎴峰悕鎴栧瘑鐮...\033[m\r\n");
308                  ret = 1;                  ret = 1;
309                  goto cleanup;                  goto cleanup;
310          }          }
# Line 315  int check_user(const char *username, con Line 324  int check_user(const char *username, con
324          case 0: // Login successfully          case 0: // Login successfully
325                  break;                  break;
326          case -1: // Load data error          case -1: // Load data error
327                  prints("\033[1;31m读取用户数据错误...\033[m\r\n");                  prints("\033[1;31m璇诲彇鐢ㄦ埛鏁版嵁閿欒...\033[m\r\n");
328                  ret = -1;                  ret = -1;
329                  goto cleanup;                  goto cleanup;
330          case -2: // Unused          case -2: // Unused
331                  prints("\033[1;31m请通过Web登录更新用户许可协议...\033[m\r\n");                  prints("\033[1;31m璇烽氳繃Web鐧诲綍鏇存柊鐢ㄦ埛璁稿彲鍗忚...\033[m\r\n");
332                  ret = 1;                  ret = 1;
333                  goto cleanup;                  goto cleanup;
334          case -3: // Dead          case -3: // Dead
335                  prints("\033[1;31m很遗憾,您已经永远离开了我们的世界!\033[m\r\n");                  prints("\033[1;31m寰堥仐鎲撅紝鎮ㄥ凡缁忔案杩滅寮浜嗘垜浠殑涓栫晫锛乗033[m\r\n");
336                  ret = 1;                  ret = 1;
337                  goto cleanup;                  goto cleanup;
338          default:          default:
# Line 482  int user_online_add(MYSQL *db) Line 491  int user_online_add(MYSQL *db)
491  {  {
492          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
493    
494          if (user_online_del(db) != 0)          snprintf(sql, sizeof(sql),
495                             "INSERT INTO visit_log(dt, IP) VALUES(NOW(), '%s')",
496                             hostaddr_client);
497            if (mysql_query(db, sql) != 0)
498          {          {
499                    log_error("Add visit log error: %s\n", mysql_error(db));
500                  return -1;                  return -1;
501          }          }
502    
503            if (user_online_del(db) != 0)
504            {
505                    return -2;
506            }
507    
508          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
509                           "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "                           "INSERT INTO user_online(SID, UID, ip, current_action, login_tm, last_tm) "
510                           "VALUES('Telnet_Process_%d', %d, '%s', NOW(), NOW())",                           "VALUES('Telnet_Process_%d', %d, '%s', 'LOGIN', NOW(), NOW())",
511                           getpid(), BBS_priv.uid, hostaddr_client);                           getpid(), BBS_priv.uid, hostaddr_client);
512          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
513          {          {
514                  log_error("Add user_online error: %s\n", mysql_error(db));                  log_error("Add user_online error: %s\n", mysql_error(db));
515                  return -1;                  return -3;
516          }          }
517    
518          return 0;          return 0;
# Line 515  int user_online_del(MYSQL *db) Line 533  int user_online_del(MYSQL *db)
533    
534          return 0;          return 0;
535  }  }
536    
537    int user_online_exp(MYSQL *db)
538    {
539            char sql[SQL_BUFFER_LEN];
540    
541            // +1 exp for every 5 minutes online since last logout
542            // but at most 24 hours worth of exp can be gained in Telnet session
543            snprintf(sql, sizeof(sql),
544                             "UPDATE user_pubinfo SET exp = exp + FLOOR(LEAST(TIMESTAMPDIFF("
545                             "SECOND, GREATEST(last_login_dt, IF(last_logout_dt IS NULL, last_login_dt, last_logout_dt)), NOW()"
546                             ") / 60 / 5, 12 * 24)), last_logout_dt = NOW() "
547                             "WHERE UID = %d",
548                             BBS_priv.uid);
549            if (mysql_query(db, sql) != 0)
550            {
551                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
552                    return -1;
553            }
554    
555            return 0;
556    }
557    
558    int user_online_update(const char *action)
559    {
560            MYSQL *db = NULL;
561            char sql[SQL_BUFFER_LEN];
562    
563            if ((action == NULL || strcmp(BBS_current_action, action) == 0) &&
564                    time(NULL) - BBS_current_action_tm < BBS_current_action_refresh_interval) // No change
565            {
566                    return 0;
567            }
568    
569            if (action != NULL)
570            {
571                    strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);
572                    BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';
573            }
574    
575            BBS_current_action_tm = time(NULL);
576    
577            db = db_open();
578            if (db == NULL)
579            {
580                    log_error("db_open() error: %s\n", mysql_error(db));
581                    return -1;
582            }
583    
584            snprintf(sql, sizeof(sql),
585                             "UPDATE user_online SET current_action = '%s', last_tm = NOW() "
586                             "WHERE SID = 'Telnet_Process_%d'",
587                             BBS_current_action, getpid());
588            if (mysql_query(db, sql) != 0)
589            {
590                    log_error("Update user_online error: %s\n", mysql_error(db));
591                    return -2;
592            }
593    
594            mysql_close(db);
595    
596            return 1;
597    }


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

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