Whamcloud - gitweb
LU-14989 sec: keep encryption context in xattr cache
[fs/lustre-release.git] / lustre / llite / glimpse.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * glimpse code used by vvp (and other Lustre clients in the future).
32  *
33  *   Author: Nikita Danilov <nikita.danilov@sun.com>
34  *   Author: Oleg Drokin <oleg.drokin@sun.com>
35  */
36
37 #include <libcfs/libcfs.h>
38 #include <obd_class.h>
39 #include <obd_support.h>
40 #include <obd.h>
41
42 #include <lustre_dlm.h>
43 #include <lustre_mdc.h>
44 #include <linux/pagemap.h>
45 #include <linux/file.h>
46
47 #include "cl_object.h"
48 #include "llite_internal.h"
49 #include "vvp_internal.h"
50
51 static const struct cl_lock_descr whole_file = {
52         .cld_start = 0,
53         .cld_end   = CL_PAGE_EOF,
54         .cld_mode  = CLM_READ
55 };
56
57 /*
58  * Check whether file has possible unwritten pages.
59  *
60  * \retval 1    file is mmap-ed or has dirty pages
61  *         0    otherwise
62  */
63 blkcnt_t dirty_cnt(struct inode *inode)
64 {
65         blkcnt_t cnt = 0;
66         struct vvp_object *vob = cl_inode2vvp(inode);
67         void *results[1];
68
69         if (inode->i_mapping != NULL)
70                 cnt += radix_tree_gang_lookup_tag(&inode->i_mapping->page_tree,
71                                                   results, 0, 1,
72                                                   PAGECACHE_TAG_DIRTY);
73         if (cnt == 0 && atomic_read(&vob->vob_mmap_cnt) > 0)
74                 cnt = 1;
75
76         return (cnt > 0) ? 1 : 0;
77 }
78
79 int cl_glimpse_lock(const struct lu_env *env, struct cl_io *io,
80                     struct inode *inode, struct cl_object *clob, int agl)
81 {
82         const struct lu_fid *fid = lu_object_fid(&clob->co_lu);
83         struct cl_lock *lock = vvp_env_lock(env);
84         struct cl_lock_descr *descr = &lock->cll_descr;
85         int result;
86
87         ENTRY;
88         result = 0;
89
90         CDEBUG(D_DLMTRACE, "Glimpsing inode "DFID"\n", PFID(fid));
91
92         /* NOTE: this looks like DLM lock request, but it may
93          *       not be one. Due to CEF_GLIMPSE flag (translated
94          *       to LDLM_FL_HAS_INTENT by osc), this is
95          *       glimpse request, that won't revoke any
96          *       conflicting DLM locks held. Instead,
97          *       ll_glimpse_callback() will be called on each
98          *       client holding a DLM lock against this file,
99          *       and resulting size will be returned for each
100          *       stripe. DLM lock on [0, EOF] is acquired only
101          *       if there were no conflicting locks. If there
102          *       were conflicting locks, enqueuing or waiting
103          *       fails with -ENAVAIL, but valid inode
104          *       attributes are returned anyway. */
105         *descr = whole_file;
106         descr->cld_obj = clob;
107         descr->cld_mode = CLM_READ;
108         descr->cld_enq_flags = CEF_GLIMPSE | CEF_MUST;
109         if (agl)
110                 descr->cld_enq_flags |= CEF_SPECULATIVE | CEF_NONBLOCK;
111         /*
112          * CEF_MUST protects glimpse lock from conversion into
113          * a lockless mode.
114          */
115         result = cl_lock_request(env, io, lock);
116         if (result < 0)
117                 RETURN(result);
118
119         if (!agl) {
120                 ll_merge_attr(env, inode);
121                 if (i_size_read(inode) > 0 && inode->i_blocks == 0) {
122                         /*
123                          * LU-417: Add dirty pages block count
124                          * lest i_blocks reports 0, some "cp" or
125                          * "tar" may think it's a completely
126                          * sparse file and skip it.
127                          */
128                         inode->i_blocks = dirty_cnt(inode);
129                 }
130         }
131
132         cl_lock_release(env, lock);
133
134         RETURN(result);
135 }
136
137 /**
138  * Get an IO environment for special operations such as glimpse locks and
139  * manually requested locks (ladvise lockahead)
140  *
141  * \param[in]  inode    inode the operation is being performed on
142  * \param[out] envout   thread specific execution environment
143  * \param[out] ioout    client io description
144  * \param[out] refcheck reference check
145  *
146  * \retval 1            on success
147  * \retval 0            not a regular file, cannot get environment
148  * \retval negative     negative errno on error
149  */
150 int cl_io_get(struct inode *inode, struct lu_env **envout,
151               struct cl_io **ioout, u16 *refcheck)
152 {
153         struct lu_env *env;
154         struct cl_io *io;
155         struct ll_inode_info *lli = ll_i2info(inode);
156         struct cl_object *clob = lli->lli_clob;
157         int result;
158
159         if (S_ISREG(inode->i_mode)) {
160                 env = cl_env_get(refcheck);
161                 if (!IS_ERR(env)) {
162                         io = vvp_env_thread_io(env);
163                         io->ci_obj = clob;
164                         *envout = env;
165                         *ioout  = io;
166                         result = 1;
167                 } else {
168                         result = PTR_ERR(env);
169                 }
170         } else {
171                 result = 0;
172         }
173         return result;
174 }
175
176 int cl_glimpse_size0(struct inode *inode, int agl)
177 {
178         /*
179          * We don't need ast_flags argument to cl_glimpse_size(), because
180          * osc_lock_enqueue() takes care of the possible deadlock that said
181          * argument was introduced to avoid.
182          */
183         /*
184          * XXX but note that ll_file_seek() passes LDLM_FL_BLOCK_NOWAIT to
185          * cl_glimpse_size(), which doesn't make sense: glimpse locks are not
186          * blocking anyway.
187          */
188         struct lu_env *env = NULL;
189         struct cl_io *io  = NULL;
190         u16 refcheck;
191         int retried = 0;
192         int result;
193
194         ENTRY;
195
196         result = cl_io_get(inode, &env, &io, &refcheck);
197         if (result <= 0)
198                 RETURN(result);
199
200         do {
201                 io->ci_ndelay_tried = retried++;
202                 io->ci_ndelay = io->ci_verify_layout = 1;
203                 result = cl_io_init(env, io, CIT_GLIMPSE, io->ci_obj);
204                 if (result > 0) {
205                         /*
206                          * nothing to do for this io. This currently happens
207                          * when stripe sub-object's are not yet created.
208                          */
209                         result = io->ci_result;
210                 } else if (result == 0) {
211                         result = cl_glimpse_lock(env, io, inode, io->ci_obj,
212                                                  agl);
213                         if (!agl && result == -EAGAIN)
214                                 io->ci_need_restart = 1;
215                 }
216
217                 OBD_FAIL_TIMEOUT(OBD_FAIL_GLIMPSE_DELAY, cfs_fail_val ?: 4);
218                 cl_io_fini(env, io);
219         } while (unlikely(io->ci_need_restart));
220
221         cl_env_put(env, &refcheck);
222         RETURN(result);
223 }