/[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.21 by sysadm, Tue May 6 12:10:22 2025 UTC Revision 1.30 by sysadm, Thu May 15 14:34:13 2025 UTC
# Line 15  Line 15 
15   ***************************************************************************/   ***************************************************************************/
16    
17  #include "login.h"  #include "login.h"
 #include "register.h"  
18  #include "bbs.h"  #include "bbs.h"
19  #include "user_priv.h"  #include "user_priv.h"
 #include "reg_ex.h"  
20  #include "common.h"  #include "common.h"
21  #include "log.h"  #include "log.h"
22  #include "io.h"  #include "io.h"
23  #include "screen.h"  #include "screen.h"
24  #include "database.h"  #include "database.h"
25    #include <ctype.h>
26  #include <string.h>  #include <string.h>
27  #include <mysql.h>  #include <mysql.h>
28  #include <regex.h>  #include <regex.h>
29  #include <unistd.h>  #include <unistd.h>
30    
31  void login_fail()  int bbs_login(MYSQL *db)
 {  
         display_file(DATA_LOGIN_ERROR);  
   
         sleep(1);  
 }  
   
 int bbs_login()  
32  {  {
33          char username[BBS_username_max_len + 1];          char username[BBS_username_max_len + 1];
34          char password[BBS_password_max_len + 1];          char password[BBS_password_max_len + 1];
35          int count = 0;          int count = 0;
36          int ok = 0;          int ok = 0;
37    
38          // Input username          for (; !SYS_server_exit && !ok && count < 3; count++)
         while (!ok)  
39          {          {
40                  prints("\033[1;33m请输入帐号\033[m(试用请输入 `\033[1;36mguest\033[m', "                  prints("\033[1;33m请输入帐号\033[m(试用请输入`\033[1;36mguest\033[m', "
41                             "注册请输入`\033[1;31mnew\033[m'): ");                             "注册请输入`\033[1;31mnew\033[m'): ");
42                  iflush();                  iflush();
43    
44                  str_input(username, sizeof(username), DOECHO);                  if (str_input(username, sizeof(username), DOECHO) < 0)
45                  count++;                  {
46                            continue;
47                    }
48    
49                  if (strcmp(username, "guest") == 0)                  if (strcmp(username, "guest") == 0)
50                  {                  {
                         MYSQL *db = db_open();  
                         if (db == NULL)  
                         {  
                                 return -1;  
                         }  
   
51                          load_guest_info(db);                          load_guest_info(db);
52    
                         mysql_close(db);  
   
53                          return 0;                          return 0;
54                  }                  }
55    
56                  if (strcmp(username, "new") == 0)                  if (strcmp(username, "new") == 0)
57                  {                  {
58                          if (user_register() == 0)                          display_file_ex(DATA_REGISTER, 1, 1);
59                          {  
60                                  return 0;                          return 0;
                         }  
                         else  
                         {  
                                 return -2;  
                         }  
61                  }                  }
62    
63                  if (username[0] != '\0')                  if (username[0] != '\0')
64                  {                  {
                         // Input password  
65                          prints("\033[1;37m请输入密码\033[m: ");                          prints("\033[1;37m请输入密码\033[m: ");
66                          iflush();                          iflush();
67    
68                          str_input(password, sizeof(password), NOECHO);                          if (str_input(password, sizeof(password), NOECHO) < 0)
   
                         MYSQL *db = db_open();  
                         if (db == NULL)  
69                          {                          {
70                                  return -1;                                  continue;
71                          }                          }
72    
73                          ok = (check_user(db, username, password) == 0);                          ok = (check_user(db, username, password) == 0);
   
                         mysql_close(db);  
                 }  
                 if (count >= 3 && !ok)  
                 {  
                         login_fail();  
                         return -1;  
74                  }                  }
75          }          }
76    
77            if (!ok)
78            {
79                    display_file_ex(DATA_LOGIN_ERROR, 1, 0);
80                    return -1;
81            }
82    
83            log_std("User \"%s\"(%ld) login from %s:%d\n",
84                            BBS_username, BBS_priv.uid, hostaddr_client, port_client);
85    
86          return 0;          return 0;
87  }  }
88    
# Line 115  int check_user(MYSQL *db, char *username Line 93  int check_user(MYSQL *db, char *username
93          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
94          int ret;          int ret;
95          long BBS_uid = 0;          long BBS_uid = 0;
96            char client_addr[IP_ADDR_LEN];
97            int i;
98            int ok = 1;
99    
100          // Verify format          // Verify format
101          if (ireg("^[A-Za-z][A-Za-z0-9]{2,11}$", username, 0, NULL) != 0 ||          for (i = 0; ok && username[i] != '\0'; i++)
102                  ireg("^[A-Za-z0-9]{5,12}$", password, 0, NULL) != 0)          {
103                    if (!(isalpha(username[i]) || (i > 0 && isdigit(username[i]))))
104                    {
105                            ok = 0;
106                    }
107            }
108            if (ok && (i < 3 || i > 12))
109            {
110                    ok = 0;
111            }
112            for (i = 0; ok && password[i] != '\0'; i++)
113            {
114                    if (!isalnum(password[i]))
115                    {
116                            ok = 0;
117                    }
118            }
119            if (ok && (i < 5 || i > 12))
120            {
121                    ok = 0;
122            }
123    
124            if (!ok)
125          {          {
126                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");
127                  iflush();                  iflush();
# Line 138  int check_user(MYSQL *db, char *username Line 141  int check_user(MYSQL *db, char *username
141                  return -1;                  return -1;
142          }          }
143    
144            // Failed login attempts from the same source (subnet /24) during certain time period
145            strncpy(client_addr, hostaddr_client, sizeof(client_addr) - 1);
146            client_addr[sizeof(client_addr) - 1] = '\0';
147    
148            snprintf(sql, sizeof(sql),
149                             "SELECT COUNT(*) AS err_count FROM user_err_login_log "
150                             "WHERE login_dt >= SUBDATE(NOW(), INTERVAL 10 MINUTE) "
151                             "AND login_ip LIKE '%s'",
152                             ip_mask(client_addr, 1, '%'));
153            if (mysql_query(db, sql) != 0)
154            {
155                    log_error("Query user_list failed\n");
156                    return -1;
157            }
158            if ((rs = mysql_store_result(db)) == NULL)
159            {
160                    log_error("Get user_list data failed\n");
161                    return -1;
162            }
163            if ((row = mysql_fetch_row(rs)))
164            {
165                    if (atoi(row[0]) >= 2)
166                    {
167                            mysql_free_result(rs);
168    
169                            prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试\033[m\r\n");
170                            iflush();
171    
172                            return 1;
173                    }
174            }
175            mysql_free_result(rs);
176    
177            // Failed login attempts against the current username during certain time period
178            snprintf(sql, sizeof(sql),
179                             "SELECT COUNT(*) AS err_count FROM user_err_login_log "
180                             "WHERE username = '%s' AND login_dt >= SUBDATE(NOW(), INTERVAL 1 DAY)",
181                             username);
182            if (mysql_query(db, sql) != 0)
183            {
184                    log_error("Query user_list failed\n");
185                    return -1;
186            }
187            if ((rs = mysql_store_result(db)) == NULL)
188            {
189                    log_error("Get user_list data failed\n");
190                    return -1;
191            }
192            if ((row = mysql_fetch_row(rs)))
193            {
194                    if (atoi(row[0]) >= 5)
195                    {
196                            mysql_free_result(rs);
197    
198                            prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");
199                            iflush();
200    
201                            return 1;
202                    }
203            }
204            mysql_free_result(rs);
205    
206          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
207                          "SELECT UID, username, p_login FROM user_list "                           "SELECT UID, username, p_login FROM user_list "
208                          "WHERE username = '%s' AND password = SHA2('%s', 256) AND enable",                           "WHERE username = '%s' AND password = SHA2('%s', 256) AND enable",
209                          username, password);                           username, password);
210          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
211          {          {
212                  log_error("Query user_list failed\n");                  log_error("Query user_list failed\n");
# Line 163  int check_user(MYSQL *db, char *username Line 228  int check_user(MYSQL *db, char *username
228    
229                  // Add user login log                  // Add user login log
230                  snprintf(sql, sizeof(sql),                  snprintf(sql, sizeof(sql),
231                                  "INSERT INTO user_login_log(UID, login_dt, login_ip) "                                   "INSERT INTO user_login_log(UID, login_dt, login_ip) "
232                                  "VALUES(%ld, NOW(), '%s')",                                   "VALUES(%ld, NOW(), '%s')",
233                                  BBS_uid, hostaddr_client);                                   BBS_uid, hostaddr_client);
234                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
235                  {                  {
236                          log_error("Insert into user_login_log failed\n");                          log_error("Insert into user_login_log failed\n");
# Line 193  int check_user(MYSQL *db, char *username Line 258  int check_user(MYSQL *db, char *username
258                  mysql_free_result(rs);                  mysql_free_result(rs);
259    
260                  snprintf(sql, sizeof(sql),                  snprintf(sql, sizeof(sql),
261                                  "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "                                   "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "
262                                  "VALUES('%s', '%s', NOW(), '%s')",                                   "VALUES('%s', '%s', NOW(), '%s')",
263                                  username, password, hostaddr_client);                                   username, password, hostaddr_client);
264                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
265                  {                  {
266                          log_error("Insert into user_err_login_log failed\n");                          log_error("Insert into user_err_login_log failed\n");
# Line 244  int check_user(MYSQL *db, char *username Line 309  int check_user(MYSQL *db, char *username
309          }          }
310    
311          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
312                          "UPDATE user_pubinfo SET visit_count = visit_count + 1, "                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
313                          "last_login_dt = NOW() WHERE UID = %ld",                           "last_login_dt = NOW() WHERE UID = %ld",
314                          BBS_uid);                           BBS_uid);
315          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
316          {          {
317                  log_error("Update user_pubinfo failed\n");                  log_error("Update user_pubinfo failed\n");
# Line 272  int load_user_info(MYSQL *db, long int B Line 337  int load_user_info(MYSQL *db, long int B
337          time_t last_login_dt;          time_t last_login_dt;
338    
339          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
340                          "SELECT life, UNIX_TIMESTAMP(last_login_dt) "                           "SELECT life, UNIX_TIMESTAMP(last_login_dt) "
341                          "FROM user_pubinfo WHERE UID = %ld",                           "FROM user_pubinfo WHERE UID = %ld",
342                          BBS_uid);                           BBS_uid);
343          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
344          {          {
345                  log_error("Query user_pubinfo failed\n");                  log_error("Query user_pubinfo failed\n");
# Line 341  int user_online_add(MYSQL *db) Line 406  int user_online_add(MYSQL *db)
406          }          }
407    
408          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
409                          "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "                           "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "
410                          "VALUES('Telnet_Process_%d', %ld, '%s', NOW(), NOW())",                           "VALUES('Telnet_Process_%d', %ld, '%s', NOW(), NOW())",
411                          getpid(), BBS_priv.uid, hostaddr_client);                           getpid(), BBS_priv.uid, hostaddr_client);
412          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
413          {          {
414                  log_error("Add user_online failed\n");                  log_error("Add user_online failed\n");
# Line 358  int user_online_del(MYSQL *db) Line 423  int user_online_del(MYSQL *db)
423          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
424    
425          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
426                          "DELETE FROM user_online WHERE SID = 'Telnet_Process_%d'",                           "DELETE FROM user_online WHERE SID = 'Telnet_Process_%d'",
427                          getpid());                           getpid());
428          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
429          {          {
430                  log_error("Delete user_online failed\n");                  log_error("Delete user_online failed\n");


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

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