/[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.12 by sysadm, Mon Apr 28 04:23:38 2025 UTC Revision 1.73 by sysadm, Tue Dec 2 08:04:29 2025 UTC
# Line 1  Line 1 
1  /***************************************************************************  /* SPDX-License-Identifier: GPL-3.0-or-later */
2                                                    login.c  -  description  /*
3                                                           -------------------   * login
4          begin                : Mon Oct 20 2004   *   - user authentication and online status manager
5          copyright            : (C) 2004 by Leaflet   *
6          email                : leaflet@leafok.com   * Copyright (C) 2004-2025  Leaflet <leaflet@leafok.com>
7   ***************************************************************************/   */
8    
9  /***************************************************************************  #ifdef HAVE_CONFIG_H
10   *                                                                         *  #include "config.h"
11   *   This program is free software; you can redistribute it and/or modify  *  #endif
  *   it under the terms of the GNU General Public License as published by  *  
  *   the Free Software Foundation; either version 2 of the License, or     *  
  *   (at your option) any later version.                                   *  
  *                                                                         *  
  ***************************************************************************/  
12    
13  #include "bbs.h"  #include "bbs.h"
14  #include "common.h"  #include "common.h"
 #include "io.h"  
15  #include "database.h"  #include "database.h"
16  #include <mysql.h>  #include "io.h"
17    #include "ip_mask.h"
18    #include "log.h"
19    #include "login.h"
20    #include "screen.h"
21    #include "user_priv.h"
22    #include <ctype.h>
23    #include <errno.h>
24    #include <stdlib.h>
25    #include <string.h>
26  #include <regex.h>  #include <regex.h>
27    #include <unistd.h>
28    #include <mysql.h>
29    #include <sys/param.h>
30    
31  void login_fail()  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
         char temp[256];  
33    
34          strcpy(temp, app_home_dir);  static const int BBS_allowed_login_failures_within_interval = 10;
35          strcat(temp, "data/login_error.txt");  static const int BBS_login_failures_count_interval = 10; // minutes
36          display_file(temp);  static const int BBS_allowed_login_failures_per_account = 3;
37    
38          sleep(1);  const int BBS_login_retry_times = 3;
 }  
39    
40  int bbs_login()  int bbs_login(void)
41  {  {
42          char username[20], password[20];          char username[BBS_username_max_len + 1];
43          int count, ok;          char password[BBS_password_max_len + 1];
44            int i = 0;
45            int ok = 0;
46    
47          // Input username          for (; !SYS_server_exit && !ok && i < BBS_login_retry_times; i++)
         count = 0;  
         ok = 0;  
         while (!ok)  
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                  str_input(username, 19, DOECHO);                  if (str_input(username, sizeof(username), DOECHO) < 0)
54                  count++;                  {
55                            continue;
56                    }
57    
58                  if (strcmp(username, "guest") == 0)                  if (strcmp(username, "guest") == 0)
59                  {                  {
60                          load_guest_info();                          load_guest_info();
61    
62                          return 0;                          return 0;
63                  }                  }
64    
65                  if (strcmp(username, "new") == 0)                  if (strcmp(username, "new") == 0)
66                  {                  {
67                          if (user_register() == 0)                          display_file(DATA_REGISTER, 1);
68                                  return 0;  
69                          else                          return -1;
                                 return -2;  
70                  }                  }
71    
72                  if (strlen(username) > 0)                  if (username[0] != '\0')
73                  {                  {
74                          // Input password                          prints("\033[1;37m璇疯緭鍏ュ瘑鐮乗033[m: ");
                         prints("\033[1;37m请输入密码\033[m: ");  
75                          iflush();                          iflush();
76    
77                          str_input(password, 19, NOECHO);                          if (str_input(password, sizeof(password), NOECHO) < 0)
78                            {
79                                    continue;
80                            }
81    
82                          ok = (check_user(username, password) == 0);                          ok = (check_user(username, password) == 0);
83                            iflush();
84                  }                  }
85                  if (count >= 3 && !ok)          }
86                  {  
87                          login_fail();          if (!ok)
88                          return -1;          {
89                  }                  display_file(DATA_LOGIN_ERROR, 1);
90                    return -1;
91          }          }
92    
93          return 0;          return 0;
94  }  }
95    
96  int check_user(char *username, char *password)  int check_user(const char *username, const char *password)
97  {  {
98          MYSQL *db;          MYSQL *db = NULL;
99          MYSQL_RES *rs;          MYSQL_RES *rs = NULL;
100          MYSQL_ROW row;          MYSQL_ROW row;
101          char sql[1024];          char sql[SQL_BUFFER_LEN];
102          long int BBS_uid;          int ret = 0;
103          int ret;          int BBS_uid = 0;
104            char client_addr[IP_ADDR_LEN];
105            int i;
106            int ok = 1;
107            char user_tz_env[BBS_user_tz_max_len + 2];
108    
109            db = db_open();
110            if (db == NULL)
111            {
112                    ret = -1;
113                    goto cleanup;
114            }
115    
116          // Verify format          // Verify format
117          if (ireg("^[A-Za-z0-9_]{3,14}$", username, 0, NULL) != 0 ||          for (i = 0; ok && username[i] != '\0'; i++)
                 ireg("^[A-Za-z0-9]{5,12}$", password, 0, NULL) != 0)  
118          {          {
119                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");                  if (!(isalpha((int)username[i]) || (i > 0 && (isdigit((int)username[i]) || username[i] == '_'))))
120                  iflush();                  {
121                  return 1;                          ok = 0;
122                    }
123            }
124            if (ok && (i < BBS_username_min_len || i > BBS_username_max_len))
125            {
126                    ok = 0;
127            }
128            for (i = 0; ok && password[i] != '\0'; i++)
129            {
130                    if (!isalnum((int)password[i]))
131                    {
132                            ok = 0;
133                    }
134            }
135            if (ok && (i < BBS_password_min_len || i > BBS_password_max_len))
136            {
137                    ok = 0;
138          }          }
139    
140          db = (MYSQL *)db_open();          if (!ok)
         if (db == NULL)  
141          {          {
142                  return -1;                  prints("\033[1;31m鐢ㄦ埛鍚嶆垨瀵嗙爜鏍煎紡閿欒...\033[m\r\n");
143                    ret = 1;
144                    goto cleanup;
145          }          }
146    
147          sprintf(sql,          // Begin transaction
148                          "select UID,username,p_login from user_list where username='%s' "          if (mysql_query(db, "SET autocommit=0") != 0)
149                          "and (password=MD5('%s') or password=SHA2('%s', 256)) and "          {
150                          "enable",                  log_error("SET autocommit=0 error: %s\n", mysql_error(db));
151                          username, password, password);                  ret = -1;
152                    goto cleanup;
153            }
154    
155            if (mysql_query(db, "BEGIN") != 0)
156            {
157                    log_error("Begin transaction error: %s\n", mysql_error(db));
158                    ret = -1;
159                    goto cleanup;
160            }
161    
162            // Failed login attempts from the same source (subnet /24) during certain time period
163            strncpy(client_addr, hostaddr_client, sizeof(client_addr) - 1);
164            client_addr[sizeof(client_addr) - 1] = '\0';
165    
166            snprintf(sql, sizeof(sql),
167                             "SELECT COUNT(*) AS err_count FROM user_err_login_log "
168                             "WHERE login_dt >= SUBDATE(NOW(), INTERVAL %d MINUTE) "
169                             "AND login_ip LIKE '%s'",
170                             BBS_login_failures_count_interval,
171                             ip_mask(client_addr, 1, '%'));
172          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
173          {          {
174                  log_error("Query user_list failed\n");                  log_error("Query user_list error: %s\n", mysql_error(db));
175                  return -1;                  ret = -1;
176                    goto cleanup;
177          }          }
178          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
179          {          {
180                  log_error("Get user_list data failed\n");                  log_error("Get user_list data failed\n");
181                  return -1;                  ret = -1;
182                    goto cleanup;
183          }          }
184          if (row = mysql_fetch_row(rs))          if ((row = mysql_fetch_row(rs)))
185          {          {
186                  BBS_uid = atol(row[0]);                  if (atoi(row[0]) >= BBS_allowed_login_failures_within_interval)
                 strcpy(BBS_username, row[1]);  
                 if (atoi(row[2]) == 0)  
187                  {                  {
188                          mysql_free_result(rs);                          prints("\033[1;31m鏉ユ簮瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃绋嶅悗鍐嶈瘯锛屾垨浣跨敤Web鏂瑰紡璁块棶\033[m\r\n");
189                          mysql_close(db);                          ret = 1;
190                            goto cleanup;
191                    }
192            }
193            mysql_free_result(rs);
194            rs = NULL;
195    
196                          prints("\033[1;31m您目前无权登陆...\033[m\r\n");          // Failed login attempts against the current username since last successful login
197                          iflush();          snprintf(sql, sizeof(sql),
198                          return 1;                           "SELECT COUNT(*) AS err_count FROM user_err_login_log "
199                             "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);
205            if (mysql_query(db, sql) != 0)
206            {
207                    log_error("Query user_list error: %s\n", mysql_error(db));
208                    ret = -1;
209                    goto cleanup;
210            }
211            if ((rs = mysql_store_result(db)) == NULL)
212            {
213                    log_error("Get user_list data failed\n");
214                    ret = -1;
215                    goto cleanup;
216            }
217            if ((row = mysql_fetch_row(rs)))
218            {
219                    if (atoi(row[0]) >= BBS_allowed_login_failures_per_account)
220                    {
221                            prints("\033[1;31m璐︽埛瀛樺湪澶氭澶辫触鐧婚檰灏濊瘯锛岃浣跨敤Web鏂瑰紡鐧诲綍瑙i攣\033[m\r\n");
222                            ret = 1;
223                            goto cleanup;
224                    }
225            }
226            mysql_free_result(rs);
227            rs = NULL;
228    
229            snprintf(sql, sizeof(sql),
230                             "SELECT UID, username, p_login FROM user_list "
231                             "WHERE username = '%s' AND password = SHA2('%s', 256) AND enable",
232                             username, password);
233            if (mysql_query(db, sql) != 0)
234            {
235                    log_error("Query user_list error: %s\n", mysql_error(db));
236                    ret = -1;
237                    goto cleanup;
238            }
239            if ((rs = mysql_store_result(db)) == NULL)
240            {
241                    log_error("Get user_list data failed\n");
242                    ret = -1;
243                    goto cleanup;
244            }
245            if ((row = mysql_fetch_row(rs)))
246            {
247                    BBS_uid = atoi(row[0]);
248                    strncpy(BBS_username, row[1], sizeof(BBS_username) - 1);
249                    BBS_username[sizeof(BBS_username) - 1] = '\0';
250                    int p_login = atoi(row[2]);
251    
252                    mysql_free_result(rs);
253                    rs = NULL;
254    
255                    // Add user login log
256                    snprintf(sql, sizeof(sql),
257                                     "INSERT INTO user_login_log(UID, login_dt, login_ip) "
258                                     "VALUES(%d, NOW(), '%s')",
259                                     BBS_uid, hostaddr_client);
260                    if (mysql_query(db, sql) != 0)
261                    {
262                            log_error("Insert into user_login_log error: %s\n", mysql_error(db));
263                            ret = -1;
264                            goto cleanup;
265                    }
266    
267                    // Commit transaction
268                    if (mysql_query(db, "COMMIT") != 0)
269                    {
270                            log_error("Commit transaction error: %s\n", mysql_error(db));
271                            ret = -1;
272                            goto cleanup;
273                    }
274    
275                    if (p_login == 0)
276                    {
277                            prints("\033[1;31m鎮ㄧ洰鍓嶆棤鏉冪櫥闄...\033[m\r\n");
278                            ret = 1;
279                            goto cleanup;
280                  }                  }
281          }          }
282          else          else
283          {          {
284                  mysql_free_result(rs);                  mysql_free_result(rs);
285                    rs = NULL;
286    
287                  sprintf(sql,                  snprintf(sql, sizeof(sql),
288                                  "insert into user_err_login_log"                                   "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "
289                                  "(username,password,login_dt,login_ip) values"                                   "VALUES('%s', '%s', NOW(), '%s')",
290                                  "('%s','%s',now(),'%s')",                                   username, password, hostaddr_client);
                                 username, password, hostaddr_client);  
291                  if (mysql_query(db, sql) != 0)                  if (mysql_query(db, sql) != 0)
292                  {                  {
293                          log_error("Insert into user_err_login_log failed\n");                          log_error("Insert into user_err_login_log error: %s\n", mysql_error(db));
294                          return -1;                          ret = -1;
295                            goto cleanup;
296                  }                  }
297    
298                  mysql_close(db);                  // Commit transaction
299                    if (mysql_query(db, "COMMIT") != 0)
300                    {
301                            log_error("Commit transaction error: %s\n", mysql_error(db));
302                            ret = -1;
303                            goto cleanup;
304                    }
305    
306                  prints("\033[1;31m错误的用户名或密码...\033[m\r\n");                  prints("\033[1;31m閿欒鐨勭敤鎴峰悕鎴栧瘑鐮...\033[m\r\n");
307                  iflush();                  ret = 1;
308                  return 1;                  goto cleanup;
309            }
310    
311            // Set AUTOCOMMIT = 1
312            if (mysql_query(db, "SET autocommit=1") != 0)
313            {
314                    log_error("SET autocommit=1 error: %s\n", mysql_error(db));
315                    ret = -1;
316                    goto cleanup;
317          }          }
         mysql_free_result(rs);  
318    
319          ret = load_user_info(db, BBS_uid);          ret = load_user_info(db, BBS_uid);
320    
321          switch (ret)          switch (ret)
322          {          {
323          case 0: // Login successfully          case 0: // Login successfully
                 return 0;  
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                  iflush();                  ret = -1;
328                  return -1;                  goto cleanup;
                 break;  
329          case -2: // Unused          case -2: // Unused
330                  return 0;                  prints("\033[1;31m璇烽氳繃Web鐧诲綍鏇存柊鐢ㄦ埛璁稿彲鍗忚...\033[m\r\n");
331                  break;                  ret = 1;
332                    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                  iflush();                  ret = 1;
336                  return 1;                  goto cleanup;
337          default:          default:
338                  return -2;                  ret = -2;
339                    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),
350                             "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
351                             "last_login_dt = NOW() WHERE UID = %d",
352                             BBS_uid);
353            if (mysql_query(db, sql) != 0)
354            {
355                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
356                    ret = -1;
357                    goto cleanup;
358            }
359    
360            if (user_online_add(db) != 0)
361            {
362                    ret = -1;
363                    goto cleanup;
364          }          }
365    
366            BBS_last_access_tm = BBS_login_tm = time(NULL);
367    
368            // Set user tz to process env
369            if (BBS_user_tz[0] != '\0')
370            {
371                    user_tz_env[0] = ':';
372                    strncpy(user_tz_env + 1, BBS_user_tz, sizeof(user_tz_env) - 2);
373                    user_tz_env[sizeof(user_tz_env) - 1] = '\0';
374    
375                    if (setenv("TZ", user_tz_env, 1) == -1)
376                    {
377                            log_error("setenv(TZ = %s) error %d\n", user_tz_env, errno);
378                            return -3;
379                    }
380    
381                    tzset();
382            }
383    
384    cleanup:
385            mysql_free_result(rs);
386          mysql_close(db);          mysql_close(db);
387    
388          return 0;          return ret;
389  }  }
390    
391  int load_user_info(MYSQL *db, long int BBS_uid)  int load_user_info(MYSQL *db, int BBS_uid)
392  {  {
393          MYSQL_RES *rs;          MYSQL_RES *rs = NULL;
394          MYSQL_ROW row;          MYSQL_ROW row;
395          char sql[1024];          char sql[SQL_BUFFER_LEN];
         long int BBS_auth_uid = 0;  
396          int life;          int life;
397          time_t last_login_dt;          time_t last_login_dt;
398            int ret = 0;
399    
400          sprintf(sql,          snprintf(sql, sizeof(sql),
401                          "select life,UNIX_TIMESTAMP(last_login_dt) "                           "SELECT life, UNIX_TIMESTAMP(last_login_dt), user_timezone, exp, nickname "
402                          "from user_pubinfo where UID=%ld limit 1",                           "FROM user_pubinfo WHERE UID = %d",
403                          BBS_uid);                           BBS_uid);
404          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
405          {          {
406                  log_error("Query user_pubinfo failed\n");                  log_error("Query user_pubinfo error: %s\n", mysql_error(db));
407                  return -1;                  ret = -1;
408                    goto cleanup;
409          }          }
410          if ((rs = mysql_store_result(db)) == NULL)          if ((rs = mysql_store_result(db)) == NULL)
411          {          {
412                  log_error("Get user_pubinfo data failed\n");                  log_error("Get user_pubinfo data failed\n");
413                  return -1;                  ret = -1;
414                    goto cleanup;
415          }          }
416          if (row = mysql_fetch_row(rs))          if ((row = mysql_fetch_row(rs)))
417          {          {
418                  life = atoi(row[0]);                  life = atoi(row[0]);
419                  last_login_dt = (time_t)atol(row[1]);                  last_login_dt = (time_t)atol(row[1]);
420    
421                    strncpy(BBS_user_tz, row[2], sizeof(BBS_user_tz) - 1);
422                    BBS_user_tz[sizeof(BBS_user_tz) - 1] = '\0';
423    
424                    BBS_user_exp = atoi(row[3]);
425    
426                    strncpy(BBS_nickname, row[4], sizeof(BBS_nickname));
427                    BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
428          }          }
429          else          else
430          {          {
431                  mysql_free_result(rs);                  ret = -1; // Data not found
432                  return (-1); // Data not found                  goto cleanup;
433            }
434            mysql_free_result(rs);
435            rs = NULL;
436    
437            if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal
438                    time(NULL) - last_login_dt > 60 * 60 * 24 * life)
439            {
440                    ret = -3; // Dead
441                    goto cleanup;
442            }
443    
444            if (load_priv(db, &BBS_priv, BBS_uid) != 0)
445            {
446                    ret = -1;
447                    goto cleanup;
448            }
449    
450            if (last_login_dt < BBS_eula_tm)
451            {
452                    ret = -2; // require update agreement first
453                    goto cleanup;
454          }          }
455    
456    cleanup:
457          mysql_free_result(rs);          mysql_free_result(rs);
458    
459          if (time(0) - last_login_dt >= 60 * 60 * 24 * life)          return ret;
460    }
461    
462    int load_guest_info(void)
463    {
464            MYSQL *db = NULL;
465            int ret = 0;
466    
467            db = db_open();
468            if (db == NULL)
469          {          {
470                  return (-3); // Dead                  ret = -1;
471                    goto cleanup;
472          }          }
473    
474          sprintf(sql,          strncpy(BBS_username, "guest", sizeof(BBS_username) - 1);
475                          "insert into user_login_log"          BBS_username[sizeof(BBS_username) - 1] = '\0';
476                          "(uid,login_dt,login_ip) values(%ld"  
477                          ",now(),'%s')",          BBS_user_exp = 0;
478                          BBS_uid, hostaddr_client);  
479            strncpy(BBS_nickname, "Guest", sizeof(BBS_nickname));
480            BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
481    
482            if (load_priv(db, &BBS_priv, 0) != 0)
483            {
484                    ret = -1;
485                    goto cleanup;
486            }
487    
488            if (user_online_add(db) != 0)
489            {
490                    ret = -1;
491                    goto cleanup;
492            }
493    
494            BBS_last_access_tm = BBS_login_tm = time(NULL);
495    
496    cleanup:
497            mysql_close(db);
498    
499            return ret;
500    }
501    
502    int user_online_add(MYSQL *db)
503    {
504            char sql[SQL_BUFFER_LEN];
505    
506            snprintf(sql, sizeof(sql),
507                             "INSERT INTO visit_log(dt, IP) VALUES(NOW(), '%s')",
508                             hostaddr_client);
509          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
510          {          {
511                  log_error("Insert into user_login_log failed\n");                  log_error("Add visit log error: %s\n", mysql_error(db));
512                  return -1;                  return -1;
513          }          }
514    
515          load_priv(db, &BBS_priv, BBS_uid);          if (user_online_del(db) != 0)
516            {
517                    return -2;
518            }
519    
520            snprintf(sql, sizeof(sql),
521                             "INSERT INTO user_online(SID, UID, ip, current_action, login_tm, last_tm) "
522                             "VALUES('Telnet_Process_%d', %d, '%s', 'LOGIN', NOW(), NOW())",
523                             getpid(), BBS_priv.uid, hostaddr_client);
524            if (mysql_query(db, sql) != 0)
525            {
526                    log_error("Add user_online error: %s\n", mysql_error(db));
527                    return -3;
528            }
529    
530            return 0;
531    }
532    
533          BBS_last_access_tm = BBS_login_tm = time(0);  int user_online_del(MYSQL *db)
534          BBS_last_sub_tm = time(0) - 60;  {
535            char sql[SQL_BUFFER_LEN];
536    
537          sprintf(sql,          snprintf(sql, sizeof(sql),
538                          "update user_pubinfo set visit_count=visit_count+1,"                           "DELETE FROM user_online WHERE SID = 'Telnet_Process_%d'",
539                          "last_login_dt=now() where uid=%ld",                           getpid());
                         BBS_uid);  
540          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
541          {          {
542                  log_error("Update user_pubinfo failed\n");                  log_error("Delete user_online error: %s\n", mysql_error(db));
543                  return -1;                  return -1;
544          }          }
545    
546          return 0;          return 0;
547  }  }
548    
549  int load_guest_info(MYSQL *db, long int BBS_uid)  int user_online_exp(MYSQL *db)
550  {  {
551          MYSQL_RES *rs;          char sql[SQL_BUFFER_LEN];
         MYSQL_ROW row;  
552    
553          db = (MYSQL *)db_open();          // +1 exp for every 5 minutes online since last logout
554          if (db == NULL)          // but at most 24 hours worth of exp can be gained in Telnet session
555            snprintf(sql, sizeof(sql),
556                             "UPDATE user_pubinfo SET exp = exp + FLOOR(LEAST(TIMESTAMPDIFF("
557                             "SECOND, GREATEST(last_login_dt, IF(last_logout_dt IS NULL, last_login_dt, last_logout_dt)), NOW()"
558                             ") / 60 / 5, 12 * 24)), last_logout_dt = NOW() "
559                             "WHERE UID = %d",
560                             BBS_priv.uid);
561            if (mysql_query(db, sql) != 0)
562          {          {
563                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
564                  return -1;                  return -1;
565          }          }
566    
567          strcpy(BBS_username, "guest");          return 0;
568    }
569    
570    int user_online_update(const char *action)
571    {
572            MYSQL *db = NULL;
573            char sql[SQL_BUFFER_LEN];
574    
575            if ((action == NULL || strcmp(BBS_current_action, action) == 0) &&
576                    time(NULL) - BBS_current_action_tm < BBS_current_action_refresh_interval) // No change
577            {
578                    return 0;
579            }
580    
581          load_priv(db, &BBS_priv, 0, 0, S_NONE);          if (action != NULL)
582            {
583                    strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);
584                    BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';
585            }
586    
587          BBS_last_access_tm = BBS_login_tm = time(0);          BBS_current_action_tm = time(NULL);
588          BBS_last_sub_tm = time(0) - 60;  
589            db = db_open();
590            if (db == NULL)
591            {
592                    log_error("db_open() error: %s\n", mysql_error(db));
593                    return -1;
594            }
595    
596            snprintf(sql, sizeof(sql),
597                             "UPDATE user_online SET current_action = '%s', last_tm = NOW() "
598                             "WHERE SID = 'Telnet_Process_%d'",
599                             BBS_current_action, getpid());
600            if (mysql_query(db, sql) != 0)
601            {
602                    log_error("Update user_online error: %s\n", mysql_error(db));
603                    return -2;
604            }
605    
606          mysql_close(db);          mysql_close(db);
607    
608          return 0;          return 1;
609  }  }


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

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