config root man

Current Path : /usr/src/contrib/ofed/management/libibcommon/src/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/src/contrib/ofed/management/libibcommon/src/stack.c

/*
 * Copyright (c) 2004,2005 Voltaire Inc.  All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     Redistribution and use in source and binary forms, with or
 *     without modification, are permitted provided that the following
 *     conditions are met:
 *
 *      - Redistributions of source code must retain the above
 *        copyright notice, this list of conditions and the following
 *        disclaimer.
 *
 *      - 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.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 */

#define _GNU_SOURCE

#if HAVE_CONFIG_H
#  include <config.h>
#endif /* HAVE_CONFIG_H */

#include <inttypes.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <string.h>
#include <endian.h>
#include <byteswap.h>
#include <sys/poll.h>
#include <syslog.h>
#include <time.h>
#include <signal.h>

#include "common.h"

static int loop_on_panic;

void
stack_dump(void)
{
	if (!__builtin_frame_address(1))
		return
	syslog(LOG_ALERT, "#1 %p\n", __builtin_return_address(1));

	if (!__builtin_frame_address(2))
		return
	syslog(LOG_ALERT, "#2 %p\n", __builtin_return_address(2));

	if (!__builtin_frame_address(3))
		return
	syslog(LOG_ALERT, "#3 %p\n", __builtin_return_address(3));

	if (!__builtin_frame_address(4))
		return
	syslog(LOG_ALERT, "#4 %p\n", __builtin_return_address(4));

	if (!__builtin_frame_address(5))
		return
	syslog(LOG_ALERT, "#5 %p\n", __builtin_return_address(5));

	if (!__builtin_frame_address(6))
		return
	syslog(LOG_ALERT, "#6 %p\n", __builtin_return_address(6));

	if (!__builtin_frame_address(7))
		return
	syslog(LOG_ALERT, "#7 %p\n", __builtin_return_address(7));

	if (!__builtin_frame_address(8))
		return
	syslog(LOG_ALERT, "#8 %p\n", __builtin_return_address(8));

	if (!__builtin_frame_address(9))
		return
	syslog(LOG_ALERT, "#9 %p\n", __builtin_return_address(9));

	if (!__builtin_frame_address(10))
		return
	syslog(LOG_ALERT, "#10 %p\n", __builtin_return_address(10));

	if (!__builtin_frame_address(11))
		return
	syslog(LOG_ALERT, "#11 %p\n", __builtin_return_address(11));

	if (!__builtin_frame_address(12))
		return
	syslog(LOG_ALERT, "#12 %p\n", __builtin_return_address(12));

	if (!__builtin_frame_address(13))
		return
	syslog(LOG_ALERT, "#13 %p\n", __builtin_return_address(13));

	if (!__builtin_frame_address(14))
		return
	syslog(LOG_ALERT, "#14 %p\n", __builtin_return_address(14));

	if (!__builtin_frame_address(15))
		return
	syslog(LOG_ALERT, "#15 %p\n", __builtin_return_address(15));

	if (!__builtin_frame_address(16))
		return
	syslog(LOG_ALERT, "#16 %p\n", __builtin_return_address(16));

	if (!__builtin_frame_address(17))
		return
	syslog(LOG_ALERT, "#17 %p\n", __builtin_return_address(17));

	if (!__builtin_frame_address(18))
		return
	syslog(LOG_ALERT, "#18 %p\n", __builtin_return_address(18));
}

static void
handler(int x)
{
	static int in;
	time_t  tm;

	if (!in) {
		in++;

		syslog(LOG_ALERT, "*** exception handler: died with signal %d", x);
		stack_dump();

		fflush(NULL);

		tm = time(0);
		fprintf(stderr, "%s *** exception handler: died with signal %d pid %d\n",
				ctime(&tm), x, getpid());

		fflush(NULL);
	}

	if (loop_on_panic) {
		fprintf(stderr, "exception handler: entering tight loop ... pid %d\n",getpid());
		for (; ; )
			;
	}

	signal(x, SIG_DFL);
}

void
enable_stack_dump(int loop)
{
	loop_on_panic = loop;
	signal(SIGILL, handler);
	signal(SIGBUS, handler);
	signal(SIGSEGV, handler);
	signal(SIGABRT, handler);
}

Man Man