2018-02-15 05:54:17 +00:00
|
|
|
/*
|
2020-03-30 06:12:07 +00:00
|
|
|
* Copyright (c) 2018, 2020 Ariadne Conill <ariadne@dereferenced.org>
|
2018-02-15 05:54:17 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern void __start_context(void);
|
|
|
|
extern int __setcontext(const ucontext_t *ucp);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
__makecontext(ucontext_t *ucp, void (*func)(void), int argc, ...)
|
|
|
|
{
|
2020-03-30 06:04:16 +00:00
|
|
|
greg_t *sp;
|
2018-02-15 05:54:17 +00:00
|
|
|
va_list va;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
sp = (greg_t *) ((uintptr_t) ucp->uc_stack.ss_sp + ucp->uc_stack.ss_size);
|
2020-03-30 06:04:16 +00:00
|
|
|
sp = (greg_t *) (((uintptr_t) sp & -8L));
|
2018-02-15 05:54:17 +00:00
|
|
|
|
|
|
|
ucp->uc_mcontext.gregs[7] = (uintptr_t) func;
|
|
|
|
ucp->uc_mcontext.gregs[8] = (uintptr_t) ucp->uc_link;
|
|
|
|
ucp->uc_mcontext.gregs[9] = (uintptr_t) &__setcontext;
|
|
|
|
ucp->uc_mcontext.gregs[14] = (uintptr_t) &__start_context;
|
|
|
|
|
|
|
|
va_start(va, argc);
|
|
|
|
|
2020-03-30 06:04:16 +00:00
|
|
|
for (i = 0; i < argc && i < 5; i++)
|
|
|
|
ucp->uc_mcontext.gregs[i + 2] = va_arg (va, greg_t);
|
|
|
|
|
|
|
|
if (argc > 5)
|
|
|
|
{
|
|
|
|
sp -= argc - 5;
|
|
|
|
|
|
|
|
for (i = 5; i < argc; i++)
|
|
|
|
sp[i - 5] = va_arg (va, greg_t);
|
|
|
|
}
|
2018-02-15 05:54:17 +00:00
|
|
|
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
/* make room for backchain / register save area */
|
|
|
|
sp -= 20;
|
|
|
|
*sp = 0;
|
|
|
|
|
|
|
|
/* set up %r15 as sp */
|
|
|
|
ucp->uc_mcontext.gregs[15] = (uintptr_t) sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern __typeof(__makecontext) makecontext __attribute__((weak, __alias__("__makecontext")));
|