274 lines
6.3 KiB
C
274 lines
6.3 KiB
C
![]() |
#include "version.h"
|
|||
|
#include <signal.h>
|
|||
|
#include <errno.h>
|
|||
|
#include <unistd.h>
|
|||
|
|
|||
|
#include <stdio.h>
|
|||
|
#include <execinfo.h>
|
|||
|
|
|||
|
#include "buf.h"
|
|||
|
#include "net.h"
|
|||
|
#include "char.h"
|
|||
|
#include "item.h"
|
|||
|
#include "object.h"
|
|||
|
#include "configfile.h"
|
|||
|
#include "lssproto_serv.h"
|
|||
|
#include "saacproto_cli.h"
|
|||
|
#include "log.h"
|
|||
|
#include "petmail.h"
|
|||
|
#include "longzoro.h"
|
|||
|
#ifdef _ALLBLUES_LUA
|
|||
|
#include "mylua/mylua.h"
|
|||
|
#endif
|
|||
|
/*------------------------------------------------------------
|
|||
|
* <EFBFBD><EFBFBD><EFBFBD>ͻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><EFBFBD>ľ<EFBFBD><EFBFBD>ئ<EFBFBD><EFBFBD>ئ<EFBFBD>з<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëĸ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
* ئ<EFBFBD><EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
|
|||
|
void logerr(char *token)
|
|||
|
{
|
|||
|
char tmp[256];
|
|||
|
struct tm now;
|
|||
|
time_t timep;
|
|||
|
time(&timep);
|
|||
|
memcpy(&now, localtime(&timep), sizeof(now));
|
|||
|
|
|||
|
sprintf(tmp, "%04d-%02d-%02d.log", now.tm_year+1900, now.tm_mon+1, now.tm_mday);
|
|||
|
|
|||
|
FILE *fp=fopen(tmp,"a+");
|
|||
|
fwrite(token, strlen(token), 1, fp);
|
|||
|
fclose(fp);
|
|||
|
printf( token );
|
|||
|
}
|
|||
|
|
|||
|
void dump()
|
|||
|
{
|
|||
|
void *array[10];
|
|||
|
size_t size;
|
|||
|
char **strings;
|
|||
|
size_t i;
|
|||
|
|
|||
|
size = backtrace (array, 10);
|
|||
|
strings = backtrace_symbols (array, size);
|
|||
|
|
|||
|
printf ("Obtained %zd stack frames.\n", size);
|
|||
|
|
|||
|
for (i = 0; i < size; i++){
|
|||
|
logerr(strings[i]);
|
|||
|
}
|
|||
|
|
|||
|
free (strings);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
void signalset( void );
|
|||
|
|
|||
|
static void allDataDump( void )
|
|||
|
{
|
|||
|
|
|||
|
int i;
|
|||
|
for( i = 0; i < CHAR_getPlayerMaxNum(); i ++ ){
|
|||
|
if(CHAR_CHECKINDEX(i) == TRUE){
|
|||
|
CHAR_charSaveFromConnect(i, FALSE);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
saveforsaac();
|
|||
|
|
|||
|
storeCharaData();
|
|||
|
|
|||
|
closeAllLogFile();
|
|||
|
#ifdef _PET_ITEM
|
|||
|
storeObjects( getStoredir() );
|
|||
|
storePetmail();
|
|||
|
#endif
|
|||
|
#ifdef _ALLBLUES_LUA
|
|||
|
closemyluaload();
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
/*------------------------------------------------------------
|
|||
|
* ئ<EFBFBD><EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
void shutdownProgram( void )
|
|||
|
{
|
|||
|
printf("<EFBFBD>ر<EFBFBD>SAAC<EFBFBD><EFBFBD><EFBFBD><EFBFBD>:%d\n",close( acfd ));
|
|||
|
printf("<EFBFBD>رհ˿<EFBFBD>:%d\n",close( bindedfd ));
|
|||
|
memEnd();
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _KEEP_UP_NO_LOGIN
|
|||
|
extern char keepupnologin[256];
|
|||
|
#endif
|
|||
|
#ifdef _GMSV_DEBUG
|
|||
|
char *DebugMainFunction = NULL;
|
|||
|
extern time_t initTime;
|
|||
|
#endif
|
|||
|
extern int player_online;
|
|||
|
extern int player_maxonline;
|
|||
|
char saacretfunc[255]="";
|
|||
|
char *saacsendfunc = NULL;
|
|||
|
int cliretfunc=0;
|
|||
|
int clisendfunc=0;
|
|||
|
|
|||
|
|
|||
|
#ifdef _ABSOLUTE_DEBUG
|
|||
|
char errordata[256]="";
|
|||
|
char charId[32]="";
|
|||
|
int lastfunctime=0;
|
|||
|
int debugline=0;
|
|||
|
int comnum=-1;
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
void sigshutdown( int number)
|
|||
|
{
|
|||
|
char buff[256];
|
|||
|
|
|||
|
if( number == 0 ){
|
|||
|
printf( "\n\n\nGMSV<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ر<EFBFBD>\n" );
|
|||
|
}else if( number == 2 ){
|
|||
|
#ifdef _KEEP_UP_NO_LOGIN
|
|||
|
if(strlen(keepupnologin) > 0){
|
|||
|
strcpy(keepupnologin,"");
|
|||
|
printf( "<EFBFBD>ѽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֹ<EFBFBD><EFBFBD>½״̬\n" );
|
|||
|
return;
|
|||
|
}
|
|||
|
#endif
|
|||
|
printf( "\n\n\nGMSV<EFBFBD><EFBFBD>CTRL+C<>ֶ<EFBFBD><D6B6>ж<EFBFBD>\n" );
|
|||
|
}else{
|
|||
|
sprintf( buff, "\n=========<3D><><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԭ<EFBFBD><D4AD>=========\n");
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ: %d\n" , number );
|
|||
|
logerr(buff);
|
|||
|
#ifdef _GMSV_DEBUG
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD> <20><> <20><>: %s\n", DebugMainFunction );
|
|||
|
logerr(buff);
|
|||
|
#endif
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %d\n", player_online);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %d\n", player_maxonline);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "SAAC<EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s\n", saacretfunc);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "SAAC<EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s\n", saacsendfunc);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "cli <20><><EFBFBD><EFBFBD>: %d\n", cliretfunc);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "cli <20><><EFBFBD><EFBFBD>: %d\n", clisendfunc);
|
|||
|
logerr(buff);
|
|||
|
#ifdef _ABSOLUTE_DEBUG
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %s\n", errordata);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˺<EFBFBD>: %s\n", charId);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ִ<EFBFBD><EFBFBD>: %d\n", lastfunctime);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %d\n", debugline);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "COM <20>ӿ<EFBFBD>: %d\n", comnum);
|
|||
|
logerr(buff);
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD>ǰ<EFBFBD>汾: %s\n", SERVER_VERSION);
|
|||
|
logerr(buff);
|
|||
|
#endif
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ύ<EFBFBD>Ĵ<EFBFBD><EFBFBD><EFBFBD>\n");
|
|||
|
logerr(buff);
|
|||
|
dump();
|
|||
|
|
|||
|
sprintf( buff, "=========<3D><><EFBFBD><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԭ<EFBFBD><D4AD>=========\n");
|
|||
|
logerr(buff);
|
|||
|
|
|||
|
}
|
|||
|
if( number == 0 || number == 2 ){
|
|||
|
printf( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %d\n", player_online);
|
|||
|
printf( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: %d\n", player_maxonline);
|
|||
|
printf( "<EFBFBD><EFBFBD>ǰ<EFBFBD>汾: %s\n", SERVER_VERSION);
|
|||
|
}
|
|||
|
|
|||
|
#ifdef _GMSV_DEBUG
|
|||
|
{
|
|||
|
time_t new_t;
|
|||
|
int dd,hh,mm,ss;
|
|||
|
char buf[128];
|
|||
|
time(&new_t);
|
|||
|
if(initTime==0){
|
|||
|
printf( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>: <20><>δ<EFBFBD><CEB4>ʼ<EFBFBD><CABC><EFBFBD><EFBFBD>\n" );
|
|||
|
}else{
|
|||
|
new_t-=initTime;
|
|||
|
|
|||
|
dd=(int) new_t / 86400; new_t=new_t % 86400;
|
|||
|
hh=(int) new_t / 3600; new_t=new_t % 3600;
|
|||
|
mm=(int) new_t / 60; new_t=new_t % 60;
|
|||
|
ss=(int) new_t;
|
|||
|
|
|||
|
if (dd>0) {
|
|||
|
snprintf( buf, sizeof( buf ) , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d <20><> %d Сʱ %d <20><> %d <20>롣",dd,hh,mm,ss);
|
|||
|
} else if (hh>0) {
|
|||
|
snprintf( buf, sizeof( buf ) , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d Сʱ %d <20><> %d <20>롣",hh,mm,ss);
|
|||
|
} else {
|
|||
|
snprintf( buf, sizeof( buf ) , "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %d <20><> %d <20>롣",mm,ss);
|
|||
|
}
|
|||
|
if( number == 0 || number == 2 ){
|
|||
|
printf( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>: %s\n", buf );
|
|||
|
}else{
|
|||
|
sprintf( buff, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD>: %s\n", buf );
|
|||
|
logerr(buff);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
remove( "gmsvlog.err2");
|
|||
|
rename( "gmsvlog.err1", "gmsvlog.err2" );
|
|||
|
rename( "gmsvlog.err", "gmsvlog.err1" );
|
|||
|
rename( "gmsvlog", "gmsvlog.err" );
|
|||
|
|
|||
|
allDataDump();
|
|||
|
|
|||
|
signal(SIGINT , SIG_IGN );
|
|||
|
signal(SIGQUIT, SIG_IGN );
|
|||
|
signal(SIGILL, SIG_IGN );
|
|||
|
signal(SIGTRAP, SIG_IGN );
|
|||
|
signal(SIGIOT, SIG_IGN );
|
|||
|
signal(SIGBUS, SIG_IGN );
|
|||
|
signal(SIGFPE, SIG_IGN );
|
|||
|
signal(SIGKILL, SIG_IGN );
|
|||
|
signal(SIGSEGV, SIG_IGN );
|
|||
|
signal(SIGPIPE, SIG_IGN );
|
|||
|
signal(SIGTERM, SIG_IGN );
|
|||
|
|
|||
|
shutdownProgram();
|
|||
|
exit(number);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
void signalset( void )
|
|||
|
{
|
|||
|
// CoolFish: Test Signal 2001/10/26
|
|||
|
print("\n<EFBFBD><EFBFBD>ʼ<EFBFBD><EFBFBD>ȡ<EFBFBD>ź<EFBFBD>..\n");
|
|||
|
|
|||
|
print("SIGINT:%d\n", SIGINT);
|
|||
|
print("SIGQUIT:%d\n", SIGQUIT);
|
|||
|
print("SIGFPE:%d\n", SIGILL);
|
|||
|
print("SIGTRAP:%d\n", SIGTRAP);
|
|||
|
print("SIGIOT:%d\n", SIGIOT);
|
|||
|
print("SIGBUS:%d\n", SIGBUS);
|
|||
|
print("SIGFPE:%d\n", SIGFPE);
|
|||
|
print("SIGKILL:%d\n", SIGKILL);
|
|||
|
print("SIGSEGV:%d\n", SIGSEGV);
|
|||
|
print("SIGPIPE:%d\n", SIGPIPE);
|
|||
|
print("SIGTERM:%d\n", SIGTERM);
|
|||
|
|
|||
|
signal( SIGINT , sigshutdown );
|
|||
|
signal( SIGQUIT, sigshutdown );
|
|||
|
signal( SIGILL, sigshutdown );
|
|||
|
signal( SIGTRAP, sigshutdown );
|
|||
|
signal( SIGIOT, sigshutdown );
|
|||
|
signal( SIGBUS, sigshutdown );
|
|||
|
signal( SIGFPE, sigshutdown );
|
|||
|
signal( SIGKILL, sigshutdown );
|
|||
|
signal( SIGSEGV, sigshutdown );
|
|||
|
signal( SIGPIPE, SIG_IGN );
|
|||
|
signal( SIGTERM, sigshutdown );
|
|||
|
}
|