30

我正在研究 Linux 内核,但遇到了问题。

我看到很多 Linux 内核源文件都有current->files. 那么是什么current

struct file *fget(unsigned int fd)
{
     struct file *file;
     struct files_struct *files = current->files;

     rcu_read_lock();
     file = fcheck_files(files, fd);
     if (file) {
             /* File object ref couldn't be taken */
             if (file->f_mode & FMODE_PATH ||
                 !atomic_long_inc_not_zero(&file->f_count))
                     file = NULL;
     }
     rcu_read_unlock();

     return file;
 }
4

2 回答 2

41

它是指向当前进程(即发出系统调用的进程)的指针。

在 x86 上,它在arch/x86/include/asm/current.h(其他拱门的类似文件)中定义。

#ifndef _ASM_X86_CURRENT_H
#define _ASM_X86_CURRENT_H

#include <linux/compiler.h>
#include <asm/percpu.h>

#ifndef __ASSEMBLY__
struct task_struct;

DECLARE_PER_CPU(struct task_struct *, current_task);

static __always_inline struct task_struct *get_current(void)
{
    return percpu_read_stable(current_task);
}

#define current get_current()

#endif /* __ASSEMBLY__ */

#endif /* _ASM_X86_CURRENT_H */

Linux 设备驱动程序第 2 章中的更多信息:

当前指针是指当前正在执行的用户进程。在执行系统调用(例如 open 或 read)期间,当前进程是调用该调用的进程。如果需要,内核代码可以通过使用 current 来使用特定于进程的信息。[...]

于 2012-09-15T05:11:29.190 回答
3

Current是类型的全局变量struct task_struct。您可以在 [1] 中找到它的定义。

Files是一个struct files_struct,它包含当前进程使用的文件的信息。

[1] http://students.mimuw.edu.pl/SO/LabLinux/PROCESY/ZRODLA/sched.h.html

于 2012-09-15T05:13:17.893 回答