Whamcloud - gitweb
Reverting the changes
[fs/lustre-release.git] / lustre / lclient / glimpse.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * glimpse code shared between vvp and liblustre (and other Lustre clients in
37  * the future).
38  *
39  *   Author: Nikita Danilov <nikita.danilov@sun.com>
40  *   Author: Oleg Drokin <oleg.drokin@sun.com>
41  */
42
43 #include <libcfs/libcfs.h>
44 #include <obd_class.h>
45 #include <obd_support.h>
46 #include <obd.h>
47
48 #ifdef __KERNEL__
49 # include <lustre_dlm.h>
50 # include <lustre_lite.h>
51 # include <lustre_mdc.h>
52 # include <linux/pagemap.h>
53 # include <linux/file.h>
54 #else
55 #include <stdlib.h>
56 #include <string.h>
57 #include <assert.h>
58 #include <time.h>
59 #include <sys/types.h>
60 #include <sys/stat.h>
61 #include <sys/queue.h>
62 #include <fcntl.h>
63 # include <sysio.h>
64 # ifdef HAVE_XTIO_H
65 #  include <xtio.h>
66 # endif
67 # include <fs.h>
68 # include <mount.h>
69 # include <inode.h>
70 # ifdef HAVE_FILE_H
71 #  include <file.h>
72 # endif
73 # include <liblustre.h>
74 #endif
75
76 #include "cl_object.h"
77 #include "lclient.h"
78 #ifdef __KERNEL__
79 # include "../llite/llite_internal.h"
80 #else
81 # include "../liblustre/llite_lib.h"
82 #endif
83
84 static const struct cl_lock_descr whole_file = {
85         .cld_start = 0,
86         .cld_end   = CL_PAGE_EOF,
87         .cld_mode  = CLM_READ
88 };
89
90 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
91                     struct inode *inode, struct cl_object *clob)
92 {
93         struct cl_lock_descr *descr = &ccc_env_info(env)->cti_descr;
94         struct cl_inode_info *lli   = cl_i2info(inode);
95         const struct lu_fid  *fid   = lu_object_fid(&clob->co_lu);
96         struct ccc_io        *cio   = ccc_env_io(env);
97         struct cl_lock       *lock;
98         int result;
99
100         ENTRY;
101         result = 0;
102         if (!(lli->lli_flags & LLIF_MDS_SIZE_LOCK)) {
103                 CDEBUG(D_DLMTRACE, "Glimpsing inode "DFID"\n", PFID(fid));
104                 if (lli->lli_smd) {
105                         /* NOTE: this looks like DLM lock request, but it may
106                          *       not be one. Due to CEF_ASYNC flag (translated
107                          *       to LDLM_FL_HAS_INTENT by osc), this is
108                          *       glimpse request, that won't revoke any
109                          *       conflicting DLM locks held. Instead,
110                          *       ll_glimpse_callback() will be called on each
111                          *       client holding a DLM lock against this file,
112                          *       and resulting size will be returned for each
113                          *       stripe. DLM lock on [0, EOF] is acquired only
114                          *       if there were no conflicting locks. If there
115                          *       were conflicting locks, enqueuing or waiting
116                          *       fails with -ENAVAIL, but valid inode
117                          *       attributes are returned anyway. */
118                         *descr = whole_file;
119                         descr->cld_obj   = clob;
120                         descr->cld_mode  = CLM_PHANTOM;
121                         /* The lockreq for glimpse should be mandatory,
122                          * otherwise, osc may decide to use lockless */
123                         io->ci_lockreq = CILR_MANDATORY;
124                         cio->cui_glimpse = 1;
125                         lock = cl_lock_request(env, io, descr, CEF_ASYNC,
126                                                "glimpse", cfs_current());
127                         cio->cui_glimpse = 0;
128                         if (!IS_ERR(lock)) {
129                                 result = cl_wait(env, lock);
130                                 if (result == 0) {
131                                         cl_merge_lvb(inode);
132                                         cl_unuse(env, lock);
133                                 }
134                                 cl_lock_release(env, lock,
135                                                 "glimpse", cfs_current());
136                         } else
137                                 result = PTR_ERR(lock);
138                 } else
139                         CDEBUG(D_DLMTRACE, "No objects for inode\n");
140         }
141
142         RETURN(result);
143 }
144
145 static int cl_io_get(struct inode *inode, struct lu_env **envout,
146                      struct cl_io **ioout, int *refcheck)
147 {
148         struct ccc_thread_info *info;
149         struct lu_env          *env;
150         struct cl_io           *io;
151         struct cl_inode_info   *lli = cl_i2info(inode);
152         struct cl_object       *clob = lli->lli_clob;
153         int result;
154
155         if (S_ISREG(cl_inode_mode(inode))) {
156                 env = cl_env_get(refcheck);
157                 if (!IS_ERR(env)) {
158                         info = ccc_env_info(env);
159                         io = &info->cti_io;
160                         io->ci_obj = clob;
161                         *envout = env;
162                         *ioout  = io;
163                         result = +1;
164                 } else
165                         result = PTR_ERR(env);
166         } else
167                 result = 0;
168         return result;
169 }
170
171 int cl_glimpse_size(struct inode *inode)
172 {
173         /*
174          * We don't need ast_flags argument to cl_glimpse_size(), because
175          * osc_lock_enqueue() takes care of the possible deadlock that said
176          * argument was introduced to avoid.
177          */
178         /*
179          * XXX but note that ll_file_seek() passes LDLM_FL_BLOCK_NOWAIT to
180          * cl_glimpse_size(), which doesn't make sense: glimpse locks are not
181          * blocking anyway.
182          */
183         struct lu_env          *env;
184         struct cl_io           *io;
185         int                     result;
186         int                     refcheck;
187
188         ENTRY;
189
190         result = cl_io_get(inode, &env, &io, &refcheck);
191         if (result > 0) {
192                 result = cl_io_init(env, io, CIT_MISC, io->ci_obj);
193                 if (result > 0)
194                         /*
195                          * nothing to do for this io. This currently happens
196                          * when stripe sub-object's are not yet created.
197                          */
198                         result = io->ci_result;
199                 else if (result == 0)
200                         result = cl_glimpse_lock(env, io, inode, io->ci_obj);
201                 cl_io_fini(env, io);
202                 cl_env_put(env, &refcheck);
203         }
204         RETURN(result);
205 }
206
207 int cl_local_size(struct inode *inode)
208 {
209         struct lu_env           *env;
210         struct cl_io            *io;
211         struct ccc_thread_info  *cti;
212         struct cl_object        *clob;
213         struct cl_lock_descr    *descr;
214         struct cl_lock          *lock;
215         int                      result;
216         int                      refcheck;
217
218         ENTRY;
219
220         /*
221          * XXX layering violation.
222          */
223         if (cl_i2info(inode)->lli_smd->lsm_stripe_count == 0)
224                 RETURN(0);
225
226         result = cl_io_get(inode, &env, &io, &refcheck);
227         if (result <= 0)
228                 RETURN(result);
229
230         clob = io->ci_obj;
231         result = cl_io_init(env, io, CIT_MISC, clob);
232         if (result > 0)
233                 result = io->ci_result;
234         else if (result == 0) {
235                 cti = ccc_env_info(env);
236                 descr = &cti->cti_descr;
237
238                 *descr = whole_file;
239                 descr->cld_obj = clob;
240                 lock = cl_lock_peek(env, io, descr, "localsize", cfs_current());
241                 if (lock != NULL) {
242                         cl_merge_lvb(inode);
243                         cl_unuse(env, lock);
244                         cl_lock_release(env, lock, "localsize", cfs_current());
245                         result = 0;
246                 } else
247                         result = -ENODATA;
248         }
249         cl_io_fini(env, io);
250         cl_env_put(env, &refcheck);
251         RETURN(result);
252 }
253