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