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
155
156
157
158static struct autofs_sb_info *autofs_dev_ioctl_sbi(struct file *f)
159{
160 struct autofs_sb_info *sbi = NULL;
161 struct inode *inode;
162
163 if (f) {
164 inode = file_inode(f);
165 sbi = autofs_sbi(inode->i_sb);
166 }
167 return sbi;
168}
169
170
171static int autofs_dev_ioctl_version(struct file *fp,
172 struct autofs_sb_info *sbi,
173 struct autofs_dev_ioctl *param)
174{
175
176 param->ver_major = AUTOFS_DEV_IOCTL_VERSION_MAJOR;
177 param->ver_minor = AUTOFS_DEV_IOCTL_VERSION_MINOR;
178 return 0;
179}
180
181
182static int autofs_dev_ioctl_protover(struct file *fp,
183 struct autofs_sb_info *sbi,
184 struct autofs_dev_ioctl *param)
185{
186 param->protover.version = sbi->version;
187 return 0;
188}
189
190
191static int autofs_dev_ioctl_protosubver(struct file *fp,
192 struct autofs_sb_info *sbi,
193 struct autofs_dev_ioctl *param)
194{
195 param->protosubver.sub_version = sbi->sub_version;
196 return 0;
197}
198
199
200static int find_autofs_mount(const char *pathname,
201 struct path *res,
202 int test(const struct path *path, void *data),
203 void *data)
204{
205 struct path path;
206 int err;
207
208 err = kern_path_mountpoint(AT_FDCWD, pathname, &path, 0);
209 if (err)
210 return err;
211 err = -ENOENT;
212 while (path.dentry == path.mnt->mnt_root) {
213 if (path.dentry->d_sb->s_magic == AUTOFS_SUPER_MAGIC) {
214 if (test(&path, data)) {
215 path_get(&path);
216 *res = path;
217 err = 0;
218 break;
219 }
220 }
221 if (!follow_up(&path))
222 break;
223 }
224 path_put(&path);
225 return err;
226}
227
228static int test_by_dev(const struct path *path, void *p)
229{
230 return path->dentry->d_sb->s_dev == *(dev_t *)p;
231}
232
233static int test_by_type(const struct path *path, void *p)
234{
235 struct autofs_info *ino = autofs_dentry_ino(path->dentry);
236
237 return ino && ino->sbi->type & *(unsigned *)p;
238}
239
240
241
242
243
244static int autofs_dev_ioctl_open_mountpoint(const char *name, dev_t devid)
245{
246 int err, fd;
247
248 fd = get_unused_fd_flags(O_CLOEXEC);
249 if (likely(fd >= 0)) {
250 struct file *filp;
251 struct path path;
252
253 err = find_autofs_mount(name, &path, test_by_dev, &devid);
254 if (err)
255 goto out;
256
257 filp = dentry_open(&path, O_RDONLY, current_cred());
258 path_put(&path);
259 if (IS_ERR(filp)) {
260 err = PTR_ERR(filp);
261 goto out;
262 }
263
264 fd_install(fd, filp);
265 }
266
267 return fd;
268
269out:
270 put_unused_fd(fd);
271 return err;
272}
273
274
275static int autofs_dev_ioctl_openmount(struct file *fp,
276 struct autofs_sb_info *sbi,
277 struct autofs_dev_ioctl *param)
278{
279 const char *path;
280 dev_t devid;
281 int err, fd;
282
283
284
285 if (!param->openmount.devid)
286 return -EINVAL;
287
288 param->ioctlfd = -1;
289
290 path = param->path;
291 devid = new_decode_dev(param->openmount.devid);
292
293 err = 0;
294 fd = autofs_dev_ioctl_open_mountpoint(path, devid);
295 if (unlikely(fd < 0)) {
296 err = fd;
297 goto out;
298 }
299
300 param->ioctlfd = fd;
301out:
302 return err;
303}
304
305
306static int autofs_dev_ioctl_closemount(struct file *fp,
307 struct autofs_sb_info *sbi,
308 struct autofs_dev_ioctl *param)
309{
310 return ksys_close(param->ioctlfd);
311}
312
313
314
315
316
317static int autofs_dev_ioctl_ready(struct file *fp,
318 struct autofs_sb_info *sbi,
319 struct autofs_dev_ioctl *param)
320{
321 autofs_wqt_t token;
322
323 token = (autofs_wqt_t) param->ready.token;
324 return autofs_wait_release(sbi, token, 0);
325}
326
327
328
329
330
331static int autofs_dev_ioctl_fail(struct file *fp,
332 struct autofs_sb_info *sbi,
333 struct autofs_dev_ioctl *param)
334{
335 autofs_wqt_t token;
336 int status;
337
338 token = (autofs_wqt_t) param->fail.token;
339 status = param->fail.status < 0 ? param->fail.status : -ENOENT;
340 return autofs_wait_release(sbi, token, status);
341}
342
343
344
345
346
347
348
349
350
351
352
353
354
355static int autofs_dev_ioctl_setpipefd(struct file *fp,
356 struct autofs_sb_info *sbi,
357 struct autofs_dev_ioctl *param)
358{
359 int pipefd;
360 int err = 0;
361 struct pid *new_pid = NULL;
362
363 if (param->setpipefd.pipefd == -1)
364 return -EINVAL;
365
366 pipefd = param->setpipefd.pipefd;
367
368 mutex_lock(&sbi->wq_mutex);
369 if (!sbi->catatonic) {
370 mutex_unlock(&sbi->wq_mutex);
371 return -EBUSY;
372 } else {
373 struct file *pipe;
374
375 new_pid = get_task_pid(current, PIDTYPE_PGID);
376
377 if (ns_of_pid(new_pid) != ns_of_pid(sbi->oz_pgrp)) {
378 pr_warn("not allowed to change PID namespace\n");
379 err = -EINVAL;
380 goto out;
381 }
382
383 pipe = fget(pipefd);
384 if (!pipe) {
385 err = -EBADF;
386 goto out;
387 }
388 if (autofs_prepare_pipe(pipe) < 0) {
389 err = -EPIPE;
390 fput(pipe);
391 goto out;
392 }
393 swap(sbi->oz_pgrp, new_pid);
394 sbi->pipefd = pipefd;
395 sbi->pipe = pipe;
396 sbi->catatonic = 0;
397 }
398out:
399 put_pid(new_pid);
400 mutex_unlock(&sbi->wq_mutex);
401 return err;
402}
403
404
405
406
407
408static int autofs_dev_ioctl_catatonic(struct file *fp,
409 struct autofs_sb_info *sbi,
410 struct autofs_dev_ioctl *param)
411{
412 autofs_catatonic_mode(sbi);
413 return 0;
414}
415
416
417static int autofs_dev_ioctl_timeout(struct file *fp,
418 struct autofs_sb_info *sbi,
419 struct autofs_dev_ioctl *param)
420{
421 unsigned long timeout;
422
423 timeout = param->timeout.timeout;
424 param->timeout.timeout = sbi->exp_timeout / HZ;
425 sbi->exp_timeout = timeout * HZ;
426 return 0;
427}
428
429
430
431
432
433
434
435
436
437static int autofs_dev_ioctl_requester(struct file *fp,
438 struct autofs_sb_info *sbi,
439 struct autofs_dev_ioctl *param)
440{
441 struct autofs_info *ino;
442 struct path path;
443 dev_t devid;
444 int err = -ENOENT;
445
446
447
448 devid = sbi->sb->s_dev;
449
450 param->requester.uid = param->requester.gid = -1;
451
452 err = find_autofs_mount(param->path, &path, test_by_dev, &devid);
453 if (err)
454 goto out;
455
456 ino = autofs_dentry_ino(path.dentry);
457 if (ino) {
458 err = 0;
459 autofs_expire_wait(&path, 0);
460 spin_lock(&sbi->fs_lock);
461 param->requester.uid =
462 from_kuid_munged(current_user_ns(), ino->uid);
463 param->requester.gid =
464 from_kgid_munged(current_user_ns(), ino->gid);
465 spin_unlock(&sbi->fs_lock);
466 }
467 path_put(&path);
468out:
469 return err;
470}
471
472
473
474
475
476static int autofs_dev_ioctl_expire(struct file *fp,
477 struct autofs_sb_info *sbi,
478 struct autofs_dev_ioctl *param)
479{
480 struct vfsmount *mnt;
481 int how;
482
483 how = param->expire.how;
484 mnt = fp->f_path.mnt;
485
486 return autofs_do_expire_multi(sbi->sb, mnt, sbi, how);
487}
488
489
490static int autofs_dev_ioctl_askumount(struct file *fp,
491 struct autofs_sb_info *sbi,
492 struct autofs_dev_ioctl *param)
493{
494 param->askumount.may_umount = 0;
495 if (may_umount(fp->f_path.mnt))
496 param->askumount.may_umount = 1;
497 return 0;
498}
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521static int autofs_dev_ioctl_ismountpoint(struct file *fp,
522 struct autofs_sb_info *sbi,
523 struct autofs_dev_ioctl *param)
524{
525 struct path path;
526 const char *name;
527 unsigned int type;
528 unsigned int devid, magic;
529 int err = -ENOENT;
530
531
532
533 name = param->path;
534 type = param->ismountpoint.in.type;
535
536 param->ismountpoint.out.devid = devid = 0;
537 param->ismountpoint.out.magic = magic = 0;
538
539 if (!fp || param->ioctlfd == -1) {
540 if (autofs_type_any(type))
541 err = kern_path_mountpoint(AT_FDCWD,
542 name, &path, LOOKUP_FOLLOW);
543 else
544 err = find_autofs_mount(name, &path,
545 test_by_type, &type);
546 if (err)
547 goto out;
548 devid = new_encode_dev(path.dentry->d_sb->s_dev);
549 err = 0;
550 if (path.mnt->mnt_root == path.dentry) {
551 err = 1;
552 magic = path.dentry->d_sb->s_magic;
553 }
554 } else {
555 dev_t dev = sbi->sb->s_dev;
556
557 err = find_autofs_mount(name, &path, test_by_dev, &dev);
558 if (err)
559 goto out;
560
561 devid = new_encode_dev(dev);
562
563 err = path_has_submounts(&path);
564
565 if (follow_down_one(&path))
566 magic = path.dentry->d_sb->s_magic;
567 }
568
569 param->ismountpoint.out.devid = devid;
570 param->ismountpoint.out.magic = magic;
571 path_put(&path);
572out:
573 return err;
574}
575
576
577
578
579
580
581#define cmd_idx(cmd) (cmd - _IOC_NR(AUTOFS_DEV_IOCTL_IOC_FIRST))
582
583static ioctl_fn lookup_dev_ioctl(unsigned int cmd)
584{
585 static ioctl_fn _ioctls[] = {
586 autofs_dev_ioctl_version,
587 autofs_dev_ioctl_protover,
588 autofs_dev_ioctl_protosubver,
589 autofs_dev_ioctl_openmount,
590 autofs_dev_ioctl_closemount,
591 autofs_dev_ioctl_ready,
592 autofs_dev_ioctl_fail,
593 autofs_dev_ioctl_setpipefd,
594 autofs_dev_ioctl_catatonic,
595 autofs_dev_ioctl_timeout,
596 autofs_dev_ioctl_requester,
597 autofs_dev_ioctl_expire,
598 autofs_dev_ioctl_askumount,
599 autofs_dev_ioctl_ismountpoint,
600 };
601 unsigned int idx = cmd_idx(cmd);
602
603 return (idx >= ARRAY_SIZE(_ioctls)) ? NULL : _ioctls[idx];
604}
605
606
607static int _autofs_dev_ioctl(unsigned int command,
608 struct autofs_dev_ioctl __user *user)
609{
610 struct autofs_dev_ioctl *param;
611 struct file *fp;
612 struct autofs_sb_info *sbi;
613 unsigned int cmd_first, cmd;
614 ioctl_fn fn = NULL;
615 int err = 0;
616
617 cmd_first = _IOC_NR(AUTOFS_DEV_IOCTL_IOC_FIRST);
618 cmd = _IOC_NR(command);
619
620 if (_IOC_TYPE(command) != _IOC_TYPE(AUTOFS_DEV_IOCTL_IOC_FIRST) ||
621 cmd - cmd_first > AUTOFS_DEV_IOCTL_IOC_COUNT) {
622 return -ENOTTY;
623 }
624
625
626
627
628 if (cmd != AUTOFS_DEV_IOCTL_VERSION_CMD &&
629 cmd != AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD &&
630 !capable(CAP_SYS_ADMIN))
631 return -EPERM;
632
633
634 param = copy_dev_ioctl(user);
635 if (IS_ERR(param))
636 return PTR_ERR(param);
637
638 err = validate_dev_ioctl(command, param);
639 if (err)
640 goto out;
641
642 fn = lookup_dev_ioctl(cmd);
643 if (!fn) {
644 pr_warn("unknown command 0x%08x\n", command);
645 err = -ENOTTY;
646 goto out;
647 }
648
649 fp = NULL;
650 sbi = NULL;
651
652
653
654
655
656
657
658 if (cmd != AUTOFS_DEV_IOCTL_VERSION_CMD &&
659 cmd != AUTOFS_DEV_IOCTL_OPENMOUNT_CMD &&
660 cmd != AUTOFS_DEV_IOCTL_CLOSEMOUNT_CMD) {
661 fp = fget(param->ioctlfd);
662 if (!fp) {
663 if (cmd == AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD)
664 goto cont;
665 err = -EBADF;
666 goto out;
667 }
668
669 sbi = autofs_dev_ioctl_sbi(fp);
670 if (!sbi || sbi->magic != AUTOFS_SBI_MAGIC) {
671 err = -EINVAL;
672 fput(fp);
673 goto out;
674 }
675
676
677
678
679
680 if (!autofs_oz_mode(sbi) &&
681 cmd != AUTOFS_DEV_IOCTL_CATATONIC_CMD) {
682 err = -EACCES;
683 fput(fp);
684 goto out;
685 }
686 }
687cont:
688 err = fn(fp, sbi, param);
689
690 if (fp)
691 fput(fp);
692 if (err >= 0 && copy_to_user(user, param, AUTOFS_DEV_IOCTL_SIZE))
693 err = -EFAULT;
694out:
695 free_dev_ioctl(param);
696 return err;
697}
698
699static long autofs_dev_ioctl(struct file *file, unsigned int command,
700 unsigned long u)
701{
702 int err;
703
704 err = _autofs_dev_ioctl(command, (struct autofs_dev_ioctl __user *) u);
705 return (long) err;
706}
707
708#ifdef CONFIG_COMPAT
709static long autofs_dev_ioctl_compat(struct file *file, unsigned int command,
710 unsigned long u)
711{
712 return autofs_dev_ioctl(file, command, (unsigned long) compat_ptr(u));
713}
714#else
715#define autofs_dev_ioctl_compat NULL
716#endif
717
718static const struct file_operations _dev_ioctl_fops = {
719 .unlocked_ioctl = autofs_dev_ioctl,
720 .compat_ioctl = autofs_dev_ioctl_compat,
721 .owner = THIS_MODULE,
722 .llseek = noop_llseek,
723};
724
725static struct miscdevice _autofs_dev_ioctl_misc = {
726 .minor = AUTOFS_MINOR,
727 .name = AUTOFS_DEVICE_NAME,
728 .fops = &_dev_ioctl_fops,
729 .mode = 0644,
730};
731
732MODULE_ALIAS_MISCDEV(AUTOFS_MINOR);
733MODULE_ALIAS("devname:autofs");
734
735
736int __init autofs_dev_ioctl_init(void)
737{
738 int r;
739
740 r = misc_register(&_autofs_dev_ioctl_misc);
741 if (r) {
742 pr_err("misc_register failed for control device\n");
743 return r;
744 }
745
746 return 0;
747}
748
749void autofs_dev_ioctl_exit(void)
750{
751 misc_deregister(&_autofs_dev_ioctl_misc);
752}
753