2018-02-06 06:19:44 +00:00
|
|
|
/*
|
2020-03-27 09:23:49 +00:00
|
|
|
* Copyright (c) 2018 Ariadne Conill <ariadne@dereferenced.org>
|
2019-04-05 19:11:21 +00:00
|
|
|
* Copyright (c) 2019 Bobby Bingham <koorogi@koorogi.info>
|
2018-02-06 06:19:44 +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.
|
|
|
|
*/
|
|
|
|
|
2021-01-03 02:32:54 +00:00
|
|
|
#ifndef _GNU_SOURCE
|
2018-02-06 06:19:44 +00:00
|
|
|
#define _GNU_SOURCE
|
2021-01-03 02:32:54 +00:00
|
|
|
#endif
|
2018-02-06 06:19:44 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
2021-01-03 05:08:54 +00:00
|
|
|
#include <libucontext/libucontext.h>
|
2018-02-06 06:19:44 +00:00
|
|
|
|
|
|
|
|
2020-12-06 08:59:59 +00:00
|
|
|
extern void libucontext_trampoline(void);
|
2018-02-06 06:19:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2020-12-06 12:23:09 +00:00
|
|
|
libucontext_makecontext(libucontext_ucontext_t *ucp, void (*func)(), int argc, ...)
|
2018-02-06 06:19:44 +00:00
|
|
|
{
|
2020-12-06 09:44:45 +00:00
|
|
|
libucontext_greg_t *sp;
|
2018-02-06 06:19:44 +00:00
|
|
|
va_list va;
|
|
|
|
int i;
|
2019-04-05 18:38:36 +00:00
|
|
|
unsigned int stack_args;
|
2018-02-06 06:19:44 +00:00
|
|
|
|
2019-04-05 19:01:10 +00:00
|
|
|
stack_args = argc > 8 ? argc : 0;
|
2018-02-06 06:19:44 +00:00
|
|
|
|
2020-12-06 09:44:45 +00:00
|
|
|
sp = (libucontext_greg_t *) ((uintptr_t) ucp->uc_stack.ss_sp + ucp->uc_stack.ss_size);
|
2019-04-05 19:03:47 +00:00
|
|
|
sp -= stack_args + 4;
|
2020-12-06 09:44:45 +00:00
|
|
|
sp = (libucontext_greg_t *) ((uintptr_t) sp & -16L);
|
2018-02-06 06:19:44 +00:00
|
|
|
|
2018-02-06 08:05:53 +00:00
|
|
|
ucp->uc_mcontext.gp_regs[REG_NIP] = (uintptr_t) func;
|
2020-12-06 08:59:59 +00:00
|
|
|
ucp->uc_mcontext.gp_regs[REG_LNK] = (uintptr_t) &libucontext_trampoline;
|
2018-02-06 08:05:53 +00:00
|
|
|
ucp->uc_mcontext.gp_regs[REG_SP] = (uintptr_t) sp;
|
|
|
|
ucp->uc_mcontext.gp_regs[REG_ENTRY] = (uintptr_t) func;
|
|
|
|
ucp->uc_mcontext.gp_regs[REG_R31] = (uintptr_t) ucp->uc_link;
|
2018-02-06 06:19:44 +00:00
|
|
|
|
2019-04-05 18:35:00 +00:00
|
|
|
sp[0] = 0;
|
2018-02-06 06:19:44 +00:00
|
|
|
|
|
|
|
va_start(va, argc);
|
|
|
|
|
2019-04-05 18:57:53 +00:00
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
if (i < 8)
|
2020-12-06 09:44:45 +00:00
|
|
|
ucp->uc_mcontext.gp_regs[i + 3] = va_arg (va, libucontext_greg_t);
|
2019-04-05 18:57:53 +00:00
|
|
|
else
|
2020-12-06 09:44:45 +00:00
|
|
|
sp[i + 4] = va_arg (va, libucontext_greg_t);
|
2019-04-05 18:57:53 +00:00
|
|
|
}
|
2018-02-06 06:19:44 +00:00
|
|
|
|
|
|
|
va_end(va);
|
|
|
|
}
|
|
|
|
|
2021-01-03 02:33:27 +00:00
|
|
|
#ifdef EXPORT_UNPREFIXED
|
2020-12-06 08:56:59 +00:00
|
|
|
extern __typeof(libucontext_makecontext) makecontext __attribute__((weak, __alias__("libucontext_makecontext")));
|
2021-01-08 10:37:27 +00:00
|
|
|
extern __typeof(libucontext_makecontext) __makecontext __attribute__((weak, __alias__("libucontext_makecontext")));
|
2021-01-03 02:33:27 +00:00
|
|
|
#endif
|