Whamcloud - gitweb
Branch: HEAD
[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  *  linux/fs/obdfilter/filter_log.c
5  *
6  *  Copyright (c) 2001-2003 Cluster File Systems, Inc.
7  *   Author: Peter Braam <braam@clusterfs.com>
8  *   Author: Andreas Dilger <adilger@clusterfs.com>
9  *   Author: Phil Schwan <phil@clusterfs.com>
10  *
11  *   This file is part of the Lustre file system, http://www.lustre.org
12  *   Lustre is a trademark of Cluster File Systems, Inc.
13  *
14  *   You may have signed or agreed to another license before downloading
15  *   this software.  If so, you are bound by the terms and conditions
16  *   of that agreement, and the following does not apply to you.  See the
17  *   LICENSE file included with this distribution for more information.
18  *
19  *   If you did not agree to a different license, then this copy of Lustre
20  *   is open source software; you can redistribute it and/or modify it
21  *   under the terms of version 2 of the GNU General Public License as
22  *   published by the Free Software Foundation.
23  *
24  *   In either case, Lustre is distributed in the hope that it will be
25  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
26  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *   license text for more details.
28  */
29
30 #define DEBUG_SUBSYSTEM S_FILTER
31
32 #ifndef AUTOCONF_INCLUDED
33 #include <linux/config.h>
34 #endif
35 #include <linux/module.h>
36 #include <linux/version.h>
37
38 #include <libcfs/list.h>
39 #include <obd_class.h>
40 #include <lustre_fsfilt.h>
41 #include <lustre_commit_confd.h>
42
43 #include "filter_internal.h"
44
45 int filter_log_sz_change(struct llog_handle *cathandle,
46                          struct ll_fid *mds_fid,
47                          __u32 ioepoch,
48                          struct llog_cookie *logcookie,
49                          struct inode *inode)
50 {
51         struct llog_size_change_rec *lsc;
52         int rc;
53         struct ost_filterdata *ofd;
54         ENTRY;
55
56         LOCK_INODE_MUTEX(inode);
57         ofd = inode->i_filterdata;
58
59         if (ofd && ofd->ofd_epoch >= ioepoch) {
60                 if (ofd->ofd_epoch > ioepoch)
61                         CERROR("client sent old epoch %d for obj ino %ld\n",
62                                ioepoch, inode->i_ino);
63                 UNLOCK_INODE_MUTEX(inode);
64                 RETURN(0);
65         }
66
67         if (ofd && ofd->ofd_epoch < ioepoch) {
68                 ofd->ofd_epoch = ioepoch;
69         } else if (!ofd) {
70                 OBD_ALLOC(ofd, sizeof(*ofd));
71                 if (!ofd)
72                         GOTO(out, rc = -ENOMEM);
73                 igrab(inode);
74                 inode->i_filterdata = ofd;
75                 ofd->ofd_epoch = ioepoch;
76         }
77         /* the decision to write a record is now made, unlock */
78         UNLOCK_INODE_MUTEX(inode);
79
80         OBD_ALLOC(lsc, sizeof(*lsc));
81         if (lsc == NULL)
82                 RETURN(-ENOMEM);
83         lsc->lsc_hdr.lrh_len = lsc->lsc_tail.lrt_len = sizeof(*lsc);
84         lsc->lsc_hdr.lrh_type =  OST_SZ_REC;
85         lsc->lsc_fid = *mds_fid;
86         lsc->lsc_ioepoch = ioepoch;
87
88         rc = llog_cat_add_rec(cathandle, &lsc->lsc_hdr, logcookie, NULL);
89         OBD_FREE(lsc, sizeof(*lsc));
90
91         if (rc > 0) {
92                 LASSERT(rc == sizeof(*logcookie));
93                 rc = 0;
94         }
95
96         out:
97         RETURN(rc);
98 }
99
100 /* When this (destroy) operation is committed, return the cancel cookie */
101 void filter_cancel_cookies_cb(struct obd_device *obd, __u64 transno,
102                               void *cb_data, int error)
103 {
104         struct llog_cookie *cookie = cb_data;
105         struct obd_llog_group *olg;
106         struct llog_ctxt *ctxt;
107         int rc;
108         
109         /* we have to find context for right group */
110         if (error != 0 || obd->obd_stopping) {
111                 CDEBUG(D_INODE, "not cancel logcookie err %d stopping %d \n",
112                        error, obd->obd_stopping);
113                 GOTO (out, rc = 0);
114         }
115
116         olg = filter_find_olg(obd, cookie->lgc_lgl.lgl_ogr);
117         if (!olg) { 
118                 CDEBUG(D_HA, "unknown group "LPU64"!\n", cookie->lgc_lgl.lgl_ogr);
119                 GOTO(out, rc = 0);
120         }
121         
122         ctxt = llog_group_get_ctxt(olg, cookie->lgc_subsys + 1);
123         if (!ctxt) {
124                 CERROR("no valid context for group "LPU64"\n",
125                         cookie->lgc_lgl.lgl_ogr);
126                 GOTO(out, rc = 0);
127         }
128
129         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_CANCEL_COOKIE_TIMEOUT, 30);
130
131         rc = llog_cancel(ctxt, NULL, 1, cookie, 0);
132         if (rc)
133                 CERROR("error cancelling log cookies: rc = %d\n", rc);
134         llog_ctxt_put(ctxt);
135 out:
136         OBD_FREE(cookie, sizeof(*cookie));
137 }
138
139 /* Callback for processing the unlink log record received from MDS by 
140  * llog_client_api. */
141 static int filter_recov_log_unlink_cb(struct llog_ctxt *ctxt,
142                                       struct llog_rec_hdr *rec,
143                                       struct llog_cookie *cookie)
144 {
145         struct obd_device *obd = ctxt->loc_obd;
146         struct obd_export *exp = obd->obd_self_export;
147         struct llog_unlink_rec *lur;
148         struct obdo *oa;
149         obd_id oid;
150         int rc = 0;
151         ENTRY;
152
153         lur = (struct llog_unlink_rec *)rec;
154         OBDO_ALLOC(oa);
155         if (oa == NULL) 
156                 RETURN(-ENOMEM);
157         oa->o_valid |= OBD_MD_FLCOOKIE;
158         oa->o_id = lur->lur_oid;
159         oa->o_gr = lur->lur_ogen;
160         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
161         memcpy(obdo_logcookie(oa), cookie, sizeof(*cookie));
162         oid = oa->o_id;
163
164         rc = filter_destroy(exp, oa, NULL, NULL, NULL);
165         OBDO_FREE(oa);
166         if (rc == -ENOENT) {
167                 CDEBUG(D_RPCTRACE, "object already removed, send cookie\n");
168                 llog_cancel(ctxt, NULL, 1, cookie, 0);
169                 RETURN(0);
170         }
171
172         if (rc == 0)
173                 CDEBUG(D_RPCTRACE, "object "LPU64" is destroyed\n", oid);
174
175         RETURN(rc);
176 }
177
178 /* Callback for processing the setattr log record received from MDS by
179  * llog_client_api. */
180 static int filter_recov_log_setattr_cb(struct llog_ctxt *ctxt,
181                                        struct llog_rec_hdr *rec,
182                                        struct llog_cookie *cookie)
183 {
184         struct obd_device *obd = ctxt->loc_obd;
185         struct obd_export *exp = obd->obd_self_export;
186         struct llog_setattr_rec *lsr;
187         struct obd_info oinfo = { { { 0 } } };
188         obd_id oid;
189         int rc = 0;
190         ENTRY;
191
192         lsr = (struct llog_setattr_rec *)rec;
193         OBDO_ALLOC(oinfo.oi_oa);
194         if (oinfo.oi_oa == NULL)
195                 RETURN(-ENOMEM);
196
197         oinfo.oi_oa->o_valid |= (OBD_MD_FLID | OBD_MD_FLUID | OBD_MD_FLGID |
198                                  OBD_MD_FLCOOKIE);
199         oinfo.oi_oa->o_id = lsr->lsr_oid;
200         oinfo.oi_oa->o_gr = lsr->lsr_ogen;
201         oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
202         oinfo.oi_oa->o_uid = lsr->lsr_uid;
203         oinfo.oi_oa->o_gid = lsr->lsr_gid;
204         memcpy(obdo_logcookie(oinfo.oi_oa), cookie, sizeof(*cookie));
205         oid = oinfo.oi_oa->o_id;
206
207         rc = filter_setattr(exp, &oinfo, NULL);
208         OBDO_FREE(oinfo.oi_oa);
209
210         if (rc == -ENOENT) {
211                 CDEBUG(D_RPCTRACE, "object already removed, send cookie\n");
212                 llog_cancel(ctxt, NULL, 1, cookie, 0);
213                 RETURN(0);
214         }
215
216         if (rc == 0)
217                 CDEBUG(D_RPCTRACE, "object "LPU64" is chown/chgrp\n", oid);
218
219         RETURN(rc);
220 }
221
222 int filter_recov_log_mds_ost_cb(struct llog_handle *llh,
223                                struct llog_rec_hdr *rec, void *data)
224 {
225         struct llog_ctxt *ctxt = llh->lgh_ctxt;
226         struct llog_cookie cookie;
227         int rc = 0;
228         ENTRY;
229
230         if (ctxt->loc_obd->obd_stopping)
231                 RETURN(LLOG_PROC_BREAK);
232
233         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
234                 CERROR("log is not plain\n");
235                 RETURN(-EINVAL);
236         }
237
238         OBD_FAIL_TIMEOUT(OBD_FAIL_OST_LLOG_RECOVERY_TIMEOUT, 30);
239         cookie.lgc_lgl = llh->lgh_id;
240         cookie.lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
241         cookie.lgc_index = rec->lrh_index;
242
243         switch (rec->lrh_type) {
244         case MDS_UNLINK_REC:
245                 rc = filter_recov_log_unlink_cb(ctxt, rec, &cookie);
246                 break;
247         case MDS_SETATTR_REC:
248                 rc = filter_recov_log_setattr_cb(ctxt, rec, &cookie);
249                 break;
250         case LLOG_GEN_REC: {
251                 struct llog_gen_rec *lgr = (struct llog_gen_rec *)rec;
252                 if (llog_gen_lt(lgr->lgr_gen, ctxt->loc_gen))
253                         rc = 0;
254                 else
255                         rc = LLOG_PROC_BREAK;
256                 CDEBUG(D_HA, "fetch generation log, send cookie\n");
257                 llog_cancel(ctxt, NULL, 1, &cookie, 0);
258                 RETURN(rc);
259                 }
260                 break;
261         default:
262                 CERROR("log record type %08x unknown\n", rec->lrh_type);
263                 RETURN(-EINVAL);
264                 break;
265         }
266
267         RETURN(rc);
268 }