summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/rtems/rtems-bsd-program.c
blob: 8edd8f93bb5f2d51ed08fd6c5b59669a6bc59b4e (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/**
 * @file
 *
 * @ingroup rtems_bsd_rtems
 *
 * @brief TODO.
 */

/*
 * Copyright (c) 2013 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#include <machine/rtems-bsd-kernel-space.h>
#include <machine/rtems-bsd-thread.h>

#include <rtems/bsd/sys/param.h>
#include <rtems/bsd/sys/types.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <rtems/bsd/sys/lock.h>
#include <sys/mutex.h>

#include <setjmp.h>
#include <stdlib.h>

struct rtems_bsd_program_control {
	void *context;
	int exit_code;
	const char *name;
	jmp_buf return_context;
};

int
rtems_bsd_program_call(const char *name, int (*prog)(void *), void *context)
{
	struct thread *td = rtems_bsd_get_curthread_or_null();
	int exit_code = EXIT_FAILURE;

	if (td != NULL) {
		struct rtems_bsd_program_control *prog_ctrl = td->td_prog_ctrl;

		if (prog_ctrl == NULL) {
			prog_ctrl = malloc(sizeof(*prog_ctrl), M_TEMP, 0);

			if (prog_ctrl != NULL) {
				td->td_prog_ctrl = prog_ctrl;

				prog_ctrl->context = context;
				prog_ctrl->name = name;
				prog_ctrl->exit_code = exit_code;

				if (setjmp(prog_ctrl->return_context) == 0) {
					exit_code = (*prog)(context);
				} else {
					exit_code = prog_ctrl->exit_code;
				}

				td->td_prog_ctrl = NULL;
				free(prog_ctrl, M_TEMP);
			} else {
				errno = ENOMEM;
			}
		} else {
			panic("unexpected BSD program state");
		}
	} else {
		errno = ENOMEM;
	}

	return exit_code;
}

void
rtems_bsd_program_exit(int exit_code)
{
	struct thread *td = rtems_bsd_get_curthread_or_null();

	if (td != NULL) {
		struct rtems_bsd_program_control *prog_ctrl = td->td_prog_ctrl;

		if (prog_ctrl != NULL) {
			prog_ctrl->exit_code = exit_code;
			longjmp(prog_ctrl->return_context, 1);
		}
	}

	panic("unexpected BSD program exit");
}

const char *
rtems_bsd_program_get_name(void)
{
	struct thread *td = rtems_bsd_get_curthread_or_null();
	const char *name = "?";

	if (td != NULL) {
		struct rtems_bsd_program_control *prog_ctrl = td->td_prog_ctrl;

		if (prog_ctrl != NULL) {
			name = prog_ctrl->name;
		}
	}

	return name;
}

void *
rtems_bsd_program_get_context(void)
{
	struct thread *td = rtems_bsd_get_curthread_or_null();
	void *context = NULL;

	if (td != NULL) {
		struct rtems_bsd_program_control *prog_ctrl = td->td_prog_ctrl;

		if (prog_ctrl != NULL) {
			context = prog_ctrl->context;
		}
	}

	return context;
}

struct main_context {
	int argc;
	char **argv;
	int (*main)(int, char **);
};

static int
call_main(void *ctx)
{
	const struct main_context *mc = ctx;

	return (*mc->main)(mc->argc, mc->argv);
}

int
rtems_bsd_program_call_main(const char *name, int (*main)(int, char **),
    int argc, char **argv)
{
	struct main_context mc = {
		.argc = argc,
		.argv = argv,
		.main = main
	};
	int exit_code;

	if (argv[argc] == NULL) {
		exit_code = rtems_bsd_program_call(name, call_main, &mc);
	} else {
		errno = EFAULT;
		exit_code = EXIT_FAILURE;
	}

	return exit_code;
}

static struct mtx program_mtx;

MTX_SYSINIT(rtems_bsd_program, &program_mtx, "BSD program", MTX_DEF);

void
rtems_bsd_program_lock(void)
{
	mtx_lock(&program_mtx);
}

void
rtems_bsd_program_unlock(void)
{
	mtx_unlock(&program_mtx);
}