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
|
#define _GNU_SOURCE
/*
* Copyright 2007, Intel Corporation
*
* This file is part of kerneloops.org
*
* This program file 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; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the 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 in a file named COPYING; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* Authors:
* Arjan van de Ven <arjan@linux.intel.com>
*/
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <asm/unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "kerneloops.h"
static char **linepointer;
static char *linelevel;
static int linecount;
#define MAX(A,B) ((A) > (B) ? (A) : (B))
/*
* This function splits the dmesg buffer data into lines
* (null terminated). The linepointer array is assumed to be
* allocated already.
*/
static void fill_linepointers(char *buffer, int remove_syslog)
{
char *c;
linecount = 0;
c = buffer;
while (c) {
int len = 0;
char *c9;
c9 = strchr(c, '\n');
if (c9)
len = c9 - c;
/* in /var/log/messages, we need to strip the first part off, upto the 3rd ':' */
if (remove_syslog) {
char *c2;
/* skip non-kernel lines */
c2 = memmem(c, len, "kernel:", 7);
if (!c2)
c2 = memmem(c, len, "kerneloops:", 11);
if (!c2) {
c2 = c9;
if (c2) {
c = c2 + 1;
continue;
} else
break;
}
c = strchr(c, ':');
if (!c)
break;
c++;
c = strchr(c, ':');
if (!c)
break;
c++;
c = strchr(c, ':');
if (!c)
break;
c++;
if (*c)
c++;
}
linepointer[linecount] = c;
linelevel[linecount] = 0;
/* store and remove kernel log level */
if (*c == '<' && *(c+2) == '>') {
linelevel[linecount] = *(c+1);
c = c + 3;
linepointer[linecount] = c;
}
/* remove jiffies time stamp counter if present */
if (*c == '[') {
char *c2, *c3;
c2 = strchr(c, '.');
c3 = strchr(c, ']');
if (c2 && c3 && (c2 < c3) && (c3-c) < 14 && (c2-c) < 8) {
c = c3+1;
if (*c == ' ')
c++;
linepointer[linecount] = c;
}
}
c = strchr(c, '\n'); /* turn the \n into a string termination */
if (c) {
*c = 0;
c = c+1;
}
/* if we see our own marker, we know we submitted everything upto here already */
if (strstr(linepointer[linecount], "www.kerneloops.org")) {
linecount = 0;
linepointer[0] = NULL;
}
linecount++;
}
}
/*
* extract_oops tries to find oops signatures in a log
*/
static void extract_oops(char *buffer, size_t buflen, int remove_syslog)
{
int i;
char prevlevel = 0;
int oopsstart = -1;
int oopsend;
int inbacktrace = 0;
linepointer = calloc(buflen+1, sizeof(char*));
if (!linepointer)
return;
linelevel = calloc(buflen+1, sizeof(char));
if (!linelevel) {
free(linepointer);
linepointer = NULL;
return;
}
fill_linepointers(buffer, remove_syslog);
oopsend = linecount;
i = 0;
while (i < linecount) {
char *c = linepointer[i];
if (c == NULL) {
i++;
continue;
}
if (oopsstart < 0) {
/* find start-of-oops markers */
if (strstr(c, "general protection fault:"))
oopsstart = i;
if (strstr(c, "BUG:"))
oopsstart = i;
if (strstr(c, "kernel BUG at"))
oopsstart = i;
if (strstr(c, "do_IRQ: stack overflow:"))
oopsstart = i;
if (strstr(c, "RTNL: assertion failed"))
oopsstart = i;
if (strstr(c, "Eeek! page_mapcount(page) went negative!"))
oopsstart = i;
if (strstr(c, "near stack overflow (cur:"))
oopsstart = i;
if (strstr(c, "double fault:"))
oopsstart = i;
if (strstr(c, "Badness at"))
oopsstart = i;
if (strstr(c, "NETDEV WATCHDOG"))
oopsstart = i;
if (strstr(c, "WARNING:") &&
!strstr(c, "appears to be on the same physical disk"))
oopsstart = i;
if (strstr(c, "Unable to handle kernel"))
oopsstart = i;
if (strstr(c, "sysctl table check failed"))
oopsstart = i;
if (strstr(c, "------------[ cut here ]------------"))
oopsstart = i;
if (strstr(c, "list_del corruption."))
oopsstart = i;
if (strstr(c, "list_add corruption."))
oopsstart = i;
if (strstr(c, "Oops:") && i >= 3)
oopsstart = i-3;
if (oopsstart >= 0 && testmode) {
printf("Found start of oops at line %i\n", oopsstart);
printf(" start line is -%s-\n", linepointer[oopsstart]);
if (oopsstart != i)
printf(" trigger line is -%s-\n", c);
}
/* try to find the end marker */
if (oopsstart >= 0) {
int i2;
i2 = i+1;
while (i2 < linecount && i2 < (i+50)) {
if (strstr(linepointer[i2], "---[ end trace")) {
inbacktrace = 1;
i = i2;
break;
}
i2++;
}
}
}
/* a calltrace starts with "Call Trace:" or with the " [<.......>] function+0xFF/0xAA" pattern */
if (oopsstart >= 0 && strstr(linepointer[i], "Call Trace:"))
inbacktrace = 1;
else if (oopsstart >= 0 && inbacktrace == 0 && strlen(linepointer[i]) > 8) {
char *c1, *c2, *c3;
c1 = strstr(linepointer[i], ">]");
c2 = strstr(linepointer[i], "+0x");
c3 = strstr(linepointer[i], "/0x");
if (linepointer[i][0] == ' ' && linepointer[i][1] == '[' && linepointer[i][2] == '<' && c1 && c2 && c3)
inbacktrace = 1;
} else
/* try to see if we're at the end of an oops */
if (oopsstart >= 0 && inbacktrace > 0) {
char c2, c3;
c2 = linepointer[i][0];
c3 = linepointer[i][1];
/* line needs to start with " [" or have "] ["*/
if ((c2 != ' ' || c3 != '[') &&
strstr(linepointer[i], "] [") == NULL &&
strstr(linepointer[i], "--- Exception") == NULL &&
strstr(linepointer[i], " LR =") == NULL &&
strstr(linepointer[i], "<#DF>") == NULL &&
strstr(linepointer[i], "<IRQ>") == NULL &&
strstr(linepointer[i], "<EOI>") == NULL &&
strstr(linepointer[i], "<<EOE>>") == NULL)
oopsend = i-1;
/* oops lines are always more than 8 long */
if (strlen(linepointer[i]) < 8)
oopsend = i-1;
/* single oopses are of the same loglevel */
if (linelevel[i] != prevlevel)
oopsend = i-1;
/* The Code: line means we're done with the backtrace */
if (strstr(linepointer[i], "Code:") != NULL)
oopsend = i;
if (strstr(linepointer[i], "Instruction dump::") != NULL)
oopsend = i;
/* if a new oops starts, this one has ended */
if (strstr(linepointer[i], "WARNING:") != NULL && oopsstart != i)
oopsend = i-1;
if (strstr(linepointer[i], "Unable to handle") != NULL && oopsstart != i)
oopsend = i-1;
/* kernel end-of-oops marker */
if (strstr(linepointer[i], "---[ end trace") != NULL)
oopsend = i;
if (oopsend <= i) {
int q;
int len;
char *oops;
len = 2;
for (q = oopsstart; q <= oopsend; q++)
len += strlen(linepointer[q])+1;
oops = calloc(len, 1);
for (q = oopsstart; q <= oopsend; q++) {
strcat(oops, linepointer[q]);
strcat(oops, "\n");
}
/* too short oopses are invalid */
if (strlen(oops) > 100)
queue_oops(oops);
oopsstart = -1;
inbacktrace = 0;
oopsend = linecount;
free(oops);
}
}
prevlevel = linelevel[i];
i++;
if (oopsstart > 0 && i-oopsstart > 50) {
oopsstart = -1;
inbacktrace = 0;
oopsend = linecount;
}
if (oopsstart > 0 && !inbacktrace && i-oopsstart > 30) {
oopsstart = -1;
inbacktrace = 0;
oopsend = linecount;
}
}
if (oopsstart >= 0) {
char *oops;
int len;
int q;
oopsend = i-1;
len = 2;
while (oopsend > 0 && linepointer[oopsend] == NULL)
oopsend--;
for (q = oopsstart; q <= oopsend; q++)
len += strlen(linepointer[q])+1;
oops = calloc(len, 1);
for (q = oopsstart; q <= oopsend; q++) {
strcat(oops, linepointer[q]);
strcat(oops, "\n");
}
/* too short oopses are invalid */
if (strlen(oops) > 100)
queue_oops(oops);
oopsstart = -1;
inbacktrace = 0;
oopsend = linecount;
free(oops);
}
free(linepointer);
free(linelevel);
linepointer = NULL;
linelevel = NULL;
}
int scan_dmesg(void __unused *unused)
{
char *buffer;
buffer = calloc(getpagesize()+1, 1);
syscall(__NR_syslog, 3, buffer, getpagesize());
extract_oops(buffer, strlen(buffer), 0);
free(buffer);
if (opted_in >= 2)
submit_queue();
else if (opted_in >= 1)
ask_permission();
return 1;
}
void scan_filename(char *filename, int issyslog)
{
char *buffer;
struct stat statb;
FILE *file;
int ret;
size_t buflen;
memset(&statb, 0, sizeof(statb));
ret = stat(filename, &statb);
if (statb.st_size < 1 || ret != 0)
return;
/*
* in theory there's a race here, since someone could spew
* to /var/log/messages before we read it in... we try to
* deal with it by reading at most 1023 bytes extra. If there's
* more than that.. any oops will be in dmesg anyway.
* Do not try to allocate an absurt amount of memory; ignore
* older log messages because they are unlikely to have
* sufficiently recent data to be useful. 32MB is more
* than enough; it's not worth looping through more log
* if the log is larger than that.
*/
buflen = MAX(statb.st_size+1024, 32*1024*1024);
buffer = calloc(buflen, 1);
assert(buffer != NULL);
file = fopen(filename, "rm");
if (!file) {
free(buffer);
return;
}
fseek(file, -buflen, SEEK_END);
ret = fread(buffer, 1, buflen-1, file);
fclose(file);
if (ret > 0)
extract_oops(buffer, buflen-1, issyslog);
free(buffer);
if (opted_in >= 2)
submit_queue();
else if (opted_in >= 1)
ask_permission();
}
|