sys/dev/raid/vinum/vinummemory.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 | /*- * 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: vinummemory.c,v 1.25 2000/05/04 01:57:48 grog Exp grog $ * $FreeBSD: src/sys/dev/vinum/vinummemory.c,v 1.22.2.1 2000/06/02 04:26:11 grog Exp $ */ #include "vinumhdr.h" #ifdef VINUMDEBUG #include "request.h" extern struct rqinfo rqinfo[]; extern struct rqinfo *rqip; int rqinfo_size = RQINFO_SIZE; /* for debugger */ #define LongJmp longjmp /* just use the kernel function */ #endif /* find the base name of a path name */ char * basename(char *file) { char *f = rindex(file, '/'); /* chop off dirname if present */ if (f == NULL) return file; else return ++f; /* skip the / */ } void expand_table(void **table, int oldsize, int newsize) { if (newsize > oldsize) { int *temp; crit_enter(); temp = (int *) Malloc(newsize); /* allocate a new table */ CHECKALLOC(temp, "vinum: Can't expand table\n"); bzero((char *) temp, newsize); /* clean it all out */ if (*table != NULL) { /* already something there, */ bcopy((char *) *table, (char *) temp, oldsize); /* copy it to the old table */ Free(*table); } *table = temp; crit_exit(); } } #ifdef VINUMDEBUG /* XXX debug */ #define MALLOCENTRIES 16384 int malloccount = 0; int highwater = 0; /* highest index ever allocated */ struct mc malloced[MALLOCENTRIES]; #define FREECOUNT 64 int freecount = FREECOUNT; /* for debugger */ int lastfree = 0; struct mc freeinfo[FREECOUNT]; int total_malloced; static int mallocseq = 0; caddr_t MMalloc(int size, char *file, int line) { caddr_t result; int i; if (malloccount >= MALLOCENTRIES) { /* too many */ log(LOG_ERR, "vinum: can't allocate table space to trace memory allocation"); return 0; /* can't continue */ } /* Wait for malloc if we can */ result = kmalloc(size, M_DEVBUF, mycpu->gd_intr_nesting_level == 0 ? M_WAITOK : M_INTWAIT); if (result == NULL) log(LOG_ERR, "vinum: can't allocate %d bytes from %s:%d\n", size, file, line); else { crit_enter(); for (i = 0; i < malloccount; i++) { if (((result + size) > malloced[i].address) && (result < malloced[i].address + malloced[i].size)) /* overlap */ Debugger("Malloc overlap"); } if (result) { char *f = basename(file); i = malloccount++; total_malloced += size; microtime(&malloced[i].time); malloced[i].seq = mallocseq++; malloced[i].size = size; malloced[i].line = line; malloced[i].address = result; bcopy(f, malloced[i].file, min(strlen(f), MCFILENAMELEN - 1)); malloced[i].file[MCFILENAMELEN - 1] = '\0'; } if (malloccount > highwater) highwater = malloccount; crit_exit(); } return result; } void FFree(void *mem, char *file, int line) { int i; crit_enter(); for (i = 0; i < malloccount; i++) { if ((caddr_t) mem == malloced[i].address) { /* found it */ bzero(mem, malloced[i].size); /* XXX */ kfree(mem, M_DEVBUF); malloccount--; total_malloced -= malloced[i].size; if (debug & DEBUG_MEMFREE) { /* keep track of recent frees */ char *f = rindex(file, '/'); /* chop off dirname if present */ if (f == NULL) f = file; else f++; /* skip the / */ microtime(&freeinfo[lastfree].time); freeinfo[lastfree].seq = malloced[i].seq; freeinfo[lastfree].size = malloced[i].size; freeinfo[lastfree].line = line; freeinfo[lastfree].address = mem; bcopy(f, freeinfo[lastfree].file, min(strlen(f), MCFILENAMELEN - 1)); freeinfo[lastfree].file[MCFILENAMELEN - 1] = '\0'; if (++lastfree == FREECOUNT) lastfree = 0; } if (i < malloccount) /* more coming after */ bcopy(&malloced[i + 1], &malloced[i], (malloccount - i) * sizeof(struct mc)); crit_exit(); return; } } log(LOG_ERR, "Freeing unallocated data at 0x%p from %s, line %d\n", mem, file, line); Debugger("Free"); crit_exit(); } void vinum_meminfo(caddr_t data) { struct meminfo *m = (struct meminfo *) data; m->mallocs = malloccount; m->total_malloced = total_malloced; m->malloced = malloced; m->highwater = highwater; } int vinum_mallocinfo(caddr_t data) { struct mc *m = (struct mc *) data; unsigned int ent = m->seq; /* index of entry to return */ if (ent >= malloccount) return ENOENT; m->address = malloced[ent].address; m->size = malloced[ent].size; m->line = malloced[ent].line; m->seq = malloced[ent].seq; bcopy(malloced[ent].file, m->file, MCFILENAMELEN); return 0; } /* * return the nth request trace buffer entry. This * is indexed back from the current entry (which * has index 0) */ int vinum_rqinfo(caddr_t data) { struct rqinfo *rq = (struct rqinfo *) data; int ent = *(int *) data; /* 1st word is index */ int lastent = rqip - rqinfo; /* entry number of current entry */ if (ent >= RQINFO_SIZE) /* out of the table */ return ENOENT; if ((ent = lastent - ent - 1) < 0) ent += RQINFO_SIZE; /* roll over backwards */ bcopy(&rqinfo[ent], rq, sizeof(struct rqinfo)); return 0; } #endif |