go語言獲取傳送訊號的程序pid
阿新 • • 發佈:2019-02-19
背景
今天在釋出一個程式之前,給qa提測的時候,qa反饋程式執行10幾分鐘之後,退出了
排查過程
在程式中加日誌,發現程式捕獲到了一個SIGTERM訊號,然後做了一些退出前的清理工作(在退出之前,該傳送的資料還是需要傳送的)。然後就需要知道到底是那個程序向我傳送SIGTERM訊號
程式碼
查了一下,貌似go語言沒有直接的傳送獲取向自己傳送訊號的程序的pid,需要嵌入一段c語言程式碼,獲取到pid之後,為了更直觀的知道是那個可執行程式,可以去讀取/proc/${pid}/exe這個軟鏈
package main
/*
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <unistd.h>
struct sigaction old_action;
void handler(int signum, siginfo_t *info, void *context) {
printf("Sent by %d\n", info->si_pid);
char path[1024];
char res[1024];
memset(path, '\0', sizeof(path));
memset(res, '\0', sizeof(res));
snprintf(path, sizeof(path), "/proc/%d /exe", info->si_pid);
if (-1 == readlink(path, res, sizeof(res))) {
printf("fail to get the symblic link of %s\n", path);
} else {
printf("the symblic link of %s is: %s\n", path, res);
}
}
void test() {
struct sigaction action;
sigaction(SIGTERM, NULL, &action);
memset(&action, 0 , sizeof action);
sigfillset(&action.sa_mask);
action.sa_sigaction = handler;
action.sa_flags = SA_NOCLDSTOP | SA_SIGINFO | SA_ONSTACK;
sigaction(SIGTERM, &action, &old_action);
}
*/
import "C"
......
......
func main() {
......
C.test()
......
}