| 14 |
* * |
* * |
| 15 |
***************************************************************************/ |
***************************************************************************/ |
| 16 |
|
|
| 17 |
|
#define _POSIX_C_SOURCE 200112L |
| 18 |
|
|
| 19 |
#include "common.h" |
#include "common.h" |
| 20 |
#include "log.h" |
#include "log.h" |
| 21 |
#include "menu.h" |
#include "menu.h" |
| 23 |
#include <time.h> |
#include <time.h> |
| 24 |
#include <sys/types.h> |
#include <sys/types.h> |
| 25 |
|
|
| 26 |
// Version information |
// File loader |
| 27 |
char app_version[256] = "LBBS-devel version 1.0"; |
const char *data_files_load_startup[] = { |
| 28 |
|
DATA_WELCOME, |
| 29 |
|
DATA_REGISTER, |
| 30 |
|
DATA_GOODBYE, |
| 31 |
|
DATA_LICENSE, |
| 32 |
|
DATA_COPYRIGHT, |
| 33 |
|
DATA_LOGIN_ERROR, |
| 34 |
|
DATA_ACTIVE_BOARD, |
| 35 |
|
DATA_READ_HELP, |
| 36 |
|
VAR_BBS_TOP}; |
| 37 |
|
int data_files_load_startup_count = 9; // Count of data_files_load_startup[] |
| 38 |
|
|
| 39 |
|
const char *data_files_load_timeval[] = { |
| 40 |
|
VAR_BBS_TOP}; |
| 41 |
|
int data_files_load_timeval_count = 1; // Count of data_files_load_timeval[] |
| 42 |
|
|
| 43 |
// Global declaration for sockets |
// Global declaration for sockets |
| 44 |
int socket_server; |
int socket_server; |
| 48 |
int port_server; |
int port_server; |
| 49 |
int port_client; |
int port_client; |
| 50 |
|
|
| 51 |
|
// SSHv2 |
| 52 |
|
int SSH_v2 = 0; |
| 53 |
|
ssh_session SSH_session; |
| 54 |
|
ssh_channel SSH_channel; |
| 55 |
|
|
| 56 |
// Global declaration for system |
// Global declaration for system |
| 57 |
volatile int SYS_server_exit = 0; |
volatile int SYS_server_exit = 0; |
| 58 |
volatile int SYS_child_process_count = 0; |
volatile int SYS_child_process_count = 0; |
| 59 |
volatile int SYS_child_exit = 0; |
volatile int SYS_child_exit = 0; |
| 60 |
volatile int SYS_menu_reload = 0; |
volatile int SYS_conf_reload = 0; |
| 61 |
|
volatile int SYS_data_file_reload = 0; |
| 62 |
|
volatile int SYS_section_list_reload = 0; |
| 63 |
|
|
| 64 |
// Common function |
static const char *weekday[] = { |
| 65 |
const char *str_space(char *string, int length) |
"天", "一", "二", "三", "四", "五", "六"}; |
|
{ |
|
|
int i; |
|
|
for (i = 0; i < length; i++) |
|
|
{ |
|
|
string[i] = ' '; |
|
|
} |
|
|
string[length] = '\0'; |
|
|
return string; |
|
|
} |
|
| 66 |
|
|
| 67 |
|
// Common function |
| 68 |
const char *get_time_str(char *s, size_t len) |
const char *get_time_str(char *s, size_t len) |
| 69 |
{ |
{ |
| 70 |
time_t curtime = time(NULL); |
time_t curtime; |
| 71 |
struct tm *loctime; |
struct tm local_tm; |
|
loctime = localtime(&curtime); |
|
| 72 |
|
|
| 73 |
size_t j = strftime(s, len, "%Y年%m月%d日%H:%M:%S ", loctime); |
time(&curtime); |
| 74 |
|
localtime_r(&curtime, &local_tm); |
| 75 |
|
size_t j = strftime(s, len, "%b %d %H:%M 星期", &local_tm); |
| 76 |
|
|
| 77 |
if (j == 0) |
if (j == 0 || j + strlen(weekday[local_tm.tm_wday]) + 1 > len) |
| 78 |
{ |
{ |
| 79 |
return NULL; |
return NULL; |
| 80 |
} |
} |
| 81 |
|
|
| 82 |
switch (loctime->tm_wday) |
strncat(s, weekday[local_tm.tm_wday], len - 1 - j); |
|
{ |
|
|
case 0: |
|
|
strncat(s, "星期天", len - j); |
|
|
break; |
|
|
case 1: |
|
|
strncat(s, "星期一", len - j); |
|
|
break; |
|
|
case 2: |
|
|
strncat(s, "星期二", len - j); |
|
|
break; |
|
|
case 3: |
|
|
strncat(s, "星期三", len - j); |
|
|
break; |
|
|
case 4: |
|
|
strncat(s, "星期四", len - j); |
|
|
break; |
|
|
case 5: |
|
|
strncat(s, "星期五", len - j); |
|
|
break; |
|
|
case 6: |
|
|
strncat(s, "星期六", len - j); |
|
|
break; |
|
|
} |
|
| 83 |
|
|
| 84 |
return s; |
return s; |
| 85 |
} |
} |
| 86 |
|
|
| 87 |
void sig_hup_handler(int i) |
void sig_hup_handler(int i) |
| 88 |
{ |
{ |
| 89 |
SYS_menu_reload = 1; |
SYS_conf_reload = 1; |
| 90 |
|
SYS_data_file_reload = 1; |
| 91 |
|
SYS_section_list_reload = 1; |
| 92 |
} |
} |
| 93 |
|
|
| 94 |
void sig_term_handler(int i) |
void sig_term_handler(int i) |
| 101 |
SYS_child_exit = 1; |
SYS_child_exit = 1; |
| 102 |
} |
} |
| 103 |
|
|
| 104 |
const char * ip_mask(char * s, int level, char mask) |
const char *ip_mask(char *s, int level, char mask) |
| 105 |
{ |
{ |
| 106 |
char * p = s; |
char *p = s; |
| 107 |
|
|
| 108 |
if (level <= 0) |
if (level <= 0) |
| 109 |
{ |
{ |