blob: d9a3264909d0bf949d8e3bd8e0443cc5eedf4cf6 [file] [log] [blame]
Ian Kente9a7c2f2016-03-15 14:58:25 -07001/*
2 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
3 * Copyright 2005-2006 Ian Kent <raven@themaw.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This file is part of the Linux kernel and is made available under
6 * the terms of the GNU General Public License, version 2, or at your
7 * option, any later version, incorporated herein by reference.
Ian Kente9a7c2f2016-03-15 14:58:25 -07008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#include <linux/kernel.h>
11#include <linux/slab.h>
12#include <linux/file.h>
Ian Kentd7c4a5f2006-03-27 01:14:49 -080013#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/pagemap.h>
15#include <linux/parser.h>
16#include <linux/bitops.h>
17#include "autofs_i.h"
18#include <linux/module.h>
19
Al Viro26e6c912011-01-16 18:43:40 -050020struct autofs_info *autofs4_new_ino(struct autofs_sb_info *sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Ian Kente9a7c2f2016-03-15 14:58:25 -070022 struct autofs_info *ino;
23
24 ino = kzalloc(sizeof(*ino), GFP_KERNEL);
Al Viro26e6c912011-01-16 18:43:40 -050025 if (ino) {
Ian Kent25767372008-07-23 21:30:12 -070026 INIT_LIST_HEAD(&ino->active);
27 INIT_LIST_HEAD(&ino->expiring);
Al Viro26e6c912011-01-16 18:43:40 -050028 ino->last_used = jiffies;
29 ino->sbi = sbi;
Ian Kent25767372008-07-23 21:30:12 -070030 }
Al Viro26e6c912011-01-16 18:43:40 -050031 return ino;
32}
Ian Kent25767372008-07-23 21:30:12 -070033
Al Viro26e6c912011-01-16 18:43:40 -050034void autofs4_clean_ino(struct autofs_info *ino)
35{
Eric W. Biederman45634cd2012-02-07 16:18:52 -080036 ino->uid = GLOBAL_ROOT_UID;
37 ino->gid = GLOBAL_ROOT_GID;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 ino->last_used = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41void autofs4_free_ino(struct autofs_info *ino)
42{
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 kfree(ino);
44}
45
David Howells6ce31522006-10-11 01:22:15 -070046void autofs4_kill_sb(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 struct autofs_sb_info *sbi = autofs4_sbi(sb);
49
Ian Kentba8df432006-11-14 02:03:29 -080050 /*
51 * In the event of a failure in get_sb_nodev the superblock
52 * info is not present so nothing else has been setup, so
Jiri Kosinac949d4e2006-12-06 20:39:38 -080053 * just call kill_anon_super when we are called from
54 * deactivate_super.
Ian Kentba8df432006-11-14 02:03:29 -080055 */
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -080056 if (sbi) {
57 /* Free wait queues, close pipe */
Al Virobaa40672013-10-03 12:46:44 -040058 autofs4_catatonic_mode(sbi);
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -080059 put_pid(sbi->oz_pgrp);
60 }
Ian Kentba8df432006-11-14 02:03:29 -080061
Ian Kent8a78d592016-03-15 14:58:45 -070062 pr_debug("shutting down\n");
Al Viro5b7e9342010-01-24 00:28:52 -050063 kill_litter_super(sb);
Al Virobaa40672013-10-03 12:46:44 -040064 if (sbi)
65 kfree_rcu(sbi, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
Al Viro34c80b12011-12-08 21:32:45 -050068static int autofs4_show_options(struct seq_file *m, struct dentry *root)
Ian Kentd7c4a5f2006-03-27 01:14:49 -080069{
Al Viro34c80b12011-12-08 21:32:45 -050070 struct autofs_sb_info *sbi = autofs4_sbi(root->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +000071 struct inode *root_inode = d_inode(root->d_sb->s_root);
Ian Kentd7c4a5f2006-03-27 01:14:49 -080072
73 if (!sbi)
74 return 0;
75
76 seq_printf(m, ",fd=%d", sbi->pipefd);
Eric W. Biederman45634cd2012-02-07 16:18:52 -080077 if (!uid_eq(root_inode->i_uid, GLOBAL_ROOT_UID))
78 seq_printf(m, ",uid=%u",
79 from_kuid_munged(&init_user_ns, root_inode->i_uid));
80 if (!gid_eq(root_inode->i_gid, GLOBAL_ROOT_GID))
81 seq_printf(m, ",gid=%u",
82 from_kgid_munged(&init_user_ns, root_inode->i_gid));
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -080083 seq_printf(m, ",pgrp=%d", pid_vnr(sbi->oz_pgrp));
Ian Kentd7c4a5f2006-03-27 01:14:49 -080084 seq_printf(m, ",timeout=%lu", sbi->exp_timeout/HZ);
85 seq_printf(m, ",minproto=%d", sbi->min_proto);
86 seq_printf(m, ",maxproto=%d", sbi->max_proto);
87
Ian Kenta92daf62009-01-06 14:42:08 -080088 if (autofs_type_offset(sbi->type))
Ian Kent34ca9592006-03-27 01:14:54 -080089 seq_printf(m, ",offset");
Ian Kenta92daf62009-01-06 14:42:08 -080090 else if (autofs_type_direct(sbi->type))
Ian Kent34ca9592006-03-27 01:14:54 -080091 seq_printf(m, ",direct");
92 else
93 seq_printf(m, ",indirect");
Stanislav Kinsburskiyc83aa552016-03-15 14:58:22 -070094#ifdef CONFIG_CHECKPOINT_RESTORE
95 if (sbi->pipe)
96 seq_printf(m, ",pipe_ino=%ld", sbi->pipe->f_inode->i_ino);
97 else
98 seq_printf(m, ",pipe_ino=-1");
99#endif
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800100 return 0;
101}
102
Al Viro292c5ee2011-01-17 00:47:38 -0500103static void autofs4_evict_inode(struct inode *inode)
104{
Jan Karadbd57682012-05-03 14:48:02 +0200105 clear_inode(inode);
Al Viro292c5ee2011-01-17 00:47:38 -0500106 kfree(inode->i_private);
107}
108
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800109static const struct super_operations autofs4_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 .statfs = simple_statfs,
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800111 .show_options = autofs4_show_options,
Al Viro292c5ee2011-01-17 00:47:38 -0500112 .evict_inode = autofs4_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
Ian Kent34ca9592006-03-27 01:14:54 -0800115enum {Opt_err, Opt_fd, Opt_uid, Opt_gid, Opt_pgrp, Opt_minproto, Opt_maxproto,
116 Opt_indirect, Opt_direct, Opt_offset};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Steven Whitehousea447c092008-10-13 10:46:57 +0100118static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 {Opt_fd, "fd=%u"},
120 {Opt_uid, "uid=%u"},
121 {Opt_gid, "gid=%u"},
122 {Opt_pgrp, "pgrp=%u"},
123 {Opt_minproto, "minproto=%u"},
124 {Opt_maxproto, "maxproto=%u"},
Ian Kent34ca9592006-03-27 01:14:54 -0800125 {Opt_indirect, "indirect"},
126 {Opt_direct, "direct"},
127 {Opt_offset, "offset"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 {Opt_err, NULL}
129};
130
Eric W. Biederman45634cd2012-02-07 16:18:52 -0800131static int parse_options(char *options, int *pipefd, kuid_t *uid, kgid_t *gid,
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800132 int *pgrp, bool *pgrp_set, unsigned int *type,
133 int *minproto, int *maxproto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 char *p;
136 substring_t args[MAX_OPT_ARGS];
137 int option;
138
David Howells0eb790e2008-11-14 10:38:46 +1100139 *uid = current_uid();
140 *gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 *minproto = AUTOFS_MIN_PROTO_VERSION;
143 *maxproto = AUTOFS_MAX_PROTO_VERSION;
144
145 *pipefd = -1;
146
147 if (!options)
148 return 1;
149
150 while ((p = strsep(&options, ",")) != NULL) {
151 int token;
Ian Kente9a7c2f2016-03-15 14:58:25 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!*p)
154 continue;
155
156 token = match_token(p, tokens, args);
157 switch (token) {
158 case Opt_fd:
159 if (match_int(args, pipefd))
160 return 1;
161 break;
162 case Opt_uid:
163 if (match_int(args, &option))
164 return 1;
Eric W. Biederman45634cd2012-02-07 16:18:52 -0800165 *uid = make_kuid(current_user_ns(), option);
166 if (!uid_valid(*uid))
167 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 break;
169 case Opt_gid:
170 if (match_int(args, &option))
171 return 1;
Eric W. Biederman45634cd2012-02-07 16:18:52 -0800172 *gid = make_kgid(current_user_ns(), option);
173 if (!gid_valid(*gid))
174 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 break;
176 case Opt_pgrp:
177 if (match_int(args, &option))
178 return 1;
179 *pgrp = option;
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800180 *pgrp_set = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 case Opt_minproto:
183 if (match_int(args, &option))
184 return 1;
185 *minproto = option;
186 break;
187 case Opt_maxproto:
188 if (match_int(args, &option))
189 return 1;
190 *maxproto = option;
191 break;
Ian Kent34ca9592006-03-27 01:14:54 -0800192 case Opt_indirect:
Ian Kenta92daf62009-01-06 14:42:08 -0800193 set_autofs_type_indirect(type);
Ian Kent34ca9592006-03-27 01:14:54 -0800194 break;
195 case Opt_direct:
Ian Kenta92daf62009-01-06 14:42:08 -0800196 set_autofs_type_direct(type);
Ian Kent34ca9592006-03-27 01:14:54 -0800197 break;
198 case Opt_offset:
Ian Kenta92daf62009-01-06 14:42:08 -0800199 set_autofs_type_offset(type);
Ian Kent34ca9592006-03-27 01:14:54 -0800200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 default:
202 return 1;
203 }
204 }
205 return (*pipefd < 0);
206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208int autofs4_fill_super(struct super_block *s, void *data, int silent)
209{
Ian Kente9a7c2f2016-03-15 14:58:25 -0700210 struct inode *root_inode;
211 struct dentry *root;
212 struct file *pipe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int pipefd;
214 struct autofs_sb_info *sbi;
215 struct autofs_info *ino;
Ian Kent571ff472014-07-02 15:22:35 -0700216 int pgrp = 0;
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800217 bool pgrp_set = false;
Rui Xiangda29b752014-01-23 15:54:59 -0800218 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Mariusz Kozlowskib63d50c2007-10-16 23:26:44 -0700220 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700221 if (!sbi)
Rui Xiangda29b752014-01-23 15:54:59 -0800222 return -ENOMEM;
Ian Kent8a78d592016-03-15 14:58:45 -0700223 pr_debug("starting up, sbi = %p\n", sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 s->s_fs_info = sbi;
226 sbi->magic = AUTOFS_SBI_MAGIC;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800227 sbi->pipefd = -1;
Ian Kentba8df432006-11-14 02:03:29 -0800228 sbi->pipe = NULL;
229 sbi->catatonic = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 sbi->exp_timeout = 0;
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800231 sbi->oz_pgrp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 sbi->sb = s;
233 sbi->version = 0;
234 sbi->sub_version = 0;
Ian Kenta92daf62009-01-06 14:42:08 -0800235 set_autofs_type_indirect(&sbi->type);
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800236 sbi->min_proto = 0;
237 sbi->max_proto = 0;
Ingo Molnar1d5599e2006-03-23 03:00:41 -0800238 mutex_init(&sbi->wq_mutex);
Al Virod668dc52012-01-10 22:35:38 -0500239 mutex_init(&sbi->pipe_mutex);
Ian Kent3a9720c2005-05-01 08:59:17 -0700240 spin_lock_init(&sbi->fs_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 sbi->queues = NULL;
Ian Kent5f6f4f22008-07-23 21:30:09 -0700242 spin_lock_init(&sbi->lookup_lock);
Ian Kent25767372008-07-23 21:30:12 -0700243 INIT_LIST_HEAD(&sbi->active_list);
Ian Kent5f6f4f22008-07-23 21:30:09 -0700244 INIT_LIST_HEAD(&sbi->expiring_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 s->s_blocksize = 1024;
246 s->s_blocksize_bits = 10;
247 s->s_magic = AUTOFS_SUPER_MAGIC;
248 s->s_op = &autofs4_sops;
David Howellsb650c852011-01-15 10:51:57 +0000249 s->s_d_op = &autofs4_dentry_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 s->s_time_gran = 1;
251
252 /*
253 * Get the root inode and dentry, but defer checking for errors.
254 */
Al Viro26e6c912011-01-16 18:43:40 -0500255 ino = autofs4_new_ino(sbi);
Rui Xiangda29b752014-01-23 15:54:59 -0800256 if (!ino) {
257 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 goto fail_free;
Rui Xiangda29b752014-01-23 15:54:59 -0800259 }
Al Viro726a5e02011-01-16 17:43:52 -0500260 root_inode = autofs4_get_inode(s, S_IFDIR | 0755);
Al Viro48fde702012-01-08 22:15:13 -0500261 root = d_make_root(root_inode);
Ian Kent37b6ac52019-02-01 14:21:29 -0800262 if (!root) {
263 ret = -ENOMEM;
Al Viro48fde702012-01-08 22:15:13 -0500264 goto fail_ino;
Ian Kent37b6ac52019-02-01 14:21:29 -0800265 }
Ian Kent34ca9592006-03-27 01:14:54 -0800266 pipe = NULL;
267
Ian Kent34ca9592006-03-27 01:14:54 -0800268 root->d_fsdata = ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /* Can this call block? */
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700271 if (parse_options(data, &pipefd, &root_inode->i_uid, &root_inode->i_gid,
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800272 &pgrp, &pgrp_set, &sbi->type, &sbi->min_proto,
273 &sbi->max_proto)) {
Ian Kent8a78d592016-03-15 14:58:45 -0700274 pr_err("called with bogus options\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto fail_dput;
276 }
277
Tomohiro Kusumi749800e2016-10-11 13:52:31 -0700278 /* Test versions first */
279 if (sbi->max_proto < AUTOFS_MIN_PROTO_VERSION ||
280 sbi->min_proto > AUTOFS_MAX_PROTO_VERSION) {
281 pr_err("kernel does not match daemon version "
282 "daemon (%d, %d) kernel (%d, %d)\n",
283 sbi->min_proto, sbi->max_proto,
284 AUTOFS_MIN_PROTO_VERSION, AUTOFS_MAX_PROTO_VERSION);
285 goto fail_dput;
286 }
287
288 /* Establish highest kernel protocol version */
289 if (sbi->max_proto > AUTOFS_MAX_PROTO_VERSION)
290 sbi->version = AUTOFS_MAX_PROTO_VERSION;
291 else
292 sbi->version = sbi->max_proto;
293 sbi->sub_version = AUTOFS_PROTO_SUBVERSION;
294
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800295 if (pgrp_set) {
296 sbi->oz_pgrp = find_get_pid(pgrp);
297 if (!sbi->oz_pgrp) {
Ian Kent8a78d592016-03-15 14:58:45 -0700298 pr_err("could not find process group %d\n",
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800299 pgrp);
300 goto fail_dput;
301 }
302 } else {
303 sbi->oz_pgrp = get_task_pid(current, PIDTYPE_PGID);
304 }
305
David Howellsb650c852011-01-15 10:51:57 +0000306 if (autofs_type_trigger(sbi->type))
Ian Kentb5b80172011-01-14 18:46:03 +0000307 __managed_dentry_set_managed(root);
Ian Kent10584212011-01-14 18:45:58 +0000308
Ian Kent34ca9592006-03-27 01:14:54 -0800309 root_inode->i_fop = &autofs4_root_operations;
Ian Kente61da202011-01-14 18:46:14 +0000310 root_inode->i_op = &autofs4_dir_inode_operations;
Ian Kent34ca9592006-03-27 01:14:54 -0800311
Ian Kent8a78d592016-03-15 14:58:45 -0700312 pr_debug("pipe fd = %d, pgrp = %u\n", pipefd, pid_nr(sbi->oz_pgrp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 pipe = fget(pipefd);
Sukadev Bhattiprolu6eaba352014-01-23 15:54:57 -0800314
Sukadev Bhattiprolud78e53c2007-05-10 22:23:06 -0700315 if (!pipe) {
Ian Kent8a78d592016-03-15 14:58:45 -0700316 pr_err("could not open pipe file descriptor\n");
Ian Kent1973a122016-10-11 13:52:33 -0700317 goto fail_put_pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Rui Xiangda29b752014-01-23 15:54:59 -0800319 ret = autofs_prepare_pipe(pipe);
320 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto fail_fput;
322 sbi->pipe = pipe;
Ian Kentd7c4a5f2006-03-27 01:14:49 -0800323 sbi->pipefd = pipefd;
Ian Kentba8df432006-11-14 02:03:29 -0800324 sbi->catatonic = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * Success! Install the root dentry now to indicate completion.
328 */
329 s->s_root = root;
330 return 0;
Ian Kent02667252016-03-15 14:58:36 -0700331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /*
333 * Failure ... clean up.
334 */
335fail_fput:
Ian Kent8a78d592016-03-15 14:58:45 -0700336 pr_err("pipe file descriptor does not contain proper ops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 fput(pipe);
Ian Kent1973a122016-10-11 13:52:33 -0700338fail_put_pid:
339 put_pid(sbi->oz_pgrp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340fail_dput:
341 dput(root);
342 goto fail_free;
Ian Kent34ca9592006-03-27 01:14:54 -0800343fail_ino:
Tomohiro Kusumica552592016-10-11 13:52:42 -0700344 autofs4_free_ino(ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345fail_free:
346 kfree(sbi);
Ian Kentba8df432006-11-14 02:03:29 -0800347 s->s_fs_info = NULL;
Rui Xiangda29b752014-01-23 15:54:59 -0800348 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Al Viro030a8ba2011-07-26 03:29:03 -0400351struct inode *autofs4_get_inode(struct super_block *sb, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 struct inode *inode = new_inode(sb);
354
355 if (inode == NULL)
356 return NULL;
357
Al Viro09f12c02011-01-16 17:20:23 -0500358 inode->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 if (sb->s_root) {
David Howells2b0143b2015-03-17 22:25:59 +0000360 inode->i_uid = d_inode(sb->s_root)->i_uid;
361 inode->i_gid = d_inode(sb->s_root)->i_gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Deepa Dinamani078cd822016-09-14 07:48:04 -0700363 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400364 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Al Viro09f12c02011-01-16 17:20:23 -0500366 if (S_ISDIR(mode)) {
Miklos Szeredibfe86842011-10-28 14:13:29 +0200367 set_nlink(inode, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 inode->i_op = &autofs4_dir_inode_operations;
369 inode->i_fop = &autofs4_dir_operations;
Al Viro09f12c02011-01-16 17:20:23 -0500370 } else if (S_ISLNK(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 inode->i_op = &autofs4_symlink_inode_operations;
Tomohiro Kusumi97537b32016-10-11 13:52:36 -0700372 } else
373 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 return inode;
376}