-
Notifications
You must be signed in to change notification settings - Fork 2
/
threads07.c
165 lines (131 loc) · 3.54 KB
/
threads07.c
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
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <inttypes.h>
#include <ucontext.h>
#include <pthread.h>
#include <signal.h>
#define SLEEP_TIME 4
#define STRING(x) XSTRING(x)
#define XSTRING(x) #x
/********************/
/* HELPERS */
/********************/
/*******************/
/* SIGNAL HANDLERS */
/*******************/
/* SIMPLE SIGNAL HANDLER */
void signal_handler(int sig)
{
switch(sig)
{
case SIGTRAP: printf("Received a SIGTRAP\n");
// while (1 == 1) ;
break;
case SIGILL : printf("Received a SIGILL\n");
break;
default : printf("Received an unexpected signal!\n");
break;
}
printf("Exiting from signal_handler...\n");
}
/* ADVANCED SIGNAL HANDLER */
void advanced_signal_handler(int signo, siginfo_t *si, void *data)
{
ucontext_t *uc = (ucontext_t *)data; // Set a local pointer to uc.
printf("* Received a SIGTRAP\n");
printf("* si->si_addr = %p\n", si->si_addr);
printf("* uc->uc_mcontext.regs->nip: %p\n", (void *) uc->uc_mcontext.regs->nip);
// uc->uc_mcontext.regs->nip += 4; // Skip illegal instruction.
uc->uc_mcontext.gp_regs[32] += 4; // Same as above ;-)
}
/***********/
/* WORKERS */
/***********/
void* worker(void *in)
{
pthread_t my_id;
my_id = pthread_self();
while (1 == 1)
{
printf("I'm thread %lx\n", my_id);
sleep(1);
}
}
void* worker_with_trap(void *in)
{
pthread_t my_id;
my_id = pthread_self();
while (1 == 1)
{
printf("I'm thread %lx. I'll trigger a hardware SIGTRAP every "
STRING(SLEEP_TIME)
" seconds\n", my_id);
// Wait a little bit to trigger SIGTRAP.
sleep(SLEEP_TIME);
// Unconditional trap instruction that provokes a HW exception.
// It's a PowerPC specific instruction.
//asm (".long 0x0 \n\t");
asm ("trap \n\t");
}
}
void* worker_with_htm(void *sig)
{
pthread_t my_id;
my_id = pthread_self();
while (1 == 1)
{
printf("I'm thread %lx. I'll perform an HTM transaction every 1 second\n", my_id);
sleep(1);
asm (
" tbegin. \n\t"
" beq 2f \n\t"
" trap \n\t"
" tend. \n\t"
"2: \n\t"
:
:
:
);
}
}
/* Main thread BLOCKs SIGTRAP -> idle worker
t0 thread BLOCKs SIGTRAP -> TRAP worker
t1 thread UNBLOCKs SIGTRAP -> HTM worker */
int main(void)
{
pthread_t t0;
pthread_t t1;
sigset_t sigset;
struct sigaction sa;
// Install thread-shared signal handler.
// sa.sa_flags = SA_ONSTACK | SA_RESTART | SA_SIGINFO;
sa.sa_flags = SA_SIGINFO;
sa.sa_sigaction = advanced_signal_handler;
sigaction(SIGTRAP, &sa, NULL);
sigaction(SIGILL , &sa, NULL);
// Create the set containing signals to be unblocked.
sigemptyset(&sigset);
sigaddset(&sigset, SIGTRAP);
sigaddset(&sigset, SIGILL );
pthread_sigmask(SIG_BLOCK, &sigset, NULL);
pthread_create(&t0, NULL, worker /* _with_trap */, (void*) &sigset);
// signal(SIGTRAP, signal_handler);
// signal(SIGILL , signal_handler);
// signal(SIGHUP , signal_handler);
pthread_sigmask(SIG_UNBLOCK, &sigset, NULL);
pthread_create(&t1, NULL, worker_with_htm, (void*) &sigset);
// Let's see if after setting mask for t1 main, which unblocks
// SIGTRAP, main thread remains with SITRAP blocked.
sigprocmask(SIG_BLOCK, &sigset, NULL);
while (1 == 1)
{
printf("Hi, I'm the main thread ;-)\n");
sleep(1); // MT-safe, hum?
}
// I don't expect pc will ever reach here.
pthread_join(t0, NULL);
pthread_join(t1, NULL);
exit(0);
}