Linux获取挂载点的函数
标准 Linux 库中是否有一个函数(或接口;ioctl、netlink 等)可以直接从内核返回当前挂载而不解析 /proc? strace
挂载命令,看起来它解析/proc中的文件
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
标准 Linux 库中是否有一个函数(或接口;ioctl、netlink 等)可以直接从内核返回当前挂载而不解析 /proc? strace
挂载命令,看起来它解析/proc中的文件
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您是否有任何理由不使用
getmntent
libc 库调用?我确实意识到它与“一体化”系统调用不同,但它应该允许您获取相关信息。澄清
考虑到OP澄清了尝试在不安装
/proc
的情况下执行此操作,我将澄清:话虽如此,如果您没有安装
/proc
,则必须解析/etc/mtab
文件 - 传入/etc/mtab< /code> 而不是
/proc/mounts
进行初始setmntent
调用。这是一个商定的协议,
mount
和unmount
命令将在文件 /etc/ 中维护当前已挂载的文件系统的列表。 mtab。几乎所有 linux/unix/bsd 这些命令的手册页。因此,如果您没有/proc
,您可以某种程度上依赖此文件的内容。不能保证它是事实的来源,但约定就是这些事情的约定。因此,如果您没有
/proc
,您可以在下面的getmntent
libc 库调用中使用/etc/mtab
来获取列表文件系统;否则,您可以使用/proc/mounts
或/proc/self/mountinfo
之一(现在推荐使用/proc/mounts
)。Is there any reason that you would not use the
getmntent
libc library call? I do realize that it's not the same as an 'all in one' system call, but it should allow you to get the relevant information.Clarification
Considering that the OP clarified about trying to do this without having
/proc
mounted, I'm going to clarify:With that said, if you don't have
/proc
mounted, you will have to parse the/etc/mtab
file - pass in/etc/mtab
instead of/proc/mounts
to the initialsetmntent
call.It is an agreed upon protocol that the
mount
andunmount
commands will maintain a list of currently mounted filesystems in the file /etc/mtab. This is detailed in almost all linux/unix/bsd manual pages for these commands. So if you don't have/proc
you can sort of rely on the contents of this file. It's not guaranteed to be a source of truth, but conventions are conventions for these things.So, if you don't have
/proc
, you would use/etc/mtab
in thegetmntent
libc library call below to get the list of file systems; otherwise you could use one of/proc/mounts
or/proc/self/mountinfo
(which is recommended nowadays over/proc/mounts
).没有系统调用来列出此信息;相反,您可以在文件
/etc/mtab
中找到它There is no syscall to list this information; instead, you can find it in the file
/etc/mtab