2018-01-31 04:11:46 +00:00
|
|
|
/*
|
2020-03-30 05:02:49 +00:00
|
|
|
* Copyright (c) 2018, 2020 Ariadne Conill <ariadne@dereferenced.org>
|
2018-01-31 04:11:46 +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-01-31 04:11:46 +00:00
|
|
|
#define _GNU_SOURCE
|
2021-01-03 02:32:54 +00:00
|
|
|
#endif
|
2018-01-31 04:11:46 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
2020-03-30 05:02:49 +00:00
|
|
|
#include "defs.h"
|
2021-01-03 05:08:54 +00:00
|
|
|
#include <libucontext/libucontext.h>
|
2020-03-30 05:02:49 +00:00
|
|
|
|
|
|
|
|
2020-12-06 08:59:59 +00:00
|
|
|
extern void libucontext_trampoline(void);
|
2018-01-31 04:11:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2020-12-06 13:42:38 +00:00
|
|
|
libucontext_makecontext(libucontext_ucontext_t *ucp, void (*func)(void), int argc, ...)
|
2018-01-31 04:11:46 +00:00
|
|
|
{
|
|
|
|
unsigned long *sp;
|
|
|
|
unsigned long *regp;
|
|
|
|
va_list va;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
sp = (unsigned long *) ((uintptr_t) ucp->uc_stack.ss_sp + ucp->uc_stack.ss_size);
|
|
|
|
sp = (unsigned long *) (((uintptr_t) sp & -16L) - 8);
|
|
|
|
|
|
|
|
if (argc > 4)
|
|
|
|
sp -= (argc - 4);
|
|
|
|
|
|
|
|
ucp->uc_mcontext.arm_sp = (uintptr_t) sp;
|
|
|
|
ucp->uc_mcontext.arm_pc = (uintptr_t) func;
|
|
|
|
ucp->uc_mcontext.arm_r4 = (uintptr_t) ucp->uc_link;
|
2020-12-06 08:59:59 +00:00
|
|
|
ucp->uc_mcontext.arm_lr = (uintptr_t) &libucontext_trampoline;
|
2018-01-31 04:11:46 +00:00
|
|
|
|
|
|
|
va_start(va, argc);
|
|
|
|
|
|
|
|
regp = &(ucp->uc_mcontext.arm_r0);
|
|
|
|
|
|
|
|
for (i = 0; (i < argc && i < 4); i++)
|
|
|
|
*regp++ = va_arg (va, unsigned long);
|
|
|
|
|
|
|
|
for (; i < argc; i++)
|
|
|
|
*sp++ = va_arg (va, unsigned long);
|
|
|
|
|
|
|
|
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-03 02:33:27 +00:00
|
|
|
#endif
|