Loading...
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 | /* * * Copyright (C) Eicon Technology Corporation, 2000. * * This source file is supplied for the exclusive use with Eicon * Technology Corporation's range of DIVA Server Adapters. * * Eicon File Revision : 1.3 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY OF ANY KIND WHATSOEVER INCLUDING ANY * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /* * Source file for kernel interface to kernel log facility */ #include "sys.h" #include <stdarg.h> #undef MAX #undef MIN #include <sys/types.h> #include <sys/param.h> #include "divas.h" #include "divalog.h" #include "uxio.h" /* * Implementation of printf and sprintf for kernel */ #define MAX_BUFF (80) /* limit size of temporary buffers */ #define WRITE_CHAR(BUFFER, SIZE, C) \ if (--(SIZE) < 0) { (BUFFER)--; *(BUFFER) = '\0'; return; } *(BUFFER)++ = (C) /* * convert a number to decimal ASCII */ static void do_decimal( char *temp, int temp_len, unsigned int value, char *s) { int i; temp[0] = '\0'; for (i = 1; i < temp_len; i++) { temp[i] = (char) ((value % 10) + (int) '0'); value /= 10; } for (i = (temp_len - 1); temp[i] == '0'; i--) { ; } if (i == 0) { i++; } while (i >= 0) { *s++ = temp[i--]; } return; } /* * convert a number to octal ASCII */ static void do_octal( char *temp, unsigned int value, char *s) { int i; temp[0] = '\0'; for (i = 1; i <= 11; i++) { temp[i] = (char) ((value & 07) + (int) '0'); value >>= 3; } temp[11] &= '3'; for (i = 11; temp[i] == '0'; i--) { ; } if (i == 0) { i++; } while (i >= 0) { *s++ = temp[i--]; } return; } /* * convert a number to hex ASCII */ static void do_hex( char *temp, unsigned int value, char *s) { int i; static char *dec_to_hex = "0123456789abcdef"; temp[0] = '\0'; for (i = 1; i <= 8; i++) { temp[i] = dec_to_hex[value & 0x0f]; value >>= 4; } for (i = 8; temp[i] == '0'; i--) { ; } if (i == 0) { i++; } while (i >= 0) { *s++ = temp[i--]; } return; } /* * convert a buffer to ASCII HEX */ static void do_buffer( char *buffer, int length, char *s) { static char hex_char [] = "0123456789abcdef"; char *b = buffer; int hex_byte; int nybble; length = (length >= ((MAX_BUFF / 3) + 1)) ? (MAX_BUFF / 3) : length; while (length) { hex_byte = (int) *b++; nybble = (hex_byte >> 4) & 0xf; *s++ = hex_char[nybble]; nybble = hex_byte & 0xf; *s++ = hex_char[nybble]; *s++ = ' '; length--; } *s = '\0'; return; } /* * Body of sprintf function: behaves just like standard sprintf, except we * have an extra argument (buffer size) which we use to ensure we don't * overflow */ void Divas_vsprintf( char *buffer, int size, char *fmt, va_list argptr) { char c; /* single character buffer */ int i; /* handy scratch counter */ int f; /* format character (after %) */ char *str; /* pointer into string */ char temp[20]; /* temp buffer used in printing numbers */ char string[MAX_BUFF]; /* output from number conversion */ int length; /* length of string "str" */ char fill; /* fill character ' ' or '0' */ boolean_t leftjust; /* TRUE if left justified, else right justified */ int fmax, fmin; /* field specifiers % MIN . MAX s */ int leading; /* number of leading/trailing fill characters */ char sign; /* set to '-' for negative decimals */ int number; /* numeric argument */ char *buff_ptr; /* pointer to user's buffer of hex data */ int buff_len; /* length of hex data */ /* make sure we have somthing to write into */ if ((!buffer) || (size <= 0)) { return; } while (TRUE) { /* echo characters until end or '%' encountered */ while ((c = *fmt++) != '%') { if (!c) { *buffer = '\0'; return; } WRITE_CHAR(buffer, size, c); } /* echo %% as % */ if (*fmt == '%') { WRITE_CHAR(buffer, size, *fmt); continue; } /* %- turns on left-justify */ if ((leftjust = (boolean_t) ((*fmt == '-') ? TRUE : FALSE))) { fmt++; } /* %0 turns on zero filling */ if (*fmt == '0') { fill = '0'; } else { fill = ' '; } /* minium field width specifier for %d, u, x, c, s */ fmin = 0; if (*fmt == '*') { fmin = va_arg(argptr, int); fmt++; } else { while ('0' <= *fmt && *fmt <= '9') { fmin = (fmin * 10) + (*fmt++ - '0'); } } /* maximum string width specifier for %s */ fmax = 0; if (*fmt == '.') { if (*(++fmt) == '*') { fmax = va_arg(argptr, int); fmt++; } else { while ('0' <= *fmt && *fmt <= '9') { fmax = (fmax * 10) + (*fmt++ - '0'); } } } /* skip over 'l' option (ints are assumed same size as longs) */ if (*fmt == 'l') { fmt++; } /* get the format chacater */ if (!(f = *fmt++)) { WRITE_CHAR(buffer, size, '%'); *buffer = '\0'; return; } sign = '\0'; /* sign == '-' for negative decimal */ str = string; switch (f) { case 'c' : string[0] = (char) va_arg(argptr, int); string[1] = '\0'; fmax = 0; fill = ' '; break; case 's' : str = va_arg(argptr, char *); fill = ' '; break; case 'D' : case 'd' : number = va_arg(argptr, int); if (number < 0) { sign = '-'; number = -number; } do_decimal(temp, DIM(temp), (unsigned int) number, str); fmax = 0; break; case 'U' : case 'u' : number = va_arg(argptr, int); do_decimal(temp, DIM(temp), (unsigned int) number, str); fmax = 0; break; case 'O' : case 'o' : number = va_arg(argptr, int); do_octal(temp, (unsigned int) number, str); fmax = 0; break; case 'X' : case 'x' : number = va_arg(argptr, int); do_hex(temp, (unsigned int) number, str); fmax = 0; break; case 'H' : case 'h' : buff_ptr = va_arg(argptr, char *); buff_len = va_arg(argptr, int); do_buffer(buff_ptr, buff_len, str); fmax = 0; break; default : WRITE_CHAR(buffer, size, ((char) f)); break; } /* get the length of the string */ length = 0; while (str[length]) { length++; } /* make sure we have fmax and fmin values that are O.K. */ if (fmin > DIM(string) || fmin < 0) { fmin = 0; } if (fmax > DIM(string) || fmax < 0) { fmax = 0; } /* figure out how many leading characters thare are */ leading = 0; if (fmax || fmin) { if (fmax) { if (length > fmax) { length = fmax; } } if (fmin) { leading = fmin - length; } if (sign == '-') { leading--; } } /* output sign now, if fill is numeric */ if (sign == '-' && fill == '0') { WRITE_CHAR(buffer, size, '-'); } /* if right justified, output fill characters */ if (!leftjust) { for (i = 0; i < leading; i++) { WRITE_CHAR(buffer, size, fill); } } /* output sign now, if fill is spaces */ if (sign == '-' && fill == ' ') { WRITE_CHAR(buffer, size, '-'); } /* now the actual value */ for (i = 0; i < length; i++) { WRITE_CHAR(buffer, size, str[i]); } /* if left justified, fill out with the fill character */ if (leftjust) { for (i = 0; i < leading; i++) { WRITE_CHAR(buffer, size, fill); } } } } /* * sprintf for kernel * * call our vsprintf assuming user has a big buffer.... */ void DivasSprintf(char *buffer, char *fmt, ...) { va_list argptr; /* pointer to additional args */ va_start(argptr, fmt); Divas_vsprintf(buffer, 1024, fmt, argptr); va_end(argptr); return; } void DivasPrintf(char *fmt, ...) { klog_t log; /* log entry buffer */ va_list argptr; /* pointer to additional args */ va_start(argptr, fmt); /* clear log entry */ bzero((caddr_t) &log, sizeof(klog_t)); log.card = -1; log.type = KLOG_TEXT_MSG; /* time stamp the entry */ log.time_stamp = UxTimeGet(); /* call vsprintf to format the user's information */ Divas_vsprintf(log.buffer, DIM(log.buffer), fmt, argptr); va_end(argptr); /* send to the log streams driver and return */ DivasLogAdd(&log, sizeof(klog_t)); return; } |