Whamcloud - gitweb
b=14608
[fs/lustre-release.git] / lustre / obdfilter / filter_log.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
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.
11  *
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).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see [sun.com URL with a
20  * copy of GPLv2].
21  *
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
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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/obdfilter/filter_log.c
37  *
38  * Author: Peter Braam <braam@clusterfs.com>
39  * Author: Andreas Dilger <adilger@clusterfs.com>
40  * Author: Phil Schwan <phil@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_FILTER
44
45 #ifndef AUTOCONF_INCLUDED
46 #include <linux/config.h>
47 #endif
48 #include <linux/module.h>
49 #include <linux/version.h>
50
51 #include <libcfs/list.h>
52 #include <obd_class.h>
53 #include <lustre_log.h>
54 #include <lustre_fsfilt.h>
55 #include "filter_internal.h"
56
57 int filter_log_sz_change(struct llog_handle *cathandle,
58                          struct ll_fid *mds_fid,
59                          __u32 ioepoch,
60                          struct llog_cookie *logcookie,
61                          struct inode *inode)
62 {
63         struct llog_size_change_rec *lsc;
64         int rc;
65         struct ost_filterdata *ofd;
66         ENTRY;
67
68         LOCK_INODE_MUTEX(inode);
69         ofd = inode->i_filterdata;
70
71         if (ofd && ofd->ofd_epoch >= ioepoch) {
72                 if (ofd->ofd_epoch > ioepoch)
73                         CERROR("client sent old epoch %d for obj ino %ld\n",
74                                ioepoch, inode->i_ino);
75                 UNLOCK_INODE_MUTEX(inode);
76                 RETURN(0);
77         }
78
79         if (ofd && ofd->ofd_epoch < ioepoch) {
80                 ofd->ofd_epoch = ioepoch;
81         } else if (!ofd) {
82                 OBD_ALLOC(ofd, sizeof(*ofd));
83                 if (!ofd)
84                         GOTO(out, rc = -ENOMEM);
85                 igrab(inode);
86                 inode->i_filterdata = ofd;
87                 ofd->ofd_epoch = ioepoch;
88         }
89         /* the decision to write a record is now made, unlock */
90         UNLOCK_INODE_MUTEX(inode);
91
92         OBD_ALLOC(lsc, sizeof(*lsc));
93         if (lsc == NULL)
94                 RETURN(-ENOMEM);
95         lsc->lsc_hdr.lrh_len = lsc->lsc_tail.lrt_len = sizeof(*lsc);
96         lsc->lsc_hdr.lrh_type =  OST_SZ_REC;
97         lsc->lsc_fid = *mds_fid;
98         lsc->lsc_ioepoch = ioepoch;
99
100         rc = llog_cat_add_rec(cathandle, &lsc->lsc_hdr, logcookie, NULL);
101         OBD_FREE(lsc, sizeof(*lsc));
102
103         if (rc > 0) {
104                 LASSERT(rc == sizeof(*logcookie));
105                 rc = 0;
106         }
107
108         out:
109         RETURN(rc);
110 }
111
112 /* When this (destroy) operation is committed, return the cancel cookie */
113 void filter_cancel_cookies_cb(struct obd_device *obd, __u64 transno,
114                               void *cb_data, int error)
115 {
116         struct llog_cookie *cookie = cb_data;
117         struct obd_llog_group *olg;
118         struct llog_ctxt *ctxt;
119         int rc;
120         
121         /* we have to find context for right group */
122         if (error != 0 || obd->obd_stopping) {
123                 CDEBUG(D_INODE, "not cancel logcookie err %d stopping %d \n",
124                        error, obd->obd_stopping);
125                 GOTO (out, rc = 0);
126         }
127
128         olg = filter_find_olg(obd, cookie->lgc_lgl.lgl_ogr);
129         if (!olg) { 
130                 CDEBUG(D_HA, "unknown group "LPU64"!\n", cookie->lgc_lgl.lgl_ogr);
131                 GOTO(out, rc = 0);
132         }
133         
134         ctxt = llog_group_get_ctxt(olg, cookie->lgc_subsys + 1);
135         if (!ctxt) {
136                 CERROR("no valid context for group "LPU64"\n",
137                         cookie->lgc_lgl.lgl_ogr);
138                 GOTO(out, rc = 0);
139         }
140
141         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_CANCEL_COOKIE_TIMEOUT, 30);
142
143         rc = llog_cancel(ctxt, NULL, 1, cookie, 0);
144         if (rc)
145                 CERROR("error cancelling log cookies: rc = %d\n", rc);
146         llog_ctxt_put(ctxt);
147 out:
148         OBD_FREE(cookie, sizeof(*cookie));
149 }
150
151 /* Callback for processing the unlink log record received from MDS by 
152  * llog_client_api. */
153 static int filter_recov_log_unlink_cb(struct llog_ctxt *ctxt,
154                                       struct llog_rec_hdr *rec,
155                                       struct llog_cookie *cookie)
156 {
157         struct obd_device *obd = ctxt->loc_obd;
158         struct obd_export *exp = obd->obd_self_export;
159         struct llog_unlink_rec *lur;
160         struct obdo *oa;
161         obd_id oid;
162         int rc = 0;
163         ENTRY;
164
165         lur = (struct llog_unlink_rec *)rec;
166         OBDO_ALLOC(oa);
167         if (oa == NULL) 
168                 RETURN(-ENOMEM);
169         oa->o_valid |= OBD_MD_FLCOOKIE;
170         oa->o_id = lur->lur_oid;
171         oa->o_gr = lur->lur_ogen;
172         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
173         memcpy(obdo_logcookie(oa), cookie, sizeof(*cookie));
174         oid = oa->o_id;
175
176         rc = filter_destroy(exp, oa, NULL, NULL, NULL);
177         OBDO_FREE(oa);
178         if (rc == -ENOENT) {
179                 CDEBUG(D_RPCTRACE, "object already removed, send cookie\n");
180                 llog_cancel(ctxt, NULL, 1, cookie, 0);
181                 RETURN(0);
182         }
183
184         if (rc == 0)
185                 CDEBUG(D_RPCTRACE, "object "LPU64" is destroyed\n", oid);
186
187         RETURN(rc);
188 }
189
190 /* Callback for processing the setattr log record received from MDS by
191  * llog_client_api. */
192 static int filter_recov_log_setattr_cb(struct llog_ctxt *ctxt,
193                                        struct llog_rec_hdr *rec,
194                                        struct llog_cookie *cookie)
195 {
196         struct obd_device *obd = ctxt->loc_obd;
197         struct obd_export *exp = obd->obd_self_export;
198         struct llog_setattr_rec *lsr;
199         struct obd_info oinfo = { { { 0 } } };
200         obd_id oid;
201         int rc = 0;
202         ENTRY;
203
204         lsr = (struct llog_setattr_rec *)rec;
205         OBDO_ALLOC(oinfo.oi_oa);
206         if (oinfo.oi_oa == NULL)
207                 RETURN(-ENOMEM);
208
209         oinfo.oi_oa->o_valid |= (OBD_MD_FLID | OBD_MD_FLUID | OBD_MD_FLGID |
210                                  OBD_MD_FLCOOKIE);
211         oinfo.oi_oa->o_id = lsr->lsr_oid;
212         oinfo.oi_oa->o_gr = lsr->lsr_ogen;
213         oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
214         oinfo.oi_oa->o_uid = lsr->lsr_uid;
215         oinfo.oi_oa->o_gid = lsr->lsr_gid;
216         memcpy(obdo_logcookie(oinfo.oi_oa), cookie, sizeof(*cookie));
217         oid = oinfo.oi_oa->o_id;
218
219         rc = filter_setattr(exp, &oinfo, NULL);
220         OBDO_FREE(oinfo.oi_oa);
221
222         if (rc == -ENOENT) {
223                 CDEBUG(D_RPCTRACE, "object already removed, send cookie\n");
224                 llog_cancel(ctxt, NULL, 1, cookie, 0);
225                 RETURN(0);
226         }
227
228         if (rc == 0)
229                 CDEBUG(D_RPCTRACE, "object "LPU64" is chown/chgrp\n", oid);
230
231         RETURN(rc);
232 }
233
234 int filter_recov_log_mds_ost_cb(struct llog_handle *llh,
235                                struct llog_rec_hdr *rec, void *data)
236 {
237         struct llog_ctxt *ctxt = llh->lgh_ctxt;
238         struct llog_cookie cookie;
239         int rc = 0;
240         ENTRY;
241
242         if (ctxt->loc_obd->obd_stopping)
243                 RETURN(LLOG_PROC_BREAK);
244
245         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
246                 CERROR("log is not plain\n");
247                 RETURN(-EINVAL);
248         }
249
250         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_LLOG_RECOVERY_TIMEOUT, 30);
251         cookie.lgc_lgl = llh->lgh_id;
252         cookie.lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
253         cookie.lgc_index = rec->lrh_index;
254
255         switch (rec->lrh_type) {
256         case MDS_UNLINK_REC:
257                 rc = filter_recov_log_unlink_cb(ctxt, rec, &cookie);
258                 break;
259         case MDS_SETATTR_REC:
260                 rc = filter_recov_log_setattr_cb(ctxt, rec, &cookie);
261                 break;
262         case LLOG_GEN_REC: {
263                 struct llog_gen_rec *lgr = (struct llog_gen_rec *)rec;
264                 if (llog_gen_lt(lgr->lgr_gen, ctxt->loc_gen))
265                         rc = 0;
266                 else
267                         rc = LLOG_PROC_BREAK;
268                 CDEBUG(D_HA, "fetch generation log, send cookie\n");
269                 llog_cancel(ctxt, NULL, 1, &cookie, 0);
270                 RETURN(rc);
271                 }
272                 break;
273         default:
274                 CERROR("log record type %08x unknown\n", rec->lrh_type);
275                 RETURN(-EINVAL);
276                 break;
277         }
278
279         RETURN(rc);
280 }