Whamcloud - gitweb
Land b1_2 onto HEAD (20040317_2319)
[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 <portals/list.h>
34 #include <linux/obd_class.h>
35 #include <linux/lustre_dlm.h>
36
37 #include "filter_internal.h"
38
39 static int filter_lvbo_init(struct ldlm_resource *res)
40 {
41         int rc = 0;
42         struct ost_lvb *lvb = NULL;
43         struct obd_device *obd;
44         struct obdo *oa = NULL;
45         struct dentry *dentry;
46         ENTRY;
47
48         LASSERT(res);
49
50         /* we only want lvb's for object resources */
51         /* check for internal locks: these have name[1] != 0 */
52         if (res->lr_name.name[1])
53                 RETURN(0);
54
55         down(&res->lr_lvb_sem);
56         if (res->lr_lvb_data)
57                 GOTO(out, rc = 0);
58
59         OBD_ALLOC(lvb, sizeof(*lvb));
60         if (lvb == NULL)
61                 GOTO(out, rc = -ENOMEM);
62
63         res->lr_lvb_data = lvb;
64         res->lr_lvb_len = sizeof(*lvb);
65
66         obd = res->lr_namespace->ns_lvbp;
67         LASSERT(obd != NULL);
68
69         oa = obdo_alloc();
70         if (oa == NULL)
71                 GOTO(out, rc = -ENOMEM);
72
73         oa->o_id = res->lr_name.name[0];
74         oa->o_gr = 0;
75         dentry = filter_oa2dentry(obd, oa);
76         if (IS_ERR(dentry))
77                 GOTO(out, rc = PTR_ERR(dentry));
78
79         /* Limit the valid bits in the return data to what we actually use */
80         oa->o_valid = OBD_MD_FLID;
81         obdo_from_inode(oa, dentry->d_inode, FILTER_VALID_FLAGS);
82         f_dput(dentry);
83
84         lvb->lvb_size = dentry->d_inode->i_size;
85         lvb->lvb_mtime = LTIME_S(dentry->d_inode->i_mtime);
86         CDEBUG(D_DLMTRACE, "res: "LPU64" initial lvb size: "LPU64", mtime: "
87                LPU64"\n", res->lr_name.name[0], lvb->lvb_size, lvb->lvb_mtime);
88
89  out:
90         if (oa)
91                 obdo_free(oa);
92         if (rc && lvb != NULL) {
93                 OBD_FREE(lvb, sizeof(*lvb));
94                 res->lr_lvb_data = NULL;
95                 res->lr_lvb_len = 0;
96         }
97         up(&res->lr_lvb_sem);
98         return rc;
99 }
100
101 /* This will be called in two ways:
102  *
103  *   m != NULL : called by the DLM itself after a glimpse callback
104  *   m == NULL : called by the filter after a disk write
105  *
106  *   If 'increase' is true, don't allow values to move backwards.
107  */
108 static int filter_lvbo_update(struct ldlm_resource *res, struct lustre_msg *m,
109                               int buf_idx, int increase)
110 {
111         int rc = 0;
112         struct ost_lvb *lvb = res->lr_lvb_data;
113         struct obd_device *obd;
114         struct obdo *oa = NULL;
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         if (!res->lr_lvb_data) {
127                 CERROR("No lvb when running lvbo_update!\n");
128                 GOTO(out, rc = 0);
129         }
130
131         /* Update the LVB from the network message */
132         if (m != NULL) {
133                 struct ost_lvb *new;
134
135                 new = lustre_swab_buf(m, buf_idx, sizeof(*new),
136                                       lustre_swab_ost_lvb);
137                 if (new == NULL) {
138                         CERROR("lustre_swab_buf failed\n");
139                         //GOTO(out, rc = -EPROTO);
140                         GOTO(out, rc = 0);
141                 }
142                 if (new->lvb_size > lvb->lvb_size || !increase) {
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) {
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                 GOTO(out, rc = 0);
155         }
156
157         /* Update the LVB from the disk inode */
158         obd = res->lr_namespace->ns_lvbp;
159         LASSERT(obd);
160
161         oa = obdo_alloc();
162         if (oa == NULL)
163                 GOTO(out, rc = -ENOMEM);
164
165         oa->o_id = res->lr_name.name[0];
166         oa->o_gr = 0;
167         dentry = filter_oa2dentry(obd, oa);
168         if (IS_ERR(dentry))
169                 GOTO(out, rc = PTR_ERR(dentry));
170
171         /* Limit the valid bits in the return data to what we actually use */
172         oa->o_valid = OBD_MD_FLID;
173         obdo_from_inode(oa, dentry->d_inode, FILTER_VALID_FLAGS);
174
175         if (dentry->d_inode->i_size > lvb->lvb_size || !increase) {
176                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size from disk: "
177                        LPU64" -> %llu\n", res->lr_name.name[0],
178                        lvb->lvb_size, dentry->d_inode->i_size);
179                 lvb->lvb_size = dentry->d_inode->i_size;
180         }
181         if (dentry->d_inode->i_mtime > lvb->lvb_mtime || !increase) {
182                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime from disk: "
183                        LPU64" -> %lu\n", res->lr_name.name[0],
184                        lvb->lvb_mtime, LTIME_S(dentry->d_inode->i_mtime));
185                 lvb->lvb_mtime = LTIME_S(dentry->d_inode->i_mtime);
186         }
187         f_dput(dentry);
188
189  out:
190         if (oa != NULL)
191                 obdo_free(oa);
192         up(&res->lr_lvb_sem);
193         return rc;
194 }
195
196
197
198 struct ldlm_valblock_ops filter_lvbo = {
199         lvbo_init: filter_lvbo_init,
200         lvbo_update: filter_lvbo_update
201 };