/[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.35 by sysadm, Thu May 29 13:17:33 2025 UTC Revision 1.74 by sysadm, Tue Dec 2 08:48: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    
 #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>
 #include <mysql.h>  
26  #include <regex.h>  #include <regex.h>
 #include <stdlib.h>  
27  #include <unistd.h>  #include <unistd.h>
28    #include <mysql.h>
29    #include <sys/param.h>
30    
31  int bbs_login(MYSQL *db)  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)
41  {  {
42          char username[BBS_username_max_len + 1];          char username[BBS_username_max_len + 1];
43          char password[BBS_password_max_len + 1];          char password[BBS_password_max_len + 1];
44          int count = 0;          int i = 0;
45          int ok = 0;          int ok = 0;
46            int ret;
47    
48          for (; !SYS_server_exit && !ok && count < 3; count++)          for (; !SYS_server_exit && !ok && i < BBS_login_retry_times; i++)
49          {          {
50                  prints("\033[1;33m请输入帐号\033[m(试用请输入`\033[1;36mguest\033[m', "                  prints("\033[1;33m璇疯緭鍏ュ笎鍙穃033[m(璇曠敤璇疯緭鍏\033[1;36mguest\033[m', "
51                             "注册请输入`\033[1;31mnew\033[m'): ");                             "娉ㄥ唽璇疯緭鍏\033[1;31mnew\033[m'): ");
52                  iflush();                  iflush();
53    
54                  if (str_input(username, sizeof(username), DOECHO) < 0)                  if (str_input(username, sizeof(username), DOECHO) < 0)
# Line 52  int bbs_login(MYSQL *db) Line 58  int bbs_login(MYSQL *db)
58    
59                  if (strcmp(username, "guest") == 0)                  if (strcmp(username, "guest") == 0)
60                  {                  {
61                          load_guest_info(db);                          load_guest_info();
62    
63                          return 0;                          return 0;
64                  }                  }
65    
66                  if (strcmp(username, "new") == 0)                  if (strcmp(username, "new") == 0)
67                  {                  {
68                          display_file(DATA_REGISTER, 1, 1);                          display_file(DATA_REGISTER, 1);
69    
70                          return 0;                          return -1;
71                  }                  }
72    
73                  if (username[0] != '\0')                  if (username[0] != '\0')
74                  {                  {
75                          prints("\033[1;37m请输入密码\033[m: ");                          prints("\033[1;37m璇疯緭鍏ュ瘑鐮乗033[m: ");
76                          iflush();                          iflush();
77    
78                          if (str_input(password, sizeof(password), NOECHO) < 0)                          if (str_input(password, sizeof(password), NOECHO) < 0)
# Line 74  int bbs_login(MYSQL *db) Line 80  int bbs_login(MYSQL *db)
80                                  continue;                                  continue;
81                          }                          }
82    
83                          ok = (check_user(db, username, password) == 0);                          ret = check_user(username, password);
84                            if (ret == 2) // Enforce update user agreement
85                            {
86                                    BBS_update_eula = 1;
87                                    ret = 0;
88                            }
89    
90                            ok = (ret == 0);
91                          iflush();                          iflush();
92                  }                  }
93          }          }
94    
95          if (!ok)          if (!ok)
96          {          {
97                  display_file(DATA_LOGIN_ERROR, 1, 1);                  display_file(DATA_LOGIN_ERROR, 1);
98                  return -1;                  return -1;
99          }          }
100    
         log_std("User \"%s\"(%ld) login from %s:%d\n",  
                         BBS_username, BBS_priv.uid, hostaddr_client, port_client);  
   
101          return 0;          return 0;
102  }  }
103    
104  int check_user(MYSQL *db, char *username, char *password)  int check_user(const char *username, const char *password)
105  {  {
106          MYSQL_RES *rs;          MYSQL *db = NULL;
107            MYSQL_RES *rs = NULL;
108          MYSQL_ROW row;          MYSQL_ROW row;
109          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
110          int ret;          int ret = 0;
111          long BBS_uid = 0;          int BBS_uid = 0;
112          char client_addr[IP_ADDR_LEN];          char client_addr[IP_ADDR_LEN];
113          int i;          int i;
114          int ok = 1;          int ok = 1;
115          char user_tz_env[BBS_user_tz_max_len + 2];          char user_tz_env[BBS_user_tz_max_len + 2];
116    
117            db = db_open();
118            if (db == NULL)
119            {
120                    ret = -1;
121                    goto cleanup;
122            }
123    
124          // Verify format          // Verify format
125          for (i = 0; ok && username[i] != '\0'; i++)          for (i = 0; ok && username[i] != '\0'; i++)
126          {          {
127                  if (!(isalpha(username[i]) || (i > 0 && isdigit(username[i]))))                  if (!(isalpha((int)username[i]) || (i > 0 && (isdigit((int)username[i]) || username[i] == '_'))))
128                  {                  {
129                          ok = 0;                          ok = 0;
130                  }                  }
131          }          }
132          if (ok && (i < 3 || i > 12))          if (ok && (i < BBS_username_min_len || i > BBS_username_max_len))
133          {          {
134                  ok = 0;                  ok = 0;
135          }          }
136          for (i = 0; ok && password[i] != '\0'; i++)          for (i = 0; ok && password[i] != '\0'; i++)
137          {          {
138                  if (!isalnum(password[i]))                  if (!isalnum((int)password[i]))
139                  {                  {
140                          ok = 0;                          ok = 0;
141                  }                  }
142          }          }
143          if (ok && (i < 5 || i > 12))          if (ok && (i < BBS_password_min_len || i > BBS_password_max_len))
144          {          {
145                  ok = 0;                  ok = 0;
146          }          }
147    
148          if (!ok)          if (!ok)
149          {          {
150                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");                  prints("\033[1;31m鐢ㄦ埛鍚嶆垨瀵嗙爜鏍煎紡閿欒...\033[m\r\n");
151                  return 1;                  ret = 1;
152                    goto cleanup;
153          }          }
154    
155          // Begin transaction          // Begin transaction
156          if (mysql_query(db, "SET autocommit=0") != 0)          if (mysql_query(db, "SET autocommit=0") != 0)
157          {          {
158                  log_error("SET autocommit=0 error: %s\n", mysql_error(db));                  log_error("SET autocommit=0 error: %s\n", mysql_error(db));
159                  return -1;                  ret = -1;
160                    goto cleanup;
161          }          }
162    
163          if (mysql_query(db, "BEGIN") != 0)          if (mysql_query(db, "BEGIN") != 0)
164          {          {
165                  log_error("Begin transaction error: %s\n", mysql_error(db));                  log_error("Begin transaction error: %s\n", mysql_error(db));
166                  return -1;                  ret = -1;
167                    goto cleanup;
168          }          }
169    
170          // Failed login attempts from the same source (subnet /24) during certain time period          // Failed login attempts from the same source (subnet /24) during certain time period
# Line 152  int check_user(MYSQL *db, char *username Line 173  int check_user(MYSQL *db, char *username
173    
174          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
175                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "
176                           "WHERE login_dt >= SUBDATE(NOW(), INTERVAL 10 MINUTE) "                           "WHERE login_dt >= SUBDATE(NOW(), INTERVAL %d MINUTE) "
177                           "AND login_ip LIKE '%s'",                           "AND login_ip LIKE '%s'",
178                             BBS_login_failures_count_interval,
179                           ip_mask(client_addr, 1, '%'));                           ip_mask(client_addr, 1, '%'));
180          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
181          {          {
182                  log_error("Query user_list error: %s\n", mysql_error(db));                  log_error("Query user_list error: %s\n", mysql_error(db));
183                  return -1;                  ret = -1;
184                    goto cleanup;
185          }          }
186          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
187          {          {
188                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
189                  return -1;                  ret = -1;
190                    goto cleanup;
191          }          }
192          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
193          {          {
194                  if (atoi(row[0]) >= 2)                  if (atoi(row[0]) >= BBS_allowed_login_failures_within_interval)
195                  {                  {
196                          mysql_free_result(rs);                          prints("\033[1;31m鏉ユ簮瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃绋嶅悗鍐嶈瘯锛屾垨浣跨敤Web鏂瑰紡璁块棶\033[m\r\n");
197                            ret = 1;
198                          prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试\033[m\r\n");                          goto cleanup;
   
                         return 1;  
199                  }                  }
200          }          }
201          mysql_free_result(rs);          mysql_free_result(rs);
202            rs = NULL;
203    
204          // Failed login attempts against the current username during certain time period          // Failed login attempts against the current username since last successful login
205          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
206                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "
207                           "WHERE username = '%s' AND login_dt >= SUBDATE(NOW(), INTERVAL 1 DAY)",                           "LEFT JOIN user_list ON user_err_login_log.username = user_list.username "
208                             "LEFT JOIN user_pubinfo ON user_list.UID = user_pubinfo.UID "
209                             "WHERE user_err_login_log.username = '%s' "
210                             "AND (user_err_login_log.login_dt >= user_pubinfo.last_login_dt "
211                             "OR user_pubinfo.last_login_dt IS NULL)",
212                           username);                           username);
213          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
214          {          {
215                  log_error("Query user_list error: %s\n", mysql_error(db));                  log_error("Query user_list error: %s\n", mysql_error(db));
216                  return -1;                  ret = -1;
217                    goto cleanup;
218          }          }
219          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
220          {          {
221                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
222                  return -1;                  ret = -1;
223                    goto cleanup;
224          }          }
225          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
226          {          {
227                  if (atoi(row[0]) >= 5)                  if (atoi(row[0]) >= BBS_allowed_login_failures_per_account)
228                  {                  {
229                          mysql_free_result(rs);                          prints("\033[1;31m璐︽埛瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃浣跨敤Web鏂瑰紡鐧诲綍瑙i攣\033[m\r\n");
230                            ret = 1;
231                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录\033[m\r\n");                          goto cleanup;
   
                         return 1;  
232                  }                  }
233          }          }
234          mysql_free_result(rs);          mysql_free_result(rs);
235            rs = NULL;
236    
237          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
238                           "SELECT UID, username, p_login FROM user_list "                           "SELECT UID, username, p_login FROM user_list "
# Line 213  int check_user(MYSQL *db, char *username Line 241  int check_user(MYSQL *db, char *username
241          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
242          {          {
243                  log_error("Query user_list error: %s\n", mysql_error(db));                  log_error("Query user_list error: %s\n", mysql_error(db));
244                  return -1;                  ret = -1;
245                    goto cleanup;
246          }          }
247          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
248          {          {
249                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
250                  return -1;                  ret = -1;
251                    goto cleanup;
252          }          }
253          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
254          {          {
255                  BBS_uid = atol(row[0]);                  BBS_uid = atoi(row[0]);
256                  strncpy(BBS_username, row[1], sizeof(BBS_username) - 1);                  strncpy(BBS_username, row[1], sizeof(BBS_username) - 1);
257                  BBS_username[sizeof(BBS_username) - 1] = '\0';                  BBS_username[sizeof(BBS_username) - 1] = '\0';
258                  int p_login = atoi(row[2]);                  int p_login = atoi(row[2]);
259    
260                  mysql_free_result(rs);                  mysql_free_result(rs);
261                    rs = NULL;
262    
263                  // Add user login log                  // Add user login log
264                  snprintf(sql, sizeof(sql),                  snprintf(sql, sizeof(sql),
265                                   "INSERT INTO user_login_log(UID, login_dt, login_ip) "                                   "INSERT INTO user_login_log(UID, login_dt, login_ip) "
266                                   "VALUES(%ld, NOW(), '%s')",                                   "VALUES(%d, NOW(), '%s')",
267                                   BBS_uid, hostaddr_client);                                   BBS_uid, hostaddr_client);
268                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
269                  {                  {
270                          log_error("Insert into user_login_log error: %s\n", mysql_error(db));                          log_error("Insert into user_login_log error: %s\n", mysql_error(db));
271                          return -1;                          ret = -1;
272                            goto cleanup;
273                  }                  }
274    
275                  // Commit transaction                  // Commit transaction
276                  if (mysql_query(db, "COMMIT") != 0)                  if (mysql_query(db, "COMMIT") != 0)
277                  {                  {
278                          log_error("Commit transaction error: %s\n", mysql_error(db));                          log_error("Commit transaction error: %s\n", mysql_error(db));
279                          return -1;                          ret = -1;
280                            goto cleanup;
281                  }                  }
282    
283                  if (p_login == 0)                  if (p_login == 0)
284                  {                  {
285                          mysql_free_result(rs);                          prints("\033[1;31m鎮ㄧ洰鍓嶆棤鏉冪櫥闄...\033[m\r\n");
286                            ret = 1;
287                          prints("\033[1;31m您目前无权登陆...\033[m\r\n");                          goto cleanup;
                         return 1;  
288                  }                  }
289          }          }
290          else          else
291          {          {
292                  mysql_free_result(rs);                  mysql_free_result(rs);
293                    rs = NULL;
294    
295                  snprintf(sql, sizeof(sql),                  snprintf(sql, sizeof(sql),
296                                   "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "                                   "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "
# Line 266  int check_user(MYSQL *db, char *username Line 299  int check_user(MYSQL *db, char *username
299                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
300                  {                  {
301                          log_error("Insert into user_err_login_log error: %s\n", mysql_error(db));                          log_error("Insert into user_err_login_log error: %s\n", mysql_error(db));
302                          return -1;                          ret = -1;
303                            goto cleanup;
304                  }                  }
305    
306                  // Commit transaction                  // Commit transaction
307                  if (mysql_query(db, "COMMIT") != 0)                  if (mysql_query(db, "COMMIT") != 0)
308                  {                  {
309                          log_error("Commit transaction error: %s\n", mysql_error(db));                          log_error("Commit transaction error: %s\n", mysql_error(db));
310                          return -1;                          ret = -1;
311                            goto cleanup;
312                  }                  }
313    
314                  prints("\033[1;31m错误的用户名或密码...\033[m\r\n");                  prints("\033[1;31m閿欒鐨勭敤鎴峰悕鎴栧瘑鐮...\033[m\r\n");
315                  return 1;                  ret = 1;
316                    goto cleanup;
317          }          }
318    
319          // Set AUTOCOMMIT = 1          // Set AUTOCOMMIT = 1
320          if (mysql_query(db, "SET autocommit=1") != 0)          if (mysql_query(db, "SET autocommit=1") != 0)
321          {          {
322                  log_error("SET autocommit=1 error: %s\n", mysql_error(db));                  log_error("SET autocommit=1 error: %s\n", mysql_error(db));
323                  return -1;                  ret = -1;
324                    goto cleanup;
325            }
326    
327            if (!SSH_v2 && checklevel2(&BBS_priv, P_MAN_S))
328            {
329                    prints("\033[1;31m闈炴櫘閫氳处鎴峰繀椤讳娇鐢⊿SH鏂瑰紡鐧诲綍\033[m\r\n");
330                    ret = 1;
331                    goto cleanup;
332          }          }
333    
334          ret = load_user_info(db, BBS_uid);          ret = load_user_info(db, BBS_uid);
# Line 294  int check_user(MYSQL *db, char *username Line 338  int check_user(MYSQL *db, char *username
338          case 0: // Login successfully          case 0: // Login successfully
339                  break;                  break;
340          case -1: // Load data error          case -1: // Load data error
341                  prints("\033[1;31m读取用户数据错误...\033[m\r\n");                  prints("\033[1;31m璇诲彇鐢ㄦ埛鏁版嵁閿欒...\033[m\r\n");
342                  return -1;                  ret = -1;
343          case -2: // Unused                  goto cleanup;
344                  prints("\033[1;31m请通过Web登录更新用户许可协议...\033[m\r\n");          case -2: // Enforce update user agreement
345                  return 1;                  ret = 2;
346                    goto cleanup;
347          case -3: // Dead          case -3: // Dead
348                  prints("\033[1;31m很遗憾,您已经永远离开了我们的世界!\033[m\r\n");                  prints("\033[1;31m寰堥仐鎲撅紝鎮ㄥ凡缁忔案杩滅寮浜嗘垜浠殑涓栫晫锛乗033[m\r\n");
349                  return 1;                  ret = 1;
350                    goto cleanup;
351          default:          default:
352                  return -2;                  ret = -2;
353                    goto cleanup;
354          }          }
355    
356          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
357                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
358                           "last_login_dt = NOW() WHERE UID = %ld",                           "last_login_dt = NOW() WHERE UID = %d",
359                           BBS_uid);                           BBS_uid);
360          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
361          {          {
362                  log_error("Update user_pubinfo error: %s\n", mysql_error(db));                  log_error("Update user_pubinfo error: %s\n", mysql_error(db));
363                  return -1;                  ret = -1;
364                    goto cleanup;
365          }          }
366    
367          if (user_online_add(db) != 0)          if (user_online_add(db) != 0)
368          {          {
369                  return -1;                  ret = -1;
370                    goto cleanup;
371          }          }
372    
373          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(NULL);
374    
375          // Set user tz to process env          // Set user tz to process env
376          if (BBS_user_tz[0] != '\0')          if (BBS_user_tz[0] != '\0')
# Line 339  int check_user(MYSQL *db, char *username Line 388  int check_user(MYSQL *db, char *username
388                  tzset();                  tzset();
389          }          }
390    
391          return 0;  cleanup:
392            mysql_free_result(rs);
393            mysql_close(db);
394    
395            return ret;
396  }  }
397    
398  int load_user_info(MYSQL *db, long int BBS_uid)  int load_user_info(MYSQL *db, int BBS_uid)
399  {  {
400          MYSQL_RES *rs;          MYSQL_RES *rs = NULL;
401          MYSQL_ROW row;          MYSQL_ROW row;
402          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
403          int life;          int life;
404          time_t last_login_dt;          time_t last_login_dt;
405            int ret = 0;
406    
407          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
408                           "SELECT life, UNIX_TIMESTAMP(last_login_dt), user_timezone "                           "SELECT life, UNIX_TIMESTAMP(last_login_dt), user_timezone, exp, nickname "
409                           "FROM user_pubinfo WHERE UID = %ld",                           "FROM user_pubinfo WHERE UID = %d",
410                           BBS_uid);                           BBS_uid);
411          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
412          {          {
413                  log_error("Query user_pubinfo error: %s\n", mysql_error(db));                  log_error("Query user_pubinfo error: %s\n", mysql_error(db));
414                  return -1;                  ret = -1;
415                    goto cleanup;
416          }          }
417          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
418          {          {
419                  log_error("Get user_pubinfo data failed\n");                  log_error("Get user_pubinfo data failed\n");
420                  return -1;                  ret = -1;
421                    goto cleanup;
422          }          }
423          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
424          {          {
# Line 371  int load_user_info(MYSQL *db, long int B Line 427  int load_user_info(MYSQL *db, long int B
427    
428                  strncpy(BBS_user_tz, row[2], sizeof(BBS_user_tz) - 1);                  strncpy(BBS_user_tz, row[2], sizeof(BBS_user_tz) - 1);
429                  BBS_user_tz[sizeof(BBS_user_tz) - 1] = '\0';                  BBS_user_tz[sizeof(BBS_user_tz) - 1] = '\0';
430    
431                    BBS_user_exp = atoi(row[3]);
432    
433                    strncpy(BBS_nickname, row[4], sizeof(BBS_nickname));
434                    BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
435          }          }
436          else          else
437          {          {
438                  mysql_free_result(rs);                  ret = -1; // Data not found
439                  return -1; // Data not found                  goto cleanup;
440          }          }
441          mysql_free_result(rs);          mysql_free_result(rs);
442            rs = NULL;
443    
444          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal          if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal
445                  time(0) - last_login_dt > 60 * 60 * 24 * life)                  time(NULL) - last_login_dt > 60 * 60 * 24 * life)
446          {          {
447                  return -3; // Dead                  ret = -3; // Dead
448                    goto cleanup;
449          }          }
450    
451          if (load_priv(db, &BBS_priv, BBS_uid) != 0)          if (load_priv(db, &BBS_priv, BBS_uid) != 0)
452          {          {
453                  return -1;                  ret = -1; // Data not found
454                    goto cleanup;
455          }          }
456    
457          return 0;          if (last_login_dt < BBS_eula_tm)
458            {
459                    ret = -2; // require update agreement first
460                    goto cleanup;
461            }
462    
463    cleanup:
464            mysql_free_result(rs);
465    
466            return ret;
467  }  }
468    
469  int load_guest_info(MYSQL *db)  int load_guest_info(void)
470  {  {
471            MYSQL *db = NULL;
472            int ret = 0;
473    
474            db = db_open();
475            if (db == NULL)
476            {
477                    ret = -1;
478                    goto cleanup;
479            }
480    
481          strncpy(BBS_username, "guest", sizeof(BBS_username) - 1);          strncpy(BBS_username, "guest", sizeof(BBS_username) - 1);
482          BBS_username[sizeof(BBS_username) - 1] = '\0';          BBS_username[sizeof(BBS_username) - 1] = '\0';
483    
484            BBS_user_exp = 0;
485    
486            strncpy(BBS_nickname, "Guest", sizeof(BBS_nickname));
487            BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
488    
489          if (load_priv(db, &BBS_priv, 0) != 0)          if (load_priv(db, &BBS_priv, 0) != 0)
490          {          {
491                  return -1;                  ret = -1;
492                    goto cleanup;
493          }          }
494    
495          if (user_online_add(db) != 0)          if (user_online_add(db) != 0)
496          {          {
497                  return -1;                  ret = -1;
498                    goto cleanup;
499          }          }
500    
501          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_last_access_tm = BBS_login_tm = time(NULL);
502    
503          return 0;  cleanup:
504            mysql_close(db);
505    
506            return ret;
507  }  }
508    
509  int user_online_add(MYSQL *db)  int user_online_add(MYSQL *db)
510  {  {
511          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
512    
513          if (user_online_del(db) != 0)          snprintf(sql, sizeof(sql),
514                             "INSERT INTO visit_log(dt, IP) VALUES(NOW(), '%s')",
515                             hostaddr_client);
516            if (mysql_query(db, sql) != 0)
517          {          {
518                    log_error("Add visit log error: %s\n", mysql_error(db));
519                  return -1;                  return -1;
520          }          }
521    
522            if (user_online_del(db) != 0)
523            {
524                    return -2;
525            }
526    
527          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
528                           "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "                           "INSERT INTO user_online(SID, UID, ip, current_action, login_tm, last_tm) "
529                           "VALUES('Telnet_Process_%d', %ld, '%s', NOW(), NOW())",                           "VALUES('Telnet_Process_%d', %d, '%s', 'LOGIN', NOW(), NOW())",
530                           getpid(), BBS_priv.uid, hostaddr_client);                           getpid(), BBS_priv.uid, hostaddr_client);
531          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
532          {          {
533                  log_error("Add user_online error: %s\n", mysql_error(db));                  log_error("Add user_online error: %s\n", mysql_error(db));
534                  return -1;                  return -3;
535          }          }
536    
537          return 0;          return 0;
# Line 450  int user_online_del(MYSQL *db) Line 552  int user_online_del(MYSQL *db)
552    
553          return 0;          return 0;
554  }  }
555    
556    int user_online_exp(MYSQL *db)
557    {
558            char sql[SQL_BUFFER_LEN];
559    
560            // +1 exp for every 5 minutes online since last logout
561            // but at most 24 hours worth of exp can be gained in Telnet session
562            snprintf(sql, sizeof(sql),
563                             "UPDATE user_pubinfo SET exp = exp + FLOOR(LEAST(TIMESTAMPDIFF("
564                             "SECOND, GREATEST(last_login_dt, IF(last_logout_dt IS NULL, last_login_dt, last_logout_dt)), NOW()"
565                             ") / 60 / 5, 12 * 24)), last_logout_dt = NOW() "
566                             "WHERE UID = %d",
567                             BBS_priv.uid);
568            if (mysql_query(db, sql) != 0)
569            {
570                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
571                    return -1;
572            }
573    
574            return 0;
575    }
576    
577    int user_online_update(const char *action)
578    {
579            MYSQL *db = NULL;
580            char sql[SQL_BUFFER_LEN];
581    
582            if ((action == NULL || strcmp(BBS_current_action, action) == 0) &&
583                    time(NULL) - BBS_current_action_tm < BBS_current_action_refresh_interval) // No change
584            {
585                    return 0;
586            }
587    
588            if (action != NULL)
589            {
590                    strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);
591                    BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';
592            }
593    
594            BBS_current_action_tm = time(NULL);
595    
596            db = db_open();
597            if (db == NULL)
598            {
599                    log_error("db_open() error: %s\n", mysql_error(db));
600                    return -1;
601            }
602    
603            snprintf(sql, sizeof(sql),
604                             "UPDATE user_online SET current_action = '%s', last_tm = NOW() "
605                             "WHERE SID = 'Telnet_Process_%d'",
606                             BBS_current_action, getpid());
607            if (mysql_query(db, sql) != 0)
608            {
609                    log_error("Update user_online error: %s\n", mysql_error(db));
610                    return -2;
611            }
612    
613            mysql_close(db);
614    
615            return 1;
616    }
617    
618    int user_update_agreement(void)
619    {
620            MYSQL *db = NULL;
621            char sql[SQL_BUFFER_LEN];
622            int ch;
623            int ret = 0;
624    
625            clearscr();
626            moveto(2, 1);
627            prints("灏婃暚鐨勭敤鎴凤細");
628            moveto(3, 1);
629            prints("    鏈珯鐨勩婄敤鎴疯鍙崗璁嬪凡鏇存柊锛屾偍蹇呴』鍦ㄤ粩缁嗛槄璇诲苟鎺ュ彈鍚庯紝鎵嶈兘缁х画浣跨敤鏈珯鎻愪緵鐨勬湇鍔°");
630            press_any_key();
631    
632            clearscr();
633            display_file(DATA_EULA, 1);
634    
635            while (!SYS_server_exit)
636            {
637                    clearscr();
638                    moveto(2, 1);
639    
640                    ch = press_any_key_ex("鎮ㄦ槸鍚︽帴鍙楁湰绔欑殑銆婄敤鎴疯鍙崗璁? (A)鎺ュ彈, (D)鎷掔粷, (R)鍐嶇湅鐪嬪崗璁 [D]", 60);
641                    switch (toupper(ch))
642                    {
643                    case KEY_NULL:
644                            return -1;
645                    case KEY_TIMEOUT:
646                    case CR:
647                    case 'D':
648                            moveto(3, 1);
649                            prints("鎮ㄥ凡鎷掔粷銆婄敤鎴疯鍙崗璁嬶紝鍐嶈锛");
650                            press_any_key();
651                            return 0;
652                    case 'R':
653                            clearscr();
654                            display_file(DATA_EULA, 1);
655                            continue;
656                    case 'A':
657                            db = db_open();
658                            if (db == NULL)
659                            {
660                                    ret = -1;
661                                    goto cleanup;
662                            }
663    
664                            snprintf(sql, sizeof(sql),
665                                             "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
666                                             "last_login_dt = NOW() WHERE UID = %d",
667                                             BBS_priv.uid);
668                            if (mysql_query(db, sql) != 0)
669                            {
670                                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
671                                    ret = -1;
672                                    goto cleanup;
673                            }
674    
675                            mysql_close(db);
676                            db = NULL;
677    
678                            moveto(3, 1);
679                            prints("鎮ㄥ凡鎺ュ彈銆婄敤鎴疯鍙崗璁嬶紝璇烽噸鏂扮櫥闄嗐");
680                            press_any_key();
681                            return 1;
682                    default:
683                            continue;
684                    }
685    
686                    break;
687            }
688    
689    cleanup:
690            mysql_close(db);
691    
692            return ret;
693    }


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

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