From: Jeff Dike <jdike@addtoit.com>
To: UML-user <user-mode-linux-devel@lists.sourceforge.net>,
uml-devel <user-mode-linux-devel@lists.sourceforge.net>
Subject: Re: [uml-devel] [RFC PATCH 0/10] SKAS4
Date: Thu, 24 Jan 2008 15:36:15 -0500 [thread overview]
Message-ID: <20080124203615.GB8525@c2.user-mode-linux.org> (raw)
In-Reply-To: <20080123171225.GA7654@c2.user-mode-linux.org>
... and here is arch/um/include/siginfo_segv.h...
Jeff
--
Work email - jdike at linux dot intel dot com
/*
* Copyright (C) 2002- 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
* Licensed under the GPL
*/
#ifndef __SIGINFO_SIGSEGV_H_
#define __SIGINFO_SIGSEGV_H_
/*
* Provide signal.h, except for replacing siginfo_t with one that has
* the CPU trap number and error code in the SIGSEGV case.
*/
#include <time.h>
/* Rename the signal.h siginfo and siginfo_t out of the way */
#define siginfo old_siginfo
#define siginfo_t old_siginfo_t
#include <signal.h>
#undef siginfo
#undef siginfo_t
#define __ARCH_SI_TRAPNO
#define __ARCH_SI_ERROR
/* The new siginfo_t, plus associated definitions */
/*
* This is the size (including padding) of the part of the
* struct siginfo that is before the union.
*/
#ifndef __ARCH_SI_PREAMBLE_SIZE
#define __ARCH_SI_PREAMBLE_SIZE (3 * sizeof(int))
#endif
#define SI_MAX_SIZE 128
#ifndef SI_PAD_SIZE
#define SI_PAD_SIZE ((SI_MAX_SIZE - __ARCH_SI_PREAMBLE_SIZE) / sizeof(int))
#endif
#ifndef __ARCH_SI_UID_T
#define __ARCH_SI_UID_T uid_t
#endif
/*
* The default "si_band" type is "long", as specified by POSIX.
* However, some architectures want to override this to "int"
* for historical compatibility reasons, so we allow that.
*/
#ifndef __ARCH_SI_BAND_T
#define __ARCH_SI_BAND_T long
#endif
#define __user
typedef struct siginfo {
int si_signo;
int si_errno;
int si_code;
union {
int _pad[SI_PAD_SIZE];
/* kill() */
struct {
pid_t _pid; /* sender's pid */
__ARCH_SI_UID_T _uid; /* sender's uid */
} _kill;
/* POSIX.1b timers */
struct {
timer_t _tid; /* timer id */
int _overrun; /* overrun count */
char _pad[sizeof( __ARCH_SI_UID_T) - sizeof(int)];
sigval_t _sigval; /* same as below */
int _sys_private; /* not to be passed to user */
} _timer;
/* POSIX.1b signals */
struct {
pid_t _pid; /* sender's pid */
__ARCH_SI_UID_T _uid; /* sender's uid */
sigval_t _sigval;
} _rt;
/* SIGCHLD */
struct {
pid_t _pid; /* which child */
__ARCH_SI_UID_T _uid; /* sender's uid */
int _status; /* exit code */
clock_t _utime;
clock_t _stime;
} _sigchld;
/* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
struct {
void __user *_addr; /* faulting insn/memory ref. */
#ifdef __ARCH_SI_TRAPNO
int _trapno; /* TRAP # which caused the signal */
#endif
#ifdef __ARCH_SI_ERROR
int _error; /* CPU error code */
#endif
} _sigfault;
/* SIGPOLL */
struct {
__ARCH_SI_BAND_T _band; /* POLL_IN, POLL_OUT, POLL_MSG */
int _fd;
} _sigpoll;
} _sifields;
} siginfo_t;
#ifdef __ARCH_SI_TRAPNO
#define si_trapno _sifields._sigfault._trapno
#endif
#ifdef __ARCH_SI_ERROR
#define si_error _sifields._sigfault._error
#endif
#undef si_addr
#define si_addr _sifields._sigfault._addr
#define GET_FAULTINFO_FROM_SI(fi, si) \
{ \
(fi).cr2 = (unsigned long) (si).si_addr; \
(fi).error_code = (si).si_error; \
(fi).trap_no = (si).si_trapno; \
}
#endif
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
next prev parent reply other threads:[~2008-01-24 20:36 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-23 17:12 [uml-devel] [RFC PATCH 0/10] SKAS4 Jeff Dike
2008-01-24 20:35 ` Jeff Dike
2008-01-24 20:36 ` Jeff Dike [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-01-28 21:38 Jeff Dike
2008-01-14 21:36 Jeff Dike
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080124203615.GB8525@c2.user-mode-linux.org \
--to=jdike@addtoit.com \
--cc=user-mode-linux-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox