go语言获取发送信号的进程pid

hs794502825 · · 2859 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

背景

今天在发布一个程序之前,给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()
    ......
}

有疑问加站长微信联系(非本文作者)

本文来自:CSDN博客

感谢作者:hs794502825

查看原文:go语言获取发送信号的进程pid

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

2859 次点击  
加入收藏 微博
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传