/[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.7 by sysadm, Sat Mar 19 14:44:21 2005 UTC Revision 1.56 by sysadm, Thu Oct 16 04:38:59 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 "bbs.h"  #include "bbs.h"
18  #include "common.h"  #include "common.h"
 #include "io.h"  
19  #include "database.h"  #include "database.h"
20  #include <mysql.h>  #include "io.h"
21    #include "ip_mask.h"
22    #include "log.h"
23    #include "login.h"
24    #include "screen.h"
25    #include "user_priv.h"
26    #include <ctype.h>
27    #include <errno.h>
28    #include <stdlib.h>
29    #include <string.h>
30  #include <regex.h>  #include <regex.h>
31    #include <unistd.h>
32    #include <mysql/mysql.h>
33    #include <sys/param.h>
34    
35  void  int bbs_login(void)
 login_fail ()  
36  {  {
37    char temp[256];          char username[BBS_username_max_len + 1];
38            char password[BBS_password_max_len + 1];
39            int i = 0;
40            int ok = 0;
41    
42            for (; !SYS_server_exit && !ok && i < BBS_login_retry_times; i++)
43            {
44                    prints("\033[1;33m请输入帐号\033[m(试用请输入`\033[1;36mguest\033[m', "
45                               "注册请输入`\033[1;31mnew\033[m'): ");
46                    iflush();
47    
48                    if (str_input(username, sizeof(username), DOECHO) < 0)
49                    {
50                            continue;
51                    }
52    
53                    if (strcmp(username, "guest") == 0)
54                    {
55                            load_guest_info();
56    
57                            return 0;
58                    }
59    
60                    if (strcmp(username, "new") == 0)
61                    {
62                            display_file(DATA_REGISTER, 1);
63    
64                            return -1;
65                    }
66    
67                    if (username[0] != '\0')
68                    {
69                            prints("\033[1;37m请输入密码\033[m: ");
70                            iflush();
71    
72                            if (str_input(password, sizeof(password), NOECHO) < 0)
73                            {
74                                    continue;
75                            }
76    
77                            ok = (check_user(username, password) == 0);
78                            iflush();
79                    }
80            }
81    
82            if (!ok)
83            {
84                    display_file(DATA_LOGIN_ERROR, 1);
85                    return -1;
86            }
87    
88    strcpy (temp, app_home_dir);          log_common("User \"%s\"(%ld) login from %s:%d\n",
89    strcat (temp, "data/login_error.txt");                             BBS_username, BBS_priv.uid, hostaddr_client, port_client);
   display_file (temp);  
90    
91    sleep (1);          return 0;
92  }  }
93    
94  int  int check_user(const char *username, const char *password)
 bbs_login ()  
95  {  {
96    char username[20], password[20];          MYSQL *db = NULL;
97    int count, ok;          MYSQL_RES *rs = NULL;
98            MYSQL_ROW row;
99            char sql[SQL_BUFFER_LEN];
100            int ret = 0;
101            int BBS_uid = 0;
102            char client_addr[IP_ADDR_LEN];
103            int i;
104            int ok = 1;
105            char user_tz_env[BBS_user_tz_max_len + 2];
106    
107    //Input username          db = db_open();
108    count = 0;          if (db == NULL)
109    ok = 0;          {
110    while (!ok)                  ret = -1;
111      {                  goto cleanup;
112        prints          }
         ("\033[1;33mʺ\033[m( `\033[1;36mguest\033[m', "  
          "ע`\033[1;31mnew\033[m'): ");  
       iflush ();  
113    
114        str_input (username, 19, 0);          // Verify format
115        count++;          for (i = 0; ok && username[i] != '\0'; i++)
116            {
117                    if (!(isalpha(username[i]) || (i > 0 && isdigit(username[i]))))
118                    {
119                            ok = 0;
120                    }
121            }
122            if (ok && (i < 3 || i > 12))
123            {
124                    ok = 0;
125            }
126            for (i = 0; ok && password[i] != '\0'; i++)
127            {
128                    if (!isalnum(password[i]))
129                    {
130                            ok = 0;
131                    }
132            }
133            if (ok && (i < 5 || i > 12))
134            {
135                    ok = 0;
136            }
137    
138        if (strcmp (username, "guest") == 0)          if (!ok)
139          {          {
140            load_guest_info ();                  prints("\033[1;31m用户名或密码格式错误...\033[m\r\n");
141            return 0;                  ret = 1;
142                    goto cleanup;
143          }          }
144    
145        if (strcmp (username, "new") == 0)          // Begin transaction
146            if (mysql_query(db, "SET autocommit=0") != 0)
147          {          {
148            if (user_register () == 0)                  log_error("SET autocommit=0 error: %s\n", mysql_error(db));
149              return 0;                  ret = -1;
150            else                  goto cleanup;
            return -2;  
151          }          }
152    
153        if (strlen (username) > 0)          if (mysql_query(db, "BEGIN") != 0)
154          {          {
155            //Input password                  log_error("Begin transaction error: %s\n", mysql_error(db));
156            prints ("\033[1;37m\033[m: ");                  ret = -1;
157            iflush ();                  goto cleanup;
158            }
159    
160            str_input (password, 19, 1);          // Failed login attempts from the same source (subnet /24) during certain time period
161            strncpy(client_addr, hostaddr_client, sizeof(client_addr) - 1);
162            client_addr[sizeof(client_addr) - 1] = '\0';
163    
164            snprintf(sql, sizeof(sql),
165                             "SELECT COUNT(*) AS err_count FROM user_err_login_log "
166                             "WHERE login_dt >= SUBDATE(NOW(), INTERVAL %d MINUTE) "
167                             "AND login_ip LIKE '%s'",
168                             BBS_login_failures_count_interval,
169                             ip_mask(client_addr, 1, '%'));
170            if (mysql_query(db, sql) != 0)
171            {
172                    log_error("Query user_list error: %s\n", mysql_error(db));
173                    ret = -1;
174                    goto cleanup;
175            }
176            if ((rs = mysql_store_result(db)) == NULL)
177            {
178                    log_error("Get user_list data failed\n");
179                    ret = -1;
180                    goto cleanup;
181            }
182            if ((row = mysql_fetch_row(rs)))
183            {
184                    if (atoi(row[0]) >= BBS_allowed_login_failures_within_interval)
185                    {
186                            prints("\033[1;31m来源存在多次失败登陆尝试,请稍后再试,或使用Web方式访问\033[m\r\n");
187                            ret = 1;
188                            goto cleanup;
189                    }
190            }
191            mysql_free_result(rs);
192            rs = NULL;
193    
194            ok = (check_user (username, password) == 0);          // Failed login attempts against the current username since last successful login
195            snprintf(sql, sizeof(sql),
196                             "SELECT COUNT(*) AS err_count FROM user_err_login_log "
197                             "LEFT JOIN user_list ON user_err_login_log.username = user_list.username "
198                             "LEFT JOIN user_pubinfo ON user_list.UID = user_pubinfo.UID "
199                             "WHERE user_err_login_log.username = '%s' "
200                             "AND (user_err_login_log.login_dt >= user_pubinfo.last_login_dt "
201                             "OR user_pubinfo.last_login_dt IS NULL)",
202                             username);
203            if (mysql_query(db, sql) != 0)
204            {
205                    log_error("Query user_list error: %s\n", mysql_error(db));
206                    ret = -1;
207                    goto cleanup;
208          }          }
209        if (count >= 3 && !ok)          if ((rs = mysql_store_result(db)) == NULL)
210          {          {
211            login_fail ();                  log_error("Get user_list data failed\n");
212            return -1;                  ret = -1;
213                    goto cleanup;
214          }          }
215      }          if ((row = mysql_fetch_row(rs)))
216            {
217                    if (atoi(row[0]) >= BBS_allowed_login_failures_per_account)
218                    {
219                            prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录解锁\033[m\r\n");
220                            ret = 1;
221                            goto cleanup;
222                    }
223            }
224            mysql_free_result(rs);
225            rs = NULL;
226    
227    return 0;          snprintf(sql, sizeof(sql),
228                             "SELECT UID, username, p_login FROM user_list "
229                             "WHERE username = '%s' AND password = SHA2('%s', 256) AND enable",
230                             username, password);
231            if (mysql_query(db, sql) != 0)
232            {
233                    log_error("Query user_list error: %s\n", mysql_error(db));
234                    ret = -1;
235                    goto cleanup;
236            }
237            if ((rs = mysql_store_result(db)) == NULL)
238            {
239                    log_error("Get user_list data failed\n");
240                    ret = -1;
241                    goto cleanup;
242            }
243            if ((row = mysql_fetch_row(rs)))
244            {
245                    BBS_uid = atoi(row[0]);
246                    strncpy(BBS_username, row[1], sizeof(BBS_username) - 1);
247                    BBS_username[sizeof(BBS_username) - 1] = '\0';
248                    int p_login = atoi(row[2]);
249    
250                    mysql_free_result(rs);
251                    rs = NULL;
252    
253                    // Add user login log
254                    snprintf(sql, sizeof(sql),
255                                     "INSERT INTO user_login_log(UID, login_dt, login_ip) "
256                                     "VALUES(%d, NOW(), '%s')",
257                                     BBS_uid, hostaddr_client);
258                    if (mysql_query(db, sql) != 0)
259                    {
260                            log_error("Insert into user_login_log error: %s\n", mysql_error(db));
261                            ret = -1;
262                            goto cleanup;
263                    }
264    
265                    // Commit transaction
266                    if (mysql_query(db, "COMMIT") != 0)
267                    {
268                            log_error("Commit transaction error: %s\n", mysql_error(db));
269                            ret = -1;
270                            goto cleanup;
271                    }
272    
273                    if (p_login == 0)
274                    {
275                            prints("\033[1;31m您目前无权登陆...\033[m\r\n");
276                            ret = 1;
277                            goto cleanup;
278                    }
279            }
280            else
281            {
282                    mysql_free_result(rs);
283                    rs = NULL;
284    
285                    snprintf(sql, sizeof(sql),
286                                     "INSERT INTO user_err_login_log(username, password, login_dt, login_ip) "
287                                     "VALUES('%s', '%s', NOW(), '%s')",
288                                     username, password, hostaddr_client);
289                    if (mysql_query(db, sql) != 0)
290                    {
291                            log_error("Insert into user_err_login_log error: %s\n", mysql_error(db));
292                            ret = -1;
293                            goto cleanup;
294                    }
295    
296                    // Commit transaction
297                    if (mysql_query(db, "COMMIT") != 0)
298                    {
299                            log_error("Commit transaction error: %s\n", mysql_error(db));
300                            ret = -1;
301                            goto cleanup;
302                    }
303    
304                    prints("\033[1;31m错误的用户名或密码...\033[m\r\n");
305                    ret = 1;
306                    goto cleanup;
307            }
308    
309            // Set AUTOCOMMIT = 1
310            if (mysql_query(db, "SET autocommit=1") != 0)
311            {
312                    log_error("SET autocommit=1 error: %s\n", mysql_error(db));
313                    ret = -1;
314                    goto cleanup;
315            }
316    
317            ret = load_user_info(db, BBS_uid);
318    
319            switch (ret)
320            {
321            case 0: // Login successfully
322                    break;
323            case -1: // Load data error
324                    prints("\033[1;31m读取用户数据错误...\033[m\r\n");
325                    ret = -1;
326                    goto cleanup;
327            case -2: // Unused
328                    prints("\033[1;31m请通过Web登录更新用户许可协议...\033[m\r\n");
329                    ret = 1;
330                    goto cleanup;
331            case -3: // Dead
332                    prints("\033[1;31m很遗憾,您已经永远离开了我们的世界!\033[m\r\n");
333                    ret = 1;
334                    goto cleanup;
335            default:
336                    ret = -2;
337                    goto cleanup;
338            }
339    
340            snprintf(sql, sizeof(sql),
341                             "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
342                             "last_login_dt = NOW() WHERE UID = %d",
343                             BBS_uid);
344            if (mysql_query(db, sql) != 0)
345            {
346                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
347                    ret = -1;
348                    goto cleanup;
349            }
350    
351            if (user_online_add(db) != 0)
352            {
353                    ret = -1;
354                    goto cleanup;
355            }
356    
357            BBS_last_access_tm = BBS_login_tm = time(NULL);
358    
359            // Set user tz to process env
360            if (BBS_user_tz[0] != '\0')
361            {
362                    user_tz_env[0] = ':';
363                    strncpy(user_tz_env + 1, BBS_user_tz, sizeof(user_tz_env) - 2);
364                    user_tz_env[sizeof(user_tz_env) - 1] = '\0';
365    
366                    if (setenv("TZ", user_tz_env, 1) == -1)
367                    {
368                            log_error("setenv(TZ = %s) error %d\n", user_tz_env, errno);
369                            return -3;
370                    }
371    
372                    tzset();
373            }
374    
375    cleanup:
376            mysql_free_result(rs);
377            mysql_close(db);
378    
379            return ret;
380  }  }
381    
382  int  int load_user_info(MYSQL *db, int BBS_uid)
 check_user (char *username, char *password)  
383  {  {
384    MYSQL *db;          MYSQL_RES *rs = NULL;
385    MYSQL_RES *rs;          MYSQL_ROW row;
386    MYSQL_ROW row;          char sql[SQL_BUFFER_LEN];
387    char sql[1024];          int life;
388    long int BBS_uid;          time_t last_login_dt;
389    int ret;          int ret = 0;
390    
391    //Verify format          snprintf(sql, sizeof(sql),
392    if (ireg ("^[A-Za-z0-9_]{3,14}$", username, 0, NULL) != 0 ||                           "SELECT life, UNIX_TIMESTAMP(last_login_dt), user_timezone, exp, nickname "
393        ireg ("^[A-Za-z0-9]{5,12}$", password, 0, NULL) != 0)                           "FROM user_pubinfo WHERE UID = %d",
394      {                           BBS_uid);
395        prints ("\033[1;31mûʽ...\033[m\r\n");          if (mysql_query(db, sql) != 0)
396        iflush ();          {
397        return 1;                  log_error("Query user_pubinfo error: %s\n", mysql_error(db));
398      }                  ret = -1;
399                    goto cleanup;
400    db = (MYSQL *) db_open ();          }
401    if (db == NULL)          if ((rs = mysql_store_result(db)) == NULL)
402      {          {
403        return -1;                  log_error("Get user_pubinfo data failed\n");
404      }                  ret = -1;
405                    goto cleanup;
406    sprintf (sql,          }
407             "select UID,username,p_login from user_list where username='%s' "          if ((row = mysql_fetch_row(rs)))
408             "and (password=MD5('%s') or password=PASSWORD('%s')) and "          {
409             "enable", username, password, password);                  life = atoi(row[0]);
410    if (mysql_query (db, sql) != 0)                  last_login_dt = (time_t)atol(row[1]);
411      {  
412        log_error ("Query user_list failed\n");                  strncpy(BBS_user_tz, row[2], sizeof(BBS_user_tz) - 1);
413        return -1;                  BBS_user_tz[sizeof(BBS_user_tz) - 1] = '\0';
414      }  
415    if ((rs = mysql_store_result (db)) == NULL)                  BBS_user_exp = atoi(row[3]);
416      {  
417        log_error ("Get user_list data failed\n");                  strncpy(BBS_nickname, row[4], sizeof(BBS_nickname));
418        return -1;                  BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
419      }          }
420    if (row = mysql_fetch_row (rs))          else
421      {          {
422        BBS_uid = atol (row[0]);                  ret = -1; // Data not found
423        strcpy (BBS_username, row[1]);                  goto cleanup;
424        if (atoi (row[2]) == 0)          }
425          {          mysql_free_result(rs);
426            mysql_free_result (rs);          rs = NULL;
427            mysql_close (db);  
428            if (life != 333 && life != 365 && life != 666 && life != 999 && // Not immortal
429            prints ("\033[1;31mĿǰȨ½...\033[m\r\n");                  time(NULL) - last_login_dt > 60 * 60 * 24 * life)
430            iflush ();          {
431            return 1;                  ret = -3; // Dead
432          }                  goto cleanup;
433      }          }
434    else  
435      {          if (load_priv(db, &BBS_priv, BBS_uid) != 0)
436        mysql_free_result (rs);          {
437                    ret = -1;
438        sprintf (sql,                  goto cleanup;
439                 "insert delayed into user_err_login_log"          }
440                 "(username,password,login_dt,login_ip) values"  
441                 "('%s','%s',now(),'%s')", username, password, hostaddr_client);  cleanup:
442        if (mysql_query (db, sql) != 0)          mysql_free_result(rs);
443          {  
444            log_error ("Insert into user_err_login_log failed\n");          return ret;
445            return -1;  }
446          }  
447    int load_guest_info(void)
448        mysql_close (db);  {
449            MYSQL *db = NULL;
450        prints ("\033[1;31mû...\033[m\r\n");          int ret = 0;
451        iflush ();  
452        return 1;          db = db_open();
453      }          if (db == NULL)
454    mysql_free_result (rs);          {
455                    ret = -1;
456    BBS_passwd_complex = verify_pass_complexity (password, username, 6);                  goto cleanup;
457            }
458    ret = load_user_info (db, BBS_uid);  
459            strncpy(BBS_username, "guest", sizeof(BBS_username) - 1);
460    switch (ret)          BBS_username[sizeof(BBS_username) - 1] = '\0';
461      {  
462      case 0:                     //Login successfully          BBS_user_exp = 0;
463        return 0;  
464        break;          strncpy(BBS_nickname, "Guest", sizeof(BBS_nickname));
465      case -1:                    //Load data error          BBS_nickname[sizeof(BBS_nickname) - 1] = '\0';
466        prints ("\033[1;31mȡûݴ...\033[m\r\n");  
467        iflush ();          if (load_priv(db, &BBS_priv, 0) != 0)
468        return -1;          {
469        break;                  ret = -1;
470      case -2:                    //Unused                  goto cleanup;
471        return 0;          }
       break;  
     case -3:                    //Dead  
       prints ("\033[1;31mźѾԶ뿪ǵ磡\033[m\r\n");  
       iflush ();  
       return 1;  
     default:  
       return -2;  
     }  
472    
473    mysql_close (db);          if (user_online_add(db) != 0)
474            {
475                    ret = -1;
476                    goto cleanup;
477            }
478    
479            BBS_last_access_tm = BBS_login_tm = time(NULL);
480    
481    cleanup:
482            mysql_close(db);
483    
484    return 0;          return ret;
485  }  }
486    
487  int  int user_online_add(MYSQL *db)
 load_user_info (MYSQL * db, long int BBS_uid)  
488  {  {
489    MYSQL_RES *rs;          char sql[SQL_BUFFER_LEN];
   MYSQL_ROW row;  
   char sql[1024];  
   long int BBS_auth_uid = 0;  
   int life;  
   time_t last_login_dt;  
   
   sprintf (sql,  
            "select life,UNIX_TIMESTAMP(last_login_dt) "  
            "from user_pubinfo where UID=%ld limit 1", BBS_uid);  
   if (mysql_query (db, sql) != 0)  
     {  
       log_error ("Query user_pubinfo failed\n");  
       return -1;  
     }  
   if ((rs = mysql_store_result (db)) == NULL)  
     {  
       log_error ("Get user_pubinfo data failed\n");  
       return -1;  
     }  
   if (row = mysql_fetch_row (rs))  
     {  
       life = atoi (row[0]);  
       last_login_dt = (time_t) atol (row[1]);  
     }  
   else  
     {  
       mysql_free_result (rs);  
       return (-1);              //Data not found  
     }  
   mysql_free_result (rs);  
   
   if (time (0) - last_login_dt >= 60 * 60 * 24 * life)  
     {  
       return (-3);              //Dead  
     }  
   
   sprintf (sql,  
            "select AUID from user_auth where UID=%ld"  
            " and enable and expire_dt>now()", BBS_uid);  
   if (mysql_query (db, sql) != 0)  
     {  
       log_error ("Query user_auth failed\n");  
       return -1;  
     }  
   if ((rs = mysql_store_result (db)) == NULL)  
     {  
       log_error ("Get user_auth data failed\n");  
       return -1;  
     }  
   if (row = mysql_fetch_row (rs))  
     {  
       BBS_auth_uid = atol (row[0]);  
     }  
   else  
     {  
       BBS_auth_uid = 0;  
     }  
   mysql_free_result (rs);  
   
   sprintf (sql,  
            "insert delayed into user_login_log"  
            "(uid,login_dt,login_ip) values(%ld"  
            ",now(),'%s')", BBS_uid, hostaddr_client);  
   if (mysql_query (db, sql) != 0)  
     {  
       log_error ("Insert into user_login_log failed\n");  
       return -1;  
     }  
   
   load_priv (db, &BBS_priv, BBS_uid, BBS_auth_uid,  
              (!BBS_passwd_complex ? S_MAN_M : S_NONE) |  
              (BBS_auth_uid ? S_NONE : S_MAIL));  
   
   BBS_last_access_tm = BBS_login_tm = time (0);  
   BBS_last_sub_tm = time (0) - 60;  
   
   sprintf (sql,  
            "update user_pubinfo set visit_count=visit_count+1,"  
            "last_login_dt=now() where uid=%ld", BBS_uid);  
   if (mysql_query (db, sql) != 0)  
     {  
       log_error ("Update user_pubinfo failed\n");  
       return -1;  
     }  
490    
491    return 0;          if (user_online_del(db) != 0)
492            {
493                    return -1;
494            }
495    
496            snprintf(sql, sizeof(sql),
497                             "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "
498                             "VALUES('Telnet_Process_%d', %d, '%s', NOW(), NOW())",
499                             getpid(), BBS_priv.uid, hostaddr_client);
500            if (mysql_query(db, sql) != 0)
501            {
502                    log_error("Add user_online error: %s\n", mysql_error(db));
503                    return -1;
504            }
505    
506            return 0;
507  }  }
508    
509  int  int user_online_del(MYSQL *db)
 load_guest_info (MYSQL * db, long int BBS_uid)  
510  {  {
511    MYSQL_RES *rs;          char sql[SQL_BUFFER_LEN];
   MYSQL_ROW row;  
512    
513    db = (MYSQL *) db_open ();          // +1 exp for every 5 minutes online since last logout
514    if (db == NULL)          // but at most 24 hours worth of exp can be gained in Telnet session
515      {          snprintf(sql, sizeof(sql),
516        return -1;                          "UPDATE user_pubinfo SET exp = exp + "
517      }                          "FLOOR((UNIX_TIMESTAMP() - GREATEST(IF(last_logout_dt IS NULL, 0, UNIX_TIMESTAMP(last_logout_dt)), %ld)) / 60 / 5), "
518                            "last_logout_dt = NOW() "
519                            "WHERE UID = %d",
520                            MAX(BBS_login_tm, time(NULL) - 60 * 60 * 24),
521                            BBS_priv.uid);
522            if (mysql_query(db, sql) != 0)
523            {
524                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
525                    return -1;
526            }
527    
528    strcpy (BBS_username, "guest");          snprintf(sql, sizeof(sql),
529                             "DELETE FROM user_online WHERE SID = 'Telnet_Process_%d'",
530                             getpid());
531            if (mysql_query(db, sql) != 0)
532            {
533                    log_error("Delete user_online error: %s\n", mysql_error(db));
534                    return -2;
535            }
536    
537    load_priv (db, &BBS_priv, 0, 0, S_NONE);          return 0;
538    }
539    
540    BBS_last_access_tm = BBS_login_tm = time (0);  int user_online_update(const char *action)
541    BBS_last_sub_tm = time (0) - 60;  {
542            MYSQL *db = NULL;
543            char sql[SQL_BUFFER_LEN];
544    
545            if ((action == NULL || strcmp(BBS_current_action, action) == 0) &&
546                    time(NULL) - BBS_current_action_tm < BBS_current_action_refresh_interval) // No change
547            {
548                    return 0;
549            }
550    
551            if (action != NULL)
552            {
553                    strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);
554                    BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';
555            }
556    
557            BBS_current_action_tm = time(NULL);
558    
559            db = db_open();
560            if (db == NULL)
561            {
562                    log_error("db_open() error: %s\n", mysql_error(db));
563                    return -1;
564            }
565    
566            snprintf(sql, sizeof(sql),
567                             "UPDATE user_online SET current_action = '%s', last_tm=NOW() "
568                             "WHERE SID = 'Telnet_Process_%d'",
569                             BBS_current_action, getpid());
570            if (mysql_query(db, sql) != 0)
571            {
572                    log_error("Update user_online error: %s\n", mysql_error(db));
573                    return -2;
574            }
575    
576    mysql_close (db);          mysql_close(db);
577    
578    return 0;          return 1;
579  }  }


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

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