sys/dev/raid/vinum/vinumdaemon.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 | /* daemon.c: kernel part of Vinum daemon */ /*- * Copyright (c) 1997, 1998 * Nan Yang Computer Services Limited. All rights reserved. * * This software is distributed under the so-called ``Berkeley * License'': * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Nan Yang Computer * Services Limited. * 4. Neither the name of the Company nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * This software is provided ``as is'', and any express or implied * warranties, including, but not limited to, the implied warranties of * merchantability and fitness for a particular purpose are disclaimed. * In no event shall the company or contributors be liable for any * direct, indirect, incidental, special, exemplary, or consequential * damages (including, but not limited to, procurement of substitute * goods or services; loss of use, data, or profits; or business * interruption) however caused and on any theory of liability, whether * in contract, strict liability, or tort (including negligence or * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * * $Id: vinumdaemon.c,v 1.8 2000/01/03 05:22:03 grog Exp grog $ * $FreeBSD: src/sys/dev/vinum/vinumdaemon.c,v 1.16 2000/01/05 06:03:56 grog Exp $ */ #include "vinumhdr.h" #include "request.h" #ifdef VINUMDEBUG #include <sys/reboot.h> #endif /* declarations */ void recover_io(struct request *rq); int daemon_options = 0; /* options */ int daemonpid; /* PID of daemon */ struct daemonq *daemonq; /* daemon's work queue */ struct daemonq *dqend; /* and the end of the queue */ /* * We normally call Malloc to get a queue element. In interrupt * context, we can't guarantee that we'll get one, since we're not * allowed to wait. If malloc fails, use one of these elements. */ #define INTQSIZE 4 struct daemonq intq[INTQSIZE]; /* queue elements for interrupt context */ struct daemonq *intqp; /* and pointer in it */ void vinum_daemon(void) { struct daemonq *request; curproc->p_flags |= P_SYSTEM; /* we're a system process */ daemon_save_config(); /* start by saving the configuration */ daemonpid = curproc->p_pid; /* mark our territory */ while (1) { tsleep(&vinum_daemon, 0, "vinum", 0); /* wait for something to happen */ /* * It's conceivable that, as the result of an * I/O error, we'll be out of action long * enough that another daemon gets started. * That's OK, just give up gracefully. */ if (curproc->p_pid != daemonpid) { /* we've been ousted in our sleep */ if (daemon_options & daemon_verbose) log(LOG_INFO, "vinum: abdicating\n"); return; } while (daemonq != NULL) { /* we have work to do, */ crit_enter(); request = daemonq; /* get the request */ daemonq = daemonq->next; /* and detach it */ if (daemonq == NULL) /* got to the end, */ dqend = NULL; /* no end any more */ crit_exit(); switch (request->type) { /* * We had an I/O error on a request. Go through the * request and try to salvage it */ case daemonrq_ioerror: if (daemon_options & daemon_verbose) { struct request *rq = request->info.rq; log(LOG_WARNING, "vinum: recovering I/O request: %p\n%s dev %d.%d, offset 0x%012llx, length %d\n", rq, (rq->bio->bio_buf->b_cmd == BUF_CMD_READ) ? "Read" : "Write", major((cdev_t)rq->bio->bio_driver_info), minor((cdev_t)rq->bio->bio_driver_info), (long long)rq->bio->bio_offset, rq->bio->bio_buf->b_bcount); } recover_io(request->info.rq); /* the failed request */ break; /* * Write the config to disk. We could end up with * quite a few of these in a row. Only honour the * last one */ case daemonrq_saveconfig: if ((daemonq == NULL) /* no more requests */ ||(daemonq->type != daemonrq_saveconfig)) { /* or the next isn't the same */ if (((daemon_options & daemon_noupdate) == 0) /* we're allowed to do it */ &&((vinum_conf.flags & VF_READING_CONFIG) == 0)) { /* and we're not building the config now */ /* * We obviously don't want to save a * partial configuration. Less obviously, * we don't need to do anything if we're * asked to write the config when we're * building it up, because we save it at * the end. */ if (daemon_options & daemon_verbose) log(LOG_INFO, "vinum: saving config\n"); daemon_save_config(); /* save it */ } } break; case daemonrq_return: /* been told to stop */ if (daemon_options & daemon_verbose) log(LOG_INFO, "vinum: stopping\n"); daemon_options |= daemon_stopped; /* note that we've stopped */ Free(request); while (daemonq != NULL) { /* backed up requests, */ request = daemonq; /* get the request */ daemonq = daemonq->next; /* and detach it */ Free(request); /* then free it */ } wakeup(&vinumclose); /* and wake any waiting vinum(8)s */ return; case daemonrq_ping: /* tell the caller we're here */ if (daemon_options & daemon_verbose) log(LOG_INFO, "vinum: ping reply\n"); wakeup(&vinum_finddaemon); /* wake up the caller */ break; case daemonrq_closedrive: /* close a drive */ close_drive(request->info.drive); /* do it */ break; case daemonrq_init: /* initialize a plex */ /* XXX */ case daemonrq_revive: /* revive a subdisk */ /* XXX */ /* FALLTHROUGH */ default: log(LOG_WARNING, "Invalid request\n"); break; } if (request->privateinuse) /* one of ours, */ request->privateinuse = 0; /* no longer in use */ else Free(request); /* return it */ } } } /* * Recover a failed I/O operation. * * The correct way to do this is to examine the request and determine * how to recover each individual failure. In the case of a write, * this could be as simple as doing nothing: the defective drives may * already be down, and there may be nothing else to do. In case of * a read, it will be necessary to retry if there are alternative * copies of the data. * * The easy way (here) is just to reissue the request. This will take * a little longer, but nothing like as long as the failure will have * taken. * */ void recover_io(struct request *rq) { /* * This should read: * * vinumstrategy(rq->bio); * * Negotiate with phk to get it fixed. * Reissue the command. */ dev_dstrategy((cdev_t)rq->bio->bio_driver_info, rq->bio); } /* Functions called to interface with the daemon */ /* queue a request for the daemon */ void queue_daemon_request(enum daemonrq type, union daemoninfo info) { struct daemonq *qelt = (struct daemonq *) Malloc(sizeof(struct daemonq)); if (qelt == NULL) { /* malloc failed, we're prepared for that */ /* * Take one of our spares. Give up if it's still in use; the only * message we're likely to get here is a 'drive failed' message, * and that'll come by again if we miss it. */ if (intqp->privateinuse) /* still in use? */ return; /* yes, give up */ qelt = intqp++; if (intqp == &intq[INTQSIZE]) /* got to the end, */ intqp = intq; /* wrap around */ qelt->privateinuse = 1; /* it's ours, and it's in use */ } else qelt->privateinuse = 0; qelt->next = NULL; /* end of the chain */ qelt->type = type; qelt->info = info; crit_enter(); if (daemonq) { /* something queued already */ dqend->next = qelt; dqend = qelt; } else { /* queue is empty, */ daemonq = qelt; /* this is the whole queue */ dqend = qelt; } crit_exit(); wakeup(&vinum_daemon); /* and give the daemon a kick */ } /* * see if the daemon is running. Return 0 (no error) * if it is, ESRCH otherwise */ int vinum_finddaemon(void) { union daemoninfo di = { .nothing = 0 }; int result; if (daemonpid != 0) { /* we think we have a daemon, */ queue_daemon_request(daemonrq_ping, di); /* queue a ping */ result = tsleep(&vinum_finddaemon, 0, "reap", 2 * hz); if (result == 0) /* yup, the daemon's up and running */ return 0; } /* no daemon, or we couldn't talk to it: start it */ vinum_daemon(); /* start the daemon */ return 0; } int vinum_setdaemonopts(int options) { daemon_options = options; return 0; } |