2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _ALPHA_THREAD_INFO_H
|
|
|
|
#define _ALPHA_THREAD_INFO_H
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/types.h>
|
|
|
|
#include <asm/hwrpb.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
struct thread_info {
|
|
|
|
struct pcb_struct pcb; /* palcode state */
|
|
|
|
|
|
|
|
struct task_struct *task; /* main task structure */
|
|
|
|
unsigned int flags; /* low level flags */
|
|
|
|
unsigned int ieee_state; /* see fpu.h */
|
|
|
|
|
|
|
|
struct exec_domain *exec_domain; /* execution domain */
|
|
|
|
mm_segment_t addr_limit; /* thread address space */
|
|
|
|
unsigned cpu; /* current CPU */
|
|
|
|
int preempt_count; /* 0 => preemptable, <0 => BUG */
|
|
|
|
|
|
|
|
int bpt_nsaved;
|
|
|
|
unsigned long bpt_addr[2]; /* breakpoint handling */
|
|
|
|
unsigned int bpt_insn[2];
|
|
|
|
|
|
|
|
struct restart_block restart_block;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macros/functions for gaining access to the thread information structure.
|
|
|
|
*/
|
|
|
|
#define INIT_THREAD_INFO(tsk) \
|
|
|
|
{ \
|
|
|
|
.task = &tsk, \
|
|
|
|
.exec_domain = &default_exec_domain, \
|
|
|
|
.addr_limit = KERNEL_DS, \
|
2009-07-10 20:57:56 +08:00
|
|
|
.preempt_count = INIT_PREEMPT_COUNT, \
|
2005-04-17 06:20:36 +08:00
|
|
|
.restart_block = { \
|
|
|
|
.fn = do_no_restart_syscall, \
|
|
|
|
}, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define init_thread_info (init_thread_union.thread_info)
|
|
|
|
#define init_stack (init_thread_union.stack)
|
|
|
|
|
|
|
|
/* How to get the thread information struct from C. */
|
|
|
|
register struct thread_info *__current_thread_info __asm__("$8");
|
|
|
|
#define current_thread_info() __current_thread_info
|
|
|
|
|
2009-11-12 06:26:30 +08:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* Thread information allocation. */
|
2008-07-25 16:45:40 +08:00
|
|
|
#define THREAD_SIZE_ORDER 1
|
2005-04-17 06:20:36 +08:00
|
|
|
#define THREAD_SIZE (2*PAGE_SIZE)
|
|
|
|
|
|
|
|
#define PREEMPT_ACTIVE 0x40000000
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Thread information flags:
|
|
|
|
* - these are process state flags and used from assembly
|
2009-12-01 11:44:40 +08:00
|
|
|
* - pending work-to-be-done flags come first and must be assigned to be
|
|
|
|
* within bits 0 to 7 to fit in and immediate operand.
|
|
|
|
* - ALPHA_UAC_SHIFT below must be kept consistent with the unaligned
|
|
|
|
* control flags.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* TIF_SYSCALL_TRACE is known to be 0 via blbs.
|
|
|
|
*/
|
|
|
|
#define TIF_SYSCALL_TRACE 0 /* syscall trace active */
|
2009-12-01 11:44:40 +08:00
|
|
|
#define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
|
|
|
|
#define TIF_SIGPENDING 2 /* signal pending */
|
|
|
|
#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
|
|
|
|
#define TIF_POLLING_NRFLAG 8 /* poll_idle is polling NEED_RESCHED */
|
|
|
|
#define TIF_DIE_IF_KERNEL 9 /* dik recursion lock */
|
alpha: unbreak osf_setsysinfo(SSI_NVPAIRS, [SSIN_UACPROC, UAC_SIGBUS])
The bug was accidentally found by the following program:
#include <asm/sysinfo.h>
#include <asm/unistd.h>
#include <sys/syscall.h>
static int setsysinfo(unsigned long op, void *buffer, unsigned long size,
int *start, void *arg, unsigned long flag) {
return syscall(__NR_osf_setsysinfo, op, buffer, size, start, arg, flag);
}
int main(int argc, char **argv) {
short x[10];
unsigned int buf[2] = { SSIN_UACPROC, UAC_SIGBUS, };
setsysinfo(SSI_NVPAIRS, buf, 1, 0, 0, 0);
int *y = (int*) (x+1);
*y = 0;
return 0;
}
The program shoud fail on SIGBUS, but didn't.
The patch is a second part of userspace flag fix (commit 745dd2405e28
"Alpha: Rearrange thread info flags fixing two regressions").
Deleted outdated out-of-sync 'UAC_SHIFT' (the cause of bug) in favour of
'ALPHA_UAC_SHIFT'.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Acked-by: Michael Cree <mcree@orcon.net.nz>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-26 06:59:02 +08:00
|
|
|
#define TIF_UAC_NOPRINT 10 /* ! Preserve sequence of following */
|
|
|
|
#define TIF_UAC_NOFIX 11 /* ! flags as they match */
|
|
|
|
#define TIF_UAC_SIGBUS 12 /* ! userspace part of 'osf_sysinfo' */
|
2010-05-14 17:13:27 +08:00
|
|
|
#define TIF_MEMDIE 13 /* is terminating due to OOM killer */
|
2009-12-01 11:44:40 +08:00
|
|
|
#define TIF_RESTORE_SIGMASK 14 /* restore signal mask in do_signal */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
|
|
|
|
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
|
|
|
|
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
|
|
|
|
#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
|
2009-09-02 16:14:16 +08:00
|
|
|
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Work to do on interrupt/exception return. */
|
2009-09-02 16:14:16 +08:00
|
|
|
#define _TIF_WORK_MASK (_TIF_SIGPENDING | _TIF_NEED_RESCHED | \
|
|
|
|
_TIF_NOTIFY_RESUME)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* Work to do on any return to userspace. */
|
|
|
|
#define _TIF_ALLWORK_MASK (_TIF_WORK_MASK \
|
|
|
|
| _TIF_SYSCALL_TRACE)
|
|
|
|
|
alpha: unbreak osf_setsysinfo(SSI_NVPAIRS, [SSIN_UACPROC, UAC_SIGBUS])
The bug was accidentally found by the following program:
#include <asm/sysinfo.h>
#include <asm/unistd.h>
#include <sys/syscall.h>
static int setsysinfo(unsigned long op, void *buffer, unsigned long size,
int *start, void *arg, unsigned long flag) {
return syscall(__NR_osf_setsysinfo, op, buffer, size, start, arg, flag);
}
int main(int argc, char **argv) {
short x[10];
unsigned int buf[2] = { SSIN_UACPROC, UAC_SIGBUS, };
setsysinfo(SSI_NVPAIRS, buf, 1, 0, 0, 0);
int *y = (int*) (x+1);
*y = 0;
return 0;
}
The program shoud fail on SIGBUS, but didn't.
The patch is a second part of userspace flag fix (commit 745dd2405e28
"Alpha: Rearrange thread info flags fixing two regressions").
Deleted outdated out-of-sync 'UAC_SHIFT' (the cause of bug) in favour of
'ALPHA_UAC_SHIFT'.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Acked-by: Michael Cree <mcree@orcon.net.nz>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Matt Turner <mattst88@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-26 06:59:02 +08:00
|
|
|
#define ALPHA_UAC_SHIFT TIF_UAC_NOPRINT
|
2007-05-07 05:50:38 +08:00
|
|
|
#define ALPHA_UAC_MASK (1 << TIF_UAC_NOPRINT | 1 << TIF_UAC_NOFIX | \
|
|
|
|
1 << TIF_UAC_SIGBUS)
|
|
|
|
|
|
|
|
#define SET_UNALIGN_CTL(task,value) ({ \
|
2007-05-09 17:35:17 +08:00
|
|
|
task_thread_info(task)->flags = ((task_thread_info(task)->flags & \
|
2007-05-07 05:50:38 +08:00
|
|
|
~ALPHA_UAC_MASK) \
|
|
|
|
| (((value) << ALPHA_UAC_SHIFT) & (1<<TIF_UAC_NOPRINT))\
|
|
|
|
| (((value) << (ALPHA_UAC_SHIFT + 1)) & (1<<TIF_UAC_SIGBUS)) \
|
|
|
|
| (((value) << (ALPHA_UAC_SHIFT - 1)) & (1<<TIF_UAC_NOFIX)));\
|
|
|
|
0; })
|
|
|
|
|
|
|
|
#define GET_UNALIGN_CTL(task,value) ({ \
|
2007-05-09 17:35:17 +08:00
|
|
|
put_user((task_thread_info(task)->flags & (1 << TIF_UAC_NOPRINT))\
|
2007-05-07 05:50:38 +08:00
|
|
|
>> ALPHA_UAC_SHIFT \
|
2007-05-09 17:35:17 +08:00
|
|
|
| (task_thread_info(task)->flags & (1 << TIF_UAC_SIGBUS))\
|
2007-05-07 05:50:38 +08:00
|
|
|
>> (ALPHA_UAC_SHIFT + 1) \
|
2007-05-09 17:35:17 +08:00
|
|
|
| (task_thread_info(task)->flags & (1 << TIF_UAC_NOFIX))\
|
2007-05-07 05:50:38 +08:00
|
|
|
>> (ALPHA_UAC_SHIFT - 1), \
|
|
|
|
(int __user *)(value)); \
|
|
|
|
})
|
|
|
|
|
2012-06-02 02:22:01 +08:00
|
|
|
#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _ALPHA_THREAD_INFO_H */
|