如何解决“不允许的ptrace操作"?尝试将GDB附加到进程时? [英] How to solve "ptrace operation not permitted" when trying to attach GDB to a process?

查看:1666
本文介绍了如何解决“不允许的ptrace操作"?尝试将GDB附加到进程时?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用gdb附加程序,但它返回:

I'm trying to attach a program with gdb but it returns:

附加到处理29139
无法附加到进程.如果您的uid与目标的uid匹配 进程,请检查/proc/sys/kernel/yama/ptrace_scope的设置,或尝试 再次以root用户身份.有关更多详细信息,请参见/etc/sysctl.d/10-ptrace.conf
ptrace:不允许操作.

Attaching to process 29139
Could not attach to process. If your uid matches the uid of the target process, check the setting of /proc/sys/kernel/yama/ptrace_scope, or try again as the root user. For more details, see /etc/sysctl.d/10-ptrace.conf
ptrace: Operation not permitted.

gdb-debugger返回无法附加到进程,请检查特权,然后重试."

gdb-debugger returns "Failed to attach to process, please check privileges and try again."

strace返回"attach:ptrace(PTRACE_ATTACH,...):不允许操作"

strace returns "attach: ptrace(PTRACE_ATTACH, ...): Operation not permitted"

我将"kernel.yama.ptrace_scope" 1更改为0,将/proc/sys/kernel/yama/ptrace_scope 1更改为0,并尝试使用set environment LD_PRELOAD=./ptrace.so:

I changed "kernel.yama.ptrace_scope" 1 to 0 and /proc/sys/kernel/yama/ptrace_scope 1 to 0 and tried set environment LD_PRELOAD=./ptrace.so with this:

#include <stdio.h>
int ptrace(int i, int j, int k, int l) {
    printf(" ptrace(%i, %i, %i, %i), returning -1\n", i, j, k, l);
    return 0;
}

但是它仍然返回相同的错误.如何将其附加到调试器?

But it still returns the same error. How can I attach it to debuggers?

推荐答案

如果您使用的是Docker,则可能需要以下选项:

If you are using Docker, you will probably need these options:

docker run --cap-add=SYS_PTRACE --security-opt seccomp=unconfined

这篇关于如何解决“不允许的ptrace操作"?尝试将GDB附加到进程时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆