1 #include <linux/module.h>
2 #include <linux/sched.h>
4 #include <linux/path.h>
5 #include <linux/slab.h>
6 #include <linux/fs_struct.h>
9 * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
12 void set_fs_root(struct fs_struct *fs, struct path *path)
17 write_seqcount_begin(&fs->seq);
21 write_seqcount_end(&fs->seq);
22 spin_unlock(&fs->lock);
24 path_put_long(&old_root);
28 * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
31 void set_fs_pwd(struct fs_struct *fs, struct path *path)
36 write_seqcount_begin(&fs->seq);
40 write_seqcount_end(&fs->seq);
41 spin_unlock(&fs->lock);
44 path_put_long(&old_pwd);
47 void chroot_fs_refs(struct path *old_root, struct path *new_root)
49 struct task_struct *g, *p;
53 read_lock(&tasklist_lock);
54 do_each_thread(g, p) {
59 write_seqcount_begin(&fs->seq);
60 if (fs->root.dentry == old_root->dentry
61 && fs->root.mnt == old_root->mnt) {
62 path_get_long(new_root);
66 if (fs->pwd.dentry == old_root->dentry
67 && fs->pwd.mnt == old_root->mnt) {
68 path_get_long(new_root);
72 write_seqcount_end(&fs->seq);
73 spin_unlock(&fs->lock);
76 } while_each_thread(g, p);
77 read_unlock(&tasklist_lock);
79 path_put_long(old_root);
82 void free_fs_struct(struct fs_struct *fs)
84 path_put_long(&fs->root);
85 path_put_long(&fs->pwd);
86 kmem_cache_free(fs_cachep, fs);
89 void exit_fs(struct task_struct *tsk)
91 struct fs_struct *fs = tsk->fs;
97 write_seqcount_begin(&fs->seq);
100 write_seqcount_end(&fs->seq);
101 spin_unlock(&fs->lock);
108 struct fs_struct *copy_fs_struct(struct fs_struct *old)
110 struct fs_struct *fs = kmem_cache_alloc(fs_cachep, GFP_KERNEL);
111 /* We don't need to lock fs - think why ;-) */
115 spin_lock_init(&fs->lock);
116 seqcount_init(&fs->seq);
117 fs->umask = old->umask;
119 spin_lock(&old->lock);
120 fs->root = old->root;
121 path_get_long(&fs->root);
123 path_get_long(&fs->pwd);
124 spin_unlock(&old->lock);
129 int unshare_fs_struct(void)
131 struct fs_struct *fs = current->fs;
132 struct fs_struct *new_fs = copy_fs_struct(fs);
139 spin_lock(&fs->lock);
141 current->fs = new_fs;
142 spin_unlock(&fs->lock);
143 task_unlock(current);
150 EXPORT_SYMBOL_GPL(unshare_fs_struct);
152 int current_umask(void)
154 return current->fs->umask;
156 EXPORT_SYMBOL(current_umask);
158 /* to be mentioned only in INIT_TASK */
159 struct fs_struct init_fs = {
161 .lock = __SPIN_LOCK_UNLOCKED(init_fs.lock),
166 void daemonize_fs_struct(void)
168 struct fs_struct *fs = current->fs;
175 spin_lock(&init_fs.lock);
177 spin_unlock(&init_fs.lock);
179 spin_lock(&fs->lock);
180 current->fs = &init_fs;
182 spin_unlock(&fs->lock);
184 task_unlock(current);