blob: 436d228cf71c094b80fc1c7745be9eb56ebce497 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/compat.c
4 *
5 * Kernel compatibililty routines for e.g. 32 bit syscall support
6 * on 64 bit kernels.
7 *
8 * Copyright (C) 2002 Stephen Rothwell, IBM Corporation
9 * Copyright (C) 1997-2000 Jakub Jelinek (jakub@redhat.com)
10 * Copyright (C) 1998 Eddie C. Dost (ecd@skynet.be)
11 * Copyright (C) 2001,2002 Andi Kleen, SuSE Labs
Pavel Macheka2531292010-07-18 14:27:13 +020012 * Copyright (C) 2003 Pavel Machek (pavel@ucw.cz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/compat.h>
David Howells9a9947b2005-04-18 10:54:51 -070016#include <linux/nfs4_mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/syscalls.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080019#include <linux/uaccess.h>
David Howells07f3f052006-09-30 20:52:18 +020020#include "internal.h"
David Woodhouse9f729492006-01-18 17:44:05 -080021
David Howells9a9947b2005-04-18 10:54:51 -070022struct compat_nfs_string {
23 compat_uint_t len;
David Howells5fc3e622005-04-27 15:39:03 -070024 compat_uptr_t data;
David Howells9a9947b2005-04-18 10:54:51 -070025};
26
27static inline void compat_nfs_string(struct nfs_string *dst,
28 struct compat_nfs_string *src)
29{
30 dst->data = compat_ptr(src->data);
31 dst->len = src->len;
32}
33
34struct compat_nfs4_mount_data_v1 {
35 compat_int_t version;
36 compat_int_t flags;
37 compat_int_t rsize;
38 compat_int_t wsize;
39 compat_int_t timeo;
40 compat_int_t retrans;
41 compat_int_t acregmin;
42 compat_int_t acregmax;
43 compat_int_t acdirmin;
44 compat_int_t acdirmax;
45 struct compat_nfs_string client_addr;
46 struct compat_nfs_string mnt_path;
47 struct compat_nfs_string hostname;
48 compat_uint_t host_addrlen;
David Howells5fc3e622005-04-27 15:39:03 -070049 compat_uptr_t host_addr;
David Howells9a9947b2005-04-18 10:54:51 -070050 compat_int_t proto;
51 compat_int_t auth_flavourlen;
David Howells5fc3e622005-04-27 15:39:03 -070052 compat_uptr_t auth_flavours;
David Howells9a9947b2005-04-18 10:54:51 -070053};
54
55static int do_nfs4_super_data_conv(void *raw_data)
56{
57 int version = *(compat_uint_t *) raw_data;
58
59 if (version == 1) {
60 struct compat_nfs4_mount_data_v1 *raw = raw_data;
61 struct nfs4_mount_data *real = raw_data;
62
63 /* copy the fields backwards */
64 real->auth_flavours = compat_ptr(raw->auth_flavours);
65 real->auth_flavourlen = raw->auth_flavourlen;
66 real->proto = raw->proto;
67 real->host_addr = compat_ptr(raw->host_addr);
68 real->host_addrlen = raw->host_addrlen;
69 compat_nfs_string(&real->hostname, &raw->hostname);
70 compat_nfs_string(&real->mnt_path, &raw->mnt_path);
71 compat_nfs_string(&real->client_addr, &raw->client_addr);
72 real->acdirmax = raw->acdirmax;
73 real->acdirmin = raw->acdirmin;
74 real->acregmax = raw->acregmax;
75 real->acregmin = raw->acregmin;
76 real->retrans = raw->retrans;
77 real->timeo = raw->timeo;
78 real->wsize = raw->wsize;
79 real->rsize = raw->rsize;
80 real->flags = raw->flags;
81 real->version = raw->version;
82 }
David Howells9a9947b2005-04-18 10:54:51 -070083
84 return 0;
85}
86
David Howells9a9947b2005-04-18 10:54:51 -070087#define NFS4_NAME "nfs4"
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Heiko Carstens932602e2014-03-04 16:07:52 +010089COMPAT_SYSCALL_DEFINE5(mount, const char __user *, dev_name,
90 const char __user *, dir_name,
91 const char __user *, type, compat_ulong_t, flags,
92 const void __user *, data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Vegard Nossumeca6f532009-09-18 13:05:45 -070094 char *kernel_type;
Al Virob40ef862015-12-14 18:44:44 -050095 void *options;
Vegard Nossumeca6f532009-09-18 13:05:45 -070096 char *kernel_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int retval;
98
Tim Gardnerb8850d12014-08-28 11:26:03 -060099 kernel_type = copy_mount_string(type);
100 retval = PTR_ERR(kernel_type);
101 if (IS_ERR(kernel_type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 goto out;
103
Tim Gardnerb8850d12014-08-28 11:26:03 -0600104 kernel_dev = copy_mount_string(dev_name);
105 retval = PTR_ERR(kernel_dev);
106 if (IS_ERR(kernel_dev))
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900107 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Al Virob40ef862015-12-14 18:44:44 -0500109 options = copy_mount_options(data);
110 retval = PTR_ERR(options);
111 if (IS_ERR(options))
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900112 goto out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Al Virob40ef862015-12-14 18:44:44 -0500114 if (kernel_type && options) {
Greg Kroah-Hartmanf0ac2ab2018-06-01 20:35:10 +0200115 if (!strcmp(kernel_type, NFS4_NAME)) {
Al Virob40ef862015-12-14 18:44:44 -0500116 retval = -EINVAL;
117 if (do_nfs4_super_data_conv(options))
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900118 goto out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120 }
121
Al Virob40ef862015-12-14 18:44:44 -0500122 retval = do_mount(kernel_dev, dir_name, kernel_type, flags, options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 out3:
Al Virob40ef862015-12-14 18:44:44 -0500125 kfree(options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 out2:
Seunghun Lee5e6123f2014-09-14 22:15:10 +0900127 kfree(kernel_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 out1:
Vegard Nossumeca6f532009-09-18 13:05:45 -0700129 kfree(kernel_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 out:
131 return retval;
132}