Whamcloud - gitweb
LU-2193 ldlm: print FID in lvbo_init(), lvbo_update
[fs/lustre-release.git] / lustre / ofd / ofd_lvb.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/ofd/ofd_lvb.c
37  *
38  * Author: Mikhail Pershin <tappro@whamcloud.com>
39  * Author: Alexey Zhuravlev <bzzz@whamcloud.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_FILTER
43
44 #include "ofd_internal.h"
45
46 static int ofd_lvbo_free(struct ldlm_resource *res)
47 {
48         if (res->lr_lvb_data)
49                 OBD_FREE(res->lr_lvb_data, res->lr_lvb_len);
50
51         return 0;
52 }
53
54 /* Called with res->lr_lvb_sem held */
55 static int ofd_lvbo_init(struct ldlm_resource *res)
56 {
57         struct ost_lvb          *lvb;
58         struct ofd_device       *ofd;
59         struct ofd_object       *fo;
60         struct ofd_thread_info  *info;
61         struct lu_env            env;
62         int                      rc = 0;
63
64         ENTRY;
65
66         LASSERT(res);
67         LASSERT_MUTEX_LOCKED(&res->lr_lvb_mutex);
68
69         if (res->lr_lvb_data != NULL)
70                 RETURN(0);
71
72         ofd = ldlm_res_to_ns(res)->ns_lvbp;
73         LASSERT(ofd != NULL);
74
75         if (OBD_FAIL_CHECK(OBD_FAIL_LDLM_OST_LVB))
76                 RETURN(-ENOMEM);
77
78         rc = lu_env_init(&env, LCT_DT_THREAD);
79         if (rc)
80                 RETURN(rc);
81
82         OBD_ALLOC_PTR(lvb);
83         if (lvb == NULL)
84                 GOTO(out_env, rc = -ENOMEM);
85
86         res->lr_lvb_data = lvb;
87         res->lr_lvb_len = sizeof(*lvb);
88
89         info = ofd_info_init(&env, NULL);
90         ost_fid_from_resid(&info->fti_fid, &res->lr_name);
91         fo = ofd_object_find(&env, ofd, &info->fti_fid);
92         if (IS_ERR(fo))
93                 GOTO(out_lvb, rc = PTR_ERR(fo));
94
95         rc = ofd_attr_get(&env, fo, &info->fti_attr);
96         if (rc)
97                 GOTO(out_obj, rc);
98
99         lvb->lvb_size = info->fti_attr.la_size;
100         lvb->lvb_blocks = info->fti_attr.la_blocks;
101         lvb->lvb_mtime = info->fti_attr.la_mtime;
102         lvb->lvb_atime = info->fti_attr.la_atime;
103         lvb->lvb_ctime = info->fti_attr.la_ctime;
104
105         CDEBUG(D_DLMTRACE, "res: "DFID" initial lvb size: "LPU64", "
106                "mtime: "LPX64", blocks: "LPX64"\n",
107                PFID(&info->fti_fid), lvb->lvb_size,
108                lvb->lvb_mtime, lvb->lvb_blocks);
109
110         EXIT;
111 out_obj:
112         ofd_object_put(&env, fo);
113 out_lvb:
114         if (rc != 0)
115                 OST_LVB_SET_ERR(lvb->lvb_blocks, rc);
116 out_env:
117         lu_env_fini(&env);
118         /* Don't free lvb data on lookup error */
119         return rc;
120 }
121
122 /* This will be called in two ways:
123  *
124  *   r != NULL : called by the DLM itself after a glimpse callback
125  *   r == NULL : called by the ofd after a disk write
126  *
127  *   If 'increase_only' is true, don't allow values to move backwards.
128  */
129 static int ofd_lvbo_update(struct ldlm_resource *res,
130                            struct ptlrpc_request *req, int increase_only)
131 {
132         struct ofd_device       *ofd;
133         struct ofd_object       *fo;
134         struct ofd_thread_info  *info;
135         struct ost_lvb          *lvb;
136         struct lu_env            env;
137         int                      rc = 0;
138
139         ENTRY;
140
141         LASSERT(res != NULL);
142
143         ofd = ldlm_res_to_ns(res)->ns_lvbp;
144         LASSERT(ofd != NULL);
145
146         rc = lu_env_init(&env, LCT_DT_THREAD);
147         if (rc)
148                 RETURN(rc);
149
150         info = ofd_info_init(&env, NULL);
151         fid_extract_from_res_name(&info->fti_fid, &res->lr_name);
152
153         lvb = res->lr_lvb_data;
154         if (lvb == NULL) {
155                 CERROR("%s: no LVB data for "DFID"\n",
156                        ofd_obd(ofd)->obd_name, PFID(&info->fti_fid));
157                 GOTO(out_env, rc = 0);
158         }
159
160         /* Update the LVB from the network message */
161         if (req != NULL) {
162                 struct ost_lvb *rpc_lvb;
163                 bool lvb_type;
164
165                 if (req->rq_import != NULL)
166                         lvb_type = imp_connect_lvb_type(req->rq_import);
167                 else
168                         lvb_type = exp_connect_lvb_type(req->rq_export);
169
170                 if (!lvb_type) {
171                         struct ost_lvb_v1 *lvb_v1;
172
173                         lvb_v1 = req_capsule_server_swab_get(&req->rq_pill,
174                                         &RMF_DLM_LVB, lustre_swab_ost_lvb_v1);
175                         if (lvb_v1 == NULL)
176                                 goto disk_update;
177
178                         rpc_lvb = &info->fti_lvb;
179                         memcpy(rpc_lvb, lvb_v1, sizeof *lvb_v1);
180                         rpc_lvb->lvb_mtime_ns = 0;
181                         rpc_lvb->lvb_atime_ns = 0;
182                         rpc_lvb->lvb_ctime_ns = 0;
183                 } else {
184                         rpc_lvb = req_capsule_server_swab_get(&req->rq_pill,
185                                                               &RMF_DLM_LVB,
186                                                         lustre_swab_ost_lvb);
187                         if (rpc_lvb == NULL)
188                                 goto disk_update;
189                 }
190
191                 lock_res(res);
192                 if (rpc_lvb->lvb_size > lvb->lvb_size || !increase_only) {
193                         CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb size: "
194                                LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
195                                lvb->lvb_size, rpc_lvb->lvb_size);
196                         lvb->lvb_size = rpc_lvb->lvb_size;
197                 }
198                 if (rpc_lvb->lvb_mtime > lvb->lvb_mtime || !increase_only) {
199                         CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb mtime: "
200                                LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
201                                lvb->lvb_mtime, rpc_lvb->lvb_mtime);
202                         lvb->lvb_mtime = rpc_lvb->lvb_mtime;
203                 }
204                 if (rpc_lvb->lvb_atime > lvb->lvb_atime || !increase_only) {
205                         CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb atime: "
206                                LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
207                                lvb->lvb_atime, rpc_lvb->lvb_atime);
208                         lvb->lvb_atime = rpc_lvb->lvb_atime;
209                 }
210                 if (rpc_lvb->lvb_ctime > lvb->lvb_ctime || !increase_only) {
211                         CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb ctime: "
212                                LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
213                                lvb->lvb_ctime, rpc_lvb->lvb_ctime);
214                         lvb->lvb_ctime = rpc_lvb->lvb_ctime;
215                 }
216                 if (rpc_lvb->lvb_blocks > lvb->lvb_blocks || !increase_only) {
217                         CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb blocks: "
218                                LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
219                                lvb->lvb_blocks, rpc_lvb->lvb_blocks);
220                         lvb->lvb_blocks = rpc_lvb->lvb_blocks;
221                 }
222                 unlock_res(res);
223         }
224
225 disk_update:
226         /* Update the LVB from the disk inode */
227         ost_fid_from_resid(&info->fti_fid, &res->lr_name);
228         fo = ofd_object_find(&env, ofd, &info->fti_fid);
229         if (IS_ERR(fo))
230                 GOTO(out_env, rc = PTR_ERR(fo));
231
232         rc = ofd_attr_get(&env, fo, &info->fti_attr);
233         if (rc)
234                 GOTO(out_obj, rc);
235
236         lock_res(res);
237         if (info->fti_attr.la_size > lvb->lvb_size || !increase_only) {
238                 CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb size from disk: "
239                        LPU64" -> %llu\n", PFID(&info->fti_fid),
240                        lvb->lvb_size, info->fti_attr.la_size);
241                 lvb->lvb_size = info->fti_attr.la_size;
242         }
243
244         if (info->fti_attr.la_mtime >lvb->lvb_mtime || !increase_only) {
245                 CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb mtime from disk: "
246                        LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
247                        lvb->lvb_mtime, info->fti_attr.la_mtime);
248                 lvb->lvb_mtime = info->fti_attr.la_mtime;
249         }
250         if (info->fti_attr.la_atime >lvb->lvb_atime || !increase_only) {
251                 CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb atime from disk: "
252                        LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
253                        lvb->lvb_atime, info->fti_attr.la_atime);
254                 lvb->lvb_atime = info->fti_attr.la_atime;
255         }
256         if (info->fti_attr.la_ctime >lvb->lvb_ctime || !increase_only) {
257                 CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb ctime from disk: "
258                        LPU64" -> "LPU64"\n", PFID(&info->fti_fid),
259                        lvb->lvb_ctime, info->fti_attr.la_ctime);
260                 lvb->lvb_ctime = info->fti_attr.la_ctime;
261         }
262         if (info->fti_attr.la_blocks > lvb->lvb_blocks || !increase_only) {
263                 CDEBUG(D_DLMTRACE, "res: "DFID" updating lvb blocks from disk: "
264                        LPU64" -> %llu\n", PFID(&info->fti_fid), lvb->lvb_blocks,
265                        (unsigned long long)info->fti_attr.la_blocks);
266                 lvb->lvb_blocks = info->fti_attr.la_blocks;
267         }
268         unlock_res(res);
269
270 out_obj:
271         ofd_object_put(&env, fo);
272 out_env:
273         lu_env_fini(&env);
274         return rc;
275 }
276
277 static int ofd_lvbo_size(struct ldlm_lock *lock)
278 {
279         if (lock->l_export != NULL && exp_connect_lvb_type(lock->l_export))
280                 return sizeof(struct ost_lvb);
281         else
282                 return sizeof(struct ost_lvb_v1);
283 }
284
285 static int ofd_lvbo_fill(struct ldlm_lock *lock, void *buf, int buflen)
286 {
287         struct ldlm_resource *res = lock->l_resource;
288         int lvb_len;
289
290         /* Former lvbo_init not allocate the "LVB". */
291         if (unlikely(res->lr_lvb_len == 0))
292                 return 0;
293
294         lvb_len = ofd_lvbo_size(lock);
295         LASSERT(lvb_len <= res->lr_lvb_len);
296
297         if (lvb_len > buflen)
298                 lvb_len = buflen;
299
300         lock_res(res);
301         memcpy(buf, res->lr_lvb_data, lvb_len);
302         unlock_res(res);
303
304         return lvb_len;
305 }
306
307 struct ldlm_valblock_ops ofd_lvbo = {
308         .lvbo_init      = ofd_lvbo_init,
309         .lvbo_update    = ofd_lvbo_update,
310         .lvbo_free      = ofd_lvbo_free,
311         .lvbo_size      = ofd_lvbo_size,
312         .lvbo_fill      = ofd_lvbo_fill
313 };