Whamcloud - gitweb
Update HEAD ChangeLog based on other branches
[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 #ifdef HAVE_KERNEL_CONFIG_H
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 io_epoch,
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 >= io_epoch) {
60                 if (ofd->ofd_epoch > io_epoch)
61                         CERROR("client sent old epoch %d for obj ino %ld\n",
62                                io_epoch, inode->i_ino);
63                 UNLOCK_INODE_MUTEX(inode);
64                 RETURN(0);
65         }
66
67         if (ofd && ofd->ofd_epoch < io_epoch) {
68                 ofd->ofd_epoch = io_epoch;
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 = io_epoch;
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_io_epoch = io_epoch;
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         int rc;
106
107         if (error != 0) {
108                 CDEBUG(D_INODE, "not cancelling llog cookie on error %d\n",
109                        error);
110                 return;
111         }
112
113         rc = llog_cancel(llog_get_context(obd, cookie->lgc_subsys + 1),
114                          NULL, 1, cookie, 0);
115         if (rc)
116                 CERROR("error cancelling log cookies: rc = %d\n", rc);
117         OBD_FREE(cookie, sizeof(*cookie));
118 }
119
120 /* Callback for processing the unlink log record received from MDS by 
121  * llog_client_api. */
122 static int filter_recov_log_unlink_cb(struct llog_ctxt *ctxt,
123                                       struct llog_rec_hdr *rec,
124                                       struct llog_cookie *cookie)
125 {
126         struct obd_device *obd = ctxt->loc_obd;
127         struct obd_export *exp = obd->obd_self_export;
128         struct llog_unlink_rec *lur;
129         struct obdo *oa;
130         obd_id oid;
131         int rc = 0;
132         ENTRY;
133
134         lur = (struct llog_unlink_rec *)rec;
135         oa = obdo_alloc();
136         if (oa == NULL) 
137                 RETURN(-ENOMEM);
138         oa->o_valid |= OBD_MD_FLCOOKIE;
139         oa->o_id = lur->lur_oid;
140         oa->o_gr = lur->lur_ogen;
141         memcpy(obdo_logcookie(oa), cookie, sizeof(*cookie));
142         oid = oa->o_id;
143
144         rc = filter_destroy(exp, oa, NULL, NULL, NULL);
145         obdo_free(oa);
146         if (rc == -ENOENT) {
147                 CDEBUG(D_HA, "object already removed, send cookie\n");
148                 llog_cancel(ctxt, NULL, 1, cookie, 0);
149                 RETURN(0);
150         }
151
152         if (rc == 0)
153                 CDEBUG(D_HA, "object: "LPU64" in record is destroyed\n", oid);
154
155         RETURN(rc);
156 }
157
158 /* Callback for processing the setattr log record received from MDS by
159  * llog_client_api. */
160 static int filter_recov_log_setattr_cb(struct llog_ctxt *ctxt,
161                                        struct llog_rec_hdr *rec,
162                                        struct llog_cookie *cookie)
163 {
164         struct obd_device *obd = ctxt->loc_obd;
165         struct obd_export *exp = obd->obd_self_export;
166         struct llog_setattr_rec *lsr;
167         struct obd_info oinfo = { { { 0 } } };
168         obd_id oid;
169         int rc = 0;
170         ENTRY;
171
172         lsr = (struct llog_setattr_rec *)rec;
173         oinfo.oi_oa = obdo_alloc();
174
175         oinfo.oi_oa->o_valid |= (OBD_MD_FLID | OBD_MD_FLUID | OBD_MD_FLGID |
176                                  OBD_MD_FLCOOKIE);
177         oinfo.oi_oa->o_id = lsr->lsr_oid;
178         oinfo.oi_oa->o_gr = lsr->lsr_ogen;
179         oinfo.oi_oa->o_uid = lsr->lsr_uid;
180         oinfo.oi_oa->o_gid = lsr->lsr_gid;
181         memcpy(obdo_logcookie(oinfo.oi_oa), cookie, sizeof(*cookie));
182         oid = oinfo.oi_oa->o_id;
183
184         rc = filter_setattr(exp, &oinfo, NULL);
185         obdo_free(oinfo.oi_oa);
186
187         if (rc == -ENOENT) {
188                 CDEBUG(D_HA, "object already removed, send cookie\n");
189                 llog_cancel(ctxt, NULL, 1, cookie, 0);
190                 RETURN(0);
191         }
192
193         if (rc == 0)
194                 CDEBUG(D_HA, "object: "LPU64" in record is chown/chgrp\n", oid);
195
196         RETURN(rc);
197 }
198
199 int filter_recov_log_mds_ost_cb(struct llog_handle *llh,
200                                struct llog_rec_hdr *rec, void *data)
201 {
202         struct llog_ctxt *ctxt = llh->lgh_ctxt;
203         struct llog_cookie cookie;
204         int rc = 0;
205         ENTRY;
206
207         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
208                 CERROR("log is not plain\n");
209                 RETURN(-EINVAL);
210         }
211
212         cookie.lgc_lgl = llh->lgh_id;
213         cookie.lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
214         cookie.lgc_index = rec->lrh_index;
215
216         switch (rec->lrh_type) {
217         case MDS_UNLINK_REC:
218                 rc = filter_recov_log_unlink_cb(ctxt, rec, &cookie);
219                 break;
220         case MDS_SETATTR_REC:
221                 rc = filter_recov_log_setattr_cb(ctxt, rec, &cookie);
222                 break;
223         case LLOG_GEN_REC: {
224                 struct llog_gen_rec *lgr = (struct llog_gen_rec *)rec;
225                 if (llog_gen_lt(lgr->lgr_gen, ctxt->loc_gen))
226                         rc = 0;
227                 else
228                         rc = LLOG_PROC_BREAK;
229                 CDEBUG(D_HA, "fetch generation log, send cookie\n");
230                 llog_cancel(ctxt, NULL, 1, &cookie, 0);
231                 RETURN(rc);
232                 }
233                 break;
234         default:
235                 CERROR("log record type %08x unknown\n", rec->lrh_type);
236                 RETURN(-EINVAL);
237                 break;
238         }
239
240         RETURN(rc);
241 }