Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / obdfilter / filter_lvb.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_dlm.h>
41
42 #include "filter_internal.h"
43
44 /* Called with res->lr_lvb_sem held */
45 static int filter_lvbo_init(struct ldlm_resource *res)
46 {
47         struct ost_lvb *lvb = NULL;
48         struct obd_device *obd;
49         struct dentry *dentry;
50         int rc = 0;
51         ENTRY;
52
53         LASSERT(res);
54         LASSERT_SEM_LOCKED(&res->lr_lvb_sem);
55
56         /* we only want lvb's for object resources */
57         /* check for internal locks: these have name[1] != 0 */
58         if (res->lr_name.name[1])
59                 RETURN(0);
60
61         if (res->lr_lvb_data)
62                 RETURN(0);
63
64         OBD_ALLOC(lvb, sizeof(*lvb));
65         if (lvb == NULL)
66                 RETURN(-ENOMEM);
67
68         res->lr_lvb_data = lvb;
69         res->lr_lvb_len = sizeof(*lvb);
70
71         obd = res->lr_namespace->ns_lvbp;
72         LASSERT(obd != NULL);
73
74         dentry = filter_fid2dentry(obd, NULL, res->lr_name.name[2], 
75                                               res->lr_name.name[0]);
76         if (IS_ERR(dentry)) {
77                 rc = PTR_ERR(dentry);
78                 CERROR("%s: bad object "LPU64"/"LPU64": rc %d\n", obd->obd_name,
79                        res->lr_name.name[0], res->lr_name.name[1], rc);
80                 RETURN(rc);
81         }
82
83         if (dentry->d_inode == NULL)
84                 /* This is always true for test_brw */
85                 GOTO(out_dentry, rc = -ENOENT);
86
87         inode_init_lvb(dentry->d_inode, lvb);
88
89         CDEBUG(D_DLMTRACE, "res: "LPU64" initial lvb size: "LPU64", "
90                "mtime: "LPU64", blocks: "LPU64"\n",
91                res->lr_name.name[0], lvb->lvb_size,
92                lvb->lvb_mtime, lvb->lvb_blocks);
93
94         EXIT;
95 out_dentry:
96         f_dput(dentry);
97
98         /* Don't free lvb data on lookup error */
99         return rc;
100 }
101
102 /* This will be called in two ways:
103  *
104  *   m != NULL : called by the DLM itself after a glimpse callback
105  *   m == NULL : called by the filter after a disk write
106  *
107  *   If 'increase_only' is true, don't allow values to move backwards.
108  */
109 static int filter_lvbo_update(struct ldlm_resource *res, struct lustre_msg *m,
110                               int buf_idx, int increase_only)
111 {
112         int rc = 0;
113         struct ost_lvb *lvb;
114         struct obd_device *obd;
115         struct dentry *dentry;
116         ENTRY;
117
118         LASSERT(res);
119
120         /* we only want lvb's for object resources */
121         /* check for internal locks: these have name[1] != 0 */
122         if (res->lr_name.name[1])
123                 RETURN(0);
124
125         down(&res->lr_lvb_sem);
126         lvb = res->lr_lvb_data;
127         if (lvb == NULL) {
128                 CERROR("No lvb when running lvbo_update!\n");
129                 GOTO(out, rc = 0);
130         }
131
132         /* Update the LVB from the network message */
133         if (m != NULL) {
134                 struct ost_lvb *new;
135
136                 new = lustre_swab_buf(m, buf_idx, sizeof(*new),
137                                       lustre_swab_ost_lvb);
138                 if (new == NULL) {
139                         CERROR("lustre_swab_buf failed\n");
140                         goto disk_update;
141                 }
142                 if (new->lvb_size > lvb->lvb_size || !increase_only) {
143                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size: "
144                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
145                                lvb->lvb_size, new->lvb_size);
146                         lvb->lvb_size = new->lvb_size;
147                 }
148                 if (new->lvb_mtime > lvb->lvb_mtime || !increase_only) {
149                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime: "
150                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
151                                lvb->lvb_mtime, new->lvb_mtime);
152                         lvb->lvb_mtime = new->lvb_mtime;
153                 }
154                 if (new->lvb_atime > lvb->lvb_atime || !increase_only) {
155                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb atime: "
156                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
157                                lvb->lvb_atime, new->lvb_atime);
158                         lvb->lvb_atime = new->lvb_atime;
159                 }
160                 if (new->lvb_ctime > lvb->lvb_ctime || !increase_only) {
161                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb ctime: "
162                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
163                                lvb->lvb_ctime, new->lvb_ctime);
164                         lvb->lvb_ctime = new->lvb_ctime;
165                 }
166         }
167
168  disk_update:
169         /* Update the LVB from the disk inode */
170         obd = res->lr_namespace->ns_lvbp;
171         LASSERT(obd);
172         
173         dentry = filter_fid2dentry(obd, NULL, res->lr_name.name[2], 
174                                               res->lr_name.name[0]);
175         if (IS_ERR(dentry))
176                 GOTO(out, rc = PTR_ERR(dentry));
177
178         if (dentry->d_inode == NULL)
179                 GOTO(out_dentry, rc = -ENOENT);
180
181         if (dentry->d_inode->i_size > lvb->lvb_size || !increase_only) {
182                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size from disk: "
183                        LPU64" -> %llu\n", res->lr_name.name[0],
184                        lvb->lvb_size, dentry->d_inode->i_size);
185                 lvb->lvb_size = dentry->d_inode->i_size;
186         }
187
188         if (LTIME_S(dentry->d_inode->i_mtime) >lvb->lvb_mtime|| !increase_only){
189                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime from disk: "
190                        LPU64" -> %lu\n", res->lr_name.name[0],
191                        lvb->lvb_mtime, LTIME_S(dentry->d_inode->i_mtime));
192                 lvb->lvb_mtime = LTIME_S(dentry->d_inode->i_mtime);
193         }
194         if (LTIME_S(dentry->d_inode->i_atime) >lvb->lvb_atime|| !increase_only){
195                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb atime from disk: "
196                        LPU64" -> %lu\n", res->lr_name.name[0],
197                        lvb->lvb_atime, LTIME_S(dentry->d_inode->i_atime));
198                 lvb->lvb_atime = LTIME_S(dentry->d_inode->i_atime);
199         }
200         if (LTIME_S(dentry->d_inode->i_ctime) >lvb->lvb_ctime|| !increase_only){
201                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb ctime from disk: "
202                        LPU64" -> %lu\n", res->lr_name.name[0],
203                        lvb->lvb_ctime, LTIME_S(dentry->d_inode->i_ctime));
204                 lvb->lvb_ctime = LTIME_S(dentry->d_inode->i_ctime);
205         }
206         if (lvb->lvb_blocks != dentry->d_inode->i_blocks) {
207                 CDEBUG(D_DLMTRACE,"res: "LPU64" updating lvb blocks from disk: "
208                        LPU64" -> %lu\n", res->lr_name.name[0],
209                        lvb->lvb_blocks, dentry->d_inode->i_blocks);
210                 lvb->lvb_blocks = dentry->d_inode->i_blocks;
211         }
212
213 out_dentry:
214         f_dput(dentry);
215
216 out:
217         up(&res->lr_lvb_sem);
218         return rc;
219 }
220
221 struct ldlm_valblock_ops filter_lvbo = {
222         lvbo_init: filter_lvbo_init,
223         lvbo_update: filter_lvbo_update
224 };