有没有简单的C或C++修改selinux上下文的API?
在 C 或 C++ 中,如果我想修改文件的文件系统权限,我可以使用标准库函数 (chmod),它与可以从 UNIX 提示符执行的实用程序非常相似。
是否有一种相当简单的方法来设置文件的 selinux 上下文?如果是这样,我需要链接到哪些库以及需要包含哪些头文件?与命令行实用程序 chcon 一样易于使用的东西将是理想的。
In C or C++ if I want to modify the filesystem permissions of a file I can us a standard library function (chmod), which is very similar to the utility that one can execute from the UNIX prompt.
Is there an equivalently simple way to set the selinux context for a file? If so, what libraries do I need to link to and what header files need to be included? Something which is similarly simple to use as the command line utility chcon would be ideal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是您正在寻找的功能。您必须链接 libselinux。
is probably the function you are looking for. You have to link against libselinux.