linux – LD_PRELOAD未在systemd上加载

linux – LD_PRELOAD未在systemd上加载,第1张

概述我试图将一个SO注入一个开始使用systemd init系统的进程(使用LD_PRELOAD),但它没有加载到新进程中. 我编写了一个基本的SO(unrandom.c): int rand(){ return 42; //the most random number in the universe} 使用命令行: gcc -shared -fPIC unrandom.c -o unran 我试图将一个SO注入一个开始使用systemd init系统的进程(使用LD_PRELOAD),但它没有加载到新进程中.

我编写了一个基本的SO(unrandom.c):

int rand(){    return 42; //the most random number in the universe}

使用命令行:

gcc -shared -fPIC unrandom.c -o unrandom.so

我将.service文件更改为包括:

Environment="LD_PRELOAD=/tmp/unrandom.so"

启动服务后,LD_PRELOAD环境变量存在于进程中,但不会注入SO

cat /proc/<PID>/maps

我错过了什么吗?

我的机器是RHEL7

解决方法 由于安全原因,SetuID进程限制LD_PRELOAD(和一些其他环境变量)的使用.

加载的库必须仅通过名称指定,并且位于/etc/ld.so.conf中列出的目录之一(参见例如this link).例如,基于Debian的系统

sudo cp library.so /usr/lib/x86_64-linux-gnuLD_PRELOAD=library.so daemon

另一种方法是将库的完整路径放到/etc/ld.so.preload:

sudo echo path/to/library.so >> /etc/ld.so.preload

但是它会预先加载到所有新进程(如果你不是非常小心的话,很有可能破坏你的系统).

总结

以上是内存溢出为你收集整理的linux – LD_PRELOAD未在systemd上加载全部内容,希望文章能够帮你解决linux – LD_PRELOAD未在systemd上加载所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/1039949.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存