1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
29 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/liblustre/llite_lib.c
38 * Lustre Light common routines
45 #include <sys/types.h>
47 #include <sys/queue.h>
49 #include <liblustre.h>
50 #include <lnet/lnetctl.h> /* needed for parse_dump */
53 #include "llite_lib.h"
55 int slp_global_init(void);
57 static int lllib_init(void)
59 if (liblustre_init_current("liblustre") ||
71 return _sysio_fssw_register("lustre", &llu_fssw_ops);
74 int liblustre_process_log(struct config_llog_instance *cfg,
75 char *mgsnid, char *profile,
78 struct lustre_cfg_bufs bufs;
79 struct lustre_cfg *lcfg;
80 char *peer = "MGS_UUID";
81 struct obd_device *obd;
82 struct obd_export *exp;
83 char *name = "mgc_dev";
85 struct obd_uuid mgc_uuid;
86 struct llog_ctxt *ctxt;
90 struct obd_connect_data *ocd = NULL;
93 ll_generate_random_uuid(uuid);
94 class_uuid_unparse(uuid, &mgc_uuid);
96 nid = libcfs_str2nid(mgsnid);
97 if (nid == LNET_NID_ANY) {
98 CERROR("Can't parse NID %s\n", mgsnid);
102 lustre_cfg_bufs_reset(&bufs, NULL);
103 lustre_cfg_bufs_set_string(&bufs, 1, peer);
104 lcfg = lustre_cfg_new(LCFG_ADD_UUID, &bufs);
105 lcfg->lcfg_nid = nid;
106 rc = class_process_config(lcfg);
107 lustre_cfg_free(lcfg);
111 lustre_cfg_bufs_reset(&bufs, name);
112 lustre_cfg_bufs_set_string(&bufs, 1, LUSTRE_MGC_NAME);
113 lustre_cfg_bufs_set_string(&bufs, 2, mgc_uuid.uuid);
114 lcfg = lustre_cfg_new(LCFG_ATTACH, &bufs);
115 rc = class_process_config(lcfg);
116 lustre_cfg_free(lcfg);
118 GOTO(out_del_uuid, rc);
120 lustre_cfg_bufs_reset(&bufs, name);
121 lustre_cfg_bufs_set_string(&bufs, 1, LUSTRE_MGS_OBDNAME);
122 lustre_cfg_bufs_set_string(&bufs, 2, peer);
123 lcfg = lustre_cfg_new(LCFG_SETUP, &bufs);
124 rc = class_process_config(lcfg);
125 lustre_cfg_free(lcfg);
127 GOTO(out_detach, rc);
129 while ((mdsnid = strsep(&mgsnid, ","))) {
130 nid = libcfs_str2nid(mdsnid);
131 lustre_cfg_bufs_reset(&bufs, NULL);
132 lustre_cfg_bufs_set_string(&bufs, 1, libcfs_nid2str(nid));
133 lcfg = lustre_cfg_new(LCFG_ADD_UUID, &bufs);
134 lcfg->lcfg_nid = nid;
135 rc = class_process_config(lcfg);
136 lustre_cfg_free(lcfg);
138 CERROR("Add uuid for %s failed %d\n",
139 libcfs_nid2str(nid), rc);
143 lustre_cfg_bufs_reset(&bufs, name);
144 lustre_cfg_bufs_set_string(&bufs, 1, libcfs_nid2str(nid));
145 lcfg = lustre_cfg_new(LCFG_ADD_CONN, &bufs);
146 lcfg->lcfg_nid = nid;
147 rc = class_process_config(lcfg);
148 lustre_cfg_free(lcfg);
150 CERROR("Add conn for %s failed %d\n",
151 libcfs_nid2str(nid), rc);
156 obd = class_name2obd(name);
158 GOTO(out_cleanup, rc = -EINVAL);
160 OBD_ALLOC(ocd, sizeof(*ocd));
162 GOTO(out_cleanup, rc = -ENOMEM);
164 ocd->ocd_connect_flags = OBD_CONNECT_VERSION | OBD_CONNECT_FID |
165 OBD_CONNECT_AT | OBD_CONNECT_VBR |
167 #ifdef LIBLUSTRE_POSIX_ACL
168 ocd->ocd_connect_flags |= OBD_CONNECT_ACL;
170 ocd->ocd_version = LUSTRE_VERSION_CODE;
172 rc = obd_connect(NULL, &exp, obd, &mgc_uuid, ocd, NULL);
174 CERROR("cannot connect to %s at %s: rc = %d\n",
175 LUSTRE_MGS_OBDNAME, mgsnid, rc);
176 GOTO(out_cleanup, rc);
179 ctxt = llog_get_context(exp->exp_obd, LLOG_CONFIG_REPL_CTXT);
180 cfg->cfg_flags |= CFG_F_COMPAT146;
181 rc = class_config_parse_llog(ctxt, profile, cfg);
184 CERROR("class_config_parse_llog failed: rc = %d\n", rc);
187 /* We don't so much care about errors in cleaning up the config llog
188 * connection, as we have already read the config by this point. */
189 err = obd_disconnect(exp);
191 CERROR("obd_disconnect failed: rc = %d\n", err);
195 OBD_FREE(ocd, sizeof(*ocd));
197 lustre_cfg_bufs_reset(&bufs, name);
198 lcfg = lustre_cfg_new(LCFG_CLEANUP, &bufs);
199 err = class_process_config(lcfg);
200 lustre_cfg_free(lcfg);
202 CERROR("md_cleanup failed: rc = %d\n", err);
205 lustre_cfg_bufs_reset(&bufs, name);
206 lcfg = lustre_cfg_new(LCFG_DETACH, &bufs);
207 err = class_process_config(lcfg);
208 lustre_cfg_free(lcfg);
210 CERROR("md_detach failed: rc = %d\n", err);
213 lustre_cfg_bufs_reset(&bufs, name);
214 lustre_cfg_bufs_set_string(&bufs, 1, peer);
215 lcfg = lustre_cfg_new(LCFG_DEL_UUID, &bufs);
216 err = class_process_config(lcfg);
218 CERROR("del MDC UUID failed: rc = %d\n", err);
219 lustre_cfg_free(lcfg);
225 /* parse host:/fsname string */
226 int ll_parse_mount_target(const char *target, char **mgsnid,
229 static char buf[256];
233 strncpy(buf, target, 255);
235 if ((s = strchr(buf, ':'))) {
241 sprintf(s + strlen(s), "-client");
251 * early liblustre init
252 * called from C startup in catamount apps, before main()
254 * The following is a skeleton sysio startup sequence,
255 * as implemented in C startup (skipping error handling).
256 * In this framework none of these calls need be made here
257 * or in the apps themselves. The NAMESPACE_STRING specifying
258 * the initial set of fs ops (creates, mounts, etc.) is passed
259 * as an environment variable.
262 * _sysio_incore_init();
263 * _sysio_native_init();
264 * _sysio_lustre_init();
265 * _sysio_boot(NAMESPACE_STRING);
267 * the name _sysio_lustre_init() follows the naming convention
268 * established in other fs drivers from libsysio:
269 * _sysio_incore_init(), _sysio_native_init()
271 * _sysio_lustre_init() must be called before _sysio_boot()
272 * to enable libsysio's processing of namespace init strings containing
273 * lustre filesystem operations
275 int _sysio_lustre_init(void)
280 extern void __liblustre_cleanup_(void);
283 liblustre_init_random();
287 perror("init llite driver");
291 envstr = getenv("LIBLUSTRE_TIMEOUT");
292 if (envstr != NULL) {
293 obd_timeout = (unsigned int)strtol(envstr, NULL, 0);
294 printf("LibLustre: obd timeout=%u seconds\n",
298 /* debug peer on timeout? */
299 envstr = getenv("LIBLUSTRE_DEBUG_PEER_ON_TIMEOUT");
300 if (envstr != NULL) {
301 obd_debug_peer_on_timeout =
302 (unsigned int)strtol(envstr, NULL, 0);
303 printf("LibLustre: debug peer on timeout=%d\n",
304 obd_debug_peer_on_timeout ? 0 : 1);
308 (void)atexit(__liblustre_cleanup_);
313 extern int _sysio_native_init();
315 static int mnt_retry = 0;
317 char *lustre_path = NULL;
319 void __liblustre_setup_(void)
322 char *lustre_driver = "lustre";
323 unsigned mntflgs = 0;
326 lustre_path = getenv("LIBLUSTRE_MOUNT_POINT");
328 lustre_path = "/mnt/lustre";
331 target = getenv("LIBLUSTRE_MOUNT_RETRY");
333 mnt_retry = atoi(target);
339 target = getenv("LIBLUSTRE_MOUNT_TARGET");
341 printf("LibLustre: no mount target specified\n");
345 CDEBUG(D_CONFIG, "LibLustre: mount point %s, target %s\n",
346 lustre_path, target);
349 /* initialize libsysio & mount rootfs */
351 perror("init sysio");
354 _sysio_native_init();
356 err = _sysio_mount_root("/", "native", mntflgs, NULL);
358 fprintf(stderr, "sysio mount failed: %s\n", strerror(errno));
362 if (_sysio_lustre_init())
364 #endif /* INIT_SYSIO */
368 err = mount(target, lustre_path, lustre_driver, mntflgs, NULL);
369 if (err && mnt_retry && (-- count)) {
370 fprintf(stderr, "Lustre mount failed: %s. "
371 "Will retry %d more times\n",
372 strerror(errno), mnt_retry - count );
375 } while (err && count > 0);
377 fprintf(stderr, "Lustre mount failed: %s\n", strerror(errno));
382 void __liblustre_cleanup_(void)
385 /* guard against being called multiple times */
386 static int cleaned = 0;
393 /* user app might chdir to a lustre directory, and leave busy pnode
394 * during finaly libsysio cleanup. here we chdir back to "/".
395 * but it can't fix the situation that liblustre is mounted
402 /* we can't call umount here, because libsysio will not cleanup
403 * opening files for us. _sysio_shutdown() will cleanup fds at
404 * first but which will also close the sockets we need for umount
405 * liblutre. this dilema lead to another hack in
406 * libsysio/src/file_hack.c FIXME
410 cleanup_lib_portals();