]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c
MFC r337007: MFV r336991, r337001:
[FreeBSD/FreeBSD.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / vdev_file.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2011, 2016 by Delphix. All rights reserved.
24  */
25
26 #include <sys/zfs_context.h>
27 #include <sys/spa.h>
28 #include <sys/vdev_file.h>
29 #include <sys/vdev_impl.h>
30 #include <sys/zio.h>
31 #include <sys/fs/zfs.h>
32 #include <sys/fm/fs/zfs.h>
33 #include <sys/abd.h>
34
35 /*
36  * Virtual device vector for files.
37  */
38
39 static taskq_t *vdev_file_taskq;
40
41 void
42 vdev_file_init(void)
43 {
44         vdev_file_taskq = taskq_create("z_vdev_file", MAX(max_ncpus, 16),
45             minclsyspri, max_ncpus, INT_MAX, 0);
46 }
47
48 void
49 vdev_file_fini(void)
50 {
51         taskq_destroy(vdev_file_taskq);
52 }
53
54 static void
55 vdev_file_hold(vdev_t *vd)
56 {
57         ASSERT(vd->vdev_path != NULL);
58 }
59
60 static void
61 vdev_file_rele(vdev_t *vd)
62 {
63         ASSERT(vd->vdev_path != NULL);
64 }
65
66 static int
67 vdev_file_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize,
68     uint64_t *logical_ashift, uint64_t *physical_ashift)
69 {
70         vdev_file_t *vf;
71         vnode_t *vp;
72         vattr_t vattr;
73         int error;
74
75         /*
76          * We must have a pathname, and it must be absolute.
77          */
78         if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
79                 vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
80                 return (SET_ERROR(EINVAL));
81         }
82
83         /*
84          * Reopen the device if it's not currently open.  Otherwise,
85          * just update the physical size of the device.
86          */
87         if (vd->vdev_tsd != NULL) {
88                 ASSERT(vd->vdev_reopening);
89                 vf = vd->vdev_tsd;
90                 vp = vf->vf_vnode;
91                 goto skip_open;
92         }
93
94         vf = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_file_t), KM_SLEEP);
95
96         /*
97          * We always open the files from the root of the global zone, even if
98          * we're in a local zone.  If the user has gotten to this point, the
99          * administrator has already decided that the pool should be available
100          * to local zone users, so the underlying devices should be as well.
101          */
102         ASSERT(vd->vdev_path != NULL && vd->vdev_path[0] == '/');
103         error = vn_openat(vd->vdev_path + 1, UIO_SYSSPACE,
104             spa_mode(vd->vdev_spa) | FOFFMAX, 0, &vp, 0, 0, rootdir, -1);
105
106         if (error) {
107                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
108                 kmem_free(vd->vdev_tsd, sizeof (vdev_file_t));
109                 vd->vdev_tsd = NULL;
110                 return (error);
111         }
112
113         vf->vf_vnode = vp;
114
115 #ifdef _KERNEL
116         /*
117          * Make sure it's a regular file.
118          */
119         if (vp->v_type != VREG) {
120 #ifdef __FreeBSD__
121                 (void) VOP_CLOSE(vp, spa_mode(vd->vdev_spa), 1, 0, kcred, NULL);
122 #endif
123                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
124 #ifdef __FreeBSD__
125                 kmem_free(vd->vdev_tsd, sizeof (vdev_file_t));
126                 vd->vdev_tsd = NULL;
127 #endif
128                 return (SET_ERROR(ENODEV));
129         }
130 #endif  /* _KERNEL */
131
132 skip_open:
133         /*
134          * Determine the physical size of the file.
135          */
136         vattr.va_mask = AT_SIZE;
137         vn_lock(vp, LK_SHARED | LK_RETRY);
138         error = VOP_GETATTR(vp, &vattr, kcred);
139         VOP_UNLOCK(vp, 0);
140         if (error) {
141                 (void) VOP_CLOSE(vp, spa_mode(vd->vdev_spa), 1, 0, kcred, NULL);
142                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
143                 kmem_free(vd->vdev_tsd, sizeof (vdev_file_t));
144                 vd->vdev_tsd = NULL;
145                 return (error);
146         }
147
148         vd->vdev_notrim = B_TRUE;
149
150         *max_psize = *psize = vattr.va_size;
151         *logical_ashift = SPA_MINBLOCKSHIFT;
152         *physical_ashift = SPA_MINBLOCKSHIFT;
153
154         return (0);
155 }
156
157 static void
158 vdev_file_close(vdev_t *vd)
159 {
160         vdev_file_t *vf = vd->vdev_tsd;
161
162         if (vd->vdev_reopening || vf == NULL)
163                 return;
164
165         if (vf->vf_vnode != NULL) {
166                 (void) VOP_CLOSE(vf->vf_vnode, spa_mode(vd->vdev_spa), 1, 0,
167                     kcred, NULL);
168         }
169
170         vd->vdev_delayed_close = B_FALSE;
171         kmem_free(vf, sizeof (vdev_file_t));
172         vd->vdev_tsd = NULL;
173 }
174
175 /*
176  * Implements the interrupt side for file vdev types. This routine will be
177  * called when the I/O completes allowing us to transfer the I/O to the
178  * interrupt taskqs. For consistency, the code structure mimics disk vdev
179  * types.
180  */
181 static void
182 vdev_file_io_intr(zio_t *zio)
183 {
184         zio_delay_interrupt(zio);
185 }
186
187 static void
188 vdev_file_io_strategy(void *arg)
189 {
190         zio_t *zio = arg;
191         vdev_t *vd = zio->io_vd;
192         vdev_file_t *vf;
193         vnode_t *vp;
194         void *addr;
195         ssize_t resid;
196
197         vf = vd->vdev_tsd;
198         vp = vf->vf_vnode;
199
200         ASSERT(zio->io_type == ZIO_TYPE_READ || zio->io_type == ZIO_TYPE_WRITE);
201         if (zio->io_type == ZIO_TYPE_READ) {
202                 addr = abd_borrow_buf(zio->io_abd, zio->io_size);
203         } else {
204                 addr = abd_borrow_buf_copy(zio->io_abd, zio->io_size);
205         }
206
207         zio->io_error = vn_rdwr(zio->io_type == ZIO_TYPE_READ ?
208             UIO_READ : UIO_WRITE, vp, addr, zio->io_size,
209             zio->io_offset, UIO_SYSSPACE, 0, RLIM64_INFINITY, kcred, &resid);
210
211         if (zio->io_type == ZIO_TYPE_READ) {
212                 abd_return_buf_copy(zio->io_abd, addr, zio->io_size);
213         } else {
214                 abd_return_buf(zio->io_abd, addr, zio->io_size);
215         }
216
217         if (resid != 0 && zio->io_error == 0)
218                 zio->io_error = ENOSPC;
219
220         vdev_file_io_intr(zio);
221 }
222
223 static void
224 vdev_file_io_start(zio_t *zio)
225 {
226         vdev_t *vd = zio->io_vd;
227         vdev_file_t *vf = vd->vdev_tsd;
228
229         if (zio->io_type == ZIO_TYPE_IOCTL) {
230                 /* XXPOLICY */
231                 if (!vdev_readable(vd)) {
232                         zio->io_error = SET_ERROR(ENXIO);
233                         zio_interrupt(zio);
234                         return;
235                 }
236
237                 switch (zio->io_cmd) {
238                 case DKIOCFLUSHWRITECACHE:
239                         zio->io_error = VOP_FSYNC(vf->vf_vnode, FSYNC | FDSYNC,
240                             kcred, NULL);
241                         break;
242                 default:
243                         zio->io_error = SET_ERROR(ENOTSUP);
244                 }
245
246                 zio_execute(zio);
247                 return;
248         }
249
250         ASSERT(zio->io_type == ZIO_TYPE_READ || zio->io_type == ZIO_TYPE_WRITE);
251         zio->io_target_timestamp = zio_handle_io_delay(zio);
252
253         VERIFY3U(taskq_dispatch(vdev_file_taskq, vdev_file_io_strategy, zio,
254             TQ_SLEEP), !=, 0);
255 }
256
257 /* ARGSUSED */
258 static void
259 vdev_file_io_done(zio_t *zio)
260 {
261 }
262
263 vdev_ops_t vdev_file_ops = {
264         vdev_file_open,
265         vdev_file_close,
266         vdev_default_asize,
267         vdev_file_io_start,
268         vdev_file_io_done,
269         NULL,
270         NULL,
271         vdev_file_hold,
272         vdev_file_rele,
273         NULL,
274         vdev_default_xlate,
275         VDEV_TYPE_FILE,         /* name of this vdev type */
276         B_TRUE                  /* leaf vdev */
277 };
278
279 /*
280  * From userland we access disks just like files.
281  */
282 #ifndef _KERNEL
283
284 vdev_ops_t vdev_disk_ops = {
285         vdev_file_open,
286         vdev_file_close,
287         vdev_default_asize,
288         vdev_file_io_start,
289         vdev_file_io_done,
290         NULL,
291         NULL,
292         vdev_file_hold,
293         vdev_file_rele,
294         NULL,
295         vdev_default_xlate,
296         VDEV_TYPE_DISK,         /* name of this vdev type */
297         B_TRUE                  /* leaf vdev */
298 };
299
300 #endif