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
|
/*
* process related system call shims and definitions
*
* Copyright (c) 2013-14 Stacey D. Son
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef BSD_USER_FREEBSD_OS_PROC_H
#define BSD_USER_FREEBSD_OS_PROC_H
#include <sys/param.h>
#include <sys/procctl.h>
#include <sys/signal.h>
#include <sys/types.h>
#include <sys/procdesc.h>
#include <sys/wait.h>
#include <unistd.h>
#include "target_arch_cpu.h"
pid_t safe_wait4(pid_t wpid, int *status, int options, struct rusage *rusage);
pid_t safe_wait6(idtype_t idtype, id_t id, int *status, int options,
struct __wrusage *wrusage, siginfo_t *infop);
/* execve(2) */
static inline abi_long do_freebsd_execve(abi_ulong path_or_fd, abi_ulong argp,
abi_ulong envp)
{
return freebsd_exec_common(path_or_fd, argp, envp, 0);
}
/* fexecve(2) */
static inline abi_long do_freebsd_fexecve(abi_ulong path_or_fd, abi_ulong argp,
abi_ulong envp)
{
return freebsd_exec_common(path_or_fd, argp, envp, 1);
}
/* wait4(2) */
static inline abi_long do_freebsd_wait4(abi_long arg1, abi_ulong target_status,
abi_long arg3, abi_ulong target_rusage)
{
abi_long ret;
int status;
struct rusage rusage, *rusage_ptr = NULL;
if (target_rusage) {
rusage_ptr = &rusage;
}
ret = get_errno(safe_wait4(arg1, &status, arg3, rusage_ptr));
if (ret < 0) {
return ret;
}
if (target_status != 0) {
status = host_to_target_waitstatus(status);
if (put_user_s32(status, target_status) != 0) {
return -TARGET_EFAULT;
}
}
if (target_rusage != 0) {
host_to_target_rusage(target_rusage, &rusage);
}
return ret;
}
/* wait6(2) */
static inline abi_long do_freebsd_wait6(void *cpu_env, abi_long idtype,
abi_long id1, abi_long id2,
abi_ulong target_status, abi_long options, abi_ulong target_wrusage,
abi_ulong target_infop, abi_ulong pad1)
{
abi_long ret;
int status;
struct __wrusage wrusage, *wrusage_ptr = NULL;
siginfo_t info;
void *p;
if (regpairs_aligned(cpu_env) != 0) {
/* printf("shifting args\n"); */
/* 64-bit id is aligned, so shift all the arguments over by one */
id1 = id2;
id2 = target_status;
target_status = options;
options = target_wrusage;
target_wrusage = target_infop;
target_infop = pad1;
}
if (target_wrusage) {
wrusage_ptr = &wrusage;
}
ret = get_errno(safe_wait6(idtype, target_arg64(id1, id2),
&status, options, wrusage_ptr, &info));
if (ret < 0) {
return ret;
}
if (target_status != 0) {
status = host_to_target_waitstatus(status);
if (put_user_s32(status, target_status) != 0) {
return -TARGET_EFAULT;
}
}
if (target_wrusage != 0) {
host_to_target_wrusage(target_wrusage, &wrusage);
}
if (target_infop != 0) {
p = lock_user(VERIFY_WRITE, target_infop, sizeof(target_siginfo_t), 0);
if (p == NULL) {
return -TARGET_EFAULT;
}
host_to_target_siginfo(p, &info);
unlock_user(p, target_infop, sizeof(target_siginfo_t));
}
return ret;
}
/* setloginclass(2) */
static inline abi_long do_freebsd_setloginclass(abi_ulong arg1)
{
abi_long ret;
void *p;
p = lock_user_string(arg1);
if (p == NULL) {
return -TARGET_EFAULT;
}
ret = get_errno(setloginclass(p));
unlock_user(p, arg1, 0);
return ret;
}
/* getloginclass(2) */
static inline abi_long do_freebsd_getloginclass(abi_ulong arg1, abi_ulong arg2)
{
abi_long ret;
void *p;
p = lock_user(VERIFY_WRITE, arg1, arg2, 0);
if (p == NULL) {
return -TARGET_EFAULT;
}
ret = get_errno(getloginclass(p, arg2));
unlock_user(p, arg1, arg2);
return ret;
}
#endif /* BSD_USER_FREEBSD_OS_PROC_H */
|