about summary refs log tree commit diff
path: root/mach/setup-thread.c
blob: 1e7f9953c64053f0f8289706c2ae4f0054d1db2a (plain) (blame)
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
/* Copyright (C) 1991-2024 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#include <mach.h>
#include <mach/setup-thread.h>
#include <thread_state.h>
#include <string.h>
#include <ldsodefs.h>
#include "sysdep.h"		/* Defines stack direction.  */

#define	STACK_SIZE	(16 * 1024 * 1024) /* 16MB, arbitrary.  */

static kern_return_t
mach_setup_thread_impl (task_t task, thread_t thread, int is_call,
			void *pc, vm_address_t *stack_base,
			vm_size_t *stack_size)
{
  kern_return_t error;
  struct machine_thread_state ts;
  mach_msg_type_number_t tssize = MACHINE_THREAD_STATE_COUNT;
  vm_address_t stack, stack_start;
  vm_size_t size;
  int anywhere;

  memset (&ts, 0, sizeof (ts));

  size = stack_size ? *stack_size ? : STACK_SIZE : STACK_SIZE;
  stack = stack_base ? *stack_base ? : 0 : 0;
  anywhere = !stack_base || !*stack_base;

  error = __vm_allocate (task, &stack, size + __vm_page_size, anywhere);
  if (error)
    return error;

  if (stack_size)
    *stack_size = size;

#ifdef STACK_GROWTH_DOWN
  stack_start = stack + __vm_page_size;
#elif defined (STACK_GROWTH_UP)
  stack_start = stack;
  stack += size;
#else
  #error stack direction unknown
#endif
  if (stack_base)
    *stack_base = stack_start;

  if (is_call)
    MACHINE_THREAD_STATE_SETUP_CALL (&ts, stack_start, size, pc);
  else
    {
      MACHINE_THREAD_STATE_SET_PC (&ts, pc);
      MACHINE_THREAD_STATE_SET_SP (&ts, stack_start, size);
    }

  /* Create the red zone.  */
  if (error = __vm_protect (task, stack, __vm_page_size, 0, VM_PROT_NONE))
    return error;

  return __thread_set_state (thread, MACHINE_NEW_THREAD_STATE_FLAVOR,
			     (natural_t *) &ts, tssize);
}

/* Give THREAD a stack and set it to run at PC when resumed.
   If *STACK_SIZE is nonzero, that size of stack is allocated.
   If *STACK_BASE is nonzero, that stack location is used.
   If STACK_BASE is not null it is filled in with the chosen stack base.
   If STACK_SIZE is not null it is filled in with the chosen stack size.
   Regardless, an extra page of red zone is allocated off the end; this
   is not included in *STACK_SIZE.  */

kern_return_t
__mach_setup_thread (task_t task, thread_t thread, void *pc,
		     vm_address_t *stack_base, vm_size_t *stack_size)
{
  return mach_setup_thread_impl (task, thread, 0, pc, stack_base, stack_size);
}

weak_alias (__mach_setup_thread, mach_setup_thread)

kern_return_t
__mach_setup_thread_call (task_t task, thread_t thread, void *pc,
			  vm_address_t *stack_base, vm_size_t *stack_size)
{
  return mach_setup_thread_impl (task, thread, 1, pc, stack_base, stack_size);
}

/* Give THREAD a TLS area.  */
kern_return_t
__mach_setup_tls (thread_t thread)
{
  tcbhead_t *tcb = _dl_allocate_tls (NULL);
  if (tcb == NULL)
    return KERN_RESOURCE_SHORTAGE;

  return _hurd_tls_new (thread, tcb);
}

weak_alias (__mach_setup_tls, mach_setup_tls)