blob: 04b3f5b9c6295e196e16af5cc0eda6ada62a7c7c [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Paul Gortmaker630d9c42011-11-16 23:57:37 -05002#include <linux/export.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +01003#include <linux/sched/signal.h>
Ingo Molnar29930022017-02-08 18:51:36 +01004#include <linux/sched/task.h>
Al Viro3e93cd62009-03-29 19:00:13 -04005#include <linux/fs.h>
6#include <linux/path.h>
7#include <linux/slab.h>
Al Viro5ad4e532009-03-29 19:50:06 -04008#include <linux/fs_struct.h>
Al Virof03c6592011-01-14 22:30:21 -05009#include "internal.h"
10
Al Viro3e93cd62009-03-29 19:00:13 -040011/*
12 * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
13 * It can block.
14 */
Al Virodcf787f2013-03-01 23:51:07 -050015void set_fs_root(struct fs_struct *fs, const struct path *path)
Al Viro3e93cd62009-03-29 19:00:13 -040016{
17 struct path old_root;
18
Al Virof7a99c52012-06-09 00:59:08 -040019 path_get(path);
Nick Piggin2a4419b2010-08-18 04:37:33 +100020 spin_lock(&fs->lock);
Nick Pigginc28cc362011-01-07 17:49:53 +110021 write_seqcount_begin(&fs->seq);
Al Viro3e93cd62009-03-29 19:00:13 -040022 old_root = fs->root;
23 fs->root = *path;
Nick Pigginc28cc362011-01-07 17:49:53 +110024 write_seqcount_end(&fs->seq);
Nick Piggin2a4419b2010-08-18 04:37:33 +100025 spin_unlock(&fs->lock);
Al Viro3e93cd62009-03-29 19:00:13 -040026 if (old_root.dentry)
Al Virof7a99c52012-06-09 00:59:08 -040027 path_put(&old_root);
Al Viro3e93cd62009-03-29 19:00:13 -040028}
29
30/*
31 * Replace the fs->{pwdmnt,pwd} with {mnt,dentry}. Put the old values.
32 * It can block.
33 */
Al Virodcf787f2013-03-01 23:51:07 -050034void set_fs_pwd(struct fs_struct *fs, const struct path *path)
Al Viro3e93cd62009-03-29 19:00:13 -040035{
36 struct path old_pwd;
37
Al Virof7a99c52012-06-09 00:59:08 -040038 path_get(path);
Nick Piggin2a4419b2010-08-18 04:37:33 +100039 spin_lock(&fs->lock);
Nick Pigginc28cc362011-01-07 17:49:53 +110040 write_seqcount_begin(&fs->seq);
Al Viro3e93cd62009-03-29 19:00:13 -040041 old_pwd = fs->pwd;
42 fs->pwd = *path;
Nick Pigginc28cc362011-01-07 17:49:53 +110043 write_seqcount_end(&fs->seq);
Nick Piggin2a4419b2010-08-18 04:37:33 +100044 spin_unlock(&fs->lock);
Al Viro3e93cd62009-03-29 19:00:13 -040045
46 if (old_pwd.dentry)
Al Virof7a99c52012-06-09 00:59:08 -040047 path_put(&old_pwd);
Al Viro3e93cd62009-03-29 19:00:13 -040048}
49
Al Viro82234e62012-03-15 14:48:55 -040050static inline int replace_path(struct path *p, const struct path *old, const struct path *new)
51{
52 if (likely(p->dentry != old->dentry || p->mnt != old->mnt))
53 return 0;
54 *p = *new;
55 return 1;
56}
57
Al Virodcf787f2013-03-01 23:51:07 -050058void chroot_fs_refs(const struct path *old_root, const struct path *new_root)
Al Viro3e93cd62009-03-29 19:00:13 -040059{
60 struct task_struct *g, *p;
61 struct fs_struct *fs;
62 int count = 0;
63
64 read_lock(&tasklist_lock);
65 do_each_thread(g, p) {
66 task_lock(p);
67 fs = p->fs;
68 if (fs) {
Al Viro82234e62012-03-15 14:48:55 -040069 int hits = 0;
Nick Piggin2a4419b2010-08-18 04:37:33 +100070 spin_lock(&fs->lock);
Nick Pigginc28cc362011-01-07 17:49:53 +110071 write_seqcount_begin(&fs->seq);
Al Viro82234e62012-03-15 14:48:55 -040072 hits += replace_path(&fs->root, old_root, new_root);
73 hits += replace_path(&fs->pwd, old_root, new_root);
Nick Pigginc28cc362011-01-07 17:49:53 +110074 write_seqcount_end(&fs->seq);
Al Viro82234e62012-03-15 14:48:55 -040075 while (hits--) {
76 count++;
Al Virof7a99c52012-06-09 00:59:08 -040077 path_get(new_root);
Al Viro82234e62012-03-15 14:48:55 -040078 }
Nick Piggin2a4419b2010-08-18 04:37:33 +100079 spin_unlock(&fs->lock);
Al Viro3e93cd62009-03-29 19:00:13 -040080 }
81 task_unlock(p);
82 } while_each_thread(g, p);
83 read_unlock(&tasklist_lock);
84 while (count--)
Al Virof7a99c52012-06-09 00:59:08 -040085 path_put(old_root);
Al Viro3e93cd62009-03-29 19:00:13 -040086}
87
Al Viro498052b2009-03-30 07:20:30 -040088void free_fs_struct(struct fs_struct *fs)
Al Viro3e93cd62009-03-29 19:00:13 -040089{
Al Virof7a99c52012-06-09 00:59:08 -040090 path_put(&fs->root);
91 path_put(&fs->pwd);
Al Viro498052b2009-03-30 07:20:30 -040092 kmem_cache_free(fs_cachep, fs);
Al Viro3e93cd62009-03-29 19:00:13 -040093}
94
95void exit_fs(struct task_struct *tsk)
96{
Al Viro498052b2009-03-30 07:20:30 -040097 struct fs_struct *fs = tsk->fs;
Al Viro3e93cd62009-03-29 19:00:13 -040098
99 if (fs) {
Al Viro498052b2009-03-30 07:20:30 -0400100 int kill;
Al Viro3e93cd62009-03-29 19:00:13 -0400101 task_lock(tsk);
Nick Piggin2a4419b2010-08-18 04:37:33 +1000102 spin_lock(&fs->lock);
Al Viro3e93cd62009-03-29 19:00:13 -0400103 tsk->fs = NULL;
Al Viro498052b2009-03-30 07:20:30 -0400104 kill = !--fs->users;
Nick Piggin2a4419b2010-08-18 04:37:33 +1000105 spin_unlock(&fs->lock);
Al Viro3e93cd62009-03-29 19:00:13 -0400106 task_unlock(tsk);
Al Viro498052b2009-03-30 07:20:30 -0400107 if (kill)
108 free_fs_struct(fs);
Al Viro3e93cd62009-03-29 19:00:13 -0400109 }
110}
111
112struct fs_struct *copy_fs_struct(struct fs_struct *old)
113{
114 struct fs_struct *fs = kmem_cache_alloc(fs_cachep, GFP_KERNEL);
115 /* We don't need to lock fs - think why ;-) */
116 if (fs) {
Al Viro498052b2009-03-30 07:20:30 -0400117 fs->users = 1;
118 fs->in_exec = 0;
Nick Piggin2a4419b2010-08-18 04:37:33 +1000119 spin_lock_init(&fs->lock);
Ahmed S. Darwish26475372020-07-20 17:55:24 +0200120 seqcount_spinlock_init(&fs->seq, &fs->lock);
Al Viro3e93cd62009-03-29 19:00:13 -0400121 fs->umask = old->umask;
Nick Pigginb3e19d92011-01-07 17:50:11 +1100122
123 spin_lock(&old->lock);
124 fs->root = old->root;
Al Virof7a99c52012-06-09 00:59:08 -0400125 path_get(&fs->root);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100126 fs->pwd = old->pwd;
Al Virof7a99c52012-06-09 00:59:08 -0400127 path_get(&fs->pwd);
Nick Pigginb3e19d92011-01-07 17:50:11 +1100128 spin_unlock(&old->lock);
Al Viro3e93cd62009-03-29 19:00:13 -0400129 }
130 return fs;
131}
132
133int unshare_fs_struct(void)
134{
Al Viro498052b2009-03-30 07:20:30 -0400135 struct fs_struct *fs = current->fs;
136 struct fs_struct *new_fs = copy_fs_struct(fs);
137 int kill;
138
139 if (!new_fs)
Al Viro3e93cd62009-03-29 19:00:13 -0400140 return -ENOMEM;
Al Viro498052b2009-03-30 07:20:30 -0400141
142 task_lock(current);
Nick Piggin2a4419b2010-08-18 04:37:33 +1000143 spin_lock(&fs->lock);
Al Viro498052b2009-03-30 07:20:30 -0400144 kill = !--fs->users;
145 current->fs = new_fs;
Nick Piggin2a4419b2010-08-18 04:37:33 +1000146 spin_unlock(&fs->lock);
Al Viro498052b2009-03-30 07:20:30 -0400147 task_unlock(current);
148
149 if (kill)
150 free_fs_struct(fs);
151
Al Viro3e93cd62009-03-29 19:00:13 -0400152 return 0;
153}
154EXPORT_SYMBOL_GPL(unshare_fs_struct);
155
Al Viroce3b0f82009-03-29 19:08:22 -0400156int current_umask(void)
157{
158 return current->fs->umask;
159}
160EXPORT_SYMBOL(current_umask);
161
Al Viro3e93cd62009-03-29 19:00:13 -0400162/* to be mentioned only in INIT_TASK */
163struct fs_struct init_fs = {
Al Viro498052b2009-03-30 07:20:30 -0400164 .users = 1,
Nick Piggin2a4419b2010-08-18 04:37:33 +1000165 .lock = __SPIN_LOCK_UNLOCKED(init_fs.lock),
Ahmed S. Darwish26475372020-07-20 17:55:24 +0200166 .seq = SEQCNT_SPINLOCK_ZERO(init_fs.seq, &init_fs.lock),
Al Viro3e93cd62009-03-29 19:00:13 -0400167 .umask = 0022,
168};