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