merge guile-vm to guile
[bpt/guile.git] / libguile / posix.c
1 /* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18
19 \f
20 #if HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <errno.h>
26
27 #include "libguile/_scm.h"
28 #include "libguile/dynwind.h"
29 #include "libguile/fports.h"
30 #include "libguile/scmsigs.h"
31 #include "libguile/feature.h"
32 #include "libguile/strings.h"
33 #include "libguile/srfi-13.h"
34 #include "libguile/srfi-14.h"
35 #include "libguile/vectors.h"
36 #include "libguile/lang.h"
37
38 #include "libguile/validate.h"
39 #include "libguile/posix.h"
40 #include "libguile/gettext.h"
41 #include "libguile/threads.h"
42 \f
43
44 #ifdef HAVE_STRING_H
45 #include <string.h>
46 #endif
47 #ifdef TIME_WITH_SYS_TIME
48 # include <sys/time.h>
49 # include <time.h>
50 #else
51 # if HAVE_SYS_TIME_H
52 # include <sys/time.h>
53 # else
54 # include <time.h>
55 # endif
56 #endif
57
58 #ifdef HAVE_UNISTD_H
59 #include <unistd.h>
60 #else
61 #ifndef ttyname
62 extern char *ttyname();
63 #endif
64 #endif
65
66 #ifdef LIBC_H_WITH_UNISTD_H
67 #include <libc.h>
68 #endif
69
70 #include <sys/types.h>
71 #include <sys/stat.h>
72 #include <fcntl.h>
73
74 #ifdef HAVE_PWD_H
75 #include <pwd.h>
76 #endif
77 #ifdef HAVE_IO_H
78 #include <io.h>
79 #endif
80 #ifdef HAVE_WINSOCK2_H
81 #include <winsock2.h>
82 #endif
83
84 #ifdef __MINGW32__
85 /* Some defines for Windows here. */
86 # include <process.h>
87 # define pipe(fd) _pipe (fd, 256, O_BINARY)
88 #endif /* __MINGW32__ */
89
90 #if HAVE_SYS_WAIT_H
91 # include <sys/wait.h>
92 #endif
93 #ifndef WEXITSTATUS
94 # define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
95 #endif
96 #ifndef WIFEXITED
97 # define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
98 #endif
99
100 #include <signal.h>
101
102 extern char ** environ;
103
104 #ifdef HAVE_GRP_H
105 #include <grp.h>
106 #endif
107 #ifdef HAVE_SYS_UTSNAME_H
108 #include <sys/utsname.h>
109 #endif
110
111 #ifdef HAVE_SETLOCALE
112 #include <locale.h>
113 #endif
114
115 #if (defined HAVE_NEWLOCALE) && (defined HAVE_STRCOLL_L)
116 # define USE_GNU_LOCALE_API
117 #endif
118
119 #if (defined USE_GNU_LOCALE_API) && (defined HAVE_XLOCALE_H)
120 # include <xlocale.h>
121 #endif
122
123 #if HAVE_CRYPT_H
124 # include <crypt.h>
125 #endif
126
127 #ifdef HAVE_NETDB_H
128 #include <netdb.h> /* for MAXHOSTNAMELEN on Solaris */
129 #endif
130
131 #ifdef HAVE_SYS_PARAM_H
132 #include <sys/param.h> /* for MAXHOSTNAMELEN */
133 #endif
134
135 #if HAVE_SYS_RESOURCE_H
136 # include <sys/resource.h>
137 #endif
138
139 #if HAVE_SYS_FILE_H
140 # include <sys/file.h>
141 #endif
142
143 #if HAVE_CRT_EXTERNS_H
144 #include <crt_externs.h> /* for Darwin _NSGetEnviron */
145 #endif
146
147 /* Some Unix systems don't define these. CPP hair is dangerous, but
148 this seems safe enough... */
149 #ifndef R_OK
150 #define R_OK 4
151 #endif
152
153 #ifndef W_OK
154 #define W_OK 2
155 #endif
156
157 #ifndef X_OK
158 #define X_OK 1
159 #endif
160
161 #ifndef F_OK
162 #define F_OK 0
163 #endif
164
165 /* No prototype for this on Solaris 10. The man page says it's in
166 <unistd.h> ... but it lies. */
167 #if ! HAVE_DECL_SETHOSTNAME
168 int sethostname (char *name, size_t namelen);
169 #endif
170
171 /* On NextStep, <utime.h> doesn't define struct utime, unless we
172 #define _POSIX_SOURCE before #including it. I think this is less
173 of a kludge than defining struct utimbuf ourselves. */
174 #ifdef UTIMBUF_NEEDS_POSIX
175 #define _POSIX_SOURCE
176 #endif
177
178 #ifdef HAVE_SYS_UTIME_H
179 #include <sys/utime.h>
180 #endif
181
182 #ifdef HAVE_UTIME_H
183 #include <utime.h>
184 #endif
185
186 /* Please don't add any more #includes or #defines here. The hack
187 above means that _POSIX_SOURCE may be #defined, which will
188 encourage header files to do strange things.
189
190 FIXME: Maybe should undef _POSIX_SOURCE after it's done its job.
191
192 FIXME: Probably should do all the includes first, then all the fallback
193 declarations and defines, in case things are not in the header we
194 imagine. */
195
196
197
198
199 /* On Apple Darwin in a shared library there's no "environ" to access
200 directly, instead the address of that variable must be obtained with
201 _NSGetEnviron(). */
202 #if HAVE__NSGETENVIRON && defined (PIC)
203 #define environ (*_NSGetEnviron())
204 #endif
205
206 \f
207
208 /* Two often used patterns
209 */
210
211 #define WITH_STRING(str,cstr,code) \
212 do { \
213 char *cstr = scm_to_locale_string (str); \
214 code; \
215 free (cstr); \
216 } while (0)
217
218 #define STRING_SYSCALL(str,cstr,code) \
219 do { \
220 int eno; \
221 char *cstr = scm_to_locale_string (str); \
222 SCM_SYSCALL (code); \
223 eno = errno; free (cstr); errno = eno; \
224 } while (0)
225
226
227 \f
228 SCM_SYMBOL (sym_read_pipe, "read pipe");
229 SCM_SYMBOL (sym_write_pipe, "write pipe");
230
231 SCM_DEFINE (scm_pipe, "pipe", 0, 0, 0,
232 (),
233 "Return a newly created pipe: a pair of ports which are linked\n"
234 "together on the local machine. The @emph{car} is the input\n"
235 "port and the @emph{cdr} is the output port. Data written (and\n"
236 "flushed) to the output port can be read from the input port.\n"
237 "Pipes are commonly used for communication with a newly forked\n"
238 "child process. The need to flush the output port can be\n"
239 "avoided by making it unbuffered using @code{setvbuf}.\n"
240 "\n"
241 "Writes occur atomically provided the size of the data in bytes\n"
242 "is not greater than the value of @code{PIPE_BUF}. Note that\n"
243 "the output port is likely to block if too much data (typically\n"
244 "equal to @code{PIPE_BUF}) has been written but not yet read\n"
245 "from the input port.")
246 #define FUNC_NAME s_scm_pipe
247 {
248 int fd[2], rv;
249 SCM p_rd, p_wt;
250
251 rv = pipe (fd);
252 if (rv)
253 SCM_SYSERROR;
254
255 p_rd = scm_fdes_to_port (fd[0], "r", sym_read_pipe);
256 p_wt = scm_fdes_to_port (fd[1], "w", sym_write_pipe);
257 return scm_cons (p_rd, p_wt);
258 }
259 #undef FUNC_NAME
260
261
262 #ifdef HAVE_GETGROUPS
263 SCM_DEFINE (scm_getgroups, "getgroups", 0, 0, 0,
264 (),
265 "Return a vector of integers representing the current\n"
266 "supplementary group IDs.")
267 #define FUNC_NAME s_scm_getgroups
268 {
269 SCM result;
270 int ngroups;
271 size_t size;
272 GETGROUPS_T *groups;
273
274 ngroups = getgroups (0, NULL);
275 if (ngroups <= 0)
276 SCM_SYSERROR;
277
278 size = ngroups * sizeof (GETGROUPS_T);
279 groups = scm_malloc (size);
280 getgroups (ngroups, groups);
281
282 result = scm_c_make_vector (ngroups, SCM_BOOL_F);
283 while (--ngroups >= 0)
284 SCM_SIMPLE_VECTOR_SET (result, ngroups, scm_from_ulong (groups[ngroups]));
285
286 free (groups);
287 return result;
288 }
289 #undef FUNC_NAME
290 #endif
291
292 #ifdef HAVE_SETGROUPS
293 SCM_DEFINE (scm_setgroups, "setgroups", 1, 0, 0,
294 (SCM group_vec),
295 "Set the current set of supplementary group IDs to the integers\n"
296 "in the given vector @var{vec}. The return value is\n"
297 "unspecified.\n"
298 "\n"
299 "Generally only the superuser can set the process group IDs.")
300 #define FUNC_NAME s_scm_setgroups
301 {
302 size_t ngroups;
303 size_t size;
304 size_t i;
305 int result;
306 int save_errno;
307 GETGROUPS_T *groups;
308
309 SCM_VALIDATE_VECTOR (SCM_ARG1, group_vec);
310
311 ngroups = SCM_SIMPLE_VECTOR_LENGTH (group_vec);
312
313 /* validate before allocating, so we don't have to worry about leaks */
314 for (i = 0; i < ngroups; i++)
315 {
316 unsigned long ulong_gid;
317 GETGROUPS_T gid;
318 SCM_VALIDATE_ULONG_COPY (1, SCM_SIMPLE_VECTOR_REF (group_vec, i),
319 ulong_gid);
320 gid = ulong_gid;
321 if (gid != ulong_gid)
322 SCM_OUT_OF_RANGE (1, SCM_SIMPLE_VECTOR_REF (group_vec, i));
323 }
324
325 size = ngroups * sizeof (GETGROUPS_T);
326 if (size / sizeof (GETGROUPS_T) != ngroups)
327 SCM_OUT_OF_RANGE (SCM_ARG1, scm_from_int (ngroups));
328 groups = scm_malloc (size);
329 for(i = 0; i < ngroups; i++)
330 groups [i] = SCM_NUM2ULONG (1, SCM_SIMPLE_VECTOR_REF (group_vec, i));
331
332 result = setgroups (ngroups, groups);
333 save_errno = errno; /* don't let free() touch errno */
334 free (groups);
335 errno = save_errno;
336 if (result < 0)
337 SCM_SYSERROR;
338 return SCM_UNSPECIFIED;
339 }
340 #undef FUNC_NAME
341 #endif
342
343 #ifdef HAVE_GETPWENT
344 SCM_DEFINE (scm_getpwuid, "getpw", 0, 1, 0,
345 (SCM user),
346 "Look up an entry in the user database. @var{obj} can be an integer,\n"
347 "a string, or omitted, giving the behaviour of getpwuid, getpwnam\n"
348 "or getpwent respectively.")
349 #define FUNC_NAME s_scm_getpwuid
350 {
351 struct passwd *entry;
352
353 SCM result = scm_c_make_vector (7, SCM_UNSPECIFIED);
354 if (SCM_UNBNDP (user) || scm_is_false (user))
355 {
356 SCM_SYSCALL (entry = getpwent ());
357 if (! entry)
358 {
359 return SCM_BOOL_F;
360 }
361 }
362 else if (scm_is_integer (user))
363 {
364 entry = getpwuid (scm_to_int (user));
365 }
366 else
367 {
368 WITH_STRING (user, c_user,
369 entry = getpwnam (c_user));
370 }
371 if (!entry)
372 SCM_MISC_ERROR ("entry not found", SCM_EOL);
373
374 SCM_SIMPLE_VECTOR_SET(result, 0, scm_from_locale_string (entry->pw_name));
375 SCM_SIMPLE_VECTOR_SET(result, 1, scm_from_locale_string (entry->pw_passwd));
376 SCM_SIMPLE_VECTOR_SET(result, 2, scm_from_ulong (entry->pw_uid));
377 SCM_SIMPLE_VECTOR_SET(result, 3, scm_from_ulong (entry->pw_gid));
378 SCM_SIMPLE_VECTOR_SET(result, 4, scm_from_locale_string (entry->pw_gecos));
379 if (!entry->pw_dir)
380 SCM_SIMPLE_VECTOR_SET(result, 5, scm_from_locale_string (""));
381 else
382 SCM_SIMPLE_VECTOR_SET(result, 5, scm_from_locale_string (entry->pw_dir));
383 if (!entry->pw_shell)
384 SCM_SIMPLE_VECTOR_SET(result, 6, scm_from_locale_string (""));
385 else
386 SCM_SIMPLE_VECTOR_SET(result, 6, scm_from_locale_string (entry->pw_shell));
387 return result;
388 }
389 #undef FUNC_NAME
390 #endif /* HAVE_GETPWENT */
391
392
393 #ifdef HAVE_SETPWENT
394 SCM_DEFINE (scm_setpwent, "setpw", 0, 1, 0,
395 (SCM arg),
396 "If called with a true argument, initialize or reset the password data\n"
397 "stream. Otherwise, close the stream. The @code{setpwent} and\n"
398 "@code{endpwent} procedures are implemented on top of this.")
399 #define FUNC_NAME s_scm_setpwent
400 {
401 if (SCM_UNBNDP (arg) || scm_is_false (arg))
402 endpwent ();
403 else
404 setpwent ();
405 return SCM_UNSPECIFIED;
406 }
407 #undef FUNC_NAME
408 #endif
409
410
411 #ifdef HAVE_GETGRENT
412 /* Combines getgrgid and getgrnam. */
413 SCM_DEFINE (scm_getgrgid, "getgr", 0, 1, 0,
414 (SCM name),
415 "Look up an entry in the group database. @var{obj} can be an integer,\n"
416 "a string, or omitted, giving the behaviour of getgrgid, getgrnam\n"
417 "or getgrent respectively.")
418 #define FUNC_NAME s_scm_getgrgid
419 {
420 struct group *entry;
421 SCM result = scm_c_make_vector (4, SCM_UNSPECIFIED);
422
423 if (SCM_UNBNDP (name) || scm_is_false (name))
424 {
425 SCM_SYSCALL (entry = getgrent ());
426 if (! entry)
427 {
428 return SCM_BOOL_F;
429 }
430 }
431 else if (scm_is_integer (name))
432 SCM_SYSCALL (entry = getgrgid (scm_to_int (name)));
433 else
434 STRING_SYSCALL (name, c_name,
435 entry = getgrnam (c_name));
436 if (!entry)
437 SCM_SYSERROR;
438
439 SCM_SIMPLE_VECTOR_SET(result, 0, scm_from_locale_string (entry->gr_name));
440 SCM_SIMPLE_VECTOR_SET(result, 1, scm_from_locale_string (entry->gr_passwd));
441 SCM_SIMPLE_VECTOR_SET(result, 2, scm_from_ulong (entry->gr_gid));
442 SCM_SIMPLE_VECTOR_SET(result, 3, scm_makfromstrs (-1, entry->gr_mem));
443 return result;
444 }
445 #undef FUNC_NAME
446
447
448
449 SCM_DEFINE (scm_setgrent, "setgr", 0, 1, 0,
450 (SCM arg),
451 "If called with a true argument, initialize or reset the group data\n"
452 "stream. Otherwise, close the stream. The @code{setgrent} and\n"
453 "@code{endgrent} procedures are implemented on top of this.")
454 #define FUNC_NAME s_scm_setgrent
455 {
456 if (SCM_UNBNDP (arg) || scm_is_false (arg))
457 endgrent ();
458 else
459 setgrent ();
460 return SCM_UNSPECIFIED;
461 }
462 #undef FUNC_NAME
463 #endif /* HAVE_GETGRENT */
464
465
466 SCM_DEFINE (scm_kill, "kill", 2, 0, 0,
467 (SCM pid, SCM sig),
468 "Sends a signal to the specified process or group of processes.\n\n"
469 "@var{pid} specifies the processes to which the signal is sent:\n\n"
470 "@table @r\n"
471 "@item @var{pid} greater than 0\n"
472 "The process whose identifier is @var{pid}.\n"
473 "@item @var{pid} equal to 0\n"
474 "All processes in the current process group.\n"
475 "@item @var{pid} less than -1\n"
476 "The process group whose identifier is -@var{pid}\n"
477 "@item @var{pid} equal to -1\n"
478 "If the process is privileged, all processes except for some special\n"
479 "system processes. Otherwise, all processes with the current effective\n"
480 "user ID.\n"
481 "@end table\n\n"
482 "@var{sig} should be specified using a variable corresponding to\n"
483 "the Unix symbolic name, e.g.,\n\n"
484 "@defvar SIGHUP\n"
485 "Hang-up signal.\n"
486 "@end defvar\n\n"
487 "@defvar SIGINT\n"
488 "Interrupt signal.\n"
489 "@end defvar")
490 #define FUNC_NAME s_scm_kill
491 {
492 /* Signal values are interned in scm_init_posix(). */
493 #ifdef HAVE_KILL
494 if (kill (scm_to_int (pid), scm_to_int (sig)) != 0)
495 SCM_SYSERROR;
496 #else
497 /* Mingw has raise(), but not kill(). (Other raw DOS environments might
498 be similar.) Use raise() when the requested pid is our own process,
499 otherwise bomb. */
500 if (scm_to_int (pid) == getpid ())
501 {
502 if (raise (scm_to_int (sig)) != 0)
503 {
504 err:
505 SCM_SYSERROR;
506 }
507 else
508 {
509 errno = ENOSYS;
510 goto err;
511 }
512 }
513 #endif
514 return SCM_UNSPECIFIED;
515 }
516 #undef FUNC_NAME
517
518 #ifdef HAVE_WAITPID
519 SCM_DEFINE (scm_waitpid, "waitpid", 1, 1, 0,
520 (SCM pid, SCM options),
521 "This procedure collects status information from a child process which\n"
522 "has terminated or (optionally) stopped. Normally it will\n"
523 "suspend the calling process until this can be done. If more than one\n"
524 "child process is eligible then one will be chosen by the operating system.\n\n"
525 "The value of @var{pid} determines the behaviour:\n\n"
526 "@table @r\n"
527 "@item @var{pid} greater than 0\n"
528 "Request status information from the specified child process.\n"
529 "@item @var{pid} equal to -1 or WAIT_ANY\n"
530 "Request status information for any child process.\n"
531 "@item @var{pid} equal to 0 or WAIT_MYPGRP\n"
532 "Request status information for any child process in the current process\n"
533 "group.\n"
534 "@item @var{pid} less than -1\n"
535 "Request status information for any child process whose process group ID\n"
536 "is -@var{PID}.\n"
537 "@end table\n\n"
538 "The @var{options} argument, if supplied, should be the bitwise OR of the\n"
539 "values of zero or more of the following variables:\n\n"
540 "@defvar WNOHANG\n"
541 "Return immediately even if there are no child processes to be collected.\n"
542 "@end defvar\n\n"
543 "@defvar WUNTRACED\n"
544 "Report status information for stopped processes as well as terminated\n"
545 "processes.\n"
546 "@end defvar\n\n"
547 "The return value is a pair containing:\n\n"
548 "@enumerate\n"
549 "@item\n"
550 "The process ID of the child process, or 0 if @code{WNOHANG} was\n"
551 "specified and no process was collected.\n"
552 "@item\n"
553 "The integer status value.\n"
554 "@end enumerate")
555 #define FUNC_NAME s_scm_waitpid
556 {
557 int i;
558 int status;
559 int ioptions;
560 if (SCM_UNBNDP (options))
561 ioptions = 0;
562 else
563 {
564 /* Flags are interned in scm_init_posix. */
565 ioptions = scm_to_int (options);
566 }
567 SCM_SYSCALL (i = waitpid (scm_to_int (pid), &status, ioptions));
568 if (i == -1)
569 SCM_SYSERROR;
570 return scm_cons (scm_from_int (i), scm_from_int (status));
571 }
572 #undef FUNC_NAME
573 #endif /* HAVE_WAITPID */
574
575 #ifndef __MINGW32__
576 SCM_DEFINE (scm_status_exit_val, "status:exit-val", 1, 0, 0,
577 (SCM status),
578 "Return the exit status value, as would be set if a process\n"
579 "ended normally through a call to @code{exit} or @code{_exit},\n"
580 "if any, otherwise @code{#f}.")
581 #define FUNC_NAME s_scm_status_exit_val
582 {
583 int lstatus;
584
585 /* On Ultrix, the WIF... macros assume their argument is an lvalue;
586 go figure. */
587 lstatus = scm_to_int (status);
588 if (WIFEXITED (lstatus))
589 return (scm_from_int (WEXITSTATUS (lstatus)));
590 else
591 return SCM_BOOL_F;
592 }
593 #undef FUNC_NAME
594
595 SCM_DEFINE (scm_status_term_sig, "status:term-sig", 1, 0, 0,
596 (SCM status),
597 "Return the signal number which terminated the process, if any,\n"
598 "otherwise @code{#f}.")
599 #define FUNC_NAME s_scm_status_term_sig
600 {
601 int lstatus;
602
603 lstatus = scm_to_int (status);
604 if (WIFSIGNALED (lstatus))
605 return scm_from_int (WTERMSIG (lstatus));
606 else
607 return SCM_BOOL_F;
608 }
609 #undef FUNC_NAME
610
611 SCM_DEFINE (scm_status_stop_sig, "status:stop-sig", 1, 0, 0,
612 (SCM status),
613 "Return the signal number which stopped the process, if any,\n"
614 "otherwise @code{#f}.")
615 #define FUNC_NAME s_scm_status_stop_sig
616 {
617 int lstatus;
618
619 lstatus = scm_to_int (status);
620 if (WIFSTOPPED (lstatus))
621 return scm_from_int (WSTOPSIG (lstatus));
622 else
623 return SCM_BOOL_F;
624 }
625 #undef FUNC_NAME
626 #endif /* __MINGW32__ */
627
628 #ifdef HAVE_GETPPID
629 SCM_DEFINE (scm_getppid, "getppid", 0, 0, 0,
630 (),
631 "Return an integer representing the process ID of the parent\n"
632 "process.")
633 #define FUNC_NAME s_scm_getppid
634 {
635 return scm_from_int (getppid ());
636 }
637 #undef FUNC_NAME
638 #endif /* HAVE_GETPPID */
639
640
641 #ifndef __MINGW32__
642 SCM_DEFINE (scm_getuid, "getuid", 0, 0, 0,
643 (),
644 "Return an integer representing the current real user ID.")
645 #define FUNC_NAME s_scm_getuid
646 {
647 return scm_from_int (getuid ());
648 }
649 #undef FUNC_NAME
650
651
652
653 SCM_DEFINE (scm_getgid, "getgid", 0, 0, 0,
654 (),
655 "Return an integer representing the current real group ID.")
656 #define FUNC_NAME s_scm_getgid
657 {
658 return scm_from_int (getgid ());
659 }
660 #undef FUNC_NAME
661
662
663
664 SCM_DEFINE (scm_geteuid, "geteuid", 0, 0, 0,
665 (),
666 "Return an integer representing the current effective user ID.\n"
667 "If the system does not support effective IDs, then the real ID\n"
668 "is returned. @code{(provided? 'EIDs)} reports whether the\n"
669 "system supports effective IDs.")
670 #define FUNC_NAME s_scm_geteuid
671 {
672 #ifdef HAVE_GETEUID
673 return scm_from_int (geteuid ());
674 #else
675 return scm_from_int (getuid ());
676 #endif
677 }
678 #undef FUNC_NAME
679
680
681 SCM_DEFINE (scm_getegid, "getegid", 0, 0, 0,
682 (),
683 "Return an integer representing the current effective group ID.\n"
684 "If the system does not support effective IDs, then the real ID\n"
685 "is returned. @code{(provided? 'EIDs)} reports whether the\n"
686 "system supports effective IDs.")
687 #define FUNC_NAME s_scm_getegid
688 {
689 #ifdef HAVE_GETEUID
690 return scm_from_int (getegid ());
691 #else
692 return scm_from_int (getgid ());
693 #endif
694 }
695 #undef FUNC_NAME
696
697
698 SCM_DEFINE (scm_setuid, "setuid", 1, 0, 0,
699 (SCM id),
700 "Sets both the real and effective user IDs to the integer @var{id}, provided\n"
701 "the process has appropriate privileges.\n"
702 "The return value is unspecified.")
703 #define FUNC_NAME s_scm_setuid
704 {
705 if (setuid (scm_to_int (id)) != 0)
706 SCM_SYSERROR;
707 return SCM_UNSPECIFIED;
708 }
709 #undef FUNC_NAME
710
711 SCM_DEFINE (scm_setgid, "setgid", 1, 0, 0,
712 (SCM id),
713 "Sets both the real and effective group IDs to the integer @var{id}, provided\n"
714 "the process has appropriate privileges.\n"
715 "The return value is unspecified.")
716 #define FUNC_NAME s_scm_setgid
717 {
718 if (setgid (scm_to_int (id)) != 0)
719 SCM_SYSERROR;
720 return SCM_UNSPECIFIED;
721 }
722 #undef FUNC_NAME
723
724 SCM_DEFINE (scm_seteuid, "seteuid", 1, 0, 0,
725 (SCM id),
726 "Sets the effective user ID to the integer @var{id}, provided the process\n"
727 "has appropriate privileges. If effective IDs are not supported, the\n"
728 "real ID is set instead -- @code{(provided? 'EIDs)} reports whether the\n"
729 "system supports effective IDs.\n"
730 "The return value is unspecified.")
731 #define FUNC_NAME s_scm_seteuid
732 {
733 int rv;
734
735 #ifdef HAVE_SETEUID
736 rv = seteuid (scm_to_int (id));
737 #else
738 rv = setuid (scm_to_int (id));
739 #endif
740 if (rv != 0)
741 SCM_SYSERROR;
742 return SCM_UNSPECIFIED;
743 }
744 #undef FUNC_NAME
745 #endif /* __MINGW32__ */
746
747
748 #ifdef HAVE_SETEGID
749 SCM_DEFINE (scm_setegid, "setegid", 1, 0, 0,
750 (SCM id),
751 "Sets the effective group ID to the integer @var{id}, provided the process\n"
752 "has appropriate privileges. If effective IDs are not supported, the\n"
753 "real ID is set instead -- @code{(provided? 'EIDs)} reports whether the\n"
754 "system supports effective IDs.\n"
755 "The return value is unspecified.")
756 #define FUNC_NAME s_scm_setegid
757 {
758 int rv;
759
760 #ifdef HAVE_SETEUID
761 rv = setegid (scm_to_int (id));
762 #else
763 rv = setgid (scm_to_int (id));
764 #endif
765 if (rv != 0)
766 SCM_SYSERROR;
767 return SCM_UNSPECIFIED;
768
769 }
770 #undef FUNC_NAME
771 #endif
772
773
774 #ifdef HAVE_GETPGRP
775 SCM_DEFINE (scm_getpgrp, "getpgrp", 0, 0, 0,
776 (),
777 "Return an integer representing the current process group ID.\n"
778 "This is the POSIX definition, not BSD.")
779 #define FUNC_NAME s_scm_getpgrp
780 {
781 int (*fn)();
782 fn = (int (*) ()) getpgrp;
783 return scm_from_int (fn (0));
784 }
785 #undef FUNC_NAME
786 #endif /* HAVE_GETPGRP */
787
788
789 #ifdef HAVE_SETPGID
790 SCM_DEFINE (scm_setpgid, "setpgid", 2, 0, 0,
791 (SCM pid, SCM pgid),
792 "Move the process @var{pid} into the process group @var{pgid}. @var{pid} or\n"
793 "@var{pgid} must be integers: they can be zero to indicate the ID of the\n"
794 "current process.\n"
795 "Fails on systems that do not support job control.\n"
796 "The return value is unspecified.")
797 #define FUNC_NAME s_scm_setpgid
798 {
799 /* FIXME(?): may be known as setpgrp. */
800 if (setpgid (scm_to_int (pid), scm_to_int (pgid)) != 0)
801 SCM_SYSERROR;
802 return SCM_UNSPECIFIED;
803 }
804 #undef FUNC_NAME
805 #endif /* HAVE_SETPGID */
806
807 #ifdef HAVE_SETSID
808 SCM_DEFINE (scm_setsid, "setsid", 0, 0, 0,
809 (),
810 "Creates a new session. The current process becomes the session leader\n"
811 "and is put in a new process group. The process will be detached\n"
812 "from its controlling terminal if it has one.\n"
813 "The return value is an integer representing the new process group ID.")
814 #define FUNC_NAME s_scm_setsid
815 {
816 pid_t sid = setsid ();
817 if (sid == -1)
818 SCM_SYSERROR;
819 return SCM_UNSPECIFIED;
820 }
821 #undef FUNC_NAME
822 #endif /* HAVE_SETSID */
823
824
825 /* ttyname returns its result in a single static buffer, hence
826 scm_i_misc_mutex for thread safety. In glibc 2.3.2 two threads
827 continuously calling ttyname will otherwise get an overwrite quite
828 easily.
829
830 ttyname_r (when available) could be used instead of scm_i_misc_mutex, but
831 there's probably little to be gained in either speed or parallelism. */
832
833 #ifdef HAVE_TTYNAME
834 SCM_DEFINE (scm_ttyname, "ttyname", 1, 0, 0,
835 (SCM port),
836 "Return a string with the name of the serial terminal device\n"
837 "underlying @var{port}.")
838 #define FUNC_NAME s_scm_ttyname
839 {
840 char *result;
841 int fd, err;
842 SCM ret = SCM_BOOL_F;
843
844 port = SCM_COERCE_OUTPORT (port);
845 SCM_VALIDATE_OPPORT (1, port);
846 if (!SCM_FPORTP (port))
847 return SCM_BOOL_F;
848 fd = SCM_FPORT_FDES (port);
849
850 scm_i_scm_pthread_mutex_lock (&scm_i_misc_mutex);
851
852 SCM_SYSCALL (result = ttyname (fd));
853 err = errno;
854 if (result != NULL)
855 result = strdup (result);
856
857 scm_i_pthread_mutex_unlock (&scm_i_misc_mutex);
858
859 if (!result)
860 {
861 errno = err;
862 SCM_SYSERROR;
863 }
864 else
865 ret = scm_take_locale_string (result);
866
867 return ret;
868 }
869 #undef FUNC_NAME
870 #endif /* HAVE_TTYNAME */
871
872
873 /* For thread safety "buf" is used instead of NULL for the ctermid static
874 buffer. Actually it's unlikely the controlling terminal will change
875 during program execution, and indeed on glibc (2.3.2) it's always just
876 "/dev/tty", but L_ctermid on the stack is easy and fast and guarantees
877 safety everywhere. */
878 #ifdef HAVE_CTERMID
879 SCM_DEFINE (scm_ctermid, "ctermid", 0, 0, 0,
880 (),
881 "Return a string containing the file name of the controlling\n"
882 "terminal for the current process.")
883 #define FUNC_NAME s_scm_ctermid
884 {
885 char buf[L_ctermid];
886 char *result = ctermid (buf);
887 if (*result == '\0')
888 SCM_SYSERROR;
889 return scm_from_locale_string (result);
890 }
891 #undef FUNC_NAME
892 #endif /* HAVE_CTERMID */
893
894 #ifdef HAVE_TCGETPGRP
895 SCM_DEFINE (scm_tcgetpgrp, "tcgetpgrp", 1, 0, 0,
896 (SCM port),
897 "Return the process group ID of the foreground process group\n"
898 "associated with the terminal open on the file descriptor\n"
899 "underlying @var{port}.\n"
900 "\n"
901 "If there is no foreground process group, the return value is a\n"
902 "number greater than 1 that does not match the process group ID\n"
903 "of any existing process group. This can happen if all of the\n"
904 "processes in the job that was formerly the foreground job have\n"
905 "terminated, and no other job has yet been moved into the\n"
906 "foreground.")
907 #define FUNC_NAME s_scm_tcgetpgrp
908 {
909 int fd;
910 pid_t pgid;
911
912 port = SCM_COERCE_OUTPORT (port);
913
914 SCM_VALIDATE_OPFPORT (1, port);
915 fd = SCM_FPORT_FDES (port);
916 if ((pgid = tcgetpgrp (fd)) == -1)
917 SCM_SYSERROR;
918 return scm_from_int (pgid);
919 }
920 #undef FUNC_NAME
921 #endif /* HAVE_TCGETPGRP */
922
923 #ifdef HAVE_TCSETPGRP
924 SCM_DEFINE (scm_tcsetpgrp, "tcsetpgrp", 2, 0, 0,
925 (SCM port, SCM pgid),
926 "Set the foreground process group ID for the terminal used by the file\n"
927 "descriptor underlying @var{port} to the integer @var{pgid}.\n"
928 "The calling process\n"
929 "must be a member of the same session as @var{pgid} and must have the same\n"
930 "controlling terminal. The return value is unspecified.")
931 #define FUNC_NAME s_scm_tcsetpgrp
932 {
933 int fd;
934
935 port = SCM_COERCE_OUTPORT (port);
936
937 SCM_VALIDATE_OPFPORT (1, port);
938 fd = SCM_FPORT_FDES (port);
939 if (tcsetpgrp (fd, scm_to_int (pgid)) == -1)
940 SCM_SYSERROR;
941 return SCM_UNSPECIFIED;
942 }
943 #undef FUNC_NAME
944 #endif /* HAVE_TCSETPGRP */
945
946 static void
947 free_string_pointers (void *data)
948 {
949 scm_i_free_string_pointers ((char **)data);
950 }
951
952 SCM_DEFINE (scm_execl, "execl", 1, 0, 1,
953 (SCM filename, SCM args),
954 "Executes the file named by @var{path} as a new process image.\n"
955 "The remaining arguments are supplied to the process; from a C program\n"
956 "they are accessible as the @code{argv} argument to @code{main}.\n"
957 "Conventionally the first @var{arg} is the same as @var{path}.\n"
958 "All arguments must be strings.\n\n"
959 "If @var{arg} is missing, @var{path} is executed with a null\n"
960 "argument list, which may have system-dependent side-effects.\n\n"
961 "This procedure is currently implemented using the @code{execv} system\n"
962 "call, but we call it @code{execl} because of its Scheme calling interface.")
963 #define FUNC_NAME s_scm_execl
964 {
965 char *exec_file;
966 char **exec_argv;
967
968 scm_dynwind_begin (0);
969
970 exec_file = scm_to_locale_string (filename);
971 scm_dynwind_free (exec_file);
972
973 exec_argv = scm_i_allocate_string_pointers (args);
974 scm_dynwind_unwind_handler (free_string_pointers, exec_argv,
975 SCM_F_WIND_EXPLICITLY);
976
977 execv (exec_file,
978 #ifdef __MINGW32__
979 /* extra "const" in mingw formals, provokes warning from gcc */
980 (const char * const *)
981 #endif
982 exec_argv);
983 SCM_SYSERROR;
984
985 /* not reached. */
986 scm_dynwind_end ();
987 return SCM_BOOL_F;
988 }
989 #undef FUNC_NAME
990
991 SCM_DEFINE (scm_execlp, "execlp", 1, 0, 1,
992 (SCM filename, SCM args),
993 "Similar to @code{execl}, however if\n"
994 "@var{filename} does not contain a slash\n"
995 "then the file to execute will be located by searching the\n"
996 "directories listed in the @code{PATH} environment variable.\n\n"
997 "This procedure is currently implemented using the @code{execvp} system\n"
998 "call, but we call it @code{execlp} because of its Scheme calling interface.")
999 #define FUNC_NAME s_scm_execlp
1000 {
1001 char *exec_file;
1002 char **exec_argv;
1003
1004 scm_dynwind_begin (0);
1005
1006 exec_file = scm_to_locale_string (filename);
1007 scm_dynwind_free (exec_file);
1008
1009 exec_argv = scm_i_allocate_string_pointers (args);
1010 scm_dynwind_unwind_handler (free_string_pointers, exec_argv,
1011 SCM_F_WIND_EXPLICITLY);
1012
1013 execvp (exec_file,
1014 #ifdef __MINGW32__
1015 /* extra "const" in mingw formals, provokes warning from gcc */
1016 (const char * const *)
1017 #endif
1018 exec_argv);
1019 SCM_SYSERROR;
1020
1021 /* not reached. */
1022 scm_dynwind_end ();
1023 return SCM_BOOL_F;
1024 }
1025 #undef FUNC_NAME
1026
1027
1028 /* OPTIMIZE-ME: scm_execle doesn't need malloced copies of the environment
1029 list strings the way environ_list_to_c gives. */
1030
1031 SCM_DEFINE (scm_execle, "execle", 2, 0, 1,
1032 (SCM filename, SCM env, SCM args),
1033 "Similar to @code{execl}, but the environment of the new process is\n"
1034 "specified by @var{env}, which must be a list of strings as returned by the\n"
1035 "@code{environ} procedure.\n\n"
1036 "This procedure is currently implemented using the @code{execve} system\n"
1037 "call, but we call it @code{execle} because of its Scheme calling interface.")
1038 #define FUNC_NAME s_scm_execle
1039 {
1040 char **exec_argv;
1041 char **exec_env;
1042 char *exec_file;
1043
1044 scm_dynwind_begin (0);
1045
1046 exec_file = scm_to_locale_string (filename);
1047 scm_dynwind_free (exec_file);
1048
1049 exec_argv = scm_i_allocate_string_pointers (args);
1050 scm_dynwind_unwind_handler (free_string_pointers, exec_argv,
1051 SCM_F_WIND_EXPLICITLY);
1052
1053 exec_env = scm_i_allocate_string_pointers (env);
1054 scm_dynwind_unwind_handler (free_string_pointers, exec_env,
1055 SCM_F_WIND_EXPLICITLY);
1056
1057 execve (exec_file,
1058 #ifdef __MINGW32__
1059 /* extra "const" in mingw formals, provokes warning from gcc */
1060 (const char * const *)
1061 #endif
1062 exec_argv,
1063 #ifdef __MINGW32__
1064 /* extra "const" in mingw formals, provokes warning from gcc */
1065 (const char * const *)
1066 #endif
1067 exec_env);
1068 SCM_SYSERROR;
1069
1070 /* not reached. */
1071 scm_dynwind_end ();
1072 return SCM_BOOL_F;
1073 }
1074 #undef FUNC_NAME
1075
1076 #ifdef HAVE_FORK
1077 SCM_DEFINE (scm_fork, "primitive-fork", 0, 0, 0,
1078 (),
1079 "Creates a new \"child\" process by duplicating the current \"parent\" process.\n"
1080 "In the child the return value is 0. In the parent the return value is\n"
1081 "the integer process ID of the child.\n\n"
1082 "This procedure has been renamed from @code{fork} to avoid a naming conflict\n"
1083 "with the scsh fork.")
1084 #define FUNC_NAME s_scm_fork
1085 {
1086 int pid;
1087 pid = fork ();
1088 if (pid == -1)
1089 SCM_SYSERROR;
1090 return scm_from_int (pid);
1091 }
1092 #undef FUNC_NAME
1093 #endif /* HAVE_FORK */
1094
1095 #ifdef __MINGW32__
1096 # include "win32-uname.h"
1097 #endif
1098
1099 #if defined (HAVE_UNAME) || defined (__MINGW32__)
1100 SCM_DEFINE (scm_uname, "uname", 0, 0, 0,
1101 (),
1102 "Return an object with some information about the computer\n"
1103 "system the program is running on.")
1104 #define FUNC_NAME s_scm_uname
1105 {
1106 struct utsname buf;
1107 SCM result = scm_c_make_vector (5, SCM_UNSPECIFIED);
1108 if (uname (&buf) < 0)
1109 SCM_SYSERROR;
1110 SCM_SIMPLE_VECTOR_SET(result, 0, scm_from_locale_string (buf.sysname));
1111 SCM_SIMPLE_VECTOR_SET(result, 1, scm_from_locale_string (buf.nodename));
1112 SCM_SIMPLE_VECTOR_SET(result, 2, scm_from_locale_string (buf.release));
1113 SCM_SIMPLE_VECTOR_SET(result, 3, scm_from_locale_string (buf.version));
1114 SCM_SIMPLE_VECTOR_SET(result, 4, scm_from_locale_string (buf.machine));
1115 /*
1116 a linux special?
1117 SCM_SIMPLE_VECTOR_SET(result, 5, scm_from_locale_string (buf.domainname));
1118 */
1119 return result;
1120 }
1121 #undef FUNC_NAME
1122 #endif /* HAVE_UNAME */
1123
1124 SCM_DEFINE (scm_environ, "environ", 0, 1, 0,
1125 (SCM env),
1126 "If @var{env} is omitted, return the current environment (in the\n"
1127 "Unix sense) as a list of strings. Otherwise set the current\n"
1128 "environment, which is also the default environment for child\n"
1129 "processes, to the supplied list of strings. Each member of\n"
1130 "@var{env} should be of the form @code{NAME=VALUE} and values of\n"
1131 "@code{NAME} should not be duplicated. If @var{env} is supplied\n"
1132 "then the return value is unspecified.")
1133 #define FUNC_NAME s_scm_environ
1134 {
1135 if (SCM_UNBNDP (env))
1136 return scm_makfromstrs (-1, environ);
1137 else
1138 {
1139 char **new_environ;
1140
1141 new_environ = scm_i_allocate_string_pointers (env);
1142 /* Free the old environment, except when called for the first
1143 * time.
1144 */
1145 {
1146 static int first = 1;
1147 if (!first)
1148 scm_i_free_string_pointers (environ);
1149 first = 0;
1150 }
1151 environ = new_environ;
1152 return SCM_UNSPECIFIED;
1153 }
1154 }
1155 #undef FUNC_NAME
1156
1157 #ifdef L_tmpnam
1158
1159 SCM_DEFINE (scm_tmpnam, "tmpnam", 0, 0, 0,
1160 (),
1161 "Return a name in the file system that does not match any\n"
1162 "existing file. However there is no guarantee that another\n"
1163 "process will not create the file after @code{tmpnam} is called.\n"
1164 "Care should be taken if opening the file, e.g., use the\n"
1165 "@code{O_EXCL} open flag or use @code{mkstemp!} instead.")
1166 #define FUNC_NAME s_scm_tmpnam
1167 {
1168 char name[L_tmpnam];
1169 char *rv;
1170
1171 SCM_SYSCALL (rv = tmpnam (name));
1172 if (rv == NULL)
1173 /* not SCM_SYSERROR since errno probably not set. */
1174 SCM_MISC_ERROR ("tmpnam failed", SCM_EOL);
1175 return scm_from_locale_string (name);
1176 }
1177 #undef FUNC_NAME
1178
1179 #endif
1180
1181 #ifndef HAVE_MKSTEMP
1182 extern int mkstemp (char *);
1183 #endif
1184
1185 SCM_DEFINE (scm_mkstemp, "mkstemp!", 1, 0, 0,
1186 (SCM tmpl),
1187 "Create a new unique file in the file system and return a new\n"
1188 "buffered port open for reading and writing to the file.\n"
1189 "\n"
1190 "@var{tmpl} is a string specifying where the file should be\n"
1191 "created: it must end with @samp{XXXXXX} and those @samp{X}s\n"
1192 "will be changed in the string to return the name of the file.\n"
1193 "(@code{port-filename} on the port also gives the name.)\n"
1194 "\n"
1195 "POSIX doesn't specify the permissions mode of the file, on GNU\n"
1196 "and most systems it's @code{#o600}. An application can use\n"
1197 "@code{chmod} to relax that if desired. For example\n"
1198 "@code{#o666} less @code{umask}, which is usual for ordinary\n"
1199 "file creation,\n"
1200 "\n"
1201 "@example\n"
1202 "(let ((port (mkstemp! (string-copy \"/tmp/myfile-XXXXXX\"))))\n"
1203 " (chmod port (logand #o666 (lognot (umask))))\n"
1204 " ...)\n"
1205 "@end example")
1206 #define FUNC_NAME s_scm_mkstemp
1207 {
1208 char *c_tmpl;
1209 int rv;
1210
1211 scm_dynwind_begin (0);
1212
1213 c_tmpl = scm_to_locale_string (tmpl);
1214 scm_dynwind_free (c_tmpl);
1215
1216 SCM_SYSCALL (rv = mkstemp (c_tmpl));
1217 if (rv == -1)
1218 SCM_SYSERROR;
1219
1220 scm_substring_move_x (scm_from_locale_string (c_tmpl),
1221 SCM_INUM0, scm_string_length (tmpl),
1222 tmpl, SCM_INUM0);
1223
1224 scm_dynwind_end ();
1225 return scm_fdes_to_port (rv, "w+", tmpl);
1226 }
1227 #undef FUNC_NAME
1228
1229 SCM_DEFINE (scm_utime, "utime", 1, 2, 0,
1230 (SCM pathname, SCM actime, SCM modtime),
1231 "@code{utime} sets the access and modification times for the\n"
1232 "file named by @var{path}. If @var{actime} or @var{modtime} is\n"
1233 "not supplied, then the current time is used. @var{actime} and\n"
1234 "@var{modtime} must be integer time values as returned by the\n"
1235 "@code{current-time} procedure.\n"
1236 "@lisp\n"
1237 "(utime \"foo\" (- (current-time) 3600))\n"
1238 "@end lisp\n"
1239 "will set the access time to one hour in the past and the\n"
1240 "modification time to the current time.")
1241 #define FUNC_NAME s_scm_utime
1242 {
1243 int rv;
1244 struct utimbuf utm_tmp;
1245
1246 if (SCM_UNBNDP (actime))
1247 SCM_SYSCALL (time (&utm_tmp.actime));
1248 else
1249 utm_tmp.actime = SCM_NUM2ULONG (2, actime);
1250
1251 if (SCM_UNBNDP (modtime))
1252 SCM_SYSCALL (time (&utm_tmp.modtime));
1253 else
1254 utm_tmp.modtime = SCM_NUM2ULONG (3, modtime);
1255
1256 STRING_SYSCALL (pathname, c_pathname,
1257 rv = utime (c_pathname, &utm_tmp));
1258 if (rv != 0)
1259 SCM_SYSERROR;
1260 return SCM_UNSPECIFIED;
1261 }
1262 #undef FUNC_NAME
1263
1264 SCM_DEFINE (scm_access, "access?", 2, 0, 0,
1265 (SCM path, SCM how),
1266 "Test accessibility of a file under the real UID and GID of the\n"
1267 "calling process. The return is @code{#t} if @var{path} exists\n"
1268 "and the permissions requested by @var{how} are all allowed, or\n"
1269 "@code{#f} if not.\n"
1270 "\n"
1271 "@var{how} is an integer which is one of the following values,\n"
1272 "or a bitwise-OR (@code{logior}) of multiple values.\n"
1273 "\n"
1274 "@defvar R_OK\n"
1275 "Test for read permission.\n"
1276 "@end defvar\n"
1277 "@defvar W_OK\n"
1278 "Test for write permission.\n"
1279 "@end defvar\n"
1280 "@defvar X_OK\n"
1281 "Test for execute permission.\n"
1282 "@end defvar\n"
1283 "@defvar F_OK\n"
1284 "Test for existence of the file. This is implied by each of the\n"
1285 "other tests, so there's no need to combine it with them.\n"
1286 "@end defvar\n"
1287 "\n"
1288 "It's important to note that @code{access?} does not simply\n"
1289 "indicate what will happen on attempting to read or write a\n"
1290 "file. In normal circumstances it does, but in a set-UID or\n"
1291 "set-GID program it doesn't because @code{access?} tests the\n"
1292 "real ID, whereas an open or execute attempt uses the effective\n"
1293 "ID.\n"
1294 "\n"
1295 "A program which will never run set-UID/GID can ignore the\n"
1296 "difference between real and effective IDs, but for maximum\n"
1297 "generality, especially in library functions, it's best not to\n"
1298 "use @code{access?} to predict the result of an open or execute,\n"
1299 "instead simply attempt that and catch any exception.\n"
1300 "\n"
1301 "The main use for @code{access?} is to let a set-UID/GID program\n"
1302 "determine what the invoking user would have been allowed to do,\n"
1303 "without the greater (or perhaps lesser) privileges afforded by\n"
1304 "the effective ID. For more on this, see ``Testing File\n"
1305 "Access'' in The GNU C Library Reference Manual.")
1306 #define FUNC_NAME s_scm_access
1307 {
1308 int rv;
1309
1310 WITH_STRING (path, c_path,
1311 rv = access (c_path, scm_to_int (how)));
1312 return scm_from_bool (!rv);
1313 }
1314 #undef FUNC_NAME
1315
1316 SCM_DEFINE (scm_getpid, "getpid", 0, 0, 0,
1317 (),
1318 "Return an integer representing the current process ID.")
1319 #define FUNC_NAME s_scm_getpid
1320 {
1321 return scm_from_ulong (getpid ());
1322 }
1323 #undef FUNC_NAME
1324
1325 SCM_DEFINE (scm_putenv, "putenv", 1, 0, 0,
1326 (SCM str),
1327 "Modifies the environment of the current process, which is\n"
1328 "also the default environment inherited by child processes.\n\n"
1329 "If @var{string} is of the form @code{NAME=VALUE} then it will be written\n"
1330 "directly into the environment, replacing any existing environment string\n"
1331 "with\n"
1332 "name matching @code{NAME}. If @var{string} does not contain an equal\n"
1333 "sign, then any existing string with name matching @var{string} will\n"
1334 "be removed.\n\n"
1335 "The return value is unspecified.")
1336 #define FUNC_NAME s_scm_putenv
1337 {
1338 int rv;
1339 char *c_str = scm_to_locale_string (str);
1340
1341 if (strchr (c_str, '=') == NULL)
1342 {
1343 /* We want no "=" in the argument to mean remove the variable from the
1344 environment, but not all putenv()s understand this, for example
1345 FreeBSD 4.8 doesn't. Getting it happening everywhere is a bit
1346 painful. What unsetenv() exists, we use that, of course.
1347
1348 Traditionally putenv("NAME") removes a variable, for example that's
1349 what we have to do on Solaris 9 (it doesn't have an unsetenv).
1350
1351 But on DOS and on that DOS overlay manager thing called W-whatever,
1352 putenv("NAME=") must be used (it too doesn't have an unsetenv).
1353
1354 Supposedly on AIX a putenv("NAME") could cause a segfault, but also
1355 supposedly AIX 5.3 and up has unsetenv() available so should be ok
1356 with the latter there.
1357
1358 For the moment we hard code the DOS putenv("NAME=") style under
1359 __MINGW32__ and do the traditional everywhere else. Such
1360 system-name tests are bad, of course. It'd be possible to use a
1361 configure test when doing a a native build. For example GNU R has
1362 such a test (see R_PUTENV_AS_UNSETENV in
1363 https://svn.r-project.org/R/trunk/m4/R.m4). But when cross
1364 compiling there'd want to be a guess, one probably based on the
1365 system name (ie. mingw or not), thus landing back in basically the
1366 present hard-coded situation. Another possibility for a cross
1367 build would be to try "NAME" then "NAME=" at runtime, if that's not
1368 too much like overkill. */
1369
1370 #if HAVE_UNSETENV
1371 /* when unsetenv() exists then we use it */
1372 unsetenv (c_str);
1373 free (c_str);
1374 #elif defined (__MINGW32__)
1375 /* otherwise putenv("NAME=") on DOS */
1376 int e;
1377 size_t len = strlen (c_str);
1378 char *ptr = scm_malloc (len + 2);
1379 strcpy (ptr, c_str);
1380 strcpy (ptr+len, "=");
1381 rv = putenv (ptr);
1382 e = errno; free (ptr); free (c_str); errno = e;
1383 if (rv < 0)
1384 SCM_SYSERROR;
1385 #else
1386 /* otherwise traditional putenv("NAME") */
1387 rv = putenv (c_str);
1388 if (rv < 0)
1389 SCM_SYSERROR;
1390 #endif
1391 }
1392 else
1393 {
1394 #ifdef __MINGW32__
1395 /* If str is "FOO=", ie. attempting to set an empty string, then
1396 we need to see if it's been successful. On MINGW, "FOO="
1397 means remove FOO from the environment. As a workaround, we
1398 set "FOO= ", ie. a space, and then modify the string returned
1399 by getenv. It's not enough just to modify the string we set,
1400 because MINGW putenv copies it. */
1401
1402 {
1403 size_t len = strlen (c_str);
1404 if (c_str[len-1] == '=')
1405 {
1406 char *ptr = scm_malloc (len+2);
1407 strcpy (ptr, c_str);
1408 strcpy (ptr+len, " ");
1409 rv = putenv (ptr);
1410 if (rv < 0)
1411 {
1412 int eno = errno;
1413 free (c_str);
1414 errno = eno;
1415 SCM_SYSERROR;
1416 }
1417 /* truncate to just the name */
1418 c_str[len-1] = '\0';
1419 ptr = getenv (c_str);
1420 if (ptr)
1421 ptr[0] = '\0';
1422 return SCM_UNSPECIFIED;
1423 }
1424 }
1425 #endif /* __MINGW32__ */
1426
1427 /* Leave c_str in the environment. */
1428
1429 rv = putenv (c_str);
1430 if (rv < 0)
1431 SCM_SYSERROR;
1432 }
1433 return SCM_UNSPECIFIED;
1434 }
1435 #undef FUNC_NAME
1436
1437 /* This mutex is used to serialize invocations of `setlocale ()' on non-GNU
1438 systems (i.e., systems where a reentrant locale API is not available). It
1439 is also acquired before calls to `nl_langinfo ()'. See `i18n.c' for
1440 details. */
1441 scm_i_pthread_mutex_t scm_i_locale_mutex = SCM_I_PTHREAD_MUTEX_INITIALIZER;
1442
1443 #ifdef HAVE_SETLOCALE
1444
1445 SCM_DEFINE (scm_setlocale, "setlocale", 1, 1, 0,
1446 (SCM category, SCM locale),
1447 "If @var{locale} is omitted, return the current value of the\n"
1448 "specified locale category as a system-dependent string.\n"
1449 "@var{category} should be specified using the values\n"
1450 "@code{LC_COLLATE}, @code{LC_ALL} etc.\n"
1451 "\n"
1452 "Otherwise the specified locale category is set to the string\n"
1453 "@var{locale} and the new value is returned as a\n"
1454 "system-dependent string. If @var{locale} is an empty string,\n"
1455 "the locale will be set using environment variables.")
1456 #define FUNC_NAME s_scm_setlocale
1457 {
1458 int c_category;
1459 char *clocale;
1460 char *rv;
1461
1462 scm_dynwind_begin (0);
1463
1464 if (SCM_UNBNDP (locale))
1465 {
1466 clocale = NULL;
1467 }
1468 else
1469 {
1470 clocale = scm_to_locale_string (locale);
1471 scm_dynwind_free (clocale);
1472 }
1473
1474 c_category = scm_i_to_lc_category (category, 1);
1475
1476 scm_i_pthread_mutex_lock (&scm_i_locale_mutex);
1477 rv = setlocale (c_category, clocale);
1478 scm_i_pthread_mutex_unlock (&scm_i_locale_mutex);
1479
1480 if (rv == NULL)
1481 {
1482 /* POSIX and C99 don't say anything about setlocale setting errno, so
1483 force a sensible value here. glibc leaves ENOENT, which would be
1484 fine, but it's not a documented feature. */
1485 errno = EINVAL;
1486 SCM_SYSERROR;
1487 }
1488
1489 /* Recompute the standard SRFI-14 character sets in a locale-dependent
1490 (actually charset-dependent) way. */
1491 scm_srfi_14_compute_char_sets ();
1492
1493 scm_dynwind_end ();
1494 return scm_from_locale_string (rv);
1495 }
1496 #undef FUNC_NAME
1497 #endif /* HAVE_SETLOCALE */
1498
1499 #ifdef HAVE_MKNOD
1500 SCM_DEFINE (scm_mknod, "mknod", 4, 0, 0,
1501 (SCM path, SCM type, SCM perms, SCM dev),
1502 "Creates a new special file, such as a file corresponding to a device.\n"
1503 "@var{path} specifies the name of the file. @var{type} should\n"
1504 "be one of the following symbols:\n"
1505 "regular, directory, symlink, block-special, char-special,\n"
1506 "fifo, or socket. @var{perms} (an integer) specifies the file permissions.\n"
1507 "@var{dev} (an integer) specifies which device the special file refers\n"
1508 "to. Its exact interpretation depends on the kind of special file\n"
1509 "being created.\n\n"
1510 "E.g.,\n"
1511 "@lisp\n"
1512 "(mknod \"/dev/fd0\" 'block-special #o660 (+ (* 2 256) 2))\n"
1513 "@end lisp\n\n"
1514 "The return value is unspecified.")
1515 #define FUNC_NAME s_scm_mknod
1516 {
1517 int val;
1518 const char *p;
1519 int ctype = 0;
1520
1521 SCM_VALIDATE_STRING (1, path);
1522 SCM_VALIDATE_SYMBOL (2, type);
1523
1524 p = scm_i_symbol_chars (type);
1525 if (strcmp (p, "regular") == 0)
1526 ctype = S_IFREG;
1527 else if (strcmp (p, "directory") == 0)
1528 ctype = S_IFDIR;
1529 #ifdef S_IFLNK
1530 /* systems without symlinks probably don't have S_IFLNK defined */
1531 else if (strcmp (p, "symlink") == 0)
1532 ctype = S_IFLNK;
1533 #endif
1534 else if (strcmp (p, "block-special") == 0)
1535 ctype = S_IFBLK;
1536 else if (strcmp (p, "char-special") == 0)
1537 ctype = S_IFCHR;
1538 else if (strcmp (p, "fifo") == 0)
1539 ctype = S_IFIFO;
1540 #ifdef S_IFSOCK
1541 else if (strcmp (p, "socket") == 0)
1542 ctype = S_IFSOCK;
1543 #endif
1544 else
1545 SCM_OUT_OF_RANGE (2, type);
1546
1547 STRING_SYSCALL (path, c_path,
1548 val = mknod (c_path,
1549 ctype | scm_to_int (perms),
1550 scm_to_int (dev)));
1551 if (val != 0)
1552 SCM_SYSERROR;
1553 return SCM_UNSPECIFIED;
1554 }
1555 #undef FUNC_NAME
1556 #endif /* HAVE_MKNOD */
1557
1558 #ifdef HAVE_NICE
1559 SCM_DEFINE (scm_nice, "nice", 1, 0, 0,
1560 (SCM incr),
1561 "Increment the priority of the current process by @var{incr}. A higher\n"
1562 "priority value means that the process runs less often.\n"
1563 "The return value is unspecified.")
1564 #define FUNC_NAME s_scm_nice
1565 {
1566 /* nice() returns "prio-NZERO" on success or -1 on error, but -1 can arise
1567 from "prio-NZERO", so an error must be detected from errno changed */
1568 errno = 0;
1569 nice (scm_to_int (incr));
1570 if (errno != 0)
1571 SCM_SYSERROR;
1572 return SCM_UNSPECIFIED;
1573 }
1574 #undef FUNC_NAME
1575 #endif /* HAVE_NICE */
1576
1577 #ifdef HAVE_SYNC
1578 SCM_DEFINE (scm_sync, "sync", 0, 0, 0,
1579 (),
1580 "Flush the operating system disk buffers.\n"
1581 "The return value is unspecified.")
1582 #define FUNC_NAME s_scm_sync
1583 {
1584 sync();
1585 return SCM_UNSPECIFIED;
1586 }
1587 #undef FUNC_NAME
1588 #endif /* HAVE_SYNC */
1589
1590
1591 /* crypt() returns a pointer to a static buffer, so we use scm_i_misc_mutex
1592 to avoid another thread overwriting it. A test program running crypt
1593 continuously in two threads can be quickly seen tripping this problem.
1594 crypt() is pretty slow normally, so a mutex shouldn't add much overhead.
1595
1596 glibc has a thread-safe crypt_r, but (in version 2.3.2) it runs a lot
1597 slower (about 5x) than plain crypt if you pass an uninitialized data
1598 block each time. Presumably there's some one-time setups. The best way
1599 to use crypt_r for parallel execution in multiple threads would probably
1600 be to maintain a little pool of initialized crypt_data structures, take
1601 one and use it, then return it to the pool. That pool could be garbage
1602 collected so it didn't add permanently to memory use if only a few crypt
1603 calls are made. But we expect crypt will be used rarely, and even more
1604 rarely will there be any desire for lots of parallel execution on
1605 multiple cpus. So for now we don't bother with anything fancy, just
1606 ensure it works. */
1607
1608 #if HAVE_CRYPT
1609 SCM_DEFINE (scm_crypt, "crypt", 2, 0, 0,
1610 (SCM key, SCM salt),
1611 "Encrypt @var{key} using @var{salt} as the salt value to the\n"
1612 "crypt(3) library call.")
1613 #define FUNC_NAME s_scm_crypt
1614 {
1615 SCM ret;
1616 char *c_key, *c_salt, *c_ret;
1617
1618 scm_dynwind_begin (0);
1619 scm_i_dynwind_pthread_mutex_lock (&scm_i_misc_mutex);
1620
1621 c_key = scm_to_locale_string (key);
1622 scm_dynwind_free (c_key);
1623 c_salt = scm_to_locale_string (salt);
1624 scm_dynwind_free (c_salt);
1625
1626 /* The Linux crypt(3) man page says crypt will return NULL and set errno
1627 on error. (Eg. ENOSYS if legal restrictions mean it cannot be
1628 implemented). */
1629 c_ret = crypt (c_key, c_salt);
1630 if (c_ret == NULL)
1631 SCM_SYSERROR;
1632
1633 ret = scm_from_locale_string (c_ret);
1634 scm_dynwind_end ();
1635 return ret;
1636 }
1637 #undef FUNC_NAME
1638 #endif /* HAVE_CRYPT */
1639
1640 #if HAVE_CHROOT
1641 SCM_DEFINE (scm_chroot, "chroot", 1, 0, 0,
1642 (SCM path),
1643 "Change the root directory to that specified in @var{path}.\n"
1644 "This directory will be used for path names beginning with\n"
1645 "@file{/}. The root directory is inherited by all children\n"
1646 "of the current process. Only the superuser may change the\n"
1647 "root directory.")
1648 #define FUNC_NAME s_scm_chroot
1649 {
1650 int rv;
1651
1652 WITH_STRING (path, c_path,
1653 rv = chroot (c_path));
1654 if (rv == -1)
1655 SCM_SYSERROR;
1656 return SCM_UNSPECIFIED;
1657 }
1658 #undef FUNC_NAME
1659 #endif /* HAVE_CHROOT */
1660
1661
1662 #ifdef __MINGW32__
1663 /* Wrapper function to supplying `getlogin()' under Windows. */
1664 static char * getlogin (void)
1665 {
1666 static char user[256];
1667 static unsigned long len = 256;
1668
1669 if (!GetUserName (user, &len))
1670 return NULL;
1671 return user;
1672 }
1673 #endif /* __MINGW32__ */
1674
1675
1676 #if defined (HAVE_GETLOGIN) || defined (__MINGW32__)
1677 SCM_DEFINE (scm_getlogin, "getlogin", 0, 0, 0,
1678 (void),
1679 "Return a string containing the name of the user logged in on\n"
1680 "the controlling terminal of the process, or @code{#f} if this\n"
1681 "information cannot be obtained.")
1682 #define FUNC_NAME s_scm_getlogin
1683 {
1684 char * p;
1685
1686 p = getlogin ();
1687 if (!p || !*p)
1688 return SCM_BOOL_F;
1689 return scm_from_locale_string (p);
1690 }
1691 #undef FUNC_NAME
1692 #endif /* HAVE_GETLOGIN */
1693
1694 #if HAVE_CUSERID
1695 SCM_DEFINE (scm_cuserid, "cuserid", 0, 0, 0,
1696 (void),
1697 "Return a string containing a user name associated with the\n"
1698 "effective user id of the process. Return @code{#f} if this\n"
1699 "information cannot be obtained.")
1700 #define FUNC_NAME s_scm_cuserid
1701 {
1702 char buf[L_cuserid];
1703 char * p;
1704
1705 p = cuserid (buf);
1706 if (!p || !*p)
1707 return SCM_BOOL_F;
1708 return scm_from_locale_string (p);
1709 }
1710 #undef FUNC_NAME
1711 #endif /* HAVE_CUSERID */
1712
1713 #if HAVE_GETPRIORITY
1714 SCM_DEFINE (scm_getpriority, "getpriority", 2, 0, 0,
1715 (SCM which, SCM who),
1716 "Return the scheduling priority of the process, process group\n"
1717 "or user, as indicated by @var{which} and @var{who}. @var{which}\n"
1718 "is one of the variables @code{PRIO_PROCESS}, @code{PRIO_PGRP}\n"
1719 "or @code{PRIO_USER}, and @var{who} is interpreted relative to\n"
1720 "@var{which} (a process identifier for @code{PRIO_PROCESS},\n"
1721 "process group identifier for @code{PRIO_PGRP}, and a user\n"
1722 "identifier for @code{PRIO_USER}. A zero value of @var{who}\n"
1723 "denotes the current process, process group, or user. Return\n"
1724 "the highest priority (lowest numerical value) of any of the\n"
1725 "specified processes.")
1726 #define FUNC_NAME s_scm_getpriority
1727 {
1728 int cwhich, cwho, ret;
1729
1730 cwhich = scm_to_int (which);
1731 cwho = scm_to_int (who);
1732
1733 /* We have to clear errno and examine it later, because -1 is a
1734 legal return value for getpriority(). */
1735 errno = 0;
1736 ret = getpriority (cwhich, cwho);
1737 if (errno != 0)
1738 SCM_SYSERROR;
1739 return scm_from_int (ret);
1740 }
1741 #undef FUNC_NAME
1742 #endif /* HAVE_GETPRIORITY */
1743
1744 #if HAVE_SETPRIORITY
1745 SCM_DEFINE (scm_setpriority, "setpriority", 3, 0, 0,
1746 (SCM which, SCM who, SCM prio),
1747 "Set the scheduling priority of the process, process group\n"
1748 "or user, as indicated by @var{which} and @var{who}. @var{which}\n"
1749 "is one of the variables @code{PRIO_PROCESS}, @code{PRIO_PGRP}\n"
1750 "or @code{PRIO_USER}, and @var{who} is interpreted relative to\n"
1751 "@var{which} (a process identifier for @code{PRIO_PROCESS},\n"
1752 "process group identifier for @code{PRIO_PGRP}, and a user\n"
1753 "identifier for @code{PRIO_USER}. A zero value of @var{who}\n"
1754 "denotes the current process, process group, or user.\n"
1755 "@var{prio} is a value in the range -20 and 20, the default\n"
1756 "priority is 0; lower priorities cause more favorable\n"
1757 "scheduling. Sets the priority of all of the specified\n"
1758 "processes. Only the super-user may lower priorities.\n"
1759 "The return value is not specified.")
1760 #define FUNC_NAME s_scm_setpriority
1761 {
1762 int cwhich, cwho, cprio;
1763
1764 cwhich = scm_to_int (which);
1765 cwho = scm_to_int (who);
1766 cprio = scm_to_int (prio);
1767
1768 if (setpriority (cwhich, cwho, cprio) == -1)
1769 SCM_SYSERROR;
1770 return SCM_UNSPECIFIED;
1771 }
1772 #undef FUNC_NAME
1773 #endif /* HAVE_SETPRIORITY */
1774
1775 #if HAVE_GETPASS
1776 SCM_DEFINE (scm_getpass, "getpass", 1, 0, 0,
1777 (SCM prompt),
1778 "Display @var{prompt} to the standard error output and read\n"
1779 "a password from @file{/dev/tty}. If this file is not\n"
1780 "accessible, it reads from standard input. The password may be\n"
1781 "up to 127 characters in length. Additional characters and the\n"
1782 "terminating newline character are discarded. While reading\n"
1783 "the password, echoing and the generation of signals by special\n"
1784 "characters is disabled.")
1785 #define FUNC_NAME s_scm_getpass
1786 {
1787 char * p;
1788 SCM passwd;
1789
1790 SCM_VALIDATE_STRING (1, prompt);
1791
1792 WITH_STRING (prompt, c_prompt,
1793 p = getpass(c_prompt));
1794 passwd = scm_from_locale_string (p);
1795
1796 /* Clear out the password in the static buffer. */
1797 memset (p, 0, strlen (p));
1798
1799 return passwd;
1800 }
1801 #undef FUNC_NAME
1802 #endif /* HAVE_GETPASS */
1803
1804 /* Wrapper function for flock() support under M$-Windows. */
1805 #ifdef __MINGW32__
1806 # include <io.h>
1807 # include <sys/locking.h>
1808 # include <errno.h>
1809 # ifndef _LK_UNLCK
1810 /* Current MinGW package fails to define this. *sigh* */
1811 # define _LK_UNLCK 0
1812 # endif
1813 # define LOCK_EX 1
1814 # define LOCK_UN 2
1815 # define LOCK_SH 4
1816 # define LOCK_NB 8
1817
1818 static int flock (int fd, int operation)
1819 {
1820 long pos, len;
1821 int ret, err;
1822
1823 /* Disable invalid arguments. */
1824 if (((operation & (LOCK_EX | LOCK_SH)) == (LOCK_EX | LOCK_SH)) ||
1825 ((operation & (LOCK_EX | LOCK_UN)) == (LOCK_EX | LOCK_UN)) ||
1826 ((operation & (LOCK_SH | LOCK_UN)) == (LOCK_SH | LOCK_UN)))
1827 {
1828 errno = EINVAL;
1829 return -1;
1830 }
1831
1832 /* Determine mode of operation and discard unsupported ones. */
1833 if (operation == (LOCK_NB | LOCK_EX))
1834 operation = _LK_NBLCK;
1835 else if (operation & LOCK_UN)
1836 operation = _LK_UNLCK;
1837 else if (operation == LOCK_EX)
1838 operation = _LK_LOCK;
1839 else
1840 {
1841 errno = EINVAL;
1842 return -1;
1843 }
1844
1845 /* Save current file pointer and seek to beginning. */
1846 if ((pos = lseek (fd, 0, SEEK_CUR)) == -1 || (len = filelength (fd)) == -1)
1847 return -1;
1848 lseek (fd, 0L, SEEK_SET);
1849
1850 /* Deadlock if necessary. */
1851 do
1852 {
1853 ret = _locking (fd, operation, len);
1854 }
1855 while (ret == -1 && errno == EDEADLOCK);
1856
1857 /* Produce meaningful error message. */
1858 if (errno == EACCES && operation == _LK_NBLCK)
1859 err = EDEADLOCK;
1860 else
1861 err = errno;
1862
1863 /* Return to saved file position pointer. */
1864 lseek (fd, pos, SEEK_SET);
1865 errno = err;
1866 return ret;
1867 }
1868 #endif /* __MINGW32__ */
1869
1870 #if HAVE_FLOCK || defined (__MINGW32__)
1871 SCM_DEFINE (scm_flock, "flock", 2, 0, 0,
1872 (SCM file, SCM operation),
1873 "Apply or remove an advisory lock on an open file.\n"
1874 "@var{operation} specifies the action to be done:\n"
1875 "\n"
1876 "@defvar LOCK_SH\n"
1877 "Shared lock. More than one process may hold a shared lock\n"
1878 "for a given file at a given time.\n"
1879 "@end defvar\n"
1880 "@defvar LOCK_EX\n"
1881 "Exclusive lock. Only one process may hold an exclusive lock\n"
1882 "for a given file at a given time.\n"
1883 "@end defvar\n"
1884 "@defvar LOCK_UN\n"
1885 "Unlock the file.\n"
1886 "@end defvar\n"
1887 "@defvar LOCK_NB\n"
1888 "Don't block when locking. This is combined with one of the\n"
1889 "other operations using @code{logior}. If @code{flock} would\n"
1890 "block an @code{EWOULDBLOCK} error is thrown.\n"
1891 "@end defvar\n"
1892 "\n"
1893 "The return value is not specified. @var{file} may be an open\n"
1894 "file descriptor or an open file descriptor port.\n"
1895 "\n"
1896 "Note that @code{flock} does not lock files across NFS.")
1897 #define FUNC_NAME s_scm_flock
1898 {
1899 int fdes;
1900
1901 if (scm_is_integer (file))
1902 fdes = scm_to_int (file);
1903 else
1904 {
1905 SCM_VALIDATE_OPFPORT (2, file);
1906
1907 fdes = SCM_FPORT_FDES (file);
1908 }
1909 if (flock (fdes, scm_to_int (operation)) == -1)
1910 SCM_SYSERROR;
1911 return SCM_UNSPECIFIED;
1912 }
1913 #undef FUNC_NAME
1914 #endif /* HAVE_FLOCK */
1915
1916 #if HAVE_SETHOSTNAME
1917 SCM_DEFINE (scm_sethostname, "sethostname", 1, 0, 0,
1918 (SCM name),
1919 "Set the host name of the current processor to @var{name}. May\n"
1920 "only be used by the superuser. The return value is not\n"
1921 "specified.")
1922 #define FUNC_NAME s_scm_sethostname
1923 {
1924 int rv;
1925
1926 WITH_STRING (name, c_name,
1927 rv = sethostname (c_name, strlen(c_name)));
1928 if (rv == -1)
1929 SCM_SYSERROR;
1930 return SCM_UNSPECIFIED;
1931 }
1932 #undef FUNC_NAME
1933 #endif /* HAVE_SETHOSTNAME */
1934
1935
1936 #if HAVE_GETHOSTNAME
1937 SCM_DEFINE (scm_gethostname, "gethostname", 0, 0, 0,
1938 (void),
1939 "Return the host name of the current processor.")
1940 #define FUNC_NAME s_scm_gethostname
1941 {
1942 #ifdef MAXHOSTNAMELEN
1943
1944 /* Various systems define MAXHOSTNAMELEN (including Solaris in fact).
1945 * On GNU/Linux this doesn't include the terminating '\0', hence "+ 1". */
1946 const int len = MAXHOSTNAMELEN + 1;
1947 char *const p = scm_malloc (len);
1948 const int res = gethostname (p, len);
1949
1950 scm_dynwind_begin (0);
1951 scm_dynwind_unwind_handler (free, p, 0);
1952
1953 #else
1954
1955 /* Default 256 is for Solaris, under Linux ENAMETOOLONG is returned if not
1956 * large enough. SUSv2 specifies 255 maximum too, apparently. */
1957 int len = 256;
1958 int res;
1959 char *p;
1960
1961 # if HAVE_SYSCONF && defined (_SC_HOST_NAME_MAX)
1962
1963 /* POSIX specifies the HOST_NAME_MAX system parameter for the max size,
1964 * which may reflect a particular kernel configuration.
1965 * Must watch out for this existing but giving -1, as happens for instance
1966 * in gnu/linux glibc 2.3.2. */
1967 {
1968 const long int n = sysconf (_SC_HOST_NAME_MAX);
1969 if (n != -1L)
1970 len = n;
1971 }
1972
1973 # endif
1974
1975 p = scm_malloc (len);
1976
1977 scm_dynwind_begin (0);
1978 scm_dynwind_unwind_handler (free, p, 0);
1979
1980 res = gethostname (p, len);
1981 while (res == -1 && errno == ENAMETOOLONG)
1982 {
1983 len *= 2;
1984
1985 /* scm_realloc may throw an exception. */
1986 p = scm_realloc (p, len);
1987 res = gethostname (p, len);
1988 }
1989
1990 #endif
1991
1992 if (res == -1)
1993 {
1994 const int save_errno = errno;
1995
1996 /* No guile exceptions can occur before we have freed p's memory. */
1997 scm_dynwind_end ();
1998 free (p);
1999
2000 errno = save_errno;
2001 SCM_SYSERROR;
2002 }
2003 else
2004 {
2005 /* scm_from_locale_string may throw an exception. */
2006 const SCM name = scm_from_locale_string (p);
2007
2008 /* No guile exceptions can occur before we have freed p's memory. */
2009 scm_dynwind_end ();
2010 free (p);
2011
2012 return name;
2013 }
2014 }
2015 #undef FUNC_NAME
2016 #endif /* HAVE_GETHOSTNAME */
2017
2018
2019 void
2020 scm_init_posix ()
2021 {
2022 scm_add_feature ("posix");
2023 #ifdef HAVE_GETEUID
2024 scm_add_feature ("EIDs");
2025 #endif
2026 #ifdef WAIT_ANY
2027 scm_c_define ("WAIT_ANY", scm_from_int (WAIT_ANY));
2028 #endif
2029 #ifdef WAIT_MYPGRP
2030 scm_c_define ("WAIT_MYPGRP", scm_from_int (WAIT_MYPGRP));
2031 #endif
2032 #ifdef WNOHANG
2033 scm_c_define ("WNOHANG", scm_from_int (WNOHANG));
2034 #endif
2035 #ifdef WUNTRACED
2036 scm_c_define ("WUNTRACED", scm_from_int (WUNTRACED));
2037 #endif
2038
2039 /* access() symbols. */
2040 scm_c_define ("R_OK", scm_from_int (R_OK));
2041 scm_c_define ("W_OK", scm_from_int (W_OK));
2042 scm_c_define ("X_OK", scm_from_int (X_OK));
2043 scm_c_define ("F_OK", scm_from_int (F_OK));
2044
2045 #ifdef LC_COLLATE
2046 scm_c_define ("LC_COLLATE", scm_from_int (LC_COLLATE));
2047 #endif
2048 #ifdef LC_CTYPE
2049 scm_c_define ("LC_CTYPE", scm_from_int (LC_CTYPE));
2050 #endif
2051 #ifdef LC_MONETARY
2052 scm_c_define ("LC_MONETARY", scm_from_int (LC_MONETARY));
2053 #endif
2054 #ifdef LC_NUMERIC
2055 scm_c_define ("LC_NUMERIC", scm_from_int (LC_NUMERIC));
2056 #endif
2057 #ifdef LC_TIME
2058 scm_c_define ("LC_TIME", scm_from_int (LC_TIME));
2059 #endif
2060 #ifdef LC_MESSAGES
2061 scm_c_define ("LC_MESSAGES", scm_from_int (LC_MESSAGES));
2062 #endif
2063 #ifdef LC_ALL
2064 scm_c_define ("LC_ALL", scm_from_int (LC_ALL));
2065 #endif
2066 #ifdef LC_PAPER
2067 scm_c_define ("LC_PAPER", scm_from_int (LC_PAPER));
2068 #endif
2069 #ifdef LC_NAME
2070 scm_c_define ("LC_NAME", scm_from_int (LC_NAME));
2071 #endif
2072 #ifdef LC_ADDRESS
2073 scm_c_define ("LC_ADDRESS", scm_from_int (LC_ADDRESS));
2074 #endif
2075 #ifdef LC_TELEPHONE
2076 scm_c_define ("LC_TELEPHONE", scm_from_int (LC_TELEPHONE));
2077 #endif
2078 #ifdef LC_MEASUREMENT
2079 scm_c_define ("LC_MEASUREMENT", scm_from_int (LC_MEASUREMENT));
2080 #endif
2081 #ifdef LC_IDENTIFICATION
2082 scm_c_define ("LC_IDENTIFICATION", scm_from_int (LC_IDENTIFICATION));
2083 #endif
2084 #ifdef PIPE_BUF
2085 scm_c_define ("PIPE_BUF", scm_from_long (PIPE_BUF));
2086 #endif
2087
2088 #ifdef PRIO_PROCESS
2089 scm_c_define ("PRIO_PROCESS", scm_from_int (PRIO_PROCESS));
2090 #endif
2091 #ifdef PRIO_PGRP
2092 scm_c_define ("PRIO_PGRP", scm_from_int (PRIO_PGRP));
2093 #endif
2094 #ifdef PRIO_USER
2095 scm_c_define ("PRIO_USER", scm_from_int (PRIO_USER));
2096 #endif
2097
2098 #ifdef LOCK_SH
2099 scm_c_define ("LOCK_SH", scm_from_int (LOCK_SH));
2100 #endif
2101 #ifdef LOCK_EX
2102 scm_c_define ("LOCK_EX", scm_from_int (LOCK_EX));
2103 #endif
2104 #ifdef LOCK_UN
2105 scm_c_define ("LOCK_UN", scm_from_int (LOCK_UN));
2106 #endif
2107 #ifdef LOCK_NB
2108 scm_c_define ("LOCK_NB", scm_from_int (LOCK_NB));
2109 #endif
2110
2111 #include "libguile/cpp_sig_symbols.c"
2112 #include "libguile/posix.x"
2113 }
2114
2115 /*
2116 Local Variables:
2117 c-file-style: "gnu"
2118 End:
2119 */