Whamcloud - gitweb
- update from 1_5
[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
55         ctxt->loc_obd->obd_llog_ctxt[ctxt->loc_idx] = NULL;
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, int index, struct obd_device *disk_obd,
65                int count, struct llog_logid *logid, struct llog_operations *op)
66 {
67         int rc = 0;
68         struct llog_ctxt *ctxt;
69         ENTRY;
70
71         if (index < 0 || index >= LLOG_MAX_CTXTS)
72                 RETURN(-EFAULT);
73
74         if (obd->obd_llog_ctxt[index]) {
75                 /* mds_lov_update_mds might call here multiple times. So if the
76                    llog is already set up then don't to do it again. */
77                 CDEBUG(D_CONFIG, "obd %s ctxt %d already set up\n", 
78                        obd->obd_name, index);
79                 ctxt = obd->obd_llog_ctxt[index];
80                 LASSERT(ctxt->loc_obd == obd);
81                 LASSERT(ctxt->loc_exp == disk_obd->obd_self_export);
82                 LASSERT(ctxt->loc_logops == op);
83                 GOTO(out, rc = 0);
84         }
85         
86         OBD_ALLOC(ctxt, sizeof(*ctxt));
87         if (!ctxt)
88                 GOTO(out, rc = -ENOMEM);
89
90         obd->obd_llog_ctxt[index] = ctxt;
91         ctxt->loc_obd = obd;
92         ctxt->loc_exp = class_export_get(disk_obd->obd_self_export);
93         ctxt->loc_idx = index;
94         ctxt->loc_logops = op;
95         sema_init(&ctxt->loc_sem, 1);
96
97         if (op->lop_setup)
98                 rc = op->lop_setup(obd, index, disk_obd, count, logid);
99         
100         if (rc) {
101                 obd->obd_llog_ctxt[index] = NULL;
102                 class_export_put(ctxt->loc_exp);
103                 OBD_FREE(ctxt, sizeof(*ctxt));
104         }
105         
106 out:
107         RETURN(rc);
108 }
109 EXPORT_SYMBOL(llog_setup);
110
111 int llog_sync(struct llog_ctxt *ctxt, struct obd_export *exp)
112 {
113         int rc = 0;
114         ENTRY;
115
116         if (!ctxt)
117                 RETURN(0);
118
119         if (CTXTP(ctxt, sync))
120                 rc = CTXTP(ctxt, sync)(ctxt, exp);
121
122         RETURN(rc);
123 }
124 EXPORT_SYMBOL(llog_sync);
125
126 int llog_add(struct llog_ctxt *ctxt, struct llog_rec_hdr *rec,
127                 struct lov_stripe_md *lsm, struct llog_cookie *logcookies,
128                 int numcookies)
129 {
130         int rc;
131         ENTRY;
132
133         if (!ctxt) {
134                 CERROR("No ctxt\n");
135                 RETURN(-ENODEV);
136         }
137         
138         CTXT_CHECK_OP(ctxt, add, -EOPNOTSUPP);
139
140         rc = CTXTP(ctxt, add)(ctxt, rec, lsm, logcookies, numcookies);
141         RETURN(rc);
142 }
143 EXPORT_SYMBOL(llog_add);
144
145 int llog_cancel(struct llog_ctxt *ctxt, struct lov_stripe_md *lsm,
146                 int count, struct llog_cookie *cookies, int flags)
147 {
148         int rc;
149         ENTRY;
150
151         if (!ctxt) {
152                 CERROR("No ctxt\n");
153                 RETURN(-ENODEV);
154         }
155         
156         CTXT_CHECK_OP(ctxt, cancel, -EOPNOTSUPP);
157         rc = CTXTP(ctxt, cancel)(ctxt, lsm, count, cookies, flags);
158         RETURN(rc);
159 }
160 EXPORT_SYMBOL(llog_cancel);
161
162 /* callback func for llog_process in llog_obd_origin_setup */
163 static int cat_cancel_cb(struct llog_handle *cathandle,
164                           struct llog_rec_hdr *rec, void *data)
165 {
166         struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
167         struct llog_handle *loghandle;
168         struct llog_log_hdr *llh;
169         int rc, index;
170         ENTRY;
171
172         if (rec->lrh_type != LLOG_LOGID_MAGIC) {
173                 CERROR("invalid record in catalog\n");
174                 RETURN(-EINVAL);
175         }
176         CWARN("processing log "LPX64":%x at index %u of catalog "LPX64"\n",
177                lir->lid_id.lgl_oid, lir->lid_id.lgl_ogen,
178                rec->lrh_index, cathandle->lgh_id.lgl_oid);
179
180         rc = llog_cat_id2handle(cathandle, &loghandle, &lir->lid_id);
181         if (rc) {
182                 CERROR("Cannot find handle for log "LPX64"\n",
183                        lir->lid_id.lgl_oid);
184                 RETURN(rc);
185         }
186
187         llh = loghandle->lgh_hdr;
188         if ((llh->llh_flags & LLOG_F_ZAP_WHEN_EMPTY) &&
189             (llh->llh_count == 1)) {
190                 rc = llog_destroy(loghandle);
191                 if (rc)
192                         CERROR("failure destroying log in postsetup: %d\n", rc);
193
194                 index = loghandle->u.phd.phd_cookie.lgc_index;
195                 llog_free_handle(loghandle);
196
197                 LASSERT(index);
198                 llog_cat_set_first_idx(cathandle, index);
199                 rc = llog_cancel_rec(cathandle, index);
200                 if (rc == 0)
201                         CWARN("cancel log "LPX64":%x at index %u of catalog "
202                               LPX64"\n", lir->lid_id.lgl_oid,
203                               lir->lid_id.lgl_ogen, rec->lrh_index,
204                               cathandle->lgh_id.lgl_oid);
205         }
206
207         RETURN(rc);
208 }
209
210 /* lop_setup method for filter/osc */
211 // XXX how to set exports
212 int llog_obd_origin_setup(struct obd_device *obd, int index,
213                           struct obd_device *disk_obd, int count,
214                           struct llog_logid *logid)
215 {
216         struct llog_ctxt *ctxt;
217         struct llog_handle *handle;
218         struct lvfs_run_ctxt saved;
219         int rc;
220         ENTRY;
221
222         if (count == 0)
223                 RETURN(0);
224
225         LASSERT(count == 1);
226
227         ctxt = llog_get_context(obd, index);
228         LASSERT(ctxt);
229         llog_gen_init(ctxt);
230
231         if (logid->lgl_oid)
232                 rc = llog_create(ctxt, &handle, logid, NULL);
233         else {
234                 rc = llog_create(ctxt, &handle, NULL, NULL);
235                 if (!rc)
236                         *logid = handle->lgh_id;
237         }
238         if (rc)
239                 GOTO(out, rc);
240
241         ctxt->loc_handle = handle;
242         push_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
243         rc = llog_init_handle(handle, LLOG_F_IS_CAT, NULL);
244         pop_ctxt(&saved, &disk_obd->obd_lvfs_ctxt, NULL);
245         if (rc)
246                 GOTO(out, rc);
247
248         rc = llog_process(handle, (llog_cb_t)cat_cancel_cb, NULL, NULL);
249         if (rc)
250                 CERROR("llog_process with cat_cancel_cb failed: %d\n", rc);
251  out:
252         RETURN(rc);
253 }
254 EXPORT_SYMBOL(llog_obd_origin_setup);
255
256 int llog_obd_origin_cleanup(struct llog_ctxt *ctxt)
257 {
258         struct llog_handle *cathandle, *n, *loghandle;
259         struct llog_log_hdr *llh;
260         int rc, index;
261         ENTRY;
262
263         if (!ctxt)
264                 RETURN(0);
265
266         cathandle = ctxt->loc_handle;
267         if (cathandle) {
268                 list_for_each_entry_safe(loghandle, n,
269                                          &cathandle->u.chd.chd_head,
270                                          u.phd.phd_entry) {
271                         llh = loghandle->lgh_hdr;
272                         if ((llh->llh_flags &
273                                 LLOG_F_ZAP_WHEN_EMPTY) &&
274                             (llh->llh_count == 1)) {
275                                 rc = llog_destroy(loghandle);
276                                 if (rc)
277                                         CERROR("failure destroying log during "
278                                                "cleanup: %d\n", rc);
279
280                                 index = loghandle->u.phd.phd_cookie.lgc_index;
281                                 llog_free_handle(loghandle);
282
283                                 LASSERT(index);
284                                 llog_cat_set_first_idx(cathandle, index);
285                                 rc = llog_cancel_rec(cathandle, index);
286                                 if (rc == 0)
287                                         CDEBUG(D_HA, "cancel plain log at index"
288                                                " %u of catalog "LPX64"\n",
289                                                index,cathandle->lgh_id.lgl_oid);
290                         }
291                 }
292                 llog_cat_put(ctxt->loc_handle);
293         }
294         RETURN(0);
295 }
296 EXPORT_SYMBOL(llog_obd_origin_cleanup);
297
298 /* add for obdfilter/sz and mds/unlink */
299 int llog_obd_origin_add(struct llog_ctxt *ctxt,
300                         struct llog_rec_hdr *rec, struct lov_stripe_md *lsm,
301                         struct llog_cookie *logcookies, int numcookies)
302 {
303         struct llog_handle *cathandle;
304         int rc;
305         ENTRY;
306
307         cathandle = ctxt->loc_handle;
308         LASSERT(cathandle != NULL);
309         rc = llog_cat_add_rec(cathandle, rec, logcookies, NULL);
310         if (rc != 1)
311                 CERROR("write one catalog record failed: %d\n", rc);
312         RETURN(rc);
313 }
314 EXPORT_SYMBOL(llog_obd_origin_add);
315
316 int llog_cat_initialize(struct obd_device *obd, int count,
317                         struct obd_uuid *uuid)
318 {
319         char name[32] = CATLIST;
320         struct llog_catid *idarray;
321         int size = sizeof(*idarray) * count;
322         int rc;
323         ENTRY;
324
325         OBD_ALLOC(idarray, size);
326         if (!idarray) 
327                 RETURN(-ENOMEM);
328
329         rc = llog_get_cat_list(obd, obd, name, count, idarray);
330         if (rc) {
331                 CERROR("rc: %d\n", rc);
332                 GOTO(out, rc);
333         }
334
335         rc = obd_llog_init(obd, obd, count, idarray, uuid);
336         if (rc) {
337                 CERROR("rc: %d\n", rc);
338                 GOTO(out, rc);
339         }
340
341         rc = llog_put_cat_list(obd, obd, name, count, idarray);
342         if (rc) {
343                 CERROR("rc: %d\n", rc);
344                 GOTO(out, rc);
345         }
346
347  out:
348         OBD_FREE(idarray, size);
349         RETURN(rc);
350 }
351 EXPORT_SYMBOL(llog_cat_initialize);
352
353 int obd_llog_init(struct obd_device *obd, struct obd_device *disk_obd,
354                   int count, struct llog_catid *logid, struct obd_uuid *uuid)
355 {
356         int rc;
357         ENTRY;
358         OBD_CHECK_DT_OP(obd, llog_init, 0);
359         OBD_COUNTER_INCREMENT(obd, llog_init);
360
361         rc = OBP(obd, llog_init)(obd, disk_obd, count, logid, uuid);
362         RETURN(rc);
363 }
364 EXPORT_SYMBOL(obd_llog_init);
365
366 int obd_llog_finish(struct obd_device *obd, int count)
367 {
368         int rc;
369         ENTRY;
370         OBD_CHECK_DT_OP(obd, llog_finish, 0);
371         OBD_COUNTER_INCREMENT(obd, llog_finish);
372
373         rc = OBP(obd, llog_finish)(obd, count);
374         RETURN(rc);
375 }
376 EXPORT_SYMBOL(obd_llog_finish);