2

是否可以通过获取进程当前目录struct task_struct?我可以看到它struct fs_structpwd指针,但我无法获得存储此信息的确切变量。

另外,我们可以更改当前目录的值吗?

4

1 回答 1

4

你在一个相当旧的内核上工作,所以我不得不做一些挖掘工作。处理这类事情的一种更简单的方法是查看信息是否在 /proc 中并查看它的作用。如果我们在 fs/proc 中 grep 查找 cwd,我们会发现:

static int proc_cwd_link(struct inode *inode, struct dentry   **dentry,   struct vfsmount **mnt)
{
    struct fs_struct *fs;
    int result = -ENOENT;
    task_lock(inode->u.proc_i.task);
    fs = inode->u.proc_i.task->fs;
    if(fs)
        atomic_inc(&fs->count);
    task_unlock(inode->u.proc_i.task);
    if (fs) {
        read_lock(&fs->lock);
        *mnt = mntget(fs->pwdmnt);
        *dentry = dget(fs->pwd);
        read_unlock(&fs->lock);
        result = 0;
        put_fs_struct(fs);
    }
    return result;
}

proc inode 指向任务(inode->u.proc_i.task,也由 task_lock() 东西给出)。查看 task_struct 定义,它有一个对 struct fs_struct *fs 的引用,它具有 pwd 的 dentry 指针。然而,将 dentry 条目转换为实际名称是另一个练习。

于 2013-03-14T17:05:58.017 回答