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