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 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
|
/*
* os_debug.c
*
* Debugging OS handler.
*
* Author: MontaVista Software, Inc.
* Corey Minyard <minyard@mvista.com>
* source@mvista.com
*
* Copyright 2002,2003 MontaVista Software Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
*
* 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 AUTHOR 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <config.h>
#include <stdlib.h>
#include <errno.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <OpenIPMI/os_handler.h>
#include <OpenIPMI/selector.h>
#include <OpenIPMI/ipmi_debug.h>
/* Internal includes, do not use in your programs */
#include <OpenIPMI/internal/ipmi_malloc.h>
static os_vlog_t log_handler;
#ifdef HAVE_GDBM
#include <gdbm.h>
static char *gdbm_filename;
static GDBM_FILE gdbmf;
#endif
extern selector_t *debug_sel;
#ifdef IPMI_CHECK_LOCKS
static void check_no_locks(os_handler_t *handler);
#define CHECK_NO_LOCKS(handler) check_no_locks(handler)
#else
#define CHECK_NO_LOCKS(handler) do {} while(0)
#endif
struct os_hnd_fd_id_s
{
int fd;
void *cb_data;
os_data_ready_t data_ready;
os_handler_t *handler;
os_fd_data_freed_t freed;
};
static void
fd_handler(int fd, void *data)
{
os_hnd_fd_id_t *fd_data = (os_hnd_fd_id_t *) data;
CHECK_NO_LOCKS(fd_data->handler);
fd_data->data_ready(fd, fd_data->cb_data, fd_data);
CHECK_NO_LOCKS(fd_data->handler);
}
static void
free_fd_data(int fd, void *data)
{
os_hnd_fd_id_t *fd_data = data;
if (fd_data->freed)
fd_data->freed(fd, fd_data->cb_data);
ipmi_mem_free(data);
}
static int
add_fd(os_handler_t *handler,
int fd,
os_data_ready_t data_ready,
void *cb_data,
os_fd_data_freed_t freed,
os_hnd_fd_id_t **id)
{
os_hnd_fd_id_t *fd_data;
int rv;
fd_data = ipmi_mem_alloc(sizeof(*fd_data));
if (!fd_data)
return ENOMEM;
fd_data->fd = fd;
fd_data->cb_data = cb_data;
fd_data->data_ready = data_ready;
fd_data->handler = handler;
fd_data->freed = freed;
rv = sel_set_fd_handlers(debug_sel, fd, fd_data, fd_handler, NULL, NULL,
free_fd_data);
if (rv) {
ipmi_mem_free(fd_data);
return rv;
}
sel_set_fd_read_handler(debug_sel, fd, SEL_FD_HANDLER_ENABLED);
sel_set_fd_write_handler(debug_sel, fd, SEL_FD_HANDLER_DISABLED);
sel_set_fd_except_handler(debug_sel, fd, SEL_FD_HANDLER_DISABLED);
*id = fd_data;
return 0;
}
static int
remove_fd(os_handler_t *handler, os_hnd_fd_id_t *fd_data)
{
sel_set_fd_read_handler(debug_sel, fd_data->fd, SEL_FD_HANDLER_DISABLED);
sel_clear_fd_handlers(debug_sel, fd_data->fd);
/* fd_data gets freed in the free_fd_data callback registered at
set time. */
return 0;
}
struct os_hnd_timer_id_s
{
void *cb_data;
os_timed_out_t timed_out;
sel_timer_t *timer;
int running;
os_handler_t *handler;
};
static void
timer_handler(selector_t *sel,
sel_timer_t *timer,
void *data)
{
os_hnd_timer_id_t *timer_data = (os_hnd_timer_id_t *) data;
/* Make a copy of this, because the handler may delete the timer
data. */
os_handler_t *os_handler = timer_data->handler;
void *cb_data;
os_timed_out_t timed_out;
CHECK_NO_LOCKS(os_handler);
timed_out = timer_data->timed_out;
cb_data = timer_data->cb_data;
timer_data->running = 0;
timed_out(cb_data, timer_data);
CHECK_NO_LOCKS(os_handler);
}
static int
start_timer(os_handler_t *handler,
os_hnd_timer_id_t *id,
struct timeval *timeout,
os_timed_out_t timed_out,
void *cb_data)
{
struct timeval now;
if (id->running)
return EBUSY;
id->running = 1;
id->cb_data = cb_data;
id->timed_out = timed_out;
gettimeofday(&now, NULL);
now.tv_sec += timeout->tv_sec;
now.tv_usec += timeout->tv_usec;
while (now.tv_usec >= 1000000) {
now.tv_usec -= 1000000;
now.tv_sec += 1;
}
return sel_start_timer(id->timer, &now);
}
static int
stop_timer(os_handler_t *handler, os_hnd_timer_id_t *timer_data)
{
return sel_stop_timer(timer_data->timer);
}
static int
alloc_timer(os_handler_t *handler,
os_hnd_timer_id_t **id)
{
os_hnd_timer_id_t *timer_data;
int rv;
timer_data = ipmi_mem_alloc(sizeof(*timer_data));
if (!timer_data)
return ENOMEM;
timer_data->running = 0;
timer_data->timed_out = NULL;
timer_data->handler = handler;
rv = sel_alloc_timer(debug_sel, timer_handler, timer_data,
&(timer_data->timer));
if (rv) {
ipmi_mem_free(timer_data);
return rv;
}
*id = timer_data;
return 0;
}
static int
free_timer(os_handler_t *handler, os_hnd_timer_id_t *timer_data)
{
sel_free_timer(timer_data->timer);
ipmi_mem_free(timer_data);
return 0;
}
static int
get_random(os_handler_t *handler, void *data, unsigned int len)
{
int fd = open("/dev/urandom", O_RDONLY);
int rv;
if (fd == -1)
return errno;
while (len > 0) {
rv = read(fd, data, len);
if (rv < 0) {
rv = errno;
goto out;
}
len -= rv;
}
rv = 0;
out:
close(fd);
return rv;
}
extern void debug_vlog(const char *format, enum ipmi_log_type_e log_type,
va_list ap);
static void
sdebug_vlog(os_handler_t *handler,
enum ipmi_log_type_e log_type,
const char *format,
va_list ap)
{
if (log_handler)
log_handler(handler, format, log_type, ap);
}
static void
sdebug_log(os_handler_t *handler,
enum ipmi_log_type_e log_type,
const char *format,
...)
{
va_list ap;
va_start(ap, format);
sdebug_vlog(handler, log_type, format, ap);
va_end(ap);
}
#ifdef IPMI_CHECK_LOCKS
struct os_hnd_lock_s
{
os_hnd_lock_t *next, *prev;
int lock_count;
};
static os_hnd_lock_t locks = { &locks, &locks, 0 };
static int
create_lock(os_handler_t *handler,
os_hnd_lock_t **id)
{
os_hnd_lock_t *lock;
lock = ipmi_mem_alloc(sizeof(*lock));
if (!lock)
return ENOMEM;
lock->lock_count = 0;
lock->next = NULL;
lock->prev = NULL;
*id = lock;
return 0;
}
static int
destroy_lock(os_handler_t *handler,
os_hnd_lock_t *id)
{
if (id->lock_count != 0) {
IPMI_REPORT_LOCK_ERROR(handler,
"Release of lock when count is not zero\n");
id->next->prev = id->prev;
id->prev->next = id->next;
}
ipmi_mem_free(id);
return 0;
}
static int
lock(os_handler_t *handler,
os_hnd_lock_t *id)
{
if (id->lock_count == 0) {
id->next = locks.next;
id->prev = &locks;
id->next->prev = id;
locks.next = id;
} else
IPMI_REPORT_LOCK_ERROR(handler,
"lock called recursively\n");
id->lock_count++;
return 0;
}
static int
unlock(os_handler_t *handler,
os_hnd_lock_t *id)
{
if (id->lock_count <= 0)
IPMI_REPORT_LOCK_ERROR(handler,
"lock count went negative\n");
id->lock_count--;
if (id->lock_count == 0) {
id->next->prev = id->prev;
id->prev->next = id->next;
id->next = NULL;
id->prev = NULL;
}
return 0;
}
static void
check_no_locks(os_handler_t *handler)
{
if (locks.next != &locks)
IPMI_REPORT_LOCK_ERROR(handler,
"Locks held when all should be free\n");
}
#endif
static int
perform_one_op(os_handler_t *os_hnd,
struct timeval *timeout)
{
return sel_select(debug_sel, NULL, 0, NULL, timeout);
}
static void
operation_loop(os_handler_t *os_hnd)
{
sel_select_loop(debug_sel, NULL, 0, NULL);
}
static void
free_os_handler(os_handler_t *os_hnd)
{
}
static void *
debug_malloc(int size)
{
return malloc(size);
}
static void
debug_free(void *data)
{
free(data);
}
#ifdef HAVE_GDBM
#define GDBM_FILE ".OpenIPMI_db"
static void
init_gdbm(void)
{
if (!gdbm_filename) {
char *home = getenv("HOME");
if (!home)
return;
gdbm_filename = malloc(strlen(home)+strlen(GDBM_FILE)+2);
if (!gdbm_filename)
return;
strcpy(gdbm_filename, home);
strcat(gdbm_filename, "/");
strcat(gdbm_filename, GDBM_FILE);
}
gdbmf = gdbm_open(gdbm_filename, 512, GDBM_WRCREAT, 0600, NULL);
/* gdbmf will be NULL on error, which is what reports an error. */
}
static int
database_store(os_handler_t *handler,
char *key,
unsigned char *data,
unsigned int data_len)
{
datum gkey, gdata;
int rv;
if (!gdbmf) {
init_gdbm();
if (!gdbmf)
return EINVAL;
}
gkey.dptr = key;
gkey.dsize = strlen(key);
gdata.dptr = (char *) data;
gdata.dsize = data_len;
rv = gdbm_store(gdbmf, gkey, gdata, GDBM_REPLACE);
if (rv)
return EINVAL;
return 0;
}
static int
database_find(os_handler_t *handler,
char *key,
unsigned int *fetch_completed,
unsigned char **data,
unsigned int *data_len,
void (*got_data)(void *cb_data,
int err,
unsigned char *data,
unsigned int data_len),
void *cb_data)
{
datum gkey, gdata;
if (!gdbmf) {
init_gdbm();
if (!gdbmf)
return EINVAL;
}
gkey.dptr = key;
gkey.dsize = strlen(key);
gdata = gdbm_fetch(gdbmf, gkey);
if (!gdata.dptr)
return EINVAL;
*data = (unsigned char *) gdata.dptr;
*data_len = gdata.dsize;
*fetch_completed = 1;
return 0;
}
static void
database_free(os_handler_t *handler,
unsigned char *data)
{
free(data);
}
static int
set_gdbm_filename(os_handler_t *os_hnd, char *name)
{
char *nname;
nname = strdup(name);
if (!nname)
return ENOMEM;
if (gdbm_filename)
free(gdbm_filename);
gdbm_filename = name;
return 0;
}
#endif
static void sset_log_handler(os_handler_t *handler,
os_vlog_t rlog_handler)
{
log_handler = rlog_handler;
}
os_handler_t ipmi_debug_os_handlers =
{
.mem_alloc = debug_malloc,
.mem_free = debug_free,
.add_fd_to_wait_for = add_fd,
.remove_fd_to_wait_for = remove_fd,
.start_timer = start_timer,
.stop_timer = stop_timer,
.alloc_timer = alloc_timer,
.free_timer = free_timer,
#ifdef IPMI_CHECK_LOCKS
.create_lock = create_lock,
.destroy_lock = destroy_lock,
.lock = lock,
.unlock = unlock,
#else
.create_lock = NULL,
.destroy_lock = NULL,
.lock = NULL,
.unlock = NULL,
#endif
.get_random = get_random,
.perform_one_op = perform_one_op,
.operation_loop = operation_loop,
.free_os_handler = free_os_handler,
.log = sdebug_log,
.vlog = sdebug_vlog,
#ifdef HAVE_GDBM
.database_store = database_store,
.database_find = database_find,
.database_free = database_free,
.database_set_filename = set_gdbm_filename,
#endif
.set_log_handler = sset_log_handler,
};
|