Whamcloud - gitweb
smash the HEAD with the contents of b_cmd. HEAD_PRE_CMD_SMASH and
[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 = res->lr_name.name[2];
75         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
76
77         dentry = filter_oa2dentry(obd, oa);
78         if (IS_ERR(dentry))
79                 GOTO(out, rc = PTR_ERR(dentry));
80
81         /* Limit the valid bits in the return data to what we actually use */
82         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
83         obdo_from_inode(oa, dentry->d_inode, FILTER_VALID_FLAGS);
84         f_dput(dentry);
85
86         lvb->lvb_size = dentry->d_inode->i_size;
87         lvb->lvb_mtime = LTIME_S(dentry->d_inode->i_mtime);
88         CDEBUG(D_DLMTRACE, "res: "LPU64" initial lvb size: "LPU64", mtime: "
89                LPU64"\n", res->lr_name.name[0], lvb->lvb_size, lvb->lvb_mtime);
90
91  out:
92         if (oa)
93                 obdo_free(oa);
94         if (rc && lvb != NULL) {
95                 OBD_FREE(lvb, sizeof(*lvb));
96                 res->lr_lvb_data = NULL;
97                 res->lr_lvb_len = 0;
98         }
99         up(&res->lr_lvb_sem);
100         return rc;
101 }
102
103 /* This will be called in two ways:
104  *
105  *   m != NULL : called by the DLM itself after a glimpse callback
106  *   m == NULL : called by the filter after a disk write
107  *
108  *   If 'increase' is true, don't allow values to move backwards.
109  */
110 static int filter_lvbo_update(struct ldlm_resource *res, struct lustre_msg *m,
111                               int buf_idx, int increase)
112 {
113         int rc = 0;
114         struct ost_lvb *lvb = res->lr_lvb_data;
115         struct obd_device *obd;
116         struct obdo *oa = NULL;
117         struct dentry *dentry;
118         ENTRY;
119
120         LASSERT(res);
121
122         /* we only want lvb's for object resources */
123         /* check for internal locks: these have name[1] != 0 */
124         if (res->lr_name.name[1])
125                 RETURN(0);
126
127         down(&res->lr_lvb_sem);
128         if (!res->lr_lvb_data) {
129                 CERROR("No lvb when running lvbo_update!\n");
130                 GOTO(out, rc = 0);
131         }
132
133         /* Update the LVB from the network message */
134         if (m != NULL) {
135                 struct ost_lvb *new;
136
137                 new = lustre_swab_buf(m, buf_idx, sizeof(*new),
138                                       lustre_swab_ost_lvb);
139                 if (new == NULL) {
140                         CERROR("lustre_swab_buf failed\n");
141                         //GOTO(out, rc = -EPROTO);
142                         GOTO(out, rc = 0);
143                 }
144                 if (new->lvb_size > lvb->lvb_size || !increase) {
145                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size: "
146                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
147                                lvb->lvb_size, new->lvb_size);
148                         lvb->lvb_size = new->lvb_size;
149                 }
150                 if (new->lvb_mtime > lvb->lvb_mtime || !increase) {
151                         CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime: "
152                                LPU64" -> "LPU64"\n", res->lr_name.name[0],
153                                lvb->lvb_mtime, new->lvb_mtime);
154                         lvb->lvb_mtime = new->lvb_mtime;
155                 }
156                 GOTO(out, rc = 0);
157         }
158
159         /* Update the LVB from the disk inode */
160         obd = res->lr_namespace->ns_lvbp;
161         LASSERT(obd);
162
163         oa = obdo_alloc();
164         if (oa == NULL)
165                 GOTO(out, rc = -ENOMEM);
166
167         oa->o_id = res->lr_name.name[0];
168         oa->o_gr = res->lr_name.name[2];
169         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
170         dentry = filter_oa2dentry(obd, oa);
171         if (IS_ERR(dentry))
172                 GOTO(out, rc = PTR_ERR(dentry));
173
174         /* Limit the valid bits in the return data to what we actually use */
175         oa->o_valid = OBD_MD_FLID | OBD_MD_FLGROUP;
176         obdo_from_inode(oa, dentry->d_inode, FILTER_VALID_FLAGS);
177
178         if (dentry->d_inode->i_size > lvb->lvb_size || !increase) {
179                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb size from disk: "
180                        LPU64" -> %llu\n", res->lr_name.name[0],
181                        lvb->lvb_size, dentry->d_inode->i_size);
182                 lvb->lvb_size = dentry->d_inode->i_size;
183         }
184         if (LTIME_S(dentry->d_inode->i_mtime) > lvb->lvb_mtime || !increase) {
185                 CDEBUG(D_DLMTRACE, "res: "LPU64" updating lvb mtime from disk: "
186                        LPU64" -> %lu\n", res->lr_name.name[0],
187                        lvb->lvb_mtime, LTIME_S(dentry->d_inode->i_mtime));
188                 lvb->lvb_mtime = LTIME_S(dentry->d_inode->i_mtime);
189         }
190         f_dput(dentry);
191
192  out:
193         if (oa != NULL)
194                 obdo_free(oa);
195         up(&res->lr_lvb_sem);
196         return rc;
197 }
198
199
200
201 struct ldlm_valblock_ops filter_lvbo = {
202         lvbo_init: filter_lvbo_init,
203         lvbo_update: filter_lvbo_update
204 };