/[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.14 by sysadm, Wed Apr 30 09:18:19 2025 UTC Revision 1.32 by sysadm, Mon May 19 01:45:45 2025 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2                                                    login.c  -  description                                                    login.c  -  description
3                                                           -------------------                                                           -------------------
4          begin                : Mon Oct 20 2004          Copyright            : (C) 2004-2025 by Leaflet
5          copyright            : (C) 2004 by Leaflet          Email                : leaflet@leafok.com
         email                : leaflet@leafok.com  
6   ***************************************************************************/   ***************************************************************************/
7    
8  /***************************************************************************  /***************************************************************************
9   *                                                                         *   *                                                                         *
10   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
11   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
12   *   the Free Software Foundation; either version 2 of the License, or     *   *   the Free Software Foundation; either version 3 of the License, or     *
13   *   (at your option) any later version.                                   *   *   (at your option) any later version.                                   *
14   *                                                                         *   *                                                                         *
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)
32  {  {
33          char temp[256];          char username[BBS_username_max_len + 1];
34            char password[BBS_password_max_len + 1];
35            int count = 0;
36            int ok = 0;
37    
38          strcpy(temp, app_home_dir);          for (; !SYS_server_exit && !ok && count < 3; count++)
         strcat(temp, "data/login_error.txt");  
         display_file(temp);  
   
         sleep(1);  
 }  
   
 int bbs_login()  
 {  
         char username[20], password[20];  
         int count, ok;  
   
         // Input username  
         count = 0;  
         ok = 0;  
         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, 19, 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                                  return 0;  
60                          else                          return 0;
                                 return -2;  
61                  }                  }
62    
63                  if (strlen(username) > 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, 19, NOECHO);                          if (str_input(password, sizeof(password), NOECHO) < 0)
   
                         MYSQL * db = db_open();  
                         if (db == NULL)  
69                          {                          {
70                                  return -1;                                  continue;
71                          }                          }
                   
                         ok = (check_user(db, username, password) == 0);  
72    
73                          mysql_close(db);                          ok = (check_user(db, username, password) == 0);
74                  }                          iflush();
                 if (count >= 3 && !ok)  
                 {  
                         login_fail();  
                         return -1;  
75                  }                  }
76          }          }
77    
78            if (!ok)
79            {
80                    display_file_ex(DATA_LOGIN_ERROR, 1, 1);
81                    return -1;
82            }
83    
84            log_std("User \"%s\"(%ld) login from %s:%d\n",
85                            BBS_username, BBS_priv.uid, hostaddr_client, port_client);
86    
87          return 0;          return 0;
88  }  }
89    
# Line 113  int check_user(MYSQL *db, char *username Line 91  int check_user(MYSQL *db, char *username
91  {  {
92          MYSQL_RES *rs;          MYSQL_RES *rs;
93          MYSQL_ROW row;          MYSQL_ROW row;
94          char sql[1024];          char sql[SQL_BUFFER_LEN];
         long int BBS_uid;  
95          int ret;          int ret;
96            long BBS_uid = 0;
97            char client_addr[IP_ADDR_LEN];
98            int i;
99            int ok = 1;
100    
101          // Verify format          // Verify format
102          if (ireg("^[A-Za-z][A-Za-z0-9]{2,11}$", username, 0, NULL) != 0 ||          for (i = 0; ok && username[i] != '\0'; i++)
103                  ireg("^[A-Za-z0-9]{5,12}$", password, 0, NULL) != 0)          {
104                    if (!(isalpha(username[i]) || (i > 0 && isdigit(username[i]))))
105                    {
106                            ok = 0;
107                    }
108            }
109            if (ok && (i < 3 || i > 12))
110            {
111                    ok = 0;
112            }
113            for (i = 0; ok && password[i] != '\0'; i++)
114            {
115                    if (!isalnum(password[i]))
116                    {
117                            ok = 0;
118                    }
119            }
120            if (ok && (i < 5 || i > 12))
121            {
122                    ok = 0;
123            }
124    
125            if (!ok)
126          {          {
127                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");
                 iflush();  
128                  return 1;                  return 1;
129          }          }
130    
# Line 139  int check_user(MYSQL *db, char *username Line 141  int check_user(MYSQL *db, char *username
141                  return -1;                  return -1;
142          }          }
143    
144          sprintf(sql,          // Failed login attempts from the same source (subnet /24) during certain time period
145                          "SELECT UID, username, p_login FROM user_list "          strncpy(client_addr, hostaddr_client, sizeof(client_addr) - 1);
146                          "WHERE username = '%s' AND password = SHA2('%s', 256) AND enable",          client_addr[sizeof(client_addr) - 1] = '\0';
147                          username, password);  
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    
171                            return 1;
172                    }
173            }
174            mysql_free_result(rs);
175    
176            // Failed login attempts against the current username during certain time period
177            snprintf(sql, sizeof(sql),
178                             "SELECT COUNT(*) AS err_count FROM user_err_login_log "
179                             "WHERE username = '%s' AND login_dt >= SUBDATE(NOW(), INTERVAL 1 DAY)",
180                             username);
181            if (mysql_query(db, sql) != 0)
182            {
183                    log_error("Query user_list failed\n");
184                    return -1;
185            }
186            if ((rs = mysql_store_result(db)) == NULL)
187            {
188                    log_error("Get user_list data failed\n");
189                    return -1;
190            }
191            if ((row = mysql_fetch_row(rs)))
192            {
193                    if (atoi(row[0]) >= 5)
194                    {
195                            mysql_free_result(rs);
196    
197                            prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");
198    
199                            return 1;
200                    }
201            }
202            mysql_free_result(rs);
203    
204            snprintf(sql, sizeof(sql),
205                             "SELECT UID, username, p_login FROM user_list "
206                             "WHERE username = '%s' AND password = SHA2('%s', 256) AND enable",
207                             username, password);
208          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
209          {          {
210                  log_error("Query user_list failed\n");                  log_error("Query user_list failed\n");
# Line 153  int check_user(MYSQL *db, char *username Line 215  int check_user(MYSQL *db, char *username
215                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
216                  return -1;                  return -1;
217          }          }
218          if (row = mysql_fetch_row(rs))          if ((row = mysql_fetch_row(rs)))
219          {          {
220                  BBS_uid = atol(row[0]);                  BBS_uid = atol(row[0]);
221                  strcpy(BBS_username, row[1]);                  strncpy(BBS_username, row[1], sizeof(BBS_username) - 1);
222                    BBS_username[sizeof(BBS_username) - 1] = '\0';
223                  int p_login = atoi(row[2]);                  int p_login = atoi(row[2]);
224    
225                  mysql_free_result(rs);                  mysql_free_result(rs);
226    
227                  // Add user login log                  // Add user login log
228                  sprintf(sql,                  snprintf(sql, sizeof(sql),
229                                  "INSERT INTO user_login_log(UID, login_dt, login_ip) "                                   "INSERT INTO user_login_log(UID, login_dt, login_ip) "
230                                  "VALUES(%ld, NOW(), '%s')",                                   "VALUES(%ld, NOW(), '%s')",
231                                  BBS_uid, hostaddr_client);                                   BBS_uid, hostaddr_client);
232                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
233                  {                  {
234                          log_error("Insert into user_login_log failed\n");                          log_error("Insert into user_login_log failed\n");
# Line 184  int check_user(MYSQL *db, char *username Line 247  int check_user(MYSQL *db, char *username
247                          mysql_free_result(rs);                          mysql_free_result(rs);
248    
249                          prints("\033[1;31m您目前无权登陆...\033[m\r\n");                          prints("\033[1;31m您目前无权登陆...\033[m\r\n");
                         iflush();  
250                          return 1;                          return 1;
251                  }                  }
252          }          }
# Line 192  int check_user(MYSQL *db, char *username Line 254  int check_user(MYSQL *db, char *username
254          {          {
255                  mysql_free_result(rs);                  mysql_free_result(rs);
256    
257                  sprintf(sql,                  snprintf(sql, sizeof(sql),
258                                  "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "                                   "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "
259                                  "VALUES('%s', '%s', NOW(), '%s')",                                   "VALUES('%s', '%s', NOW(), '%s')",
260                                  username, password, hostaddr_client);                                   username, password, hostaddr_client);
261                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
262                  {                  {
263                          log_error("Insert into user_err_login_log failed\n");                          log_error("Insert into user_err_login_log failed\n");
# Line 210  int check_user(MYSQL *db, char *username Line 272  int check_user(MYSQL *db, char *username
272                  }                  }
273    
274                  prints("\033[1;31m错误的用户名或密码...\033[m\r\n");                  prints("\033[1;31m错误的用户名或密码...\033[m\r\n");
                 iflush();  
275                  return 1;                  return 1;
276          }          }
277    
# Line 229  int check_user(MYSQL *db, char *username Line 290  int check_user(MYSQL *db, char *username
290                  break;                  break;
291          case -1: // Load data error          case -1: // Load data error
292                  prints("\033[1;31m读取用户数据错误...\033[m\r\n");                  prints("\033[1;31m读取用户数据错误...\033[m\r\n");
                 iflush();  
293                  return -1;                  return -1;
294          case -2: // Unused          case -2: // Unused
295                  prints("\033[1;31m请通过Web登录更新用户许可协议...\033[m\r\n");                  prints("\033[1;31m请通过Web登录更新用户许可协议...\033[m\r\n");
                 iflush();  
296                  return 1;                  return 1;
297          case -3: // Dead          case -3: // Dead
298                  prints("\033[1;31m很遗憾,您已经永远离开了我们的世界!\033[m\r\n");                  prints("\033[1;31m很遗憾,您已经永远离开了我们的世界!\033[m\r\n");
                 iflush();  
299                  return 1;                  return 1;
300          default:          default:
301                  return -2;                  return -2;
302          }          }
303    
304          sprintf(sql,          snprintf(sql, sizeof(sql),
305                          "UPDATE user_pubinfo SET visit_count = visit_count + 1, "                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
306                          "last_login_dt = NOW() WHERE UID = %ld",                           "last_login_dt = NOW() WHERE UID = %ld",
307                          BBS_uid);                           BBS_uid);
308          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
309          {          {
310                  log_error("Update user_pubinfo failed\n");                  log_error("Update user_pubinfo failed\n");
311                  return -1;                  return -1;
312          }          }
313    
314            if (user_online_add(db) != 0)
315            {
316                    return -1;
317            }
318    
319          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(0);
320    
321          return 0;          return 0;
# Line 262  int load_user_info(MYSQL *db, long int B Line 325  int load_user_info(MYSQL *db, long int B
325  {  {
326          MYSQL_RES *rs;          MYSQL_RES *rs;
327          MYSQL_ROW row;          MYSQL_ROW row;
328          char sql[1024];          char sql[SQL_BUFFER_LEN];
329          int life;          int life;
330          time_t last_login_dt;          time_t last_login_dt;
331    
332          sprintf(sql,          snprintf(sql, sizeof(sql),
333                          "SELECT life, UNIX_TIMESTAMP(last_login_dt) "                           "SELECT life, UNIX_TIMESTAMP(last_login_dt) "
334                          "FROM user_pubinfo WHERE UID = %ld",                           "FROM user_pubinfo WHERE UID = %ld",
335                          BBS_uid);                           BBS_uid);
336          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
337          {          {
338                  log_error("Query user_pubinfo failed\n");                  log_error("Query user_pubinfo failed\n");
# Line 280  int load_user_info(MYSQL *db, long int B Line 343  int load_user_info(MYSQL *db, long int B
343                  log_error("Get user_pubinfo data failed\n");                  log_error("Get user_pubinfo data failed\n");
344                  return -1;                  return -1;
345          }          }
346          if (row = mysql_fetch_row(rs))          if ((row = mysql_fetch_row(rs)))
347          {          {
348                  life = atoi(row[0]);                  life = atoi(row[0]);
349                  last_login_dt = (time_t)atol(row[1]);                  last_login_dt = (time_t)atol(row[1]);
# Line 288  int load_user_info(MYSQL *db, long int B Line 351  int load_user_info(MYSQL *db, long int B
351          else          else
352          {          {
353                  mysql_free_result(rs);                  mysql_free_result(rs);
354                  return (-1); // Data not found                  return -1; // Data not found
355          }          }
356          mysql_free_result(rs);          mysql_free_result(rs);
357    
358          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal
359                  time(0) - last_login_dt > 60 * 60 * 24 * life)                  time(0) - last_login_dt > 60 * 60 * 24 * life)
360          {          {
361                  return (-3); // Dead                  return -3; // Dead
362          }          }
363    
364          load_priv(db, &BBS_priv, BBS_uid);          if (load_priv(db, &BBS_priv, BBS_uid) != 0)
365            {
366                    return -1;
367            }
368    
369          return 0;          return 0;
370  }  }
371    
372  int load_guest_info(MYSQL *db)  int load_guest_info(MYSQL *db)
373  {  {
374          MYSQL_RES *rs;          strncpy(BBS_username, "guest", sizeof(BBS_username) - 1);
375          MYSQL_ROW row;          BBS_username[sizeof(BBS_username) - 1] = '\0';
376    
377          strcpy(BBS_username, "guest");          if (load_priv(db, &BBS_priv, 0) != 0)
378            {
379                    return -1;
380            }
381    
382          load_priv(db, &BBS_priv, 0);          if (user_online_add(db) != 0)
383            {
384                    return -1;
385            }
386    
387          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(0);
388    
389          return 0;          return 0;
390  }  }
391    
392    int user_online_add(MYSQL *db)
393    {
394            char sql[SQL_BUFFER_LEN];
395    
396            if (user_online_del(db) != 0)
397            {
398                    return -1;
399            }
400    
401            snprintf(sql, sizeof(sql),
402                             "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "
403                             "VALUES('Telnet_Process_%d', %ld, '%s', NOW(), NOW())",
404                             getpid(), BBS_priv.uid, hostaddr_client);
405            if (mysql_query(db, sql) != 0)
406            {
407                    log_error("Add user_online failed\n");
408                    return -1;
409            }
410    
411            return 0;
412    }
413    
414    int user_online_del(MYSQL *db)
415    {
416            char sql[SQL_BUFFER_LEN];
417    
418            snprintf(sql, sizeof(sql),
419                             "DELETE FROM user_online WHERE SID = 'Telnet_Process_%d'",
420                             getpid());
421            if (mysql_query(db, sql) != 0)
422            {
423                    log_error("Delete user_online failed\n");
424                    return -1;
425            }
426    
427            return 0;
428    }


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

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