/[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.24 by sysadm, Sat May 10 11:09:02 2025 UTC Revision 1.31 by sysadm, Mon May 19 01:44:49 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          for (; !ok && count < 3; count++)          for (; !SYS_server_exit && !ok && count < 3; count++)
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'): ");
# Line 56  int bbs_login() Line 48  int bbs_login()
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')
# Line 91  int bbs_login() Line 70  int bbs_login()
70                                  continue;                                  continue;
71                          }                          }
72    
                         MYSQL *db = db_open();  
                         if (db == NULL)  
                         {  
                                 return -1;  
                         }  
   
73                          ok = (check_user(db, username, password) == 0);                          ok = (check_user(db, username, password) == 0);
74                            iflush();
                         mysql_close(db);  
75                  }                  }
76          }          }
77    
78          if (!ok)          if (!ok)
79          {          {
80                  login_fail();                  display_file_ex(DATA_LOGIN_ERROR, 1, 0);
81                  return -1;                  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 120  int check_user(MYSQL *db, char *username Line 95  int check_user(MYSQL *db, char *username
95          int ret;          int ret;
96          long BBS_uid = 0;          long BBS_uid = 0;
97          char client_addr[IP_ADDR_LEN];          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 169  int check_user(MYSQL *db, char *username Line 167  int check_user(MYSQL *db, char *username
167                          mysql_free_result(rs);                          mysql_free_result(rs);
168    
169                          prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试\033[m\r\n");                          prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试\033[m\r\n");
                         iflush();  
170    
171                          return 1;                          return 1;
172                  }                  }
# Line 198  int check_user(MYSQL *db, char *username Line 195  int check_user(MYSQL *db, char *username
195                          mysql_free_result(rs);                          mysql_free_result(rs);
196    
197                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");
                         iflush();  
198    
199                          return 1;                          return 1;
200                  }                  }
# Line 251  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 277  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 296  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;


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

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