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 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
|
/*
Copyright 2005-2010 Jakub Kruszona-Zawadzki, Gemius SA, 2013-2014 EditShare, 2013-2015 Skytechnology sp. z o.o..
This file was part of MooseFS and is part of LizardFS.
LizardFS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3.
LizardFS 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with LizardFS If not, see <http://www.gnu.org/licenses/>.
*/
#include "common/platform.h"
#include "init.h"
#include <errno.h>
#include <fcntl.h>
#include <grp.h>
#include <ios>
#include <pwd.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <syslog.h>
#include <time.h>
#include <unistd.h>
#include <algorithm>
#include <atomic>
#include <fstream>
#include <list>
#include <memory>
#include "common/cfg.h"
#include "common/crc.h"
#include "common/cwrap.h"
#include "common/exceptions.h"
#include "common/exit_status.h"
#include "common/event_loop.h"
#include "common/main.h"
#include "common/massert.h"
#include "common/mfserr.h"
#include "common/setup.h"
#include "common/slogger.h"
#include "common/time_utils.h"
#include "protocol/MFSCommunication.h"
#if defined(LIZARDFS_HAVE_MLOCKALL)
# if defined(LIZARDFS_HAVE_SYS_MMAN_H)
# include <sys/mman.h>
# endif
# if defined(LIZARDFS_HAVE_SYS_RESOURCE_H)
# include <sys/resource.h>
# endif
# if defined(RLIMIT_MEMLOCK) && defined(MCL_CURRENT) && defined(MCL_FUTURE)
# define MFS_USE_MEMLOCK 1
# endif
#endif
#if defined(LIZARDFS_HAVE_PAM)
# include <security/pam_appl.h>
# include <security/pam_misc.h>
#endif
#ifndef LIZARDFS_MAX_FILES
# define LIZARDFS_MAX_FILES 5000
#endif
#if defined(LIZARDFS_HAVE_SYSTEMD_SD_DAEMON_H)
#include <systemd/sd-daemon.h>
#endif
#define STR_AUX(x) #x
#define STR(x) STR_AUX(x)
enum class RunMode {
kRestart = 0,
kStart = 1,
kStop = 2,
kReload = 3,
kTest = 4,
kKill = 5,
kIsAlive = 6
};
#if defined(LIZARDFS_HAVE_PAM)
static pam_handle_t *gPAMHandle=NULL;
#endif
static bool gRunAsDaemon = true;
/// When set to true, config will be reloaded after the current loop
static int signalpipe[2];
/* interface */
static void signal_pipe_desc(std::vector<pollfd> &pdesc) {
assert(pdesc.size() == 0);
pdesc.push_back({signalpipe[0],POLLIN,0});
}
static void signal_pipe_serv(const std::vector<pollfd> &pdesc) {
if ((pdesc[0].revents)&POLLIN) {
uint8_t sigid;
if (read(signalpipe[0],&sigid,1)==1) {
if (sigid == '\001' && gExitingStatus == ExitingStatus::kRunning) {
lzfs_pretty_syslog(LOG_NOTICE,"terminate signal received");
gExitingStatus = ExitingStatus::kWantExit;
} else if (sigid=='\002') {
lzfs_pretty_syslog(LOG_NOTICE,"reloading config files");
gReloadRequested = true;
} else if (sigid=='\003') {
lzfs_pretty_syslog(LOG_NOTICE, "Received SIGUSR1, killing gently...");
exit(LIZARDFS_EXIT_STATUS_GENTLY_KILL);
}
}
}
}
int initialize(run_tab* tab) {
uint32_t i;
int ok;
ok = 1;
for (i=0 ; (long int)(tab[i].fn)!=0 && ok ; i++) {
eventloop_updatetime();
try {
if (tab[i].fn()<0) {
lzfs_pretty_syslog(LOG_ERR,"init: %s failed",tab[i].name);
ok=0;
}
} catch (const std::exception& e) {
lzfs_pretty_syslog(LOG_ERR, "%s", e.what());
ok = 0;
}
}
eventloop_updatetime();
return ok;
}
int initialize_early(void) {
return initialize(EarlyRunTab);
}
int initialize(void) {
return initialize(RunTab);
}
int initialize_late(void) {
return initialize(LateRunTab);
}
const std::string& set_syslog_ident() {
static std::string logIdent;
logIdent = cfg_get("SYSLOG_IDENT", std::string(STR(APPNAME)));
if (logIdent.empty()) {
logIdent = STR(APPNAME);
}
closelog();
if (gRunAsDaemon) {
openlog(logIdent.c_str(), LOG_PID | LOG_NDELAY, LOG_DAEMON);
} else {
#if defined(LOG_PERROR)
openlog(logIdent.c_str(), LOG_PID | LOG_NDELAY | LOG_PERROR, LOG_USER);
#else
openlog(logIdent.c_str(), LOG_PID | LOG_NDELAY, LOG_USER);
#endif
}
return logIdent;
}
static void main_configure_debug_log() {
std::string flush_on_str = cfg_getstring("LOG_FLUSH_ON", "CRITICAL");
int priority = LOG_CRIT;
if (flush_on_str == "ERROR") {
priority = LOG_ERR;
} else if (flush_on_str == "WARNING") {
priority = LOG_WARNING;
} else if (flush_on_str == "INFO") {
priority = LOG_INFO;
} else if (flush_on_str == "DEBUG") {
priority = LOG_DEBUG;
}
lzfs::drop_all_logs();
lzfs::add_log_syslog();
for (std::string suffix : {"", "_A", "_B", "_C"}) {
std::string configEntryName = "MAGIC_DEBUG_LOG" + suffix;
std::string value = cfg_get(configEntryName.c_str(), "");
if (value.empty()) {
continue;
}
lzfs_add_log_file(value.c_str(), LOG_DEBUG, 16*1024*1024, 8);
}
lzfs_set_log_flush_on(priority);
}
void main_reload() {
// Reload SYSLOG_IDENT
lzfs_pretty_syslog(LOG_NOTICE, "Changing SYSLOG_IDENT to %s",
cfg_get("SYSLOG_IDENT", STR(APPNAME)).c_str());
set_syslog_ident();
// Reload MAGIC_DEBUG_LOG
main_configure_debug_log();
lzfs_silent_syslog(LOG_DEBUG, "main.reload");
}
/* signals */
static int termsignal[]={
SIGTERM,
-1
};
static int reloadsignal[]={
SIGHUP,
-1
};
static int ignoresignal[]={
SIGQUIT,
#ifdef SIGPIPE
SIGPIPE,
#endif
#ifdef SIGTSTP
SIGTSTP,
#endif
#ifdef SIGTTIN
SIGTTIN,
#endif
#ifdef SIGTTOU
SIGTTOU,
#endif
#ifdef SIGINFO
SIGINFO,
#endif
#if defined(SIGUSR1) && !defined(ENABLE_EXIT_ON_USR1)
SIGUSR1,
#endif
#ifdef SIGUSR2
SIGUSR2,
#endif
#ifdef SIGCHLD
SIGCHLD,
#endif
#ifdef SIGCLD
SIGCLD,
#endif
-1
};
static int exitsignal[]={
#if defined(SIGUSR1) && defined(ENABLE_EXIT_ON_USR1)
SIGUSR1,
#endif
-1
};
static int daemonignoresignal[]={
SIGINT,
-1
};
void termhandle(int signo) {
signo = write(signalpipe[1],"\001",1); // killing two birds with one stone - use signo and do something with value returned by write :)
(void)signo; // and then use this value to calm down compiler ;)
}
void reloadhandle(int signo) {
signo = write(signalpipe[1],"\002",1); // see above
(void)signo;
}
void exithandle(int signo) {
signo = write(signalpipe[1],"\003",1); // see above
(void)signo;
}
void set_signal_handlers(int daemonflag) {
struct sigaction sa;
uint32_t i;
zassert(pipe(signalpipe));
#ifdef SA_RESTART
sa.sa_flags = SA_RESTART;
#else
sa.sa_flags = 0;
#endif
sigemptyset(&sa.sa_mask);
sa.sa_handler = termhandle;
for (i=0 ; termsignal[i]>0 ; i++) {
sigaction(termsignal[i],&sa,(struct sigaction *)0);
}
sa.sa_handler = reloadhandle;
for (i=0 ; reloadsignal[i]>0 ; i++) {
sigaction(reloadsignal[i],&sa,(struct sigaction *)0);
}
sa.sa_handler = exithandle;
for (i=0 ; exitsignal[i]>0 ; i++) {
sigaction(exitsignal[i],&sa,(struct sigaction *)0);
}
sa.sa_handler = SIG_IGN;
for (i=0 ; ignoresignal[i]>0 ; i++) {
sigaction(ignoresignal[i],&sa,(struct sigaction *)0);
}
sa.sa_handler = daemonflag?SIG_IGN:termhandle;
for (i=0 ; daemonignoresignal[i]>0 ; i++) {
sigaction(daemonignoresignal[i],&sa,(struct sigaction *)0);
}
}
void signal_cleanup(void) {
close(signalpipe[0]);
close(signalpipe[1]);
}
void changeugid(RunMode runmode) {
char pwdgrpbuff[16384];
struct passwd pwd,*pw;
struct group grp,*gr;
char *wuser;
char *wgroup;
uid_t wrk_uid;
gid_t wrk_gid;
int gidok;
if (geteuid()==0) {
wuser = cfg_getstr("WORKING_USER",DEFAULT_USER);
wgroup = cfg_getstr("WORKING_GROUP",DEFAULT_GROUP);
gidok = 0;
wrk_gid = -1;
if (wgroup[0]=='#') {
wrk_gid = strtol(wgroup+1,NULL,10);
gidok = 1;
} else if (wgroup[0]) {
getgrnam_r(wgroup,&grp,pwdgrpbuff,16384,&gr);
if (gr==NULL) {
lzfs_pretty_syslog(LOG_WARNING,"%s: no such group",wgroup);
exit(LIZARDFS_EXIT_STATUS_ERROR);
} else {
wrk_gid = gr->gr_gid;
gidok = 1;
}
}
if (wuser[0]=='#') {
wrk_uid = strtol(wuser+1,NULL,10);
if (gidok==0) {
getpwuid_r(wrk_uid,&pwd,pwdgrpbuff,16384,&pw);
if (pw==NULL) {
lzfs_pretty_syslog(LOG_ERR,"%s: no such user id - can't obtain group id",wuser+1);
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
wrk_gid = pw->pw_gid;
}
} else {
getpwnam_r(wuser,&pwd,pwdgrpbuff,16384,&pw);
if (pw==NULL) {
lzfs_pretty_syslog(LOG_ERR,"%s: no such user",wuser);
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
wrk_uid = pw->pw_uid;
if (gidok==0) {
wrk_gid = pw->pw_gid;
}
}
free(wuser);
free(wgroup);
if (setgroups(0, NULL) < 0) {
lzfs::log_warn("can't reset supplementary groups");
}
if (setgid(wrk_gid) < 0) {
lzfs::log_err("can't set gid to {}", (int)wrk_gid);
exit(LIZARDFS_EXIT_STATUS_ERROR);
} else if ((runmode == RunMode::kStart) || (runmode == RunMode::kRestart)){
lzfs::log_info("set gid to {}", (int)wrk_gid);
}
if (setuid(wrk_uid)<0) {
lzfs::log_err("can't set uid to {}", (int)wrk_uid);
exit(LIZARDFS_EXIT_STATUS_ERROR);
} else if ((runmode == RunMode::kStart) || (runmode == RunMode::kRestart)){
lzfs::log_info("set uid to {}", (int)wrk_uid);
}
}
}
bool open_pam_session() {
#if defined(LIZARDFS_HAVE_PAM)
static struct pam_conv conv = {misc_conv, NULL};
assert(gPAMHandle == NULL);
int retval;
retval = pam_start("lizardfs", DEFAULT_USER, &conv, &gPAMHandle);
if (retval != PAM_SUCCESS) {
lzfs_pretty_errlog(LOG_ERR, "Can't initialize PAM");
return false;
}
retval = pam_open_session(gPAMHandle, 0);
if (retval != PAM_SUCCESS) {
lzfs_pretty_errlog(LOG_ERR, "Can't open PAM session");
return false;
}
return true;
#else
return false;
#endif
}
void close_pam_session() {
#if defined(LIZARDFS_HAVE_PAM)
if (!gPAMHandle) {
return;
}
int retval = pam_close_session(gPAMHandle, 0);
pam_end(gPAMHandle, retval);
#endif
}
class FileLock {
public:
enum class LockStatus {
kSuccess = 0,
kAlive = 1,
kAgain = 2,
kFail = -1
};
FileLock(RunMode runmode, uint32_t timeout)
: fd_(),
name_("." STR(APPNAME) ".lock"),
lockstatus_(LockStatus::kFail),
thisProcessCreatedLockFile_(false) {
while ((lockstatus_ = wdlock(runmode, timeout)) == LockStatus::kAgain) {
}
}
~FileLock() {
/*
* Order of unlock/file deletion matters
* for RunMode::kRestart mode.
* We need to remove file first and then
* unlock file.
*/
if (lockstatus_ != LockStatus::kFail && thisProcessCreatedLockFile_) {
::unlink(name_.c_str());
}
}
LockStatus lockstatus() const {
return lockstatus_;
}
const std::string& name() const {
return name_;
}
private:
LockStatus wdlock(RunMode runmode, uint32_t timeout);
pid_t mylock();
bool createLockFile();
FileDescriptor fd_;
std::string name_;
LockStatus lockstatus_;
bool thisProcessCreatedLockFile_;
};
pid_t FileLock::mylock() {
struct flock fl;
fl.l_start = 0;
fl.l_len = 0;
fl.l_pid = getpid();
fl.l_type = F_WRLCK;
fl.l_whence = SEEK_SET;
pid_t pid = -1;
for (;;) {
if (fcntl(fd_.get(), F_SETLK, &fl) >= 0) { // lock set
pid = 0; // ok
break;
}
if (errno!=EAGAIN) { // error other than "already locked"
break;
}
if (fcntl(fd_.get(), F_GETLK, &fl) < 0) { // get lock owner
break;
}
if (fl.l_type!=F_UNLCK) { // found lock
pid = fl.l_pid; // return lock owner
break;
}
}
return pid;
}
bool FileLock::createLockFile() {
bool notExisted((::access(name_.c_str(), F_OK) != 0) && (errno == ENOENT));
fd_.reset(open(name_.c_str(), O_WRONLY | O_CREAT, 0666));
if (!fd_.isOpened()) {
std::string err = "can't create lockfile " + fs::getCurrentWorkingDirectoryNoThrow()
+ "/" + name();
lzfs_pretty_errlog(LOG_ERR, "%s", err.c_str());
return false;
}
thisProcessCreatedLockFile_ = notExisted;
return true;
}
FileLock::LockStatus FileLock::wdlock(RunMode runmode, uint32_t timeout) {
std::string lockPath = fs::getCurrentWorkingDirectoryNoThrow() + "/" + name_;
if(!createLockFile()) {
return LockStatus::kFail;
}
pid_t ownerpid(mylock());
if (ownerpid<0) {
lzfs_pretty_errlog(LOG_ERR, "fcntl error while creating lockfile %s", lockPath.c_str());
return LockStatus::kFail;
}
if (ownerpid>0) {
if (runmode==RunMode::kIsAlive) {
return LockStatus::kAlive;
}
if (runmode==RunMode::kTest) {
fprintf(stderr,STR(APPNAME) " pid: %ld\n",(long)ownerpid);
return LockStatus::kFail;
}
if (runmode==RunMode::kStart) {
lzfs_pretty_syslog(LOG_ERR,
"can't start: lockfile %s is already locked by another process",
lockPath.c_str());
return LockStatus::kFail;
}
if (runmode==RunMode::kReload) {
/*
* FIXME: buissiness logic should not be in file locking function.
*/
if (kill(ownerpid,SIGHUP)<0) {
lzfs_pretty_errlog(LOG_ERR,
"can't send reload signal to the lock owner of %s",
lockPath.c_str());
return LockStatus::kFail;
}
lzfs_pretty_syslog(LOG_INFO, "reload signal has been sent");
return LockStatus::kSuccess;
}
if (runmode==RunMode::kKill) {
/*
* FIXME: buissiness logic should not be in file locking function.
*/
#ifdef ENABLE_EXIT_ON_USR1
if (kill(ownerpid,SIGUSR1)<0) {
#else
if (kill(ownerpid,SIGKILL)<0) {
#endif
lzfs_pretty_errlog(LOG_ERR,
"can't kill (SIGKILL) the lock owner (pid:%ld) of %s",
(long int)ownerpid, lockPath.c_str());
return LockStatus::kFail;
}
} else {
sassert((runmode == RunMode::kStop) || (runmode == RunMode::kRestart));
/*
* FIXME: buissiness logic should not be in file locking function.
*/
if (kill(ownerpid,SIGTERM)<0) {
lzfs_pretty_errlog(LOG_ERR,
"can't kill (SIGTERM) the lock owner (pid:%ld) of %s",
(long int)ownerpid, lockPath.c_str());
return LockStatus::kFail;
}
}
fflush(stderr);
uint32_t l = 0;
pid_t newownerpid;
uint32_t checksPerSecond = 10;
do {
newownerpid = mylock();
if (newownerpid<0) {
lzfs_pretty_errlog(LOG_ERR,
"fcntl error while creating lockfile %s",
lockPath.c_str());
return LockStatus::kFail;
}
if (newownerpid>0) {
l++;
uint32_t secondsElapsed = l / checksPerSecond;
if (secondsElapsed >= timeout) {
lzfs_pretty_syslog(LOG_ERR,
"about %" PRIu32 " seconds passed and the lock %s still exists - giving up",
secondsElapsed, lockPath.c_str());
return LockStatus::kFail;
}
if (l % (10 * checksPerSecond) == 0) {
lzfs_pretty_syslog(LOG_WARNING,
"about %" PRIu32 " seconds passed and the lock %s still exists...",
secondsElapsed, lockPath.c_str());
fflush(stderr);
}
if (newownerpid!=ownerpid) {
lzfs_silent_syslog(LOG_INFO, "new lock owner of %s detected", lockPath.c_str());
if (runmode==RunMode::kKill) {
if (kill(newownerpid,SIGKILL)<0) {
lzfs_pretty_errlog(LOG_ERR,
"can't kill (SIGKILL) the lock owner (pid:%ld) of %s",
(long int)newownerpid, lockPath.c_str());
return LockStatus::kFail;
}
} else {
sassert((runmode == RunMode::kStop) || (runmode == RunMode::kRestart));
if (kill(newownerpid,SIGTERM)<0) {
lzfs_pretty_errlog(LOG_ERR,
"can't kill (SIGTERM) lock owner (pid:%ld) of %s",
(long int)newownerpid, lockPath.c_str());
return LockStatus::kFail;
}
}
ownerpid = newownerpid;
}
}
usleep(1000000 / checksPerSecond);
} while (newownerpid!=0);
return (runmode == RunMode::kRestart) ? LockStatus::kAgain : LockStatus::kSuccess;
}
if (runmode==RunMode::kStart || runmode==RunMode::kRestart) {
lzfs_pretty_syslog(LOG_INFO,"lockfile %s created and locked", lockPath.c_str());
} else if (runmode==RunMode::kStop || runmode==RunMode::kKill) {
lzfs_pretty_syslog(LOG_WARNING,"can't find process to terminate");
return LockStatus::kSuccess;
} else if (runmode==RunMode::kReload) {
lzfs_pretty_syslog(LOG_ERR,"can't find process to send reload signal");
return LockStatus::kFail;
} else if (runmode==RunMode::kTest) {
fprintf(stderr, STR(APPNAME) " is not running\n");
} else if (runmode==RunMode::kIsAlive) {
return LockStatus::kSuccess;
}
return LockStatus::kSuccess;
}
void makedaemon() {
int f;
uint8_t pipebuff[1000];
ssize_t r;
size_t happy;
int piped[2];
fflush(stdout);
fflush(stderr);
if (pipe(piped)<0) {
lzfs_pretty_syslog(LOG_ERR, "pipe error");
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
f = fork();
if (f<0) {
lzfs_pretty_errlog(LOG_ERR, "first fork error");
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
if (f>0) {
wait(&f); // just get child status - prevents child from being zombie during initialization stage
if (f) {
lzfs_pretty_syslog(LOG_ERR, "child status: %d",f);
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
close(piped[1]);
while ((r=read(piped[0],pipebuff,1000))) {
if (r>0) {
if (pipebuff[r-1]==0) { // zero as a last char in the pipe means error
if (r>1) {
happy = fwrite(pipebuff,1,r-1,stderr);
(void)happy;
}
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
happy = fwrite(pipebuff,1,r,stderr);
(void)happy;
} else {
lzfs_pretty_errlog(LOG_ERR,"error reading pipe");
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
}
exit(LIZARDFS_EXIT_STATUS_SUCCESS);
}
setsid();
setpgid(0,getpid());
f = fork();
if (f<0) {
lzfs_pretty_errlog(LOG_ERR,"second fork error");
if (write(piped[1],"fork error\n",11)!=11) {
lzfs_pretty_errlog(LOG_ERR,"pipe write error");
}
close(piped[1]);
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
if (f>0) {
exit(LIZARDFS_EXIT_STATUS_SUCCESS);
}
set_signal_handlers(1);
close(STDIN_FILENO);
sassert(open("/dev/null", O_RDWR, 0)==STDIN_FILENO);
close(STDOUT_FILENO);
sassert(dup(STDIN_FILENO)==STDOUT_FILENO);
close(STDERR_FILENO);
sassert(dup(piped[1])==STDERR_FILENO);
close(piped[1]);
// close all inherited file descriptors
int open_max = sysconf(_SC_OPEN_MAX);
for (int i = 3; i < open_max; i++) {
if (i == signalpipe[0] || i == signalpipe[1]) {
continue;
}
close(i);
}
}
void close_msg_channel() {
fflush(stderr);
close(STDERR_FILENO);
sassert(open("/dev/null", O_RDWR, 0)==STDERR_FILENO);
}
void createpath(const char *filename) {
char pathbuff[1024];
const char *src = filename;
char *dst = pathbuff;
if (*src=='/') *dst++=*src++;
while (*src) {
while (*src!='/' && *src) {
*dst++=*src++;
}
if (*src=='/') {
*dst='\0';
if (mkdir(pathbuff,(mode_t)0777)<0) {
if (errno!=EEXIST) {
lzfs_pretty_errlog(LOG_NOTICE,"creating directory %s",pathbuff);
}
} else {
lzfs_pretty_syslog(LOG_NOTICE,"directory %s has been created",pathbuff);
}
*dst++=*src++;
}
}
}
void usage(const char *appname) {
printf(
"usage: %s [-vdu] [-t locktimeout] [-c cfgfile] [start|stop|restart|reload|test|isalive]\n"
"\n"
"-v : print version number and exit\n"
"-d : run in foreground\n"
"-u : log undefined config variables\n"
"-t locktimeout : how long wait for lockfile\n"
"-c cfgfile : use given config file\n"
"-p pidfile : write pid to given file\n"
"-o extra_option : module specific extra option\n"
,appname);
exit(LIZARDFS_EXIT_STATUS_ERROR);
}
void makePidFile(const std::string &name) {
if (name.empty()) {
return;
}
std::ofstream ofs(name, std::ios_base::out | std::ios_base::trunc);
if (ofs.fail()) {
lzfs_pretty_syslog(LOG_WARNING, "failed to create pid file: %s",
name.c_str());
return;
}
ofs << std::to_string(getpid()) << std::endl;
}
int main(int argc,char **argv) {
char *wrkdir;
char *appname;
int ch;
int logundefined;
int lockmemory;
int32_t nicelevel;
uint32_t locktimeout;
struct rlimit rls;
std::string default_cfgfile = ETC_PATH "/" STR(APPNAME) ".cfg";
std::string cfgfile = default_cfgfile;
std::string pidfile;
prepareEnvironment();
mycrc32_init();
locktimeout = 1800;
RunMode runmode = RunMode::kRestart;
logundefined = 0;
lockmemory = 0;
appname = argv[0];
while ((ch = getopt(argc, argv, "o:c:p:dht:uvx?")) != -1) {
switch(ch) {
case 'v':
printf("version: %s\n",LIZARDFS_PACKAGE_VERSION);
return 0;
case 'd':
gRunAsDaemon = false;
break;
case 't':
locktimeout=strtoul(optarg,NULL,10);
break;
case 'o':
gExtraArguments.emplace_back(optarg);
break;
case 'c':
cfgfile = optarg;
break;
case 'p':
pidfile = optarg;
break;
case 'u':
logundefined=1;
break;
case 'x':
++gVerbosity;
break;
default:
usage(appname);
return LIZARDFS_EXIT_STATUS_ERROR;
}
}
argc -= optind;
argv += optind;
if (argc==1) {
if (strcasecmp(argv[0],"start")==0) {
runmode = RunMode::kStart;
} else if (strcasecmp(argv[0],"stop")==0) {
runmode = RunMode::kStop;
} else if (strcasecmp(argv[0],"restart")==0) {
runmode = RunMode::kRestart;
} else if (strcasecmp(argv[0],"reload")==0) {
runmode = RunMode::kReload;
} else if (strcasecmp(argv[0],"test")==0) {
runmode = RunMode::kTest;
} else if (strcasecmp(argv[0],"kill")==0) {
runmode = RunMode::kKill;
} else if (strcasecmp(argv[0],"isalive")==0) {
runmode = RunMode::kIsAlive;
} else {
usage(appname);
return LIZARDFS_EXIT_STATUS_ERROR;
}
} else if (argc!=0) {
usage(appname);
return LIZARDFS_EXIT_STATUS_ERROR;
}
if (gRunAsDaemon) {
lzfs::add_log_stderr(lzfs::log_level::warn);
} else {
lzfs::add_log_stderr(lzfs::log_level::debug);
}
if (runmode==RunMode::kStart || runmode==RunMode::kRestart) {
if (gRunAsDaemon) {
makedaemon();
} else {
set_signal_handlers(0);
}
makePidFile(pidfile);
}
if (cfg_load(cfgfile.c_str(), logundefined)==0) {
lzfs_pretty_syslog(LOG_WARNING, "configuration file %s not found - using defaults; "
"please create %s to remove this warning "
"(to get a base configuration you can copy corresponding file from /usr/share/doc/lizardfs-master/examples)",
cfgfile.c_str(), default_cfgfile.c_str());
} else if (runmode==RunMode::kStart || runmode==RunMode::kRestart) {
lzfs_pretty_syslog(LOG_INFO, "configuration file %s loaded", cfgfile.c_str());
}
main_configure_debug_log();
if (runmode==RunMode::kStart || runmode==RunMode::kRestart) {
if (!open_pam_session()) {
rls.rlim_cur = LIZARDFS_MAX_FILES;
rls.rlim_max = LIZARDFS_MAX_FILES;
if (setrlimit(RLIMIT_NOFILE, &rls) < 0) {
lzfs_pretty_syslog(
LOG_WARNING,
"can't change open files limit to %u, check restrictions with `ulimit -n'",
LIZARDFS_MAX_FILES);
} else {
lzfs_pretty_syslog(
LOG_INFO, "failed to use system open files limit, changed to default value %u",
LIZARDFS_MAX_FILES);
}
}
lockmemory = cfg_getnum("LOCK_MEMORY",0);
#ifdef MFS_USE_MEMLOCK
if (lockmemory) {
rls.rlim_cur = RLIM_INFINITY;
rls.rlim_max = RLIM_INFINITY;
setrlimit(RLIMIT_MEMLOCK,&rls);
}
#endif
nicelevel = cfg_getint32("NICE_LEVEL",-19);
setpriority(PRIO_PROCESS,getpid(),nicelevel);
}
changeugid(runmode);
wrkdir = cfg_getstr("DATA_PATH",DATA_PATH);
if (chdir(wrkdir)<0) {
lzfs_pretty_syslog(LOG_ERR,"can't set working directory to %s",wrkdir);
if (gRunAsDaemon) {
fputc(0,stderr);
close_msg_channel();
}
closelog();
return LIZARDFS_EXIT_STATUS_ERROR;
} else {
if (runmode==RunMode::kStart || runmode==RunMode::kRestart) {
lzfs_pretty_syslog(LOG_INFO,"changed working directory to: %s",wrkdir);
}
}
free(wrkdir);
umask(cfg_getuint32("FILE_UMASK",027)&077);
eventloop_pollregister(signal_pipe_desc, signal_pipe_serv);
if (!initialize_early()) {
if (gRunAsDaemon) {
fputc(0, stderr);
close_msg_channel();
}
closelog();
return LIZARDFS_EXIT_STATUS_ERROR;
}
// Only kStart should check for lock file consistency
FileLock fl(runmode, locktimeout);
if (fl.lockstatus() == FileLock::LockStatus::kFail) {
if (gRunAsDaemon) {
fputc(0,stderr);
close_msg_channel();
}
closelog();
return LIZARDFS_EXIT_STATUS_ERROR;
}
if (runmode==RunMode::kStop || runmode==RunMode::kKill || runmode==RunMode::kReload
|| runmode==RunMode::kTest || runmode==RunMode::kIsAlive) {
if (gRunAsDaemon) {
close_msg_channel();
}
closelog();
if (runmode==RunMode::kIsAlive) {
FileLock::LockStatus lockstatus = fl.lockstatus();
sassert((lockstatus == FileLock::LockStatus::kSuccess)
|| (lockstatus == FileLock::LockStatus::kAlive));
return (lockstatus == FileLock::LockStatus::kAlive
? LIZARDFS_EXIT_STATUS_SUCCESS : LIZARDFS_EXIT_STATUS_NOT_ALIVE);
} else {
return LIZARDFS_EXIT_STATUS_SUCCESS;
}
}
#ifdef MFS_USE_MEMLOCK
if (lockmemory) {
if (getrlimit(RLIMIT_MEMLOCK,&rls)<0) {
lzfs_pretty_errlog(LOG_WARNING,"error getting memory lock limits");
} else {
if (rls.rlim_cur!=RLIM_INFINITY && rls.rlim_max==RLIM_INFINITY) {
rls.rlim_cur = RLIM_INFINITY;
rls.rlim_max = RLIM_INFINITY;
if (setrlimit(RLIMIT_MEMLOCK,&rls)<0) {
lzfs_pretty_errlog(LOG_WARNING,"error setting memory lock limit to unlimited");
}
}
if (getrlimit(RLIMIT_MEMLOCK,&rls)<0) {
lzfs_pretty_errlog(LOG_WARNING,"error getting memory lock limits");
} else {
if (rls.rlim_cur!=RLIM_INFINITY) {
lzfs_pretty_errlog(LOG_WARNING,"can't set memory lock limit to unlimited");
} else {
if (mlockall(MCL_CURRENT|MCL_FUTURE)<0) {
lzfs_pretty_errlog(LOG_WARNING,"memory lock error");
} else {
lzfs_pretty_syslog(LOG_NOTICE,"process memory was successfully locked in RAM");
}
}
}
}
}
#else
if (lockmemory) {
lzfs_pretty_syslog(LOG_WARNING,"trying to lock memory, but memory lock not supported");
}
#endif
if (initialize()) {
if (getrlimit(RLIMIT_NOFILE,&rls)==0) {
lzfs_pretty_syslog(LOG_NOTICE,"open files limit: %lu",(unsigned long)(rls.rlim_cur));
}
lzfs_pretty_syslog(LOG_NOTICE, STR(APPNAME)" daemon initialized properly");
#ifdef LIZARDFS_HAVE_SYSTEMD_SD_DAEMON_H
sd_notify(0, "READY=1\nSTATUS=" STR(APPNAME) " daemon initialized properly.\n");
#endif
set_syslog_ident();
if (gRunAsDaemon) {
close_msg_channel();
}
if (initialize_late()) {
eventloop_reloadregister(main_reload); // this will be the first thing to do
eventloop_run();
ch=LIZARDFS_EXIT_STATUS_SUCCESS;
} else {
ch=LIZARDFS_EXIT_STATUS_ERROR;
}
} else {
if (gRunAsDaemon) {
fputc(0,stderr);
close_msg_channel();
}
ch=LIZARDFS_EXIT_STATUS_ERROR;
}
eventloop_destruct();
eventloop_release_resources();
signal_cleanup();
cfg_term();
closelog();
close_pam_session();
return ch;
}
|