]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c
MFV r319950: 5220 L2ARC does not support devices that do not provide 512B access
[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, 2015 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 void
40 vdev_file_hold(vdev_t *vd)
41 {
42         ASSERT(vd->vdev_path != NULL);
43 }
44
45 static void
46 vdev_file_rele(vdev_t *vd)
47 {
48         ASSERT(vd->vdev_path != NULL);
49 }
50
51 static int
52 vdev_file_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize,
53     uint64_t *logical_ashift, uint64_t *physical_ashift)
54 {
55         vdev_file_t *vf;
56         vnode_t *vp;
57         vattr_t vattr;
58         int error;
59
60         /*
61          * We must have a pathname, and it must be absolute.
62          */
63         if (vd->vdev_path == NULL || vd->vdev_path[0] != '/') {
64                 vd->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
65                 return (SET_ERROR(EINVAL));
66         }
67
68         /*
69          * Reopen the device if it's not currently open.  Otherwise,
70          * just update the physical size of the device.
71          */
72         if (vd->vdev_tsd != NULL) {
73                 ASSERT(vd->vdev_reopening);
74                 vf = vd->vdev_tsd;
75                 vp = vf->vf_vnode;
76                 goto skip_open;
77         }
78
79         vf = vd->vdev_tsd = kmem_zalloc(sizeof (vdev_file_t), KM_SLEEP);
80
81         /*
82          * We always open the files from the root of the global zone, even if
83          * we're in a local zone.  If the user has gotten to this point, the
84          * administrator has already decided that the pool should be available
85          * to local zone users, so the underlying devices should be as well.
86          */
87         ASSERT(vd->vdev_path != NULL && vd->vdev_path[0] == '/');
88         error = vn_openat(vd->vdev_path + 1, UIO_SYSSPACE,
89             spa_mode(vd->vdev_spa) | FOFFMAX, 0, &vp, 0, 0, rootdir, -1);
90
91         if (error) {
92                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
93                 kmem_free(vd->vdev_tsd, sizeof (vdev_file_t));
94                 vd->vdev_tsd = NULL;
95                 return (error);
96         }
97
98         vf->vf_vnode = vp;
99
100 #ifdef _KERNEL
101         /*
102          * Make sure it's a regular file.
103          */
104         if (vp->v_type != VREG) {
105 #ifdef __FreeBSD__
106                 (void) VOP_CLOSE(vp, spa_mode(vd->vdev_spa), 1, 0, kcred, NULL);
107 #endif
108                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
109 #ifdef __FreeBSD__
110                 kmem_free(vd->vdev_tsd, sizeof (vdev_file_t));
111                 vd->vdev_tsd = NULL;
112 #endif
113                 return (SET_ERROR(ENODEV));
114         }
115 #endif  /* _KERNEL */
116
117 skip_open:
118         /*
119          * Determine the physical size of the file.
120          */
121         vattr.va_mask = AT_SIZE;
122         vn_lock(vp, LK_SHARED | LK_RETRY);
123         error = VOP_GETATTR(vp, &vattr, kcred);
124         VOP_UNLOCK(vp, 0);
125         if (error) {
126                 (void) VOP_CLOSE(vp, spa_mode(vd->vdev_spa), 1, 0, kcred, NULL);
127                 vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
128                 kmem_free(vd->vdev_tsd, sizeof (vdev_file_t));
129                 vd->vdev_tsd = NULL;
130                 return (error);
131         }
132
133         vd->vdev_notrim = B_TRUE;
134
135         *max_psize = *psize = vattr.va_size;
136         *logical_ashift = SPA_MINBLOCKSHIFT;
137         *physical_ashift = SPA_MINBLOCKSHIFT;
138
139         return (0);
140 }
141
142 static void
143 vdev_file_close(vdev_t *vd)
144 {
145         vdev_file_t *vf = vd->vdev_tsd;
146
147         if (vd->vdev_reopening || vf == NULL)
148                 return;
149
150         if (vf->vf_vnode != NULL) {
151                 (void) VOP_CLOSE(vf->vf_vnode, spa_mode(vd->vdev_spa), 1, 0,
152                     kcred, NULL);
153         }
154
155         vd->vdev_delayed_close = B_FALSE;
156         kmem_free(vf, sizeof (vdev_file_t));
157         vd->vdev_tsd = NULL;
158 }
159
160 static void
161 vdev_file_io_start(zio_t *zio)
162 {
163         vdev_t *vd = zio->io_vd;
164         vdev_file_t *vf;
165         vnode_t *vp;
166         void *addr;
167         ssize_t resid;
168
169         if (!vdev_readable(vd)) {
170                 zio->io_error = SET_ERROR(ENXIO);
171                 zio_interrupt(zio);
172                 return;
173         }
174
175         vf = vd->vdev_tsd;
176         vp = vf->vf_vnode;
177
178         if (zio->io_type == ZIO_TYPE_IOCTL) {
179                 switch (zio->io_cmd) {
180                 case DKIOCFLUSHWRITECACHE:
181                         zio->io_error = VOP_FSYNC(vp, FSYNC | FDSYNC,
182                             kcred, NULL);
183                         break;
184                 default:
185                         zio->io_error = SET_ERROR(ENOTSUP);
186                 }
187
188                 zio_execute(zio);
189                 return;
190         }
191
192         ASSERT(zio->io_type == ZIO_TYPE_READ || zio->io_type == ZIO_TYPE_WRITE);
193         zio->io_target_timestamp = zio_handle_io_delay(zio);
194
195         if (zio->io_type == ZIO_TYPE_READ) {
196                 addr = abd_borrow_buf(zio->io_abd, zio->io_size);
197         } else {
198                 addr = abd_borrow_buf_copy(zio->io_abd, zio->io_size);
199         }
200
201         zio->io_error = vn_rdwr(zio->io_type == ZIO_TYPE_READ ?
202             UIO_READ : UIO_WRITE, vp, addr, zio->io_size,
203             zio->io_offset, UIO_SYSSPACE, 0, RLIM64_INFINITY, kcred, &resid);
204
205         if (zio->io_type == ZIO_TYPE_READ) {
206                 abd_return_buf_copy(zio->io_abd, addr, zio->io_size);
207         } else {
208                 abd_return_buf(zio->io_abd, addr, zio->io_size);
209         }
210
211         if (resid != 0 && zio->io_error == 0)
212                 zio->io_error = ENOSPC;
213
214         zio_delay_interrupt(zio);
215
216 #ifdef illumos
217         VERIFY3U(taskq_dispatch(system_taskq, vdev_file_io_strategy, bp,
218             TQ_SLEEP), !=, 0);
219 #endif
220 }
221
222 /* ARGSUSED */
223 static void
224 vdev_file_io_done(zio_t *zio)
225 {
226 }
227
228 vdev_ops_t vdev_file_ops = {
229         vdev_file_open,
230         vdev_file_close,
231         vdev_default_asize,
232         vdev_file_io_start,
233         vdev_file_io_done,
234         NULL,
235         vdev_file_hold,
236         vdev_file_rele,
237         VDEV_TYPE_FILE,         /* name of this vdev type */
238         B_TRUE                  /* leaf vdev */
239 };
240
241 /*
242  * From userland we access disks just like files.
243  */
244 #ifndef _KERNEL
245
246 vdev_ops_t vdev_disk_ops = {
247         vdev_file_open,
248         vdev_file_close,
249         vdev_default_asize,
250         vdev_file_io_start,
251         vdev_file_io_done,
252         NULL,
253         vdev_file_hold,
254         vdev_file_rele,
255         VDEV_TYPE_DISK,         /* name of this vdev type */
256         B_TRUE                  /* leaf vdev */
257 };
258
259 #endif