Whamcloud - gitweb
b539f3f5f6dc9d3c1cc949121ffc7c0714324795
[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 Lustre, http://www.lustre.org.
12  *
13  *   Lustre is free software; you can redistribute it and/or
14  *   modify it under the terms of version 2 of the GNU General Public
15  *   License as published by the Free Software Foundation.
16  *
17  *   Lustre is distributed in the hope that it will be useful,
18  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *   GNU General Public License for more details.
21  *
22  *   You should have received a copy of the GNU General Public License
23  *   along with Lustre; if not, write to the Free Software
24  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  */
26
27 #define DEBUG_SUBSYSTEM S_FILTER
28
29 #include <linux/config.h>
30 #include <linux/module.h>
31 #include <linux/version.h>
32
33 #include <libcfs/list.h>
34 #include <linux/obd_class.h>
35 #include <linux/lustre_dlm.h>
36
37 #include "filter_internal.h"
38
39 /* Called with res->lr_lvb_sem held */
40 static int filter_lvbo_init(struct ldlm_resource *res)
41 {
42         struct ost_lvb *lvb = NULL;
43         struct filter_obd *filter;
44         struct obd_device *obd;
45         struct dentry *dentry;
46         __u64 ogr, oid;
47         int rc = 0;
48         ENTRY;
49
50         LASSERT(res);
51         LASSERT(down_trylock(&res->lr_lvb_sem) != 0);
52
53         /* we only want lvb's for object resources */
54         /* check for internal locks: these have name[1] != 0 */
55         if (res->lr_name.name[1])
56                 RETURN(0);
57
58         if (res->lr_lvb_data)
59                 GOTO(out, rc = 0);
60
61         OBD_ALLOC(lvb, sizeof(*lvb));
62         if (lvb == NULL)
63                 GOTO(out, rc = -ENOMEM);
64
65         res->lr_lvb_data = lvb;
66         res->lr_lvb_len = sizeof(*lvb);
67
68         obd = res->lr_namespace->ns_lvbp;
69         filter = &obd->u.filter;
70         LASSERT(obd != NULL);
71
72         oid = res->lr_name.name[0];
73         ogr = res->lr_name.name[2];
74
75         dentry = filter_id2dentry(obd, NULL, ogr, oid);
76         if (IS_ERR(dentry))
77                 GOTO(out, rc = PTR_ERR(dentry));
78
79         if (dentry->d_inode == NULL) {
80                 lvb->lvb_size = 0;
81                 lvb->lvb_blocks = 0;
82
83                 /* making client use MDS mtime as this one is zero, bigger one
84                  * will be taken and this does not break POSIX. Thanks to
85                  * Andreas. --umka */
86                 lvb->lvb_mtime = 0;
87         } else {
88                 lvb->lvb_size = dentry->d_inode->i_size;
89                 lvb->lvb_blocks = dentry->d_inode->i_blocks;
90                 lvb->lvb_mtime = LTIME_S(dentry->d_inode->i_mtime);
91         }
92
93         CDEBUG(D_DLMTRACE, "res: "LPU64" initial lvb size: "LPU64", "
94                "mtime: "LPU64", blocks: "LPU64"\n", res->lr_name.name[0],
95                lvb->lvb_size, lvb->lvb_mtime, lvb->lvb_blocks);
96
97         f_dput(dentry);
98         EXIT;
99 out:
100         /* don't free lvb data on lookup error */
101         return rc;
102 }
103
104 /* This will be called in two ways:
105  *
106  *   m != NULL : called by the DLM itself after a glimpse callback
107  *   m == NULL : called by the filter after a disk write
108  *
109  *   If 'increase' is true, don't allow values to move backwards.
110  */
111 static int filter_lvbo_update(struct ldlm_resource *res, struct lustre_msg *m,
112                               int buf_idx, int increase)
113 {
114         struct ost_lvb *lvb = res->lr_lvb_data;
115         struct obd_device *obd;
116         struct obdo *oa = NULL;
117         struct dentry *dentry;
118         int rc = 0;
119         ENTRY;
120
121         LASSERT(res);
122
123         /* we only want lvb's for object resources */
124         /* check for internal locks: these have name[1] != 0 */
125         if (res->lr_name.name[1])
126                 RETURN(0);
127
128         down(&res->lr_lvb_sem);
129         if (!res->lr_lvb_data) {
130                 CERROR("No lvb when running lvbo_update!\n");
131                 GOTO(out, rc = 0);
132         }
133
134         /* Update the LVB from the network message */
135         if (m != NULL) {
136                 struct ost_lvb *new;
137
138                 new = lustre_swab_buf(m, buf_idx, sizeof(*new),
139                                       lustre_swab_ost_lvb);
140                 if (new == NULL) {
141                         CERROR("lustre_swab_buf failed\n");
142                         //GOTO(out, rc = -EPROTO);
143                         GOTO(out, rc = 0);
144                 }
145                 if (new->lvb_size > lvb->lvb_size || !increase) {
146                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size: "
147                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
148                                lvb->lvb_size, new->lvb_size);
149                         lvb->lvb_size = new->lvb_size;
150                 }
151                 if (new->lvb_mtime > lvb->lvb_mtime || !increase) {
152                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime: "
153                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
154                                lvb->lvb_mtime, new->lvb_mtime);
155                         lvb->lvb_mtime = new->lvb_mtime;
156                 }
157                 if (new->lvb_atime > lvb->lvb_atime || !increase) {
158                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb atime: "
159                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
160                                lvb->lvb_atime, new->lvb_atime);
161                         lvb->lvb_atime = new->lvb_atime;
162                 }
163                 if (new->lvb_ctime > lvb->lvb_ctime || !increase) {
164                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb ctime: "
165                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
166                                lvb->lvb_ctime, new->lvb_ctime);
167                         lvb->lvb_ctime = new->lvb_ctime;
168                 }
169         }
170
171         /* Update the LVB from the disk inode */
172         obd = res->lr_namespace->ns_lvbp;
173         LASSERT(obd);
174
175         oa = obdo_alloc();
176         if (oa == NULL)
177                 GOTO(out, rc = -ENOMEM);
178
179         oa->o_id = res->lr_name.name[0];
180         oa->o_gr = res->lr_name.name[2];
181         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
182         dentry = filter_oa2dentry(obd, oa);
183         if (IS_ERR(dentry))
184                 GOTO(out, rc = PTR_ERR(dentry));
185
186         /* Limit the valid bits in the return data to what we actually use */
187         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
188         obdo_from_inode(oa, dentry->d_inode, FILTER_VALID_FLAGS);
189
190         if (dentry->d_inode->i_size > lvb->lvb_size || !increase) {
191                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size from disk: "
192                        LPU64" -> %llu\n", res->lr_name.name[0],
193                        lvb->lvb_size, dentry->d_inode->i_size);
194                 lvb->lvb_size = dentry->d_inode->i_size;
195         }
196
197         if (LTIME_S(dentry->d_inode->i_mtime) > lvb->lvb_mtime || !increase) {
198                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime from disk: "
199                        LPU64" -> %lu\n", res->lr_name.name[0],
200                        lvb->lvb_mtime, LTIME_S(dentry->d_inode->i_mtime));
201                 lvb->lvb_mtime = LTIME_S(dentry->d_inode->i_mtime);
202         }
203         if (LTIME_S(dentry->d_inode->i_atime) > lvb->lvb_atime || !increase) {
204                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb atime from disk: "
205                        LPU64" -> %lu\n", res->lr_name.name[0],
206                        lvb->lvb_atime, LTIME_S(dentry->d_inode->i_atime));
207                 lvb->lvb_atime = LTIME_S(dentry->d_inode->i_atime);
208         }
209         if (LTIME_S(dentry->d_inode->i_ctime) > lvb->lvb_ctime || !increase) {
210                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb ctime from disk: "
211                        LPU64" -> %lu\n", res->lr_name.name[0],
212                        lvb->lvb_ctime, LTIME_S(dentry->d_inode->i_ctime));
213                 lvb->lvb_ctime = LTIME_S(dentry->d_inode->i_ctime);
214         }
215         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb blocks from disk: "
216                LPU64" -> %lu\n", res->lr_name.name[0],
217                lvb->lvb_blocks, dentry->d_inode->i_blocks);
218         lvb->lvb_blocks = dentry->d_inode->i_blocks;
219
220         f_dput(dentry);
221 out:
222         if (oa)
223                 obdo_free(oa);
224         up(&res->lr_lvb_sem);
225         return rc;
226 }
227
228 struct ldlm_valblock_ops filter_lvbo = {
229         lvbo_init: filter_lvbo_init,
230         lvbo_update: filter_lvbo_update
231 };