- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
inode
存在于 /proc/**/fd/*
/proc/**/exe
中查找可执行路径的Linux 内核模块最佳答案
proc_inode
struct和 PROC_I
macro都是内部的。见 [PATCH 27/28] proc: Make the PROC_I() and PDE() macros internal toprocfs [RFC] .
相反,如何迭代 inode 的 dentry 列表呢?您可以使用 dentry_path_raw()寻找 /*/fd/*
路径名:
//struct inode *proc_inode;
struct dentry *dentry;
pid_t pid;
int found_match = 0;
printk(KERN_DEBUG "superblock type name: %s\n", proc_inode->i_sb->s_type->name);
// An inode's dentry list is protected by the i_lock. See:
// - "dcache->d_inode->i_lock protects: i_dentry, d_u.d_alias, d_inode of aliases"
// http://lxr.free-electrons.com/source/fs/dcache.c?v=4.0#L48
// - The implementation of d_prune_aliases()
// http://lxr.free-electrons.com/source/fs/dcache.c?v=4.0#L882
spin_lock(&proc_inode->i_lock);
hlist_for_each_entry(dentry, &proc_inode->i_dentry, d_u.d_alias) {
char buf[64];
const char *path_raw;
char c;
path_raw = dentry_path_raw(dentry, buf, sizeof(buf));
// dentry_path_raw() places the path into `buf'. If `buf' is not large
// enough, then continue on to the next dentry.
if (!(buf <= path_raw && path_raw <= buf + sizeof(buf) - 1)) {
printk(KERN_DEBUG "`buf' not large enough, dentry_path_raw() returned %ld\n", PTR_ERR(path_raw));
continue;
}
printk(KERN_DEBUG "path_raw = %s\n", path_raw);
// We're looking to match: ^/(\d*)/fd/
if (*path_raw++ != '/') continue;
pid = 0;
for (c = *path_raw; c; c = *++path_raw) {
if ('0' <= c && c <= '9') {
pid = 10 * pid + (c - '0');
} else {
break;
}
}
if (*path_raw++ != '/') continue;
if (*path_raw++ != 'f') continue;
if (*path_raw++ != 'd') continue;
if (*path_raw != '/' && *path_raw != '\0') continue;
// Found a match. Break the dentry list loop.
found_match = 1;
printk(KERN_DEBUG "breaking dentry list loop\n");
break;
}
spin_unlock(&proc_inode->i_lock);
if (found_match) {
printk(KERN_DEBUG "pid = %d\n", (int)pid);
}
关于path - linux内核模块中fd inode的可执行路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16317923/
正如我不断发现的那样,有各种各样的文件描述符——几乎所有的东西都是围绕文件描述符抽象出来的:常规文件、套接字、信号和计时器(例如)。所有文件描述符都只是整数。 给定一个文件描述符,是否可以知道它是什么
socket fd 长什么样子? 什么是 socket fd ?粗糙的来讲,就是网络 fd,比如我们最常见的 C/S 客户端服务端的编程模式,就是网络通信的一种方式。撇开底层
如果我调用了shutdown(fd,SHUT_RDWR),但没有调用close(fd),会发生什么? inline void CSocket::close() { if (_socket_fd
我有以下结构: struct myfds_for_nic { int fd1; int fd2; int fd3; int fd4; int fd5;
fd 是否有等价于 fseek 的东西?我已经使用 int fds 很长时间了,想使用 fseek...但我知道没有搜索功能。 提前致谢! 最佳答案 参见 POSIX 函数 lseek(2) : SY
我正在使用 Clojure 的 core.logic CLP(FD) 库(core.logic 版本 0.8.3)开发一种简单的方形打包算法。 正方形的表示方式如下: [[[x11 y11] [x12
我正在学习 linux 操作系统,我有一个关于管道的问题。 我想实现一个管道。 所以我定义了int fd[2]; 但是为什么fd[0]是读而fd[1]是写呢? 0代表stdin吗? (我认为是写)而1
我知道进程的pid,需要获取它使用的socketfd,所以在/proc/$pid/中查找fd,例如: $ ls -la /proc/1442/fd | grep socket lrwx------ 1
我正在检查当前 fatrace 的源代码。 调用fanotify获取数据值的主循环如下: res = read (fan_fd, buffer, 4096); ... data
Docker daemon documentation建议大多数设置使用以下 hosts 选项: dockerd -H fd:// 我猜 fd 代表文件描述符。我不明白 fd 如何用于套接字通信。 我
在执行之前:os.read(fd,1024) 我想检查是否会有输出,而不是挂起直到收到输出。由于 fd 是一个 int 对象,我不能这样做: os.fstat(f.fileno()).st_size
我有一个程序 ( https://github.com/raboof/connbeat ) 依赖于 /proc/[pid]/fd/* 来查找给定(网络)inode 的进程。 /proc/[pid]/f
#define STACK_SIZE (1024 * 1024) static char container_stack[STACK_SIZE]; char* const container_args
inotify file in C 我看过下面的代码用来调用 (void) inotify_rm_watch(fd, wd); (void) close(fd); 为什么不呢? inotify_rm_
下面的小 C 程序(我们称之为 pointless): /* pointless.c */ #include #include void main(){ write(STDOUT_FILENO
考虑这个代码示例: #include #include #include int main() { //this file exists and contains data: "ABCD
在父进程中close(fd[1]);, 为什么它会跳过第一个 fd[1](替换为父 STD_OUT)并在子进程中关闭 fd[1]? #define STD_INPUT 0 #define STD_OU
需要使用代理设置运行模拟器,我在命令提示符下使用以下命令来启动模拟器 emulator -avd AVD_for_3_7_WVGA_Nexus_One -http-proxy http://usern
我正在 appcelerator studio 中创建应用程序。在我向其添加 admob 模块之前,它在我的 Android 6 Lenovo a7000 上正常运行。现在我收到这些错误: [ERRO
我不明白必须如何解决以下问题。非常感谢任何帮助学习如何解决这个问题的人! Consider Relation Schema R = {ABCDEFG} with a set of Functional
我是一名优秀的程序员,十分优秀!