Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / obdclass / llog_obd.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2005 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  */
24
25 #define DEBUG_SUBSYSTEM S_LOG
26
27 #ifndef EXPORT_SYMTAB
28 #define EXPORT_SYMTAB
29 #endif
30
31 #ifndef __KERNEL__
32 #include <liblustre.h>
33 #endif
34
35 #include <obd_class.h>
36 #include <lustre_log.h>
37 #include <libcfs/list.h>
38 #include "llog_internal.h"
39
40 /* helper functions for calling the llog obd methods */
41
42 int llog_cleanup(struct llog_ctxt *ctxt)
43 {
44         int rc = 0;
45         ENTRY;
46
47         if (!ctxt) {
48                 CERROR("No ctxt\n");
49                 RETURN(-ENODEV);
50         }
51         
52         if (CTXTP(ctxt, cleanup))
53                 rc = CTXTP(ctxt, cleanup)(ctxt);
54         ctxt->loc_obd->obd_llog_ctxt[ctxt->loc_idx] = NULL;
55
56         if (ctxt->loc_exp)
57                 class_export_put(ctxt->loc_exp);
58         OBD_FREE(ctxt, sizeof(*ctxt));
59
60         RETURN(rc);
61 }
62 EXPORT_SYMBOL(llog_cleanup);
63
64 int llog_setup(struct obd_device *obd,  struct obd_llogs *llogs, int index, 
65                struct obd_device *disk_obd, int count, struct llog_logid *logid,
66                struct llog_operations *op)
67 {
68         int rc = 0;
69         struct llog_ctxt *ctxt;
70         ENTRY;
71
72         if (index < 0 || index >= LLOG_MAX_CTXTS)
73                 RETURN(-EFAULT);
74
75         /* in some recovery cases, obd_llog_ctxt might already be set, 
76          * but llogs might still be zero, for example in obd_filter recovery */
77         if (obd->obd_llog_ctxt[index] &&
78             (!llogs || (llogs && llogs->llog_ctxt[index]))) {
79                 /* mds_lov_update_mds might call here multiple times. So if the
80                    llog is already set up then don't to do it again. */
81                 CDEBUG(D_CONFIG, "obd %s ctxt %d already set up\n", 
82                        obd->obd_name, index);
83                 ctxt = obd->obd_llog_ctxt[index];
84                 LASSERT(ctxt->loc_obd == obd);
85                 LASSERT(ctxt->loc_exp == disk_obd->obd_self_export);
86                 LASSERT(ctxt->loc_logops == op);
87                 GOTO(out, rc = 0);
88         }
89
90         OBD_ALLOC(ctxt, sizeof(*ctxt));
91         if (!ctxt)
92                 GOTO(out, rc = -ENOMEM);
93
94         if (llogs)
95                 llogs->llog_ctxt[index] = ctxt;
96
97         if (!obd->obd_llog_ctxt[index])
98                 obd->obd_llog_ctxt[index] = ctxt;
99
100         ctxt->loc_obd = obd;
101         ctxt->loc_exp = class_export_get(disk_obd->obd_self_export);
102         ctxt->loc_idx = index;
103         ctxt->loc_logops = op;
104         sema_init(&ctxt->loc_sem, 1);
105
106         if (op->lop_setup)
107                 rc = op->lop_setup(obd, llogs, index, disk_obd, count, logid);
108
109         if (rc) {
110                 obd->obd_llog_ctxt[index] = NULL;
111                 class_export_put(ctxt->loc_exp);
112                 OBD_FREE(ctxt, sizeof(*ctxt));
113         }
114
115 out:
116         RETURN(rc);
117 }
118 EXPORT_SYMBOL(llog_setup);
119
120 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp)
121 {
122         int rc = 0;
123         ENTRY;
124
125         if (!ctxt)
126                 RETURN(0);
127
128         if (CTXTP(ctxt, sync))
129                 rc = CTXTP(ctxt, sync)(ctxt, exp);
130
131         RETURN(rc);
132 }
133 EXPORT_SYMBOL(llog_sync);
134
135 int llog_add(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec,
136                 struct lov_stripe_md *lsm, struct llog_cookie *logcookies,
137                 int numcookies)
138 {
139         int rc;
140         ENTRY;
141
142         if (!ctxt) {
143                 CERROR("No ctxt\n");
144                 RETURN(-ENODEV);
145         }
146         
147         CTXT_CHECK_OP(ctxt, add, -EOPNOTSUPP);
148
149         rc = CTXTP(ctxt, add)(ctxt, rec, lsm, logcookies, numcookies);
150         RETURN(rc);
151 }
152 EXPORT_SYMBOL(llog_add);
153
154 int llog_cancel(struct llog_ctxt *ctxt, struct lov_stripe_md *lsm,
155                 int count, struct llog_cookie *cookies, int flags)
156 {
157         int rc;
158         ENTRY;
159
160         if (!ctxt) {
161                 CERROR("No ctxt\n");
162                 RETURN(-ENODEV);
163         }
164         
165         CTXT_CHECK_OP(ctxt, cancel, -EOPNOTSUPP);
166         rc = CTXTP(ctxt, cancel)(ctxt, lsm, count, cookies, flags);
167         RETURN(rc);
168 }
169 EXPORT_SYMBOL(llog_cancel);
170
171 /* callback func for llog_process in llog_obd_origin_setup */
172 static int cat_cancel_cb(struct llog_handle *cathandle,
173                           struct llog_rec_hdr *rec, void *data)
174 {
175         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
176         struct llog_handle *loghandle;
177         struct llog_log_hdr *llh;
178         int rc, index;
179         ENTRY;
180
181         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
182                 CERROR("invalid record in catalog\n");
183                 RETURN(-EINVAL);
184         }
185         CDEBUG(D_HA, "processing log "LPX64":%x at index %u of catalog "
186                LPX64"\n", lir->lid_id.lgl_oid, lir->lid_id.lgl_ogen,
187                rec->lrh_index, cathandle->lgh_id.lgl_oid);
188
189         rc = llog_cat_id2handle(cathandle, &loghandle, &lir->lid_id);
190         if (rc) {
191                 CERROR("Cannot find handle for log "LPX64"\n",
192                        lir->lid_id.lgl_oid);
193                 RETURN(rc);
194         }
195
196         llh = loghandle->lgh_hdr;
197         if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
198             (llh->llh_count == 1)) {
199                 rc = llog_destroy(loghandle);
200                 if (rc)
201                         CERROR("failure destroying log in postsetup: %d\n", rc);
202
203                 index = loghandle->u.phd.phd_cookie.lgc_index;
204                 llog_free_handle(loghandle);
205
206                 LASSERT(index);
207                 llog_cat_set_first_idx(cathandle, index);
208                 rc = llog_cancel_rec(cathandle, index);
209                 if (rc == 0)
210                         CDEBUG(D_HA, "cancel log "LPX64":%x at index %u of catalog "
211                               LPX64"\n", lir->lid_id.lgl_oid,
212                               lir->lid_id.lgl_ogen, rec->lrh_index,
213                               cathandle->lgh_id.lgl_oid);
214         }
215
216         RETURN(rc);
217 }
218
219 /* lop_setup method for filter/osc */
220 // XXX how to set exports
221 int llog_obd_origin_setup(struct obd_device *obd, struct obd_llogs *llogs,
222                           int index, struct obd_device *disk_obd, int count,
223                           struct llog_logid *logid)
224 {
225         struct llog_ctxt *ctxt;
226         struct llog_handle *handle;
227         struct lvfs_run_ctxt saved;
228         int rc;
229         ENTRY;
230
231         if (count == 0)
232                 RETURN(0);
233
234         LASSERT(count == 1);
235
236         if (!llogs)
237                 ctxt = llog_get_context(obd, index);
238         else
239                 ctxt = llog_get_context_from_llogs(llogs, index);
240         
241         LASSERT(ctxt);
242         llog_gen_init(ctxt);
243
244         if (logid->lgl_oid)
245                 rc = llog_create(ctxt, &handle, logid, NULL);
246         else {
247                 rc = llog_create(ctxt, &handle, NULL, NULL);
248                 if (!rc)
249                         *logid = handle->lgh_id;
250         }
251         if (rc)
252                 GOTO(out, rc);
253
254         ctxt->loc_handle = handle;
255         push_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
256         rc = llog_init_handle(handle, LLOG_F_IS_CAT, NULL);
257         pop_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
258         if (rc)
259                 GOTO(out, rc);
260
261         rc = llog_process(handle, (llog_cb_t)cat_cancel_cb, NULL, NULL);
262         if (rc)
263                 CERROR("llog_process with cat_cancel_cb failed: %d\n", rc);
264  out:
265         RETURN(rc);
266 }
267 EXPORT_SYMBOL(llog_obd_origin_setup);
268
269 int llog_obd_origin_cleanup(struct llog_ctxt *ctxt)
270 {
271         struct llog_handle *cathandle, *n, *loghandle;
272         struct llog_log_hdr *llh;
273         int rc, index;
274         ENTRY;
275
276         if (!ctxt)
277                 RETURN(0);
278
279         cathandle = ctxt->loc_handle;
280         if (cathandle) {
281                 list_for_each_entry_safe(loghandle, n,
282                                          &cathandle->u.chd.chd_head,
283                                          u.phd.phd_entry) {
284                         llh = loghandle->lgh_hdr;
285                         if ((llh->llh_flags &
286                                 LLOG_F_ZAP_WHEN_EMPTY) &&
287                             (llh->llh_count == 1)) {
288                                 rc = llog_destroy(loghandle);
289                                 if (rc)
290                                         CERROR("failure destroying log during "
291                                                "cleanup: %d\n", rc);
292
293                                 index = loghandle->u.phd.phd_cookie.lgc_index;
294                                 llog_free_handle(loghandle);
295
296                                 LASSERT(index);
297                                 llog_cat_set_first_idx(cathandle, index);
298                                 rc = llog_cancel_rec(cathandle, index);
299                                 if (rc == 0)
300                                         CDEBUG(D_HA, "cancel plain log at index"
301                                                " %u of catalog "LPX64"\n",
302                                                index,cathandle->lgh_id.lgl_oid);
303                         }
304                 }
305                 llog_cat_put(ctxt->loc_handle);
306         }
307         RETURN(0);
308 }
309 EXPORT_SYMBOL(llog_obd_origin_cleanup);
310
311 /* add for obdfilter/sz and mds/unlink */
312 int llog_obd_origin_add(struct llog_ctxt *ctxt,
313                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
314                         struct llog_cookie *logcookies, int numcookies)
315 {
316         struct llog_handle *cathandle;
317         int rc;
318         ENTRY;
319
320         cathandle = ctxt->loc_handle;
321         LASSERT(cathandle != NULL);
322         rc = llog_cat_add_rec(cathandle, rec, logcookies, NULL);
323         if (rc != 1)
324                 CERROR("write one catalog record failed: %d\n", rc);
325         RETURN(rc);
326 }
327 EXPORT_SYMBOL(llog_obd_origin_add);
328
329 int llog_cat_initialize(struct obd_device *obd, struct obd_llogs *llogs,
330                         int count, struct obd_uuid *uuid)
331 {
332         char name[32] = CATLIST;
333         struct llog_catid *idarray = NULL;
334         int size = sizeof(*idarray) * count;
335         int rc;
336         ENTRY;
337
338         if (count) {
339                 OBD_VMALLOC(idarray, size);
340                 if (!idarray)
341                         RETURN(-ENOMEM);
342         }
343
344         rc = llog_get_cat_list(obd, obd, name, count, idarray);
345         if (rc) {
346                 CERROR("rc: %d\n", rc);
347                 GOTO(out, rc);
348         }
349
350         rc = obd_llog_init(obd, llogs, obd, count, idarray, uuid);
351         if (rc) {
352                 CERROR("rc: %d\n", rc);
353                 GOTO(out, rc);
354         }
355
356         rc = llog_put_cat_list(obd, obd, name, count, idarray);
357         if (rc) {
358                 CERROR("rc: %d\n", rc);
359                 GOTO(out, rc);
360         }
361
362  out:
363         if (idarray)
364                 OBD_VFREE(idarray, size);
365         RETURN(rc);
366 }
367 EXPORT_SYMBOL(llog_cat_initialize);
368
369 int obd_llog_init(struct obd_device *obd, struct obd_llogs *llogs, 
370                   struct obd_device *disk_obd, int count, 
371                   struct llog_catid *logid, struct obd_uuid *uuid)
372 {
373         int rc;
374         ENTRY;
375         OBD_CHECK_DT_OP(obd, llog_init, 0);
376         OBD_COUNTER_INCREMENT(obd, llog_init);
377
378         rc = OBP(obd, llog_init)(obd, llogs, disk_obd, count, logid, 
379                                  uuid);
380         RETURN(rc);
381 }
382 EXPORT_SYMBOL(obd_llog_init);
383
384 int obd_llog_finish(struct obd_device *obd, int count)
385 {
386         int rc;
387         ENTRY;
388         OBD_CHECK_DT_OP(obd, llog_finish, 0);
389         OBD_COUNTER_INCREMENT(obd, llog_finish);
390
391         rc = OBP(obd, llog_finish)(obd, count);
392         RETURN(rc);
393 }
394 EXPORT_SYMBOL(obd_llog_finish);
395