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


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

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