1 /* $OpenBSD: diskmap.c,v 1.15 2016/04/29 14:40:36 beck Exp $ */ 2 3 /* 4 * Copyright (c) 2009, 2010 Joel Sing <jsing@openbsd.org> 5 * 6 * Permission to use, copy, modify, and distribute this software for any 7 * purpose with or without fee is hereby granted, provided that the above 8 * copyright notice and this permission notice appear in all copies. 9 * 10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 /* 20 * Disk mapper. 21 */ 22 23 #include <sys/param.h> 24 #include <sys/types.h> 25 #include <sys/systm.h> 26 #include <sys/device.h> 27 #include <sys/errno.h> 28 #include <sys/conf.h> 29 #include <sys/dkio.h> 30 #include <sys/disk.h> 31 #include <sys/disklabel.h> 32 #include <sys/file.h> 33 #include <sys/filedesc.h> 34 #include <sys/lock.h> 35 #include <sys/malloc.h> 36 #include <sys/namei.h> 37 #include <sys/proc.h> 38 #include <sys/vnode.h> 39 #include <sys/pledge.h> 40 #include <sys/namei.h> 41 42 int 43 diskmapopen(dev_t dev, int flag, int fmt, struct proc *p) 44 { 45 return 0; 46 } 47 48 int 49 diskmapclose(dev_t dev, int flag, int fmt, struct proc *p) 50 { 51 return 0; 52 } 53 54 int 55 diskmapioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct proc *p) 56 { 57 struct dk_diskmap *dm; 58 struct nameidata ndp; 59 struct filedesc *fdp; 60 struct file *fp = NULL; 61 struct vnode *vp = NULL, *ovp; 62 char *devname; 63 int fd, error = EINVAL; 64 65 if (cmd != DIOCMAP) 66 return EINVAL; 67 68 /* 69 * Map a request for a disk to the correct device. We should be 70 * supplied with either a diskname or a disklabel UID. 71 */ 72 73 dm = (struct dk_diskmap *)addr; 74 fd = dm->fd; 75 devname = malloc(PATH_MAX, M_DEVBUF, M_WAITOK); 76 if (copyinstr(dm->device, devname, PATH_MAX, NULL)) 77 goto invalid; 78 if (disk_map(devname, devname, PATH_MAX, dm->flags) == 0) 79 if (copyoutstr(devname, dm->device, PATH_MAX, NULL)) 80 goto invalid; 81 82 /* Attempt to open actual device. */ 83 if ((error = getvnode(p, fd, &fp)) != 0) 84 goto invalid; 85 86 fdp = p->p_fd; 87 fdplock(fdp); 88 89 NDINIT(&ndp, 0, 0, UIO_SYSSPACE, devname, p); 90 ndp.ni_pledge = PLEDGE_RPATH; 91 if ((error = vn_open(&ndp, fp->f_flag, 0)) != 0) 92 goto bad; 93 94 vp = ndp.ni_vp; 95 96 /* Close the original vnode. */ 97 ovp = (struct vnode *)fp->f_data; 98 if (fp->f_flag & FWRITE) 99 ovp->v_writecount--; 100 101 if (ovp->v_writecount == 0) { 102 vn_lock(ovp, LK_EXCLUSIVE | LK_RETRY, p); 103 VOP_CLOSE(ovp, fp->f_flag, p->p_ucred, p); 104 vput(ovp); 105 } 106 107 fp->f_type = DTYPE_VNODE; 108 fp->f_ops = &vnops; 109 fp->f_data = (caddr_t)vp; 110 fp->f_offset = 0; 111 fp->f_rxfer = 0; 112 fp->f_wxfer = 0; 113 fp->f_seek = 0; 114 fp->f_rbytes = 0; 115 fp->f_wbytes = 0; 116 117 VOP_UNLOCK(vp, p); 118 119 FRELE(fp, p); 120 fdpunlock(fdp); 121 free(devname, M_DEVBUF, PATH_MAX); 122 123 return 0; 124 125 bad: 126 if (vp) 127 vput(vp); 128 if (fp) 129 FRELE(fp, p); 130 131 fdpunlock(fdp); 132 133 invalid: 134 free(devname, M_DEVBUF, PATH_MAX); 135 136 return (error); 137 } 138 139 int 140 diskmapread(dev_t dev, struct uio *uio, int flag) 141 { 142 return ENXIO; 143 } 144 145 int 146 diskmapwrite(dev_t dev, struct uio *uio, int flag) 147 { 148 return ENXIO; 149 } 150