Whamcloud - gitweb
- lost #define changes from 1_6
[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_llogs *llogs;
106         struct llog_ctxt *ctxt;
107         
108         /* we have to find context for right group */
109         if (error != 0) {
110                 CDEBUG(D_INODE, "not cancelling llog cookie on error %d\n",
111                        error);
112                 goto out;
113         }
114         llogs = filter_grab_llog_for_group(obd, cookie->lgc_lgl.lgl_ogr, NULL);
115
116         if (llogs) {
117                 ctxt = llog_get_context_from_llogs(llogs, cookie->lgc_subsys + 1);
118                 if (ctxt) {
119                         llog_cancel(ctxt, NULL, 1, cookie, 0);
120                 } else
121                         CERROR("no valid context for group "LPU64"\n",
122                                 cookie->lgc_lgl.lgl_ogr);
123         } else {
124                 CDEBUG(D_HA, "unknown group "LPU64"!\n", cookie->lgc_lgl.lgl_ogr);
125         }
126 out:
127         OBD_FREE(cookie, sizeof(struct llog_cookie));
128 }
129
130 /* Callback for processing the unlink log record received from MDS by 
131  * llog_client_api. */
132 static int filter_recov_log_unlink_cb(struct llog_ctxt *ctxt,
133                                       struct llog_rec_hdr *rec,
134                                       struct llog_cookie *cookie)
135 {
136         struct obd_device *obd = ctxt->loc_obd;
137         struct obd_export *exp = obd->obd_self_export;
138         struct llog_unlink_rec *lur;
139         struct obdo *oa;
140         obd_id oid;
141         int rc = 0;
142         ENTRY;
143
144         lur = (struct llog_unlink_rec *)rec;
145         OBDO_ALLOC(oa);
146         if (oa == NULL) 
147                 RETURN(-ENOMEM);
148         oa->o_valid |= OBD_MD_FLCOOKIE;
149         oa->o_id = lur->lur_oid;
150         oa->o_gr = lur->lur_ogen;
151         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
152         memcpy(obdo_logcookie(oa), cookie, sizeof(*cookie));
153         oid = oa->o_id;
154
155         rc = filter_destroy(exp, oa, NULL, NULL, NULL);
156         OBDO_FREE(oa);
157         if (rc == -ENOENT) {
158                 CDEBUG(D_RPCTRACE, "object already removed, send cookie\n");
159                 llog_cancel(ctxt, NULL, 1, cookie, 0);
160                 RETURN(0);
161         }
162
163         if (rc == 0)
164                 CDEBUG(D_RPCTRACE, "object "LPU64" is destroyed\n", oid);
165
166         RETURN(rc);
167 }
168
169 /* Callback for processing the setattr log record received from MDS by
170  * llog_client_api. */
171 static int filter_recov_log_setattr_cb(struct llog_ctxt *ctxt,
172                                        struct llog_rec_hdr *rec,
173                                        struct llog_cookie *cookie)
174 {
175         struct obd_device *obd = ctxt->loc_obd;
176         struct obd_export *exp = obd->obd_self_export;
177         struct llog_setattr_rec *lsr;
178         struct obd_info oinfo = { { { 0 } } };
179         obd_id oid;
180         int rc = 0;
181         ENTRY;
182
183         lsr = (struct llog_setattr_rec *)rec;
184         OBDO_ALLOC(oinfo.oi_oa);
185         if (oinfo.oi_oa == NULL)
186                 RETURN(-ENOMEM);
187
188         oinfo.oi_oa->o_valid |= (OBD_MD_FLID | OBD_MD_FLUID | OBD_MD_FLGID |
189                                  OBD_MD_FLCOOKIE);
190         oinfo.oi_oa->o_id = lsr->lsr_oid;
191         oinfo.oi_oa->o_gr = lsr->lsr_ogen;
192         oinfo.oi_oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
193         oinfo.oi_oa->o_uid = lsr->lsr_uid;
194         oinfo.oi_oa->o_gid = lsr->lsr_gid;
195         memcpy(obdo_logcookie(oinfo.oi_oa), cookie, sizeof(*cookie));
196         oid = oinfo.oi_oa->o_id;
197
198         rc = filter_setattr(exp, &oinfo, NULL);
199         OBDO_FREE(oinfo.oi_oa);
200
201         if (rc == -ENOENT) {
202                 CDEBUG(D_RPCTRACE, "object already removed, send cookie\n");
203                 llog_cancel(ctxt, NULL, 1, cookie, 0);
204                 RETURN(0);
205         }
206
207         if (rc == 0)
208                 CDEBUG(D_RPCTRACE, "object "LPU64" is chown/chgrp\n", oid);
209
210         RETURN(rc);
211 }
212
213 int filter_recov_log_mds_ost_cb(struct llog_handle *llh,
214                                struct llog_rec_hdr *rec, void *data)
215 {
216         struct llog_ctxt *ctxt = llh->lgh_ctxt;
217         struct llog_cookie cookie;
218         int rc = 0;
219         ENTRY;
220
221         if (!(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN)) {
222                 CERROR("log is not plain\n");
223                 RETURN(-EINVAL);
224         }
225
226         cookie.lgc_lgl = llh->lgh_id;
227         cookie.lgc_subsys = LLOG_MDS_OST_ORIG_CTXT;
228         cookie.lgc_index = rec->lrh_index;
229
230         switch (rec->lrh_type) {
231         case MDS_UNLINK_REC:
232                 rc = filter_recov_log_unlink_cb(ctxt, rec, &cookie);
233                 break;
234         case MDS_SETATTR_REC:
235                 rc = filter_recov_log_setattr_cb(ctxt, rec, &cookie);
236                 break;
237         case LLOG_GEN_REC: {
238                 struct llog_gen_rec *lgr = (struct llog_gen_rec *)rec;
239                 if (llog_gen_lt(lgr->lgr_gen, ctxt->loc_gen))
240                         rc = 0;
241                 else
242                         rc = LLOG_PROC_BREAK;
243                 CDEBUG(D_HA, "fetch generation log, send cookie\n");
244                 llog_cancel(ctxt, NULL, 1, &cookie, 0);
245                 RETURN(rc);
246                 }
247                 break;
248         default:
249                 CERROR("log record type %08x unknown\n", rec->lrh_type);
250                 RETURN(-EINVAL);
251                 break;
252         }
253
254         RETURN(rc);
255 }