Whamcloud - gitweb
7300af8018c69561dacc77a7acf6d532cd0837a5
[fs/lustre-release.git] / libcfs / libcfs / linux / linux-module.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #define DEBUG_SUBSYSTEM S_LNET
34
35 #include <linux/fs.h>
36 #include <linux/miscdevice.h>
37 #include <linux/uaccess.h>
38 #include <libcfs/libcfs.h>
39
40 static inline size_t libcfs_ioctl_packlen(struct libcfs_ioctl_data *data)
41 {
42         size_t len = sizeof(*data);
43
44         len += (data->ioc_inllen1 + 7) & ~7;
45         len += (data->ioc_inllen2 + 7) & ~7;
46         return len;
47 }
48
49 static bool libcfs_ioctl_is_invalid(struct libcfs_ioctl_data *data)
50 {
51         if (data->ioc_hdr.ioc_len > BIT(30))
52                 return true;
53
54         if (data->ioc_inllen1 > BIT(30))
55                 return true;
56
57         if (data->ioc_inllen2 > BIT(30))
58                 return true;
59
60         if (data->ioc_inlbuf1 && !data->ioc_inllen1)
61                 return true;
62
63         if (data->ioc_inlbuf2 && !data->ioc_inllen2)
64                 return true;
65
66         if (data->ioc_pbuf1 && !data->ioc_plen1)
67                 return true;
68
69         if (data->ioc_pbuf2 && !data->ioc_plen2)
70                 return true;
71
72         if (data->ioc_plen1 && !data->ioc_pbuf1)
73                 return true;
74
75         if (data->ioc_plen2 && !data->ioc_pbuf2)
76                 return true;
77
78         if (libcfs_ioctl_packlen(data) != data->ioc_hdr.ioc_len)
79                 return true;
80
81         if (data->ioc_inllen1 &&
82             data->ioc_bulk[((data->ioc_inllen1 + 7) & ~7) +
83                              data->ioc_inllen2 - 1] != '\0')
84                 return true;
85
86         return false;
87 }
88
89 int libcfs_ioctl_data_adjust(struct libcfs_ioctl_data *data)
90 {
91         ENTRY;
92
93         if (libcfs_ioctl_is_invalid(data)) {
94                 CERROR("libcfs ioctl: parameter not correctly formatted\n");
95                 RETURN(-EINVAL);
96         }
97
98         if (data->ioc_inllen1 != 0)
99                 data->ioc_inlbuf1 = &data->ioc_bulk[0];
100
101         if (data->ioc_inllen2 != 0)
102                 data->ioc_inlbuf2 = &data->ioc_bulk[0] +
103                                     cfs_size_round(data->ioc_inllen1);
104
105         RETURN(0);
106 }
107
108 int libcfs_ioctl_getdata(struct libcfs_ioctl_hdr **hdr_pp,
109                          struct libcfs_ioctl_hdr __user *uhdr)
110 {
111         struct libcfs_ioctl_hdr   hdr;
112         int err = 0;
113         ENTRY;
114
115         if (copy_from_user(&hdr, uhdr, sizeof(hdr)))
116                 RETURN(-EFAULT);
117
118         if (hdr.ioc_version != LIBCFS_IOCTL_VERSION &&
119             hdr.ioc_version != LIBCFS_IOCTL_VERSION2) {
120                 CERROR("libcfs ioctl: version mismatch expected %#x, got %#x\n",
121                        LIBCFS_IOCTL_VERSION, hdr.ioc_version);
122                 RETURN(-EINVAL);
123         }
124
125         if (hdr.ioc_len < sizeof(struct libcfs_ioctl_hdr)) {
126                 CERROR("libcfs ioctl: user buffer too small for ioctl\n");
127                 RETURN(-EINVAL);
128         }
129
130         if (hdr.ioc_len > LIBCFS_IOC_DATA_MAX) {
131                 CERROR("libcfs ioctl: user buffer is too large %d/%d\n",
132                        hdr.ioc_len, LIBCFS_IOC_DATA_MAX);
133                 RETURN(-EINVAL);
134         }
135
136         LIBCFS_ALLOC(*hdr_pp, hdr.ioc_len);
137         if (*hdr_pp == NULL)
138                 RETURN(-ENOMEM);
139
140         if (copy_from_user(*hdr_pp, uhdr, hdr.ioc_len))
141                 GOTO(failed, err = -EFAULT);
142
143         RETURN(0);
144 failed:
145         LIBCFS_FREE(*hdr_pp, hdr.ioc_len);
146         RETURN(err);
147 }
148
149 static long
150 libcfs_psdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
151 {
152         if (!capable(CAP_SYS_ADMIN))
153                 return -EACCES;
154
155         if (_IOC_TYPE(cmd) != IOC_LIBCFS_TYPE ||
156             _IOC_NR(cmd) < IOC_LIBCFS_MIN_NR ||
157             _IOC_NR(cmd) > IOC_LIBCFS_MAX_NR) {
158                 CDEBUG(D_IOCTL, "invalid ioctl ( type %d, nr %d, size %d )\n",
159                        _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd));
160                 return -EINVAL;
161         }
162
163         return libcfs_ioctl(cmd, (void __user *)arg);
164 }
165
166 static struct file_operations libcfs_fops = {
167         .owner          = THIS_MODULE,
168         .unlocked_ioctl = libcfs_psdev_ioctl,
169 };
170
171 struct miscdevice libcfs_dev = {
172         .minor  = MISC_DYNAMIC_MINOR,
173         .name   = "lnet",
174         .fops   = &libcfs_fops
175 };