Whamcloud - gitweb
LU-6245 libcfs: remove prim wrappers for libcfs
[fs/lustre-release.git] / lustre / llite / vvp_object.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) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2014, 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  * cl_object implementation for VVP layer.
37  *
38  *   Author: Nikita Danilov <nikita.danilov@sun.com>
39  */
40
41 #define DEBUG_SUBSYSTEM S_LLITE
42
43 #include <linux/user_namespace.h>
44 #ifdef HAVE_UIDGID_HEADER
45 # include <linux/uidgid.h>
46 #endif
47 #include <libcfs/libcfs.h>
48
49 #include <obd.h>
50 #include "llite_internal.h"
51 #include "vvp_internal.h"
52
53 /*****************************************************************************
54  *
55  * Object operations.
56  *
57  */
58
59 int vvp_object_invariant(const struct cl_object *obj)
60 {
61         struct inode            *inode  = vvp_object_inode(obj);
62         struct ll_inode_info    *lli    = ll_i2info(inode);
63
64         return (S_ISREG(inode->i_mode) || inode->i_mode == 0) &&
65                lli->lli_clob == obj;
66 }
67
68 static int vvp_object_print(const struct lu_env *env, void *cookie,
69                             lu_printer_t p, const struct lu_object *o)
70 {
71         struct vvp_object    *obj   = lu2vvp(o);
72         struct inode         *inode = obj->vob_inode;
73         struct ll_inode_info *lli;
74
75         (*p)(env, cookie, "(%d %d) inode: %p ",
76              atomic_read(&obj->vob_transient_pages),
77              atomic_read(&obj->vob_mmap_cnt),
78              inode);
79         if (inode) {
80                 lli = ll_i2info(inode);
81                 (*p)(env, cookie, "%lu/%u %o %u %d %p "DFID,
82                      inode->i_ino, inode->i_generation, inode->i_mode,
83                      inode->i_nlink, atomic_read(&inode->i_count),
84                      lli->lli_clob, PFID(&lli->lli_fid));
85         }
86         return 0;
87 }
88
89 static int vvp_attr_get(const struct lu_env *env, struct cl_object *obj,
90                         struct cl_attr *attr)
91 {
92         struct inode *inode = vvp_object_inode(obj);
93
94         /*
95          * lov overwrites most of these fields in
96          * lov_attr_get()->...lov_merge_lvb_kms(), except when inode
97          * attributes are newer.
98          */
99
100         attr->cat_size = i_size_read(inode);
101         attr->cat_mtime = LTIME_S(inode->i_mtime);
102         attr->cat_atime = LTIME_S(inode->i_atime);
103         attr->cat_ctime = LTIME_S(inode->i_ctime);
104         attr->cat_blocks = inode->i_blocks;
105         attr->cat_uid = from_kuid(&init_user_ns, inode->i_uid);
106         attr->cat_gid = from_kgid(&init_user_ns, inode->i_gid);
107         /* KMS is not known by this layer */
108         return 0; /* layers below have to fill in the rest */
109 }
110
111 static int vvp_attr_update(const struct lu_env *env, struct cl_object *obj,
112                            const struct cl_attr *attr, unsigned valid)
113 {
114         struct inode *inode = vvp_object_inode(obj);
115
116         if (valid & CAT_UID)
117                 inode->i_uid = make_kuid(&init_user_ns, attr->cat_uid);
118         if (valid & CAT_GID)
119                 inode->i_gid = make_kgid(&init_user_ns, attr->cat_gid);
120         if (valid & CAT_ATIME)
121                 LTIME_S(inode->i_atime) = attr->cat_atime;
122         if (valid & CAT_MTIME)
123                 LTIME_S(inode->i_mtime) = attr->cat_mtime;
124         if (valid & CAT_CTIME)
125                 LTIME_S(inode->i_ctime) = attr->cat_ctime;
126         if (0 && valid & CAT_SIZE)
127                 i_size_write(inode, attr->cat_size);
128         /* not currently necessary */
129         if (0 && valid & (CAT_UID|CAT_GID|CAT_SIZE))
130                 mark_inode_dirty(inode);
131         return 0;
132 }
133
134 static int vvp_conf_set(const struct lu_env *env, struct cl_object *obj,
135                         const struct cl_object_conf *conf)
136 {
137         struct ll_inode_info *lli = ll_i2info(conf->coc_inode);
138
139         if (conf->coc_opc == OBJECT_CONF_INVALIDATE) {
140                 CDEBUG(D_VFSTRACE, DFID ": losing layout lock\n",
141                        PFID(&lli->lli_fid));
142
143                 ll_layout_version_set(lli, CL_LAYOUT_GEN_NONE);
144
145                 /* Clean up page mmap for this inode.
146                  * The reason for us to do this is that if the page has
147                  * already been installed into memory space, the process
148                  * can access it without interacting with lustre, so this
149                  * page may be stale due to layout change, and the process
150                  * will never be notified.
151                  * This operation is expensive but mmap processes have to pay
152                  * a price themselves. */
153                 unmap_mapping_range(conf->coc_inode->i_mapping,
154                                     0, OBD_OBJECT_EOF, 0);
155         }
156         return 0;
157 }
158
159 static int vvp_prune(const struct lu_env *env, struct cl_object *obj)
160 {
161         struct inode *inode = vvp_object_inode(obj);
162         int rc;
163         ENTRY;
164
165         rc = cl_sync_file_range(inode, 0, OBD_OBJECT_EOF, CL_FSYNC_LOCAL, 1);
166         if (rc < 0) {
167                 CDEBUG(D_VFSTRACE, DFID ": writeback failed: %d\n",
168                        PFID(lu_object_fid(&obj->co_lu)), rc);
169                 RETURN(rc);
170         }
171
172         truncate_inode_pages(inode->i_mapping, 0);
173         RETURN(0);
174 }
175
176 static int vvp_object_glimpse(const struct lu_env *env,
177                               const struct cl_object *obj, struct ost_lvb *lvb)
178 {
179         struct inode *inode = vvp_object_inode(obj);
180
181         ENTRY;
182         lvb->lvb_mtime = LTIME_S(inode->i_mtime);
183         lvb->lvb_atime = LTIME_S(inode->i_atime);
184         lvb->lvb_ctime = LTIME_S(inode->i_ctime);
185
186         /*
187          * LU-417: Add dirty pages block count lest i_blocks reports 0, some
188          * "cp" or "tar" on remote node may think it's a completely sparse file
189          * and skip it.
190          */
191         if (lvb->lvb_size > 0 && lvb->lvb_blocks == 0)
192                 lvb->lvb_blocks = dirty_cnt(inode);
193
194         RETURN(0);
195 }
196
197 static const struct cl_object_operations vvp_ops = {
198         .coo_page_init    = vvp_page_init,
199         .coo_lock_init    = vvp_lock_init,
200         .coo_io_init      = vvp_io_init,
201         .coo_attr_get     = vvp_attr_get,
202         .coo_attr_update  = vvp_attr_update,
203         .coo_conf_set     = vvp_conf_set,
204         .coo_prune        = vvp_prune,
205         .coo_glimpse      = vvp_object_glimpse
206 };
207
208 static int vvp_object_init0(const struct lu_env *env,
209                             struct vvp_object *vob,
210                             const struct cl_object_conf *conf)
211 {
212         vob->vob_inode = conf->coc_inode;
213         atomic_set(&vob->vob_transient_pages, 0);
214         cl_object_page_init(&vob->vob_cl, sizeof(struct vvp_page));
215         return 0;
216 }
217
218 static int vvp_object_init(const struct lu_env *env, struct lu_object *obj,
219                            const struct lu_object_conf *conf)
220 {
221         struct vvp_device *dev = lu2vvp_dev(obj->lo_dev);
222         struct vvp_object *vob = lu2vvp(obj);
223         struct lu_object  *below;
224         struct lu_device  *under;
225         int result;
226
227         under = &dev->vdv_next->cd_lu_dev;
228         below = under->ld_ops->ldo_object_alloc(env, obj->lo_header, under);
229         if (below != NULL) {
230                 const struct cl_object_conf *cconf;
231
232                 cconf = lu2cl_conf(conf);
233                 lu_object_add(obj, below);
234                 result = vvp_object_init0(env, vob, cconf);
235         } else
236                 result = -ENOMEM;
237
238         return result;
239 }
240
241 static void vvp_object_free(const struct lu_env *env, struct lu_object *obj)
242 {
243         struct vvp_object *vob = lu2vvp(obj);
244
245         lu_object_fini(obj);
246         lu_object_header_fini(obj->lo_header);
247         OBD_SLAB_FREE_PTR(vob, vvp_object_kmem);
248 }
249
250 static const struct lu_object_operations vvp_lu_obj_ops = {
251         .loo_object_init        = vvp_object_init,
252         .loo_object_free        = vvp_object_free,
253         .loo_object_print       = vvp_object_print,
254 };
255
256 struct vvp_object *cl_inode2vvp(struct inode *inode)
257 {
258         struct ll_inode_info *lli = ll_i2info(inode);
259         struct cl_object     *obj = lli->lli_clob;
260         struct lu_object     *lu;
261
262         LASSERT(obj != NULL);
263         lu = lu_object_locate(obj->co_lu.lo_header, &vvp_device_type);
264         LASSERT(lu != NULL);
265
266         return lu2vvp(lu);
267 }
268
269 struct lu_object *vvp_object_alloc(const struct lu_env *env,
270                                    const struct lu_object_header *unused,
271                                    struct lu_device *dev)
272 {
273         struct vvp_object *vob;
274         struct lu_object  *obj;
275
276         OBD_SLAB_ALLOC_PTR_GFP(vob, vvp_object_kmem, GFP_NOFS);
277         if (vob != NULL) {
278                 struct cl_object_header *hdr;
279
280                 obj = &vob->vob_cl.co_lu;
281                 hdr = &vob->vob_header;
282                 cl_object_header_init(hdr);
283                 hdr->coh_page_bufsize = cfs_size_round(sizeof(struct cl_page));
284
285                 lu_object_init(obj, &hdr->coh_lu, dev);
286                 lu_object_add_top(&hdr->coh_lu, obj);
287
288                 vob->vob_cl.co_ops = &vvp_ops;
289                 obj->lo_ops = &vvp_lu_obj_ops;
290         } else
291                 obj = NULL;
292         return obj;
293 }