1 /* Copyright (C) 1992-2022 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
19 #include <hurd/msg_server.h>
28 if (auth != mach_task_self () && ! __USEPORT (AUTH, port == auth)) \
32 /* Snarfing and frobbing the init ports. */
35 _S_msg_get_init_port (mach_port_t msgport
, mach_port_t auth
, int which
,
36 mach_port_t
*result
, mach_msg_type_name_t
*result_type
)
39 *result_type
= MACH_MSG_TYPE_MOVE_SEND
;
40 /* This function adds a new user reference for the *RESULT it gives back.
41 Our reply message uses a move-send right that consumes this reference. */
42 return _hurd_ports_get (which
, result
);
46 _S_msg_set_init_port (mach_port_t msgport
, mach_port_t auth
,
47 int which
, mach_port_t port
)
53 err
= _hurd_ports_set (which
, port
);
55 __mach_port_deallocate (__mach_task_self (), port
);
61 _S_msg_get_init_ports (mach_port_t msgport
, mach_port_t auth
,
63 mach_msg_type_name_t
*ports_type
,
64 mach_msg_type_number_t
*nports
)
66 mach_msg_type_number_t i
;
71 if (err
= __vm_allocate (__mach_task_self (), (vm_address_t
*) ports
,
72 _hurd_nports
* sizeof (mach_port_t
), 1))
74 *nports
= _hurd_nports
;
76 for (i
= 0; i
< _hurd_nports
; ++i
)
77 /* This function adds a new user ref for the *RESULT it gives back.
78 Our reply message uses move-send rights that consumes this ref. */
79 if (err
= _hurd_ports_get (i
, &(*ports
)[i
]))
81 /* Died part way through. Deallocate the ports already fetched. */
83 __mach_port_deallocate (__mach_task_self (), (*ports
)[i
]);
84 __vm_deallocate (__mach_task_self (),
85 (vm_address_t
) *ports
,
86 *nports
* sizeof (mach_port_t
));
90 *ports_type
= MACH_MSG_TYPE_MOVE_SEND
;
95 _S_msg_set_init_ports (mach_port_t msgport
, mach_port_t auth
,
96 const mach_port_t
*ports
, mach_msg_type_number_t nports
)
98 mach_msg_type_number_t i
;
103 for (i
= 0; i
< _hurd_nports
; ++i
)
105 if (err
= _hurd_ports_set (i
, ports
[i
]))
108 __mach_port_deallocate (__mach_task_self (), ports
[i
]);
114 /* Snarfing and frobbing the init ints. */
117 get_int (int which
, int *value
)
122 *value
= _hurd_umask
;
124 case INIT_SIGPENDING
:
126 struct hurd_sigstate
*ss
= _hurd_global_sigstate
;
127 __spin_lock (&ss
->lock
);
128 *value
= ss
->pending
;
129 __spin_unlock (&ss
->lock
);
134 struct hurd_sigstate
*ss
= _hurd_global_sigstate
;
137 __spin_lock (&ss
->lock
);
138 __sigemptyset (&ign
);
139 for (sig
= 1; sig
< NSIG
; ++sig
)
140 if (ss
->actions
[sig
].sa_handler
== SIG_IGN
)
141 __sigaddset (&ign
, sig
);
142 __spin_unlock (&ss
->lock
);
152 _S_msg_get_init_int (mach_port_t msgport
, mach_port_t auth
,
153 int which
, int *value
)
157 return get_int (which
, value
);
161 _S_msg_get_init_ints (mach_port_t msgport
, mach_port_t auth
,
162 int **values
, mach_msg_type_number_t
*nvalues
)
165 mach_msg_type_number_t i
;
169 if (err
= __vm_allocate (__mach_task_self (), (vm_address_t
*) values
,
170 INIT_INT_MAX
* sizeof (int), 1))
172 *nvalues
= INIT_INT_MAX
;
174 for (i
= 0; i
< INIT_INT_MAX
; ++i
)
175 switch (err
= get_int (i
, &(*values
)[i
]))
177 case 0: /* Success. */
179 case EINVAL
: /* Unknown index. */
182 default: /* Lossage. */
183 __vm_deallocate (__mach_task_self (),
184 (vm_address_t
) *values
, INIT_INT_MAX
* sizeof (int));
193 set_int (int which
, int value
)
201 /* These are pretty odd things to do. But you asked for it. */
202 case INIT_SIGPENDING
:
204 struct hurd_sigstate
*ss
= _hurd_global_sigstate
;
205 __spin_lock (&ss
->lock
);
207 __spin_unlock (&ss
->lock
);
212 struct hurd_sigstate
*ss
= _hurd_global_sigstate
;
214 const sigset_t ign
= value
;
215 __spin_lock (&ss
->lock
);
216 for (sig
= 1; sig
< NSIG
; ++sig
)
218 if (__sigismember (&ign
, sig
))
219 ss
->actions
[sig
].sa_handler
= SIG_IGN
;
220 else if (ss
->actions
[sig
].sa_handler
== SIG_IGN
)
221 ss
->actions
[sig
].sa_handler
= SIG_DFL
;
223 __spin_unlock (&ss
->lock
);
227 _hurdsig_traced
= value
;
236 _S_msg_set_init_int (mach_port_t msgport
, mach_port_t auth
,
237 int which
, int value
)
241 return set_int (which
, value
);
245 _S_msg_set_init_ints (mach_port_t msgport
, mach_port_t auth
,
246 const int *values
, mach_msg_type_number_t nvalues
)
249 mach_msg_type_number_t i
;
253 for (i
= 0; i
< INIT_INT_MAX
; ++i
)
254 switch (err
= set_int (i
, values
[i
]))
256 case 0: /* Success. */
258 case EINVAL
: /* Unknown index. */
260 default: /* Lossage. */
269 _S_msg_get_fd (mach_port_t msgport
, mach_port_t auth
, int which
,
270 mach_port_t
*result
, mach_msg_type_name_t
*result_type
)
274 /* This creates a new user reference for the send right.
275 Our reply message will move that reference to the caller. */
276 *result
= __getdport (which
);
277 if (*result
== MACH_PORT_NULL
)
279 *result_type
= MACH_MSG_TYPE_MOVE_SEND
;
285 _S_msg_set_fd (mach_port_t msgport
, mach_port_t auth
,
286 int which
, mach_port_t port
)
290 /* We consume the reference if successful. */
291 return HURD_FD_USE (which
, (_hurd_port2fd (descriptor
, port
, 0), 0));
294 /* Snarfing and frobbing environment variables. */
297 _S_msg_get_env_variable (mach_port_t msgport
,
298 const_string_t variable
, //
299 char **data
, mach_msg_type_number_t
*datalen
)
302 mach_msg_type_number_t valuelen
;
303 const char *value
= getenv (variable
);
308 valuelen
= strlen (value
);
309 if (valuelen
> *datalen
)
311 if (err
= __vm_allocate (__mach_task_self (),
312 (vm_address_t
*) data
, valuelen
, 1))
316 memcpy (*data
, value
, valuelen
);
324 _S_msg_set_env_variable (mach_port_t msgport
, mach_port_t auth
,
325 const_string_t variable
, //
326 const_string_t value
, //
331 if (__setenv (variable
, value
, replace
)) /* XXX name space */
337 _S_msg_get_environment (mach_port_t msgport
,
338 char **data
, mach_msg_type_number_t
*datalen
)
340 /* Pack the environment into an array with nulls separating elements. */
341 if (__environ
!= NULL
)
346 for (p
= __environ
; *p
!= NULL
; ++p
)
347 envlen
+= strlen (*p
) + 1;
349 if (envlen
> *datalen
)
351 if (__vm_allocate (__mach_task_self (),
352 (vm_address_t
*) data
, envlen
, 1))
357 for (p
= __environ
; *p
!= NULL
; ++p
)
358 ap
= __memccpy (ap
, *p
, '\0', ULONG_MAX
);
369 _S_msg_set_environment (mach_port_t msgport
, mach_port_t auth
,
370 const char *data
, mach_msg_type_number_t datalen
)
372 int _hurd_split_args (char *, mach_msg_type_number_t
, char **);
378 envc
= __argz_count (data
, datalen
);
379 envp
= malloc ((envc
+ 1) * sizeof (char *));
382 __argz_extract (data
, datalen
, envp
);
383 __environ
= envp
; /* XXX cooperate with loadenv et al */
389 _S_msg_get_dtable (mach_port_t process
,
392 mach_msg_type_name_t
*dtablePoly
,
393 mach_msg_type_number_t
*dtableCnt
)
396 mach_msg_type_number_t i
;
402 __mutex_lock (&_hurd_dtable_lock
);
404 if (err
= __vm_allocate (__mach_task_self (), (vm_address_t
*) &ports
,
405 _hurd_dtablesize
* sizeof(mach_port_t
), 1))
408 for (i
= 0; i
< _hurd_dtablesize
; i
++)
410 struct hurd_fd
*cell
= _hurd_dtable
[i
];
412 ports
[i
] = MACH_PORT_NULL
;
415 __spin_lock (&cell
->port
.lock
);
416 if (cell
->port
.port
== MACH_PORT_NULL
)
417 ports
[i
] = MACH_PORT_NULL
;
420 ports
[i
] = cell
->port
.port
;
421 /* We will move this send right. */
422 __mach_port_mod_refs (__mach_task_self (), ports
[i
],
423 MACH_PORT_RIGHT_SEND
, +1);
425 __spin_unlock (&cell
->port
.lock
);
430 *dtablePoly
= MACH_MSG_TYPE_MOVE_SEND
;
431 *dtableCnt
= _hurd_dtablesize
;
434 __mutex_unlock (&_hurd_dtable_lock
);
442 _S_msg_set_dtable (mach_port_t process
,
444 const_portarray_t dtable
,
445 mach_msg_type_number_t dtableCnt
)
446 { return EOPNOTSUPP
; }