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