Whamcloud - gitweb
LU-2456 lnet: Dynamic LNet Configuration (DLC) IOCTL changes
[fs/lustre-release.git] / libcfs / include / libcfs / libcfs_ioctl.h
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.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * libcfs/include/libcfs/libcfs_ioctl.h
35  *
36  * Low-level ioctl data structures. Kernel ioctl functions declared here,
37  * and user space functions are in libcfsutil_ioctl.h.
38  *
39  */
40
41 #ifndef __LIBCFS_IOCTL_H__
42 #define __LIBCFS_IOCTL_H__
43
44 #define LIBCFS_IOCTL_VERSION 0x0001000a
45
46 struct libcfs_ioctl_hdr {
47         __u32 ioc_len;
48         __u32 ioc_version;
49 };
50
51 struct libcfs_ioctl_data {
52         struct libcfs_ioctl_hdr ioc_hdr;
53
54         __u64 ioc_nid;
55         __u64 ioc_u64[1];
56
57         __u32 ioc_flags;
58         __u32 ioc_count;
59         __u32 ioc_net;
60         __u32 ioc_u32[7];
61
62         __u32 ioc_inllen1;
63         char *ioc_inlbuf1;
64         __u32 ioc_inllen2;
65         char *ioc_inlbuf2;
66
67         __u32 ioc_plen1; /* buffers in userspace */
68         char *ioc_pbuf1;
69         __u32 ioc_plen2; /* buffers in userspace */
70         char *ioc_pbuf2;
71
72         char ioc_bulk[0];
73 };
74
75 #define ioc_priority ioc_u32[0]
76
77
78 struct libcfs_debug_ioctl_data
79 {
80         struct libcfs_ioctl_hdr hdr;
81         unsigned int subs;
82         unsigned int debug;
83 };
84
85 #define LIBCFS_IOC_INIT(data)                           \
86 do {                                                    \
87         memset(&data, 0, sizeof(data));                 \
88         data.ioc_hdr.ioc_version = LIBCFS_IOCTL_VERSION;        \
89         data.ioc_hdr.ioc_len = sizeof(data);            \
90 } while (0)
91
92 #ifdef __KERNEL__
93
94 struct libcfs_ioctl_handler {
95         struct list_head item;
96         int (*handle_ioctl)(unsigned int cmd, struct libcfs_ioctl_hdr *hdr);
97 };
98
99 #define DECLARE_IOCTL_HANDLER(ident, func)                      \
100         struct libcfs_ioctl_handler ident = {                   \
101                 /* .item = */ LIST_HEAD_INIT(ident.item),       \
102                 /* .handle_ioctl = */ func                      \
103         }
104
105 #endif
106
107 /* 'f' ioctls are defined in lustre_ioctl.h and lustre_user.h except for: */
108 #define LIBCFS_IOC_DEBUG_MASK             _IOWR('f', 250, long)
109 #define IOCTL_LIBCFS_TYPE                 long
110
111 /* ioctls for manipulating snapshots 30- */
112 #define IOC_LIBCFS_TYPE                   'e'
113 #define IOC_LIBCFS_MIN_NR                 30
114 /* libcfs ioctls */
115 #define IOC_LIBCFS_PANIC                   _IOWR('e', 30, IOCTL_LIBCFS_TYPE)
116 #define IOC_LIBCFS_CLEAR_DEBUG             _IOWR('e', 31, IOCTL_LIBCFS_TYPE)
117 #define IOC_LIBCFS_MARK_DEBUG              _IOWR('e', 32, IOCTL_LIBCFS_TYPE)
118 #define IOC_LIBCFS_MEMHOG                  _IOWR('e', 36, IOCTL_LIBCFS_TYPE)
119 #define IOC_LIBCFS_PING_TEST               _IOWR('e', 37, IOCTL_LIBCFS_TYPE)
120 /* lnet ioctls */
121 #define IOC_LIBCFS_GET_NI                  _IOWR('e', 50, IOCTL_LIBCFS_TYPE)
122 #define IOC_LIBCFS_FAIL_NID                _IOWR('e', 51, IOCTL_LIBCFS_TYPE)
123 #define IOC_LIBCFS_ADD_ROUTE               _IOWR('e', 52, IOCTL_LIBCFS_TYPE)
124 #define IOC_LIBCFS_DEL_ROUTE               _IOWR('e', 53, IOCTL_LIBCFS_TYPE)
125 #define IOC_LIBCFS_GET_ROUTE               _IOWR('e', 54, IOCTL_LIBCFS_TYPE)
126 #define IOC_LIBCFS_NOTIFY_ROUTER           _IOWR('e', 55, IOCTL_LIBCFS_TYPE)
127 #define IOC_LIBCFS_UNCONFIGURE             _IOWR('e', 56, IOCTL_LIBCFS_TYPE)
128 #define IOC_LIBCFS_PORTALS_COMPATIBILITY   _IOWR('e', 57, IOCTL_LIBCFS_TYPE)
129 #define IOC_LIBCFS_LNET_DIST               _IOWR('e', 58, IOCTL_LIBCFS_TYPE)
130 #define IOC_LIBCFS_CONFIGURE               _IOWR('e', 59, IOCTL_LIBCFS_TYPE)
131 #define IOC_LIBCFS_TESTPROTOCOMPAT         _IOWR('e', 60, IOCTL_LIBCFS_TYPE)
132 #define IOC_LIBCFS_PING                    _IOWR('e', 61, IOCTL_LIBCFS_TYPE)
133 #define IOC_LIBCFS_DEBUG_PEER              _IOWR('e', 62, IOCTL_LIBCFS_TYPE)
134 #define IOC_LIBCFS_LNETST                  _IOWR('e', 63, IOCTL_LIBCFS_TYPE)
135 /* lnd ioctls */
136 #define IOC_LIBCFS_REGISTER_MYNID          _IOWR('e', 70, IOCTL_LIBCFS_TYPE)
137 #define IOC_LIBCFS_CLOSE_CONNECTION        _IOWR('e', 71, IOCTL_LIBCFS_TYPE)
138 #define IOC_LIBCFS_PUSH_CONNECTION         _IOWR('e', 72, IOCTL_LIBCFS_TYPE)
139 #define IOC_LIBCFS_GET_CONN                _IOWR('e', 73, IOCTL_LIBCFS_TYPE)
140 #define IOC_LIBCFS_DEL_PEER                _IOWR('e', 74, IOCTL_LIBCFS_TYPE)
141 #define IOC_LIBCFS_ADD_PEER                _IOWR('e', 75, IOCTL_LIBCFS_TYPE)
142 #define IOC_LIBCFS_GET_PEER                _IOWR('e', 76, IOCTL_LIBCFS_TYPE)
143 #define IOC_LIBCFS_GET_TXDESC              _IOWR('e', 77, IOCTL_LIBCFS_TYPE)
144 #define IOC_LIBCFS_ADD_INTERFACE           _IOWR('e', 78, IOCTL_LIBCFS_TYPE)
145 #define IOC_LIBCFS_DEL_INTERFACE           _IOWR('e', 79, IOCTL_LIBCFS_TYPE)
146 #define IOC_LIBCFS_GET_INTERFACE           _IOWR('e', 80, IOCTL_LIBCFS_TYPE)
147
148 #define IOC_LIBCFS_MAX_NR                             80
149
150 static inline int libcfs_ioctl_packlen(struct libcfs_ioctl_data *data)
151 {
152         int len = sizeof(*data);
153         len += cfs_size_round(data->ioc_inllen1);
154         len += cfs_size_round(data->ioc_inllen2);
155         return len;
156 }
157
158 static inline bool libcfs_ioctl_is_invalid(struct libcfs_ioctl_data *data)
159 {
160         if (data->ioc_hdr.ioc_len > (1<<30)) {
161                 CERROR("LIBCFS ioctl: ioc_len larger than 1<<30\n");
162                 return 1;
163         }
164         if (data->ioc_inllen1 > (1<<30)) {
165                 CERROR("LIBCFS ioctl: ioc_inllen1 larger than 1<<30\n");
166                 return 1;
167         }
168         if (data->ioc_inllen2 > (1<<30)) {
169                 CERROR("LIBCFS ioctl: ioc_inllen2 larger than 1<<30\n");
170                 return 1;
171         }
172         if (data->ioc_inlbuf1 && data->ioc_inllen1 == 0) {
173                 CERROR("LIBCFS ioctl: inlbuf1 pointer but 0 length\n");
174                 return 1;
175         }
176         if (data->ioc_inlbuf2 && data->ioc_inllen2 == 0) {
177                 CERROR("LIBCFS ioctl: inlbuf2 pointer but 0 length\n");
178                 return 1;
179         }
180         if (data->ioc_pbuf1 && data->ioc_plen1 == 0) {
181                 CERROR("LIBCFS ioctl: pbuf1 pointer but 0 length\n");
182                 return 1;
183         }
184         if (data->ioc_pbuf2 && data->ioc_plen2 == 0) {
185                 CERROR("LIBCFS ioctl: pbuf2 pointer but 0 length\n");
186                 return 1;
187         }
188         if (data->ioc_plen1 && data->ioc_pbuf1 == 0) {
189                 CERROR("LIBCFS ioctl: plen1 nonzero but no pbuf1 pointer\n");
190                 return 1;
191         }
192         if (data->ioc_plen2 && data->ioc_pbuf2 == 0) {
193                 CERROR("LIBCFS ioctl: plen2 nonzero but no pbuf2 pointer\n");
194                 return 1;
195         }
196         if ((__u32)libcfs_ioctl_packlen(data) != data->ioc_hdr.ioc_len) {
197                 CERROR("LIBCFS ioctl: packlen != ioc_len\n");
198                 return 1;
199         }
200         if (data->ioc_inllen1 &&
201             data->ioc_bulk[data->ioc_inllen1 - 1] != '\0') {
202                 CERROR("LIBCFS ioctl: inlbuf1 not 0 terminated\n");
203                 return 1;
204         }
205         if (data->ioc_inllen2 &&
206             data->ioc_bulk[cfs_size_round(data->ioc_inllen1) +
207                            data->ioc_inllen2 - 1] != '\0') {
208                 CERROR("LIBCFS ioctl: inlbuf2 not 0 terminated\n");
209                 return 1;
210         }
211         return 0;
212 }
213
214 #ifdef __KERNEL__
215
216 extern int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand);
217 extern int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
218 extern int libcfs_ioctl_getdata(struct libcfs_ioctl_hdr *buf, __u32 buf_len,
219                                 const void __user *arg);
220 extern int libcfs_ioctl_getdata_len(const struct libcfs_ioctl_hdr __user *arg,
221                                     __u32 *buf_len);
222 extern int libcfs_ioctl_popdata(void *arg, void *buf, int size);
223 #endif
224
225 extern int libcfs_ioctl_data_adjust(struct libcfs_ioctl_data *data);
226
227 #endif /* __LIBCFS_IOCTL_H__ */