Whamcloud - gitweb
ad9bc3ec116104ee7781af953e5402b77ad53585
[fs/lustre-release.git] / lustre / lov / lov_log.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  * Copyright (c) 2012, Intel Corporation.
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/lov/lov_log.c
37  *
38  * Author: Phil Schwan <phil@clusterfs.com>
39  * Author: Peter Braam <braam@clusterfs.com>
40  * Author: Mike Shaver <shaver@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_LOV
44 #ifdef __KERNEL__
45 #include <libcfs/libcfs.h>
46 #else
47 #include <liblustre.h>
48 #endif
49
50 #include <obd_support.h>
51 #include <lustre_lib.h>
52 #include <lustre_net.h>
53 #include <lustre/lustre_idl.h>
54 #include <lustre_dlm.h>
55 #include <lustre_mds.h>
56 #include <obd_class.h>
57 #include <obd_lov.h>
58 #include <obd_ost.h>
59 #include <lprocfs_status.h>
60 #include <lustre_log.h>
61
62 #include "lov_internal.h"
63
64 /* Add log records for each OSC that this object is striped over, and return
65  * cookies for each one.  We _would_ have nice abstraction here, except that
66  * we need to keep cookies in stripe order, even if some are NULL, so that
67  * the right cookies are passed back to the right OSTs at the client side.
68  * Unset cookies should be all-zero (which will never occur naturally). */
69 static int lov_llog_origin_add(const struct lu_env *env,
70                                struct llog_ctxt *ctxt,
71                                struct llog_rec_hdr *rec,
72                                struct lov_stripe_md *lsm,
73                                struct llog_cookie *logcookies, int numcookies)
74 {
75         struct obd_device *obd = ctxt->loc_obd;
76         struct lov_obd *lov = &obd->u.lov;
77         int i, rc = 0, cookies = 0;
78         ENTRY;
79
80         LASSERTF(logcookies && numcookies >= lsm->lsm_stripe_count,
81                  "logcookies %p, numcookies %d lsm->lsm_stripe_count %d \n",
82                  logcookies, numcookies, lsm->lsm_stripe_count);
83
84         for (i = 0; i < lsm->lsm_stripe_count; i++) {
85                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
86                 struct obd_device *child =
87                         lov->lov_tgts[loi->loi_ost_idx]->ltd_exp->exp_obd;
88                 struct llog_ctxt *cctxt = llog_get_context(child, ctxt->loc_idx);
89
90                 /* fill mds unlink/setattr log record */
91                 switch (rec->lrh_type) {
92                 case MDS_UNLINK_REC: {
93                         struct llog_unlink_rec *lur = (struct llog_unlink_rec *)rec;
94                         lur->lur_oid = loi->loi_id;
95                         lur->lur_oseq = loi->loi_seq;
96                         break;
97                 }
98                 case MDS_SETATTR64_REC: {
99                         struct llog_setattr64_rec *lsr = (struct llog_setattr64_rec *)rec;
100                         lsr->lsr_oid = loi->loi_id;
101                         lsr->lsr_oseq = loi->loi_seq;
102                         break;
103                 }
104                 default:
105                         break;
106                 }
107
108                 /* inject error in llog_obd_add() below */
109                 if (OBD_FAIL_CHECK(OBD_FAIL_MDS_FAIL_LOV_LOG_ADD)) {
110                         llog_ctxt_put(cctxt);
111                         cctxt = NULL;
112                 }
113                 rc = llog_obd_add(env, cctxt, rec, NULL, logcookies + cookies,
114                                   numcookies - cookies);
115                 llog_ctxt_put(cctxt);
116                 if (rc < 0) {
117                         CERROR("Can't add llog (rc = %d) for stripe %d\n",
118                                rc, cookies);
119                         memset(logcookies + cookies, 0,
120                                sizeof(struct llog_cookie));
121                         rc = 1; /* skip this cookie */
122                 }
123                 /* Note that rc is always 1 if llog_obd_add was successful */
124                 cookies += rc;
125         }
126         RETURN(cookies);
127 }
128
129 static int lov_llog_origin_connect(struct llog_ctxt *ctxt,
130                                    struct llog_logid *logid,
131                                    struct llog_gen *gen,
132                                    struct obd_uuid *uuid)
133 {
134         struct obd_device *obd = ctxt->loc_obd;
135         struct lov_obd *lov = &obd->u.lov;
136         int i, rc = 0, err = 0;
137         ENTRY;
138
139         obd_getref(obd);
140         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
141                 struct obd_device *child;
142                 struct llog_ctxt *cctxt;
143
144                 if (!lov->lov_tgts[i] || !lov->lov_tgts[i]->ltd_active)
145                         continue;
146                 if (uuid && !obd_uuid_equals(uuid, &lov->lov_tgts[i]->ltd_uuid))
147                         continue;
148                 CDEBUG(D_CONFIG, "connect %d/%d\n", i, lov->desc.ld_tgt_count);
149                 child = lov->lov_tgts[i]->ltd_exp->exp_obd;
150                 cctxt = llog_get_context(child, ctxt->loc_idx);
151                 rc = llog_connect(cctxt, logid, gen, uuid);
152                 llog_ctxt_put(cctxt);
153
154                 if (rc) {
155                         CERROR("error osc_llog_connect tgt %d (%d)\n", i, rc);
156                         if (!err)
157                                 err = rc;
158                 }
159         }
160         obd_putref(obd);
161
162         RETURN(err);
163 }
164
165 /* the replicators commit callback */
166 static int lov_llog_repl_cancel(const struct lu_env *env,
167                                 struct llog_ctxt *ctxt,
168                                 struct lov_stripe_md *lsm,
169                                 int count, struct llog_cookie *cookies,
170                                 int flags)
171 {
172         struct lov_obd *lov;
173         struct obd_device *obd = ctxt->loc_obd;
174         int rc = 0, i;
175         ENTRY;
176
177         LASSERT(lsm != NULL);
178         LASSERT(count == lsm->lsm_stripe_count);
179
180         lov = &obd->u.lov;
181         obd_getref(obd);
182         for (i = 0; i < count; i++, cookies++) {
183                 struct lov_oinfo *loi = lsm->lsm_oinfo[i];
184                 struct obd_device *child =
185                         lov->lov_tgts[loi->loi_ost_idx]->ltd_exp->exp_obd;
186                 struct llog_ctxt *cctxt =
187                         llog_get_context(child, ctxt->loc_idx);
188                 int err;
189
190                 err = llog_cancel(env, cctxt, NULL, 1, cookies, flags);
191                 llog_ctxt_put(cctxt);
192                 if (err && lov->lov_tgts[loi->loi_ost_idx]->ltd_active) {
193                         CERROR("error: objid "LPX64" subobj "LPX64
194                                " on OST idx %d: rc = %d\n", lsm->lsm_object_id,
195                                loi->loi_id, loi->loi_ost_idx, err);
196                         if (!rc)
197                                 rc = err;
198                 }
199         }
200         obd_putref(obd);
201         RETURN(rc);
202 }
203
204 static struct llog_operations lov_mds_ost_orig_logops = {
205         .lop_obd_add    = lov_llog_origin_add,
206         .lop_connect    = lov_llog_origin_connect,
207 };
208
209 static struct llog_operations lov_size_repl_logops = {
210         .lop_cancel     = lov_llog_repl_cancel,
211 };
212
213 int lov_llog_init(struct obd_device *obd, struct obd_llog_group *olg,
214                   struct obd_device *disk_obd, int *index)
215 {
216         struct lov_obd *lov = &obd->u.lov;
217         struct obd_device *child;
218         int i, rc = 0;
219         ENTRY;
220
221         LASSERT(olg == &obd->obd_olg);
222         rc = llog_setup(NULL, obd, olg, LLOG_MDS_OST_ORIG_CTXT, disk_obd,
223                         &lov_mds_ost_orig_logops);
224         if (rc)
225                 RETURN(rc);
226
227         rc = llog_setup(NULL, obd, olg, LLOG_SIZE_REPL_CTXT, disk_obd,
228                         &lov_size_repl_logops);
229         if (rc)
230                 GOTO(err_cleanup, rc);
231
232         obd_getref(obd);
233         /* count may not match lov->desc.ld_tgt_count during dynamic ost add */
234         for (i = 0; i < lov->desc.ld_tgt_count; i++) {
235                 if (!lov->lov_tgts[i])
236                         continue;
237
238                 if (index && i != *index)
239                         continue;
240
241                 child = lov->lov_tgts[i]->ltd_obd;
242                 rc = obd_llog_init(child, &child->obd_olg, disk_obd, &i);
243                 if (rc)
244                         CERROR("error osc_llog_init idx %d osc '%s' tgt '%s' "
245                                "(rc=%d)\n", i, child->obd_name,
246                                disk_obd->obd_name, rc);
247                 rc = 0;
248         }
249         obd_putref(obd);
250         GOTO(err_cleanup, rc);
251 err_cleanup:
252         if (rc) {
253                 struct llog_ctxt *ctxt =
254                         llog_get_context(obd, LLOG_SIZE_REPL_CTXT);
255                 if (ctxt)
256                         llog_cleanup(NULL, ctxt);
257                 ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
258                 if (ctxt)
259                         llog_cleanup(NULL, ctxt);
260         }
261         return rc;
262 }
263
264 int lov_llog_finish(struct obd_device *obd, int count)
265 {
266         struct llog_ctxt *ctxt;
267
268         ENTRY;
269
270         /* cleanup our llogs only if the ctxts have been setup
271          * (client lov doesn't setup, mds lov does). */
272         ctxt = llog_get_context(obd, LLOG_MDS_OST_ORIG_CTXT);
273         if (ctxt)
274                 llog_cleanup(NULL, ctxt);
275
276         ctxt = llog_get_context(obd, LLOG_SIZE_REPL_CTXT);
277         if (ctxt)
278                 llog_cleanup(NULL, ctxt);
279
280         /* lov->tgt llogs are cleaned during osc_cleanup. */
281         RETURN(0);
282 }