1 /*- 2 * Copyright (c) 2008 Yahoo!, Inc. 3 * All rights reserved. 4 * Written by: John Baldwin <jhb@FreeBSD.org> 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. Neither the name of the author nor the names of any co-contributors 15 * may be used to endorse or promote products derived from this software 16 * without specific prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 */ 30 31 #include <sys/cdefs.h> 32 __RCSID("$FreeBSD$"); 33 34 #include <sys/param.h> 35 #include <sys/errno.h> 36 #include <ctype.h> 37 #include <err.h> 38 #include <stdio.h> 39 #include <stdlib.h> 40 #include <unistd.h> 41 #include "mptutil.h" 42 43 static CONFIG_PAGE_LOG_0 * 44 mpt_get_events(int fd, U16 *IOCStatus) 45 { 46 47 return (mpt_read_extended_config_page(fd, MPI_CONFIG_EXTPAGETYPE_LOG, 48 0, 0, 0, IOCStatus)); 49 } 50 51 /* 52 * 1 2 3 4 5 6 7 53 * 1234567890123456789012345678901234567890123456789012345678901234567890 54 * < ID> < time > <ty> <X XX XX XX XX XX XX XX XX XX XX XX XX XX |..............| 55 * ID Time Type Log Data 56 */ 57 static void 58 mpt_print_event(MPI_LOG_0_ENTRY *entry, int verbose) 59 { 60 int i; 61 62 printf("%5d %7ds %4x ", entry->LogSequence, entry->TimeStamp, 63 entry->LogEntryQualifier); 64 for (i = 0; i < 14; i++) 65 printf("%02x ", entry->LogData[i]); 66 printf("|"); 67 for (i = 0; i < 14; i++) 68 printf("%c", isprint(entry->LogData[i]) ? entry->LogData[i] : 69 '.'); 70 printf("|\n"); 71 printf(" "); 72 for (i = 0; i < 14; i++) 73 printf("%02x ", entry->LogData[i + 14]); 74 printf("|"); 75 for (i = 0; i < 14; i++) 76 printf("%c", isprint(entry->LogData[i + 14]) ? 77 entry->LogData[i + 14] : '.'); 78 printf("|\n"); 79 } 80 81 static int 82 event_compare(const void *first, const void *second) 83 { 84 MPI_LOG_0_ENTRY * const *one; 85 MPI_LOG_0_ENTRY * const *two; 86 87 one = first; 88 two = second; 89 return ((*one)->LogSequence - ((*two)->LogSequence)); 90 } 91 92 static int 93 show_events(int ac, char **av) 94 { 95 CONFIG_PAGE_LOG_0 *log; 96 MPI_LOG_0_ENTRY **entries; 97 int ch, fd, i, num_events, verbose; 98 99 fd = mpt_open(mpt_unit); 100 if (fd < 0) { 101 warn("mpt_open"); 102 return (errno); 103 } 104 105 log = mpt_get_events(fd, NULL); 106 if (log == NULL) { 107 warn("Failed to get event log info"); 108 return (errno); 109 } 110 111 /* Default settings. */ 112 verbose = 0; 113 114 /* Parse any options. */ 115 optind = 1; 116 while ((ch = getopt(ac, av, "v")) != -1) { 117 switch (ch) { 118 case 'v': 119 verbose = 1; 120 break; 121 case '?': 122 default: 123 return (EINVAL); 124 } 125 } 126 ac -= optind; 127 av += optind; 128 129 /* Build a list of valid entries and sort them by sequence. */ 130 entries = malloc(sizeof(MPI_LOG_0_ENTRY *) * log->NumLogEntries); 131 num_events = 0; 132 for (i = 0; i < log->NumLogEntries; i++) { 133 if (log->LogEntry[i].LogEntryQualifier == 134 MPI_LOG_0_ENTRY_QUAL_ENTRY_UNUSED) 135 continue; 136 entries[num_events] = &log->LogEntry[i]; 137 num_events++; 138 } 139 140 qsort(entries, num_events, sizeof(MPI_LOG_0_ENTRY *), event_compare); 141 142 if (num_events == 0) 143 printf("Event log is empty\n"); 144 else { 145 printf(" ID Time Type Log Data\n"); 146 for (i = 0; i < num_events; i++) 147 mpt_print_event(entries[i], verbose); 148 } 149 150 free(entries); 151 close(fd); 152 153 return (0); 154 } 155 MPT_COMMAND(show, events, show_events); 156