1 /* $NetBSD: dm_pdev.c,v 1.20 2019/12/13 15:49:22 tkusumi Exp $ */ 2 3 /* 4 * Copyright (c) 2008 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Adam Hamsik. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 */ 31 #include <sys/cdefs.h> 32 __KERNEL_RCSID(0, "$NetBSD: dm_pdev.c,v 1.20 2019/12/13 15:49:22 tkusumi Exp $"); 33 34 #include <sys/types.h> 35 #include <sys/param.h> 36 37 #include <sys/disk.h> 38 #include <sys/fcntl.h> 39 #include <sys/kmem.h> 40 #include <sys/namei.h> 41 42 #include <dev/dkvar.h> 43 44 #include "dm.h" 45 46 static SLIST_HEAD(dm_pdevs, dm_pdev) dm_pdev_list; 47 48 static kmutex_t dm_pdev_mutex; 49 50 static dm_pdev_t *dm_pdev_alloc(const char *); 51 static int dm_pdev_rem(dm_pdev_t *); 52 static dm_pdev_t *dm_pdev_lookup_name(const char *); 53 54 /* 55 * Find used pdev with name == dm_pdev_name. 56 */ 57 dm_pdev_t * 58 dm_pdev_lookup_name(const char *dm_pdev_name) 59 { 60 dm_pdev_t *dm_pdev; 61 size_t dlen; 62 size_t slen; 63 64 KASSERT(dm_pdev_name != NULL); 65 66 slen = strlen(dm_pdev_name); 67 68 SLIST_FOREACH(dm_pdev, &dm_pdev_list, next_pdev) { 69 dlen = strlen(dm_pdev->name); 70 71 if (slen != dlen) 72 continue; 73 74 if (strncmp(dm_pdev_name, dm_pdev->name, slen) == 0) 75 return dm_pdev; 76 } 77 78 return NULL; 79 } 80 81 /* 82 * Create entry for device with name dev_name and open vnode for it. 83 * If entry already exists in global SLIST I will only increment 84 * reference counter. 85 */ 86 dm_pdev_t * 87 dm_pdev_insert(const char *dev_name) 88 { 89 struct pathbuf *dev_pb; 90 dm_pdev_t *dmp; 91 int error; 92 93 KASSERT(dev_name != NULL); 94 95 mutex_enter(&dm_pdev_mutex); 96 dmp = dm_pdev_lookup_name(dev_name); 97 98 if (dmp != NULL) { 99 dmp->ref_cnt++; 100 aprint_debug("%s: pdev %s already in tree\n", 101 __func__, dev_name); 102 mutex_exit(&dm_pdev_mutex); 103 return dmp; 104 } 105 106 if ((dmp = dm_pdev_alloc(dev_name)) == NULL) { 107 mutex_exit(&dm_pdev_mutex); 108 return NULL; 109 } 110 111 dev_pb = pathbuf_create(dev_name); 112 if (dev_pb == NULL) { 113 aprint_debug("%s: pathbuf_create on device: %s failed!\n", 114 __func__, dev_name); 115 mutex_exit(&dm_pdev_mutex); 116 kmem_free(dmp, sizeof(dm_pdev_t)); 117 return NULL; 118 } 119 error = vn_bdev_openpath(dev_pb, &dmp->pdev_vnode, curlwp); 120 pathbuf_destroy(dev_pb); 121 if (error) { 122 aprint_debug("%s: lookup on device: %s (error %d)\n", 123 __func__, dev_name, error); 124 mutex_exit(&dm_pdev_mutex); 125 kmem_free(dmp, sizeof(dm_pdev_t)); 126 return NULL; 127 } 128 getdisksize(dmp->pdev_vnode, &dmp->pdev_numsec, &dmp->pdev_secsize); 129 dmp->ref_cnt = 1; 130 131 SLIST_INSERT_HEAD(&dm_pdev_list, dmp, next_pdev); 132 mutex_exit(&dm_pdev_mutex); 133 134 return dmp; 135 } 136 137 /* 138 * Initialize pdev subsystem. 139 */ 140 int 141 dm_pdev_init(void) 142 { 143 SLIST_INIT(&dm_pdev_list); /* initialize global pdev list */ 144 mutex_init(&dm_pdev_mutex, MUTEX_DEFAULT, IPL_NONE); 145 146 return 0; 147 } 148 149 /* 150 * Allocat new pdev structure if is not already present and 151 * set name. 152 */ 153 static dm_pdev_t * 154 dm_pdev_alloc(const char *name) 155 { 156 dm_pdev_t *dmp; 157 158 dmp = kmem_zalloc(sizeof(*dmp), KM_SLEEP); 159 strlcpy(dmp->name, name, sizeof(dmp->name)); 160 dmp->ref_cnt = 0; 161 dmp->pdev_vnode = NULL; 162 163 return dmp; 164 } 165 166 /* 167 * Destroy allocated dm_pdev. 168 */ 169 static int 170 dm_pdev_rem(dm_pdev_t *dmp) 171 { 172 173 KASSERT(dmp != NULL); 174 175 if (dmp->pdev_vnode != NULL) { 176 int error = vn_close(dmp->pdev_vnode, FREAD | FWRITE, FSCRED); 177 if (error != 0) { 178 kmem_free(dmp, sizeof(*dmp)); 179 return error; 180 } 181 } 182 kmem_free(dmp, sizeof(*dmp)); 183 184 return 0; 185 } 186 187 /* 188 * Destroy all existing pdev's in device-mapper. 189 */ 190 int 191 dm_pdev_destroy(void) 192 { 193 dm_pdev_t *dmp; 194 195 mutex_enter(&dm_pdev_mutex); 196 197 while ((dmp = SLIST_FIRST(&dm_pdev_list)) != NULL) { 198 SLIST_REMOVE(&dm_pdev_list, dmp, dm_pdev, next_pdev); 199 dm_pdev_rem(dmp); 200 } 201 KASSERT(SLIST_EMPTY(&dm_pdev_list)); 202 203 mutex_exit(&dm_pdev_mutex); 204 205 mutex_destroy(&dm_pdev_mutex); 206 return 0; 207 } 208 209 /* 210 * This funcion is called from dm_dev_remove_ioctl. 211 * When I'm removing device from list, I have to decrement 212 * reference counter. If reference counter is 0 I will remove 213 * dmp from global list and from device list to. And I will CLOSE 214 * dmp vnode too. 215 */ 216 217 /* 218 * Decrement pdev reference counter if 0 remove it. 219 */ 220 int 221 dm_pdev_decr(dm_pdev_t *dmp) 222 { 223 KASSERT(dmp != NULL); 224 /* 225 * If this was last reference remove dmp from 226 * global list also. 227 */ 228 mutex_enter(&dm_pdev_mutex); 229 230 if (--dmp->ref_cnt == 0) { 231 SLIST_REMOVE(&dm_pdev_list, dmp, dm_pdev, next_pdev); 232 mutex_exit(&dm_pdev_mutex); 233 dm_pdev_rem(dmp); 234 return 0; 235 } 236 mutex_exit(&dm_pdev_mutex); 237 return 0; 238 } 239 240 #if 0 241 static int 242 dm_pdev_dump_list(void) 243 { 244 dm_pdev_t *dmp; 245 246 aprint_verbose("Dumping dm_pdev_list\n"); 247 248 SLIST_FOREACH(dmp, &dm_pdev_list, next_pdev) { 249 aprint_verbose("dm_pdev_name %s ref_cnt %d list_rf_cnt %d\n", 250 dmp->name, dmp->ref_cnt, dmp->list_ref_cnt); 251 } 252 253 return 0; 254 } 255 #endif 256