/[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.45 by sysadm, Tue Jun 17 02:06:48 2025 UTC Revision 1.72 by sysadm, Sat Nov 29 01:55:00 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    
 #define _POSIX_C_SOURCE 200112L  
   
 #include "login.h"  
13  #include "bbs.h"  #include "bbs.h"
 #include "user_priv.h"  
14  #include "common.h"  #include "common.h"
15  #include "log.h"  #include "database.h"
16  #include "io.h"  #include "io.h"
17    #include "ip_mask.h"
18    #include "log.h"
19    #include "login.h"
20  #include "screen.h"  #include "screen.h"
21  #include "database.h"  #include "user_priv.h"
 #include <errno.h>  
22  #include <ctype.h>  #include <ctype.h>
23    #include <errno.h>
24    #include <stdlib.h>
25  #include <string.h>  #include <string.h>
26  #include <regex.h>  #include <regex.h>
 #include <stdlib.h>  
27  #include <unistd.h>  #include <unistd.h>
28  #include <mysql/mysql.h>  #include <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 41  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 61  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 85  int bbs_login(void) Line 90  int bbs_login(void)
90                  return -1;                  return -1;
91          }          }
92    
         log_common("User \"%s\"(%ld) login from %s:%d\n",  
                            BBS_username, BBS_priv.uid, hostaddr_client, port_client);  
   
93          return 0;          return 0;
94  }  }
95    
# Line 114  int check_user(const char *username, con Line 116  int check_user(const char *username, con
116          // Verify format          // Verify format
117          for (i = 0; ok && username[i] != '\0'; i++)          for (i = 0; ok && username[i] != '\0'; i++)
118          {          {
119                  if (!(isalpha(username[i]) || (i > 0 && isdigit(username[i]))))                  if (!(isalpha((int)username[i]) || (i > 0 && (isdigit((int)username[i]) || username[i] == '_'))))
120                  {                  {
121                          ok = 0;                          ok = 0;
122                  }                  }
123          }          }
124          if (ok && (i < 3 || i > 12))          if (ok && (i < BBS_username_min_len || i > BBS_username_max_len))
125          {          {
126                  ok = 0;                  ok = 0;
127          }          }
128          for (i = 0; ok && password[i] != '\0'; i++)          for (i = 0; ok && password[i] != '\0'; i++)
129          {          {
130                  if (!isalnum(password[i]))                  if (!isalnum((int)password[i]))
131                  {                  {
132                          ok = 0;                          ok = 0;
133                  }                  }
134          }          }
135          if (ok && (i < 5 || i > 12))          if (ok && (i < BBS_password_min_len || i > BBS_password_max_len))
136          {          {
137                  ok = 0;                  ok = 0;
138          }          }
139    
140          if (!ok)          if (!ok)
141          {          {
142                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");                  prints("\033[1;31m鐢ㄦ埛鍚嶆垨瀵嗙爜鏍煎紡閿欒...\033[m\r\n");
143                  ret = 1;                  ret = 1;
144                  goto cleanup;                  goto cleanup;
145          }          }
# Line 181  int check_user(const char *username, con Line 183  int check_user(const char *username, con
183          }          }
184          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
185          {          {
186                  if (atoi(row[0]) > BBS_allowed_login_failures_within_interval)                  if (atoi(row[0]) >= BBS_allowed_login_failures_within_interval)
187                  {                  {
188                          prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试\033[m\r\n");                          prints("\033[1;31m鏉ユ簮瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃绋嶅悗鍐嶈瘯锛屾垨浣跨敤Web鏂瑰紡璁块棶\033[m\r\n");
189                          ret = 1;                          ret = 1;
190                          goto cleanup;                          goto cleanup;
191                  }                  }
# Line 191  int check_user(const char *username, con Line 193  int check_user(const char *username, con
193          mysql_free_result(rs);          mysql_free_result(rs);
194          rs = NULL;          rs = NULL;
195    
196          // Failed login attempts against the current username during certain time period          // Failed login attempts against the current username since last successful login
197          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
198                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "
199                           "WHERE username = '%s' AND login_dt >= SUBDATE(NOW(), INTERVAL 1 DAY)",                           "LEFT JOIN user_list ON user_err_login_log.username = user_list.username "
200                             "LEFT JOIN user_pubinfo ON user_list.UID = user_pubinfo.UID "
201                             "WHERE user_err_login_log.username = '%s' "
202                             "AND (user_err_login_log.login_dt >= user_pubinfo.last_login_dt "
203                             "OR user_pubinfo.last_login_dt IS NULL)",
204                           username);                           username);
205          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
206          {          {
# Line 210  int check_user(const char *username, con Line 216  int check_user(const char *username, con
216          }          }
217          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
218          {          {
219                  if (atoi(row[0]) >= 5)                  if (atoi(row[0]) >= BBS_allowed_login_failures_per_account)
220                  {                  {
221                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");                          prints("\033[1;31m璐︽埛瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃浣跨敤Web鏂瑰紡鐧诲綍瑙i攣\033[m\r\n");
222                          ret = 1;                          ret = 1;
223                          goto cleanup;                          goto cleanup;
224                  }                  }
# Line 268  int check_user(const char *username, con Line 274  int check_user(const char *username, con
274    
275                  if (p_login == 0)                  if (p_login == 0)
276                  {                  {
277                          prints("\033[1;31m您目前无权登陆...\033[m\r\n");                          prints("\033[1;31m鎮ㄧ洰鍓嶆棤鏉冪櫥闄...\033[m\r\n");
278                          ret = 1;                          ret = 1;
279                          goto cleanup;                          goto cleanup;
280                  }                  }
# Line 297  int check_user(const char *username, con Line 303  int check_user(const char *username, con
303                          goto cleanup;                          goto cleanup;
304                  }                  }
305    
306                  prints("\033[1;31m错误的用户名或密码...\033[m\r\n");                  prints("\033[1;31m閿欒鐨勭敤鎴峰悕鎴栧瘑鐮...\033[m\r\n");
307                  ret = 1;                  ret = 1;
308                  goto cleanup;                  goto cleanup;
309          }          }
# Line 317  int check_user(const char *username, con Line 323  int check_user(const char *username, con
323          case 0: // Login successfully          case 0: // Login successfully
324                  break;                  break;
325          case -1: // Load data error          case -1: // Load data error
326                  prints("\033[1;31m读取用户数据错误...\033[m\r\n");                  prints("\033[1;31m璇诲彇鐢ㄦ埛鏁版嵁閿欒...\033[m\r\n");
327                  ret = -1;                  ret = -1;
328                  goto cleanup;                  goto cleanup;
329          case -2: // Unused          case -2: // Unused
330                  prints("\033[1;31m请通过Web登录更新用户许可协议...\033[m\r\n");                  prints("\033[1;31m璇烽氳繃Web鐧诲綍鏇存柊鐢ㄦ埛璁稿彲鍗忚...\033[m\r\n");
331                  ret = 1;                  ret = 1;
332                  goto cleanup;                  goto cleanup;
333          case -3: // Dead          case -3: // Dead
334                  prints("\033[1;31m很遗憾,您已经永远离开了我们的世界!\033[m\r\n");                  prints("\033[1;31m寰堥仐鎲撅紝鎮ㄥ凡缁忔案杩滅寮浜嗘垜浠殑涓栫晫锛乗033[m\r\n");
335                  ret = 1;                  ret = 1;
336                  goto cleanup;                  goto cleanup;
337          default:          default:
# Line 333  int check_user(const char *username, con Line 339  int check_user(const char *username, con
339                  goto cleanup;                  goto cleanup;
340          }          }
341    
342            if (!SSH_v2 && checklevel2(&BBS_priv, P_MAN_S))
343            {
344                    prints("\033[1;31m闈炴櫘閫氳处鎴峰繀椤讳娇鐢⊿SH鏂瑰紡鐧诲綍\033[m\r\n");
345                    ret = 1;
346                    goto cleanup;
347            }
348    
349          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
350                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
351                           "last_login_dt = NOW() WHERE UID = %d",                           "last_login_dt = NOW() WHERE UID = %d",
# Line 484  int user_online_add(MYSQL *db) Line 497  int user_online_add(MYSQL *db)
497  {  {
498          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
499    
500          if (user_online_del(db) != 0)          snprintf(sql, sizeof(sql),
501                             "INSERT INTO visit_log(dt, IP) VALUES(NOW(), '%s')",
502                             hostaddr_client);
503            if (mysql_query(db, sql) != 0)
504          {          {
505                    log_error("Add visit log error: %s\n", mysql_error(db));
506                  return -1;                  return -1;
507          }          }
508    
509            if (user_online_del(db) != 0)
510            {
511                    return -2;
512            }
513    
514          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
515                           "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "                           "INSERT INTO user_online(SID, UID, ip, current_action, login_tm, last_tm) "
516                           "VALUES('Telnet_Process_%d', %d, '%s', NOW(), NOW())",                           "VALUES('Telnet_Process_%d', %d, '%s', 'LOGIN', NOW(), NOW())",
517                           getpid(), BBS_priv.uid, hostaddr_client);                           getpid(), BBS_priv.uid, hostaddr_client);
518          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
519          {          {
520                  log_error("Add user_online error: %s\n", mysql_error(db));                  log_error("Add user_online error: %s\n", mysql_error(db));
521                  return -1;                  return -3;
522          }          }
523    
524          return 0;          return 0;
# Line 517  int user_online_del(MYSQL *db) Line 539  int user_online_del(MYSQL *db)
539    
540          return 0;          return 0;
541  }  }
542    
543    int user_online_exp(MYSQL *db)
544    {
545            char sql[SQL_BUFFER_LEN];
546    
547            // +1 exp for every 5 minutes online since last logout
548            // but at most 24 hours worth of exp can be gained in Telnet session
549            snprintf(sql, sizeof(sql),
550                             "UPDATE user_pubinfo SET exp = exp + FLOOR(LEAST(TIMESTAMPDIFF("
551                             "SECOND, GREATEST(last_login_dt, IF(last_logout_dt IS NULL, last_login_dt, last_logout_dt)), NOW()"
552                             ") / 60 / 5, 12 * 24)), last_logout_dt = NOW() "
553                             "WHERE UID = %d",
554                             BBS_priv.uid);
555            if (mysql_query(db, sql) != 0)
556            {
557                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
558                    return -1;
559            }
560    
561            return 0;
562    }
563    
564    int user_online_update(const char *action)
565    {
566            MYSQL *db = NULL;
567            char sql[SQL_BUFFER_LEN];
568    
569            if ((action == NULL || strcmp(BBS_current_action, action) == 0) &&
570                    time(NULL) - BBS_current_action_tm < BBS_current_action_refresh_interval) // No change
571            {
572                    return 0;
573            }
574    
575            if (action != NULL)
576            {
577                    strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);
578                    BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';
579            }
580    
581            BBS_current_action_tm = time(NULL);
582    
583            db = db_open();
584            if (db == NULL)
585            {
586                    log_error("db_open() error: %s\n", mysql_error(db));
587                    return -1;
588            }
589    
590            snprintf(sql, sizeof(sql),
591                             "UPDATE user_online SET current_action = '%s', last_tm = NOW() "
592                             "WHERE SID = 'Telnet_Process_%d'",
593                             BBS_current_action, getpid());
594            if (mysql_query(db, sql) != 0)
595            {
596                    log_error("Update user_online error: %s\n", mysql_error(db));
597                    return -2;
598            }
599    
600            mysql_close(db);
601    
602            return 1;
603    }


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

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