Whamcloud - gitweb
LU-7846 nodemap: add fileset info to nodemap
[fs/lustre-release.git] / lustre / include / lustre_cfg.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) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _LUSTRE_CFG_H
38 #define _LUSTRE_CFG_H
39
40 #include <libcfs/libcfs.h>
41 #include <lustre/lustre_user.h>
42
43 #ifdef __KERNEL__
44 # include <obd_support.h>
45 #else /* !__KERNEL__ */
46 # include <malloc.h>
47 # include <stdlib.h>
48 #endif /* __KERNEL__ */
49
50 /** \defgroup cfg cfg
51  *
52  * @{
53  */
54
55 /*
56  * 1cf6
57  * lcfG
58  */
59 #define LUSTRE_CFG_VERSION 0x1cf60001
60 #define LUSTRE_CFG_MAX_BUFCOUNT 8
61
62 #define LCFG_HDR_SIZE(count) \
63     cfs_size_round(offsetof (struct lustre_cfg, lcfg_buflens[(count)]))
64
65 /** If the LCFG_REQUIRED bit is set in a configuration command,
66  * then the client is required to understand this parameter
67  * in order to mount the filesystem. If it does not understand
68  * a REQUIRED command the client mount will fail. */
69 #define LCFG_REQUIRED         0x0001000
70
71 enum lcfg_command_type {
72         LCFG_ATTACH             = 0x00cf001, /**< create a new obd instance */
73         LCFG_DETACH             = 0x00cf002, /**< destroy obd instance */
74         LCFG_SETUP              = 0x00cf003, /**< call type-specific setup */
75         LCFG_CLEANUP            = 0x00cf004, /**< call type-specific cleanup */
76         LCFG_ADD_UUID           = 0x00cf005, /**< add a nid to a niduuid */
77         LCFG_DEL_UUID           = 0x00cf006, /**< remove a nid from a niduuid */
78         LCFG_MOUNTOPT           = 0x00cf007, /**< create a profile (mdc, osc) */
79         LCFG_DEL_MOUNTOPT       = 0x00cf008, /**< destroy a profile */
80         LCFG_SET_TIMEOUT        = 0x00cf009, /**< set obd_timeout */
81         LCFG_SET_UPCALL         = 0x00cf00a, /**< deprecated */
82         LCFG_ADD_CONN           = 0x00cf00b, /**< add a failover niduuid to an obd */
83         LCFG_DEL_CONN           = 0x00cf00c, /**< remove a failover niduuid */
84         LCFG_LOV_ADD_OBD        = 0x00cf00d, /**< add an osc to a lov */
85         LCFG_LOV_DEL_OBD        = 0x00cf00e, /**< remove an osc from a lov */
86         LCFG_PARAM              = 0x00cf00f, /**< set a proc parameter */
87         LCFG_MARKER             = 0x00cf010, /**< metadata about next cfg rec */
88         LCFG_LOG_START          = 0x00ce011, /**< mgc only, process a cfg log */
89         LCFG_LOG_END            = 0x00ce012, /**< stop processing updates */
90         LCFG_LOV_ADD_INA        = 0x00ce013, /**< like LOV_ADD_OBD, inactive */
91         LCFG_ADD_MDC            = 0x00cf014, /**< add an mdc to a lmv */
92         LCFG_DEL_MDC            = 0x00cf015, /**< remove an mdc from a lmv */
93         LCFG_SPTLRPC_CONF       = 0x00ce016, /**< security */
94         LCFG_POOL_NEW           = 0x00ce020, /**< create an ost pool name */
95         LCFG_POOL_ADD           = 0x00ce021, /**< add an ost to a pool */
96         LCFG_POOL_REM           = 0x00ce022, /**< remove an ost from a pool */
97         LCFG_POOL_DEL           = 0x00ce023, /**< destroy an ost pool name */
98         LCFG_SET_LDLM_TIMEOUT   = 0x00ce030, /**< set ldlm_timeout */
99         LCFG_PRE_CLEANUP        = 0x00cf031, /**< call type-specific pre
100                                               * cleanup cleanup */
101         LCFG_SET_PARAM          = 0x00ce032, /**< use set_param syntax to set
102                                               *a proc parameters */
103         LCFG_NODEMAP_ADD        = 0x00ce040, /**< create a cluster */
104         LCFG_NODEMAP_DEL        = 0x00ce041, /**< destroy a cluster */
105         LCFG_NODEMAP_ADD_RANGE  = 0x00ce042, /**< add a nid range */
106         LCFG_NODEMAP_DEL_RANGE  = 0x00ce043, /**< delete an nid range */
107         LCFG_NODEMAP_ADD_UIDMAP = 0x00ce044, /**< add a uidmap */
108         LCFG_NODEMAP_DEL_UIDMAP = 0x00ce045, /**< delete a uidmap */
109         LCFG_NODEMAP_ADD_GIDMAP = 0x00ce046, /**< add a gidmap */
110         LCFG_NODEMAP_DEL_GIDMAP = 0x00ce047, /**< delete a gidmap */
111         LCFG_NODEMAP_ACTIVATE   = 0x00ce048, /**< activate cluster id mapping */
112         LCFG_NODEMAP_ADMIN      = 0x00ce049, /**< allow cluster to use id 0 */
113         LCFG_NODEMAP_TRUSTED    = 0x00ce050, /**< trust a clusters ids */
114         LCFG_NODEMAP_SQUASH_UID = 0x00ce051, /**< default map uid */
115         LCFG_NODEMAP_SQUASH_GID = 0x00ce052, /**< default map gid */
116         LCFG_NODEMAP_ADD_SHKEY  = 0x00ce053, /**< add shared key to cluster */
117         LCFG_NODEMAP_DEL_SHKEY  = 0x00ce054, /**< delete shared key from cluster */
118         LCFG_NODEMAP_TEST_NID   = 0x00ce055, /**< test for nodemap membership */
119         LCFG_NODEMAP_TEST_ID    = 0x00ce056, /**< test uid/gid mapping */
120         LCFG_NODEMAP_SET_FILESET   = 0x00ce057, /**< set fileset */
121 };
122
123 struct lustre_cfg_bufs {
124         void    *lcfg_buf[LUSTRE_CFG_MAX_BUFCOUNT];
125         __u32    lcfg_buflen[LUSTRE_CFG_MAX_BUFCOUNT];
126         __u32    lcfg_bufcount;
127 };
128
129 struct lustre_cfg {
130         __u32 lcfg_version;
131         __u32 lcfg_command;
132
133         __u32 lcfg_num;
134         __u32 lcfg_flags;
135         __u64 lcfg_nid;
136         __u32 lcfg_nal;         /* not used any more */
137
138         __u32 lcfg_bufcount;
139         __u32 lcfg_buflens[0];
140 };
141
142 enum cfg_record_type {
143         PORTALS_CFG_TYPE = 1,
144         LUSTRE_CFG_TYPE = 123,
145 };
146
147 #define LUSTRE_CFG_BUFLEN(lcfg, idx)            \
148         ((lcfg)->lcfg_bufcount <= (idx)         \
149          ? 0                                    \
150          : (lcfg)->lcfg_buflens[(idx)])
151
152 static inline void lustre_cfg_bufs_set(struct lustre_cfg_bufs *bufs,
153                                        __u32                   index,
154                                        void                   *buf,
155                                        __u32                   buflen)
156 {
157         if (index >= LUSTRE_CFG_MAX_BUFCOUNT)
158                 return;
159         if (bufs == NULL)
160                 return;
161
162         if (bufs->lcfg_bufcount <= index)
163                 bufs->lcfg_bufcount = index + 1;
164
165         bufs->lcfg_buf[index]    = buf;
166         bufs->lcfg_buflen[index] = buflen;
167 }
168
169 static inline void lustre_cfg_bufs_set_string(struct lustre_cfg_bufs *bufs,
170                                               __u32 index,
171                                               char *str)
172 {
173         lustre_cfg_bufs_set(bufs, index, str, str ? strlen(str) + 1 : 0);
174 }
175
176 static inline void lustre_cfg_bufs_reset(struct lustre_cfg_bufs *bufs, char *name)
177 {
178         memset((bufs), 0, sizeof(*bufs));
179         if (name)
180                 lustre_cfg_bufs_set_string(bufs, 0, name);
181 }
182
183 static inline void *lustre_cfg_buf(struct lustre_cfg *lcfg, __u32 index)
184 {
185         __u32 i;
186         size_t offset;
187         __u32 bufcount;
188         LASSERT (lcfg != NULL);
189
190         bufcount = lcfg->lcfg_bufcount;
191         if (index >= bufcount)
192                 return NULL;
193
194         offset = LCFG_HDR_SIZE(lcfg->lcfg_bufcount);
195         for (i = 0; i < index; i++)
196                 offset += cfs_size_round(lcfg->lcfg_buflens[i]);
197         return (char *)lcfg + offset;
198 }
199
200 static inline void lustre_cfg_bufs_init(struct lustre_cfg_bufs *bufs,
201                                         struct lustre_cfg *lcfg)
202 {
203         __u32 i;
204         bufs->lcfg_bufcount = lcfg->lcfg_bufcount;
205         for (i = 0; i < bufs->lcfg_bufcount; i++) {
206                 bufs->lcfg_buflen[i] = lcfg->lcfg_buflens[i];
207                 bufs->lcfg_buf[i] = lustre_cfg_buf(lcfg, i);
208         }
209 }
210
211 static inline char *lustre_cfg_string(struct lustre_cfg *lcfg, __u32 index)
212 {
213         char *s;
214
215         if (lcfg->lcfg_buflens[index] == 0)
216                 return NULL;
217
218         s = lustre_cfg_buf(lcfg, index);
219         if (s == NULL)
220                 return NULL;
221
222         /*
223          * make sure it's NULL terminated, even if this kills a char
224          * of data.  Try to use the padding first though.
225          */
226         if (s[lcfg->lcfg_buflens[index] - 1] != '\0') {
227                 size_t last = cfs_size_round(lcfg->lcfg_buflens[index]) - 1;
228                 char lost;
229
230                 /* Use the smaller value */
231                 if (last > lcfg->lcfg_buflens[index])
232                         last = lcfg->lcfg_buflens[index];
233
234                 lost = s[last];
235                 s[last] = '\0';
236                 if (lost != '\0') {
237                         CWARN("Truncated buf %d to '%s' (lost '%c'...)\n",
238                               index, s, lost);
239                 }
240         }
241         return s;
242 }
243
244 static inline __u32 lustre_cfg_len(__u32 bufcount, __u32 *buflens)
245 {
246         __u32 i;
247         __u32 len;
248         ENTRY;
249
250         len = LCFG_HDR_SIZE(bufcount);
251         for (i = 0; i < bufcount; i++)
252                 len += cfs_size_round(buflens[i]);
253
254         RETURN(cfs_size_round(len));
255 }
256
257 static inline void lustre_cfg_init(struct lustre_cfg *lcfg, int cmd,
258                                    struct lustre_cfg_bufs *bufs)
259 {
260         char *ptr;
261         __u32 i;
262
263         lcfg->lcfg_version = LUSTRE_CFG_VERSION;
264         lcfg->lcfg_command = cmd;
265         lcfg->lcfg_bufcount = bufs->lcfg_bufcount;
266
267         ptr = (char *)lcfg + LCFG_HDR_SIZE(lcfg->lcfg_bufcount);
268         for (i = 0; i < lcfg->lcfg_bufcount; i++) {
269                 lcfg->lcfg_buflens[i] = bufs->lcfg_buflen[i];
270                 LOGL((char *)bufs->lcfg_buf[i], bufs->lcfg_buflen[i], ptr);
271         }
272 }
273
274 static inline struct lustre_cfg *lustre_cfg_new(int cmd,
275                                                 struct lustre_cfg_bufs *bufs)
276 {
277         struct lustre_cfg       *lcfg;
278
279 #ifdef __KERNEL__
280         OBD_ALLOC(lcfg, lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
281 #else /* !__KERNEL__ */
282         lcfg = malloc(lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
283 #endif /* __KERNEL__ */
284
285         if (lcfg != NULL)
286                 lustre_cfg_init(lcfg, cmd, bufs);
287
288         return lcfg;
289 }
290
291 static inline void lustre_cfg_free(struct lustre_cfg *lcfg)
292 {
293 #ifdef __KERNEL__
294         OBD_FREE(lcfg, lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens));
295 #else /* ! __KERNEL__ */
296         free(lcfg);
297 #endif /* __KERNEL__ */
298 }
299
300 static inline int lustre_cfg_sanity_check(void *buf, size_t len)
301 {
302         struct lustre_cfg *lcfg = (struct lustre_cfg *)buf;
303         ENTRY;
304         if (!lcfg)
305                 RETURN(-EINVAL);
306
307         /* check that the first bits of the struct are valid */
308         if (len < LCFG_HDR_SIZE(0))
309                 RETURN(-EINVAL);
310
311         if (lcfg->lcfg_version != LUSTRE_CFG_VERSION)
312                 RETURN(-EINVAL);
313
314         if (lcfg->lcfg_bufcount >= LUSTRE_CFG_MAX_BUFCOUNT)
315                 RETURN(-EINVAL);
316
317         /* check that the buflens are valid */
318         if (len < LCFG_HDR_SIZE(lcfg->lcfg_bufcount))
319                 RETURN(-EINVAL);
320
321         /* make sure all the pointers point inside the data */
322         if (len < lustre_cfg_len(lcfg->lcfg_bufcount, lcfg->lcfg_buflens))
323                 RETURN(-EINVAL);
324
325         RETURN(0);
326 }
327
328 /** @} cfg */
329
330 #endif /* _LUSTRE_CFG_H */