2018-02-01 01:26:34 +00:00
|
|
|
/*
|
2020-03-29 15:04:03 +00:00
|
|
|
* Copyright (c) 2018, 2020 Ariadne Conill <ariadne@dereferenced.org>
|
2018-02-01 01:26:34 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* This software is provided 'as is' and without any warranty, express or
|
|
|
|
* implied. In no event shall the authors be liable for any damages arising
|
|
|
|
* from the use of this software.
|
|
|
|
*/
|
|
|
|
|
2020-03-29 15:04:03 +00:00
|
|
|
#include "defs.h"
|
|
|
|
|
2020-12-06 08:59:59 +00:00
|
|
|
FUNC(libucontext_trampoline)
|
2018-02-01 01:26:34 +00:00
|
|
|
/* get the proper context into position and test for NULL */
|
|
|
|
leal (%esp,%ebx,4), %esp
|
|
|
|
cmpl $0, (%esp)
|
2018-02-15 04:32:16 +00:00
|
|
|
|
2020-12-06 09:03:07 +00:00
|
|
|
/* restore global offset table, exit@plt and libucontext_setcontext@plt need this */
|
2018-02-15 04:32:16 +00:00
|
|
|
call __i686.get_pc_thunk.bx
|
|
|
|
addl $_GLOBAL_OFFSET_TABLE_, %ebx
|
|
|
|
|
|
|
|
/* if we have no linked context, lets get out of here */
|
|
|
|
je no_linked_context
|
2018-02-01 01:26:34 +00:00
|
|
|
|
|
|
|
/* call setcontext to switch to the linked context */
|
2020-12-06 09:03:07 +00:00
|
|
|
call libucontext_setcontext@plt
|
2018-02-01 01:26:34 +00:00
|
|
|
movl %eax, (%esp)
|
|
|
|
|
2018-02-15 04:32:16 +00:00
|
|
|
no_linked_context:
|
2018-02-01 01:26:34 +00:00
|
|
|
/* we are returning into a null context, it seems, so maybe we should exit */
|
|
|
|
call exit@plt
|
|
|
|
|
|
|
|
/* something is really hosed, call hlt to force termination */
|
|
|
|
hlt
|
2018-02-15 04:32:16 +00:00
|
|
|
|
|
|
|
__i686.get_pc_thunk.bx:
|
|
|
|
mov (%esp), %ebx
|
|
|
|
ret
|
2020-12-06 08:59:59 +00:00
|
|
|
END(libucontext_trampoline)
|