Whamcloud - gitweb
b=22560 introduce "OBD_CONNECT_FULL20" to distinguish 1.8 client from 2.0 one for...
[fs/lustre-release.git] / lustre / liblustre / llite_lib.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/liblustre/llite_lib.c
37  *
38  * Lustre Light common routines
39  */
40
41 #include <stdlib.h>
42 #include <string.h>
43 #include <assert.h>
44 #include <signal.h>
45 #include <sys/types.h>
46 #include <sys/stat.h>
47 #include <sys/queue.h>
48
49 #include <sysio.h>
50 #ifdef HAVE_XTIO_H
51 #include <xtio.h>
52 #endif
53 #include <fs.h>
54 #include <mount.h>
55 #include <inode.h>
56 #ifdef HAVE_FILE_H
57 #include <file.h>
58 #endif
59
60 #include <liblustre.h>
61 #include <lnet/lnetctl.h>     /* needed for parse_dump */
62
63 #include "lutil.h"
64 #include "llite_lib.h"
65
66 int slp_global_init(void);
67
68 static int lllib_init(void)
69 {
70         if (liblustre_init_current("liblustre") ||
71             init_lib_portals() ||
72             init_obdclass() ||
73             ptlrpc_init() ||
74             mgc_init() ||
75             lmv_init() ||
76             mdc_init() ||
77             lov_init() ||
78             osc_init() ||
79             slp_global_init())
80                 return -1;
81
82         return _sysio_fssw_register("lustre", &llu_fssw_ops);
83 }
84
85 int liblustre_process_log(struct config_llog_instance *cfg,
86                           char *mgsnid, char *profile,
87                           int allow_recov)
88 {
89         struct lustre_cfg_bufs bufs;
90         struct lustre_cfg *lcfg;
91         char  *peer = "MGS_UUID";
92         struct obd_device *obd;
93         struct obd_export *exp;
94         char  *name = "mgc_dev";
95         class_uuid_t uuid;
96         struct obd_uuid mgc_uuid;
97         struct llog_ctxt *ctxt;
98         lnet_nid_t nid = 0;
99         char *mdsnid;
100         int err, rc = 0;
101         struct obd_connect_data *ocd = NULL;
102         ENTRY;
103
104         ll_generate_random_uuid(uuid);
105         class_uuid_unparse(uuid, &mgc_uuid);
106
107         nid = libcfs_str2nid(mgsnid);
108         if (nid == LNET_NID_ANY) {
109                 CERROR("Can't parse NID %s\n", mgsnid);
110                 RETURN(-EINVAL);
111         }
112
113         lustre_cfg_bufs_reset(&bufs, NULL);
114         lustre_cfg_bufs_set_string(&bufs, 1, peer);
115         lcfg = lustre_cfg_new(LCFG_ADD_UUID, &bufs);
116         lcfg->lcfg_nid = nid;
117         rc = class_process_config(lcfg);
118         lustre_cfg_free(lcfg);
119         if (rc < 0)
120                 GOTO(out, rc);
121
122         lustre_cfg_bufs_reset(&bufs, name);
123         lustre_cfg_bufs_set_string(&bufs, 1, LUSTRE_MGC_NAME);
124         lustre_cfg_bufs_set_string(&bufs, 2, mgc_uuid.uuid);
125         lcfg = lustre_cfg_new(LCFG_ATTACH, &bufs);
126         rc = class_process_config(lcfg);
127         lustre_cfg_free(lcfg);
128         if (rc < 0)
129                 GOTO(out_del_uuid, rc);
130
131         lustre_cfg_bufs_reset(&bufs, name);
132         lustre_cfg_bufs_set_string(&bufs, 1, LUSTRE_MGS_OBDNAME);
133         lustre_cfg_bufs_set_string(&bufs, 2, peer);
134         lcfg = lustre_cfg_new(LCFG_SETUP, &bufs);
135         rc = class_process_config(lcfg);
136         lustre_cfg_free(lcfg);
137         if (rc < 0)
138                 GOTO(out_detach, rc);
139
140         while ((mdsnid = strsep(&mgsnid, ","))) {
141                 nid = libcfs_str2nid(mdsnid);
142                 lustre_cfg_bufs_reset(&bufs, NULL);
143                 lustre_cfg_bufs_set_string(&bufs, 1, libcfs_nid2str(nid));
144                 lcfg = lustre_cfg_new(LCFG_ADD_UUID, &bufs);
145                 lcfg->lcfg_nid = nid;
146                 rc = class_process_config(lcfg);
147                 lustre_cfg_free(lcfg);
148                 if (rc) {
149                         CERROR("Add uuid for %s failed %d\n",
150                                libcfs_nid2str(nid), rc);
151                         continue;
152                 }
153
154                 lustre_cfg_bufs_reset(&bufs, name);
155                 lustre_cfg_bufs_set_string(&bufs, 1, libcfs_nid2str(nid));
156                 lcfg = lustre_cfg_new(LCFG_ADD_CONN, &bufs);
157                 lcfg->lcfg_nid = nid;
158                 rc = class_process_config(lcfg);
159                 lustre_cfg_free(lcfg);
160                 if (rc) {
161                         CERROR("Add conn for %s failed %d\n",
162                                libcfs_nid2str(nid), rc);
163                         continue;
164                 }
165         }
166
167         obd = class_name2obd(name);
168         if (obd == NULL)
169                 GOTO(out_cleanup, rc = -EINVAL);
170
171         OBD_ALLOC(ocd, sizeof(*ocd));
172         if (ocd == NULL)
173                 GOTO(out_cleanup, rc = -ENOMEM);
174
175         ocd->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_FID |
176                                  OBD_CONNECT_AT | OBD_CONNECT_VBR |
177                                  OBD_CONNECT_FULL20;
178 #ifdef LIBLUSTRE_POSIX_ACL
179         ocd->ocd_connect_flags |= OBD_CONNECT_ACL;
180 #endif
181         ocd->ocd_version = LUSTRE_VERSION_CODE;
182
183         rc = obd_connect(NULL, &exp, obd, &mgc_uuid, ocd, NULL);
184         if (rc) {
185                 CERROR("cannot connect to %s at %s: rc = %d\n",
186                        LUSTRE_MGS_OBDNAME, mgsnid, rc);
187                 GOTO(out_cleanup, rc);
188         }
189
190         ctxt = llog_get_context(exp->exp_obd, LLOG_CONFIG_REPL_CTXT);
191         cfg->cfg_flags |= CFG_F_COMPAT146;
192         rc = class_config_parse_llog(ctxt, profile, cfg);
193         llog_ctxt_put(ctxt);
194         if (rc) {
195                 CERROR("class_config_parse_llog failed: rc = %d\n", rc);
196         }
197
198         /* We don't so much care about errors in cleaning up the config llog
199          * connection, as we have already read the config by this point. */
200         err = obd_disconnect(exp);
201         if (err)
202                 CERROR("obd_disconnect failed: rc = %d\n", err);
203
204 out_cleanup:
205         if (ocd)
206                 OBD_FREE(ocd, sizeof(*ocd));
207
208         lustre_cfg_bufs_reset(&bufs, name);
209         lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
210         err = class_process_config(lcfg);
211         lustre_cfg_free(lcfg);
212         if (err)
213                 CERROR("md_cleanup failed: rc = %d\n", err);
214
215 out_detach:
216         lustre_cfg_bufs_reset(&bufs, name);
217         lcfg = lustre_cfg_new(LCFG_DETACH, &bufs);
218         err = class_process_config(lcfg);
219         lustre_cfg_free(lcfg);
220         if (err)
221                 CERROR("md_detach failed: rc = %d\n", err);
222
223 out_del_uuid:
224         lustre_cfg_bufs_reset(&bufs, name);
225         lustre_cfg_bufs_set_string(&bufs, 1, peer);
226         lcfg = lustre_cfg_new(LCFG_DEL_UUID, &bufs);
227         err = class_process_config(lcfg);
228         if (err)
229                 CERROR("del MDC UUID failed: rc = %d\n", err);
230         lustre_cfg_free(lcfg);
231 out:
232
233         RETURN(rc);
234 }
235
236 /* parse host:/fsname string */
237 int ll_parse_mount_target(const char *target, char **mgsnid,
238                           char **fsname)
239 {
240         static char buf[256];
241         char *s;
242
243         buf[255] = 0;
244         strncpy(buf, target, 255);
245
246         if ((s = strchr(buf, ':'))) {
247                 *mgsnid = buf;
248                 *s = '\0';
249
250                 while (*++s == '/')
251                         ;
252                 sprintf(s + strlen(s), "-client");
253                 *fsname = s;
254
255                 return 0;
256         }
257
258         return -1;
259 }
260
261 /*
262  * early liblustre init
263  * called from C startup in catamount apps, before main()
264  *
265  * The following is a skeleton sysio startup sequence,
266  * as implemented in C startup (skipping error handling).
267  * In this framework none of these calls need be made here
268  * or in the apps themselves.  The NAMESPACE_STRING specifying
269  * the initial set of fs ops (creates, mounts, etc.) is passed
270  * as an environment variable.
271  *
272  *      _sysio_init();
273  *      _sysio_incore_init();
274  *      _sysio_native_init();
275  *      _sysio_lustre_init();
276  *      _sysio_boot(NAMESPACE_STRING);
277  *
278  * the name _sysio_lustre_init() follows the naming convention
279  * established in other fs drivers from libsysio:
280  *  _sysio_incore_init(), _sysio_native_init()
281  *
282  * _sysio_lustre_init() must be called before _sysio_boot()
283  * to enable libsysio's processing of namespace init strings containing
284  * lustre filesystem operations
285  */
286 int _sysio_lustre_init(void)
287 {
288         int err;
289         char *envstr;
290 #ifndef INIT_SYSIO
291         extern void __liblustre_cleanup_(void);
292 #endif
293
294         liblustre_init_random();
295
296         err = lllib_init();
297         if (err) {
298                 perror("init llite driver");
299                 return err;
300         }
301
302         envstr = getenv("LIBLUSTRE_TIMEOUT");
303         if (envstr != NULL) {
304                 obd_timeout = (unsigned int)strtol(envstr, NULL, 0);
305                 printf("LibLustre: obd timeout=%u seconds\n",
306                         obd_timeout);
307         }
308
309         /* debug peer on timeout? */
310         envstr = getenv("LIBLUSTRE_DEBUG_PEER_ON_TIMEOUT");
311         if (envstr != NULL) {
312                 obd_debug_peer_on_timeout = 
313                         (unsigned int)strtol(envstr, NULL, 0);
314                 printf("LibLustre: debug peer on timeout=%d\n",
315                         obd_debug_peer_on_timeout ? 0 : 1);
316         }
317
318 #ifndef INIT_SYSIO
319         (void)atexit(__liblustre_cleanup_);
320 #endif
321         return err;
322 }
323
324 extern int _sysio_native_init();
325
326 static int mnt_retry = 0;
327
328 char *lustre_path = NULL;
329
330 void __liblustre_setup_(void)
331 {
332         char *target = NULL;
333         char *lustre_driver = "lustre";
334         unsigned mntflgs = 0;
335         int err, count;
336
337         lustre_path = getenv("LIBLUSTRE_MOUNT_POINT");
338         if (!lustre_path) {
339                 lustre_path = "/mnt/lustre";
340         }
341
342         target = getenv("LIBLUSTRE_MOUNT_RETRY");
343         if (target) {
344                 mnt_retry = atoi(target);
345                 if (mnt_retry < 0)
346                         mnt_retry = 0;
347         }
348
349         /* mount target */
350         target = getenv("LIBLUSTRE_MOUNT_TARGET");
351         if (!target) {
352                 printf("LibLustre: no mount target specified\n");
353                 exit(1);
354         }
355
356         CDEBUG(D_CONFIG, "LibLustre: mount point %s, target %s\n",
357                lustre_path, target);
358
359 #ifdef INIT_SYSIO
360         /* initialize libsysio & mount rootfs */
361         if (_sysio_init()) {
362                 perror("init sysio");
363                 exit(1);
364         }
365         _sysio_native_init();
366
367         err = _sysio_mount_root("/", "native", mntflgs, NULL);
368         if (err) {
369                 fprintf(stderr, "sysio mount failed: %s\n", strerror(errno));
370                 exit(1);
371         }
372
373         if (_sysio_lustre_init())
374                 exit(1);
375 #endif /* INIT_SYSIO */
376
377         count = mnt_retry;
378         do {
379                 err = mount(target, lustre_path, lustre_driver, mntflgs, NULL);
380                 if (err && mnt_retry && (-- count)) {
381                         fprintf(stderr, "Lustre mount failed: %s. "
382                                  "Will retry %d more times\n",
383                                 strerror(errno), mnt_retry - count );
384                         sleep(2);
385                 }
386         } while (err && count > 0);
387         if (err) {
388                 fprintf(stderr, "Lustre mount failed: %s\n", strerror(errno));
389                 exit(1);
390         }
391 }
392
393 void __liblustre_cleanup_(void)
394 {
395 #ifndef INIT_SYSIO
396         /* guard against being called multiple times */
397         static int cleaned = 0;
398
399         if (cleaned)
400                 return;
401         cleaned++;
402 #endif
403
404         /* user app might chdir to a lustre directory, and leave busy pnode
405          * during finaly libsysio cleanup. here we chdir back to "/".
406          * but it can't fix the situation that liblustre is mounted
407          * at "/".
408          */
409         if (!chdir("/")) {}
410 #if 0
411         umount(lustre_path);
412 #endif
413         /* we can't call umount here, because libsysio will not cleanup
414          * opening files for us. _sysio_shutdown() will cleanup fds at
415          * first but which will also close the sockets we need for umount
416          * liblutre. this dilema lead to another hack in
417          * libsysio/src/file_hack.c FIXME
418          */
419 #ifdef INIT_SYSIO
420         _sysio_shutdown();
421         cleanup_lib_portals();
422         LNetFini();
423 #endif
424 }