1 /* Copyright (C) 1992, 1994, 1995 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 Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 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 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
20 #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 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
;
126 struct hurd_sigstate
*ss
= _hurd_thread_sigstate (_hurd_sigthread
);
127 __spin_lock (&ss
->lock
);
128 *value
= ss
->blocked
;
129 __spin_unlock (&ss
->lock
);
132 case INIT_SIGPENDING
:
134 struct hurd_sigstate
*ss
= _hurd_thread_sigstate (_hurd_sigthread
);
135 __spin_lock (&ss
->lock
);
136 *value
= ss
->pending
;
137 __spin_unlock (&ss
->lock
);
142 struct hurd_sigstate
*ss
= _hurd_thread_sigstate (_hurd_sigthread
);
145 __spin_lock (&ss
->lock
);
146 __sigemptyset (&ign
);
147 for (sig
= 1; sig
< NSIG
; ++sig
)
148 if (ss
->actions
[sig
].sa_handler
== SIG_IGN
)
149 __sigaddset (&ign
, sig
);
150 __spin_unlock (&ss
->lock
);
160 _S_msg_get_init_int (mach_port_t msgport
, mach_port_t auth
,
161 int which
, int *value
)
165 return get_int (which
, value
);
169 _S_msg_get_init_ints (mach_port_t msgport
, mach_port_t auth
,
170 int **values
, mach_msg_type_number_t
*nvalues
)
173 mach_msg_type_number_t i
;
177 if (err
= __vm_allocate (__mach_task_self (), (vm_address_t
*) values
,
178 INIT_INT_MAX
* sizeof (int), 1))
180 *nvalues
= INIT_INT_MAX
;
182 for (i
= 0; i
< INIT_INT_MAX
; ++i
)
183 switch (err
= get_int (i
, &(*values
)[i
]))
185 case 0: /* Success. */
187 case EINVAL
: /* Unknown index. */
190 default: /* Lossage. */
191 __vm_deallocate (__mach_task_self (),
192 (vm_address_t
) *values
, INIT_INT_MAX
* sizeof (int));
201 set_int (int which
, int value
)
209 /* These are pretty odd things to do. But you asked for it. */
212 struct hurd_sigstate
*ss
= _hurd_thread_sigstate (_hurd_sigthread
);
213 __spin_lock (&ss
->lock
);
215 __spin_unlock (&ss
->lock
);
218 case INIT_SIGPENDING
:
220 struct hurd_sigstate
*ss
= _hurd_thread_sigstate (_hurd_sigthread
);
221 __spin_lock (&ss
->lock
);
223 __spin_unlock (&ss
->lock
);
228 struct hurd_sigstate
*ss
= _hurd_thread_sigstate (_hurd_sigthread
);
230 const sigset_t ign
= value
;
231 __spin_lock (&ss
->lock
);
232 for (sig
= 1; sig
< NSIG
; ++sig
)
234 if (__sigismember (&ign
, sig
))
235 ss
->actions
[sig
].sa_handler
= SIG_IGN
;
236 else if (ss
->actions
[sig
].sa_handler
== SIG_IGN
)
237 ss
->actions
[sig
].sa_handler
= SIG_DFL
;
239 __spin_unlock (&ss
->lock
);
248 _S_msg_set_init_int (mach_port_t msgport
, mach_port_t auth
,
249 int which
, int value
)
253 return set_int (which
, value
);
257 _S_msg_set_init_ints (mach_port_t msgport
, mach_port_t auth
,
258 int *values
, mach_msg_type_number_t nvalues
)
261 mach_msg_type_number_t i
;
265 for (i
= 0; i
< INIT_INT_MAX
; ++i
)
266 switch (err
= set_int (i
, values
[i
]))
268 case 0: /* Success. */
270 case EINVAL
: /* Unknown index. */
272 default: /* Lossage. */
281 _S_msg_get_fd (mach_port_t msgport
, mach_port_t auth
,
282 int which
, mach_port_t
*result
, mach_msg_type_name_t
*result_type
)
286 /* This creates a new user reference for the send right.
287 Our reply message will move that reference to the caller. */
288 *result
= __getdport (which
);
289 if (*result
== MACH_PORT_NULL
)
291 *result_type
= MACH_MSG_TYPE_MOVE_SEND
;
297 _S_msg_set_fd (mach_port_t msgport
, mach_port_t auth
,
298 int which
, mach_port_t port
)
302 /* We consume the reference if successful. */
303 return HURD_FD_USE (which
, (_hurd_port2fd (descriptor
, port
, 0), 0));
306 /* Snarfing and frobbing environment variables. */
309 _S_msg_get_env_variable (mach_port_t msgport
,
311 char **data
, mach_msg_type_number_t
*datalen
)
313 const char *value
= getenv (variable
);
318 /* XXX this pointer might become invalid */
320 *datalen
= strlen (value
);
326 _S_msg_set_env_variable (mach_port_t msgport
, mach_port_t auth
,
333 if (setenv (variable
, value
, replace
)) /* XXX name space */
339 _S_msg_get_environment (mach_port_t msgport
,
340 char **data
, mach_msg_type_number_t
*datalen
)
342 /* Pack the environment into an array with nulls separating elements. */
343 if (__environ
!= NULL
)
348 for (p
= __environ
; *p
!= NULL
; ++p
)
349 envlen
+= strlen (*p
) + 1;
351 if (envlen
> *datalen
)
353 if (__vm_allocate (__mach_task_self (),
354 (vm_address_t
*) data
, envlen
, 1))
359 for (p
= __environ
; *p
!= NULL
; ++p
)
360 ap
= __memccpy (ap
, *p
, '\0', ULONG_MAX
);
371 _S_msg_set_environment (mach_port_t msgport
, mach_port_t auth
,
372 char *data
, mach_msg_type_number_t datalen
)
374 int _hurd_split_args (char *, mach_msg_type_number_t
, char **);
380 envc
= _hurd_split_args (data
, datalen
, NULL
);
381 envp
= malloc ((envc
+ 1) * sizeof (char *));
384 _hurd_split_args (data
, datalen
, envp
);
385 __environ
= envp
; /* XXX cooperate with loadenv et al */
389 /* Get and frob the exec flags. */
392 _S_msg_get_exec_flags (mach_port_t process
, mach_port_t auth
,
397 *flags
= _hurd_exec_flags
;
402 _S_msg_set_all_exec_flags (mach_port_t process
, mach_port_t auth
,
407 _hurd_exec_flags
= flags
;
412 _S_msg_set_some_exec_flags (mach_port_t process
, mach_port_t auth
,
417 _hurd_exec_flags
|= flags
;
422 _S_msg_clear_some_exec_flags (mach_port_t process
, mach_port_t auth
,
427 _hurd_exec_flags
&= ~flags
;
435 _S_msg_get_dtable (mach_port_t process
,
438 mach_msg_type_name_t
*dtablePoly
,
439 mach_msg_type_number_t
*dtableCnt
)
440 { return EOPNOTSUPP
; }
443 _S_msg_set_dtable (mach_port_t process
,
446 mach_msg_type_number_t dtableCnt
)
447 { return EOPNOTSUPP
; }
450 _S_msg_startup_dosync (mach_port_t process
)
451 { return EOPNOTSUPP
; }