这听起来像是一个奇怪的问题,但是当我去打开一个文件时:
int fd;
fd = open("/dev/somedevice", O_RDWR);
我到底要回来什么?我可以看到手册页说:
The open() function shall return a file descriptor for the named file that is the lowest file descriptor not currently open for that process
但就是这样吗?它只是一个int
还是在幕后附加了数据?我问的原因是我发现了一些代码(Linux/C),我们从用户空间打开文件:
//User space code:
int fdC;
if ((fdC = open(DEVICE, O_RDWR)) < 0) {
printf("Error opening device %s (%s)\n", DEVICE, strerror(errno));
goto error_exit;
}
while (!fQuit) {
if ((nRet = read(fdC, &rx_message, 1)) > 0) {
然后在内核端,此模块(提供 fd)映射的文件操作读取到n_read()
函数:
struct file_operations can_fops = {
owner: THIS_MODULE,
lseek: NULL,
read: n_read,
然后在 中使用文件描述符n_read()
,但正在访问它以获取数据:
int n_read(struct file *file, char *buffer, size_t count, loff_t *loff)
{
data_t * dev;
dev = (data_t*)file->private_data;
所以......我认为这里发生的事情是:
A)从返回的文件描述符open()
包含更多数据,而不仅仅是描述性整数值
或
B)在用户空间中对“读取”的调用之间的映射并不像我想象的那么简单,并且有一些代码在这个等式中缺失。
有什么可以帮助指导我的意见吗?