-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathmain.cpp
772 lines (686 loc) · 16 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
/*************************************************************************
* UrBackup - Client/Server backup system
* Copyright (C) 2011-2016 Martin Raiber
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#include "vld.h"
#define DEF_SERVER
#ifdef _WIN32
#include <ws2tcpip.h>
#endif
#include "Server.h"
#include "AcceptThread.h"
#include "SessionMgr.h"
#include "LoadbalancerClient.h"
#include "libs.h"
#ifdef USE_SYSTEM_SQLITE
#include <sqlite3.h>
#else
#include "sqlite/sqlite3.h"
#endif
#include "stringtools.h"
#include <iostream>
#include <vector>
#include <map>
#include <stdlib.h>
#include <time.h>
#ifdef _WIN32
#include <conio.h>
#include <signal.h>
#endif
#ifdef AS_SERVICE
# include "win_service/nt_service.h"
using namespace nt;
#endif
#ifndef _WIN32
# include <sys/types.h>
# include <pwd.h>
# include <sys/wait.h>
# include <grp.h>
# include <errno.h>
#endif
#ifdef __ANDROID__
int getdtablesize() { return 1024; }
#endif
IServer *Server=NULL;
using namespace std;
bool run=true;
bool no_server=false;
namespace
{
std::string g_logfile;
std::string g_logfile_user;
}
void init_mutex_selthread(void);
void destroy_mutex_selthread(void);
#ifndef _WIN32
void termination_handler(int signum)
{
run=false;
Server->Log("Shutting down (Signal "+convert(signum)+")", LL_WARNING);
}
void hub_handler(int signum)
{
if(!g_logfile.empty())
{
Server->setLogFile(g_logfile, g_logfile_user);
}
}
#else
void abort_handler(int signal)
{
Server->Log("Program abort (SIGABRT)", LL_ERROR);
RaiseException(0, 0, 0, NULL);
}
void invalid_parameter_handler(const wchar_t* expression,
const wchar_t* function,
const wchar_t* file,
unsigned int line,
uintptr_t pReserved)
{
Server->Log("Invalid parameter detected in function " + Server->ConvertFromWchar(function) +
" File: " + Server->ConvertFromWchar(file) + " Line: " + convert(line) + " Expression: " + Server->ConvertFromWchar(expression), LL_ERROR);
RaiseException(0, 0, 0, NULL);
}
#endif
#ifdef AS_SERVICE
char **srv_argv;
int srv_argc;
#endif
void DisplayHelp(void)
{
cout << "CServer - Compiled C++ Server" << endl;
cout << "CServer [--port 34255] [--workers 3] [--plugin x] [--loadbalancer 192.168.0.1] [--lb-weight 1] [--lb-port 2304]" << endl;
}
CAcceptThread *c_at=NULL;
int main_fkt(int argc, char *argv[]);
int main_fkt_catch(int argc, char *argv[])
{
try
{
return main_fkt(argc, argv);
}
catch (std::exception& e)
{
Server->Log(std::string("Main thread exit with unhandled std::exception ") + e.what(), LL_ERROR);
throw;
}
catch (...)
{
Server->Log(std::string("Main thread exit with unhandled C++ exception "), LL_ERROR);
throw;
}
}
#ifndef AS_SERVICE
#ifdef _WIN32
#define MAINNAME main
#else
#define MAINNAME real_main
#endif
int MAINNAME(int argc, char *argv[])
{
#else //AS_SERVICE
int my_init_fcn_t(int argc, char *argv[])
{
#endif
#if !defined(_DEBUG) && defined(_WIN32)
__try{
#endif
#if defined(_DEBUG)
return main_fkt(argc, argv);
#else
return main_fkt_catch(argc, argv);
#endif
#if !defined(_DEBUG) && defined(_WIN32)
}__except(CServer::WriteDump(GetExceptionInformation()) )
{
}
return 101;
#endif
}
int main_fkt(int argc, char *argv[])
{
CServer* Server=new CServer;
::Server = Server;
Server->setup();
#ifdef _WIN32
int rc;
WSADATA wsadata;
rc = WSAStartup(MAKEWORD(2,2), &wsadata);
if(rc == SOCKET_ERROR)
{
Server->Log("Error starting Winsock 2.2", LL_ERROR);
return 23;
}
#endif
srand(Server->getSecureRandomNumber());
//Parse Parameters
int port=34255;
int workers=5;
std::vector<std::string> plugins;
std::string loadbalancer;
int loadbalancer_weight=1;
int loadbalancer_port=2305;
if( argc==2 && (std::string)argv[1]=="--version" )
{
cout << "CServer version 0.1.0.0" << endl;
return 1;
}
if( argc==2 && ( (std::string)argv[1]=="--help" || (std::string)argv[1]=="-h") )
{
DisplayHelp();
return 6;
}
std::map<std::string, std::string> srv_params;
std::string loglevel;
std::string logfile;
std::string workingdir;
bool daemon=false;
std::string daemon_user;
std::string pidfile;
bool log_console_no_time=false;
for(int i=1;i<argc;++i)
{
std::string carg=argv[i];
std::string narg;
if( i+1<argc )
narg=argv[i+1];
if( carg=="--daemon" || carg=="-d" )
{
daemon=true;
}
else if( carg=="--user" || carg=="-u" )
{
daemon_user=narg;
++i;
}
else if( carg=="--workingdir" )
{
workingdir=narg;
++i;
}
else if( carg=="--port" || carg=="-p" )
{
port=atoi( narg.c_str() );
++i;
}
else if( carg=="--workers" || carg=="-w" )
{
workers=atoi( narg.c_str() );
++i;
}
else if( carg=="--plugin" || carg=="-p" || carg=="--add" || carg=="-a")
{
plugins.push_back( narg );
++i;
}
else if( carg=="--loadbalancer" || carg=="-lb" )
{
loadbalancer=narg;
++i;
}
else if( carg=="--lb-weight" || carg=="-lbw" )
{
loadbalancer_weight=atoi( narg.c_str() );
++i;
}
else if( carg=="--lb-port" || carg=="-lbp" )
{
loadbalancer_port=atoi( narg.c_str() );
++i;
}
else if( carg=="--no-server" || carg=="-n" )
{
no_server=true;
}
else if (carg=="--loglevel" || carg=="-ll" )
{
loglevel=strlower(narg);
++i;
}
else if (carg=="--logfile" || carg=="-lf" )
{
logfile=narg;
++i;
}
else if( carg=="--pidfile" )
{
pidfile=narg;
++i;
}
else if( carg=="--rotate-filesize")
{
Server->setLogRotationFilesize(atoi(narg.c_str()));
++i;
}
else if( carg=="--rotate-numfiles")
{
Server->setLogRotationNumFiles(atoi(narg.c_str()));
++i;
}
else if( carg=="--log_console_no_time")
{
log_console_no_time = true;
}
else
{
if( carg.size()>1 && carg[0]=='-' )
{
std::string p;
if( carg[1]=='-' && carg.size()>2 )
p=carg.substr(2, carg.size()-2);
else
p=carg.substr(1, carg.size()-1);
std::string v;
if( narg.size()>0 && narg[0]!='-' )
{
v=narg;
++i;
}
else
{
size_t g=p.find_last_of("=");
if(g!=std::string::npos)
{
v=p.substr(g+1);
p=p.substr(0,g);
}
else
{
v="true";
}
}
srv_params[p]=v;
}
}
}
Server->setServerParameters(srv_params);
if(workingdir.empty())
{
#ifdef _WIN32
#ifndef AS_SERVICE
{
wchar_t buf[MAX_PATH];
GetCurrentDirectoryW(MAX_PATH, buf);
Server->setServerWorkingDir(Server->ConvertFromWchar(buf));
}
#else
{
wchar_t buf[MAX_PATH+1];
GetModuleFileNameW(NULL, buf, MAX_PATH);
Server->setServerWorkingDir(ExtractFilePath(Server->ConvertFromWchar(buf)));
SetCurrentDirectoryW(Server->ConvertToWchar(ExtractFilePath(Server->ConvertFromWchar(buf))).c_str());
}
#endif
#else
char buf[4096];
char* cwd = getcwd(buf, sizeof(buf));
if(cwd==NULL)
{
Server->setServerWorkingDir((ExtractFilePath(argv[0])));
}
else
{
Server->setServerWorkingDir((cwd));
}
#endif
}
else
{
Server->setServerWorkingDir((workingdir));
#ifndef _WIN32
int rc = chdir((Server->getServerWorkingDir()).c_str());
if(rc!=0)
{
Server->Log("Cannot set working directory to directory "+workingdir, LL_ERROR);
}
#endif
}
#ifndef _WIN32
if(daemon)
{
size_t pid1;
if( (pid1=fork())==0 )
{
setsid();
if(fork()==0)
{
for (int i=getdtablesize();i>=0;--i) close(i);
int i=open("/dev/null",O_RDWR);
dup(i);
dup(i);
}
else
{
exit(0);
}
}
else
{
int status;
waitpid(pid1, &status, 0);
exit(0);
}
int rc = chdir((Server->getServerWorkingDir()).c_str());
if (rc != 0)
{
Server->Log("Cannot set working directory to directory " + workingdir+" (2)", LL_ERROR);
}
if(pidfile.empty())
{
pidfile="/var/run/urbackup_srv.pid";
}
std::fstream pf;
pf.open(pidfile.c_str(), std::ios::out|std::ios::binary);
if(pf.is_open())
{
pf << getpid();
pf.close();
}
}
#endif
if(!logfile.empty())
{
g_logfile=logfile;
g_logfile_user=daemon_user;
Server->setLogFile(logfile, daemon_user);
}
if(!loglevel.empty())
{
if(FileExists("debug_logging_enabled"))
Server->setLogLevel(LL_DEBUG);
else if(loglevel=="debug")
Server->setLogLevel(LL_DEBUG);
else if(loglevel=="warn")
Server->setLogLevel(LL_WARNING);
else if(loglevel=="info")
Server->setLogLevel(LL_INFO);
else if(loglevel=="error")
Server->setLogLevel(LL_ERROR);
}
if(log_console_no_time)
{
Server->setLogConsoleTime(false);
}
if(is_big_endian())
{
Server->setLogLevel(LL_DEBUG);
}
#ifndef _WIN32
if( !daemon_user.empty() && (getuid()==0 || geteuid()==0) )
{
char buf[1000];
passwd pwbuf;
passwd *pw;
int rc=getpwnam_r(daemon_user.c_str(), &pwbuf, buf, 1000, &pw);
if(pw!=NULL)
{
if (setgroups(0, NULL) != 0)
{
Server->Log("Unable to drop groups. Errno: " + convert(errno), LL_ERROR);
return 44;
}
if (setgid(pw->pw_gid) != 0)
{
Server->Log("Unable to set group to gid "+convert(pw->pw_gid)+" of user \""+daemon_user+"\". Errno: " + convert(errno), LL_ERROR);
return 44;
}
if (setuid(pw->pw_uid) != 0)
{
Server->Log("Unable to set user to uid " + convert(pw->pw_gid) + " of user \"" + daemon_user + "\". Errno: " + convert(errno), LL_ERROR);
return 44;
}
}
else
{
Server->Log("Cannot get uid and gid of user \"" + daemon_user + "\" -1. Errno: " + convert(errno), LL_ERROR);
return 44;
}
}
else if (!daemon_user.empty())
{
char buf[1000];
passwd pwbuf;
passwd *pw;
int rc = getpwnam_r(daemon_user.c_str(), &pwbuf, buf, 1000, &pw);
if (pw != NULL)
{
if (pw->pw_uid != getuid())
{
Server->Log("Running as wrong user. Specified user \"" + daemon_user + "\" with uid "+convert(pw->pw_uid)+" but running as uid "+convert(getuid()), LL_ERROR);
return 44;
}
}
else
{
Server->Log("Cannot get uid of user \""+daemon_user+"\". Errno: " + convert(errno), LL_ERROR);
return 44;
}
}
#endif
if( sqlite3_threadsafe()==0 )
{
Server->Log("SQLite3 wasn't compiled with the SQLITE_THREADSAFE. Exiting.", LL_ERROR);
return 43;
}
sqlite3_config(SQLITE_CONFIG_MULTITHREAD);
//sqlite3_enable_shared_cache(1);
{
str_map::iterator iter=srv_params.find("sqlite_tmpdir");
if(iter!=srv_params.end() && !iter->second.empty())
{
sqlite3_temp_directory=sqlite3_mprintf("%s", iter->second.c_str());
}
}
for( size_t i=0;i<plugins.size();++i)
{
if( !Server->LoadDLL(plugins[i]) )
{
Server->Log("Loading "+(std::string)plugins[i]+" failed", LL_ERROR);
}
}
Server->LoadStaticPlugins();
CLoadbalancerClient *lbs=NULL;
if( loadbalancer!="" )
{
lbs=new CLoadbalancerClient( loadbalancer, loadbalancer_port, loadbalancer_weight, port);
Server->createThread(lbs);
}
#ifndef _WIN32
if (signal (SIGINT, termination_handler) == SIG_IGN)
signal (SIGINT, SIG_IGN);
/*if(!daemon)
{
if (signal (SIGHUP, termination_handler) == SIG_IGN)
signal (SIGHUP, SIG_IGN);
}
else*/
{
if (signal (SIGHUP, hub_handler) == SIG_IGN)
signal (SIGHUP, SIG_IGN);
}
if (signal (SIGTERM, termination_handler) == SIG_IGN)
signal (SIGTERM, SIG_IGN);
#else
signal(SIGABRT, abort_handler);
_set_invalid_parameter_handler(invalid_parameter_handler);
#endif
((CSessionMgr*)Server->getSessionMgr())->startTimeoutSessionThread();
Server->startupComplete();
if(no_server==false )
{
init_mutex_selthread();
c_at=new CAcceptThread(workers, port);
if(c_at->has_error())
{
Server->Log("Error while starting listening to ports. Stopping server.", LL_ERROR);
run=false;
}
#ifndef AS_SERVICE
while(run==true)
{
(*c_at)(true);
#ifdef _WIN32
if( _kbhit()!=0 )
{
break;
}
#endif
}
Server->Log("Exited Loop");
Server->Log("Deleting at..");
delete c_at;
destroy_mutex_selthread();
}
else
{
while(run==true)
{
Server->wait(1000);
}
#endif
}
#ifndef AS_SERVICE
Server->Log("Deleting lbs...");
delete lbs;
Server->Log("Shutting down plugins...");
Server->ShutdownPlugins();
Server->Log("Deleting server...");
delete Server;
sqlite3_free(sqlite3_temp_directory);
#endif
return 0;
}
#ifdef AS_SERVICE
void WINAPI my_service_main(DWORD argc, char_* argv[])
{
if( c_at!=NULL )
{
(*c_at)(true);
}
else if(no_server==false)
{
Sleep(500);
//throw std::exception("Service stopped");
}
else
{
Sleep(500);
}
}
void my_shutdown_fcn(void)
{
/*if(c_at !=NULL )
{
delete c_at;
destroy_mutex_selthread();
c_at=NULL;
}
if(Server!=NULL)
{
delete Server;
Server=NULL;
}*/
if (Server != NULL)
{
static_cast<CServer*>(Server)->ShutdownPlugins();
}
nt_service& service = nt_service::instance(L"UrBackupBackend");
service.stop(0);
}
void my_stop_fcn(void)
{
/*if(c_at !=NULL )
{
CAcceptThread *tmp=c_at;
c_at=NULL;
delete tmp;
delete Server;
}
if(Server!=NULL)
{
CServer *srv=Server;
Server=NULL;
delete srv;
}*/
if(Server!=NULL)
{
static_cast<CServer*>(Server)->ShutdownPlugins();
}
nt_service& service = nt_service::instance(L"UrBackupBackend");
service.stop(0);
}
void my_init_fcn(void)
{
my_init_fcn_t(srv_argc, srv_argv);
}
int main(int argc, char *argv[])
{
SetCurrentDirectoryA(ExtractFilePath(argv[0]).c_str() );
if( argc>1 && (std::string)argv[1]=="--cmdline" )
{
srv_argv=argv;
srv_argc=argc;
}
else
{
std::string args=trim(getFile("args.txt"));
for (size_t i = 0; i < 10; ++i)
{
std::string extra_args = trim(getFile("extra_args_" + convert(i) + ".txt"));
if (!extra_args.empty())
{
args += "\n" + extra_args;
}
}
int lc=linecount(args);
srv_argv=new char*[lc+1];
srv_argv[0]=new char[strlen(argv[0])+1];
strcpy_s(srv_argv[0], strlen(argv[0])+1, argv[0]);
for(int i=0;i<lc;++i)
{
std::string l=trim(getline(i, args));
std::cout << l << std::endl;
srv_argv[i+1]=new char[l.size()+1];
memcpy(srv_argv[i+1], &l[0], l.size());
srv_argv[i+1][l.size()]=0;
}
srv_argc=lc+1;
}
if( argc>1 && ( (std::string)argv[1]=="pgo" || (std::string)argv[1]=="cmdline" || (std::string)argv[1]=="--cmdline" ) )
{
my_init_fcn();
while(true)
{
my_service_main(0,NULL);
}
}
else
{
// creates an access point to the instance of the service framework
nt_service& service = nt_service::instance(L"UrBackupBackend");
// register "my_service_main" to be executed as the service main method
service.register_service_main( my_service_main );
// register "my_init_fcn" as initialization fcn
service.register_init_function( my_init_fcn );
// config the service to accepts stop controls. Do nothing when it happens
//service.accept_control( SERVICE_ACCEPT_STOP );
service.register_control_handler( SERVICE_CONTROL_STOP, my_stop_fcn );
// config the service to accepts shutdown controls and do something when receive it
service.register_control_handler( SERVICE_CONTROL_SHUTDOWN, my_shutdown_fcn );
service.start();
}
}
#endif