/[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.52 by sysadm, Sun Sep 28 12:25:14 2025 UTC Revision 1.71 by sysadm, Fri Nov 28 14:35:38 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    
13  #include "bbs.h"  #include "bbs.h"
14  #include "common.h"  #include "common.h"
# Line 29  Line 25 
25  #include <string.h>  #include <string.h>
26  #include <regex.h>  #include <regex.h>
27  #include <unistd.h>  #include <unistd.h>
28  #include <mysql/mysql.h>  #include <mysql.h>
29    #include <sys/param.h>
30    
31    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)  int bbs_login(void)
41  {  {
# Line 113  int check_user(const char *username, con Line 119  int check_user(const char *username, con
119          // Verify format          // Verify format
120          for (i = 0; ok && username[i] != '\0'; i++)          for (i = 0; ok && username[i] != '\0'; i++)
121          {          {
122                  if (!(isalpha(username[i]) || (i > 0 && isdigit(username[i]))))                  if (!(isalpha((int)username[i]) || (i > 0 && (isdigit((int)username[i]) || username[i] == '_'))))
123                  {                  {
124                          ok = 0;                          ok = 0;
125                  }                  }
126          }          }
127          if (ok && (i < 3 || i > 12))          if (ok && (i < BBS_username_min_len || i > BBS_username_max_len))
128          {          {
129                  ok = 0;                  ok = 0;
130          }          }
131          for (i = 0; ok && password[i] != '\0'; i++)          for (i = 0; ok && password[i] != '\0'; i++)
132          {          {
133                  if (!isalnum(password[i]))                  if (!isalnum((int)password[i]))
134                  {                  {
135                          ok = 0;                          ok = 0;
136                  }                  }
137          }          }
138          if (ok && (i < 5 || i > 12))          if (ok && (i < BBS_password_min_len || i > BBS_password_max_len))
139          {          {
140                  ok = 0;                  ok = 0;
141          }          }
# Line 213  int check_user(const char *username, con Line 219  int check_user(const char *username, con
219          }          }
220          if ((row = mysql_fetch_row(rs)))          if ((row = mysql_fetch_row(rs)))
221          {          {
222                  if (atoi(row[0]) >= 3)                  if (atoi(row[0]) >= BBS_allowed_login_failures_per_account)
223                  {                  {
224                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录解锁\033[m\r\n");                          prints("\033[1;31m账户存在多次失败登陆尝试,请使用Web方式登录解锁\033[m\r\n");
225                          ret = 1;                          ret = 1;
# Line 336  int check_user(const char *username, con Line 342  int check_user(const char *username, con
342                  goto cleanup;                  goto cleanup;
343          }          }
344    
345            if (!SSH_v2 && checklevel2(&BBS_priv, P_MAN_S))
346            {
347                    prints("\033[1;31m非普通账户必须使用SSH方式登录\033[m\r\n");
348                    ret = 1;
349                    goto cleanup;
350            }
351    
352          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
353                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "                           "UPDATE user_pubinfo SET visit_count = visit_count + 1, "
354                           "last_login_dt = NOW() WHERE UID = %d",                           "last_login_dt = NOW() WHERE UID = %d",
# Line 487  int user_online_add(MYSQL *db) Line 500  int user_online_add(MYSQL *db)
500  {  {
501          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
502    
503          if (user_online_del(db) != 0)          snprintf(sql, sizeof(sql),
504                             "INSERT INTO visit_log(dt, IP) VALUES(NOW(), '%s')",
505                             hostaddr_client);
506            if (mysql_query(db, sql) != 0)
507          {          {
508                    log_error("Add visit log error: %s\n", mysql_error(db));
509                  return -1;                  return -1;
510          }          }
511    
512            if (user_online_del(db) != 0)
513            {
514                    return -2;
515            }
516    
517          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
518                           "INSERT INTO user_online(SID, UID, ip, login_tm, last_tm) "                           "INSERT INTO user_online(SID, UID, ip, current_action, login_tm, last_tm) "
519                           "VALUES('Telnet_Process_%d', %d, '%s', NOW(), NOW())",                           "VALUES('Telnet_Process_%d', %d, '%s', 'LOGIN', NOW(), NOW())",
520                           getpid(), BBS_priv.uid, hostaddr_client);                           getpid(), BBS_priv.uid, hostaddr_client);
521          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)
522          {          {
523                  log_error("Add user_online error: %s\n", mysql_error(db));                  log_error("Add user_online error: %s\n", mysql_error(db));
524                  return -1;                  return -3;
525          }          }
526    
527          return 0;          return 0;
# Line 521  int user_online_del(MYSQL *db) Line 543  int user_online_del(MYSQL *db)
543          return 0;          return 0;
544  }  }
545    
546    int user_online_exp(MYSQL *db)
547    {
548            char sql[SQL_BUFFER_LEN];
549    
550            // +1 exp for every 5 minutes online since last logout
551            // but at most 24 hours worth of exp can be gained in Telnet session
552            snprintf(sql, sizeof(sql),
553                             "UPDATE user_pubinfo SET exp = exp + FLOOR(LEAST(TIMESTAMPDIFF("
554                             "SECOND, GREATEST(last_login_dt, IF(last_logout_dt IS NULL, last_login_dt, last_logout_dt)), NOW()"
555                             ") / 60 / 5, 12 * 24)), last_logout_dt = NOW() "
556                             "WHERE UID = %d",
557                             BBS_priv.uid);
558            if (mysql_query(db, sql) != 0)
559            {
560                    log_error("Update user_pubinfo error: %s\n", mysql_error(db));
561                    return -1;
562            }
563    
564            return 0;
565    }
566    
567  int user_online_update(const char *action)  int user_online_update(const char *action)
568  {  {
569          MYSQL *db = NULL;          MYSQL *db = NULL;
570          char sql[SQL_BUFFER_LEN];          char sql[SQL_BUFFER_LEN];
571    
572          if (strcmp(BBS_current_action, action) == 0) // No change          if ((action == NULL || strcmp(BBS_current_action, action) == 0) &&
573                    time(NULL) - BBS_current_action_tm < BBS_current_action_refresh_interval) // No change
574          {          {
575                  return 0;                  return 0;
576          }          }
577    
578          strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);          if (action != NULL)
579          BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';          {
580                    strncpy(BBS_current_action, action, sizeof(BBS_current_action) - 1);
581                    BBS_current_action[sizeof(BBS_current_action) - 1] = '\0';
582            }
583    
584            BBS_current_action_tm = time(NULL);
585    
586          db = db_open();          db = db_open();
587          if (db == NULL)          if (db == NULL)
# Line 542  int user_online_update(const char *actio Line 591  int user_online_update(const char *actio
591          }          }
592    
593          snprintf(sql, sizeof(sql),          snprintf(sql, sizeof(sql),
594                           "UPDATE user_online SET current_action = '%s', last_tm=NOW() "                           "UPDATE user_online SET current_action = '%s', last_tm = NOW() "
595                           "WHERE SID = 'Telnet_Process_%d'",                           "WHERE SID = 'Telnet_Process_%d'",
596                           BBS_current_action, getpid());                           BBS_current_action, getpid());
597          if (mysql_query(db, sql) != 0)          if (mysql_query(db, sql) != 0)


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

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