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
|
/*
--
-- CANCEL.C
--
-- Lane cancellation support
--
-- Author: Benoit Germain <bnt.germain@gmail.com>
--
--[[
===============================================================================
Copyright (C) 2011-2019 Benoit Germain <bnt.germain@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
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.
===============================================================================
]]--
*/
#include <assert.h>
#include <string.h>
#include "threading.h"
#include "cancel.h"
#include "tools.h"
#include "lanes_private.h"
// ################################################################################################
// ################################################################################################
/*
* Check if the thread in question ('L') has been signalled for cancel.
*
* Called by cancellation hooks and/or pending Linda operations (because then
* the check won't affect performance).
*
* Returns TRUE if any locks are to be exited, and 'cancel_error()' called,
* to make execution of the lane end.
*/
static inline enum e_cancel_request cancel_test( lua_State* L)
{
Lane* const s = get_lane_from_registry( L);
// 's' is NULL for the original main state (and no-one can cancel that)
return s ? s->cancel_request : CANCEL_NONE;
}
// ################################################################################################
//---
// bool = cancel_test()
//
// Available inside the global namespace of lanes
// returns a boolean saying if a cancel request is pending
//
LUAG_FUNC( cancel_test)
{
enum e_cancel_request test = cancel_test( L);
lua_pushboolean( L, test != CANCEL_NONE);
return 1;
}
// ################################################################################################
// ################################################################################################
static void cancel_hook( lua_State* L, lua_Debug* ar)
{
(void)ar;
DEBUGSPEW_CODE( fprintf( stderr, "cancel_hook\n"));
if( cancel_test( L) != CANCEL_NONE)
{
lua_sethook( L, NULL, 0, 0);
cancel_error( L);
}
}
// ################################################################################################
// ################################################################################################
//---
// = thread_cancel( lane_ud [,timeout_secs=0.0] [,force_kill_bool=false] )
//
// The originator thread asking us specifically to cancel the other thread.
//
// 'timeout': <0: wait forever, until the lane is finished
// 0.0: just signal it to cancel, no time waited
// >0: time to wait for the lane to detect cancellation
//
// 'force_kill': if true, and lane does not detect cancellation within timeout,
// it is forcefully killed. Using this with 0.0 timeout means just kill
// (unless the lane is already finished).
//
// Returns: true if the lane was already finished (DONE/ERROR_ST/CANCELLED) or if we
// managed to cancel it.
// false if the cancellation timed out, or a kill was needed.
//
// ################################################################################################
static cancel_result thread_cancel_soft( Lane* s, double secs_, bool_t wake_lindas_)
{
s->cancel_request = CANCEL_SOFT; // it's now signaled to stop
// negative timeout: we don't want to truly abort the lane, we just want it to react to cancel_test() on its own
if( wake_lindas_) // wake the thread so that execution returns from any pending linda operation if desired
{
SIGNAL_T *waiting_on = s->waiting_on;
if( s->status == WAITING && waiting_on != NULL)
{
SIGNAL_ALL( waiting_on);
}
}
return THREAD_WAIT( &s->thread, secs_, &s->done_signal, &s->done_lock, &s->status) ? CR_Cancelled : CR_Timeout;
}
// ################################################################################################
static cancel_result thread_cancel_hard( lua_State* L, Lane* s, double secs_, bool_t force_, double waitkill_timeout_)
{
cancel_result result;
s->cancel_request = CANCEL_HARD; // it's now signaled to stop
{
SIGNAL_T *waiting_on = s->waiting_on;
if( s->status == WAITING && waiting_on != NULL)
{
SIGNAL_ALL( waiting_on);
}
}
result = THREAD_WAIT( &s->thread, secs_, &s->done_signal, &s->done_lock, &s->status) ? CR_Cancelled : CR_Timeout;
if( (result == CR_Timeout) && force_)
{
// Killing is asynchronous; we _will_ wait for it to be done at
// GC, to make sure the data structure can be released (alternative
// would be use of "cancellation cleanup handlers" that at least
// PThread seems to have).
//
THREAD_KILL( &s->thread);
#if THREADAPI == THREADAPI_PTHREAD
// pthread: make sure the thread is really stopped!
// note that this may block forever if the lane doesn't call a cancellation point and pthread doesn't honor PTHREAD_CANCEL_ASYNCHRONOUS
result = THREAD_WAIT( &s->thread, waitkill_timeout_, &s->done_signal, &s->done_lock, &s->status) ? CR_Killed : CR_Timeout;
if( result == CR_Timeout)
{
(void) luaL_error( L, "force-killed lane failed to terminate within %f second%s", waitkill_timeout_, waitkill_timeout_ > 1 ? "s" : "");
}
#else
(void) waitkill_timeout_; // unused
(void) L; // unused
#endif // THREADAPI == THREADAPI_PTHREAD
s->mstatus = KILLED; // mark 'gc' to wait for it
// note that s->status value must remain to whatever it was at the time of the kill
// because we need to know if we can lua_close() the Lua State or not.
result = CR_Killed;
}
return result;
}
// ################################################################################################
cancel_result thread_cancel( lua_State* L, Lane* s, CancelOp op_, double secs_, bool_t force_, double waitkill_timeout_)
{
// remember that lanes are not transferable: only one thread can cancel a lane, so no multithreading issue here
// We can read 's->status' without locks, but not wait for it (if Posix no PTHREAD_TIMEDJOIN)
if( s->mstatus == KILLED)
{
return CR_Killed;
}
if( s->status >= DONE)
{
// say "ok" by default, including when lane is already done
return CR_Cancelled;
}
// signal the linda the wake up the thread so that it can react to the cancel query
// let us hope we never land here with a pointer on a linda that has been destroyed...
if( op_ == CO_Soft)
{
return thread_cancel_soft( s, secs_, force_);
}
return thread_cancel_hard( L, s, secs_, force_, waitkill_timeout_);
}
// ################################################################################################
// ################################################################################################
// > 0: the mask
// = 0: soft
// < 0: hard
static CancelOp which_op( lua_State* L, int idx_)
{
if( lua_type( L, idx_) == LUA_TSTRING)
{
CancelOp op = CO_Invalid;
char const* str = lua_tostring( L, idx_);
if( strcmp( str, "soft") == 0)
{
op = CO_Soft;
}
else if( strcmp( str, "count") == 0)
{
op = CO_Count;
}
else if( strcmp( str, "line") == 0)
{
op = CO_Line;
}
else if( strcmp( str, "call") == 0)
{
op = CO_Call;
}
else if( strcmp( str, "ret") == 0)
{
op = CO_Ret;
}
else if( strcmp( str, "hard") == 0)
{
op = CO_Hard;
}
lua_remove( L, idx_); // argument is processed, remove it
if( op == CO_Invalid)
{
luaL_error( L, "invalid hook option %s", str);
}
return op;
}
return CO_Hard;
}
// ################################################################################################
// bool[,reason] = lane_h:cancel( [mode, hookcount] [, timeout] [, force [, forcekill_timeout]])
LUAG_FUNC( thread_cancel)
{
Lane* s = lua_toLane( L, 1);
double secs = 0.0;
CancelOp op = which_op( L, 2); // this removes the op string from the stack
if( op > 0) // hook is requested
{
int hook_count = (int) lua_tointeger( L, 2);
lua_remove( L, 2); // argument is processed, remove it
if( hook_count < 1)
{
return luaL_error( L, "hook count cannot be < 1");
}
lua_sethook( s->L, cancel_hook, op, hook_count);
}
if( lua_type( L, 2) == LUA_TNUMBER)
{
secs = lua_tonumber( L, 2);
lua_remove( L, 2); // argument is processed, remove it
if( secs < 0.0)
{
return luaL_error( L, "cancel timeout cannot be < 0");
}
}
{
bool_t force = lua_toboolean( L, 2); // FALSE if nothing there
double forcekill_timeout = luaL_optnumber( L, 3, 0.0);
switch( thread_cancel( L, s, op, secs, force, forcekill_timeout))
{
case CR_Timeout:
lua_pushboolean( L, 0);
lua_pushstring( L, "timeout");
return 2;
case CR_Cancelled:
lua_pushboolean( L, 1);
push_thread_status( L, s);
return 2;
case CR_Killed:
lua_pushboolean( L, 1);
push_thread_status( L, s);
return 2;
}
}
// should never happen, only here to prevent the compiler from complaining of "not all control paths returning a value"
return 0;
}
|