Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / libguile / filesys.c
1 /* Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2006,
2 * 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
18 */
19
20
21 \f
22 /* This file contains POSIX file system access procedures. Procedures
23 essential to the compiler and run-time (`stat', `canonicalize-path',
24 etc.) are compiled even with `--disable-posix'. */
25
26
27 /* See stime.c for comments on why _POSIX_C_SOURCE is not always defined. */
28 #define _LARGEFILE64_SOURCE /* ask for stat64 etc */
29 #ifdef __hpux
30 #define _POSIX_C_SOURCE 199506L /* for readdir_r */
31 #endif
32
33 #ifdef HAVE_CONFIG_H
34 # include <config.h>
35 #endif
36
37 #include <alloca.h>
38
39 #include <stdlib.h>
40 #include <stdio.h>
41 #include <errno.h>
42
43 #include "libguile/_scm.h"
44 #include "libguile/smob.h"
45 #include "libguile/feature.h"
46 #include "libguile/fports.h"
47 #include "libguile/private-gc.h" /* for SCM_MAX */
48 #include "libguile/strings.h"
49 #include "libguile/vectors.h"
50 #include "libguile/dynwind.h"
51
52 #include "libguile/validate.h"
53 #include "libguile/filesys.h"
54
55 \f
56 #ifdef HAVE_IO_H
57 #include <io.h>
58 #endif
59
60 #ifdef HAVE_DIRECT_H
61 #include <direct.h>
62 #endif
63
64 #ifdef TIME_WITH_SYS_TIME
65 # include <sys/time.h>
66 # include <time.h>
67 #else
68 # if HAVE_SYS_TIME_H
69 # include <sys/time.h>
70 # else
71 # include <time.h>
72 # endif
73 #endif
74
75 #ifdef HAVE_UNISTD_H
76 #include <unistd.h>
77 #endif
78
79 #ifdef LIBC_H_WITH_UNISTD_H
80 #include <libc.h>
81 #endif
82
83 #include <sys/select.h>
84
85 #ifdef HAVE_STRING_H
86 #include <string.h>
87 #endif
88
89 #include <sys/types.h>
90 #include <sys/stat.h>
91 #include <fcntl.h>
92
93 #ifdef HAVE_PWD_H
94 #include <pwd.h>
95 #endif
96
97 #include <dirent.h>
98
99 #define NAMLEN(dirent) strlen ((dirent)->d_name)
100
101 #ifdef HAVE_SYS_SENDFILE_H
102 # include <sys/sendfile.h>
103 #endif
104
105 /* Glibc's `sendfile' function. */
106 #define sendfile_or_sendfile64 \
107 CHOOSE_LARGEFILE (sendfile, sendfile64)
108
109 #include <full-read.h>
110 #include <full-write.h>
111
112
113 /* Some more definitions for the native Windows port. */
114 #ifdef __MINGW32__
115 # define fsync(fd) _commit (fd)
116 #endif /* __MINGW32__ */
117
118
119 \f
120
121 /* Two helper macros for an often used pattern */
122
123 #define STRING_SYSCALL(str,cstr,code) \
124 do { \
125 int eno; \
126 char *cstr = scm_to_locale_string (str); \
127 SCM_SYSCALL (code); \
128 eno = errno; free (cstr); errno = eno; \
129 } while (0)
130
131 #define STRING2_SYSCALL(str1,cstr1,str2,cstr2,code) \
132 do { \
133 int eno; \
134 char *cstr1, *cstr2; \
135 scm_dynwind_begin (0); \
136 cstr1 = scm_to_locale_string (str1); \
137 scm_dynwind_free (cstr1); \
138 cstr2 = scm_to_locale_string (str2); \
139 scm_dynwind_free (cstr2); \
140 SCM_SYSCALL (code); \
141 eno = errno; scm_dynwind_end (); errno = eno; \
142 } while (0)
143
144 \f
145
146 #ifdef HAVE_POSIX
147
148 /* {Permissions}
149 */
150
151 #ifdef HAVE_CHOWN
152 SCM_DEFINE (scm_chown, "chown", 3, 0, 0,
153 (SCM object, SCM owner, SCM group),
154 "Change the ownership and group of the file referred to by @var{object} to\n"
155 "the integer values @var{owner} and @var{group}. @var{object} can be\n"
156 "a string containing a file name or, if the platform\n"
157 "supports fchown, a port or integer file descriptor\n"
158 "which is open on the file. The return value\n"
159 "is unspecified.\n\n"
160 "If @var{object} is a symbolic link, either the\n"
161 "ownership of the link or the ownership of the referenced file will be\n"
162 "changed depending on the operating system (lchown is\n"
163 "unsupported at present). If @var{owner} or @var{group} is specified\n"
164 "as @code{-1}, then that ID is not changed.")
165 #define FUNC_NAME s_scm_chown
166 {
167 int rv;
168
169 object = SCM_COERCE_OUTPORT (object);
170
171 #ifdef HAVE_FCHOWN
172 if (scm_is_integer (object) || (SCM_OPFPORTP (object)))
173 {
174 int fdes = (SCM_OPFPORTP (object)?
175 SCM_FPORT_FDES (object) : scm_to_int (object));
176
177 SCM_SYSCALL (rv = fchown (fdes, scm_to_int (owner), scm_to_int (group)));
178 }
179 else
180 #endif
181 {
182 STRING_SYSCALL (object, c_object,
183 rv = chown (c_object,
184 scm_to_int (owner), scm_to_int (group)));
185 }
186 if (rv == -1)
187 SCM_SYSERROR;
188 return SCM_UNSPECIFIED;
189 }
190 #undef FUNC_NAME
191 #endif /* HAVE_CHOWN */
192
193 \f
194
195 SCM_DEFINE (scm_open_fdes, "open-fdes", 2, 1, 0,
196 (SCM path, SCM flags, SCM mode),
197 "Similar to @code{open} but return a file descriptor instead of\n"
198 "a port.")
199 #define FUNC_NAME s_scm_open_fdes
200 {
201 int fd;
202 int iflags;
203 int imode;
204
205 iflags = SCM_NUM2INT (2, flags);
206 imode = SCM_NUM2INT_DEF (3, mode, 0666);
207 STRING_SYSCALL (path, c_path, fd = open_or_open64 (c_path, iflags, imode));
208 if (fd == -1)
209 SCM_SYSERROR;
210 return scm_from_int (fd);
211 }
212 #undef FUNC_NAME
213
214 SCM_DEFINE (scm_open, "open", 2, 1, 0,
215 (SCM path, SCM flags, SCM mode),
216 "Open the file named by @var{path} for reading and/or writing.\n"
217 "@var{flags} is an integer specifying how the file should be opened.\n"
218 "@var{mode} is an integer specifying the permission bits of the file, if\n"
219 "it needs to be created, before the umask is applied. The default is 666\n"
220 "(Unix itself has no default).\n\n"
221 "@var{flags} can be constructed by combining variables using @code{logior}.\n"
222 "Basic flags are:\n\n"
223 "@defvar O_RDONLY\n"
224 "Open the file read-only.\n"
225 "@end defvar\n"
226 "@defvar O_WRONLY\n"
227 "Open the file write-only.\n"
228 "@end defvar\n"
229 "@defvar O_RDWR\n"
230 "Open the file read/write.\n"
231 "@end defvar\n"
232 "@defvar O_APPEND\n"
233 "Append to the file instead of truncating.\n"
234 "@end defvar\n"
235 "@defvar O_CREAT\n"
236 "Create the file if it does not already exist.\n"
237 "@end defvar\n\n"
238 "See the Unix documentation of the @code{open} system call\n"
239 "for additional flags.")
240 #define FUNC_NAME s_scm_open
241 {
242 SCM newpt;
243 char *port_mode;
244 int fd;
245 int iflags;
246
247 fd = scm_to_int (scm_open_fdes (path, flags, mode));
248 iflags = SCM_NUM2INT (2, flags);
249
250 if ((iflags & O_RDWR) == O_RDWR)
251 {
252 /* Opened read-write. */
253 if (iflags & O_APPEND)
254 port_mode = "a+";
255 else if (iflags & O_CREAT)
256 port_mode = "w+";
257 else
258 port_mode = "r+";
259 }
260 else
261 {
262 /* Opened read-only or write-only. */
263 if (iflags & O_APPEND)
264 port_mode = "a";
265 else if (iflags & O_WRONLY)
266 port_mode = "w";
267 else
268 port_mode = "r";
269 }
270
271 newpt = scm_fdes_to_port (fd, port_mode, path);
272 return newpt;
273 }
274 #undef FUNC_NAME
275
276 SCM_DEFINE (scm_close, "close", 1, 0, 0,
277 (SCM fd_or_port),
278 "Similar to close-port (@pxref{Closing, close-port}),\n"
279 "but also works on file descriptors. A side\n"
280 "effect of closing a file descriptor is that any ports using that file\n"
281 "descriptor are moved to a different file descriptor and have\n"
282 "their revealed counts set to zero.")
283 #define FUNC_NAME s_scm_close
284 {
285 int rv;
286 int fd;
287
288 fd_or_port = SCM_COERCE_OUTPORT (fd_or_port);
289
290 if (SCM_PORTP (fd_or_port))
291 return scm_close_port (fd_or_port);
292 fd = scm_to_int (fd_or_port);
293 scm_evict_ports (fd); /* see scsh manual. */
294 SCM_SYSCALL (rv = close (fd));
295 /* following scsh, closing an already closed file descriptor is
296 not an error. */
297 if (rv < 0 && errno != EBADF)
298 SCM_SYSERROR;
299 return scm_from_bool (rv >= 0);
300 }
301 #undef FUNC_NAME
302
303 SCM_DEFINE (scm_close_fdes, "close-fdes", 1, 0, 0,
304 (SCM fd),
305 "A simple wrapper for the @code{close} system call.\n"
306 "Close file descriptor @var{fd}, which must be an integer.\n"
307 "Unlike close (@pxref{Ports and File Descriptors, close}),\n"
308 "the file descriptor will be closed even if a port is using it.\n"
309 "The return value is unspecified.")
310 #define FUNC_NAME s_scm_close_fdes
311 {
312 int c_fd;
313 int rv;
314
315 c_fd = scm_to_int (fd);
316 SCM_SYSCALL (rv = close (c_fd));
317 if (rv < 0)
318 SCM_SYSERROR;
319 return SCM_UNSPECIFIED;
320 }
321 #undef FUNC_NAME
322
323 #endif /* HAVE_POSIX */
324
325 \f
326 /* {Files}
327 */
328
329 SCM_SYMBOL (scm_sym_regular, "regular");
330 SCM_SYMBOL (scm_sym_directory, "directory");
331 #ifdef S_ISLNK
332 SCM_SYMBOL (scm_sym_symlink, "symlink");
333 #endif
334 SCM_SYMBOL (scm_sym_block_special, "block-special");
335 SCM_SYMBOL (scm_sym_char_special, "char-special");
336 SCM_SYMBOL (scm_sym_fifo, "fifo");
337 SCM_SYMBOL (scm_sym_sock, "socket");
338 SCM_SYMBOL (scm_sym_unknown, "unknown");
339
340 static SCM
341 scm_stat2scm (struct stat_or_stat64 *stat_temp)
342 {
343 SCM ans = scm_c_make_vector (18, SCM_UNSPECIFIED);
344
345 SCM_SIMPLE_VECTOR_SET(ans, 0, scm_from_ulong (stat_temp->st_dev));
346 SCM_SIMPLE_VECTOR_SET(ans, 1, scm_from_ino_t_or_ino64_t (stat_temp->st_ino));
347 SCM_SIMPLE_VECTOR_SET(ans, 2, scm_from_ulong (stat_temp->st_mode));
348 SCM_SIMPLE_VECTOR_SET(ans, 3, scm_from_ulong (stat_temp->st_nlink));
349 SCM_SIMPLE_VECTOR_SET(ans, 4, scm_from_ulong (stat_temp->st_uid));
350 SCM_SIMPLE_VECTOR_SET(ans, 5, scm_from_ulong (stat_temp->st_gid));
351 #ifdef HAVE_STRUCT_STAT_ST_RDEV
352 SCM_SIMPLE_VECTOR_SET(ans, 6, scm_from_ulong (stat_temp->st_rdev));
353 #else
354 SCM_SIMPLE_VECTOR_SET(ans, 6, SCM_BOOL_F);
355 #endif
356 SCM_SIMPLE_VECTOR_SET(ans, 7, scm_from_off_t_or_off64_t (stat_temp->st_size));
357 SCM_SIMPLE_VECTOR_SET(ans, 8, scm_from_ulong (stat_temp->st_atime));
358 SCM_SIMPLE_VECTOR_SET(ans, 9, scm_from_ulong (stat_temp->st_mtime));
359 SCM_SIMPLE_VECTOR_SET(ans, 10, scm_from_ulong (stat_temp->st_ctime));
360 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
361 SCM_SIMPLE_VECTOR_SET(ans, 11, scm_from_ulong (stat_temp->st_blksize));
362 #else
363 SCM_SIMPLE_VECTOR_SET(ans, 11, scm_from_ulong (4096L));
364 #endif
365 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
366 SCM_SIMPLE_VECTOR_SET(ans, 12, scm_from_blkcnt_t_or_blkcnt64_t (stat_temp->st_blocks));
367 #else
368 SCM_SIMPLE_VECTOR_SET(ans, 12, SCM_BOOL_F);
369 #endif
370 {
371 int mode = stat_temp->st_mode;
372
373 if (S_ISREG (mode))
374 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_regular);
375 else if (S_ISDIR (mode))
376 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_directory);
377 #ifdef S_ISLNK
378 /* systems without symlinks probably don't have S_ISLNK */
379 else if (S_ISLNK (mode))
380 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_symlink);
381 #endif
382 else if (S_ISBLK (mode))
383 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_block_special);
384 else if (S_ISCHR (mode))
385 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_char_special);
386 else if (S_ISFIFO (mode))
387 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_fifo);
388 #ifdef S_ISSOCK
389 else if (S_ISSOCK (mode))
390 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_sock);
391 #endif
392 else
393 SCM_SIMPLE_VECTOR_SET(ans, 13, scm_sym_unknown);
394
395 SCM_SIMPLE_VECTOR_SET(ans, 14, scm_from_int ((~S_IFMT) & mode));
396
397 /* the layout of the bits in ve[14] is intended to be portable.
398 If there are systems that don't follow the usual convention,
399 the following could be used:
400
401 tmp = 0;
402 if (S_ISUID & mode) tmp += 1;
403 tmp <<= 1;
404 if (S_IRGRP & mode) tmp += 1;
405 tmp <<= 1;
406 if (S_ISVTX & mode) tmp += 1;
407 tmp <<= 1;
408 if (S_IRUSR & mode) tmp += 1;
409 tmp <<= 1;
410 if (S_IWUSR & mode) tmp += 1;
411 tmp <<= 1;
412 if (S_IXUSR & mode) tmp += 1;
413 tmp <<= 1;
414 if (S_IWGRP & mode) tmp += 1;
415 tmp <<= 1;
416 if (S_IXGRP & mode) tmp += 1;
417 tmp <<= 1;
418 if (S_IROTH & mode) tmp += 1;
419 tmp <<= 1;
420 if (S_IWOTH & mode) tmp += 1;
421 tmp <<= 1;
422 if (S_IXOTH & mode) tmp += 1;
423
424 SCM_SIMPLE_VECTOR_SET(ans, 14, scm_from_int (tmp));
425
426 */
427 }
428 #ifdef HAVE_STRUCT_STAT_ST_ATIM
429 SCM_SIMPLE_VECTOR_SET(ans, 15, scm_from_long (stat_temp->st_atim.tv_nsec));
430 #else
431 SCM_SIMPLE_VECTOR_SET(ans, 15, SCM_I_MAKINUM (0));
432 #endif
433 #ifdef HAVE_STRUCT_STAT_ST_MTIM
434 SCM_SIMPLE_VECTOR_SET(ans, 16, scm_from_long (stat_temp->st_mtim.tv_nsec));
435 #else
436 SCM_SIMPLE_VECTOR_SET(ans, 16, SCM_I_MAKINUM (0));
437 #endif
438 #ifdef HAVE_STRUCT_STAT_ST_CTIM
439 SCM_SIMPLE_VECTOR_SET(ans, 17, scm_from_ulong (stat_temp->st_ctim.tv_sec));
440 #else
441 SCM_SIMPLE_VECTOR_SET(ans, 17, SCM_I_MAKINUM (0));
442 #endif
443
444 return ans;
445 }
446
447 static int
448 is_file_name_separator (SCM c)
449 {
450 if (scm_is_eq (c, SCM_MAKE_CHAR ('/')))
451 return 1;
452 #ifdef __MINGW32__
453 if (scm_is_eq (c, SCM_MAKE_CHAR ('\\')))
454 return 1;
455 #endif
456 return 0;
457 }
458
459 SCM_DEFINE (scm_stat, "stat", 1, 1, 0,
460 (SCM object, SCM exception_on_error),
461 "Return an object containing various information about the file\n"
462 "determined by @var{object}. @var{object} can be a string containing\n"
463 "a file name or a port or integer file descriptor which is open\n"
464 "on a file (in which case @code{fstat} is used as the underlying\n"
465 "system call).\n"
466 "\n"
467 "If the optional @var{exception_on_error} argument is true, which\n"
468 "is the default, an exception will be raised if the underlying\n"
469 "system call returns an error, for example if the file is not\n"
470 "found or is not readable. Otherwise, an error will cause\n"
471 "@code{stat} to return @code{#f}."
472 "\n"
473 "The object returned by a successful call to @code{stat} can be\n"
474 "passed as a single parameter to the following procedures, all of\n"
475 "which return integers:\n"
476 "\n"
477 "@table @code\n"
478 "@item stat:dev\n"
479 "The device containing the file.\n"
480 "@item stat:ino\n"
481 "The file serial number, which distinguishes this file from all\n"
482 "other files on the same device.\n"
483 "@item stat:mode\n"
484 "The mode of the file. This includes file type information and\n"
485 "the file permission bits. See @code{stat:type} and\n"
486 "@code{stat:perms} below.\n"
487 "@item stat:nlink\n"
488 "The number of hard links to the file.\n"
489 "@item stat:uid\n"
490 "The user ID of the file's owner.\n"
491 "@item stat:gid\n"
492 "The group ID of the file.\n"
493 "@item stat:rdev\n"
494 "Device ID; this entry is defined only for character or block\n"
495 "special files.\n"
496 "@item stat:size\n"
497 "The size of a regular file in bytes.\n"
498 "@item stat:atime\n"
499 "The last access time for the file.\n"
500 "@item stat:mtime\n"
501 "The last modification time for the file.\n"
502 "@item stat:ctime\n"
503 "The last modification time for the attributes of the file.\n"
504 "@item stat:blksize\n"
505 "The optimal block size for reading or writing the file, in\n"
506 "bytes.\n"
507 "@item stat:blocks\n"
508 "The amount of disk space that the file occupies measured in\n"
509 "units of 512 byte blocks.\n"
510 "@end table\n"
511 "\n"
512 "In addition, the following procedures return the information\n"
513 "from stat:mode in a more convenient form:\n"
514 "\n"
515 "@table @code\n"
516 "@item stat:type\n"
517 "A symbol representing the type of file. Possible values are\n"
518 "regular, directory, symlink, block-special, char-special, fifo,\n"
519 "socket and unknown\n"
520 "@item stat:perms\n"
521 "An integer representing the access permission bits.\n"
522 "@end table")
523 #define FUNC_NAME s_scm_stat
524 {
525 int rv;
526 int fdes;
527 struct stat_or_stat64 stat_temp;
528
529 if (scm_is_integer (object))
530 {
531 SCM_SYSCALL (rv = fstat_or_fstat64 (scm_to_int (object), &stat_temp));
532 }
533 else if (scm_is_string (object))
534 {
535 char *file = scm_to_locale_string (object);
536 SCM_SYSCALL (rv = stat_or_stat64 (file, &stat_temp));
537 free (file);
538 }
539 else
540 {
541 object = SCM_COERCE_OUTPORT (object);
542 SCM_VALIDATE_OPFPORT (1, object);
543 fdes = SCM_FPORT_FDES (object);
544 SCM_SYSCALL (rv = fstat_or_fstat64 (fdes, &stat_temp));
545 }
546
547 if (rv == -1)
548 {
549 if (SCM_UNBNDP (exception_on_error) || scm_is_true (exception_on_error))
550 {
551 int en = errno;
552 SCM_SYSERROR_MSG ("~A: ~S",
553 scm_list_2 (scm_strerror (scm_from_int (en)),
554 object),
555 en);
556 }
557 else
558 return SCM_BOOL_F;
559 }
560 return scm_stat2scm (&stat_temp);
561 }
562 #undef FUNC_NAME
563
564 #ifdef HAVE_LSTAT
565 SCM_DEFINE (scm_lstat, "lstat", 1, 0, 0,
566 (SCM str),
567 "Similar to @code{stat}, but does not follow symbolic links, i.e.,\n"
568 "it will return information about a symbolic link itself, not the\n"
569 "file it points to. @var{str} must be a string.")
570 #define FUNC_NAME s_scm_lstat
571 {
572 int rv;
573 struct stat_or_stat64 stat_temp;
574
575 STRING_SYSCALL (str, c_str, rv = lstat_or_lstat64 (c_str, &stat_temp));
576 if (rv != 0)
577 {
578 int en = errno;
579
580 SCM_SYSERROR_MSG ("~A: ~S",
581 scm_list_2 (scm_strerror (scm_from_int (en)), str),
582 en);
583 }
584 return scm_stat2scm (&stat_temp);
585 }
586 #undef FUNC_NAME
587 #endif /* HAVE_LSTAT */
588
589 \f
590 #ifdef HAVE_POSIX
591
592 /* {Modifying Directories}
593 */
594
595 #ifdef HAVE_LINK
596 SCM_DEFINE (scm_link, "link", 2, 0, 0,
597 (SCM oldpath, SCM newpath),
598 "Creates a new name @var{newpath} in the file system for the\n"
599 "file named by @var{oldpath}. If @var{oldpath} is a symbolic\n"
600 "link, the link may or may not be followed depending on the\n"
601 "system.")
602 #define FUNC_NAME s_scm_link
603 {
604 int val;
605
606 STRING2_SYSCALL (oldpath, c_oldpath,
607 newpath, c_newpath,
608 val = link (c_oldpath, c_newpath));
609 if (val != 0)
610 SCM_SYSERROR;
611 return SCM_UNSPECIFIED;
612 }
613 #undef FUNC_NAME
614 #endif /* HAVE_LINK */
615
616 \f
617 /* {Navigating Directories}
618 */
619
620
621 SCM_DEFINE (scm_chdir, "chdir", 1, 0, 0,
622 (SCM str),
623 "Change the current working directory to @var{str}.\n"
624 "The return value is unspecified.")
625 #define FUNC_NAME s_scm_chdir
626 {
627 int ans;
628
629 STRING_SYSCALL (str, c_str, ans = chdir (c_str));
630 if (ans != 0)
631 SCM_SYSERROR;
632 return SCM_UNSPECIFIED;
633 }
634 #undef FUNC_NAME
635
636 \f
637
638 /* check that element is a port or file descriptor. if it's a port
639 and its buffer is ready for use, add it to the ports_ready list.
640 otherwise add its file descriptor to *set. the type of list can be
641 determined from pos: SCM_ARG1 for reads, SCM_ARG2 for writes,
642 SCM_ARG3 for excepts. */
643 static int
644 set_element (fd_set *set, SCM *ports_ready, SCM element, int pos)
645 {
646 int fd;
647
648 if (scm_is_integer (element))
649 {
650 fd = scm_to_int (element);
651 }
652 else
653 {
654 int use_buf = 0;
655
656 element = SCM_COERCE_OUTPORT (element);
657 SCM_ASSERT (SCM_OPFPORTP (element), element, pos, "select");
658 if (pos == SCM_ARG1)
659 {
660 /* check whether port has buffered input. */
661 scm_t_port *pt = SCM_PTAB_ENTRY (element);
662
663 if (pt->read_pos < pt->read_end)
664 use_buf = 1;
665 }
666 else if (pos == SCM_ARG2)
667 {
668 /* check whether port's output buffer has room. */
669 scm_t_port *pt = SCM_PTAB_ENTRY (element);
670
671 /* > 1 since writing the last byte in the buffer causes flush. */
672 if (pt->write_end - pt->write_pos > 1)
673 use_buf = 1;
674 }
675 fd = use_buf ? -1 : SCM_FPORT_FDES (element);
676 }
677 if (fd == -1)
678 *ports_ready = scm_cons (element, *ports_ready);
679 else
680 FD_SET (fd, set);
681 return fd;
682 }
683
684 /* check list_or_vec, a list or vector of ports or file descriptors,
685 adding each member to either the ports_ready list (if it's a port
686 with a usable buffer) or to *set. the kind of list_or_vec can be
687 determined from pos: SCM_ARG1 for reads, SCM_ARG2 for writes,
688 SCM_ARG3 for excepts. */
689 static int
690 fill_select_type (fd_set *set, SCM *ports_ready, SCM list_or_vec, int pos)
691 {
692 int max_fd = 0;
693
694 if (scm_is_simple_vector (list_or_vec))
695 {
696 int i = SCM_SIMPLE_VECTOR_LENGTH (list_or_vec);
697
698 while (--i >= 0)
699 {
700 int fd = set_element (set, ports_ready,
701 SCM_SIMPLE_VECTOR_REF (list_or_vec, i), pos);
702
703 if (fd > max_fd)
704 max_fd = fd;
705 }
706 }
707 else
708 {
709 while (!SCM_NULL_OR_NIL_P (list_or_vec))
710 {
711 int fd = set_element (set, ports_ready, SCM_CAR (list_or_vec), pos);
712
713 if (fd > max_fd)
714 max_fd = fd;
715 list_or_vec = SCM_CDR (list_or_vec);
716 }
717 }
718
719 return max_fd;
720 }
721
722 /* if element (a file descriptor or port) appears in *set, cons it to
723 list. return list. */
724 static SCM
725 get_element (fd_set *set, SCM element, SCM list)
726 {
727 int fd;
728
729 if (scm_is_integer (element))
730 {
731 fd = scm_to_int (element);
732 }
733 else
734 {
735 fd = SCM_FPORT_FDES (SCM_COERCE_OUTPORT (element));
736 }
737 if (FD_ISSET (fd, set))
738 list = scm_cons (element, list);
739 return list;
740 }
741
742 /* construct component of scm_select return value.
743 set: pointer to set of file descriptors found by select to be ready
744 ports_ready: ports ready due to buffering
745 list_or_vec: original list/vector handed to scm_select.
746 the return value is a list/vector of ready ports/file descriptors.
747 works by finding the objects in list which correspond to members of
748 *set and appending them to ports_ready. result is converted to a
749 vector if list_or_vec is a vector. */
750 static SCM
751 retrieve_select_type (fd_set *set, SCM ports_ready, SCM list_or_vec)
752 {
753 SCM answer_list = ports_ready;
754
755 if (scm_is_simple_vector (list_or_vec))
756 {
757 int i = SCM_SIMPLE_VECTOR_LENGTH (list_or_vec);
758
759 while (--i >= 0)
760 {
761 answer_list = get_element (set,
762 SCM_SIMPLE_VECTOR_REF (list_or_vec, i),
763 answer_list);
764 }
765 return scm_vector (answer_list);
766 }
767 else
768 {
769 /* list_or_vec must be a list. */
770 while (!SCM_NULL_OR_NIL_P (list_or_vec))
771 {
772 answer_list = get_element (set, SCM_CAR (list_or_vec), answer_list);
773 list_or_vec = SCM_CDR (list_or_vec);
774 }
775 return answer_list;
776 }
777 }
778
779 /* Static helper functions above refer to s_scm_select directly as s_select */
780 SCM_DEFINE (scm_select, "select", 3, 2, 0,
781 (SCM reads, SCM writes, SCM excepts, SCM secs, SCM usecs),
782 "This procedure has a variety of uses: waiting for the ability\n"
783 "to provide input, accept output, or the existence of\n"
784 "exceptional conditions on a collection of ports or file\n"
785 "descriptors, or waiting for a timeout to occur.\n"
786 "It also returns if interrupted by a signal.\n\n"
787 "@var{reads}, @var{writes} and @var{excepts} can be lists or\n"
788 "vectors, with each member a port or a file descriptor.\n"
789 "The value returned is a list of three corresponding\n"
790 "lists or vectors containing only the members which meet the\n"
791 "specified requirement. The ability of port buffers to\n"
792 "provide input or accept output is taken into account.\n"
793 "Ordering of the input lists or vectors is not preserved.\n\n"
794 "The optional arguments @var{secs} and @var{usecs} specify the\n"
795 "timeout. Either @var{secs} can be specified alone, as\n"
796 "either an integer or a real number, or both @var{secs} and\n"
797 "@var{usecs} can be specified as integers, in which case\n"
798 "@var{usecs} is an additional timeout expressed in\n"
799 "microseconds. If @var{secs} is omitted or is @code{#f} then\n"
800 "select will wait for as long as it takes for one of the other\n"
801 "conditions to be satisfied.\n\n"
802 "The scsh version of @code{select} differs as follows:\n"
803 "Only vectors are accepted for the first three arguments.\n"
804 "The @var{usecs} argument is not supported.\n"
805 "Multiple values are returned instead of a list.\n"
806 "Duplicates in the input vectors appear only once in output.\n"
807 "An additional @code{select!} interface is provided.")
808 #define FUNC_NAME s_scm_select
809 {
810 struct timeval timeout;
811 struct timeval * time_ptr;
812 fd_set read_set;
813 fd_set write_set;
814 fd_set except_set;
815 int read_count;
816 int write_count;
817 int except_count;
818 /* these lists accumulate ports which are ready due to buffering.
819 their file descriptors don't need to be added to the select sets. */
820 SCM read_ports_ready = SCM_EOL;
821 SCM write_ports_ready = SCM_EOL;
822 int max_fd;
823
824 if (scm_is_simple_vector (reads))
825 {
826 read_count = SCM_SIMPLE_VECTOR_LENGTH (reads);
827 }
828 else
829 {
830 read_count = scm_ilength (reads);
831 SCM_ASSERT (read_count >= 0, reads, SCM_ARG1, FUNC_NAME);
832 }
833 if (scm_is_simple_vector (writes))
834 {
835 write_count = SCM_SIMPLE_VECTOR_LENGTH (writes);
836 }
837 else
838 {
839 write_count = scm_ilength (writes);
840 SCM_ASSERT (write_count >= 0, writes, SCM_ARG2, FUNC_NAME);
841 }
842 if (scm_is_simple_vector (excepts))
843 {
844 except_count = SCM_SIMPLE_VECTOR_LENGTH (excepts);
845 }
846 else
847 {
848 except_count = scm_ilength (excepts);
849 SCM_ASSERT (except_count >= 0, excepts, SCM_ARG3, FUNC_NAME);
850 }
851
852 FD_ZERO (&read_set);
853 FD_ZERO (&write_set);
854 FD_ZERO (&except_set);
855
856 max_fd = fill_select_type (&read_set, &read_ports_ready, reads, SCM_ARG1);
857
858 {
859 int write_max = fill_select_type (&write_set, &write_ports_ready,
860 writes, SCM_ARG2);
861 int except_max = fill_select_type (&except_set, NULL,
862 excepts, SCM_ARG3);
863
864 if (write_max > max_fd)
865 max_fd = write_max;
866 if (except_max > max_fd)
867 max_fd = except_max;
868 }
869
870 /* if there's a port with a ready buffer, don't block, just
871 check for ready file descriptors. */
872 if (!scm_is_null (read_ports_ready) || !scm_is_null (write_ports_ready))
873 {
874 timeout.tv_sec = 0;
875 timeout.tv_usec = 0;
876 time_ptr = &timeout;
877 }
878 else if (SCM_UNBNDP (secs) || scm_is_false (secs))
879 time_ptr = 0;
880 else
881 {
882 if (scm_is_unsigned_integer (secs, 0, ULONG_MAX))
883 {
884 timeout.tv_sec = scm_to_ulong (secs);
885 if (SCM_UNBNDP (usecs))
886 timeout.tv_usec = 0;
887 else
888 timeout.tv_usec = scm_to_long (usecs);
889 }
890 else
891 {
892 double fl = scm_to_double (secs);
893
894 if (!SCM_UNBNDP (usecs))
895 SCM_WRONG_TYPE_ARG (4, secs);
896 if (fl > LONG_MAX)
897 SCM_OUT_OF_RANGE (4, secs);
898 timeout.tv_sec = (long) fl;
899 timeout.tv_usec = (long) ((fl - timeout.tv_sec) * 1000000);
900 }
901 time_ptr = &timeout;
902 }
903
904 {
905 int rv = select (max_fd + 1,
906 &read_set, &write_set, &except_set,
907 time_ptr);
908 if (rv < 0)
909 SCM_SYSERROR;
910 }
911 return scm_list_3 (retrieve_select_type (&read_set, read_ports_ready, reads),
912 retrieve_select_type (&write_set, write_ports_ready, writes),
913 retrieve_select_type (&except_set, SCM_EOL, excepts));
914 }
915 #undef FUNC_NAME
916
917 \f
918
919 #ifdef HAVE_FCNTL
920 SCM_DEFINE (scm_fcntl, "fcntl", 2, 1, 0,
921 (SCM object, SCM cmd, SCM value),
922 "Apply @var{cmd} to the specified file descriptor or the underlying\n"
923 "file descriptor of the specified port. @var{value} is an optional\n"
924 "integer argument.\n\n"
925 "Values for @var{cmd} are:\n\n"
926 "@table @code\n"
927 "@item F_DUPFD\n"
928 "Duplicate a file descriptor\n"
929 "@item F_GETFD\n"
930 "Get flags associated with the file descriptor.\n"
931 "@item F_SETFD\n"
932 "Set flags associated with the file descriptor to @var{value}.\n"
933 "@item F_GETFL\n"
934 "Get flags associated with the open file.\n"
935 "@item F_SETFL\n"
936 "Set flags associated with the open file to @var{value}\n"
937 "@item F_GETOWN\n"
938 "Get the process ID of a socket's owner, for @code{SIGIO} signals.\n"
939 "@item F_SETOWN\n"
940 "Set the process that owns a socket to @var{value}, for @code{SIGIO} signals.\n"
941 "@item FD_CLOEXEC\n"
942 "The value used to indicate the \"close on exec\" flag with @code{F_GETFL} or\n"
943 "@code{F_SETFL}.\n"
944 "@end table")
945 #define FUNC_NAME s_scm_fcntl
946 {
947 int rv;
948 int fdes;
949 int ivalue;
950
951 object = SCM_COERCE_OUTPORT (object);
952
953 if (SCM_OPFPORTP (object))
954 fdes = SCM_FPORT_FDES (object);
955 else
956 fdes = scm_to_int (object);
957
958 if (SCM_UNBNDP (value))
959 ivalue = 0;
960 else
961 ivalue = scm_to_int (value);
962
963 SCM_SYSCALL (rv = fcntl (fdes, scm_to_int (cmd), ivalue));
964 if (rv == -1)
965 SCM_SYSERROR;
966 return scm_from_int (rv);
967 }
968 #undef FUNC_NAME
969 #endif /* HAVE_FCNTL */
970
971 SCM_DEFINE (scm_fsync, "fsync", 1, 0, 0,
972 (SCM object),
973 "Copies any unwritten data for the specified output file\n"
974 "descriptor to disk. If @var{object} is a port, its buffer is\n"
975 "flushed before the underlying file descriptor is fsync'd.\n"
976 "The return value is unspecified.")
977 #define FUNC_NAME s_scm_fsync
978 {
979 int fdes;
980
981 object = SCM_COERCE_OUTPORT (object);
982
983 if (SCM_OPFPORTP (object))
984 {
985 scm_flush_unlocked (object);
986 fdes = SCM_FPORT_FDES (object);
987 }
988 else
989 fdes = scm_to_int (object);
990
991 if (fsync (fdes) == -1)
992 SCM_SYSERROR;
993 return SCM_UNSPECIFIED;
994 }
995 #undef FUNC_NAME
996
997 #ifdef HAVE_SYMLINK
998 SCM_DEFINE (scm_symlink, "symlink", 2, 0, 0,
999 (SCM oldpath, SCM newpath),
1000 "Create a symbolic link named @var{oldpath} with the value\n"
1001 "(i.e., pointing to) @var{newpath}. The return value is\n"
1002 "unspecified.")
1003 #define FUNC_NAME s_scm_symlink
1004 {
1005 int val;
1006
1007 STRING2_SYSCALL (oldpath, c_oldpath,
1008 newpath, c_newpath,
1009 val = symlink (c_oldpath, c_newpath));
1010 if (val != 0)
1011 SCM_SYSERROR;
1012 return SCM_UNSPECIFIED;
1013 }
1014 #undef FUNC_NAME
1015 #endif /* HAVE_SYMLINK */
1016
1017 #ifdef HAVE_READLINK
1018 SCM_DEFINE (scm_readlink, "readlink", 1, 0, 0,
1019 (SCM path),
1020 "Return the value of the symbolic link named by @var{path} (a\n"
1021 "string), i.e., the file that the link points to.")
1022 #define FUNC_NAME s_scm_readlink
1023 {
1024 int rv;
1025 int size = 100;
1026 char *buf;
1027 SCM result;
1028 char *c_path;
1029
1030 scm_dynwind_begin (0);
1031
1032 c_path = scm_to_locale_string (path);
1033 scm_dynwind_free (c_path);
1034
1035 buf = scm_malloc (size);
1036
1037 while ((rv = readlink (c_path, buf, size)) == size)
1038 {
1039 free (buf);
1040 size *= 2;
1041 buf = scm_malloc (size);
1042 }
1043 if (rv == -1)
1044 {
1045 int save_errno = errno;
1046 free (buf);
1047 errno = save_errno;
1048 SCM_SYSERROR;
1049 }
1050 result = scm_take_locale_stringn (buf, rv);
1051
1052 scm_dynwind_end ();
1053 return result;
1054 }
1055 #undef FUNC_NAME
1056 #endif /* HAVE_READLINK */
1057
1058 SCM_DEFINE (scm_copy_file, "copy-file", 2, 0, 0,
1059 (SCM oldfile, SCM newfile),
1060 "Copy the file specified by @var{oldfile} to @var{newfile}.\n"
1061 "The return value is unspecified.")
1062 #define FUNC_NAME s_scm_copy_file
1063 {
1064 char *c_oldfile, *c_newfile;
1065 int oldfd, newfd;
1066 int n, rv;
1067 char buf[BUFSIZ];
1068 struct stat_or_stat64 oldstat;
1069
1070 scm_dynwind_begin (0);
1071
1072 c_oldfile = scm_to_locale_string (oldfile);
1073 scm_dynwind_free (c_oldfile);
1074 c_newfile = scm_to_locale_string (newfile);
1075 scm_dynwind_free (c_newfile);
1076
1077 oldfd = open_or_open64 (c_oldfile, O_RDONLY | O_BINARY);
1078 if (oldfd == -1)
1079 SCM_SYSERROR;
1080
1081 SCM_SYSCALL (rv = fstat_or_fstat64 (oldfd, &oldstat));
1082 if (rv == -1)
1083 goto err_close_oldfd;
1084
1085 /* use POSIX flags instead of 07777?. */
1086 newfd = open_or_open64 (c_newfile, O_WRONLY | O_CREAT | O_TRUNC,
1087 oldstat.st_mode & 07777);
1088 if (newfd == -1)
1089 {
1090 err_close_oldfd:
1091 close (oldfd);
1092 SCM_SYSERROR;
1093 }
1094
1095 while ((n = read (oldfd, buf, sizeof buf)) > 0)
1096 if (write (newfd, buf, n) != n)
1097 {
1098 close (oldfd);
1099 close (newfd);
1100 SCM_SYSERROR;
1101 }
1102 close (oldfd);
1103 if (close (newfd) == -1)
1104 SCM_SYSERROR;
1105
1106 scm_dynwind_end ();
1107 return SCM_UNSPECIFIED;
1108 }
1109 #undef FUNC_NAME
1110
1111 SCM_DEFINE (scm_sendfile, "sendfile", 3, 1, 0,
1112 (SCM out, SCM in, SCM count, SCM offset),
1113 "Send @var{count} bytes from @var{in} to @var{out}, both of which "
1114 "must be either open file ports or file descriptors. When "
1115 "@var{offset} is omitted, start reading from @var{in}'s current "
1116 "position; otherwise, start reading at @var{offset}. Return "
1117 "the number of bytes actually sent.")
1118 #define FUNC_NAME s_scm_sendfile
1119 {
1120 #define VALIDATE_FD_OR_PORT(cvar, svar, pos) \
1121 if (scm_is_integer (svar)) \
1122 cvar = scm_to_int (svar); \
1123 else \
1124 { \
1125 SCM_VALIDATE_OPFPORT (pos, svar); \
1126 scm_flush (svar); \
1127 cvar = SCM_FPORT_FDES (svar); \
1128 }
1129
1130 ssize_t result SCM_UNUSED;
1131 size_t c_count, total = 0;
1132 scm_t_off c_offset;
1133 int in_fd, out_fd;
1134
1135 VALIDATE_FD_OR_PORT (out_fd, out, 1);
1136 VALIDATE_FD_OR_PORT (in_fd, in, 2);
1137 c_count = scm_to_size_t (count);
1138 c_offset = SCM_UNBNDP (offset) ? 0 : scm_to_off_t (offset);
1139
1140 #if defined HAVE_SYS_SENDFILE_H && defined HAVE_SENDFILE
1141 /* The Linux-style sendfile(2), which is different from the BSD-style. */
1142
1143 {
1144 off_t *offset_ptr;
1145
1146 offset_ptr = SCM_UNBNDP (offset) ? NULL : &c_offset;
1147
1148 /* On Linux, when OUT_FD is a file, everything is transferred at once and
1149 RESULT == C_COUNT. However, when OUT_FD is a pipe or other "slow"
1150 device, fewer bytes may be transferred, hence the loop. RESULT == 0
1151 means EOF on IN_FD, so leave the loop in that case. */
1152 do
1153 {
1154 result = sendfile_or_sendfile64 (out_fd, in_fd, offset_ptr,
1155 c_count - total);
1156 if (result > 0)
1157 /* At this point, either OFFSET_PTR is non-NULL and it has been
1158 updated to the current offset in IN_FD, or it is NULL and IN_FD's
1159 offset has been updated. */
1160 total += result;
1161 else if (result < 0 && (errno == EINTR || errno == EAGAIN))
1162 /* Keep going. */
1163 result = 1;
1164 }
1165 while (total < c_count && result > 0);
1166 }
1167
1168 /* Quoting the Linux man page: "In Linux kernels before 2.6.33, out_fd
1169 must refer to a socket. Since Linux 2.6.33 it can be any file."
1170 Fall back to read(2) and write(2) when such an error occurs. */
1171 if (result < 0 && errno != EINVAL && errno != ENOSYS)
1172 SCM_SYSERROR;
1173 else if (result < 0)
1174 #endif
1175 {
1176 char buf[8192];
1177 size_t left;
1178 int reached_eof = 0;
1179
1180 if (!SCM_UNBNDP (offset))
1181 {
1182 if (SCM_PORTP (in))
1183 scm_seek (in, scm_from_off_t (c_offset), scm_from_int (SEEK_SET));
1184 else
1185 {
1186 if (lseek_or_lseek64 (in_fd, c_offset, SEEK_SET) < 0)
1187 SCM_SYSERROR;
1188 }
1189 }
1190
1191 for (total = 0, left = c_count; total < c_count && !reached_eof; )
1192 {
1193 size_t asked, obtained, written;
1194
1195 asked = SCM_MIN (sizeof buf, left);
1196 obtained = full_read (in_fd, buf, asked);
1197 if (obtained < asked)
1198 {
1199 if (errno == 0)
1200 reached_eof = 1;
1201 else
1202 SCM_SYSERROR;
1203 }
1204
1205 left -= obtained;
1206
1207 written = full_write (out_fd, buf, obtained);
1208 if (written < obtained)
1209 SCM_SYSERROR;
1210
1211 total += written;
1212 }
1213
1214 }
1215
1216 return scm_from_size_t (total);
1217
1218 #undef VALIDATE_FD_OR_PORT
1219 }
1220 #undef FUNC_NAME
1221
1222 #endif /* HAVE_POSIX */
1223
1224 \f
1225 /* Essential procedures used in (system base compile). */
1226
1227 #ifdef HAVE_GETCWD
1228 SCM_DEFINE (scm_getcwd, "getcwd", 0, 0, 0,
1229 (),
1230 "Return the name of the current working directory.")
1231 #define FUNC_NAME s_scm_getcwd
1232 {
1233 char *rv;
1234 size_t size = 100;
1235 char *wd;
1236 SCM result;
1237
1238 wd = scm_malloc (size);
1239 while ((rv = getcwd (wd, size)) == 0 && errno == ERANGE)
1240 {
1241 free (wd);
1242 size *= 2;
1243 wd = scm_malloc (size);
1244 }
1245 if (rv == 0)
1246 {
1247 int save_errno = errno;
1248 free (wd);
1249 errno = save_errno;
1250 SCM_SYSERROR;
1251 }
1252 result = scm_from_locale_stringn (wd, strlen (wd));
1253 free (wd);
1254 return result;
1255 }
1256 #undef FUNC_NAME
1257 #endif /* HAVE_GETCWD */
1258
1259 #ifdef HAVE_MKDIR
1260 SCM_DEFINE (scm_mkdir, "mkdir", 1, 1, 0,
1261 (SCM path, SCM mode),
1262 "Create a new directory named by @var{path}. If @var{mode} is omitted\n"
1263 "then the permissions of the directory file are set using the current\n"
1264 "umask. Otherwise they are set to the decimal value specified with\n"
1265 "@var{mode}. The return value is unspecified.")
1266 #define FUNC_NAME s_scm_mkdir
1267 {
1268 int rv;
1269 mode_t mask;
1270
1271 if (SCM_UNBNDP (mode))
1272 {
1273 mask = umask (0);
1274 umask (mask);
1275 STRING_SYSCALL (path, c_path, rv = mkdir (c_path, 0777 ^ mask));
1276 }
1277 else
1278 {
1279 STRING_SYSCALL (path, c_path, rv = mkdir (c_path, scm_to_uint (mode)));
1280 }
1281 if (rv != 0)
1282 SCM_SYSERROR;
1283 return SCM_UNSPECIFIED;
1284 }
1285 #undef FUNC_NAME
1286 #endif /* HAVE_MKDIR */
1287
1288 #ifdef HAVE_RMDIR
1289 SCM_DEFINE (scm_rmdir, "rmdir", 1, 0, 0,
1290 (SCM path),
1291 "Remove the existing directory named by @var{path}. The directory must\n"
1292 "be empty for this to succeed. The return value is unspecified.")
1293 #define FUNC_NAME s_scm_rmdir
1294 {
1295 int val;
1296
1297 STRING_SYSCALL (path, c_path, val = rmdir (c_path));
1298 if (val != 0)
1299 SCM_SYSERROR;
1300 return SCM_UNSPECIFIED;
1301 }
1302 #undef FUNC_NAME
1303 #endif
1304
1305 #ifdef HAVE_RENAME
1306 #define my_rename rename
1307 #else
1308 static int
1309 my_rename (const char *oldname, const char *newname)
1310 {
1311 int rv;
1312
1313 SCM_SYSCALL (rv = link (oldname, newname));
1314 if (rv == 0)
1315 {
1316 SCM_SYSCALL (rv = unlink (oldname));
1317 if (rv != 0)
1318 /* unlink failed. remove new name */
1319 SCM_SYSCALL (unlink (newname));
1320 }
1321 return rv;
1322 }
1323 #endif
1324
1325 SCM_DEFINE (scm_rename, "rename-file", 2, 0, 0,
1326 (SCM oldname, SCM newname),
1327 "Renames the file specified by @var{oldname} to @var{newname}.\n"
1328 "The return value is unspecified.")
1329 #define FUNC_NAME s_scm_rename
1330 {
1331 int rv;
1332
1333 STRING2_SYSCALL (oldname, c_oldname,
1334 newname, c_newname,
1335 rv = my_rename (c_oldname, c_newname));
1336 if (rv != 0)
1337 SCM_SYSERROR;
1338 return SCM_UNSPECIFIED;
1339 }
1340 #undef FUNC_NAME
1341
1342
1343 SCM_DEFINE (scm_delete_file, "delete-file", 1, 0, 0,
1344 (SCM str),
1345 "Deletes (or \"unlinks\") the file specified by @var{str}.")
1346 #define FUNC_NAME s_scm_delete_file
1347 {
1348 int ans;
1349 STRING_SYSCALL (str, c_str, ans = unlink (c_str));
1350 if (ans != 0)
1351 SCM_SYSERROR;
1352 return SCM_UNSPECIFIED;
1353 }
1354 #undef FUNC_NAME
1355
1356 SCM_DEFINE (scm_access, "access?", 2, 0, 0,
1357 (SCM path, SCM how),
1358 "Test accessibility of a file under the real UID and GID of the\n"
1359 "calling process. The return is @code{#t} if @var{path} exists\n"
1360 "and the permissions requested by @var{how} are all allowed, or\n"
1361 "@code{#f} if not.\n"
1362 "\n"
1363 "@var{how} is an integer which is one of the following values,\n"
1364 "or a bitwise-OR (@code{logior}) of multiple values.\n"
1365 "\n"
1366 "@defvar R_OK\n"
1367 "Test for read permission.\n"
1368 "@end defvar\n"
1369 "@defvar W_OK\n"
1370 "Test for write permission.\n"
1371 "@end defvar\n"
1372 "@defvar X_OK\n"
1373 "Test for execute permission.\n"
1374 "@end defvar\n"
1375 "@defvar F_OK\n"
1376 "Test for existence of the file. This is implied by each of the\n"
1377 "other tests, so there's no need to combine it with them.\n"
1378 "@end defvar\n"
1379 "\n"
1380 "It's important to note that @code{access?} does not simply\n"
1381 "indicate what will happen on attempting to read or write a\n"
1382 "file. In normal circumstances it does, but in a set-UID or\n"
1383 "set-GID program it doesn't because @code{access?} tests the\n"
1384 "real ID, whereas an open or execute attempt uses the effective\n"
1385 "ID.\n"
1386 "\n"
1387 "A program which will never run set-UID/GID can ignore the\n"
1388 "difference between real and effective IDs, but for maximum\n"
1389 "generality, especially in library functions, it's best not to\n"
1390 "use @code{access?} to predict the result of an open or execute,\n"
1391 "instead simply attempt that and catch any exception.\n"
1392 "\n"
1393 "The main use for @code{access?} is to let a set-UID/GID program\n"
1394 "determine what the invoking user would have been allowed to do,\n"
1395 "without the greater (or perhaps lesser) privileges afforded by\n"
1396 "the effective ID. For more on this, see ``Testing File\n"
1397 "Access'' in The GNU C Library Reference Manual.")
1398 #define FUNC_NAME s_scm_access
1399 {
1400 int rv;
1401 char *c_path;
1402
1403 c_path = scm_to_locale_string (path);
1404 rv = access (c_path, scm_to_int (how));
1405 free (c_path);
1406
1407 return scm_from_bool (!rv);
1408 }
1409 #undef FUNC_NAME
1410
1411 SCM_DEFINE (scm_chmod, "chmod", 2, 0, 0,
1412 (SCM object, SCM mode),
1413 "Changes the permissions of the file referred to by\n"
1414 "@var{object}. @var{object} can be a string containing a file\n"
1415 "name or a port or integer file descriptor which is open on a\n"
1416 "file (in which case @code{fchmod} is used as the underlying\n"
1417 "system call). @var{mode} specifies the new permissions as a\n"
1418 "decimal number, e.g., @code{(chmod \"foo\" #o755)}.\n"
1419 "The return value is unspecified.")
1420 #define FUNC_NAME s_scm_chmod
1421 {
1422 int rv;
1423
1424 object = SCM_COERCE_OUTPORT (object);
1425
1426 #if HAVE_FCHMOD
1427 if (scm_is_integer (object) || SCM_OPFPORTP (object))
1428 {
1429 int fdes;
1430 if (scm_is_integer (object))
1431 fdes = scm_to_int (object);
1432 else
1433 fdes = SCM_FPORT_FDES (object);
1434 SCM_SYSCALL (rv = fchmod (fdes, scm_to_int (mode)));
1435 }
1436 else
1437 #endif
1438 {
1439 STRING_SYSCALL (object, c_object,
1440 rv = chmod (c_object, scm_to_int (mode)));
1441 }
1442 if (rv == -1)
1443 SCM_SYSERROR;
1444 return SCM_UNSPECIFIED;
1445 }
1446 #undef FUNC_NAME
1447
1448 SCM_DEFINE (scm_umask, "umask", 0, 1, 0,
1449 (SCM mode),
1450 "If @var{mode} is omitted, returns a decimal number representing the current\n"
1451 "file creation mask. Otherwise the file creation mask is set to\n"
1452 "@var{mode} and the previous value is returned.\n\n"
1453 "E.g., @code{(umask #o022)} sets the mask to octal 22, decimal 18.")
1454 #define FUNC_NAME s_scm_umask
1455 {
1456 mode_t mask;
1457 if (SCM_UNBNDP (mode))
1458 {
1459 mask = umask (0);
1460 umask (mask);
1461 }
1462 else
1463 {
1464 mask = umask (scm_to_uint (mode));
1465 }
1466 return scm_from_uint (mask);
1467 }
1468 #undef FUNC_NAME
1469
1470 #ifndef HAVE_MKSTEMP
1471 extern int mkstemp (char *);
1472 #endif
1473
1474 SCM_DEFINE (scm_mkstemp, "mkstemp!", 1, 0, 0,
1475 (SCM tmpl),
1476 "Create a new unique file in the file system and return a new\n"
1477 "buffered port open for reading and writing to the file.\n"
1478 "\n"
1479 "@var{tmpl} is a string specifying where the file should be\n"
1480 "created: it must end with @samp{XXXXXX} and those @samp{X}s\n"
1481 "will be changed in the string to return the name of the file.\n"
1482 "(@code{port-filename} on the port also gives the name.)\n"
1483 "\n"
1484 "POSIX doesn't specify the permissions mode of the file, on GNU\n"
1485 "and most systems it's @code{#o600}. An application can use\n"
1486 "@code{chmod} to relax that if desired. For example\n"
1487 "@code{#o666} less @code{umask}, which is usual for ordinary\n"
1488 "file creation,\n"
1489 "\n"
1490 "@example\n"
1491 "(let ((port (mkstemp! (string-copy \"/tmp/myfile-XXXXXX\"))))\n"
1492 " (chmod port (logand #o666 (lognot (umask))))\n"
1493 " ...)\n"
1494 "@end example")
1495 #define FUNC_NAME s_scm_mkstemp
1496 {
1497 char *c_tmpl;
1498 int rv;
1499
1500 scm_dynwind_begin (0);
1501
1502 c_tmpl = scm_to_locale_string (tmpl);
1503 scm_dynwind_free (c_tmpl);
1504
1505 SCM_SYSCALL (rv = mkstemp (c_tmpl));
1506 if (rv == -1)
1507 SCM_SYSERROR;
1508
1509 scm_substring_move_x (scm_from_locale_string (c_tmpl),
1510 SCM_INUM0, scm_string_length (tmpl),
1511 tmpl, SCM_INUM0);
1512
1513 scm_dynwind_end ();
1514 return scm_fdes_to_port (rv, "w+", tmpl);
1515 }
1516 #undef FUNC_NAME
1517
1518 \f
1519 /* Filename manipulation */
1520
1521 SCM scm_dot_string;
1522
1523 #ifdef __MINGW32__
1524 SCM_SYMBOL (sym_file_name_convention, "windows");
1525 #else
1526 SCM_SYMBOL (sym_file_name_convention, "posix");
1527 #endif
1528
1529 SCM_INTERNAL SCM scm_system_file_name_convention (void);
1530
1531 SCM_DEFINE (scm_system_file_name_convention,
1532 "system-file-name-convention", 0, 0, 0, (void),
1533 "Return either @code{posix} or @code{windows}, depending on\n"
1534 "what kind of system this Guile is running on.")
1535 #define FUNC_NAME s_scm_system_file_name_convention
1536 {
1537 return sym_file_name_convention;
1538 }
1539 #undef FUNC_NAME
1540
1541 SCM_DEFINE (scm_dirname, "dirname", 1, 0, 0,
1542 (SCM filename),
1543 "Return the directory name component of the file name\n"
1544 "@var{filename}. If @var{filename} does not contain a directory\n"
1545 "component, @code{.} is returned.")
1546 #define FUNC_NAME s_scm_dirname
1547 {
1548 long int i;
1549 unsigned long int len;
1550
1551 SCM_VALIDATE_STRING (1, filename);
1552
1553 len = scm_i_string_length (filename);
1554
1555 i = len - 1;
1556
1557 while (i >= 0 && is_file_name_separator (scm_c_string_ref (filename, i)))
1558 --i;
1559 while (i >= 0 && !is_file_name_separator (scm_c_string_ref (filename, i)))
1560 --i;
1561 while (i >= 0 && is_file_name_separator (scm_c_string_ref (filename, i)))
1562 --i;
1563
1564 if (i < 0)
1565 {
1566 if (len > 0 && is_file_name_separator (scm_c_string_ref (filename, 0)))
1567 return scm_c_substring (filename, 0, 1);
1568 else
1569 return scm_dot_string;
1570 }
1571 else
1572 return scm_c_substring (filename, 0, i + 1);
1573 }
1574 #undef FUNC_NAME
1575
1576 SCM_DEFINE (scm_basename, "basename", 1, 1, 0,
1577 (SCM filename, SCM suffix),
1578 "Return the base name of the file name @var{filename}. The\n"
1579 "base name is the file name without any directory components.\n"
1580 "If @var{suffix} is provided, and is equal to the end of\n"
1581 "@var{filename}, it is removed also.")
1582 #define FUNC_NAME s_scm_basename
1583 {
1584 int i, j, len, end;
1585
1586 SCM_VALIDATE_STRING (1, filename);
1587 len = scm_i_string_length (filename);
1588
1589 if (SCM_UNBNDP (suffix))
1590 j = -1;
1591 else
1592 {
1593 SCM_VALIDATE_STRING (2, suffix);
1594 j = scm_i_string_length (suffix) - 1;
1595 }
1596 i = len - 1;
1597 while (i >= 0 && is_file_name_separator (scm_c_string_ref (filename, i)))
1598 --i;
1599 end = i;
1600 while (i >= 0 && j >= 0
1601 && (scm_i_string_ref (filename, i)
1602 == scm_i_string_ref (suffix, j)))
1603 {
1604 --i;
1605 --j;
1606 }
1607 if (j == -1)
1608 end = i;
1609 while (i >= 0 && !is_file_name_separator (scm_c_string_ref (filename, i)))
1610 --i;
1611 if (i == end)
1612 {
1613 if (len > 0 && is_file_name_separator (scm_c_string_ref (filename, 0)))
1614 return scm_c_substring (filename, 0, 1);
1615 else
1616 return scm_dot_string;
1617 }
1618 else
1619 return scm_c_substring (filename, i+1, end+1);
1620 }
1621 #undef FUNC_NAME
1622
1623 SCM_DEFINE (scm_canonicalize_path, "canonicalize-path", 1, 0, 0,
1624 (SCM path),
1625 "Return the canonical path of @var{path}. A canonical path has\n"
1626 "no @code{.} or @code{..} components, nor any repeated path\n"
1627 "separators (@code{/}) nor symlinks.\n\n"
1628 "Raises an error if any component of @var{path} does not exist.")
1629 #define FUNC_NAME s_scm_canonicalize_path
1630 {
1631 char *str, *canon;
1632
1633 SCM_VALIDATE_STRING (1, path);
1634
1635 str = scm_to_locale_string (path);
1636 canon = canonicalize_file_name (str);
1637 free (str);
1638
1639 if (canon)
1640 return scm_take_locale_string (canon);
1641 else
1642 SCM_SYSERROR;
1643 }
1644 #undef FUNC_NAME
1645
1646 SCM
1647 scm_i_relativize_path (SCM path, SCM in_path)
1648 {
1649 char *str, *canon;
1650 SCM scanon;
1651
1652 str = scm_to_locale_string (path);
1653 canon = canonicalize_file_name (str);
1654 free (str);
1655
1656 if (!canon)
1657 return SCM_BOOL_F;
1658
1659 scanon = scm_take_locale_string (canon);
1660
1661 for (; scm_is_pair (in_path); in_path = scm_cdr (in_path))
1662 {
1663 SCM dir = scm_car (in_path);
1664 size_t len = scm_c_string_length (dir);
1665
1666 /* When DIR is empty, it means "current working directory". We
1667 could set DIR to (getcwd) in that case, but then the
1668 canonicalization would depend on the current directory, which
1669 is not what we want in the context of `compile-file', for
1670 instance. */
1671 if (len > 0
1672 && scm_is_true (scm_string_prefix_p (dir, scanon,
1673 SCM_UNDEFINED, SCM_UNDEFINED,
1674 SCM_UNDEFINED, SCM_UNDEFINED)))
1675 {
1676 /* DIR either has a trailing delimiter or doesn't. SCANON
1677 will be delimited by single delimiters. When DIR does not
1678 have a trailing delimiter, add one to the length to strip
1679 off the delimiter within SCANON. */
1680 if (!is_file_name_separator (scm_c_string_ref (dir, len - 1)))
1681 len++;
1682
1683 if (scm_c_string_length (scanon) > len)
1684 return scm_substring (scanon, scm_from_size_t (len), SCM_UNDEFINED);
1685 else
1686 return SCM_BOOL_F;
1687 }
1688 }
1689
1690 return SCM_BOOL_F;
1691 }
1692
1693 \f
1694 /* Examining directories. These procedures are used by `check-guile'
1695 and thus compiled unconditionally. */
1696
1697 scm_t_bits scm_tc16_dir;
1698
1699
1700 SCM_DEFINE (scm_directory_stream_p, "directory-stream?", 1, 0, 0,
1701 (SCM obj),
1702 "Return a boolean indicating whether @var{obj} is a directory\n"
1703 "stream as returned by @code{opendir}.")
1704 #define FUNC_NAME s_scm_directory_stream_p
1705 {
1706 return scm_from_bool (SCM_DIRP (obj));
1707 }
1708 #undef FUNC_NAME
1709
1710
1711 SCM_DEFINE (scm_opendir, "opendir", 1, 0, 0,
1712 (SCM dirname),
1713 "Open the directory specified by @var{dirname} and return a directory\n"
1714 "stream.")
1715 #define FUNC_NAME s_scm_opendir
1716 {
1717 DIR *ds;
1718 STRING_SYSCALL (dirname, c_dirname, ds = opendir (c_dirname));
1719 if (ds == NULL)
1720 SCM_SYSERROR;
1721 SCM_RETURN_NEWSMOB (scm_tc16_dir | (SCM_DIR_FLAG_OPEN<<16), ds);
1722 }
1723 #undef FUNC_NAME
1724
1725
1726 /* FIXME: The glibc manual has a portability note that readdir_r may not
1727 null-terminate its return string. The circumstances outlined for this
1728 are not clear, nor is it clear what should be done about it. Lets use
1729 NAMLEN and worry about what else should be done if/when someone can
1730 figure it out. */
1731
1732 SCM_DEFINE (scm_readdir, "readdir", 1, 0, 0,
1733 (SCM port),
1734 "Return (as a string) the next directory entry from the directory stream\n"
1735 "@var{port}. If there is no remaining entry to be read then the\n"
1736 "end of file object is returned.")
1737 #define FUNC_NAME s_scm_readdir
1738 {
1739 struct dirent_or_dirent64 *rdent;
1740
1741 SCM_VALIDATE_DIR (1, port);
1742 if (!SCM_DIR_OPEN_P (port))
1743 SCM_MISC_ERROR ("Directory ~S is not open.", scm_list_1 (port));
1744
1745 #if HAVE_READDIR_R
1746 /* As noted in the glibc manual, on various systems (such as Solaris) the
1747 d_name[] field is only 1 char and you're expected to size the dirent
1748 buffer for readdir_r based on NAME_MAX. The SCM_MAX expressions below
1749 effectively give either sizeof(d_name) or NAME_MAX+1, whichever is
1750 bigger.
1751
1752 On solaris 10 there's no NAME_MAX constant, it's necessary to use
1753 pathconf(). We prefer NAME_MAX though, since it should be a constant
1754 and will therefore save a system call. We also prefer it since dirfd()
1755 is not available everywhere.
1756
1757 An alternative to dirfd() would be to open() the directory and then use
1758 fdopendir(), if the latter is available. That'd let us hold the fd
1759 somewhere in the smob, or just the dirent size calculated once. */
1760 {
1761 struct dirent_or_dirent64 de; /* just for sizeof */
1762 DIR *ds = (DIR *) SCM_SMOB_DATA_1 (port);
1763 #ifdef NAME_MAX
1764 char buf [SCM_MAX (sizeof (de),
1765 sizeof (de) - sizeof (de.d_name) + NAME_MAX + 1)];
1766 #else
1767 char *buf;
1768 long name_max = fpathconf (dirfd (ds), _PC_NAME_MAX);
1769 if (name_max == -1)
1770 SCM_SYSERROR;
1771 buf = alloca (SCM_MAX (sizeof (de),
1772 sizeof (de) - sizeof (de.d_name) + name_max + 1));
1773 #endif
1774
1775 errno = 0;
1776 SCM_SYSCALL (readdir_r_or_readdir64_r (ds, (struct dirent_or_dirent64 *) buf, &rdent));
1777 if (errno != 0)
1778 SCM_SYSERROR;
1779 if (! rdent)
1780 return SCM_EOF_VAL;
1781
1782 return (rdent ? scm_from_locale_stringn (rdent->d_name, NAMLEN (rdent))
1783 : SCM_EOF_VAL);
1784 }
1785 #else
1786 {
1787 SCM ret;
1788 scm_dynwind_begin (0);
1789 scm_i_dynwind_pthread_mutex_lock (&scm_i_misc_mutex);
1790
1791 errno = 0;
1792 SCM_SYSCALL (rdent = readdir_or_readdir64 ((DIR *) SCM_SMOB_DATA_1 (port)));
1793 if (errno != 0)
1794 SCM_SYSERROR;
1795
1796 ret = (rdent ? scm_from_locale_stringn (rdent->d_name, NAMLEN (rdent))
1797 : SCM_EOF_VAL);
1798
1799 scm_dynwind_end ();
1800 return ret;
1801 }
1802 #endif
1803 }
1804 #undef FUNC_NAME
1805
1806
1807 SCM_DEFINE (scm_rewinddir, "rewinddir", 1, 0, 0,
1808 (SCM port),
1809 "Reset the directory port @var{port} so that the next call to\n"
1810 "@code{readdir} will return the first directory entry.")
1811 #define FUNC_NAME s_scm_rewinddir
1812 {
1813 SCM_VALIDATE_DIR (1, port);
1814 if (!SCM_DIR_OPEN_P (port))
1815 SCM_MISC_ERROR ("Directory ~S is not open.", scm_list_1 (port));
1816
1817 rewinddir ((DIR *) SCM_SMOB_DATA_1 (port));
1818
1819 return SCM_UNSPECIFIED;
1820 }
1821 #undef FUNC_NAME
1822
1823
1824 SCM_DEFINE (scm_closedir, "closedir", 1, 0, 0,
1825 (SCM port),
1826 "Close the directory stream @var{port}.\n"
1827 "The return value is unspecified.")
1828 #define FUNC_NAME s_scm_closedir
1829 {
1830 SCM_VALIDATE_DIR (1, port);
1831
1832 if (SCM_DIR_OPEN_P (port))
1833 {
1834 int sts;
1835
1836 SCM_SYSCALL (sts = closedir ((DIR *) SCM_SMOB_DATA_1 (port)));
1837 if (sts != 0)
1838 SCM_SYSERROR;
1839
1840 SCM_SET_SMOB_DATA_0 (port, scm_tc16_dir);
1841 }
1842
1843 return SCM_UNSPECIFIED;
1844 }
1845 #undef FUNC_NAME
1846
1847
1848 #ifdef HAVE_POSIX
1849 static int
1850 scm_dir_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
1851 {
1852 scm_puts_unlocked ("#<", port);
1853 if (!SCM_DIR_OPEN_P (exp))
1854 scm_puts_unlocked ("closed: ", port);
1855 scm_puts_unlocked ("directory stream ", port);
1856 scm_uintprint (SCM_SMOB_DATA_1 (exp), 16, port);
1857 scm_putc_unlocked ('>', port);
1858 return 1;
1859 }
1860
1861
1862 static size_t
1863 scm_dir_free (SCM p)
1864 {
1865 if (SCM_DIR_OPEN_P (p))
1866 closedir ((DIR *) SCM_SMOB_DATA_1 (p));
1867 return 0;
1868 }
1869 #endif
1870
1871 \f
1872
1873 void
1874 scm_init_filesys ()
1875 {
1876 #ifdef HAVE_POSIX
1877 scm_tc16_dir = scm_make_smob_type ("directory", 0);
1878 scm_set_smob_free (scm_tc16_dir, scm_dir_free);
1879 scm_set_smob_print (scm_tc16_dir, scm_dir_print);
1880
1881 #ifdef O_RDONLY
1882 scm_c_define ("O_RDONLY", scm_from_int (O_RDONLY));
1883 #endif
1884 #ifdef O_WRONLY
1885 scm_c_define ("O_WRONLY", scm_from_int (O_WRONLY));
1886 #endif
1887 #ifdef O_RDWR
1888 scm_c_define ("O_RDWR", scm_from_int (O_RDWR));
1889 #endif
1890 #ifdef O_CREAT
1891 scm_c_define ("O_CREAT", scm_from_int (O_CREAT));
1892 #endif
1893 #ifdef O_EXCL
1894 scm_c_define ("O_EXCL", scm_from_int (O_EXCL));
1895 #endif
1896 #ifdef O_NOCTTY
1897 scm_c_define ("O_NOCTTY", scm_from_int (O_NOCTTY));
1898 #endif
1899 #ifdef O_TRUNC
1900 scm_c_define ("O_TRUNC", scm_from_int (O_TRUNC));
1901 #endif
1902 #ifdef O_APPEND
1903 scm_c_define ("O_APPEND", scm_from_int (O_APPEND));
1904 #endif
1905 #ifdef O_NONBLOCK
1906 scm_c_define ("O_NONBLOCK", scm_from_int (O_NONBLOCK));
1907 #endif
1908 #ifdef O_NDELAY
1909 scm_c_define ("O_NDELAY", scm_from_int (O_NDELAY));
1910 #endif
1911 #ifdef O_SYNC
1912 scm_c_define ("O_SYNC", scm_from_int (O_SYNC));
1913 #endif
1914 #ifdef O_LARGEFILE
1915 scm_c_define ("O_LARGEFILE", scm_from_int (O_LARGEFILE));
1916 #endif
1917 #ifdef O_NOTRANS
1918 scm_c_define ("O_NOTRANS", scm_from_int (O_NOTRANS));
1919 #endif
1920
1921 #ifdef F_DUPFD
1922 scm_c_define ("F_DUPFD", scm_from_int (F_DUPFD));
1923 #endif
1924 #ifdef F_GETFD
1925 scm_c_define ("F_GETFD", scm_from_int (F_GETFD));
1926 #endif
1927 #ifdef F_SETFD
1928 scm_c_define ("F_SETFD", scm_from_int (F_SETFD));
1929 #endif
1930 #ifdef F_GETFL
1931 scm_c_define ("F_GETFL", scm_from_int (F_GETFL));
1932 #endif
1933 #ifdef F_SETFL
1934 scm_c_define ("F_SETFL", scm_from_int (F_SETFL));
1935 #endif
1936 #ifdef F_GETOWN
1937 scm_c_define ("F_GETOWN", scm_from_int (F_GETOWN));
1938 #endif
1939 #ifdef F_SETOWN
1940 scm_c_define ("F_SETOWN", scm_from_int (F_SETOWN));
1941 #endif
1942 #ifdef FD_CLOEXEC
1943 scm_c_define ("FD_CLOEXEC", scm_from_int (FD_CLOEXEC));
1944 #endif
1945 #endif /* HAVE_POSIX */
1946
1947 /* `access' symbols. */
1948 scm_c_define ("R_OK", scm_from_int (R_OK));
1949 scm_c_define ("W_OK", scm_from_int (W_OK));
1950 scm_c_define ("X_OK", scm_from_int (X_OK));
1951 scm_c_define ("F_OK", scm_from_int (F_OK));
1952
1953 scm_dot_string = scm_from_locale_string (".");
1954
1955 #include "libguile/filesys.x"
1956 }
1957
1958 /*
1959 Local Variables:
1960 c-file-style: "gnu"
1961 End:
1962 */