2020-01-07 15:10:59 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2019-06-11 09:25:54 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
2019-06-11 09:25:54 +08:00
|
|
|
|
*/
|
|
|
|
|
|
2019-06-24 14:57:12 +08:00
|
|
|
|
#include <limits.h>
|
2019-09-27 09:58:42 +08:00
|
|
|
|
#include <sys/stat.h>
|
2020-01-07 14:37:18 +08:00
|
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
2019-06-24 14:57:12 +08:00
|
|
|
|
#include <sys/resource.h>
|
2019-05-20 11:22:59 +08:00
|
|
|
|
#include <unistd.h>
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#else
|
|
|
|
|
//#include <TlHelp32.h>
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-05-20 11:22:59 +08:00
|
|
|
|
#include <stdexcept>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include "Util/util.h"
|
|
|
|
|
#include "Util/File.h"
|
|
|
|
|
#include "Util/logger.h"
|
|
|
|
|
#include "Util/uv_errno.h"
|
2019-10-24 11:42:39 +08:00
|
|
|
|
#include "Thread/WorkThreadPool.h"
|
2019-05-20 11:22:59 +08:00
|
|
|
|
#include "Process.h"
|
|
|
|
|
using namespace toolkit;
|
|
|
|
|
|
|
|
|
|
void Process::run(const string &cmd, const string &log_file_tmp) {
|
2020-03-20 11:51:24 +08:00
|
|
|
|
kill(2000);
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#ifdef _WIN32
|
2020-03-20 11:51:24 +08:00
|
|
|
|
STARTUPINFO si;
|
|
|
|
|
PROCESS_INFORMATION pi;
|
|
|
|
|
ZeroMemory(&si, sizeof(si)); //结构体初始化;
|
|
|
|
|
ZeroMemory(&pi, sizeof(pi));
|
|
|
|
|
|
|
|
|
|
LPTSTR lpDir = const_cast<char*>(cmd.data());
|
|
|
|
|
|
|
|
|
|
if (CreateProcess(NULL, lpDir, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)){
|
|
|
|
|
//下面两行关闭句柄,解除本进程和新进程的关系,不然有可能 不小心调用TerminateProcess函数关掉子进程
|
|
|
|
|
CloseHandle(pi.hProcess);
|
|
|
|
|
CloseHandle(pi.hThread);
|
|
|
|
|
|
|
|
|
|
_pid = pi.dwProcessId;
|
|
|
|
|
InfoL << "start child proces " << _pid;
|
|
|
|
|
} else {
|
|
|
|
|
WarnL << "start child proces fail: " << GetLastError();
|
|
|
|
|
}
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#else
|
2020-03-20 11:51:24 +08:00
|
|
|
|
_pid = fork();
|
|
|
|
|
if (_pid < 0) {
|
|
|
|
|
throw std::runtime_error(StrPrinter << "fork child process falied,err:" << get_uv_errmsg());
|
|
|
|
|
}
|
|
|
|
|
if (_pid == 0) {
|
|
|
|
|
//子进程关闭core文件生成
|
|
|
|
|
struct rlimit rlim = { 0,0 };
|
|
|
|
|
setrlimit(RLIMIT_CORE, &rlim);
|
|
|
|
|
|
|
|
|
|
//在启动子进程时,暂时禁用SIGINT、SIGTERM信号
|
|
|
|
|
// ignore the SIGINT and SIGTERM
|
|
|
|
|
signal(SIGINT, SIG_IGN);
|
|
|
|
|
signal(SIGTERM, SIG_IGN);
|
|
|
|
|
|
|
|
|
|
string log_file;
|
|
|
|
|
if (log_file_tmp.empty()) {
|
|
|
|
|
log_file = "/dev/null";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
log_file = StrPrinter << log_file_tmp << "." << getpid();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int log_fd = -1;
|
|
|
|
|
int flags = O_CREAT | O_WRONLY | O_APPEND;
|
|
|
|
|
mode_t mode = S_IRWXO | S_IRWXG | S_IRWXU;// S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH;
|
2020-04-24 12:39:22 +08:00
|
|
|
|
File::create_path(log_file.data(), mode);
|
2020-03-20 11:51:24 +08:00
|
|
|
|
if ((log_fd = ::open(log_file.c_str(), flags, mode)) < 0) {
|
|
|
|
|
fprintf(stderr, "open log file %s failed:%d(%s)\r\n", log_file.data(), errno, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// dup to stdout and stderr.
|
|
|
|
|
if (dup2(log_fd, STDOUT_FILENO) < 0) {
|
|
|
|
|
fprintf(stderr, "dup2 stdout file %s failed:%d(%s)\r\n", log_file.data(), errno, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
if (dup2(log_fd, STDERR_FILENO) < 0) {
|
|
|
|
|
fprintf(stderr, "dup2 stderr file %s failed:%d(%s)\r\n", log_file.data(), errno, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
// close log fd
|
|
|
|
|
::close(log_fd);
|
|
|
|
|
}
|
|
|
|
|
fprintf(stderr, "\r\n\r\n#### pid=%d,cmd=%s #####\r\n\r\n", getpid(), cmd.data());
|
|
|
|
|
|
|
|
|
|
// close other fds
|
|
|
|
|
// TODO: do in right way.
|
|
|
|
|
for (int i = 3; i < 1024; i++) {
|
|
|
|
|
::close(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto params = split(cmd, " ");
|
|
|
|
|
// memory leak in child process, it's ok.
|
|
|
|
|
char **charpv_params = new char *[params.size() + 1];
|
|
|
|
|
for (int i = 0; i < (int)params.size(); i++) {
|
|
|
|
|
std::string &p = params[i];
|
|
|
|
|
charpv_params[i] = (char *)p.data();
|
|
|
|
|
}
|
|
|
|
|
// EOF: NULL
|
|
|
|
|
charpv_params[params.size()] = NULL;
|
|
|
|
|
|
|
|
|
|
// TODO: execv or execvp
|
|
|
|
|
auto ret = execv(params[0].c_str(), charpv_params);
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
fprintf(stderr, "fork process failed, errno=%d(%s)\r\n", errno, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
exit(ret);
|
|
|
|
|
}
|
|
|
|
|
InfoL << "start child proces " << _pid;
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#endif // _WIN32
|
2019-05-20 11:22:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-24 11:42:39 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取进程是否存活状态
|
|
|
|
|
* @param pid 进程号
|
|
|
|
|
* @param exit_code_ptr 进程返回代码
|
|
|
|
|
* @param block 是否阻塞等待
|
|
|
|
|
* @return 进程是否还在运行
|
|
|
|
|
*/
|
|
|
|
|
static bool s_wait(pid_t pid,int *exit_code_ptr,bool block) {
|
|
|
|
|
if (pid <= 0) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
int status = 0;
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#ifdef _WIN32
|
2020-03-20 11:51:24 +08:00
|
|
|
|
HANDLE hProcess = NULL;
|
|
|
|
|
hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, pid); //打开目标进程
|
|
|
|
|
if (hProcess == NULL) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-01-07 14:37:18 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
CloseHandle(hProcess);
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#else
|
2020-03-20 11:51:24 +08:00
|
|
|
|
pid_t p = waitpid(pid, &status, block ? 0 : WNOHANG);
|
|
|
|
|
int exit_code = (status & 0xFF00) >> 8;
|
|
|
|
|
if (exit_code_ptr) {
|
|
|
|
|
*exit_code_ptr = (status & 0xFF00) >> 8;
|
|
|
|
|
}
|
|
|
|
|
if (p < 0) {
|
|
|
|
|
WarnL << "waitpid failed, pid=" << pid << ", err=" << get_uv_errmsg();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (p > 0) {
|
|
|
|
|
InfoL << "process terminated, pid=" << pid << ", exit code=" << exit_code;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#endif // _WIN32
|
|
|
|
|
|
2019-10-24 11:42:39 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void s_kill(pid_t pid,int max_delay,bool force){
|
|
|
|
|
if (pid <= 0) {
|
|
|
|
|
//pid无效
|
2019-05-20 11:22:59 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#ifdef _WIN32
|
2020-03-20 11:51:24 +08:00
|
|
|
|
HANDLE hProcess = NULL;
|
|
|
|
|
hProcess = OpenProcess(PROCESS_TERMINATE, FALSE, pid); //打开目标进程
|
|
|
|
|
if (hProcess == NULL) {
|
|
|
|
|
WarnL << "\nOpen Process fAiled: " << GetLastError();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
DWORD ret = TerminateProcess(hProcess, 0); //结束目标进程
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
WarnL << GetLastError;
|
|
|
|
|
}
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#else
|
2020-03-20 11:51:24 +08:00
|
|
|
|
if (::kill(pid, force ? SIGKILL : SIGTERM) == -1) {
|
|
|
|
|
//进程可能已经退出了
|
|
|
|
|
WarnL << "kill process " << pid << " failed:" << get_uv_errmsg();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-01-07 14:37:18 +08:00
|
|
|
|
#endif // _WIN32
|
2019-10-24 11:42:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(force){
|
|
|
|
|
//发送SIGKILL信号后,阻塞等待退出
|
|
|
|
|
s_wait(pid, NULL, true);
|
|
|
|
|
DebugL << "force kill " << pid << " success!";
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//发送SIGTERM信号后,2秒后检查子进程是否已经退出
|
|
|
|
|
WorkThreadPool::Instance().getPoller()->doDelayTask(max_delay,[pid](){
|
|
|
|
|
if (!s_wait(pid, nullptr, false)) {
|
|
|
|
|
//进程已经退出了
|
2019-05-20 11:22:59 +08:00
|
|
|
|
return 0;
|
2019-10-24 11:42:39 +08:00
|
|
|
|
}
|
|
|
|
|
//进程还在运行
|
|
|
|
|
WarnL << "process still working,force kill it:" << pid;
|
|
|
|
|
s_kill(pid,0, true);
|
|
|
|
|
return 0;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Process::kill(int max_delay,bool force) {
|
|
|
|
|
if (_pid <= 0) {
|
|
|
|
|
return;
|
2019-05-20 11:22:59 +08:00
|
|
|
|
}
|
2019-10-24 11:42:39 +08:00
|
|
|
|
s_kill(_pid,max_delay,force);
|
2019-05-20 11:22:59 +08:00
|
|
|
|
_pid = -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Process::~Process() {
|
|
|
|
|
kill(2000);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-24 11:42:39 +08:00
|
|
|
|
Process::Process() {}
|
2019-05-20 11:22:59 +08:00
|
|
|
|
|
|
|
|
|
bool Process::wait(bool block) {
|
2019-10-24 11:42:39 +08:00
|
|
|
|
return s_wait(_pid,&_exit_code,block);
|
2019-05-20 11:22:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int Process::exit_code() {
|
|
|
|
|
return _exit_code;
|
|
|
|
|
}
|