1
2
3
4
5
6
7
8
9
10#include <linux/miscdevice.h>
11#include <linux/compat.h>
12#include <linux/syscalls.h>
13#include <linux/magic.h>
14
15#include "autofs_i.h"
16
17
18
19
20
21
22
23
24
25
26
27
28
29typedef int (*ioctl_fn)(struct file *, struct autofs_sb_info *,
30 struct autofs_dev_ioctl *);
31
32static int check_name(const char *name)
33{
34 if (!strchr(name, '/'))
35 return -EINVAL;
36 return 0;
37}
38
39
40
41
42
43static int invalid_str(char *str, size_t size)
44{
45 if (memchr(str, 0, size))
46 return 0;
47 return -EINVAL;
48}
49
50
51
52
53
54
55
56
57static int check_dev_ioctl_version(int cmd, struct autofs_dev_ioctl *param)
58{
59 int err = 0;
60
61 if ((param->ver_major != AUTOFS_DEV_IOCTL_VERSION_MAJOR) ||
62 (param->ver_minor > AUTOFS_DEV_IOCTL_VERSION_MINOR)) {
63 pr_warn("ioctl control interface version mismatch: "
64 "kernel(%u.%u), user(%u.%u), cmd(0x%08x)\n",
65 AUTOFS_DEV_IOCTL_VERSION_MAJOR,
66 AUTOFS_DEV_IOCTL_VERSION_MINOR,
67 param->ver_major, param->ver_minor, cmd);
68 err = -EINVAL;
69 }
70
71
72 param->ver_major = AUTOFS_DEV_IOCTL_VERSION_MAJOR;
73 param->ver_minor = AUTOFS_DEV_IOCTL_VERSION_MINOR;
74
75 return err;
76}
77
78
79
80
81
82static struct autofs_dev_ioctl *
83copy_dev_ioctl(struct autofs_dev_ioctl __user *in)
84{
85 struct autofs_dev_ioctl tmp, *res;
86
87 if (copy_from_user(&tmp, in, AUTOFS_DEV_IOCTL_SIZE))
88 return ERR_PTR(-EFAULT);
89
90 if (tmp.size < AUTOFS_DEV_IOCTL_SIZE)
91 return ERR_PTR(-EINVAL);
92
93 if (tmp.size > AUTOFS_DEV_IOCTL_SIZE + PATH_MAX)
94 return ERR_PTR(-ENAMETOOLONG);
95
96 res = memdup_user(in, tmp.size);
97 if (!IS_ERR(res))
98 res->size = tmp.size;
99
100 return res;
101}
102
103static inline void free_dev_ioctl(struct autofs_dev_ioctl *param)
104{
105 kfree(param);
106}
107
108
109
110
111
112static int validate_dev_ioctl(int cmd, struct autofs_dev_ioctl *param)
113{
114 int err;
115
116 err = check_dev_ioctl_version(cmd, param);
117 if (err) {
118 pr_warn("invalid device control module version "
119 "supplied for cmd(0x%08x)\n", cmd);
120 goto out;
121 }
122
123 if (param->size > AUTOFS_DEV_IOCTL_SIZE) {
124 err = invalid_str(param->path, param->size - AUTOFS_DEV_IOCTL_SIZE);
125 if (err) {
126 pr_warn(
127 "path string terminator missing for cmd(0x%08x)\n",
128 cmd);
129 goto out;
130 }
131
132 err = check_name(param->path);
133 if (err) {
134 pr_warn("invalid path supplied for cmd(0x%08x)\n",
135 cmd);
136 goto out;
137 }
138 } else {
139 unsigned int inr = _IOC_NR(cmd);
140
141 if (inr == AUTOFS_DEV_IOCTL_OPENMOUNT_CMD ||
142 inr == AUTOFS_DEV_IOCTL_REQUESTER_CMD ||
143 inr == AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD) {
144 err = -EINVAL;
145 goto out;
146 }
147 }
148
149 err = 0;
150out:
151 return err;
152}
153
154
155static int autofs_dev_ioctl_version(struct file *fp,
156 struct autofs_sb_info *sbi,
157 struct autofs_dev_ioctl *param)
158{
159
160 param->ver_major = AUTOFS_DEV_IOCTL_VERSION_MAJOR;
161 param->ver_minor = AUTOFS_DEV_IOCTL_VERSION_MINOR;
162 return 0;
163}
164
165
166static int autofs_dev_ioctl_protover(struct file *fp,
167 struct autofs_sb_info *sbi,
168 struct autofs_dev_ioctl *param)
169{
170 param->protover.version = sbi->version;
171 return 0;
172}
173
174
175static int autofs_dev_ioctl_protosubver(struct file *fp,
176 struct autofs_sb_info *sbi,
177 struct autofs_dev_ioctl *param)
178{
179 param->protosubver.sub_version = sbi->sub_version;
180 return 0;
181}
182
183
184static int find_autofs_mount(const char *pathname,
185 struct path *res,
186 int test(const struct path *path, void *data),
187 void *data)
188{
189 struct path path;
190 int err;
191
192 err = kern_path_mountpoint(AT_FDCWD, pathname, &path, 0);
193 if (err)
194 return err;
195 err = -ENOENT;
196 while (path.dentry == path.mnt->mnt_root) {
197 if (path.dentry->d_sb->s_magic == AUTOFS_SUPER_MAGIC) {
198 if (test(&path, data)) {
199 path_get(&path);
200 *res = path;
201 err = 0;
202 break;
203 }
204 }
205 if (!follow_up(&path))
206 break;
207 }
208 path_put(&path);
209 return err;
210}
211
212static int test_by_dev(const struct path *path, void *p)
213{
214 return path->dentry->d_sb->s_dev == *(dev_t *)p;
215}
216
217static int test_by_type(const struct path *path, void *p)
218{
219 struct autofs_info *ino = autofs_dentry_ino(path->dentry);
220
221 return ino && ino->sbi->type & *(unsigned *)p;
222}
223
224
225
226
227
228static int autofs_dev_ioctl_open_mountpoint(const char *name, dev_t devid)
229{
230 int err, fd;
231
232 fd = get_unused_fd_flags(O_CLOEXEC);
233 if (likely(fd >= 0)) {
234 struct file *filp;
235 struct path path;
236
237 err = find_autofs_mount(name, &path, test_by_dev, &devid);
238 if (err)
239 goto out;
240
241 filp = dentry_open(&path, O_RDONLY, current_cred());
242 path_put(&path);
243 if (IS_ERR(filp)) {
244 err = PTR_ERR(filp);
245 goto out;
246 }
247
248 fd_install(fd, filp);
249 }
250
251 return fd;
252
253out:
254 put_unused_fd(fd);
255 return err;
256}
257
258
259static int autofs_dev_ioctl_openmount(struct file *fp,
260 struct autofs_sb_info *sbi,
261 struct autofs_dev_ioctl *param)
262{
263 const char *path;
264 dev_t devid;
265 int err, fd;
266
267
268
269 if (!param->openmount.devid)
270 return -EINVAL;
271
272 param->ioctlfd = -1;
273
274 path = param->path;
275 devid = new_decode_dev(param->openmount.devid);
276
277 err = 0;
278 fd = autofs_dev_ioctl_open_mountpoint(path, devid);
279 if (unlikely(fd < 0)) {
280 err = fd;
281 goto out;
282 }
283
284 param->ioctlfd = fd;
285out:
286 return err;
287}
288
289
290static int autofs_dev_ioctl_closemount(struct file *fp,
291 struct autofs_sb_info *sbi,
292 struct autofs_dev_ioctl *param)
293{
294 return ksys_close(param->ioctlfd);
295}
296
297
298
299
300
301static int autofs_dev_ioctl_ready(struct file *fp,
302 struct autofs_sb_info *sbi,
303 struct autofs_dev_ioctl *param)
304{
305 autofs_wqt_t token;
306
307 token = (autofs_wqt_t) param->ready.token;
308 return autofs_wait_release(sbi, token, 0);
309}
310
311
312
313
314
315static int autofs_dev_ioctl_fail(struct file *fp,
316 struct autofs_sb_info *sbi,
317 struct autofs_dev_ioctl *param)
318{
319 autofs_wqt_t token;
320 int status;
321
322 token = (autofs_wqt_t) param->fail.token;
323 status = param->fail.status < 0 ? param->fail.status : -ENOENT;
324 return autofs_wait_release(sbi, token, status);
325}
326
327
328
329
330
331
332
333
334
335
336
337
338
339static int autofs_dev_ioctl_setpipefd(struct file *fp,
340 struct autofs_sb_info *sbi,
341 struct autofs_dev_ioctl *param)
342{
343 int pipefd;
344 int err = 0;
345 struct pid *new_pid = NULL;
346
347 if (param->setpipefd.pipefd == -1)
348 return -EINVAL;
349
350 pipefd = param->setpipefd.pipefd;
351
352 mutex_lock(&sbi->wq_mutex);
353 if (!(sbi->flags & AUTOFS_SBI_CATATONIC)) {
354 mutex_unlock(&sbi->wq_mutex);
355 return -EBUSY;
356 } else {
357 struct file *pipe;
358
359 new_pid = get_task_pid(current, PIDTYPE_PGID);
360
361 if (ns_of_pid(new_pid) != ns_of_pid(sbi->oz_pgrp)) {
362 pr_warn("not allowed to change PID namespace\n");
363 err = -EINVAL;
364 goto out;
365 }
366
367 pipe = fget(pipefd);
368 if (!pipe) {
369 err = -EBADF;
370 goto out;
371 }
372 if (autofs_prepare_pipe(pipe) < 0) {
373 err = -EPIPE;
374 fput(pipe);
375 goto out;
376 }
377 swap(sbi->oz_pgrp, new_pid);
378 sbi->pipefd = pipefd;
379 sbi->pipe = pipe;
380 sbi->flags &= ~AUTOFS_SBI_CATATONIC;
381 }
382out:
383 put_pid(new_pid);
384 mutex_unlock(&sbi->wq_mutex);
385 return err;
386}
387
388
389
390
391
392static int autofs_dev_ioctl_catatonic(struct file *fp,
393 struct autofs_sb_info *sbi,
394 struct autofs_dev_ioctl *param)
395{
396 autofs_catatonic_mode(sbi);
397 return 0;
398}
399
400
401static int autofs_dev_ioctl_timeout(struct file *fp,
402 struct autofs_sb_info *sbi,
403 struct autofs_dev_ioctl *param)
404{
405 unsigned long timeout;
406
407 timeout = param->timeout.timeout;
408 param->timeout.timeout = sbi->exp_timeout / HZ;
409 sbi->exp_timeout = timeout * HZ;
410 return 0;
411}
412
413
414
415
416
417
418
419
420
421static int autofs_dev_ioctl_requester(struct file *fp,
422 struct autofs_sb_info *sbi,
423 struct autofs_dev_ioctl *param)
424{
425 struct autofs_info *ino;
426 struct path path;
427 dev_t devid;
428 int err = -ENOENT;
429
430
431
432 devid = sbi->sb->s_dev;
433
434 param->requester.uid = param->requester.gid = -1;
435
436 err = find_autofs_mount(param->path, &path, test_by_dev, &devid);
437 if (err)
438 goto out;
439
440 ino = autofs_dentry_ino(path.dentry);
441 if (ino) {
442 err = 0;
443 autofs_expire_wait(&path, 0);
444 spin_lock(&sbi->fs_lock);
445 param->requester.uid =
446 from_kuid_munged(current_user_ns(), ino->uid);
447 param->requester.gid =
448 from_kgid_munged(current_user_ns(), ino->gid);
449 spin_unlock(&sbi->fs_lock);
450 }
451 path_put(&path);
452out:
453 return err;
454}
455
456
457
458
459
460static int autofs_dev_ioctl_expire(struct file *fp,
461 struct autofs_sb_info *sbi,
462 struct autofs_dev_ioctl *param)
463{
464 struct vfsmount *mnt;
465 int how;
466
467 how = param->expire.how;
468 mnt = fp->f_path.mnt;
469
470 return autofs_do_expire_multi(sbi->sb, mnt, sbi, how);
471}
472
473
474static int autofs_dev_ioctl_askumount(struct file *fp,
475 struct autofs_sb_info *sbi,
476 struct autofs_dev_ioctl *param)
477{
478 param->askumount.may_umount = 0;
479 if (may_umount(fp->f_path.mnt))
480 param->askumount.may_umount = 1;
481 return 0;
482}
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505static int autofs_dev_ioctl_ismountpoint(struct file *fp,
506 struct autofs_sb_info *sbi,
507 struct autofs_dev_ioctl *param)
508{
509 struct path path;
510 const char *name;
511 unsigned int type;
512 unsigned int devid, magic;
513 int err = -ENOENT;
514
515
516
517 name = param->path;
518 type = param->ismountpoint.in.type;
519
520 param->ismountpoint.out.devid = devid = 0;
521 param->ismountpoint.out.magic = magic = 0;
522
523 if (!fp || param->ioctlfd == -1) {
524 if (autofs_type_any(type))
525 err = kern_path_mountpoint(AT_FDCWD,
526 name, &path, LOOKUP_FOLLOW);
527 else
528 err = find_autofs_mount(name, &path,
529 test_by_type, &type);
530 if (err)
531 goto out;
532 devid = new_encode_dev(path.dentry->d_sb->s_dev);
533 err = 0;
534 if (path.mnt->mnt_root == path.dentry) {
535 err = 1;
536 magic = path.dentry->d_sb->s_magic;
537 }
538 } else {
539 dev_t dev = sbi->sb->s_dev;
540
541 err = find_autofs_mount(name, &path, test_by_dev, &dev);
542 if (err)
543 goto out;
544
545 devid = new_encode_dev(dev);
546
547 err = path_has_submounts(&path);
548
549 if (follow_down_one(&path))
550 magic = path.dentry->d_sb->s_magic;
551 }
552
553 param->ismountpoint.out.devid = devid;
554 param->ismountpoint.out.magic = magic;
555 path_put(&path);
556out:
557 return err;
558}
559
560
561
562
563
564
565#define cmd_idx(cmd) (cmd - _IOC_NR(AUTOFS_DEV_IOCTL_IOC_FIRST))
566
567static ioctl_fn lookup_dev_ioctl(unsigned int cmd)
568{
569 static ioctl_fn _ioctls[] = {
570 autofs_dev_ioctl_version,
571 autofs_dev_ioctl_protover,
572 autofs_dev_ioctl_protosubver,
573 autofs_dev_ioctl_openmount,
574 autofs_dev_ioctl_closemount,
575 autofs_dev_ioctl_ready,
576 autofs_dev_ioctl_fail,
577 autofs_dev_ioctl_setpipefd,
578 autofs_dev_ioctl_catatonic,
579 autofs_dev_ioctl_timeout,
580 autofs_dev_ioctl_requester,
581 autofs_dev_ioctl_expire,
582 autofs_dev_ioctl_askumount,
583 autofs_dev_ioctl_ismountpoint,
584 };
585 unsigned int idx = cmd_idx(cmd);
586
587 return (idx >= ARRAY_SIZE(_ioctls)) ? NULL : _ioctls[idx];
588}
589
590
591static int _autofs_dev_ioctl(unsigned int command,
592 struct autofs_dev_ioctl __user *user)
593{
594 struct autofs_dev_ioctl *param;
595 struct file *fp;
596 struct autofs_sb_info *sbi;
597 unsigned int cmd_first, cmd;
598 ioctl_fn fn = NULL;
599 int err = 0;
600
601 cmd_first = _IOC_NR(AUTOFS_DEV_IOCTL_IOC_FIRST);
602 cmd = _IOC_NR(command);
603
604 if (_IOC_TYPE(command) != _IOC_TYPE(AUTOFS_DEV_IOCTL_IOC_FIRST) ||
605 cmd - cmd_first > AUTOFS_DEV_IOCTL_IOC_COUNT) {
606 return -ENOTTY;
607 }
608
609
610
611
612 if (cmd != AUTOFS_DEV_IOCTL_VERSION_CMD &&
613 cmd != AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD &&
614 !capable(CAP_SYS_ADMIN))
615 return -EPERM;
616
617
618 param = copy_dev_ioctl(user);
619 if (IS_ERR(param))
620 return PTR_ERR(param);
621
622 err = validate_dev_ioctl(command, param);
623 if (err)
624 goto out;
625
626 fn = lookup_dev_ioctl(cmd);
627 if (!fn) {
628 pr_warn("unknown command 0x%08x\n", command);
629 err = -ENOTTY;
630 goto out;
631 }
632
633 fp = NULL;
634 sbi = NULL;
635
636
637
638
639
640
641
642 if (cmd != AUTOFS_DEV_IOCTL_VERSION_CMD &&
643 cmd != AUTOFS_DEV_IOCTL_OPENMOUNT_CMD &&
644 cmd != AUTOFS_DEV_IOCTL_CLOSEMOUNT_CMD) {
645 struct super_block *sb;
646
647 fp = fget(param->ioctlfd);
648 if (!fp) {
649 if (cmd == AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD)
650 goto cont;
651 err = -EBADF;
652 goto out;
653 }
654
655 sb = file_inode(fp)->i_sb;
656 if (sb->s_type != &autofs_fs_type) {
657 err = -EINVAL;
658 fput(fp);
659 goto out;
660 }
661 sbi = autofs_sbi(sb);
662
663
664
665
666
667 if (!autofs_oz_mode(sbi) &&
668 cmd != AUTOFS_DEV_IOCTL_CATATONIC_CMD) {
669 err = -EACCES;
670 fput(fp);
671 goto out;
672 }
673 }
674cont:
675 err = fn(fp, sbi, param);
676
677 if (fp)
678 fput(fp);
679 if (err >= 0 && copy_to_user(user, param, AUTOFS_DEV_IOCTL_SIZE))
680 err = -EFAULT;
681out:
682 free_dev_ioctl(param);
683 return err;
684}
685
686static long autofs_dev_ioctl(struct file *file, unsigned int command,
687 unsigned long u)
688{
689 int err;
690
691 err = _autofs_dev_ioctl(command, (struct autofs_dev_ioctl __user *) u);
692 return (long) err;
693}
694
695#ifdef CONFIG_COMPAT
696static long autofs_dev_ioctl_compat(struct file *file, unsigned int command,
697 unsigned long u)
698{
699 return autofs_dev_ioctl(file, command, (unsigned long) compat_ptr(u));
700}
701#else
702#define autofs_dev_ioctl_compat NULL
703#endif
704
705static const struct file_operations _dev_ioctl_fops = {
706 .unlocked_ioctl = autofs_dev_ioctl,
707 .compat_ioctl = autofs_dev_ioctl_compat,
708 .owner = THIS_MODULE,
709 .llseek = noop_llseek,
710};
711
712static struct miscdevice _autofs_dev_ioctl_misc = {
713 .minor = AUTOFS_MINOR,
714 .name = AUTOFS_DEVICE_NAME,
715 .fops = &_dev_ioctl_fops,
716 .mode = 0644,
717};
718
719MODULE_ALIAS_MISCDEV(AUTOFS_MINOR);
720MODULE_ALIAS("devname:autofs");
721
722
723int __init autofs_dev_ioctl_init(void)
724{
725 int r;
726
727 r = misc_register(&_autofs_dev_ioctl_misc);
728 if (r) {
729 pr_err("misc_register failed for control device\n");
730 return r;
731 }
732
733 return 0;
734}
735
736void autofs_dev_ioctl_exit(void)
737{
738 misc_deregister(&_autofs_dev_ioctl_misc);
739}
740