blob: 38308f8b6aae907fe0eace9075f171d8b66eff31 [file] [log] [blame]
Peng Taod7e09d02013-05-02 16:46:55 +08001/*
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
Oleg Drokin6a5b99a2016-06-14 23:33:40 -040018 * http://www.gnu.org/licenses/gpl-2.0.html
Peng Taod7e09d02013-05-02 16:46:55 +080019 *
Peng Taod7e09d02013-05-02 16:46:55 +080020 * 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, 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
Greg Kroah-Hartman9fdaf8c2014-07-11 20:51:16 -070035#include "../../../include/linux/libcfs/libcfs.h"
Peng Taod7e09d02013-05-02 16:46:55 +080036
37#define LNET_MINOR 240
38
James Simmonsc9493bd2016-03-22 19:04:16 -040039static inline size_t libcfs_ioctl_packlen(struct libcfs_ioctl_data *data)
James Simmonscfec4b52016-03-22 19:04:10 -040040{
James Simmonsc9493bd2016-03-22 19:04:16 -040041 size_t len = sizeof(*data);
James Simmonscfec4b52016-03-22 19:04:10 -040042
43 len += cfs_size_round(data->ioc_inllen1);
44 len += cfs_size_round(data->ioc_inllen2);
45 return len;
46}
47
48static inline bool libcfs_ioctl_is_invalid(struct libcfs_ioctl_data *data)
49{
James Simmons243fdde2016-03-22 19:04:15 -040050 if (data->ioc_hdr.ioc_len > BIT(30)) {
James Simmonscfec4b52016-03-22 19:04:10 -040051 CERROR("LIBCFS ioctl: ioc_len larger than 1<<30\n");
James Simmons460a2222016-03-22 19:04:14 -040052 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040053 }
James Simmons243fdde2016-03-22 19:04:15 -040054 if (data->ioc_inllen1 > BIT(30)) {
James Simmonscfec4b52016-03-22 19:04:10 -040055 CERROR("LIBCFS ioctl: ioc_inllen1 larger than 1<<30\n");
James Simmons460a2222016-03-22 19:04:14 -040056 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040057 }
James Simmons243fdde2016-03-22 19:04:15 -040058 if (data->ioc_inllen2 > BIT(30)) {
James Simmonscfec4b52016-03-22 19:04:10 -040059 CERROR("LIBCFS ioctl: ioc_inllen2 larger than 1<<30\n");
James Simmons460a2222016-03-22 19:04:14 -040060 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040061 }
62 if (data->ioc_inlbuf1 && !data->ioc_inllen1) {
63 CERROR("LIBCFS ioctl: inlbuf1 pointer but 0 length\n");
James Simmons460a2222016-03-22 19:04:14 -040064 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040065 }
66 if (data->ioc_inlbuf2 && !data->ioc_inllen2) {
67 CERROR("LIBCFS ioctl: inlbuf2 pointer but 0 length\n");
James Simmons460a2222016-03-22 19:04:14 -040068 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040069 }
70 if (data->ioc_pbuf1 && !data->ioc_plen1) {
71 CERROR("LIBCFS ioctl: pbuf1 pointer but 0 length\n");
James Simmons460a2222016-03-22 19:04:14 -040072 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040073 }
74 if (data->ioc_pbuf2 && !data->ioc_plen2) {
75 CERROR("LIBCFS ioctl: pbuf2 pointer but 0 length\n");
James Simmons460a2222016-03-22 19:04:14 -040076 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040077 }
78 if (data->ioc_plen1 && !data->ioc_pbuf1) {
79 CERROR("LIBCFS ioctl: plen1 nonzero but no pbuf1 pointer\n");
James Simmons460a2222016-03-22 19:04:14 -040080 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040081 }
82 if (data->ioc_plen2 && !data->ioc_pbuf2) {
83 CERROR("LIBCFS ioctl: plen2 nonzero but no pbuf2 pointer\n");
James Simmons460a2222016-03-22 19:04:14 -040084 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040085 }
86 if ((__u32)libcfs_ioctl_packlen(data) != data->ioc_hdr.ioc_len) {
87 CERROR("LIBCFS ioctl: packlen != ioc_len\n");
James Simmons460a2222016-03-22 19:04:14 -040088 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040089 }
90 if (data->ioc_inllen1 &&
91 data->ioc_bulk[data->ioc_inllen1 - 1] != '\0') {
92 CERROR("LIBCFS ioctl: inlbuf1 not 0 terminated\n");
James Simmons460a2222016-03-22 19:04:14 -040093 return true;
James Simmonscfec4b52016-03-22 19:04:10 -040094 }
95 if (data->ioc_inllen2 &&
96 data->ioc_bulk[cfs_size_round(data->ioc_inllen1) +
97 data->ioc_inllen2 - 1] != '\0') {
98 CERROR("LIBCFS ioctl: inlbuf2 not 0 terminated\n");
James Simmons460a2222016-03-22 19:04:14 -040099 return true;
James Simmonscfec4b52016-03-22 19:04:10 -0400100 }
James Simmons460a2222016-03-22 19:04:14 -0400101 return false;
James Simmonscfec4b52016-03-22 19:04:10 -0400102}
103
Amir Shehata12909322016-02-22 17:29:02 -0500104int libcfs_ioctl_data_adjust(struct libcfs_ioctl_data *data)
Peng Taod7e09d02013-05-02 16:46:55 +0800105{
Peng Taod7e09d02013-05-02 16:46:55 +0800106 if (libcfs_ioctl_is_invalid(data)) {
Liang Zhen6d0aeaa32016-03-22 19:03:56 -0400107 CERROR("libcfs ioctl: parameter not correctly formatted\n");
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800108 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +0800109 }
110
111 if (data->ioc_inllen1)
112 data->ioc_inlbuf1 = &data->ioc_bulk[0];
113
114 if (data->ioc_inllen2)
115 data->ioc_inlbuf2 = &data->ioc_bulk[0] +
116 cfs_size_round(data->ioc_inllen1);
117
Greg Kroah-Hartman0a3bdb02013-08-03 10:35:28 +0800118 return 0;
Peng Taod7e09d02013-05-02 16:46:55 +0800119}
120
Liang Zhene4efb342016-03-22 19:03:50 -0400121int libcfs_ioctl_getdata(struct libcfs_ioctl_hdr **hdr_pp,
122 const struct libcfs_ioctl_hdr __user *uhdr)
Amir Shehata12909322016-02-22 17:29:02 -0500123{
124 struct libcfs_ioctl_hdr hdr;
Liang Zhene4efb342016-03-22 19:03:50 -0400125 int err = 0;
Amir Shehata12909322016-02-22 17:29:02 -0500126
Oleg Drokin78ab1252016-03-27 12:05:03 -0400127 if (copy_from_user(&hdr, uhdr, sizeof(hdr)))
Amir Shehata12909322016-02-22 17:29:02 -0500128 return -EFAULT;
129
Amir Shehata2e9a51b2016-02-22 17:29:03 -0500130 if (hdr.ioc_version != LIBCFS_IOCTL_VERSION &&
131 hdr.ioc_version != LIBCFS_IOCTL_VERSION2) {
Liang Zhen6d0aeaa32016-03-22 19:03:56 -0400132 CERROR("libcfs ioctl: version mismatch expected %#x, got %#x\n",
Amir Shehata12909322016-02-22 17:29:02 -0500133 LIBCFS_IOCTL_VERSION, hdr.ioc_version);
134 return -EINVAL;
135 }
136
Liang Zhened2f5492016-03-22 19:03:57 -0400137 if (hdr.ioc_len < sizeof(struct libcfs_ioctl_data)) {
138 CERROR("libcfs ioctl: user buffer too small for ioctl\n");
139 return -EINVAL;
140 }
141
Liang Zhene4efb342016-03-22 19:03:50 -0400142 if (hdr.ioc_len > LIBCFS_IOC_DATA_MAX) {
143 CERROR("libcfs ioctl: user buffer is too large %d/%d\n",
144 hdr.ioc_len, LIBCFS_IOC_DATA_MAX);
145 return -EINVAL;
146 }
Amir Shehata12909322016-02-22 17:29:02 -0500147
Liang Zhene4efb342016-03-22 19:03:50 -0400148 LIBCFS_ALLOC(*hdr_pp, hdr.ioc_len);
149 if (!*hdr_pp)
150 return -ENOMEM;
151
152 if (copy_from_user(*hdr_pp, uhdr, hdr.ioc_len)) {
153 LIBCFS_FREE(*hdr_pp, hdr.ioc_len);
154 err = -EFAULT;
155 }
156 return err;
Amir Shehata12909322016-02-22 17:29:02 -0500157}
158
Parinay Kondekarae272a42016-03-22 19:04:07 -0400159static long
160libcfs_psdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
Peng Taod7e09d02013-05-02 16:46:55 +0800161{
Peng Tao4b1a25f2013-07-15 22:27:14 +0800162 if (!capable(CAP_SYS_ADMIN))
Peng Taod7e09d02013-05-02 16:46:55 +0800163 return -EACCES;
164
Jessica Yu91a002c2014-07-28 06:33:13 -0700165 if (_IOC_TYPE(cmd) != IOC_LIBCFS_TYPE ||
Oleg Drokinae0b4832016-02-16 00:47:00 -0500166 _IOC_NR(cmd) < IOC_LIBCFS_MIN_NR ||
167 _IOC_NR(cmd) > IOC_LIBCFS_MAX_NR) {
Peng Taod7e09d02013-05-02 16:46:55 +0800168 CDEBUG(D_IOCTL, "invalid ioctl ( type %d, nr %d, size %d )\n",
169 _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd));
Julia Lawallfbe7c6c2014-08-26 22:00:33 +0200170 return -EINVAL;
Peng Taod7e09d02013-05-02 16:46:55 +0800171 }
172
Parinay Kondekar89010fb2016-03-22 19:04:08 -0400173 return libcfs_ioctl(cmd, (void __user *)arg);
Peng Taod7e09d02013-05-02 16:46:55 +0800174}
175
Jessica Yud81f9f52014-07-28 06:33:15 -0700176static const struct file_operations libcfs_fops = {
Parinay Kondekar4678d182016-03-22 19:04:06 -0400177 .owner = THIS_MODULE,
Parinay Kondekarae272a42016-03-22 19:04:07 -0400178 .unlocked_ioctl = libcfs_psdev_ioctl,
Peng Taod7e09d02013-05-02 16:46:55 +0800179};
180
Greg Kroah-Hartmanc0426cf2013-07-24 10:21:26 -0700181struct miscdevice libcfs_dev = {
182 .minor = LNET_MINOR,
183 .name = "lnet",
184 .fops = &libcfs_fops,
Peng Taod7e09d02013-05-02 16:46:55 +0800185};