* todo-mode.el: Offer to convert legacy file. Update commentary.
[emacs.git] / src / fileio.c
blob75e1f13a09b4cccbc2c36a5f3acc67328995ccbf
1 /* File IO for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-2013 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
21 #include <limits.h>
22 #include <fcntl.h>
23 #include <stdio.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <unistd.h>
28 #ifdef HAVE_PWD_H
29 #include <pwd.h>
30 #endif
32 #include <errno.h>
34 #ifdef HAVE_LIBSELINUX
35 #include <selinux/selinux.h>
36 #include <selinux/context.h>
37 #endif
39 #ifdef HAVE_ACL_SET_FILE
40 #include <sys/acl.h>
41 #endif
43 #include <c-ctype.h>
45 #include "lisp.h"
46 #include "intervals.h"
47 #include "character.h"
48 #include "buffer.h"
49 #include "coding.h"
50 #include "window.h"
51 #include "blockinput.h"
52 #include "frame.h"
53 #include "dispextern.h"
55 #ifdef WINDOWSNT
56 #define NOMINMAX 1
57 #include <windows.h>
58 #include <fcntl.h>
59 #include <sys/file.h>
60 #include "w32.h"
61 #endif /* not WINDOWSNT */
63 #ifdef MSDOS
64 #include "msdos.h"
65 #include <sys/param.h>
66 #include <fcntl.h>
67 #endif
69 #ifdef DOS_NT
70 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
71 redirector allows the six letters between 'Z' and 'a' as well. */
72 #ifdef MSDOS
73 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
74 #endif
75 #ifdef WINDOWSNT
76 #define IS_DRIVE(x) c_isalpha (x)
77 #endif
78 /* Need to lower-case the drive letter, or else expanded
79 filenames will sometimes compare unequal, because
80 `expand-file-name' doesn't always down-case the drive letter. */
81 #define DRIVE_LETTER(x) c_tolower (x)
82 #endif
84 #include "systime.h"
85 #include <acl.h>
86 #include <allocator.h>
87 #include <careadlinkat.h>
88 #include <stat-time.h>
90 #ifdef HPUX
91 #include <netio.h>
92 #endif
94 #include "commands.h"
96 /* True during writing of auto-save files. */
97 static bool auto_saving;
99 /* Nonzero umask during creation of auto-save directories. */
100 static mode_t auto_saving_dir_umask;
102 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
103 a new file with the same mode as the original. */
104 static mode_t auto_save_mode_bits;
106 /* Set by auto_save_1 if an error occurred during the last auto-save. */
107 static bool auto_save_error_occurred;
109 /* If VALID_TIMESTAMP_FILE_SYSTEM, then TIMESTAMP_FILE_SYSTEM is the device
110 number of a file system where time stamps were observed to to work. */
111 static bool valid_timestamp_file_system;
112 static dev_t timestamp_file_system;
114 /* The symbol bound to coding-system-for-read when
115 insert-file-contents is called for recovering a file. This is not
116 an actual coding system name, but just an indicator to tell
117 insert-file-contents to use `emacs-mule' with a special flag for
118 auto saving and recovering a file. */
119 static Lisp_Object Qauto_save_coding;
121 /* Property name of a file name handler,
122 which gives a list of operations it handles.. */
123 static Lisp_Object Qoperations;
125 /* Lisp functions for translating file formats. */
126 static Lisp_Object Qformat_decode, Qformat_annotate_function;
128 /* Lisp function for setting buffer-file-coding-system and the
129 multibyteness of the current buffer after inserting a file. */
130 static Lisp_Object Qafter_insert_file_set_coding;
132 static Lisp_Object Qwrite_region_annotate_functions;
133 /* Each time an annotation function changes the buffer, the new buffer
134 is added here. */
135 static Lisp_Object Vwrite_region_annotation_buffers;
137 static Lisp_Object Qdelete_by_moving_to_trash;
139 /* Lisp function for moving files to trash. */
140 static Lisp_Object Qmove_file_to_trash;
142 /* Lisp function for recursively copying directories. */
143 static Lisp_Object Qcopy_directory;
145 /* Lisp function for recursively deleting directories. */
146 static Lisp_Object Qdelete_directory;
148 #ifdef WINDOWSNT
149 #endif
151 Lisp_Object Qfile_error;
152 static Lisp_Object Qfile_already_exists, Qfile_date_error;
153 static Lisp_Object Qexcl;
154 Lisp_Object Qfile_name_history;
156 static Lisp_Object Qcar_less_than_car;
158 static bool a_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
159 Lisp_Object *, struct coding_system *);
160 static bool e_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
161 struct coding_system *);
164 void
165 report_file_error (const char *string, Lisp_Object data)
167 Lisp_Object errstring;
168 int errorno = errno;
169 char *str;
171 synchronize_system_messages_locale ();
172 str = strerror (errorno);
173 errstring = code_convert_string_norecord (build_unibyte_string (str),
174 Vlocale_coding_system, 0);
176 while (1)
177 switch (errorno)
179 case EEXIST:
180 xsignal (Qfile_already_exists, Fcons (errstring, data));
181 break;
182 default:
183 /* System error messages are capitalized. Downcase the initial
184 unless it is followed by a slash. (The slash case caters to
185 error messages that begin with "I/O" or, in German, "E/A".) */
186 if (STRING_MULTIBYTE (errstring)
187 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
189 int c;
191 str = SSDATA (errstring);
192 c = STRING_CHAR ((unsigned char *) str);
193 Faset (errstring, make_number (0), make_number (downcase (c)));
196 xsignal (Qfile_error,
197 Fcons (build_string (string), Fcons (errstring, data)));
201 Lisp_Object
202 close_file_unwind (Lisp_Object fd)
204 emacs_close (XFASTINT (fd));
205 return Qnil;
208 /* Restore point, having saved it as a marker. */
210 Lisp_Object
211 restore_point_unwind (Lisp_Object location)
213 Fgoto_char (location);
214 Fset_marker (location, Qnil, Qnil);
215 return Qnil;
219 static Lisp_Object Qexpand_file_name;
220 static Lisp_Object Qsubstitute_in_file_name;
221 static Lisp_Object Qdirectory_file_name;
222 static Lisp_Object Qfile_name_directory;
223 static Lisp_Object Qfile_name_nondirectory;
224 static Lisp_Object Qunhandled_file_name_directory;
225 static Lisp_Object Qfile_name_as_directory;
226 static Lisp_Object Qcopy_file;
227 static Lisp_Object Qmake_directory_internal;
228 static Lisp_Object Qmake_directory;
229 static Lisp_Object Qdelete_directory_internal;
230 Lisp_Object Qdelete_file;
231 static Lisp_Object Qrename_file;
232 static Lisp_Object Qadd_name_to_file;
233 static Lisp_Object Qmake_symbolic_link;
234 Lisp_Object Qfile_exists_p;
235 static Lisp_Object Qfile_executable_p;
236 static Lisp_Object Qfile_readable_p;
237 static Lisp_Object Qfile_writable_p;
238 static Lisp_Object Qfile_symlink_p;
239 static Lisp_Object Qaccess_file;
240 Lisp_Object Qfile_directory_p;
241 static Lisp_Object Qfile_regular_p;
242 static Lisp_Object Qfile_accessible_directory_p;
243 static Lisp_Object Qfile_modes;
244 static Lisp_Object Qset_file_modes;
245 static Lisp_Object Qset_file_times;
246 static Lisp_Object Qfile_selinux_context;
247 static Lisp_Object Qset_file_selinux_context;
248 static Lisp_Object Qfile_acl;
249 static Lisp_Object Qset_file_acl;
250 static Lisp_Object Qfile_newer_than_file_p;
251 Lisp_Object Qinsert_file_contents;
252 static Lisp_Object Qchoose_write_coding_system;
253 Lisp_Object Qwrite_region;
254 static Lisp_Object Qverify_visited_file_modtime;
255 static Lisp_Object Qset_visited_file_modtime;
257 DEFUN ("find-file-name-handler", Ffind_file_name_handler,
258 Sfind_file_name_handler, 2, 2, 0,
259 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
260 Otherwise, return nil.
261 A file name is handled if one of the regular expressions in
262 `file-name-handler-alist' matches it.
264 If OPERATION equals `inhibit-file-name-operation', then we ignore
265 any handlers that are members of `inhibit-file-name-handlers',
266 but we still do run any other handlers. This lets handlers
267 use the standard functions without calling themselves recursively. */)
268 (Lisp_Object filename, Lisp_Object operation)
270 /* This function must not munge the match data. */
271 Lisp_Object chain, inhibited_handlers, result;
272 ptrdiff_t pos = -1;
274 result = Qnil;
275 CHECK_STRING (filename);
277 if (EQ (operation, Vinhibit_file_name_operation))
278 inhibited_handlers = Vinhibit_file_name_handlers;
279 else
280 inhibited_handlers = Qnil;
282 for (chain = Vfile_name_handler_alist; CONSP (chain);
283 chain = XCDR (chain))
285 Lisp_Object elt;
286 elt = XCAR (chain);
287 if (CONSP (elt))
289 Lisp_Object string = XCAR (elt);
290 ptrdiff_t match_pos;
291 Lisp_Object handler = XCDR (elt);
292 Lisp_Object operations = Qnil;
294 if (SYMBOLP (handler))
295 operations = Fget (handler, Qoperations);
297 if (STRINGP (string)
298 && (match_pos = fast_string_match (string, filename)) > pos
299 && (NILP (operations) || ! NILP (Fmemq (operation, operations))))
301 Lisp_Object tem;
303 handler = XCDR (elt);
304 tem = Fmemq (handler, inhibited_handlers);
305 if (NILP (tem))
307 result = handler;
308 pos = match_pos;
313 QUIT;
315 return result;
318 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
319 1, 1, 0,
320 doc: /* Return the directory component in file name FILENAME.
321 Return nil if FILENAME does not include a directory.
322 Otherwise return a directory name.
323 Given a Unix syntax file name, returns a string ending in slash. */)
324 (Lisp_Object filename)
326 #ifndef DOS_NT
327 register const char *beg;
328 #else
329 register char *beg;
330 Lisp_Object tem_fn;
331 #endif
332 register const char *p;
333 Lisp_Object handler;
335 CHECK_STRING (filename);
337 /* If the file name has special constructs in it,
338 call the corresponding file handler. */
339 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
340 if (!NILP (handler))
342 Lisp_Object handled_name = call2 (handler, Qfile_name_directory,
343 filename);
344 return STRINGP (handled_name) ? handled_name : Qnil;
347 #ifdef DOS_NT
348 beg = alloca (SBYTES (filename) + 1);
349 memcpy (beg, SSDATA (filename), SBYTES (filename) + 1);
350 #else
351 beg = SSDATA (filename);
352 #endif
353 p = beg + SBYTES (filename);
355 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
356 #ifdef DOS_NT
357 /* only recognize drive specifier at the beginning */
358 && !(p[-1] == ':'
359 /* handle the "/:d:foo" and "/:foo" cases correctly */
360 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
361 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
362 #endif
363 ) p--;
365 if (p == beg)
366 return Qnil;
367 #ifdef DOS_NT
368 /* Expansion of "c:" to drive and default directory. */
369 if (p[-1] == ':')
371 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
372 char *res = alloca (MAXPATHLEN + 1);
373 char *r = res;
375 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
377 memcpy (res, beg, 2);
378 beg += 2;
379 r += 2;
382 if (getdefdir (c_toupper (*beg) - 'A' + 1, r))
384 size_t l = strlen (res);
386 if (l > 3 || !IS_DIRECTORY_SEP (res[l - 1]))
387 strcat (res, "/");
388 beg = res;
389 p = beg + strlen (beg);
390 dostounix_filename (beg, 0);
391 tem_fn = make_specified_string (beg, -1, p - beg,
392 STRING_MULTIBYTE (filename));
394 else
395 tem_fn = make_specified_string (beg - 2, -1, p - beg + 2,
396 STRING_MULTIBYTE (filename));
398 else if (STRING_MULTIBYTE (filename))
400 tem_fn = make_specified_string (beg, -1, p - beg, 1);
401 dostounix_filename (SSDATA (tem_fn), 1);
402 #ifdef WINDOWSNT
403 if (!NILP (Vw32_downcase_file_names))
404 tem_fn = Fdowncase (tem_fn);
405 #endif
407 else
409 dostounix_filename (beg, 0);
410 tem_fn = make_specified_string (beg, -1, p - beg, 0);
412 return tem_fn;
413 #else /* DOS_NT */
414 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
415 #endif /* DOS_NT */
418 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
419 Sfile_name_nondirectory, 1, 1, 0,
420 doc: /* Return file name FILENAME sans its directory.
421 For example, in a Unix-syntax file name,
422 this is everything after the last slash,
423 or the entire name if it contains no slash. */)
424 (Lisp_Object filename)
426 register const char *beg, *p, *end;
427 Lisp_Object handler;
429 CHECK_STRING (filename);
431 /* If the file name has special constructs in it,
432 call the corresponding file handler. */
433 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
434 if (!NILP (handler))
436 Lisp_Object handled_name = call2 (handler, Qfile_name_nondirectory,
437 filename);
438 if (STRINGP (handled_name))
439 return handled_name;
440 error ("Invalid handler in `file-name-handler-alist'");
443 beg = SSDATA (filename);
444 end = p = beg + SBYTES (filename);
446 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
447 #ifdef DOS_NT
448 /* only recognize drive specifier at beginning */
449 && !(p[-1] == ':'
450 /* handle the "/:d:foo" case correctly */
451 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
452 #endif
454 p--;
456 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
459 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
460 Sunhandled_file_name_directory, 1, 1, 0,
461 doc: /* Return a directly usable directory name somehow associated with FILENAME.
462 A `directly usable' directory name is one that may be used without the
463 intervention of any file handler.
464 If FILENAME is a directly usable file itself, return
465 \(file-name-directory FILENAME).
466 If FILENAME refers to a file which is not accessible from a local process,
467 then this should return nil.
468 The `call-process' and `start-process' functions use this function to
469 get a current directory to run processes in. */)
470 (Lisp_Object filename)
472 Lisp_Object handler;
474 /* If the file name has special constructs in it,
475 call the corresponding file handler. */
476 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
477 if (!NILP (handler))
479 Lisp_Object handled_name = call2 (handler, Qunhandled_file_name_directory,
480 filename);
481 return STRINGP (handled_name) ? handled_name : Qnil;
484 return Ffile_name_directory (filename);
487 /* Convert from file name SRC of length SRCLEN to directory name in
488 DST. MULTIBYTE non-zero means the file name in SRC is a multibyte
489 string. On UNIX, just make sure there is a terminating /. Return
490 the length of DST in bytes. */
492 static ptrdiff_t
493 file_name_as_directory (char *dst, const char *src, ptrdiff_t srclen,
494 bool multibyte)
496 if (srclen == 0)
498 dst[0] = '.';
499 dst[1] = '/';
500 dst[2] = '\0';
501 return 2;
504 strcpy (dst, src);
506 if (!IS_DIRECTORY_SEP (dst[srclen - 1]))
508 dst[srclen] = DIRECTORY_SEP;
509 dst[srclen + 1] = '\0';
510 srclen++;
512 #ifdef DOS_NT
513 dostounix_filename (dst, multibyte);
514 #endif
515 return srclen;
518 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
519 Sfile_name_as_directory, 1, 1, 0,
520 doc: /* Return a string representing the file name FILE interpreted as a directory.
521 This operation exists because a directory is also a file, but its name as
522 a directory is different from its name as a file.
523 The result can be used as the value of `default-directory'
524 or passed as second argument to `expand-file-name'.
525 For a Unix-syntax file name, just appends a slash. */)
526 (Lisp_Object file)
528 char *buf;
529 ptrdiff_t length;
530 Lisp_Object handler;
532 CHECK_STRING (file);
533 if (NILP (file))
534 return Qnil;
536 /* If the file name has special constructs in it,
537 call the corresponding file handler. */
538 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
539 if (!NILP (handler))
541 Lisp_Object handled_name = call2 (handler, Qfile_name_as_directory,
542 file);
543 if (STRINGP (handled_name))
544 return handled_name;
545 error ("Invalid handler in `file-name-handler-alist'");
548 #ifdef WINDOWSNT
549 if (!NILP (Vw32_downcase_file_names))
550 file = Fdowncase (file);
551 #endif
552 buf = alloca (SBYTES (file) + 10);
553 length = file_name_as_directory (buf, SSDATA (file), SBYTES (file),
554 STRING_MULTIBYTE (file));
555 return make_specified_string (buf, -1, length, STRING_MULTIBYTE (file));
558 /* Convert from directory name SRC of length SRCLEN to file name in
559 DST. MULTIBYTE non-zero means the file name in SRC is a multibyte
560 string. On UNIX, just make sure there isn't a terminating /.
561 Return the length of DST in bytes. */
563 static ptrdiff_t
564 directory_file_name (char *dst, char *src, ptrdiff_t srclen, bool multibyte)
566 /* Process as Unix format: just remove any final slash.
567 But leave "/" unchanged; do not change it to "". */
568 strcpy (dst, src);
569 if (srclen > 1
570 && IS_DIRECTORY_SEP (dst[srclen - 1])
571 #ifdef DOS_NT
572 && !IS_ANY_SEP (dst[srclen - 2])
573 #endif
576 dst[srclen - 1] = 0;
577 srclen--;
579 #ifdef DOS_NT
580 dostounix_filename (dst, multibyte);
581 #endif
582 return srclen;
585 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
586 1, 1, 0,
587 doc: /* Returns the file name of the directory named DIRECTORY.
588 This is the name of the file that holds the data for the directory DIRECTORY.
589 This operation exists because a directory is also a file, but its name as
590 a directory is different from its name as a file.
591 In Unix-syntax, this function just removes the final slash. */)
592 (Lisp_Object directory)
594 char *buf;
595 ptrdiff_t length;
596 Lisp_Object handler;
598 CHECK_STRING (directory);
600 if (NILP (directory))
601 return Qnil;
603 /* If the file name has special constructs in it,
604 call the corresponding file handler. */
605 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
606 if (!NILP (handler))
608 Lisp_Object handled_name = call2 (handler, Qdirectory_file_name,
609 directory);
610 if (STRINGP (handled_name))
611 return handled_name;
612 error ("Invalid handler in `file-name-handler-alist'");
615 #ifdef WINDOWSNT
616 if (!NILP (Vw32_downcase_file_names))
617 directory = Fdowncase (directory);
618 #endif
619 buf = alloca (SBYTES (directory) + 20);
620 length = directory_file_name (buf, SSDATA (directory), SBYTES (directory),
621 STRING_MULTIBYTE (directory));
622 return make_specified_string (buf, -1, length, STRING_MULTIBYTE (directory));
625 static const char make_temp_name_tbl[64] =
627 'A','B','C','D','E','F','G','H',
628 'I','J','K','L','M','N','O','P',
629 'Q','R','S','T','U','V','W','X',
630 'Y','Z','a','b','c','d','e','f',
631 'g','h','i','j','k','l','m','n',
632 'o','p','q','r','s','t','u','v',
633 'w','x','y','z','0','1','2','3',
634 '4','5','6','7','8','9','-','_'
637 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
639 /* Value is a temporary file name starting with PREFIX, a string.
641 The Emacs process number forms part of the result, so there is
642 no danger of generating a name being used by another process.
643 In addition, this function makes an attempt to choose a name
644 which has no existing file. To make this work, PREFIX should be
645 an absolute file name.
647 BASE64_P means add the pid as 3 characters in base64
648 encoding. In this case, 6 characters will be added to PREFIX to
649 form the file name. Otherwise, if Emacs is running on a system
650 with long file names, add the pid as a decimal number.
652 This function signals an error if no unique file name could be
653 generated. */
655 Lisp_Object
656 make_temp_name (Lisp_Object prefix, bool base64_p)
658 Lisp_Object val;
659 int len, clen;
660 printmax_t pid;
661 char *p, *data;
662 char pidbuf[INT_BUFSIZE_BOUND (printmax_t)];
663 int pidlen;
665 CHECK_STRING (prefix);
667 /* VAL is created by adding 6 characters to PREFIX. The first
668 three are the PID of this process, in base 64, and the second
669 three are incremented if the file already exists. This ensures
670 262144 unique file names per PID per PREFIX. */
672 pid = getpid ();
674 if (base64_p)
676 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
677 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
678 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
679 pidlen = 3;
681 else
683 #ifdef HAVE_LONG_FILE_NAMES
684 pidlen = sprintf (pidbuf, "%"pMd, pid);
685 #else
686 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
687 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
688 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
689 pidlen = 3;
690 #endif
693 len = SBYTES (prefix); clen = SCHARS (prefix);
694 val = make_uninit_multibyte_string (clen + 3 + pidlen, len + 3 + pidlen);
695 if (!STRING_MULTIBYTE (prefix))
696 STRING_SET_UNIBYTE (val);
697 data = SSDATA (val);
698 memcpy (data, SSDATA (prefix), len);
699 p = data + len;
701 memcpy (p, pidbuf, pidlen);
702 p += pidlen;
704 /* Here we try to minimize useless stat'ing when this function is
705 invoked many times successively with the same PREFIX. We achieve
706 this by initializing count to a random value, and incrementing it
707 afterwards.
709 We don't want make-temp-name to be called while dumping,
710 because then make_temp_name_count_initialized_p would get set
711 and then make_temp_name_count would not be set when Emacs starts. */
713 if (!make_temp_name_count_initialized_p)
715 make_temp_name_count = time (NULL);
716 make_temp_name_count_initialized_p = 1;
719 while (1)
721 unsigned num = make_temp_name_count;
723 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
724 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
725 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
727 /* Poor man's congruential RN generator. Replace with
728 ++make_temp_name_count for debugging. */
729 make_temp_name_count += 25229;
730 make_temp_name_count %= 225307;
732 if (!check_existing (data))
734 /* We want to return only if errno is ENOENT. */
735 if (errno == ENOENT)
736 return val;
737 else
738 /* The error here is dubious, but there is little else we
739 can do. The alternatives are to return nil, which is
740 as bad as (and in many cases worse than) throwing the
741 error, or to ignore the error, which will likely result
742 in looping through 225307 stat's, which is not only
743 dog-slow, but also useless since eventually nil would
744 have to be returned anyway. */
745 report_file_error ("Cannot create temporary name for prefix",
746 Fcons (prefix, Qnil));
747 /* not reached */
753 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
754 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
755 The Emacs process number forms part of the result,
756 so there is no danger of generating a name being used by another process.
758 In addition, this function makes an attempt to choose a name
759 which has no existing file. To make this work,
760 PREFIX should be an absolute file name.
762 There is a race condition between calling `make-temp-name' and creating the
763 file which opens all kinds of security holes. For that reason, you should
764 probably use `make-temp-file' instead, except in three circumstances:
766 * If you are creating the file in the user's home directory.
767 * If you are creating a directory rather than an ordinary file.
768 * If you are taking special precautions as `make-temp-file' does. */)
769 (Lisp_Object prefix)
771 return make_temp_name (prefix, 0);
776 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
777 doc: /* Convert filename NAME to absolute, and canonicalize it.
778 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
779 \(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
780 the current buffer's value of `default-directory' is used.
781 NAME should be a string that is a valid file name for the underlying
782 filesystem.
783 File name components that are `.' are removed, and
784 so are file name components followed by `..', along with the `..' itself;
785 note that these simplifications are done without checking the resulting
786 file names in the file system.
787 Multiple consecutive slashes are collapsed into a single slash,
788 except at the beginning of the file name when they are significant (e.g.,
789 UNC file names on MS-Windows.)
790 An initial `~/' expands to your home directory.
791 An initial `~USER/' expands to USER's home directory.
792 See also the function `substitute-in-file-name'.
794 For technical reasons, this function can return correct but
795 non-intuitive results for the root directory; for instance,
796 \(expand-file-name ".." "/") returns "/..". For this reason, use
797 \(directory-file-name (file-name-directory dirname)) to traverse a
798 filesystem tree, not (expand-file-name ".." dirname). */)
799 (Lisp_Object name, Lisp_Object default_directory)
801 /* These point to SDATA and need to be careful with string-relocation
802 during GC (via DECODE_FILE). */
803 char *nm;
804 const char *newdir;
805 /* This should only point to alloca'd data. */
806 char *target;
808 ptrdiff_t tlen;
809 struct passwd *pw;
810 #ifdef DOS_NT
811 int drive = 0;
812 bool collapse_newdir = 1;
813 bool is_escaped = 0;
814 #endif /* DOS_NT */
815 ptrdiff_t length;
816 Lisp_Object handler, result, handled_name;
817 bool multibyte;
818 Lisp_Object hdir;
820 CHECK_STRING (name);
822 /* If the file name has special constructs in it,
823 call the corresponding file handler. */
824 handler = Ffind_file_name_handler (name, Qexpand_file_name);
825 if (!NILP (handler))
827 handled_name = call3 (handler, Qexpand_file_name,
828 name, default_directory);
829 if (STRINGP (handled_name))
830 return handled_name;
831 error ("Invalid handler in `file-name-handler-alist'");
835 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
836 if (NILP (default_directory))
837 default_directory = BVAR (current_buffer, directory);
838 if (! STRINGP (default_directory))
840 #ifdef DOS_NT
841 /* "/" is not considered a root directory on DOS_NT, so using "/"
842 here causes an infinite recursion in, e.g., the following:
844 (let (default-directory)
845 (expand-file-name "a"))
847 To avoid this, we set default_directory to the root of the
848 current drive. */
849 default_directory = build_string (emacs_root_dir ());
850 #else
851 default_directory = build_string ("/");
852 #endif
855 if (!NILP (default_directory))
857 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
858 if (!NILP (handler))
860 handled_name = call3 (handler, Qexpand_file_name,
861 name, default_directory);
862 if (STRINGP (handled_name))
863 return handled_name;
864 error ("Invalid handler in `file-name-handler-alist'");
869 char *o = SSDATA (default_directory);
871 /* Make sure DEFAULT_DIRECTORY is properly expanded.
872 It would be better to do this down below where we actually use
873 default_directory. Unfortunately, calling Fexpand_file_name recursively
874 could invoke GC, and the strings might be relocated. This would
875 be annoying because we have pointers into strings lying around
876 that would need adjusting, and people would add new pointers to
877 the code and forget to adjust them, resulting in intermittent bugs.
878 Putting this call here avoids all that crud.
880 The EQ test avoids infinite recursion. */
881 if (! NILP (default_directory) && !EQ (default_directory, name)
882 /* Save time in some common cases - as long as default_directory
883 is not relative, it can be canonicalized with name below (if it
884 is needed at all) without requiring it to be expanded now. */
885 #ifdef DOS_NT
886 /* Detect MSDOS file names with drive specifiers. */
887 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1])
888 && IS_DIRECTORY_SEP (o[2]))
889 #ifdef WINDOWSNT
890 /* Detect Windows file names in UNC format. */
891 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
892 #endif
893 #else /* not DOS_NT */
894 /* Detect Unix absolute file names (/... alone is not absolute on
895 DOS or Windows). */
896 && ! (IS_DIRECTORY_SEP (o[0]))
897 #endif /* not DOS_NT */
900 struct gcpro gcpro1;
902 GCPRO1 (name);
903 default_directory = Fexpand_file_name (default_directory, Qnil);
904 UNGCPRO;
907 multibyte = STRING_MULTIBYTE (name);
908 if (multibyte != STRING_MULTIBYTE (default_directory))
910 if (multibyte)
911 default_directory = string_to_multibyte (default_directory);
912 else
914 name = string_to_multibyte (name);
915 multibyte = 1;
919 #ifdef WINDOWSNT
920 if (!NILP (Vw32_downcase_file_names))
921 default_directory = Fdowncase (default_directory);
922 #endif
924 /* Make a local copy of nm[] to protect it from GC in DECODE_FILE below. */
925 nm = alloca (SBYTES (name) + 1);
926 memcpy (nm, SSDATA (name), SBYTES (name) + 1);
928 #ifdef DOS_NT
929 /* Note if special escape prefix is present, but remove for now. */
930 if (nm[0] == '/' && nm[1] == ':')
932 is_escaped = 1;
933 nm += 2;
936 /* Find and remove drive specifier if present; this makes nm absolute
937 even if the rest of the name appears to be relative. Only look for
938 drive specifier at the beginning. */
939 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
941 drive = (unsigned char) nm[0];
942 nm += 2;
945 #ifdef WINDOWSNT
946 /* If we see "c://somedir", we want to strip the first slash after the
947 colon when stripping the drive letter. Otherwise, this expands to
948 "//somedir". */
949 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
950 nm++;
952 /* Discard any previous drive specifier if nm is now in UNC format. */
953 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
955 drive = 0;
957 #endif /* WINDOWSNT */
958 #endif /* DOS_NT */
960 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
961 none are found, we can probably return right away. We will avoid
962 allocating a new string if name is already fully expanded. */
963 if (
964 IS_DIRECTORY_SEP (nm[0])
965 #ifdef MSDOS
966 && drive && !is_escaped
967 #endif
968 #ifdef WINDOWSNT
969 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
970 #endif
973 /* If it turns out that the filename we want to return is just a
974 suffix of FILENAME, we don't need to go through and edit
975 things; we just need to construct a new string using data
976 starting at the middle of FILENAME. If we set LOSE, that
977 means we've discovered that we can't do that cool trick. */
978 bool lose = 0;
979 char *p = nm;
981 while (*p)
983 /* Since we know the name is absolute, we can assume that each
984 element starts with a "/". */
986 /* "." and ".." are hairy. */
987 if (IS_DIRECTORY_SEP (p[0])
988 && p[1] == '.'
989 && (IS_DIRECTORY_SEP (p[2])
990 || p[2] == 0
991 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
992 || p[3] == 0))))
993 lose = 1;
994 /* We want to replace multiple `/' in a row with a single
995 slash. */
996 else if (p > nm
997 && IS_DIRECTORY_SEP (p[0])
998 && IS_DIRECTORY_SEP (p[1]))
999 lose = 1;
1000 p++;
1002 if (!lose)
1004 #ifdef DOS_NT
1005 /* Make sure directories are all separated with /, but
1006 avoid allocation of a new string when not required. */
1007 dostounix_filename (nm, multibyte);
1008 #ifdef WINDOWSNT
1009 if (IS_DIRECTORY_SEP (nm[1]))
1011 if (strcmp (nm, SSDATA (name)) != 0)
1012 name = make_specified_string (nm, -1, strlen (nm), multibyte);
1014 else
1015 #endif
1016 /* Drive must be set, so this is okay. */
1017 if (strcmp (nm - 2, SSDATA (name)) != 0)
1019 char temp[] = " :";
1021 name = make_specified_string (nm, -1, p - nm, multibyte);
1022 temp[0] = DRIVE_LETTER (drive);
1023 name = concat2 (build_string (temp), name);
1025 #ifdef WINDOWSNT
1026 if (!NILP (Vw32_downcase_file_names))
1027 name = Fdowncase (name);
1028 #endif
1029 return name;
1030 #else /* not DOS_NT */
1031 if (strcmp (nm, SSDATA (name)) == 0)
1032 return name;
1033 return make_specified_string (nm, -1, strlen (nm), multibyte);
1034 #endif /* not DOS_NT */
1038 /* At this point, nm might or might not be an absolute file name. We
1039 need to expand ~ or ~user if present, otherwise prefix nm with
1040 default_directory if nm is not absolute, and finally collapse /./
1041 and /foo/../ sequences.
1043 We set newdir to be the appropriate prefix if one is needed:
1044 - the relevant user directory if nm starts with ~ or ~user
1045 - the specified drive's working dir (DOS/NT only) if nm does not
1046 start with /
1047 - the value of default_directory.
1049 Note that these prefixes are not guaranteed to be absolute (except
1050 for the working dir of a drive). Therefore, to ensure we always
1051 return an absolute name, if the final prefix is not absolute we
1052 append it to the current working directory. */
1054 newdir = 0;
1056 if (nm[0] == '~') /* prefix ~ */
1058 if (IS_DIRECTORY_SEP (nm[1])
1059 || nm[1] == 0) /* ~ by itself */
1061 Lisp_Object tem;
1063 if (!(newdir = egetenv ("HOME")))
1064 newdir = "";
1065 nm++;
1066 /* `egetenv' may return a unibyte string, which will bite us since
1067 we expect the directory to be multibyte. */
1068 tem = build_string (newdir);
1069 if (multibyte && !STRING_MULTIBYTE (tem))
1071 hdir = DECODE_FILE (tem);
1072 newdir = SSDATA (hdir);
1074 #ifdef DOS_NT
1075 collapse_newdir = 0;
1076 #endif
1078 else /* ~user/filename */
1080 char *o, *p;
1081 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)); p++);
1082 o = alloca (p - nm + 1);
1083 memcpy (o, nm, p - nm);
1084 o [p - nm] = 0;
1086 block_input ();
1087 pw = getpwnam (o + 1);
1088 unblock_input ();
1089 if (pw)
1091 Lisp_Object tem;
1093 newdir = pw->pw_dir;
1094 /* `getpwnam' may return a unibyte string, which will
1095 bite us since we expect the directory to be
1096 multibyte. */
1097 tem = build_string (newdir);
1098 if (multibyte && !STRING_MULTIBYTE (tem))
1100 hdir = DECODE_FILE (tem);
1101 newdir = SSDATA (hdir);
1103 nm = p;
1104 #ifdef DOS_NT
1105 collapse_newdir = 0;
1106 #endif
1109 /* If we don't find a user of that name, leave the name
1110 unchanged; don't move nm forward to p. */
1114 #ifdef DOS_NT
1115 /* On DOS and Windows, nm is absolute if a drive name was specified;
1116 use the drive's current directory as the prefix if needed. */
1117 if (!newdir && drive)
1119 /* Get default directory if needed to make nm absolute. */
1120 char *adir = NULL;
1121 if (!IS_DIRECTORY_SEP (nm[0]))
1123 adir = alloca (MAXPATHLEN + 1);
1124 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
1125 adir = NULL;
1126 else if (multibyte)
1128 Lisp_Object tem = build_string (adir);
1130 tem = DECODE_FILE (tem);
1131 memcpy (adir, SSDATA (tem), SBYTES (tem) + 1);
1134 if (!adir)
1136 /* Either nm starts with /, or drive isn't mounted. */
1137 adir = alloca (4);
1138 adir[0] = DRIVE_LETTER (drive);
1139 adir[1] = ':';
1140 adir[2] = '/';
1141 adir[3] = 0;
1143 newdir = adir;
1145 #endif /* DOS_NT */
1147 /* Finally, if no prefix has been specified and nm is not absolute,
1148 then it must be expanded relative to default_directory. */
1150 if (1
1151 #ifndef DOS_NT
1152 /* /... alone is not absolute on DOS and Windows. */
1153 && !IS_DIRECTORY_SEP (nm[0])
1154 #endif
1155 #ifdef WINDOWSNT
1156 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1157 #endif
1158 && !newdir)
1160 newdir = SSDATA (default_directory);
1161 #ifdef DOS_NT
1162 /* Note if special escape prefix is present, but remove for now. */
1163 if (newdir[0] == '/' && newdir[1] == ':')
1165 is_escaped = 1;
1166 newdir += 2;
1168 #endif
1171 #ifdef DOS_NT
1172 if (newdir)
1174 /* First ensure newdir is an absolute name. */
1175 if (
1176 /* Detect MSDOS file names with drive specifiers. */
1177 ! (IS_DRIVE (newdir[0])
1178 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1179 #ifdef WINDOWSNT
1180 /* Detect Windows file names in UNC format. */
1181 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1182 #endif
1185 /* Effectively, let newdir be (expand-file-name newdir cwd).
1186 Because of the admonition against calling expand-file-name
1187 when we have pointers into lisp strings, we accomplish this
1188 indirectly by prepending newdir to nm if necessary, and using
1189 cwd (or the wd of newdir's drive) as the new newdir. */
1190 char *adir;
1192 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1194 drive = (unsigned char) newdir[0];
1195 newdir += 2;
1197 if (!IS_DIRECTORY_SEP (nm[0]))
1199 ptrdiff_t newlen = strlen (newdir);
1200 char *tmp = alloca (newlen + strlen (nm) + 2);
1201 file_name_as_directory (tmp, newdir, newlen, multibyte);
1202 strcat (tmp, nm);
1203 nm = tmp;
1205 adir = alloca (MAXPATHLEN + 1);
1206 if (drive)
1208 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
1209 strcpy (adir, "/");
1211 else
1212 getcwd (adir, MAXPATHLEN + 1);
1213 if (multibyte)
1215 Lisp_Object tem = build_string (adir);
1217 tem = DECODE_FILE (tem);
1218 memcpy (adir, SSDATA (tem), SBYTES (tem) + 1);
1220 newdir = adir;
1223 /* Strip off drive name from prefix, if present. */
1224 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1226 drive = newdir[0];
1227 newdir += 2;
1230 /* Keep only a prefix from newdir if nm starts with slash
1231 (//server/share for UNC, nothing otherwise). */
1232 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1234 #ifdef WINDOWSNT
1235 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1237 char *adir = strcpy (alloca (strlen (newdir) + 1), newdir);
1238 char *p = adir + 2;
1239 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1240 p++;
1241 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1242 *p = 0;
1243 newdir = adir;
1245 else
1246 #endif
1247 newdir = "";
1250 #endif /* DOS_NT */
1252 if (newdir)
1254 /* Get rid of any slash at the end of newdir, unless newdir is
1255 just / or // (an incomplete UNC name). */
1256 length = strlen (newdir);
1257 tlen = length + 1;
1258 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1259 #ifdef WINDOWSNT
1260 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1261 #endif
1264 char *temp = alloca (length);
1265 memcpy (temp, newdir, length - 1);
1266 temp[length - 1] = 0;
1267 length--;
1268 newdir = temp;
1271 else
1273 length = 0;
1274 tlen = 0;
1277 /* Now concatenate the directory and name to new space in the stack frame. */
1278 tlen += strlen (nm) + 1;
1279 #ifdef DOS_NT
1280 /* Reserve space for drive specifier and escape prefix, since either
1281 or both may need to be inserted. (The Microsoft x86 compiler
1282 produces incorrect code if the following two lines are combined.) */
1283 target = alloca (tlen + 4);
1284 target += 4;
1285 #else /* not DOS_NT */
1286 target = alloca (tlen);
1287 #endif /* not DOS_NT */
1288 *target = 0;
1290 if (newdir)
1292 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1294 #ifdef DOS_NT
1295 /* If newdir is effectively "C:/", then the drive letter will have
1296 been stripped and newdir will be "/". Concatenating with an
1297 absolute directory in nm produces "//", which will then be
1298 incorrectly treated as a network share. Ignore newdir in
1299 this case (keeping the drive letter). */
1300 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1301 && newdir[1] == '\0'))
1302 #endif
1303 strcpy (target, newdir);
1305 else
1306 file_name_as_directory (target, newdir, length, multibyte);
1309 strcat (target, nm);
1311 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1312 appear. */
1314 char *p = target;
1315 char *o = target;
1317 while (*p)
1319 if (!IS_DIRECTORY_SEP (*p))
1321 *o++ = *p++;
1323 else if (p[1] == '.'
1324 && (IS_DIRECTORY_SEP (p[2])
1325 || p[2] == 0))
1327 /* If "/." is the entire filename, keep the "/". Otherwise,
1328 just delete the whole "/.". */
1329 if (o == target && p[2] == '\0')
1330 *o++ = *p;
1331 p += 2;
1333 else if (p[1] == '.' && p[2] == '.'
1334 /* `/../' is the "superroot" on certain file systems.
1335 Turned off on DOS_NT systems because they have no
1336 "superroot" and because this causes us to produce
1337 file names like "d:/../foo" which fail file-related
1338 functions of the underlying OS. (To reproduce, try a
1339 long series of "../../" in default_directory, longer
1340 than the number of levels from the root.) */
1341 #ifndef DOS_NT
1342 && o != target
1343 #endif
1344 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1346 #ifdef WINDOWSNT
1347 char *prev_o = o;
1348 #endif
1349 while (o != target && (--o, !IS_DIRECTORY_SEP (*o)))
1350 continue;
1351 #ifdef WINDOWSNT
1352 /* Don't go below server level in UNC filenames. */
1353 if (o == target + 1 && IS_DIRECTORY_SEP (*o)
1354 && IS_DIRECTORY_SEP (*target))
1355 o = prev_o;
1356 else
1357 #endif
1358 /* Keep initial / only if this is the whole name. */
1359 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1360 ++o;
1361 p += 3;
1363 else if (p > target && IS_DIRECTORY_SEP (p[1]))
1364 /* Collapse multiple `/' in a row. */
1365 p++;
1366 else
1368 *o++ = *p++;
1372 #ifdef DOS_NT
1373 /* At last, set drive name. */
1374 #ifdef WINDOWSNT
1375 /* Except for network file name. */
1376 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1377 #endif /* WINDOWSNT */
1379 if (!drive) emacs_abort ();
1380 target -= 2;
1381 target[0] = DRIVE_LETTER (drive);
1382 target[1] = ':';
1384 /* Reinsert the escape prefix if required. */
1385 if (is_escaped)
1387 target -= 2;
1388 target[0] = '/';
1389 target[1] = ':';
1391 result = make_specified_string (target, -1, o - target, multibyte);
1392 dostounix_filename (SSDATA (result), multibyte);
1393 #ifdef WINDOWSNT
1394 if (!NILP (Vw32_downcase_file_names))
1395 result = Fdowncase (result);
1396 #endif
1397 #else /* !DOS_NT */
1398 result = make_specified_string (target, -1, o - target, multibyte);
1399 #endif /* !DOS_NT */
1402 /* Again look to see if the file name has special constructs in it
1403 and perhaps call the corresponding file handler. This is needed
1404 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1405 the ".." component gives us "/user@host:/bar/../baz" which needs
1406 to be expanded again. */
1407 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1408 if (!NILP (handler))
1410 handled_name = call3 (handler, Qexpand_file_name,
1411 result, default_directory);
1412 if (STRINGP (handled_name))
1413 return handled_name;
1414 error ("Invalid handler in `file-name-handler-alist'");
1417 return result;
1420 #if 0
1421 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1422 This is the old version of expand-file-name, before it was thoroughly
1423 rewritten for Emacs 10.31. We leave this version here commented-out,
1424 because the code is very complex and likely to have subtle bugs. If
1425 bugs _are_ found, it might be of interest to look at the old code and
1426 see what did it do in the relevant situation.
1428 Don't remove this code: it's true that it will be accessible
1429 from the repository, but a few years from deletion, people will
1430 forget it is there. */
1432 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1433 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1434 "Convert FILENAME to absolute, and canonicalize it.\n\
1435 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1436 \(does not start with slash); if DEFAULT is nil or missing,\n\
1437 the current buffer's value of default-directory is used.\n\
1438 Filenames containing `.' or `..' as components are simplified;\n\
1439 initial `~/' expands to your home directory.\n\
1440 See also the function `substitute-in-file-name'.")
1441 (name, defalt)
1442 Lisp_Object name, defalt;
1444 unsigned char *nm;
1446 register unsigned char *newdir, *p, *o;
1447 ptrdiff_t tlen;
1448 unsigned char *target;
1449 struct passwd *pw;
1451 CHECK_STRING (name);
1452 nm = SDATA (name);
1454 /* If nm is absolute, flush ...// and detect /./ and /../.
1455 If no /./ or /../ we can return right away. */
1456 if (nm[0] == '/')
1458 bool lose = 0;
1459 p = nm;
1460 while (*p)
1462 if (p[0] == '/' && p[1] == '/')
1463 nm = p + 1;
1464 if (p[0] == '/' && p[1] == '~')
1465 nm = p + 1, lose = 1;
1466 if (p[0] == '/' && p[1] == '.'
1467 && (p[2] == '/' || p[2] == 0
1468 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1469 lose = 1;
1470 p++;
1472 if (!lose)
1474 if (nm == SDATA (name))
1475 return name;
1476 return build_string (nm);
1480 /* Now determine directory to start with and put it in NEWDIR. */
1482 newdir = 0;
1484 if (nm[0] == '~') /* prefix ~ */
1485 if (nm[1] == '/' || nm[1] == 0)/* ~/filename */
1487 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1488 newdir = (unsigned char *) "";
1489 nm++;
1491 else /* ~user/filename */
1493 /* Get past ~ to user. */
1494 unsigned char *user = nm + 1;
1495 /* Find end of name. */
1496 unsigned char *ptr = (unsigned char *) strchr (user, '/');
1497 ptrdiff_t len = ptr ? ptr - user : strlen (user);
1498 /* Copy the user name into temp storage. */
1499 o = alloca (len + 1);
1500 memcpy (o, user, len);
1501 o[len] = 0;
1503 /* Look up the user name. */
1504 block_input ();
1505 pw = (struct passwd *) getpwnam (o + 1);
1506 unblock_input ();
1507 if (!pw)
1508 error ("\"%s\" isn't a registered user", o + 1);
1510 newdir = (unsigned char *) pw->pw_dir;
1512 /* Discard the user name from NM. */
1513 nm += len;
1516 if (nm[0] != '/' && !newdir)
1518 if (NILP (defalt))
1519 defalt = current_buffer->directory;
1520 CHECK_STRING (defalt);
1521 newdir = SDATA (defalt);
1524 /* Now concatenate the directory and name to new space in the stack frame. */
1526 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1527 target = alloca (tlen);
1528 *target = 0;
1530 if (newdir)
1532 if (nm[0] == 0 || nm[0] == '/')
1533 strcpy (target, newdir);
1534 else
1535 file_name_as_directory (target, newdir);
1538 strcat (target, nm);
1540 /* Now canonicalize by removing /. and /foo/.. if they appear. */
1542 p = target;
1543 o = target;
1545 while (*p)
1547 if (*p != '/')
1549 *o++ = *p++;
1551 else if (!strncmp (p, "//", 2)
1554 o = target;
1555 p++;
1557 else if (p[0] == '/' && p[1] == '.'
1558 && (p[2] == '/' || p[2] == 0))
1559 p += 2;
1560 else if (!strncmp (p, "/..", 3)
1561 /* `/../' is the "superroot" on certain file systems. */
1562 && o != target
1563 && (p[3] == '/' || p[3] == 0))
1565 while (o != target && *--o != '/')
1567 if (o == target && *o == '/')
1568 ++o;
1569 p += 3;
1571 else
1573 *o++ = *p++;
1577 return make_string (target, o - target);
1579 #endif
1581 /* If /~ or // appears, discard everything through first slash. */
1582 static bool
1583 file_name_absolute_p (const char *filename)
1585 return
1586 (IS_DIRECTORY_SEP (*filename) || *filename == '~'
1587 #ifdef DOS_NT
1588 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1])
1589 && IS_DIRECTORY_SEP (filename[2]))
1590 #endif
1594 static char *
1595 search_embedded_absfilename (char *nm, char *endp)
1597 char *p, *s;
1599 for (p = nm + 1; p < endp; p++)
1601 if (IS_DIRECTORY_SEP (p[-1])
1602 && file_name_absolute_p (p)
1603 #if defined (WINDOWSNT) || defined (CYGWIN)
1604 /* // at start of file name is meaningful in Apollo,
1605 WindowsNT and Cygwin systems. */
1606 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
1607 #endif /* not (WINDOWSNT || CYGWIN) */
1610 for (s = p; *s && !IS_DIRECTORY_SEP (*s); s++);
1611 if (p[0] == '~' && s > p + 1) /* We've got "/~something/". */
1613 char *o = alloca (s - p + 1);
1614 struct passwd *pw;
1615 memcpy (o, p, s - p);
1616 o [s - p] = 0;
1618 /* If we have ~user and `user' exists, discard
1619 everything up to ~. But if `user' does not exist, leave
1620 ~user alone, it might be a literal file name. */
1621 block_input ();
1622 pw = getpwnam (o + 1);
1623 unblock_input ();
1624 if (pw)
1625 return p;
1627 else
1628 return p;
1631 return NULL;
1634 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1635 Ssubstitute_in_file_name, 1, 1, 0,
1636 doc: /* Substitute environment variables referred to in FILENAME.
1637 `$FOO' where FOO is an environment variable name means to substitute
1638 the value of that variable. The variable name should be terminated
1639 with a character not a letter, digit or underscore; otherwise, enclose
1640 the entire variable name in braces.
1642 If `/~' appears, all of FILENAME through that `/' is discarded.
1643 If `//' appears, everything up to and including the first of
1644 those `/' is discarded. */)
1645 (Lisp_Object filename)
1647 char *nm, *s, *p, *o, *x, *endp;
1648 char *target = NULL;
1649 ptrdiff_t total = 0;
1650 bool substituted = 0;
1651 bool multibyte;
1652 char *xnm;
1653 Lisp_Object handler;
1655 CHECK_STRING (filename);
1657 multibyte = STRING_MULTIBYTE (filename);
1659 /* If the file name has special constructs in it,
1660 call the corresponding file handler. */
1661 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
1662 if (!NILP (handler))
1664 Lisp_Object handled_name = call2 (handler, Qsubstitute_in_file_name,
1665 filename);
1666 if (STRINGP (handled_name))
1667 return handled_name;
1668 error ("Invalid handler in `file-name-handler-alist'");
1671 /* Always work on a copy of the string, in case GC happens during
1672 decode of environment variables, causing the original Lisp_String
1673 data to be relocated. */
1674 nm = alloca (SBYTES (filename) + 1);
1675 memcpy (nm, SDATA (filename), SBYTES (filename) + 1);
1677 #ifdef DOS_NT
1678 dostounix_filename (nm, multibyte);
1679 substituted = (memcmp (nm, SDATA (filename), SBYTES (filename)) != 0);
1680 #endif
1681 endp = nm + SBYTES (filename);
1683 /* If /~ or // appears, discard everything through first slash. */
1684 p = search_embedded_absfilename (nm, endp);
1685 if (p)
1686 /* Start over with the new string, so we check the file-name-handler
1687 again. Important with filenames like "/home/foo//:/hello///there"
1688 which would substitute to "/:/hello///there" rather than "/there". */
1689 return Fsubstitute_in_file_name
1690 (make_specified_string (p, -1, endp - p, multibyte));
1692 /* See if any variables are substituted into the string
1693 and find the total length of their values in `total'. */
1695 for (p = nm; p != endp;)
1696 if (*p != '$')
1697 p++;
1698 else
1700 p++;
1701 if (p == endp)
1702 goto badsubst;
1703 else if (*p == '$')
1705 /* "$$" means a single "$". */
1706 p++;
1707 total -= 1;
1708 substituted = 1;
1709 continue;
1711 else if (*p == '{')
1713 o = ++p;
1714 p = memchr (p, '}', endp - p);
1715 if (! p)
1716 goto missingclose;
1717 s = p;
1719 else
1721 o = p;
1722 while (p != endp && (c_isalnum (*p) || *p == '_')) p++;
1723 s = p;
1726 /* Copy out the variable name. */
1727 target = alloca (s - o + 1);
1728 memcpy (target, o, s - o);
1729 target[s - o] = 0;
1730 #ifdef DOS_NT
1731 strupr (target); /* $home == $HOME etc. */
1732 #endif /* DOS_NT */
1734 /* Get variable value. */
1735 o = egetenv (target);
1736 if (o)
1738 /* Don't try to guess a maximum length - UTF8 can use up to
1739 four bytes per character. This code is unlikely to run
1740 in a situation that requires performance, so decoding the
1741 env variables twice should be acceptable. Note that
1742 decoding may cause a garbage collect. */
1743 Lisp_Object orig, decoded;
1744 orig = build_unibyte_string (o);
1745 decoded = DECODE_FILE (orig);
1746 total += SBYTES (decoded);
1747 substituted = 1;
1749 else if (*p == '}')
1750 goto badvar;
1753 if (!substituted)
1755 #ifdef WINDOWSNT
1756 if (!NILP (Vw32_downcase_file_names))
1757 filename = Fdowncase (filename);
1758 #endif
1759 return filename;
1762 /* If substitution required, recopy the string and do it. */
1763 /* Make space in stack frame for the new copy. */
1764 xnm = alloca (SBYTES (filename) + total + 1);
1765 x = xnm;
1767 /* Copy the rest of the name through, replacing $ constructs with values. */
1768 for (p = nm; *p;)
1769 if (*p != '$')
1770 *x++ = *p++;
1771 else
1773 p++;
1774 if (p == endp)
1775 goto badsubst;
1776 else if (*p == '$')
1778 *x++ = *p++;
1779 continue;
1781 else if (*p == '{')
1783 o = ++p;
1784 p = memchr (p, '}', endp - p);
1785 if (! p)
1786 goto missingclose;
1787 s = p++;
1789 else
1791 o = p;
1792 while (p != endp && (c_isalnum (*p) || *p == '_')) p++;
1793 s = p;
1796 /* Copy out the variable name. */
1797 target = alloca (s - o + 1);
1798 memcpy (target, o, s - o);
1799 target[s - o] = 0;
1801 /* Get variable value. */
1802 o = egetenv (target);
1803 if (!o)
1805 *x++ = '$';
1806 strcpy (x, target); x+= strlen (target);
1808 else
1810 Lisp_Object orig, decoded;
1811 ptrdiff_t orig_length, decoded_length;
1812 orig_length = strlen (o);
1813 orig = make_unibyte_string (o, orig_length);
1814 decoded = DECODE_FILE (orig);
1815 decoded_length = SBYTES (decoded);
1816 memcpy (x, SDATA (decoded), decoded_length);
1817 x += decoded_length;
1819 /* If environment variable needed decoding, return value
1820 needs to be multibyte. */
1821 if (decoded_length != orig_length
1822 || memcmp (SDATA (decoded), o, orig_length))
1823 multibyte = 1;
1827 *x = 0;
1829 /* If /~ or // appears, discard everything through first slash. */
1830 while ((p = search_embedded_absfilename (xnm, x)) != NULL)
1831 /* This time we do not start over because we've already expanded envvars
1832 and replaced $$ with $. Maybe we should start over as well, but we'd
1833 need to quote some $ to $$ first. */
1834 xnm = p;
1836 #ifdef WINDOWSNT
1837 if (!NILP (Vw32_downcase_file_names))
1839 Lisp_Object xname = make_specified_string (xnm, -1, x - xnm, multibyte);
1841 xname = Fdowncase (xname);
1842 return xname;
1844 else
1845 #endif
1846 return make_specified_string (xnm, -1, x - xnm, multibyte);
1848 badsubst:
1849 error ("Bad format environment-variable substitution");
1850 missingclose:
1851 error ("Missing \"}\" in environment-variable substitution");
1852 badvar:
1853 error ("Substituting nonexistent environment variable \"%s\"", target);
1856 /* A slightly faster and more convenient way to get
1857 (directory-file-name (expand-file-name FOO)). */
1859 Lisp_Object
1860 expand_and_dir_to_file (Lisp_Object filename, Lisp_Object defdir)
1862 register Lisp_Object absname;
1864 absname = Fexpand_file_name (filename, defdir);
1866 /* Remove final slash, if any (unless this is the root dir).
1867 stat behaves differently depending! */
1868 if (SCHARS (absname) > 1
1869 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
1870 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname) - 2)))
1871 /* We cannot take shortcuts; they might be wrong for magic file names. */
1872 absname = Fdirectory_file_name (absname);
1873 return absname;
1876 /* Signal an error if the file ABSNAME already exists.
1877 If INTERACTIVE, ask the user whether to proceed,
1878 and bypass the error if the user says to go ahead.
1879 QUERYSTRING is a name for the action that is being considered
1880 to alter the file.
1882 *STATPTR is used to store the stat information if the file exists.
1883 If the file does not exist, STATPTR->st_mode is set to 0.
1884 If STATPTR is null, we don't store into it.
1886 If QUICK, ask for y or n, not yes or no. */
1888 static void
1889 barf_or_query_if_file_exists (Lisp_Object absname, const char *querystring,
1890 bool interactive, struct stat *statptr,
1891 bool quick)
1893 Lisp_Object tem, encoded_filename;
1894 struct stat statbuf;
1895 struct gcpro gcpro1;
1897 encoded_filename = ENCODE_FILE (absname);
1899 /* `stat' is a good way to tell whether the file exists,
1900 regardless of what access permissions it has. */
1901 if (lstat (SSDATA (encoded_filename), &statbuf) >= 0)
1903 if (S_ISDIR (statbuf.st_mode))
1904 xsignal2 (Qfile_error,
1905 build_string ("File is a directory"), absname);
1907 if (! interactive)
1908 xsignal2 (Qfile_already_exists,
1909 build_string ("File already exists"), absname);
1910 GCPRO1 (absname);
1911 tem = format2 ("File %s already exists; %s anyway? ",
1912 absname, build_string (querystring));
1913 if (quick)
1914 tem = call1 (intern ("y-or-n-p"), tem);
1915 else
1916 tem = do_yes_or_no_p (tem);
1917 UNGCPRO;
1918 if (NILP (tem))
1919 xsignal2 (Qfile_already_exists,
1920 build_string ("File already exists"), absname);
1921 if (statptr)
1922 *statptr = statbuf;
1924 else
1926 if (statptr)
1927 statptr->st_mode = 0;
1929 return;
1932 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
1933 "fCopy file: \nGCopy %s to file: \np\nP",
1934 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1935 If NEWNAME names a directory, copy FILE there.
1937 This function always sets the file modes of the output file to match
1938 the input file.
1940 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1941 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1942 signal a `file-already-exists' error without overwriting. If
1943 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1944 about overwriting; this is what happens in interactive use with M-x.
1945 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1946 existing file.
1948 Fourth arg KEEP-TIME non-nil means give the output file the same
1949 last-modified time as the old one. (This works on only some systems.)
1951 A prefix arg makes KEEP-TIME non-nil.
1953 If PRESERVE-UID-GID is non-nil, we try to transfer the
1954 uid and gid of FILE to NEWNAME.
1956 If PRESERVE-EXTENDED-ATTRIBUTES is non-nil, we try to copy additional
1957 attributes of FILE to NEWNAME, such as its SELinux context and ACL
1958 entries (depending on how Emacs was built). */)
1959 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists, Lisp_Object keep_time, Lisp_Object preserve_uid_gid, Lisp_Object preserve_extended_attributes)
1961 int ifd, ofd;
1962 int n;
1963 char buf[16 * 1024];
1964 struct stat st, out_st;
1965 Lisp_Object handler;
1966 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1967 ptrdiff_t count = SPECPDL_INDEX ();
1968 Lisp_Object encoded_file, encoded_newname;
1969 #if HAVE_LIBSELINUX
1970 security_context_t con;
1971 int conlength = 0;
1972 #endif
1973 #ifdef WINDOWSNT
1974 acl_t acl = NULL;
1975 #endif
1977 encoded_file = encoded_newname = Qnil;
1978 GCPRO4 (file, newname, encoded_file, encoded_newname);
1979 CHECK_STRING (file);
1980 CHECK_STRING (newname);
1982 if (!NILP (Ffile_directory_p (newname)))
1983 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1984 else
1985 newname = Fexpand_file_name (newname, Qnil);
1987 file = Fexpand_file_name (file, Qnil);
1989 /* If the input file name has special constructs in it,
1990 call the corresponding file handler. */
1991 handler = Ffind_file_name_handler (file, Qcopy_file);
1992 /* Likewise for output file name. */
1993 if (NILP (handler))
1994 handler = Ffind_file_name_handler (newname, Qcopy_file);
1995 if (!NILP (handler))
1996 RETURN_UNGCPRO (call7 (handler, Qcopy_file, file, newname,
1997 ok_if_already_exists, keep_time, preserve_uid_gid,
1998 preserve_extended_attributes));
2000 encoded_file = ENCODE_FILE (file);
2001 encoded_newname = ENCODE_FILE (newname);
2003 if (NILP (ok_if_already_exists)
2004 || INTEGERP (ok_if_already_exists))
2005 barf_or_query_if_file_exists (newname, "copy to it",
2006 INTEGERP (ok_if_already_exists), &out_st, 0);
2007 else if (stat (SSDATA (encoded_newname), &out_st) < 0)
2008 out_st.st_mode = 0;
2010 #ifdef WINDOWSNT
2011 if (!NILP (preserve_extended_attributes))
2013 acl = acl_get_file (SDATA (encoded_file), ACL_TYPE_ACCESS);
2014 if (acl == NULL && acl_errno_valid (errno))
2015 report_file_error ("Getting ACL", Fcons (file, Qnil));
2017 if (!CopyFile (SDATA (encoded_file),
2018 SDATA (encoded_newname),
2019 FALSE))
2021 /* CopyFile doesn't set errno when it fails. By far the most
2022 "popular" reason is that the target is read-only. */
2023 if (GetLastError () == 5)
2024 errno = EACCES;
2025 else
2026 errno = EPERM;
2027 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
2029 /* CopyFile retains the timestamp by default. */
2030 else if (NILP (keep_time))
2032 EMACS_TIME now;
2033 DWORD attributes;
2034 char * filename;
2036 filename = SDATA (encoded_newname);
2038 /* Ensure file is writable while its modified time is set. */
2039 attributes = GetFileAttributes (filename);
2040 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
2041 now = current_emacs_time ();
2042 if (set_file_times (-1, filename, now, now))
2044 /* Restore original attributes. */
2045 SetFileAttributes (filename, attributes);
2046 xsignal2 (Qfile_date_error,
2047 build_string ("Cannot set file date"), newname);
2049 /* Restore original attributes. */
2050 SetFileAttributes (filename, attributes);
2052 if (acl != NULL)
2054 bool fail =
2055 acl_set_file (SDATA (encoded_newname), ACL_TYPE_ACCESS, acl) != 0;
2056 if (fail && acl_errno_valid (errno))
2057 report_file_error ("Setting ACL", Fcons (newname, Qnil));
2059 acl_free (acl);
2061 #else /* not WINDOWSNT */
2062 immediate_quit = 1;
2063 ifd = emacs_open (SSDATA (encoded_file), O_RDONLY, 0);
2064 immediate_quit = 0;
2066 if (ifd < 0)
2067 report_file_error ("Opening input file", Fcons (file, Qnil));
2069 record_unwind_protect (close_file_unwind, make_number (ifd));
2071 if (fstat (ifd, &st) != 0)
2072 report_file_error ("Input file status", Fcons (file, Qnil));
2074 if (!NILP (preserve_extended_attributes))
2076 #if HAVE_LIBSELINUX
2077 if (is_selinux_enabled ())
2079 conlength = fgetfilecon (ifd, &con);
2080 if (conlength == -1)
2081 report_file_error ("Doing fgetfilecon", Fcons (file, Qnil));
2083 #endif
2086 if (out_st.st_mode != 0
2087 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
2089 errno = 0;
2090 report_file_error ("Input and output files are the same",
2091 Fcons (file, Fcons (newname, Qnil)));
2094 /* We can copy only regular files. */
2095 if (!S_ISREG (st.st_mode))
2097 /* Get a better looking error message. */
2098 errno = S_ISDIR (st.st_mode) ? EISDIR : EINVAL;
2099 report_file_error ("Non-regular file", Fcons (file, Qnil));
2102 #ifdef MSDOS
2103 /* System's default file type was set to binary by _fmode in emacs.c. */
2104 ofd = emacs_open (SDATA (encoded_newname),
2105 O_WRONLY | O_TRUNC | O_CREAT
2106 | (NILP (ok_if_already_exists) ? O_EXCL : 0),
2107 S_IREAD | S_IWRITE);
2108 #else /* not MSDOS */
2110 mode_t new_mask = !NILP (preserve_uid_gid) ? 0600 : 0666;
2111 new_mask &= st.st_mode;
2112 ofd = emacs_open (SSDATA (encoded_newname),
2113 (O_WRONLY | O_TRUNC | O_CREAT
2114 | (NILP (ok_if_already_exists) ? O_EXCL : 0)),
2115 new_mask);
2117 #endif /* not MSDOS */
2118 if (ofd < 0)
2119 report_file_error ("Opening output file", Fcons (newname, Qnil));
2121 record_unwind_protect (close_file_unwind, make_number (ofd));
2123 immediate_quit = 1;
2124 QUIT;
2125 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
2126 if (emacs_write (ofd, buf, n) != n)
2127 report_file_error ("I/O error", Fcons (newname, Qnil));
2128 immediate_quit = 0;
2130 #ifndef MSDOS
2131 /* Preserve the original file permissions, and if requested, also its
2132 owner and group. */
2134 mode_t mode_mask = 07777;
2135 if (!NILP (preserve_uid_gid))
2137 /* Attempt to change owner and group. If that doesn't work
2138 attempt to change just the group, as that is sometimes allowed.
2139 Adjust the mode mask to eliminate setuid or setgid bits
2140 that are inappropriate if the owner and group are wrong. */
2141 if (fchown (ofd, st.st_uid, st.st_gid) != 0)
2143 mode_mask &= ~06000;
2144 if (fchown (ofd, -1, st.st_gid) == 0)
2145 mode_mask |= 02000;
2149 switch (!NILP (preserve_extended_attributes)
2150 ? qcopy_acl (SSDATA (encoded_file), ifd,
2151 SSDATA (encoded_newname), ofd,
2152 st.st_mode & mode_mask)
2153 : fchmod (ofd, st.st_mode & mode_mask))
2155 case -2: report_file_error ("Copying permissions from", list1 (file));
2156 case -1: report_file_error ("Copying permissions to", list1 (newname));
2159 #endif /* not MSDOS */
2161 #if HAVE_LIBSELINUX
2162 if (conlength > 0)
2164 /* Set the modified context back to the file. */
2165 bool fail = fsetfilecon (ofd, con) != 0;
2166 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
2167 if (fail && errno != ENOTSUP)
2168 report_file_error ("Doing fsetfilecon", Fcons (newname, Qnil));
2170 freecon (con);
2172 #endif
2174 if (!NILP (keep_time))
2176 EMACS_TIME atime = get_stat_atime (&st);
2177 EMACS_TIME mtime = get_stat_mtime (&st);
2178 if (set_file_times (ofd, SSDATA (encoded_newname), atime, mtime))
2179 xsignal2 (Qfile_date_error,
2180 build_string ("Cannot set file date"), newname);
2183 if (emacs_close (ofd) < 0)
2184 report_file_error ("I/O error", Fcons (newname, Qnil));
2186 emacs_close (ifd);
2188 #ifdef MSDOS
2189 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2190 and if it can't, it tells so. Otherwise, under MSDOS we usually
2191 get only the READ bit, which will make the copied file read-only,
2192 so it's better not to chmod at all. */
2193 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2194 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2195 #endif /* MSDOS */
2196 #endif /* not WINDOWSNT */
2198 /* Discard the unwind protects. */
2199 specpdl_ptr = specpdl + count;
2201 UNGCPRO;
2202 return Qnil;
2205 DEFUN ("make-directory-internal", Fmake_directory_internal,
2206 Smake_directory_internal, 1, 1, 0,
2207 doc: /* Create a new directory named DIRECTORY. */)
2208 (Lisp_Object directory)
2210 const char *dir;
2211 Lisp_Object handler;
2212 Lisp_Object encoded_dir;
2214 CHECK_STRING (directory);
2215 directory = Fexpand_file_name (directory, Qnil);
2217 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2218 if (!NILP (handler))
2219 return call2 (handler, Qmake_directory_internal, directory);
2221 encoded_dir = ENCODE_FILE (directory);
2223 dir = SSDATA (encoded_dir);
2225 #ifdef WINDOWSNT
2226 if (mkdir (dir) != 0)
2227 #else
2228 if (mkdir (dir, 0777 & ~auto_saving_dir_umask) != 0)
2229 #endif
2230 report_file_error ("Creating directory", list1 (directory));
2232 return Qnil;
2235 DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2236 Sdelete_directory_internal, 1, 1, 0,
2237 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2238 (Lisp_Object directory)
2240 const char *dir;
2241 Lisp_Object encoded_dir;
2243 CHECK_STRING (directory);
2244 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2245 encoded_dir = ENCODE_FILE (directory);
2246 dir = SSDATA (encoded_dir);
2248 if (rmdir (dir) != 0)
2249 report_file_error ("Removing directory", list1 (directory));
2251 return Qnil;
2254 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
2255 "(list (read-file-name \
2256 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2257 \"Move file to trash: \" \"Delete file: \") \
2258 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2259 (null current-prefix-arg))",
2260 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2261 If file has multiple names, it continues to exist with the other names.
2262 TRASH non-nil means to trash the file instead of deleting, provided
2263 `delete-by-moving-to-trash' is non-nil.
2265 When called interactively, TRASH is t if no prefix argument is given.
2266 With a prefix argument, TRASH is nil. */)
2267 (Lisp_Object filename, Lisp_Object trash)
2269 Lisp_Object handler;
2270 Lisp_Object encoded_file;
2271 struct gcpro gcpro1;
2273 GCPRO1 (filename);
2274 if (!NILP (Ffile_directory_p (filename))
2275 && NILP (Ffile_symlink_p (filename)))
2276 xsignal2 (Qfile_error,
2277 build_string ("Removing old name: is a directory"),
2278 filename);
2279 UNGCPRO;
2280 filename = Fexpand_file_name (filename, Qnil);
2282 handler = Ffind_file_name_handler (filename, Qdelete_file);
2283 if (!NILP (handler))
2284 return call3 (handler, Qdelete_file, filename, trash);
2286 if (delete_by_moving_to_trash && !NILP (trash))
2287 return call1 (Qmove_file_to_trash, filename);
2289 encoded_file = ENCODE_FILE (filename);
2291 if (unlink (SSDATA (encoded_file)) < 0)
2292 report_file_error ("Removing old name", list1 (filename));
2293 return Qnil;
2296 static Lisp_Object
2297 internal_delete_file_1 (Lisp_Object ignore)
2299 return Qt;
2302 /* Delete file FILENAME, returning true if successful.
2303 This ignores `delete-by-moving-to-trash'. */
2305 bool
2306 internal_delete_file (Lisp_Object filename)
2308 Lisp_Object tem;
2310 tem = internal_condition_case_2 (Fdelete_file, filename, Qnil,
2311 Qt, internal_delete_file_1);
2312 return NILP (tem);
2315 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2316 "fRename file: \nGRename %s to file: \np",
2317 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2318 If file has names other than FILE, it continues to have those names.
2319 Signals a `file-already-exists' error if a file NEWNAME already exists
2320 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2321 A number as third arg means request confirmation if NEWNAME already exists.
2322 This is what happens in interactive use with M-x. */)
2323 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2325 Lisp_Object handler;
2326 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2327 Lisp_Object encoded_file, encoded_newname, symlink_target;
2329 symlink_target = encoded_file = encoded_newname = Qnil;
2330 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2331 CHECK_STRING (file);
2332 CHECK_STRING (newname);
2333 file = Fexpand_file_name (file, Qnil);
2335 if ((!NILP (Ffile_directory_p (newname)))
2336 #ifdef DOS_NT
2337 /* If the file names are identical but for the case,
2338 don't attempt to move directory to itself. */
2339 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2340 #endif
2343 Lisp_Object fname = (NILP (Ffile_directory_p (file))
2344 ? file : Fdirectory_file_name (file));
2345 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2347 else
2348 newname = Fexpand_file_name (newname, Qnil);
2350 /* If the file name has special constructs in it,
2351 call the corresponding file handler. */
2352 handler = Ffind_file_name_handler (file, Qrename_file);
2353 if (NILP (handler))
2354 handler = Ffind_file_name_handler (newname, Qrename_file);
2355 if (!NILP (handler))
2356 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2357 file, newname, ok_if_already_exists));
2359 encoded_file = ENCODE_FILE (file);
2360 encoded_newname = ENCODE_FILE (newname);
2362 #ifdef DOS_NT
2363 /* If the file names are identical but for the case, don't ask for
2364 confirmation: they simply want to change the letter-case of the
2365 file name. */
2366 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2367 #endif
2368 if (NILP (ok_if_already_exists)
2369 || INTEGERP (ok_if_already_exists))
2370 barf_or_query_if_file_exists (newname, "rename to it",
2371 INTEGERP (ok_if_already_exists), 0, 0);
2372 if (rename (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
2374 if (errno == EXDEV)
2376 ptrdiff_t count;
2377 symlink_target = Ffile_symlink_p (file);
2378 if (! NILP (symlink_target))
2379 Fmake_symbolic_link (symlink_target, newname,
2380 NILP (ok_if_already_exists) ? Qnil : Qt);
2381 else if (!NILP (Ffile_directory_p (file)))
2382 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2383 else
2384 /* We have already prompted if it was an integer, so don't
2385 have copy-file prompt again. */
2386 Fcopy_file (file, newname,
2387 NILP (ok_if_already_exists) ? Qnil : Qt,
2388 Qt, Qt, Qt);
2390 count = SPECPDL_INDEX ();
2391 specbind (Qdelete_by_moving_to_trash, Qnil);
2393 if (!NILP (Ffile_directory_p (file)) && NILP (symlink_target))
2394 call2 (Qdelete_directory, file, Qt);
2395 else
2396 Fdelete_file (file, Qnil);
2397 unbind_to (count, Qnil);
2399 else
2400 report_file_error ("Renaming", list2 (file, newname));
2402 UNGCPRO;
2403 return Qnil;
2406 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2407 "fAdd name to file: \nGName to add to %s: \np",
2408 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2409 Signals a `file-already-exists' error if a file NEWNAME already exists
2410 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2411 A number as third arg means request confirmation if NEWNAME already exists.
2412 This is what happens in interactive use with M-x. */)
2413 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2415 Lisp_Object handler;
2416 Lisp_Object encoded_file, encoded_newname;
2417 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2419 GCPRO4 (file, newname, encoded_file, encoded_newname);
2420 encoded_file = encoded_newname = Qnil;
2421 CHECK_STRING (file);
2422 CHECK_STRING (newname);
2423 file = Fexpand_file_name (file, Qnil);
2425 if (!NILP (Ffile_directory_p (newname)))
2426 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2427 else
2428 newname = Fexpand_file_name (newname, Qnil);
2430 /* If the file name has special constructs in it,
2431 call the corresponding file handler. */
2432 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2433 if (!NILP (handler))
2434 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2435 newname, ok_if_already_exists));
2437 /* If the new name has special constructs in it,
2438 call the corresponding file handler. */
2439 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2440 if (!NILP (handler))
2441 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2442 newname, ok_if_already_exists));
2444 encoded_file = ENCODE_FILE (file);
2445 encoded_newname = ENCODE_FILE (newname);
2447 if (NILP (ok_if_already_exists)
2448 || INTEGERP (ok_if_already_exists))
2449 barf_or_query_if_file_exists (newname, "make it a new name",
2450 INTEGERP (ok_if_already_exists), 0, 0);
2452 unlink (SSDATA (newname));
2453 if (link (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
2454 report_file_error ("Adding new name", list2 (file, newname));
2456 UNGCPRO;
2457 return Qnil;
2460 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2461 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2462 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2463 Both args must be strings.
2464 Signals a `file-already-exists' error if a file LINKNAME already exists
2465 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2466 A number as third arg means request confirmation if LINKNAME already exists.
2467 This happens for interactive use with M-x. */)
2468 (Lisp_Object filename, Lisp_Object linkname, Lisp_Object ok_if_already_exists)
2470 Lisp_Object handler;
2471 Lisp_Object encoded_filename, encoded_linkname;
2472 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2474 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2475 encoded_filename = encoded_linkname = Qnil;
2476 CHECK_STRING (filename);
2477 CHECK_STRING (linkname);
2478 /* If the link target has a ~, we must expand it to get
2479 a truly valid file name. Otherwise, do not expand;
2480 we want to permit links to relative file names. */
2481 if (SREF (filename, 0) == '~')
2482 filename = Fexpand_file_name (filename, Qnil);
2484 if (!NILP (Ffile_directory_p (linkname)))
2485 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2486 else
2487 linkname = Fexpand_file_name (linkname, Qnil);
2489 /* If the file name has special constructs in it,
2490 call the corresponding file handler. */
2491 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2492 if (!NILP (handler))
2493 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2494 linkname, ok_if_already_exists));
2496 /* If the new link name has special constructs in it,
2497 call the corresponding file handler. */
2498 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2499 if (!NILP (handler))
2500 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2501 linkname, ok_if_already_exists));
2503 encoded_filename = ENCODE_FILE (filename);
2504 encoded_linkname = ENCODE_FILE (linkname);
2506 if (NILP (ok_if_already_exists)
2507 || INTEGERP (ok_if_already_exists))
2508 barf_or_query_if_file_exists (linkname, "make it a link",
2509 INTEGERP (ok_if_already_exists), 0, 0);
2510 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname)) < 0)
2512 /* If we didn't complain already, silently delete existing file. */
2513 if (errno == EEXIST)
2515 unlink (SSDATA (encoded_linkname));
2516 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname))
2517 >= 0)
2519 UNGCPRO;
2520 return Qnil;
2523 if (errno == ENOSYS)
2525 UNGCPRO;
2526 xsignal1 (Qfile_error,
2527 build_string ("Symbolic links are not supported"));
2530 report_file_error ("Making symbolic link", list2 (filename, linkname));
2532 UNGCPRO;
2533 return Qnil;
2537 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2538 1, 1, 0,
2539 doc: /* Return t if file FILENAME specifies an absolute file name.
2540 On Unix, this is a name starting with a `/' or a `~'. */)
2541 (Lisp_Object filename)
2543 CHECK_STRING (filename);
2544 return file_name_absolute_p (SSDATA (filename)) ? Qt : Qnil;
2547 /* Return true if FILENAME exists. */
2548 bool
2549 check_existing (const char *filename)
2551 return faccessat (AT_FDCWD, filename, F_OK, AT_EACCESS) == 0;
2554 /* Return true if file FILENAME exists and can be executed. */
2556 static bool
2557 check_executable (char *filename)
2559 return faccessat (AT_FDCWD, filename, X_OK, AT_EACCESS) == 0;
2562 /* Return true if file FILENAME exists and can be accessed
2563 according to AMODE, which should include W_OK.
2564 On failure, return false and set errno. */
2566 static bool
2567 check_writable (const char *filename, int amode)
2569 #ifdef MSDOS
2570 /* FIXME: an faccessat implementation should be added to the
2571 DOS/Windows ports and this #ifdef branch should be removed. */
2572 struct stat st;
2573 if (stat (filename, &st) < 0)
2574 return 0;
2575 errno = EPERM;
2576 return (st.st_mode & S_IWRITE || S_ISDIR (st.st_mode));
2577 #else /* not MSDOS */
2578 bool res = faccessat (AT_FDCWD, filename, amode, AT_EACCESS) == 0;
2579 #ifdef CYGWIN
2580 /* faccessat may have returned failure because Cygwin couldn't
2581 determine the file's UID or GID; if so, we return success. */
2582 if (!res)
2584 int faccessat_errno = errno;
2585 struct stat st;
2586 if (stat (filename, &st) < 0)
2587 return 0;
2588 res = (st.st_uid == -1 || st.st_gid == -1);
2589 errno = faccessat_errno;
2591 #endif /* CYGWIN */
2592 return res;
2593 #endif /* not MSDOS */
2596 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2597 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2598 See also `file-readable-p' and `file-attributes'.
2599 This returns nil for a symlink to a nonexistent file.
2600 Use `file-symlink-p' to test for such links. */)
2601 (Lisp_Object filename)
2603 Lisp_Object absname;
2604 Lisp_Object handler;
2606 CHECK_STRING (filename);
2607 absname = Fexpand_file_name (filename, Qnil);
2609 /* If the file name has special constructs in it,
2610 call the corresponding file handler. */
2611 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2612 if (!NILP (handler))
2613 return call2 (handler, Qfile_exists_p, absname);
2615 absname = ENCODE_FILE (absname);
2617 return (check_existing (SSDATA (absname))) ? Qt : Qnil;
2620 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2621 doc: /* Return t if FILENAME can be executed by you.
2622 For a directory, this means you can access files in that directory. */)
2623 (Lisp_Object filename)
2625 Lisp_Object absname;
2626 Lisp_Object handler;
2628 CHECK_STRING (filename);
2629 absname = Fexpand_file_name (filename, Qnil);
2631 /* If the file name has special constructs in it,
2632 call the corresponding file handler. */
2633 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2634 if (!NILP (handler))
2635 return call2 (handler, Qfile_executable_p, absname);
2637 absname = ENCODE_FILE (absname);
2639 return (check_executable (SSDATA (absname)) ? Qt : Qnil);
2642 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2643 doc: /* Return t if file FILENAME exists and you can read it.
2644 See also `file-exists-p' and `file-attributes'. */)
2645 (Lisp_Object filename)
2647 Lisp_Object absname;
2648 Lisp_Object handler;
2650 CHECK_STRING (filename);
2651 absname = Fexpand_file_name (filename, Qnil);
2653 /* If the file name has special constructs in it,
2654 call the corresponding file handler. */
2655 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2656 if (!NILP (handler))
2657 return call2 (handler, Qfile_readable_p, absname);
2659 absname = ENCODE_FILE (absname);
2660 return (faccessat (AT_FDCWD, SSDATA (absname), R_OK, AT_EACCESS) == 0
2661 ? Qt : Qnil);
2664 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2665 doc: /* Return t if file FILENAME can be written or created by you. */)
2666 (Lisp_Object filename)
2668 Lisp_Object absname, dir, encoded;
2669 Lisp_Object handler;
2671 CHECK_STRING (filename);
2672 absname = Fexpand_file_name (filename, Qnil);
2674 /* If the file name has special constructs in it,
2675 call the corresponding file handler. */
2676 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2677 if (!NILP (handler))
2678 return call2 (handler, Qfile_writable_p, absname);
2680 encoded = ENCODE_FILE (absname);
2681 if (check_writable (SSDATA (encoded), W_OK))
2682 return Qt;
2683 if (errno != ENOENT)
2684 return Qnil;
2686 dir = Ffile_name_directory (absname);
2687 eassert (!NILP (dir));
2688 #ifdef MSDOS
2689 dir = Fdirectory_file_name (dir);
2690 #endif /* MSDOS */
2692 dir = ENCODE_FILE (dir);
2693 #ifdef WINDOWSNT
2694 /* The read-only attribute of the parent directory doesn't affect
2695 whether a file or directory can be created within it. Some day we
2696 should check ACLs though, which do affect this. */
2697 return file_directory_p (SDATA (dir)) ? Qt : Qnil;
2698 #else
2699 return check_writable (SSDATA (dir), W_OK | X_OK) ? Qt : Qnil;
2700 #endif
2703 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2704 doc: /* Access file FILENAME, and get an error if that does not work.
2705 The second argument STRING is used in the error message.
2706 If there is no error, returns nil. */)
2707 (Lisp_Object filename, Lisp_Object string)
2709 Lisp_Object handler, encoded_filename, absname;
2710 int fd;
2712 CHECK_STRING (filename);
2713 absname = Fexpand_file_name (filename, Qnil);
2715 CHECK_STRING (string);
2717 /* If the file name has special constructs in it,
2718 call the corresponding file handler. */
2719 handler = Ffind_file_name_handler (absname, Qaccess_file);
2720 if (!NILP (handler))
2721 return call3 (handler, Qaccess_file, absname, string);
2723 encoded_filename = ENCODE_FILE (absname);
2725 fd = emacs_open (SSDATA (encoded_filename), O_RDONLY, 0);
2726 if (fd < 0)
2727 report_file_error (SSDATA (string), Fcons (filename, Qnil));
2728 emacs_close (fd);
2730 return Qnil;
2733 /* Relative to directory FD, return the symbolic link value of FILENAME.
2734 On failure, return nil. */
2735 Lisp_Object
2736 emacs_readlinkat (int fd, char const *filename)
2738 static struct allocator const emacs_norealloc_allocator =
2739 { xmalloc, NULL, xfree, memory_full };
2740 Lisp_Object val;
2741 char readlink_buf[1024];
2742 char *buf = careadlinkat (fd, filename, readlink_buf, sizeof readlink_buf,
2743 &emacs_norealloc_allocator, readlinkat);
2744 if (!buf)
2745 return Qnil;
2747 val = build_string (buf);
2748 if (buf[0] == '/' && strchr (buf, ':'))
2749 val = concat2 (build_string ("/:"), val);
2750 if (buf != readlink_buf)
2751 xfree (buf);
2752 val = DECODE_FILE (val);
2753 return val;
2756 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2757 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2758 The value is the link target, as a string.
2759 Otherwise it returns nil.
2761 This function returns t when given the name of a symlink that
2762 points to a nonexistent file. */)
2763 (Lisp_Object filename)
2765 Lisp_Object handler;
2767 CHECK_STRING (filename);
2768 filename = Fexpand_file_name (filename, Qnil);
2770 /* If the file name has special constructs in it,
2771 call the corresponding file handler. */
2772 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2773 if (!NILP (handler))
2774 return call2 (handler, Qfile_symlink_p, filename);
2776 filename = ENCODE_FILE (filename);
2778 return emacs_readlinkat (AT_FDCWD, SSDATA (filename));
2781 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2782 doc: /* Return t if FILENAME names an existing directory.
2783 Symbolic links to directories count as directories.
2784 See `file-symlink-p' to distinguish symlinks. */)
2785 (Lisp_Object filename)
2787 Lisp_Object absname;
2788 Lisp_Object handler;
2790 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2792 /* If the file name has special constructs in it,
2793 call the corresponding file handler. */
2794 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2795 if (!NILP (handler))
2796 return call2 (handler, Qfile_directory_p, absname);
2798 absname = ENCODE_FILE (absname);
2800 return file_directory_p (SSDATA (absname)) ? Qt : Qnil;
2803 /* Return true if FILE is a directory or a symlink to a directory. */
2804 bool
2805 file_directory_p (char const *file)
2807 #ifdef WINDOWSNT
2808 /* This is cheaper than 'stat'. */
2809 return faccessat (AT_FDCWD, file, D_OK, AT_EACCESS) == 0;
2810 #else
2811 struct stat st;
2812 return stat (file, &st) == 0 && S_ISDIR (st.st_mode);
2813 #endif
2816 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p,
2817 Sfile_accessible_directory_p, 1, 1, 0,
2818 doc: /* Return t if file FILENAME names a directory you can open.
2819 For the value to be t, FILENAME must specify the name of a directory as a file,
2820 and the directory must allow you to open files in it. In order to use a
2821 directory as a buffer's current directory, this predicate must return true.
2822 A directory name spec may be given instead; then the value is t
2823 if the directory so specified exists and really is a readable and
2824 searchable directory. */)
2825 (Lisp_Object filename)
2827 Lisp_Object absname;
2828 Lisp_Object handler;
2830 CHECK_STRING (filename);
2831 absname = Fexpand_file_name (filename, Qnil);
2833 /* If the file name has special constructs in it,
2834 call the corresponding file handler. */
2835 handler = Ffind_file_name_handler (absname, Qfile_accessible_directory_p);
2836 if (!NILP (handler))
2837 return call2 (handler, Qfile_accessible_directory_p, absname);
2839 absname = ENCODE_FILE (absname);
2840 return file_accessible_directory_p (SSDATA (absname)) ? Qt : Qnil;
2843 /* If FILE is a searchable directory or a symlink to a
2844 searchable directory, return true. Otherwise return
2845 false and set errno to an error number. */
2846 bool
2847 file_accessible_directory_p (char const *file)
2849 #ifdef DOS_NT
2850 /* There's no need to test whether FILE is searchable, as the
2851 searchable/executable bit is invented on DOS_NT platforms. */
2852 return file_directory_p (file);
2853 #else
2854 /* On POSIXish platforms, use just one system call; this avoids a
2855 race and is typically faster. */
2856 ptrdiff_t len = strlen (file);
2857 char const *dir;
2858 bool ok;
2859 int saved_errno;
2860 USE_SAFE_ALLOCA;
2862 /* Normally a file "FOO" is an accessible directory if "FOO/." exists.
2863 There are three exceptions: "", "/", and "//". Leave "" alone,
2864 as it's invalid. Append only "." to the other two exceptions as
2865 "/" and "//" are distinct on some platforms, whereas "/", "///",
2866 "////", etc. are all equivalent. */
2867 if (! len)
2868 dir = file;
2869 else
2871 /* Just check for trailing '/' when deciding whether to append '/'.
2872 That's simpler than testing the two special cases "/" and "//",
2873 and it's a safe optimization here. */
2874 char *buf = SAFE_ALLOCA (len + 3);
2875 memcpy (buf, file, len);
2876 strcpy (buf + len, &"/."[file[len - 1] == '/']);
2877 dir = buf;
2880 ok = check_existing (dir);
2881 saved_errno = errno;
2882 SAFE_FREE ();
2883 errno = saved_errno;
2884 return ok;
2885 #endif
2888 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2889 doc: /* Return t if FILENAME names a regular file.
2890 This is the sort of file that holds an ordinary stream of data bytes.
2891 Symbolic links to regular files count as regular files.
2892 See `file-symlink-p' to distinguish symlinks. */)
2893 (Lisp_Object filename)
2895 register Lisp_Object absname;
2896 struct stat st;
2897 Lisp_Object handler;
2899 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2901 /* If the file name has special constructs in it,
2902 call the corresponding file handler. */
2903 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2904 if (!NILP (handler))
2905 return call2 (handler, Qfile_regular_p, absname);
2907 absname = ENCODE_FILE (absname);
2909 #ifdef WINDOWSNT
2911 int result;
2912 Lisp_Object tem = Vw32_get_true_file_attributes;
2914 /* Tell stat to use expensive method to get accurate info. */
2915 Vw32_get_true_file_attributes = Qt;
2916 result = stat (SDATA (absname), &st);
2917 Vw32_get_true_file_attributes = tem;
2919 if (result < 0)
2920 return Qnil;
2921 return S_ISREG (st.st_mode) ? Qt : Qnil;
2923 #else
2924 if (stat (SSDATA (absname), &st) < 0)
2925 return Qnil;
2926 return S_ISREG (st.st_mode) ? Qt : Qnil;
2927 #endif
2930 DEFUN ("file-selinux-context", Ffile_selinux_context,
2931 Sfile_selinux_context, 1, 1, 0,
2932 doc: /* Return SELinux context of file named FILENAME.
2933 The return value is a list (USER ROLE TYPE RANGE), where the list
2934 elements are strings naming the user, role, type, and range of the
2935 file's SELinux security context.
2937 Return (nil nil nil nil) if the file is nonexistent or inaccessible,
2938 or if SELinux is disabled, or if Emacs lacks SELinux support. */)
2939 (Lisp_Object filename)
2941 Lisp_Object absname;
2942 Lisp_Object values[4];
2943 Lisp_Object handler;
2944 #if HAVE_LIBSELINUX
2945 security_context_t con;
2946 int conlength;
2947 context_t context;
2948 #endif
2950 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2952 /* If the file name has special constructs in it,
2953 call the corresponding file handler. */
2954 handler = Ffind_file_name_handler (absname, Qfile_selinux_context);
2955 if (!NILP (handler))
2956 return call2 (handler, Qfile_selinux_context, absname);
2958 absname = ENCODE_FILE (absname);
2960 values[0] = Qnil;
2961 values[1] = Qnil;
2962 values[2] = Qnil;
2963 values[3] = Qnil;
2964 #if HAVE_LIBSELINUX
2965 if (is_selinux_enabled ())
2967 conlength = lgetfilecon (SSDATA (absname), &con);
2968 if (conlength > 0)
2970 context = context_new (con);
2971 if (context_user_get (context))
2972 values[0] = build_string (context_user_get (context));
2973 if (context_role_get (context))
2974 values[1] = build_string (context_role_get (context));
2975 if (context_type_get (context))
2976 values[2] = build_string (context_type_get (context));
2977 if (context_range_get (context))
2978 values[3] = build_string (context_range_get (context));
2979 context_free (context);
2980 freecon (con);
2983 #endif
2985 return Flist (sizeof (values) / sizeof (values[0]), values);
2988 DEFUN ("set-file-selinux-context", Fset_file_selinux_context,
2989 Sset_file_selinux_context, 2, 2, 0,
2990 doc: /* Set SELinux context of file named FILENAME to CONTEXT.
2991 CONTEXT should be a list (USER ROLE TYPE RANGE), where the list
2992 elements are strings naming the components of a SELinux context.
2994 Value is t if setting of SELinux context was successful, nil otherwise.
2996 This function does nothing and returns nil if SELinux is disabled,
2997 or if Emacs was not compiled with SELinux support. */)
2998 (Lisp_Object filename, Lisp_Object context)
3000 Lisp_Object absname;
3001 Lisp_Object handler;
3002 #if HAVE_LIBSELINUX
3003 Lisp_Object encoded_absname;
3004 Lisp_Object user = CAR_SAFE (context);
3005 Lisp_Object role = CAR_SAFE (CDR_SAFE (context));
3006 Lisp_Object type = CAR_SAFE (CDR_SAFE (CDR_SAFE (context)));
3007 Lisp_Object range = CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context))));
3008 security_context_t con;
3009 bool fail;
3010 int conlength;
3011 context_t parsed_con;
3012 #endif
3014 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3016 /* If the file name has special constructs in it,
3017 call the corresponding file handler. */
3018 handler = Ffind_file_name_handler (absname, Qset_file_selinux_context);
3019 if (!NILP (handler))
3020 return call3 (handler, Qset_file_selinux_context, absname, context);
3022 #if HAVE_LIBSELINUX
3023 if (is_selinux_enabled ())
3025 /* Get current file context. */
3026 encoded_absname = ENCODE_FILE (absname);
3027 conlength = lgetfilecon (SSDATA (encoded_absname), &con);
3028 if (conlength > 0)
3030 parsed_con = context_new (con);
3031 /* Change the parts defined in the parameter.*/
3032 if (STRINGP (user))
3034 if (context_user_set (parsed_con, SSDATA (user)))
3035 error ("Doing context_user_set");
3037 if (STRINGP (role))
3039 if (context_role_set (parsed_con, SSDATA (role)))
3040 error ("Doing context_role_set");
3042 if (STRINGP (type))
3044 if (context_type_set (parsed_con, SSDATA (type)))
3045 error ("Doing context_type_set");
3047 if (STRINGP (range))
3049 if (context_range_set (parsed_con, SSDATA (range)))
3050 error ("Doing context_range_set");
3053 /* Set the modified context back to the file. */
3054 fail = (lsetfilecon (SSDATA (encoded_absname),
3055 context_str (parsed_con))
3056 != 0);
3057 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
3058 if (fail && errno != ENOTSUP)
3059 report_file_error ("Doing lsetfilecon", Fcons (absname, Qnil));
3061 context_free (parsed_con);
3062 freecon (con);
3063 return fail ? Qnil : Qt;
3065 else
3066 report_file_error ("Doing lgetfilecon", Fcons (absname, Qnil));
3068 #endif
3070 return Qnil;
3073 DEFUN ("file-acl", Ffile_acl, Sfile_acl, 1, 1, 0,
3074 doc: /* Return ACL entries of file named FILENAME.
3075 The entries are returned in a format suitable for use in `set-file-acl'
3076 but is otherwise undocumented and subject to change.
3077 Return nil if file does not exist or is not accessible, or if Emacs
3078 was unable to determine the ACL entries. */)
3079 (Lisp_Object filename)
3081 Lisp_Object absname;
3082 Lisp_Object handler;
3083 #ifdef HAVE_ACL_SET_FILE
3084 acl_t acl;
3085 Lisp_Object acl_string;
3086 char *str;
3087 #endif
3089 absname = expand_and_dir_to_file (filename,
3090 BVAR (current_buffer, directory));
3092 /* If the file name has special constructs in it,
3093 call the corresponding file handler. */
3094 handler = Ffind_file_name_handler (absname, Qfile_acl);
3095 if (!NILP (handler))
3096 return call2 (handler, Qfile_acl, absname);
3098 #ifdef HAVE_ACL_SET_FILE
3099 absname = ENCODE_FILE (absname);
3101 acl = acl_get_file (SSDATA (absname), ACL_TYPE_ACCESS);
3102 if (acl == NULL)
3103 return Qnil;
3105 str = acl_to_text (acl, NULL);
3106 if (str == NULL)
3108 acl_free (acl);
3109 return Qnil;
3112 acl_string = build_string (str);
3113 acl_free (str);
3114 acl_free (acl);
3116 return acl_string;
3117 #endif
3119 return Qnil;
3122 DEFUN ("set-file-acl", Fset_file_acl, Sset_file_acl,
3123 2, 2, 0,
3124 doc: /* Set ACL of file named FILENAME to ACL-STRING.
3125 ACL-STRING should contain the textual representation of the ACL
3126 entries in a format suitable for the platform.
3128 Value is t if setting of ACL was successful, nil otherwise.
3130 Setting ACL for local files requires Emacs to be built with ACL
3131 support. */)
3132 (Lisp_Object filename, Lisp_Object acl_string)
3134 Lisp_Object absname;
3135 Lisp_Object handler;
3136 #ifdef HAVE_ACL_SET_FILE
3137 Lisp_Object encoded_absname;
3138 acl_t acl;
3139 bool fail;
3140 #endif
3142 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3144 /* If the file name has special constructs in it,
3145 call the corresponding file handler. */
3146 handler = Ffind_file_name_handler (absname, Qset_file_acl);
3147 if (!NILP (handler))
3148 return call3 (handler, Qset_file_acl, absname, acl_string);
3150 #ifdef HAVE_ACL_SET_FILE
3151 if (STRINGP (acl_string))
3153 acl = acl_from_text (SSDATA (acl_string));
3154 if (acl == NULL)
3156 report_file_error ("Converting ACL", Fcons (absname, Qnil));
3157 return Qnil;
3160 encoded_absname = ENCODE_FILE (absname);
3162 fail = (acl_set_file (SSDATA (encoded_absname), ACL_TYPE_ACCESS,
3163 acl)
3164 != 0);
3165 if (fail && acl_errno_valid (errno))
3166 report_file_error ("Setting ACL", Fcons (absname, Qnil));
3168 acl_free (acl);
3169 return fail ? Qnil : Qt;
3171 #endif
3173 return Qnil;
3176 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
3177 doc: /* Return mode bits of file named FILENAME, as an integer.
3178 Return nil, if file does not exist or is not accessible. */)
3179 (Lisp_Object filename)
3181 Lisp_Object absname;
3182 struct stat st;
3183 Lisp_Object handler;
3185 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
3187 /* If the file name has special constructs in it,
3188 call the corresponding file handler. */
3189 handler = Ffind_file_name_handler (absname, Qfile_modes);
3190 if (!NILP (handler))
3191 return call2 (handler, Qfile_modes, absname);
3193 absname = ENCODE_FILE (absname);
3195 if (stat (SSDATA (absname), &st) < 0)
3196 return Qnil;
3198 return make_number (st.st_mode & 07777);
3201 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
3202 "(let ((file (read-file-name \"File: \"))) \
3203 (list file (read-file-modes nil file)))",
3204 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
3205 Only the 12 low bits of MODE are used.
3207 Interactively, mode bits are read by `read-file-modes', which accepts
3208 symbolic notation, like the `chmod' command from GNU Coreutils. */)
3209 (Lisp_Object filename, Lisp_Object mode)
3211 Lisp_Object absname, encoded_absname;
3212 Lisp_Object handler;
3214 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3215 CHECK_NUMBER (mode);
3217 /* If the file name has special constructs in it,
3218 call the corresponding file handler. */
3219 handler = Ffind_file_name_handler (absname, Qset_file_modes);
3220 if (!NILP (handler))
3221 return call3 (handler, Qset_file_modes, absname, mode);
3223 encoded_absname = ENCODE_FILE (absname);
3225 if (chmod (SSDATA (encoded_absname), XINT (mode) & 07777) < 0)
3226 report_file_error ("Doing chmod", Fcons (absname, Qnil));
3228 return Qnil;
3231 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
3232 doc: /* Set the file permission bits for newly created files.
3233 The argument MODE should be an integer; only the low 9 bits are used.
3234 This setting is inherited by subprocesses. */)
3235 (Lisp_Object mode)
3237 CHECK_NUMBER (mode);
3239 umask ((~ XINT (mode)) & 0777);
3241 return Qnil;
3244 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
3245 doc: /* Return the default file protection for created files.
3246 The value is an integer. */)
3247 (void)
3249 mode_t realmask;
3250 Lisp_Object value;
3252 block_input ();
3253 realmask = umask (0);
3254 umask (realmask);
3255 unblock_input ();
3257 XSETINT (value, (~ realmask) & 0777);
3258 return value;
3262 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
3263 doc: /* Set times of file FILENAME to TIMESTAMP.
3264 Set both access and modification times.
3265 Return t on success, else nil.
3266 Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
3267 `current-time'. */)
3268 (Lisp_Object filename, Lisp_Object timestamp)
3270 Lisp_Object absname, encoded_absname;
3271 Lisp_Object handler;
3272 EMACS_TIME t = lisp_time_argument (timestamp);
3274 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3276 /* If the file name has special constructs in it,
3277 call the corresponding file handler. */
3278 handler = Ffind_file_name_handler (absname, Qset_file_times);
3279 if (!NILP (handler))
3280 return call3 (handler, Qset_file_times, absname, timestamp);
3282 encoded_absname = ENCODE_FILE (absname);
3285 if (set_file_times (-1, SSDATA (encoded_absname), t, t))
3287 #ifdef MSDOS
3288 /* Setting times on a directory always fails. */
3289 if (file_directory_p (SSDATA (encoded_absname)))
3290 return Qnil;
3291 #endif
3292 report_file_error ("Setting file times", Fcons (absname, Qnil));
3296 return Qt;
3299 #ifdef HAVE_SYNC
3300 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
3301 doc: /* Tell Unix to finish all pending disk updates. */)
3302 (void)
3304 sync ();
3305 return Qnil;
3308 #endif /* HAVE_SYNC */
3310 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
3311 doc: /* Return t if file FILE1 is newer than file FILE2.
3312 If FILE1 does not exist, the answer is nil;
3313 otherwise, if FILE2 does not exist, the answer is t. */)
3314 (Lisp_Object file1, Lisp_Object file2)
3316 Lisp_Object absname1, absname2;
3317 struct stat st1, st2;
3318 Lisp_Object handler;
3319 struct gcpro gcpro1, gcpro2;
3321 CHECK_STRING (file1);
3322 CHECK_STRING (file2);
3324 absname1 = Qnil;
3325 GCPRO2 (absname1, file2);
3326 absname1 = expand_and_dir_to_file (file1, BVAR (current_buffer, directory));
3327 absname2 = expand_and_dir_to_file (file2, BVAR (current_buffer, directory));
3328 UNGCPRO;
3330 /* If the file name has special constructs in it,
3331 call the corresponding file handler. */
3332 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3333 if (NILP (handler))
3334 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3335 if (!NILP (handler))
3336 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3338 GCPRO2 (absname1, absname2);
3339 absname1 = ENCODE_FILE (absname1);
3340 absname2 = ENCODE_FILE (absname2);
3341 UNGCPRO;
3343 if (stat (SSDATA (absname1), &st1) < 0)
3344 return Qnil;
3346 if (stat (SSDATA (absname2), &st2) < 0)
3347 return Qt;
3349 return (EMACS_TIME_GT (get_stat_mtime (&st1), get_stat_mtime (&st2))
3350 ? Qt : Qnil);
3353 #ifndef READ_BUF_SIZE
3354 #define READ_BUF_SIZE (64 << 10)
3355 #endif
3356 /* Some buffer offsets are stored in 'int' variables. */
3357 verify (READ_BUF_SIZE <= INT_MAX);
3359 /* This function is called after Lisp functions to decide a coding
3360 system are called, or when they cause an error. Before they are
3361 called, the current buffer is set unibyte and it contains only a
3362 newly inserted text (thus the buffer was empty before the
3363 insertion).
3365 The functions may set markers, overlays, text properties, or even
3366 alter the buffer contents, change the current buffer.
3368 Here, we reset all those changes by:
3369 o set back the current buffer.
3370 o move all markers and overlays to BEG.
3371 o remove all text properties.
3372 o set back the buffer multibyteness. */
3374 static Lisp_Object
3375 decide_coding_unwind (Lisp_Object unwind_data)
3377 Lisp_Object multibyte, undo_list, buffer;
3379 multibyte = XCAR (unwind_data);
3380 unwind_data = XCDR (unwind_data);
3381 undo_list = XCAR (unwind_data);
3382 buffer = XCDR (unwind_data);
3384 set_buffer_internal (XBUFFER (buffer));
3385 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3386 adjust_overlays_for_delete (BEG, Z - BEG);
3387 set_buffer_intervals (current_buffer, NULL);
3388 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3390 /* Now we are safe to change the buffer's multibyteness directly. */
3391 bset_enable_multibyte_characters (current_buffer, multibyte);
3392 bset_undo_list (current_buffer, undo_list);
3394 return Qnil;
3397 /* Read from a non-regular file. STATE is a Lisp_Save_Value
3398 object where slot 0 is the file descriptor, slot 1 specifies
3399 an offset to put the read bytes, and slot 2 is the maximum
3400 amount of bytes to read. Value is the number of bytes read. */
3402 static Lisp_Object
3403 read_non_regular (Lisp_Object state)
3405 int nbytes;
3407 immediate_quit = 1;
3408 QUIT;
3409 nbytes = emacs_read (XSAVE_INTEGER (state, 0),
3410 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3411 + XSAVE_INTEGER (state, 1)),
3412 XSAVE_INTEGER (state, 2));
3413 immediate_quit = 0;
3414 /* Fast recycle this object for the likely next call. */
3415 free_misc (state);
3416 return make_number (nbytes);
3420 /* Condition-case handler used when reading from non-regular files
3421 in insert-file-contents. */
3423 static Lisp_Object
3424 read_non_regular_quit (Lisp_Object ignore)
3426 return Qnil;
3429 /* Return the file offset that VAL represents, checking for type
3430 errors and overflow. */
3431 static off_t
3432 file_offset (Lisp_Object val)
3434 if (RANGED_INTEGERP (0, val, TYPE_MAXIMUM (off_t)))
3435 return XINT (val);
3437 if (FLOATP (val))
3439 double v = XFLOAT_DATA (val);
3440 if (0 <= v
3441 && (sizeof (off_t) < sizeof v
3442 ? v <= TYPE_MAXIMUM (off_t)
3443 : v < TYPE_MAXIMUM (off_t)))
3444 return v;
3447 wrong_type_argument (intern ("file-offset"), val);
3450 /* Return a special time value indicating the error number ERRNUM. */
3451 static EMACS_TIME
3452 time_error_value (int errnum)
3454 int ns = (errnum == ENOENT || errnum == EACCES || errnum == ENOTDIR
3455 ? NONEXISTENT_MODTIME_NSECS
3456 : UNKNOWN_MODTIME_NSECS);
3457 return make_emacs_time (0, ns);
3460 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3461 1, 5, 0,
3462 doc: /* Insert contents of file FILENAME after point.
3463 Returns list of absolute file name and number of characters inserted.
3464 If second argument VISIT is non-nil, the buffer's visited filename and
3465 last save file modtime are set, and it is marked unmodified. If
3466 visiting and the file does not exist, visiting is completed before the
3467 error is signaled.
3469 The optional third and fourth arguments BEG and END specify what portion
3470 of the file to insert. These arguments count bytes in the file, not
3471 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3473 If optional fifth argument REPLACE is non-nil, replace the current
3474 buffer contents (in the accessible portion) with the file contents.
3475 This is better than simply deleting and inserting the whole thing
3476 because (1) it preserves some marker positions and (2) it puts less data
3477 in the undo list. When REPLACE is non-nil, the second return value is
3478 the number of characters that replace previous buffer contents.
3480 This function does code conversion according to the value of
3481 `coding-system-for-read' or `file-coding-system-alist', and sets the
3482 variable `last-coding-system-used' to the coding system actually used.
3484 In addition, this function decodes the inserted text from known formats
3485 by calling `format-decode', which see. */)
3486 (Lisp_Object filename, Lisp_Object visit, Lisp_Object beg, Lisp_Object end, Lisp_Object replace)
3488 struct stat st;
3489 EMACS_TIME mtime;
3490 int fd;
3491 ptrdiff_t inserted = 0;
3492 ptrdiff_t how_much;
3493 off_t beg_offset, end_offset;
3494 int unprocessed;
3495 ptrdiff_t count = SPECPDL_INDEX ();
3496 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3497 Lisp_Object handler, val, insval, orig_filename, old_undo;
3498 Lisp_Object p;
3499 ptrdiff_t total = 0;
3500 bool not_regular = 0;
3501 int save_errno = 0;
3502 char read_buf[READ_BUF_SIZE];
3503 struct coding_system coding;
3504 bool replace_handled = 0;
3505 bool set_coding_system = 0;
3506 Lisp_Object coding_system;
3507 bool read_quit = 0;
3508 /* If the undo log only contains the insertion, there's no point
3509 keeping it. It's typically when we first fill a file-buffer. */
3510 bool empty_undo_list_p
3511 = (!NILP (visit) && NILP (BVAR (current_buffer, undo_list))
3512 && BEG == Z);
3513 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3514 bool we_locked_file = 0;
3515 bool deferred_remove_unwind_protect = 0;
3517 if (current_buffer->base_buffer && ! NILP (visit))
3518 error ("Cannot do file visiting in an indirect buffer");
3520 if (!NILP (BVAR (current_buffer, read_only)))
3521 Fbarf_if_buffer_read_only ();
3523 val = Qnil;
3524 p = Qnil;
3525 orig_filename = Qnil;
3526 old_undo = Qnil;
3528 GCPRO5 (filename, val, p, orig_filename, old_undo);
3530 CHECK_STRING (filename);
3531 filename = Fexpand_file_name (filename, Qnil);
3533 /* The value Qnil means that the coding system is not yet
3534 decided. */
3535 coding_system = Qnil;
3537 /* If the file name has special constructs in it,
3538 call the corresponding file handler. */
3539 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3540 if (!NILP (handler))
3542 val = call6 (handler, Qinsert_file_contents, filename,
3543 visit, beg, end, replace);
3544 if (CONSP (val) && CONSP (XCDR (val))
3545 && RANGED_INTEGERP (0, XCAR (XCDR (val)), ZV - PT))
3546 inserted = XINT (XCAR (XCDR (val)));
3547 goto handled;
3550 orig_filename = filename;
3551 filename = ENCODE_FILE (filename);
3553 fd = emacs_open (SSDATA (filename), O_RDONLY, 0);
3554 if (fd < 0)
3556 save_errno = errno;
3557 if (NILP (visit))
3558 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3559 mtime = time_error_value (save_errno);
3560 st.st_size = -1;
3561 if (!NILP (Vcoding_system_for_read))
3562 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3563 goto notfound;
3566 /* Replacement should preserve point as it preserves markers. */
3567 if (!NILP (replace))
3568 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3570 record_unwind_protect (close_file_unwind, make_number (fd));
3572 if (fstat (fd, &st) != 0)
3573 report_file_error ("Input file status", Fcons (orig_filename, Qnil));
3574 mtime = get_stat_mtime (&st);
3576 /* This code will need to be changed in order to work on named
3577 pipes, and it's probably just not worth it. So we should at
3578 least signal an error. */
3579 if (!S_ISREG (st.st_mode))
3581 not_regular = 1;
3583 if (! NILP (visit))
3584 goto notfound;
3586 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3587 xsignal2 (Qfile_error,
3588 build_string ("not a regular file"), orig_filename);
3591 if (!NILP (visit))
3593 if (!NILP (beg) || !NILP (end))
3594 error ("Attempt to visit less than an entire file");
3595 if (BEG < Z && NILP (replace))
3596 error ("Cannot do file visiting in a non-empty buffer");
3599 if (!NILP (beg))
3600 beg_offset = file_offset (beg);
3601 else
3602 beg_offset = 0;
3604 if (!NILP (end))
3605 end_offset = file_offset (end);
3606 else
3608 if (not_regular)
3609 end_offset = TYPE_MAXIMUM (off_t);
3610 else
3612 end_offset = st.st_size;
3614 /* A negative size can happen on a platform that allows file
3615 sizes greater than the maximum off_t value. */
3616 if (end_offset < 0)
3617 buffer_overflow ();
3619 /* The file size returned from stat may be zero, but data
3620 may be readable nonetheless, for example when this is a
3621 file in the /proc filesystem. */
3622 if (end_offset == 0)
3623 end_offset = READ_BUF_SIZE;
3627 /* Check now whether the buffer will become too large,
3628 in the likely case where the file's length is not changing.
3629 This saves a lot of needless work before a buffer overflow. */
3630 if (! not_regular)
3632 /* The likely offset where we will stop reading. We could read
3633 more (or less), if the file grows (or shrinks) as we read it. */
3634 off_t likely_end = min (end_offset, st.st_size);
3636 if (beg_offset < likely_end)
3638 ptrdiff_t buf_bytes
3639 = Z_BYTE - (!NILP (replace) ? ZV_BYTE - BEGV_BYTE : 0);
3640 ptrdiff_t buf_growth_max = BUF_BYTES_MAX - buf_bytes;
3641 off_t likely_growth = likely_end - beg_offset;
3642 if (buf_growth_max < likely_growth)
3643 buffer_overflow ();
3647 /* Prevent redisplay optimizations. */
3648 current_buffer->clip_changed = 1;
3650 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3652 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3653 setup_coding_system (coding_system, &coding);
3654 /* Ensure we set Vlast_coding_system_used. */
3655 set_coding_system = 1;
3657 else if (BEG < Z)
3659 /* Decide the coding system to use for reading the file now
3660 because we can't use an optimized method for handling
3661 `coding:' tag if the current buffer is not empty. */
3662 if (!NILP (Vcoding_system_for_read))
3663 coding_system = Vcoding_system_for_read;
3664 else
3666 /* Don't try looking inside a file for a coding system
3667 specification if it is not seekable. */
3668 if (! not_regular && ! NILP (Vset_auto_coding_function))
3670 /* Find a coding system specified in the heading two
3671 lines or in the tailing several lines of the file.
3672 We assume that the 1K-byte and 3K-byte for heading
3673 and tailing respectively are sufficient for this
3674 purpose. */
3675 int nread;
3677 if (st.st_size <= (1024 * 4))
3678 nread = emacs_read (fd, read_buf, 1024 * 4);
3679 else
3681 nread = emacs_read (fd, read_buf, 1024);
3682 if (nread == 1024)
3684 int ntail;
3685 if (lseek (fd, - (1024 * 3), SEEK_END) < 0)
3686 report_file_error ("Setting file position",
3687 Fcons (orig_filename, Qnil));
3688 ntail = emacs_read (fd, read_buf + nread, 1024 * 3);
3689 nread = ntail < 0 ? ntail : nread + ntail;
3693 if (nread < 0)
3694 error ("IO error reading %s: %s",
3695 SDATA (orig_filename), emacs_strerror (errno));
3696 else if (nread > 0)
3698 struct buffer *prev = current_buffer;
3699 Lisp_Object workbuf;
3700 struct buffer *buf;
3702 record_unwind_current_buffer ();
3704 workbuf = Fget_buffer_create (build_string (" *code-converting-work*"));
3705 buf = XBUFFER (workbuf);
3707 delete_all_overlays (buf);
3708 bset_directory (buf, BVAR (current_buffer, directory));
3709 bset_read_only (buf, Qnil);
3710 bset_filename (buf, Qnil);
3711 bset_undo_list (buf, Qt);
3712 eassert (buf->overlays_before == NULL);
3713 eassert (buf->overlays_after == NULL);
3715 set_buffer_internal (buf);
3716 Ferase_buffer ();
3717 bset_enable_multibyte_characters (buf, Qnil);
3719 insert_1_both ((char *) read_buf, nread, nread, 0, 0, 0);
3720 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3721 coding_system = call2 (Vset_auto_coding_function,
3722 filename, make_number (nread));
3723 set_buffer_internal (prev);
3725 /* Discard the unwind protect for recovering the
3726 current buffer. */
3727 specpdl_ptr--;
3729 /* Rewind the file for the actual read done later. */
3730 if (lseek (fd, 0, SEEK_SET) < 0)
3731 report_file_error ("Setting file position",
3732 Fcons (orig_filename, Qnil));
3736 if (NILP (coding_system))
3738 /* If we have not yet decided a coding system, check
3739 file-coding-system-alist. */
3740 Lisp_Object args[6];
3742 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3743 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3744 coding_system = Ffind_operation_coding_system (6, args);
3745 if (CONSP (coding_system))
3746 coding_system = XCAR (coding_system);
3750 if (NILP (coding_system))
3751 coding_system = Qundecided;
3752 else
3753 CHECK_CODING_SYSTEM (coding_system);
3755 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3756 /* We must suppress all character code conversion except for
3757 end-of-line conversion. */
3758 coding_system = raw_text_coding_system (coding_system);
3760 setup_coding_system (coding_system, &coding);
3761 /* Ensure we set Vlast_coding_system_used. */
3762 set_coding_system = 1;
3765 /* If requested, replace the accessible part of the buffer
3766 with the file contents. Avoid replacing text at the
3767 beginning or end of the buffer that matches the file contents;
3768 that preserves markers pointing to the unchanged parts.
3770 Here we implement this feature in an optimized way
3771 for the case where code conversion is NOT needed.
3772 The following if-statement handles the case of conversion
3773 in a less optimal way.
3775 If the code conversion is "automatic" then we try using this
3776 method and hope for the best.
3777 But if we discover the need for conversion, we give up on this method
3778 and let the following if-statement handle the replace job. */
3779 if (!NILP (replace)
3780 && BEGV < ZV
3781 && (NILP (coding_system)
3782 || ! CODING_REQUIRE_DECODING (&coding)))
3784 /* same_at_start and same_at_end count bytes,
3785 because file access counts bytes
3786 and BEG and END count bytes. */
3787 ptrdiff_t same_at_start = BEGV_BYTE;
3788 ptrdiff_t same_at_end = ZV_BYTE;
3789 ptrdiff_t overlap;
3790 /* There is still a possibility we will find the need to do code
3791 conversion. If that happens, set this variable to
3792 give up on handling REPLACE in the optimized way. */
3793 bool giveup_match_end = 0;
3795 if (beg_offset != 0)
3797 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3798 report_file_error ("Setting file position",
3799 Fcons (orig_filename, Qnil));
3802 immediate_quit = 1;
3803 QUIT;
3804 /* Count how many chars at the start of the file
3805 match the text at the beginning of the buffer. */
3806 while (1)
3808 int nread, bufpos;
3810 nread = emacs_read (fd, read_buf, sizeof read_buf);
3811 if (nread < 0)
3812 error ("IO error reading %s: %s",
3813 SSDATA (orig_filename), emacs_strerror (errno));
3814 else if (nread == 0)
3815 break;
3817 if (CODING_REQUIRE_DETECTION (&coding))
3819 coding_system = detect_coding_system ((unsigned char *) read_buf,
3820 nread, nread, 1, 0,
3821 coding_system);
3822 setup_coding_system (coding_system, &coding);
3825 if (CODING_REQUIRE_DECODING (&coding))
3826 /* We found that the file should be decoded somehow.
3827 Let's give up here. */
3829 giveup_match_end = 1;
3830 break;
3833 bufpos = 0;
3834 while (bufpos < nread && same_at_start < ZV_BYTE
3835 && FETCH_BYTE (same_at_start) == read_buf[bufpos])
3836 same_at_start++, bufpos++;
3837 /* If we found a discrepancy, stop the scan.
3838 Otherwise loop around and scan the next bufferful. */
3839 if (bufpos != nread)
3840 break;
3842 immediate_quit = 0;
3843 /* If the file matches the buffer completely,
3844 there's no need to replace anything. */
3845 if (same_at_start - BEGV_BYTE == end_offset - beg_offset)
3847 emacs_close (fd);
3848 specpdl_ptr--;
3849 /* Truncate the buffer to the size of the file. */
3850 del_range_1 (same_at_start, same_at_end, 0, 0);
3851 goto handled;
3853 immediate_quit = 1;
3854 QUIT;
3855 /* Count how many chars at the end of the file
3856 match the text at the end of the buffer. But, if we have
3857 already found that decoding is necessary, don't waste time. */
3858 while (!giveup_match_end)
3860 int total_read, nread, bufpos, trial;
3861 off_t curpos;
3863 /* At what file position are we now scanning? */
3864 curpos = end_offset - (ZV_BYTE - same_at_end);
3865 /* If the entire file matches the buffer tail, stop the scan. */
3866 if (curpos == 0)
3867 break;
3868 /* How much can we scan in the next step? */
3869 trial = min (curpos, sizeof read_buf);
3870 if (lseek (fd, curpos - trial, SEEK_SET) < 0)
3871 report_file_error ("Setting file position",
3872 Fcons (orig_filename, Qnil));
3874 total_read = nread = 0;
3875 while (total_read < trial)
3877 nread = emacs_read (fd, read_buf + total_read, trial - total_read);
3878 if (nread < 0)
3879 error ("IO error reading %s: %s",
3880 SDATA (orig_filename), emacs_strerror (errno));
3881 else if (nread == 0)
3882 break;
3883 total_read += nread;
3886 /* Scan this bufferful from the end, comparing with
3887 the Emacs buffer. */
3888 bufpos = total_read;
3890 /* Compare with same_at_start to avoid counting some buffer text
3891 as matching both at the file's beginning and at the end. */
3892 while (bufpos > 0 && same_at_end > same_at_start
3893 && FETCH_BYTE (same_at_end - 1) == read_buf[bufpos - 1])
3894 same_at_end--, bufpos--;
3896 /* If we found a discrepancy, stop the scan.
3897 Otherwise loop around and scan the preceding bufferful. */
3898 if (bufpos != 0)
3900 /* If this discrepancy is because of code conversion,
3901 we cannot use this method; giveup and try the other. */
3902 if (same_at_end > same_at_start
3903 && FETCH_BYTE (same_at_end - 1) >= 0200
3904 && ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3905 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3906 giveup_match_end = 1;
3907 break;
3910 if (nread == 0)
3911 break;
3913 immediate_quit = 0;
3915 if (! giveup_match_end)
3917 ptrdiff_t temp;
3919 /* We win! We can handle REPLACE the optimized way. */
3921 /* Extend the start of non-matching text area to multibyte
3922 character boundary. */
3923 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3924 while (same_at_start > BEGV_BYTE
3925 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3926 same_at_start--;
3928 /* Extend the end of non-matching text area to multibyte
3929 character boundary. */
3930 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3931 while (same_at_end < ZV_BYTE
3932 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3933 same_at_end++;
3935 /* Don't try to reuse the same piece of text twice. */
3936 overlap = (same_at_start - BEGV_BYTE
3937 - (same_at_end
3938 + (! NILP (end) ? end_offset : st.st_size) - ZV_BYTE));
3939 if (overlap > 0)
3940 same_at_end += overlap;
3942 /* Arrange to read only the nonmatching middle part of the file. */
3943 beg_offset += same_at_start - BEGV_BYTE;
3944 end_offset -= ZV_BYTE - same_at_end;
3946 del_range_byte (same_at_start, same_at_end, 0);
3947 /* Insert from the file at the proper position. */
3948 temp = BYTE_TO_CHAR (same_at_start);
3949 SET_PT_BOTH (temp, same_at_start);
3951 /* If display currently starts at beginning of line,
3952 keep it that way. */
3953 if (XBUFFER (XWINDOW (selected_window)->contents) == current_buffer)
3954 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
3956 replace_handled = 1;
3960 /* If requested, replace the accessible part of the buffer
3961 with the file contents. Avoid replacing text at the
3962 beginning or end of the buffer that matches the file contents;
3963 that preserves markers pointing to the unchanged parts.
3965 Here we implement this feature for the case where code conversion
3966 is needed, in a simple way that needs a lot of memory.
3967 The preceding if-statement handles the case of no conversion
3968 in a more optimized way. */
3969 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3971 ptrdiff_t same_at_start = BEGV_BYTE;
3972 ptrdiff_t same_at_end = ZV_BYTE;
3973 ptrdiff_t same_at_start_charpos;
3974 ptrdiff_t inserted_chars;
3975 ptrdiff_t overlap;
3976 ptrdiff_t bufpos;
3977 unsigned char *decoded;
3978 ptrdiff_t temp;
3979 ptrdiff_t this = 0;
3980 ptrdiff_t this_count = SPECPDL_INDEX ();
3981 bool multibyte
3982 = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3983 Lisp_Object conversion_buffer;
3984 struct gcpro gcpro1;
3986 conversion_buffer = code_conversion_save (1, multibyte);
3988 /* First read the whole file, performing code conversion into
3989 CONVERSION_BUFFER. */
3991 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3992 report_file_error ("Setting file position",
3993 Fcons (orig_filename, Qnil));
3995 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3996 unprocessed = 0; /* Bytes not processed in previous loop. */
3998 GCPRO1 (conversion_buffer);
3999 while (1)
4001 /* Read at most READ_BUF_SIZE bytes at a time, to allow
4002 quitting while reading a huge file. */
4004 /* Allow quitting out of the actual I/O. */
4005 immediate_quit = 1;
4006 QUIT;
4007 this = emacs_read (fd, read_buf + unprocessed,
4008 READ_BUF_SIZE - unprocessed);
4009 immediate_quit = 0;
4011 if (this <= 0)
4012 break;
4014 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
4015 BUF_Z (XBUFFER (conversion_buffer)));
4016 decode_coding_c_string (&coding, (unsigned char *) read_buf,
4017 unprocessed + this, conversion_buffer);
4018 unprocessed = coding.carryover_bytes;
4019 if (coding.carryover_bytes > 0)
4020 memcpy (read_buf, coding.carryover, unprocessed);
4022 UNGCPRO;
4023 emacs_close (fd);
4025 /* We should remove the unwind_protect calling
4026 close_file_unwind, but other stuff has been added the stack,
4027 so defer the removal till we reach the `handled' label. */
4028 deferred_remove_unwind_protect = 1;
4030 if (this < 0)
4031 error ("IO error reading %s: %s",
4032 SDATA (orig_filename), emacs_strerror (errno));
4034 if (unprocessed > 0)
4036 coding.mode |= CODING_MODE_LAST_BLOCK;
4037 decode_coding_c_string (&coding, (unsigned char *) read_buf,
4038 unprocessed, conversion_buffer);
4039 coding.mode &= ~CODING_MODE_LAST_BLOCK;
4042 coding_system = CODING_ID_NAME (coding.id);
4043 set_coding_system = 1;
4044 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
4045 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
4046 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
4048 /* Compare the beginning of the converted string with the buffer
4049 text. */
4051 bufpos = 0;
4052 while (bufpos < inserted && same_at_start < same_at_end
4053 && FETCH_BYTE (same_at_start) == decoded[bufpos])
4054 same_at_start++, bufpos++;
4056 /* If the file matches the head of buffer completely,
4057 there's no need to replace anything. */
4059 if (bufpos == inserted)
4061 /* Truncate the buffer to the size of the file. */
4062 if (same_at_start != same_at_end)
4063 del_range_byte (same_at_start, same_at_end, 0);
4064 inserted = 0;
4066 unbind_to (this_count, Qnil);
4067 goto handled;
4070 /* Extend the start of non-matching text area to the previous
4071 multibyte character boundary. */
4072 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
4073 while (same_at_start > BEGV_BYTE
4074 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
4075 same_at_start--;
4077 /* Scan this bufferful from the end, comparing with
4078 the Emacs buffer. */
4079 bufpos = inserted;
4081 /* Compare with same_at_start to avoid counting some buffer text
4082 as matching both at the file's beginning and at the end. */
4083 while (bufpos > 0 && same_at_end > same_at_start
4084 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
4085 same_at_end--, bufpos--;
4087 /* Extend the end of non-matching text area to the next
4088 multibyte character boundary. */
4089 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
4090 while (same_at_end < ZV_BYTE
4091 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
4092 same_at_end++;
4094 /* Don't try to reuse the same piece of text twice. */
4095 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
4096 if (overlap > 0)
4097 same_at_end += overlap;
4099 /* If display currently starts at beginning of line,
4100 keep it that way. */
4101 if (XBUFFER (XWINDOW (selected_window)->contents) == current_buffer)
4102 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
4104 /* Replace the chars that we need to replace,
4105 and update INSERTED to equal the number of bytes
4106 we are taking from the decoded string. */
4107 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
4109 if (same_at_end != same_at_start)
4111 del_range_byte (same_at_start, same_at_end, 0);
4112 temp = GPT;
4113 eassert (same_at_start == GPT_BYTE);
4114 same_at_start = GPT_BYTE;
4116 else
4118 temp = BYTE_TO_CHAR (same_at_start);
4120 /* Insert from the file at the proper position. */
4121 SET_PT_BOTH (temp, same_at_start);
4122 same_at_start_charpos
4123 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
4124 same_at_start - BEGV_BYTE
4125 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
4126 eassert (same_at_start_charpos == temp - (BEGV - BEG));
4127 inserted_chars
4128 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
4129 same_at_start + inserted - BEGV_BYTE
4130 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
4131 - same_at_start_charpos);
4132 /* This binding is to avoid ask-user-about-supersession-threat
4133 being called in insert_from_buffer (via in
4134 prepare_to_modify_buffer). */
4135 specbind (intern ("buffer-file-name"), Qnil);
4136 insert_from_buffer (XBUFFER (conversion_buffer),
4137 same_at_start_charpos, inserted_chars, 0);
4138 /* Set `inserted' to the number of inserted characters. */
4139 inserted = PT - temp;
4140 /* Set point before the inserted characters. */
4141 SET_PT_BOTH (temp, same_at_start);
4143 unbind_to (this_count, Qnil);
4145 goto handled;
4148 if (! not_regular)
4149 total = end_offset - beg_offset;
4150 else
4151 /* For a special file, all we can do is guess. */
4152 total = READ_BUF_SIZE;
4154 if (NILP (visit) && total > 0)
4156 #ifdef CLASH_DETECTION
4157 if (!NILP (BVAR (current_buffer, file_truename))
4158 /* Make binding buffer-file-name to nil effective. */
4159 && !NILP (BVAR (current_buffer, filename))
4160 && SAVE_MODIFF >= MODIFF)
4161 we_locked_file = 1;
4162 #endif /* CLASH_DETECTION */
4163 prepare_to_modify_buffer (GPT, GPT, NULL);
4166 move_gap_both (PT, PT_BYTE);
4167 if (GAP_SIZE < total)
4168 make_gap (total - GAP_SIZE);
4170 if (beg_offset != 0 || !NILP (replace))
4172 if (lseek (fd, beg_offset, SEEK_SET) < 0)
4173 report_file_error ("Setting file position",
4174 Fcons (orig_filename, Qnil));
4177 /* In the following loop, HOW_MUCH contains the total bytes read so
4178 far for a regular file, and not changed for a special file. But,
4179 before exiting the loop, it is set to a negative value if I/O
4180 error occurs. */
4181 how_much = 0;
4183 /* Total bytes inserted. */
4184 inserted = 0;
4186 /* Here, we don't do code conversion in the loop. It is done by
4187 decode_coding_gap after all data are read into the buffer. */
4189 ptrdiff_t gap_size = GAP_SIZE;
4191 while (how_much < total)
4193 /* try is reserved in some compilers (Microsoft C) */
4194 ptrdiff_t trytry = min (total - how_much, READ_BUF_SIZE);
4195 ptrdiff_t this;
4197 if (not_regular)
4199 Lisp_Object nbytes;
4201 /* Maybe make more room. */
4202 if (gap_size < trytry)
4204 make_gap (trytry - gap_size);
4205 gap_size = GAP_SIZE - inserted;
4208 /* Read from the file, capturing `quit'. When an
4209 error occurs, end the loop, and arrange for a quit
4210 to be signaled after decoding the text we read. */
4211 nbytes = internal_condition_case_1
4212 (read_non_regular,
4213 make_save_value (SAVE_TYPE_INT_INT_INT, (ptrdiff_t) fd,
4214 inserted, trytry),
4215 Qerror, read_non_regular_quit);
4217 if (NILP (nbytes))
4219 read_quit = 1;
4220 break;
4223 this = XINT (nbytes);
4225 else
4227 /* Allow quitting out of the actual I/O. We don't make text
4228 part of the buffer until all the reading is done, so a C-g
4229 here doesn't do any harm. */
4230 immediate_quit = 1;
4231 QUIT;
4232 this = emacs_read (fd,
4233 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
4234 + inserted),
4235 trytry);
4236 immediate_quit = 0;
4239 if (this <= 0)
4241 how_much = this;
4242 break;
4245 gap_size -= this;
4247 /* For a regular file, where TOTAL is the real size,
4248 count HOW_MUCH to compare with it.
4249 For a special file, where TOTAL is just a buffer size,
4250 so don't bother counting in HOW_MUCH.
4251 (INSERTED is where we count the number of characters inserted.) */
4252 if (! not_regular)
4253 how_much += this;
4254 inserted += this;
4258 /* Now we have either read all the file data into the gap,
4259 or stop reading on I/O error or quit. If nothing was
4260 read, undo marking the buffer modified. */
4262 if (inserted == 0)
4264 #ifdef CLASH_DETECTION
4265 if (we_locked_file)
4266 unlock_file (BVAR (current_buffer, file_truename));
4267 #endif
4268 Vdeactivate_mark = old_Vdeactivate_mark;
4270 else
4271 Vdeactivate_mark = Qt;
4273 emacs_close (fd);
4275 /* Discard the unwind protect for closing the file. */
4276 specpdl_ptr--;
4278 if (how_much < 0)
4279 error ("IO error reading %s: %s",
4280 SDATA (orig_filename), emacs_strerror (errno));
4282 /* Make the text read part of the buffer. */
4283 GAP_SIZE -= inserted;
4284 GPT += inserted;
4285 GPT_BYTE += inserted;
4286 ZV += inserted;
4287 ZV_BYTE += inserted;
4288 Z += inserted;
4289 Z_BYTE += inserted;
4291 if (GAP_SIZE > 0)
4292 /* Put an anchor to ensure multi-byte form ends at gap. */
4293 *GPT_ADDR = 0;
4295 notfound:
4297 if (NILP (coding_system))
4299 /* The coding system is not yet decided. Decide it by an
4300 optimized method for handling `coding:' tag.
4302 Note that we can get here only if the buffer was empty
4303 before the insertion. */
4305 if (!NILP (Vcoding_system_for_read))
4306 coding_system = Vcoding_system_for_read;
4307 else
4309 /* Since we are sure that the current buffer was empty
4310 before the insertion, we can toggle
4311 enable-multibyte-characters directly here without taking
4312 care of marker adjustment. By this way, we can run Lisp
4313 program safely before decoding the inserted text. */
4314 Lisp_Object unwind_data;
4315 ptrdiff_t count1 = SPECPDL_INDEX ();
4317 unwind_data = Fcons (BVAR (current_buffer, enable_multibyte_characters),
4318 Fcons (BVAR (current_buffer, undo_list),
4319 Fcurrent_buffer ()));
4320 bset_enable_multibyte_characters (current_buffer, Qnil);
4321 bset_undo_list (current_buffer, Qt);
4322 record_unwind_protect (decide_coding_unwind, unwind_data);
4324 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4326 coding_system = call2 (Vset_auto_coding_function,
4327 filename, make_number (inserted));
4330 if (NILP (coding_system))
4332 /* If the coding system is not yet decided, check
4333 file-coding-system-alist. */
4334 Lisp_Object args[6];
4336 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4337 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4338 coding_system = Ffind_operation_coding_system (6, args);
4339 if (CONSP (coding_system))
4340 coding_system = XCAR (coding_system);
4342 unbind_to (count1, Qnil);
4343 inserted = Z_BYTE - BEG_BYTE;
4346 if (NILP (coding_system))
4347 coding_system = Qundecided;
4348 else
4349 CHECK_CODING_SYSTEM (coding_system);
4351 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4352 /* We must suppress all character code conversion except for
4353 end-of-line conversion. */
4354 coding_system = raw_text_coding_system (coding_system);
4355 setup_coding_system (coding_system, &coding);
4356 /* Ensure we set Vlast_coding_system_used. */
4357 set_coding_system = 1;
4360 if (!NILP (visit))
4362 /* When we visit a file by raw-text, we change the buffer to
4363 unibyte. */
4364 if (CODING_FOR_UNIBYTE (&coding)
4365 /* Can't do this if part of the buffer might be preserved. */
4366 && NILP (replace))
4367 /* Visiting a file with these coding system makes the buffer
4368 unibyte. */
4369 bset_enable_multibyte_characters (current_buffer, Qnil);
4372 coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
4373 if (CODING_MAY_REQUIRE_DECODING (&coding)
4374 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4376 move_gap_both (PT, PT_BYTE);
4377 GAP_SIZE += inserted;
4378 ZV_BYTE -= inserted;
4379 Z_BYTE -= inserted;
4380 ZV -= inserted;
4381 Z -= inserted;
4382 decode_coding_gap (&coding, inserted, inserted);
4383 inserted = coding.produced_char;
4384 coding_system = CODING_ID_NAME (coding.id);
4386 else if (inserted > 0)
4387 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4388 inserted);
4390 /* Call after-change hooks for the inserted text, aside from the case
4391 of normal visiting (not with REPLACE), which is done in a new buffer
4392 "before" the buffer is changed. */
4393 if (inserted > 0 && total > 0
4394 && (NILP (visit) || !NILP (replace)))
4396 signal_after_change (PT, 0, inserted);
4397 update_compositions (PT, PT, CHECK_BORDER);
4400 /* Now INSERTED is measured in characters. */
4402 handled:
4404 if (deferred_remove_unwind_protect)
4405 /* If requested above, discard the unwind protect for closing the
4406 file. */
4407 specpdl_ptr--;
4409 if (!NILP (visit))
4411 if (empty_undo_list_p)
4412 bset_undo_list (current_buffer, Qnil);
4414 if (NILP (handler))
4416 current_buffer->modtime = mtime;
4417 current_buffer->modtime_size = st.st_size;
4418 bset_filename (current_buffer, orig_filename);
4421 SAVE_MODIFF = MODIFF;
4422 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4423 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4424 #ifdef CLASH_DETECTION
4425 if (NILP (handler))
4427 if (!NILP (BVAR (current_buffer, file_truename)))
4428 unlock_file (BVAR (current_buffer, file_truename));
4429 unlock_file (filename);
4431 #endif /* CLASH_DETECTION */
4432 if (not_regular)
4433 xsignal2 (Qfile_error,
4434 build_string ("not a regular file"), orig_filename);
4437 if (set_coding_system)
4438 Vlast_coding_system_used = coding_system;
4440 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4442 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4443 visit);
4444 if (! NILP (insval))
4446 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4447 wrong_type_argument (intern ("inserted-chars"), insval);
4448 inserted = XFASTINT (insval);
4452 /* Decode file format. */
4453 if (inserted > 0)
4455 /* Don't run point motion or modification hooks when decoding. */
4456 ptrdiff_t count1 = SPECPDL_INDEX ();
4457 ptrdiff_t old_inserted = inserted;
4458 specbind (Qinhibit_point_motion_hooks, Qt);
4459 specbind (Qinhibit_modification_hooks, Qt);
4461 /* Save old undo list and don't record undo for decoding. */
4462 old_undo = BVAR (current_buffer, undo_list);
4463 bset_undo_list (current_buffer, Qt);
4465 if (NILP (replace))
4467 insval = call3 (Qformat_decode,
4468 Qnil, make_number (inserted), visit);
4469 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4470 wrong_type_argument (intern ("inserted-chars"), insval);
4471 inserted = XFASTINT (insval);
4473 else
4475 /* If REPLACE is non-nil and we succeeded in not replacing the
4476 beginning or end of the buffer text with the file's contents,
4477 call format-decode with `point' positioned at the beginning
4478 of the buffer and `inserted' equaling the number of
4479 characters in the buffer. Otherwise, format-decode might
4480 fail to correctly analyze the beginning or end of the buffer.
4481 Hence we temporarily save `point' and `inserted' here and
4482 restore `point' iff format-decode did not insert or delete
4483 any text. Otherwise we leave `point' at point-min. */
4484 ptrdiff_t opoint = PT;
4485 ptrdiff_t opoint_byte = PT_BYTE;
4486 ptrdiff_t oinserted = ZV - BEGV;
4487 EMACS_INT ochars_modiff = CHARS_MODIFF;
4489 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4490 insval = call3 (Qformat_decode,
4491 Qnil, make_number (oinserted), visit);
4492 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4493 wrong_type_argument (intern ("inserted-chars"), insval);
4494 if (ochars_modiff == CHARS_MODIFF)
4495 /* format_decode didn't modify buffer's characters => move
4496 point back to position before inserted text and leave
4497 value of inserted alone. */
4498 SET_PT_BOTH (opoint, opoint_byte);
4499 else
4500 /* format_decode modified buffer's characters => consider
4501 entire buffer changed and leave point at point-min. */
4502 inserted = XFASTINT (insval);
4505 /* For consistency with format-decode call these now iff inserted > 0
4506 (martin 2007-06-28). */
4507 p = Vafter_insert_file_functions;
4508 while (CONSP (p))
4510 if (NILP (replace))
4512 insval = call1 (XCAR (p), make_number (inserted));
4513 if (!NILP (insval))
4515 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4516 wrong_type_argument (intern ("inserted-chars"), insval);
4517 inserted = XFASTINT (insval);
4520 else
4522 /* For the rationale of this see the comment on
4523 format-decode above. */
4524 ptrdiff_t opoint = PT;
4525 ptrdiff_t opoint_byte = PT_BYTE;
4526 ptrdiff_t oinserted = ZV - BEGV;
4527 EMACS_INT ochars_modiff = CHARS_MODIFF;
4529 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4530 insval = call1 (XCAR (p), make_number (oinserted));
4531 if (!NILP (insval))
4533 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4534 wrong_type_argument (intern ("inserted-chars"), insval);
4535 if (ochars_modiff == CHARS_MODIFF)
4536 /* after_insert_file_functions didn't modify
4537 buffer's characters => move point back to
4538 position before inserted text and leave value of
4539 inserted alone. */
4540 SET_PT_BOTH (opoint, opoint_byte);
4541 else
4542 /* after_insert_file_functions did modify buffer's
4543 characters => consider entire buffer changed and
4544 leave point at point-min. */
4545 inserted = XFASTINT (insval);
4549 QUIT;
4550 p = XCDR (p);
4553 if (!empty_undo_list_p)
4555 bset_undo_list (current_buffer, old_undo);
4556 if (CONSP (old_undo) && inserted != old_inserted)
4558 /* Adjust the last undo record for the size change during
4559 the format conversion. */
4560 Lisp_Object tem = XCAR (old_undo);
4561 if (CONSP (tem) && INTEGERP (XCAR (tem))
4562 && INTEGERP (XCDR (tem))
4563 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4564 XSETCDR (tem, make_number (PT + inserted));
4567 else
4568 /* If undo_list was Qt before, keep it that way.
4569 Otherwise start with an empty undo_list. */
4570 bset_undo_list (current_buffer, EQ (old_undo, Qt) ? Qt : Qnil);
4572 unbind_to (count1, Qnil);
4575 if (!NILP (visit)
4576 && EMACS_NSECS (current_buffer->modtime) == NONEXISTENT_MODTIME_NSECS)
4578 /* If visiting nonexistent file, return nil. */
4579 errno = save_errno;
4580 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4583 if (read_quit)
4584 Fsignal (Qquit, Qnil);
4586 /* Retval needs to be dealt with in all cases consistently. */
4587 if (NILP (val))
4588 val = list2 (orig_filename, make_number (inserted));
4590 RETURN_UNGCPRO (unbind_to (count, val));
4593 static Lisp_Object build_annotations (Lisp_Object, Lisp_Object);
4595 static Lisp_Object
4596 build_annotations_unwind (Lisp_Object arg)
4598 Vwrite_region_annotation_buffers = arg;
4599 return Qnil;
4602 /* Decide the coding-system to encode the data with. */
4604 DEFUN ("choose-write-coding-system", Fchoose_write_coding_system,
4605 Schoose_write_coding_system, 3, 6, 0,
4606 doc: /* Choose the coding system for writing a file.
4607 Arguments are as for `write-region'.
4608 This function is for internal use only. It may prompt the user. */ )
4609 (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4610 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname)
4612 Lisp_Object val;
4613 Lisp_Object eol_parent = Qnil;
4615 /* Mimic write-region behavior. */
4616 if (NILP (start))
4618 XSETFASTINT (start, BEGV);
4619 XSETFASTINT (end, ZV);
4622 if (auto_saving
4623 && NILP (Fstring_equal (BVAR (current_buffer, filename),
4624 BVAR (current_buffer, auto_save_file_name))))
4626 val = Qutf_8_emacs;
4627 eol_parent = Qunix;
4629 else if (!NILP (Vcoding_system_for_write))
4631 val = Vcoding_system_for_write;
4632 if (coding_system_require_warning
4633 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4634 /* Confirm that VAL can surely encode the current region. */
4635 val = call5 (Vselect_safe_coding_system_function,
4636 start, end, Fcons (Qt, Fcons (val, Qnil)),
4637 Qnil, filename);
4639 else
4641 /* If the variable `buffer-file-coding-system' is set locally,
4642 it means that the file was read with some kind of code
4643 conversion or the variable is explicitly set by users. We
4644 had better write it out with the same coding system even if
4645 `enable-multibyte-characters' is nil.
4647 If it is not set locally, we anyway have to convert EOL
4648 format if the default value of `buffer-file-coding-system'
4649 tells that it is not Unix-like (LF only) format. */
4650 bool using_default_coding = 0;
4651 bool force_raw_text = 0;
4653 val = BVAR (current_buffer, buffer_file_coding_system);
4654 if (NILP (val)
4655 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4657 val = Qnil;
4658 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4659 force_raw_text = 1;
4662 if (NILP (val))
4664 /* Check file-coding-system-alist. */
4665 Lisp_Object args[7], coding_systems;
4667 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4668 args[3] = filename; args[4] = append; args[5] = visit;
4669 args[6] = lockname;
4670 coding_systems = Ffind_operation_coding_system (7, args);
4671 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4672 val = XCDR (coding_systems);
4675 if (NILP (val))
4677 /* If we still have not decided a coding system, use the
4678 default value of buffer-file-coding-system. */
4679 val = BVAR (current_buffer, buffer_file_coding_system);
4680 using_default_coding = 1;
4683 if (! NILP (val) && ! force_raw_text)
4685 Lisp_Object spec, attrs;
4687 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4688 attrs = AREF (spec, 0);
4689 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4690 force_raw_text = 1;
4693 if (!force_raw_text
4694 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4695 /* Confirm that VAL can surely encode the current region. */
4696 val = call5 (Vselect_safe_coding_system_function,
4697 start, end, val, Qnil, filename);
4699 /* If the decided coding-system doesn't specify end-of-line
4700 format, we use that of
4701 `default-buffer-file-coding-system'. */
4702 if (! using_default_coding
4703 && ! NILP (BVAR (&buffer_defaults, buffer_file_coding_system)))
4704 val = (coding_inherit_eol_type
4705 (val, BVAR (&buffer_defaults, buffer_file_coding_system)));
4707 /* If we decide not to encode text, use `raw-text' or one of its
4708 subsidiaries. */
4709 if (force_raw_text)
4710 val = raw_text_coding_system (val);
4713 val = coding_inherit_eol_type (val, eol_parent);
4714 return val;
4717 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4718 "r\nFWrite region to file: \ni\ni\ni\np",
4719 doc: /* Write current region into specified file.
4720 When called from a program, requires three arguments:
4721 START, END and FILENAME. START and END are normally buffer positions
4722 specifying the part of the buffer to write.
4723 If START is nil, that means to use the entire buffer contents.
4724 If START is a string, then output that string to the file
4725 instead of any buffer contents; END is ignored.
4727 Optional fourth argument APPEND if non-nil means
4728 append to existing file contents (if any). If it is a number,
4729 seek to that offset in the file before writing.
4730 Optional fifth argument VISIT, if t or a string, means
4731 set the last-save-file-modtime of buffer to this file's modtime
4732 and mark buffer not modified.
4733 If VISIT is a string, it is a second file name;
4734 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4735 VISIT is also the file name to lock and unlock for clash detection.
4736 If VISIT is neither t nor nil nor a string,
4737 that means do not display the \"Wrote file\" message.
4738 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4739 use for locking and unlocking, overriding FILENAME and VISIT.
4740 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4741 for an existing file with the same name. If MUSTBENEW is `excl',
4742 that means to get an error if the file already exists; never overwrite.
4743 If MUSTBENEW is neither nil nor `excl', that means ask for
4744 confirmation before overwriting, but do go ahead and overwrite the file
4745 if the user confirms.
4747 This does code conversion according to the value of
4748 `coding-system-for-write', `buffer-file-coding-system', or
4749 `file-coding-system-alist', and sets the variable
4750 `last-coding-system-used' to the coding system actually used.
4752 This calls `write-region-annotate-functions' at the start, and
4753 `write-region-post-annotation-function' at the end. */)
4754 (Lisp_Object start, Lisp_Object end, Lisp_Object filename, Lisp_Object append, Lisp_Object visit, Lisp_Object lockname, Lisp_Object mustbenew)
4756 int desc;
4757 int open_flags;
4758 int mode;
4759 off_t offset IF_LINT (= 0);
4760 bool ok;
4761 int save_errno = 0;
4762 const char *fn;
4763 struct stat st;
4764 EMACS_TIME modtime;
4765 ptrdiff_t count = SPECPDL_INDEX ();
4766 int count1;
4767 Lisp_Object handler;
4768 Lisp_Object visit_file;
4769 Lisp_Object annotations;
4770 Lisp_Object encoded_filename;
4771 bool visiting = (EQ (visit, Qt) || STRINGP (visit));
4772 bool quietly = !NILP (visit);
4773 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4774 struct buffer *given_buffer;
4775 struct coding_system coding;
4777 if (current_buffer->base_buffer && visiting)
4778 error ("Cannot do file visiting in an indirect buffer");
4780 if (!NILP (start) && !STRINGP (start))
4781 validate_region (&start, &end);
4783 visit_file = Qnil;
4784 GCPRO5 (start, filename, visit, visit_file, lockname);
4786 filename = Fexpand_file_name (filename, Qnil);
4788 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4789 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4791 if (STRINGP (visit))
4792 visit_file = Fexpand_file_name (visit, Qnil);
4793 else
4794 visit_file = filename;
4796 if (NILP (lockname))
4797 lockname = visit_file;
4799 annotations = Qnil;
4801 /* If the file name has special constructs in it,
4802 call the corresponding file handler. */
4803 handler = Ffind_file_name_handler (filename, Qwrite_region);
4804 /* If FILENAME has no handler, see if VISIT has one. */
4805 if (NILP (handler) && STRINGP (visit))
4806 handler = Ffind_file_name_handler (visit, Qwrite_region);
4808 if (!NILP (handler))
4810 Lisp_Object val;
4811 val = call6 (handler, Qwrite_region, start, end,
4812 filename, append, visit);
4814 if (visiting)
4816 SAVE_MODIFF = MODIFF;
4817 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4818 bset_filename (current_buffer, visit_file);
4820 UNGCPRO;
4821 return val;
4824 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4826 /* Special kludge to simplify auto-saving. */
4827 if (NILP (start))
4829 /* Do it later, so write-region-annotate-function can work differently
4830 if we save "the buffer" vs "a region".
4831 This is useful in tar-mode. --Stef
4832 XSETFASTINT (start, BEG);
4833 XSETFASTINT (end, Z); */
4834 Fwiden ();
4837 record_unwind_protect (build_annotations_unwind,
4838 Vwrite_region_annotation_buffers);
4839 Vwrite_region_annotation_buffers = Fcons (Fcurrent_buffer (), Qnil);
4840 count1 = SPECPDL_INDEX ();
4842 given_buffer = current_buffer;
4844 if (!STRINGP (start))
4846 annotations = build_annotations (start, end);
4848 if (current_buffer != given_buffer)
4850 XSETFASTINT (start, BEGV);
4851 XSETFASTINT (end, ZV);
4855 if (NILP (start))
4857 XSETFASTINT (start, BEGV);
4858 XSETFASTINT (end, ZV);
4861 UNGCPRO;
4863 GCPRO5 (start, filename, annotations, visit_file, lockname);
4865 /* Decide the coding-system to encode the data with.
4866 We used to make this choice before calling build_annotations, but that
4867 leads to problems when a write-annotate-function takes care of
4868 unsavable chars (as was the case with X-Symbol). */
4869 Vlast_coding_system_used =
4870 Fchoose_write_coding_system (start, end, filename,
4871 append, visit, lockname);
4873 setup_coding_system (Vlast_coding_system_used, &coding);
4875 if (!STRINGP (start) && !NILP (BVAR (current_buffer, selective_display)))
4876 coding.mode |= CODING_MODE_SELECTIVE_DISPLAY;
4878 #ifdef CLASH_DETECTION
4879 if (!auto_saving)
4880 lock_file (lockname);
4881 #endif /* CLASH_DETECTION */
4883 encoded_filename = ENCODE_FILE (filename);
4884 fn = SSDATA (encoded_filename);
4885 open_flags = O_WRONLY | O_BINARY | O_CREAT;
4886 open_flags |= EQ (mustbenew, Qexcl) ? O_EXCL : !NILP (append) ? 0 : O_TRUNC;
4887 if (NUMBERP (append))
4888 offset = file_offset (append);
4889 else if (!NILP (append))
4890 open_flags |= O_APPEND;
4891 #ifdef DOS_NT
4892 mode = S_IREAD | S_IWRITE;
4893 #else
4894 mode = auto_saving ? auto_save_mode_bits : 0666;
4895 #endif
4897 desc = emacs_open (fn, open_flags, mode);
4899 if (desc < 0)
4901 #ifdef CLASH_DETECTION
4902 save_errno = errno;
4903 if (!auto_saving) unlock_file (lockname);
4904 errno = save_errno;
4905 #endif /* CLASH_DETECTION */
4906 UNGCPRO;
4907 report_file_error ("Opening output file", Fcons (filename, Qnil));
4910 record_unwind_protect (close_file_unwind, make_number (desc));
4912 if (NUMBERP (append))
4914 off_t ret = lseek (desc, offset, SEEK_SET);
4915 if (ret < 0)
4917 #ifdef CLASH_DETECTION
4918 save_errno = errno;
4919 if (!auto_saving) unlock_file (lockname);
4920 errno = save_errno;
4921 #endif /* CLASH_DETECTION */
4922 UNGCPRO;
4923 report_file_error ("Lseek error", Fcons (filename, Qnil));
4927 UNGCPRO;
4929 immediate_quit = 1;
4931 if (STRINGP (start))
4932 ok = a_write (desc, start, 0, SCHARS (start), &annotations, &coding);
4933 else if (XINT (start) != XINT (end))
4934 ok = a_write (desc, Qnil, XINT (start), XINT (end) - XINT (start),
4935 &annotations, &coding);
4936 else
4938 /* If file was empty, still need to write the annotations. */
4939 coding.mode |= CODING_MODE_LAST_BLOCK;
4940 ok = a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4942 save_errno = errno;
4944 if (ok && CODING_REQUIRE_FLUSHING (&coding)
4945 && !(coding.mode & CODING_MODE_LAST_BLOCK))
4947 /* We have to flush out a data. */
4948 coding.mode |= CODING_MODE_LAST_BLOCK;
4949 ok = e_write (desc, Qnil, 1, 1, &coding);
4950 save_errno = errno;
4953 immediate_quit = 0;
4955 /* fsync is not crucial for auto-save files, since they might lose
4956 some work anyway. */
4957 if (!auto_saving && !write_region_inhibit_fsync)
4959 /* Transfer data and metadata to disk, retrying if interrupted.
4960 fsync can report a write failure here, e.g., due to disk full
4961 under NFS. But ignore EINVAL, which means fsync is not
4962 supported on this file. */
4963 while (fsync (desc) != 0)
4964 if (errno != EINTR)
4966 if (errno != EINVAL)
4967 ok = 0, save_errno = errno;
4968 break;
4972 modtime = invalid_emacs_time ();
4973 if (visiting)
4975 if (fstat (desc, &st) == 0)
4976 modtime = get_stat_mtime (&st);
4977 else
4978 ok = 0, save_errno = errno;
4981 /* NFS can report a write failure now. */
4982 if (emacs_close (desc) < 0)
4983 ok = 0, save_errno = errno;
4985 /* Discard the unwind protect for close_file_unwind. */
4986 specpdl_ptr = specpdl + count1;
4988 /* Some file systems have a bug where st_mtime is not updated
4989 properly after a write. For example, CIFS might not see the
4990 st_mtime change until after the file is opened again.
4992 Attempt to detect this file system bug, and update MODTIME to the
4993 newer st_mtime if the bug appears to be present. This introduces
4994 a race condition, so to avoid most instances of the race condition
4995 on non-buggy file systems, skip this check if the most recently
4996 encountered non-buggy file system was the current file system.
4998 A race condition can occur if some other process modifies the
4999 file between the fstat above and the fstat below, but the race is
5000 unlikely and a similar race between the last write and the fstat
5001 above cannot possibly be closed anyway. */
5003 if (EMACS_TIME_VALID_P (modtime)
5004 && ! (valid_timestamp_file_system && st.st_dev == timestamp_file_system))
5006 int desc1 = emacs_open (fn, O_WRONLY | O_BINARY, 0);
5007 if (desc1 >= 0)
5009 struct stat st1;
5010 if (fstat (desc1, &st1) == 0
5011 && st.st_dev == st1.st_dev && st.st_ino == st1.st_ino)
5013 /* Use the heuristic if it appears to be valid. With neither
5014 O_EXCL nor O_TRUNC, if Emacs happened to write nothing to the
5015 file, the time stamp won't change. Also, some non-POSIX
5016 systems don't update an empty file's time stamp when
5017 truncating it. Finally, file systems with 100 ns or worse
5018 resolution sometimes seem to have bugs: on a system with ns
5019 resolution, checking ns % 100 incorrectly avoids the heuristic
5020 1% of the time, but the problem should be temporary as we will
5021 try again on the next time stamp. */
5022 bool use_heuristic
5023 = ((open_flags & (O_EXCL | O_TRUNC)) != 0
5024 && st.st_size != 0
5025 && EMACS_NSECS (modtime) % 100 != 0);
5027 EMACS_TIME modtime1 = get_stat_mtime (&st1);
5028 if (use_heuristic
5029 && EMACS_TIME_EQ (modtime, modtime1)
5030 && st.st_size == st1.st_size)
5032 timestamp_file_system = st.st_dev;
5033 valid_timestamp_file_system = 1;
5035 else
5037 st.st_size = st1.st_size;
5038 modtime = modtime1;
5041 emacs_close (desc1);
5045 /* Call write-region-post-annotation-function. */
5046 while (CONSP (Vwrite_region_annotation_buffers))
5048 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
5049 if (!NILP (Fbuffer_live_p (buf)))
5051 Fset_buffer (buf);
5052 if (FUNCTIONP (Vwrite_region_post_annotation_function))
5053 call0 (Vwrite_region_post_annotation_function);
5055 Vwrite_region_annotation_buffers
5056 = XCDR (Vwrite_region_annotation_buffers);
5059 unbind_to (count, Qnil);
5061 #ifdef CLASH_DETECTION
5062 if (!auto_saving)
5063 unlock_file (lockname);
5064 #endif /* CLASH_DETECTION */
5066 /* Do this before reporting IO error
5067 to avoid a "file has changed on disk" warning on
5068 next attempt to save. */
5069 if (EMACS_TIME_VALID_P (modtime))
5071 current_buffer->modtime = modtime;
5072 current_buffer->modtime_size = st.st_size;
5075 if (! ok)
5076 error ("IO error writing %s: %s", SDATA (filename),
5077 emacs_strerror (save_errno));
5079 if (visiting)
5081 SAVE_MODIFF = MODIFF;
5082 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5083 bset_filename (current_buffer, visit_file);
5084 update_mode_lines++;
5086 else if (quietly)
5088 if (auto_saving
5089 && ! NILP (Fstring_equal (BVAR (current_buffer, filename),
5090 BVAR (current_buffer, auto_save_file_name))))
5091 SAVE_MODIFF = MODIFF;
5093 return Qnil;
5096 if (!auto_saving)
5097 message_with_string ((NUMBERP (append)
5098 ? "Updated %s"
5099 : ! NILP (append)
5100 ? "Added to %s"
5101 : "Wrote %s"),
5102 visit_file, 1);
5104 return Qnil;
5107 Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
5109 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
5110 doc: /* Return t if (car A) is numerically less than (car B). */)
5111 (Lisp_Object a, Lisp_Object b)
5113 return Flss (Fcar (a), Fcar (b));
5116 /* Build the complete list of annotations appropriate for writing out
5117 the text between START and END, by calling all the functions in
5118 write-region-annotate-functions and merging the lists they return.
5119 If one of these functions switches to a different buffer, we assume
5120 that buffer contains altered text. Therefore, the caller must
5121 make sure to restore the current buffer in all cases,
5122 as save-excursion would do. */
5124 static Lisp_Object
5125 build_annotations (Lisp_Object start, Lisp_Object end)
5127 Lisp_Object annotations;
5128 Lisp_Object p, res;
5129 struct gcpro gcpro1, gcpro2;
5130 Lisp_Object original_buffer;
5131 int i;
5132 bool used_global = 0;
5134 XSETBUFFER (original_buffer, current_buffer);
5136 annotations = Qnil;
5137 p = Vwrite_region_annotate_functions;
5138 GCPRO2 (annotations, p);
5139 while (CONSP (p))
5141 struct buffer *given_buffer = current_buffer;
5142 if (EQ (Qt, XCAR (p)) && !used_global)
5143 { /* Use the global value of the hook. */
5144 Lisp_Object arg[2];
5145 used_global = 1;
5146 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
5147 arg[1] = XCDR (p);
5148 p = Fappend (2, arg);
5149 continue;
5151 Vwrite_region_annotations_so_far = annotations;
5152 res = call2 (XCAR (p), start, end);
5153 /* If the function makes a different buffer current,
5154 assume that means this buffer contains altered text to be output.
5155 Reset START and END from the buffer bounds
5156 and discard all previous annotations because they should have
5157 been dealt with by this function. */
5158 if (current_buffer != given_buffer)
5160 Vwrite_region_annotation_buffers
5161 = Fcons (Fcurrent_buffer (),
5162 Vwrite_region_annotation_buffers);
5163 XSETFASTINT (start, BEGV);
5164 XSETFASTINT (end, ZV);
5165 annotations = Qnil;
5167 Flength (res); /* Check basic validity of return value */
5168 annotations = merge (annotations, res, Qcar_less_than_car);
5169 p = XCDR (p);
5172 /* Now do the same for annotation functions implied by the file-format */
5173 if (auto_saving && (!EQ (BVAR (current_buffer, auto_save_file_format), Qt)))
5174 p = BVAR (current_buffer, auto_save_file_format);
5175 else
5176 p = BVAR (current_buffer, file_format);
5177 for (i = 0; CONSP (p); p = XCDR (p), ++i)
5179 struct buffer *given_buffer = current_buffer;
5181 Vwrite_region_annotations_so_far = annotations;
5183 /* Value is either a list of annotations or nil if the function
5184 has written annotations to a temporary buffer, which is now
5185 current. */
5186 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
5187 original_buffer, make_number (i));
5188 if (current_buffer != given_buffer)
5190 XSETFASTINT (start, BEGV);
5191 XSETFASTINT (end, ZV);
5192 annotations = Qnil;
5195 if (CONSP (res))
5196 annotations = merge (annotations, res, Qcar_less_than_car);
5199 UNGCPRO;
5200 return annotations;
5204 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
5205 If STRING is nil, POS is the character position in the current buffer.
5206 Intersperse with them the annotations from *ANNOT
5207 which fall within the range of POS to POS + NCHARS,
5208 each at its appropriate position.
5210 We modify *ANNOT by discarding elements as we use them up.
5212 Return true if successful. */
5214 static bool
5215 a_write (int desc, Lisp_Object string, ptrdiff_t pos,
5216 ptrdiff_t nchars, Lisp_Object *annot,
5217 struct coding_system *coding)
5219 Lisp_Object tem;
5220 ptrdiff_t nextpos;
5221 ptrdiff_t lastpos = pos + nchars;
5223 while (NILP (*annot) || CONSP (*annot))
5225 tem = Fcar_safe (Fcar (*annot));
5226 nextpos = pos - 1;
5227 if (INTEGERP (tem))
5228 nextpos = XFASTINT (tem);
5230 /* If there are no more annotations in this range,
5231 output the rest of the range all at once. */
5232 if (! (nextpos >= pos && nextpos <= lastpos))
5233 return e_write (desc, string, pos, lastpos, coding);
5235 /* Output buffer text up to the next annotation's position. */
5236 if (nextpos > pos)
5238 if (!e_write (desc, string, pos, nextpos, coding))
5239 return 0;
5240 pos = nextpos;
5242 /* Output the annotation. */
5243 tem = Fcdr (Fcar (*annot));
5244 if (STRINGP (tem))
5246 if (!e_write (desc, tem, 0, SCHARS (tem), coding))
5247 return 0;
5249 *annot = Fcdr (*annot);
5251 return 1;
5255 /* Write text in the range START and END into descriptor DESC,
5256 encoding them with coding system CODING. If STRING is nil, START
5257 and END are character positions of the current buffer, else they
5258 are indexes to the string STRING. Return true if successful. */
5260 static bool
5261 e_write (int desc, Lisp_Object string, ptrdiff_t start, ptrdiff_t end,
5262 struct coding_system *coding)
5264 if (STRINGP (string))
5266 start = 0;
5267 end = SCHARS (string);
5270 /* We used to have a code for handling selective display here. But,
5271 now it is handled within encode_coding. */
5273 while (start < end)
5275 if (STRINGP (string))
5277 coding->src_multibyte = SCHARS (string) < SBYTES (string);
5278 if (CODING_REQUIRE_ENCODING (coding))
5280 encode_coding_object (coding, string,
5281 start, string_char_to_byte (string, start),
5282 end, string_char_to_byte (string, end), Qt);
5284 else
5286 coding->dst_object = string;
5287 coding->consumed_char = SCHARS (string);
5288 coding->produced = SBYTES (string);
5291 else
5293 ptrdiff_t start_byte = CHAR_TO_BYTE (start);
5294 ptrdiff_t end_byte = CHAR_TO_BYTE (end);
5296 coding->src_multibyte = (end - start) < (end_byte - start_byte);
5297 if (CODING_REQUIRE_ENCODING (coding))
5299 encode_coding_object (coding, Fcurrent_buffer (),
5300 start, start_byte, end, end_byte, Qt);
5302 else
5304 coding->dst_object = Qnil;
5305 coding->dst_pos_byte = start_byte;
5306 if (start >= GPT || end <= GPT)
5308 coding->consumed_char = end - start;
5309 coding->produced = end_byte - start_byte;
5311 else
5313 coding->consumed_char = GPT - start;
5314 coding->produced = GPT_BYTE - start_byte;
5319 if (coding->produced > 0)
5321 coding->produced
5322 -= emacs_write (desc,
5323 STRINGP (coding->dst_object)
5324 ? SSDATA (coding->dst_object)
5325 : (char *) BYTE_POS_ADDR (coding->dst_pos_byte),
5326 coding->produced);
5328 if (coding->produced)
5329 return 0;
5331 start += coding->consumed_char;
5334 return 1;
5337 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
5338 Sverify_visited_file_modtime, 0, 1, 0,
5339 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
5340 This means that the file has not been changed since it was visited or saved.
5341 If BUF is omitted or nil, it defaults to the current buffer.
5342 See Info node `(elisp)Modification Time' for more details. */)
5343 (Lisp_Object buf)
5345 struct buffer *b;
5346 struct stat st;
5347 Lisp_Object handler;
5348 Lisp_Object filename;
5349 EMACS_TIME mtime;
5351 if (NILP (buf))
5352 b = current_buffer;
5353 else
5355 CHECK_BUFFER (buf);
5356 b = XBUFFER (buf);
5359 if (!STRINGP (BVAR (b, filename))) return Qt;
5360 if (EMACS_NSECS (b->modtime) == UNKNOWN_MODTIME_NSECS) return Qt;
5362 /* If the file name has special constructs in it,
5363 call the corresponding file handler. */
5364 handler = Ffind_file_name_handler (BVAR (b, filename),
5365 Qverify_visited_file_modtime);
5366 if (!NILP (handler))
5367 return call2 (handler, Qverify_visited_file_modtime, buf);
5369 filename = ENCODE_FILE (BVAR (b, filename));
5371 mtime = (stat (SSDATA (filename), &st) == 0
5372 ? get_stat_mtime (&st)
5373 : time_error_value (errno));
5374 if (EMACS_TIME_EQ (mtime, b->modtime)
5375 && (b->modtime_size < 0
5376 || st.st_size == b->modtime_size))
5377 return Qt;
5378 return Qnil;
5381 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
5382 Sclear_visited_file_modtime, 0, 0, 0,
5383 doc: /* Clear out records of last mod time of visited file.
5384 Next attempt to save will certainly not complain of a discrepancy. */)
5385 (void)
5387 current_buffer->modtime = make_emacs_time (0, UNKNOWN_MODTIME_NSECS);
5388 current_buffer->modtime_size = -1;
5389 return Qnil;
5392 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5393 Svisited_file_modtime, 0, 0, 0,
5394 doc: /* Return the current buffer's recorded visited file modification time.
5395 The value is a list of the form (HIGH LOW USEC PSEC), like the time values that
5396 `file-attributes' returns. If the current buffer has no recorded file
5397 modification time, this function returns 0. If the visited file
5398 doesn't exist, HIGH will be -1.
5399 See Info node `(elisp)Modification Time' for more details. */)
5400 (void)
5402 if (EMACS_NSECS (current_buffer->modtime) < 0)
5404 if (EMACS_NSECS (current_buffer->modtime) == NONEXISTENT_MODTIME_NSECS)
5406 /* make_lisp_time won't work here if time_t is unsigned. */
5407 return list4i (-1, 65535, 0, 0);
5409 return make_number (0);
5411 return make_lisp_time (current_buffer->modtime);
5414 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5415 Sset_visited_file_modtime, 0, 1, 0,
5416 doc: /* Update buffer's recorded modification time from the visited file's time.
5417 Useful if the buffer was not read from the file normally
5418 or if the file itself has been changed for some known benign reason.
5419 An argument specifies the modification time value to use
5420 \(instead of that of the visited file), in the form of a list
5421 \(HIGH LOW USEC PSEC) as returned by `current-time'. */)
5422 (Lisp_Object time_list)
5424 if (!NILP (time_list))
5426 current_buffer->modtime = lisp_time_argument (time_list);
5427 current_buffer->modtime_size = -1;
5429 else
5431 register Lisp_Object filename;
5432 struct stat st;
5433 Lisp_Object handler;
5435 filename = Fexpand_file_name (BVAR (current_buffer, filename), Qnil);
5437 /* If the file name has special constructs in it,
5438 call the corresponding file handler. */
5439 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5440 if (!NILP (handler))
5441 /* The handler can find the file name the same way we did. */
5442 return call2 (handler, Qset_visited_file_modtime, Qnil);
5444 filename = ENCODE_FILE (filename);
5446 if (stat (SSDATA (filename), &st) >= 0)
5448 current_buffer->modtime = get_stat_mtime (&st);
5449 current_buffer->modtime_size = st.st_size;
5453 return Qnil;
5456 static Lisp_Object
5457 auto_save_error (Lisp_Object error_val)
5459 Lisp_Object args[3], msg;
5460 int i;
5461 struct gcpro gcpro1;
5463 auto_save_error_occurred = 1;
5465 ring_bell (XFRAME (selected_frame));
5467 args[0] = build_string ("Auto-saving %s: %s");
5468 args[1] = BVAR (current_buffer, name);
5469 args[2] = Ferror_message_string (error_val);
5470 msg = Fformat (3, args);
5471 GCPRO1 (msg);
5473 for (i = 0; i < 3; ++i)
5475 if (i == 0)
5476 message3 (msg);
5477 else
5478 message3_nolog (msg);
5479 Fsleep_for (make_number (1), Qnil);
5482 UNGCPRO;
5483 return Qnil;
5486 static Lisp_Object
5487 auto_save_1 (void)
5489 struct stat st;
5490 Lisp_Object modes;
5492 auto_save_mode_bits = 0666;
5494 /* Get visited file's mode to become the auto save file's mode. */
5495 if (! NILP (BVAR (current_buffer, filename)))
5497 if (stat (SSDATA (BVAR (current_buffer, filename)), &st) >= 0)
5498 /* But make sure we can overwrite it later! */
5499 auto_save_mode_bits = (st.st_mode | 0600) & 0777;
5500 else if (modes = Ffile_modes (BVAR (current_buffer, filename)),
5501 INTEGERP (modes))
5502 /* Remote files don't cooperate with stat. */
5503 auto_save_mode_bits = (XINT (modes) | 0600) & 0777;
5506 return
5507 Fwrite_region (Qnil, Qnil, BVAR (current_buffer, auto_save_file_name), Qnil,
5508 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5509 Qnil, Qnil);
5512 static Lisp_Object
5513 do_auto_save_unwind (Lisp_Object arg) /* used as unwind-protect function */
5516 FILE *stream = XSAVE_POINTER (arg, 0);
5517 auto_saving = 0;
5518 if (stream != NULL)
5520 block_input ();
5521 fclose (stream);
5522 unblock_input ();
5524 return Qnil;
5527 static Lisp_Object
5528 do_auto_save_unwind_1 (Lisp_Object value) /* used as unwind-protect function */
5531 minibuffer_auto_raise = XINT (value);
5532 return Qnil;
5535 static Lisp_Object
5536 do_auto_save_make_dir (Lisp_Object dir)
5538 Lisp_Object result;
5540 auto_saving_dir_umask = 077;
5541 result = call2 (Qmake_directory, dir, Qt);
5542 auto_saving_dir_umask = 0;
5543 return result;
5546 static Lisp_Object
5547 do_auto_save_eh (Lisp_Object ignore)
5549 auto_saving_dir_umask = 0;
5550 return Qnil;
5553 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5554 doc: /* Auto-save all buffers that need it.
5555 This is all buffers that have auto-saving enabled
5556 and are changed since last auto-saved.
5557 Auto-saving writes the buffer into a file
5558 so that your editing is not lost if the system crashes.
5559 This file is not the file you visited; that changes only when you save.
5560 Normally we run the normal hook `auto-save-hook' before saving.
5562 A non-nil NO-MESSAGE argument means do not print any message if successful.
5563 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5564 (Lisp_Object no_message, Lisp_Object current_only)
5566 struct buffer *old = current_buffer, *b;
5567 Lisp_Object tail, buf, hook;
5568 bool auto_saved = 0;
5569 int do_handled_files;
5570 Lisp_Object oquit;
5571 FILE *stream = NULL;
5572 ptrdiff_t count = SPECPDL_INDEX ();
5573 bool orig_minibuffer_auto_raise = minibuffer_auto_raise;
5574 bool old_message_p = 0;
5575 struct gcpro gcpro1, gcpro2;
5577 if (max_specpdl_size < specpdl_size + 40)
5578 max_specpdl_size = specpdl_size + 40;
5580 if (minibuf_level)
5581 no_message = Qt;
5583 if (NILP (no_message))
5585 old_message_p = push_message ();
5586 record_unwind_protect (pop_message_unwind, Qnil);
5589 /* Ordinarily don't quit within this function,
5590 but don't make it impossible to quit (in case we get hung in I/O). */
5591 oquit = Vquit_flag;
5592 Vquit_flag = Qnil;
5594 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5595 point to non-strings reached from Vbuffer_alist. */
5597 hook = intern ("auto-save-hook");
5598 Frun_hooks (1, &hook);
5600 if (STRINGP (Vauto_save_list_file_name))
5602 Lisp_Object listfile;
5604 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5606 /* Don't try to create the directory when shutting down Emacs,
5607 because creating the directory might signal an error, and
5608 that would leave Emacs in a strange state. */
5609 if (!NILP (Vrun_hooks))
5611 Lisp_Object dir;
5612 dir = Qnil;
5613 GCPRO2 (dir, listfile);
5614 dir = Ffile_name_directory (listfile);
5615 if (NILP (Ffile_directory_p (dir)))
5616 internal_condition_case_1 (do_auto_save_make_dir,
5617 dir, Qt,
5618 do_auto_save_eh);
5619 UNGCPRO;
5622 stream = fopen (SSDATA (listfile), "w");
5625 record_unwind_protect (do_auto_save_unwind,
5626 make_save_pointer (stream));
5627 record_unwind_protect (do_auto_save_unwind_1,
5628 make_number (minibuffer_auto_raise));
5629 minibuffer_auto_raise = 0;
5630 auto_saving = 1;
5631 auto_save_error_occurred = 0;
5633 /* On first pass, save all files that don't have handlers.
5634 On second pass, save all files that do have handlers.
5636 If Emacs is crashing, the handlers may tweak what is causing
5637 Emacs to crash in the first place, and it would be a shame if
5638 Emacs failed to autosave perfectly ordinary files because it
5639 couldn't handle some ange-ftp'd file. */
5641 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5642 for (tail = Vbuffer_alist; CONSP (tail); tail = XCDR (tail))
5644 buf = XCDR (XCAR (tail));
5645 b = XBUFFER (buf);
5647 /* Record all the buffers that have auto save mode
5648 in the special file that lists them. For each of these buffers,
5649 Record visited name (if any) and auto save name. */
5650 if (STRINGP (BVAR (b, auto_save_file_name))
5651 && stream != NULL && do_handled_files == 0)
5653 block_input ();
5654 if (!NILP (BVAR (b, filename)))
5656 fwrite (SDATA (BVAR (b, filename)), 1,
5657 SBYTES (BVAR (b, filename)), stream);
5659 putc ('\n', stream);
5660 fwrite (SDATA (BVAR (b, auto_save_file_name)), 1,
5661 SBYTES (BVAR (b, auto_save_file_name)), stream);
5662 putc ('\n', stream);
5663 unblock_input ();
5666 if (!NILP (current_only)
5667 && b != current_buffer)
5668 continue;
5670 /* Don't auto-save indirect buffers.
5671 The base buffer takes care of it. */
5672 if (b->base_buffer)
5673 continue;
5675 /* Check for auto save enabled
5676 and file changed since last auto save
5677 and file changed since last real save. */
5678 if (STRINGP (BVAR (b, auto_save_file_name))
5679 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5680 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5681 /* -1 means we've turned off autosaving for a while--see below. */
5682 && XINT (BVAR (b, save_length)) >= 0
5683 && (do_handled_files
5684 || NILP (Ffind_file_name_handler (BVAR (b, auto_save_file_name),
5685 Qwrite_region))))
5687 EMACS_TIME before_time = current_emacs_time ();
5688 EMACS_TIME after_time;
5690 /* If we had a failure, don't try again for 20 minutes. */
5691 if (b->auto_save_failure_time > 0
5692 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5693 continue;
5695 set_buffer_internal (b);
5696 if (NILP (Vauto_save_include_big_deletions)
5697 && (XFASTINT (BVAR (b, save_length)) * 10
5698 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5699 /* A short file is likely to change a large fraction;
5700 spare the user annoying messages. */
5701 && XFASTINT (BVAR (b, save_length)) > 5000
5702 /* These messages are frequent and annoying for `*mail*'. */
5703 && !EQ (BVAR (b, filename), Qnil)
5704 && NILP (no_message))
5706 /* It has shrunk too much; turn off auto-saving here. */
5707 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5708 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5709 BVAR (b, name), 1);
5710 minibuffer_auto_raise = 0;
5711 /* Turn off auto-saving until there's a real save,
5712 and prevent any more warnings. */
5713 XSETINT (BVAR (b, save_length), -1);
5714 Fsleep_for (make_number (1), Qnil);
5715 continue;
5717 if (!auto_saved && NILP (no_message))
5718 message1 ("Auto-saving...");
5719 internal_condition_case (auto_save_1, Qt, auto_save_error);
5720 auto_saved = 1;
5721 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5722 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5723 set_buffer_internal (old);
5725 after_time = current_emacs_time ();
5727 /* If auto-save took more than 60 seconds,
5728 assume it was an NFS failure that got a timeout. */
5729 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5730 b->auto_save_failure_time = EMACS_SECS (after_time);
5734 /* Prevent another auto save till enough input events come in. */
5735 record_auto_save ();
5737 if (auto_saved && NILP (no_message))
5739 if (old_message_p)
5741 /* If we are going to restore an old message,
5742 give time to read ours. */
5743 sit_for (make_number (1), 0, 0);
5744 restore_message ();
5746 else if (!auto_save_error_occurred)
5747 /* Don't overwrite the error message if an error occurred.
5748 If we displayed a message and then restored a state
5749 with no message, leave a "done" message on the screen. */
5750 message1 ("Auto-saving...done");
5753 Vquit_flag = oquit;
5755 /* This restores the message-stack status. */
5756 unbind_to (count, Qnil);
5757 return Qnil;
5760 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5761 Sset_buffer_auto_saved, 0, 0, 0,
5762 doc: /* Mark current buffer as auto-saved with its current text.
5763 No auto-save file will be written until the buffer changes again. */)
5764 (void)
5766 /* FIXME: This should not be called in indirect buffers, since
5767 they're not autosaved. */
5768 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5769 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5770 current_buffer->auto_save_failure_time = 0;
5771 return Qnil;
5774 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5775 Sclear_buffer_auto_save_failure, 0, 0, 0,
5776 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5777 (void)
5779 current_buffer->auto_save_failure_time = 0;
5780 return Qnil;
5783 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5784 0, 0, 0,
5785 doc: /* Return t if current buffer has been auto-saved recently.
5786 More precisely, if it has been auto-saved since last read from or saved
5787 in the visited file. If the buffer has no visited file,
5788 then any auto-save counts as "recent". */)
5789 (void)
5791 /* FIXME: maybe we should return nil for indirect buffers since
5792 they're never autosaved. */
5793 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5796 /* Reading and completing file names */
5798 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5799 Snext_read_file_uses_dialog_p, 0, 0, 0,
5800 doc: /* Return t if a call to `read-file-name' will use a dialog.
5801 The return value is only relevant for a call to `read-file-name' that happens
5802 before any other event (mouse or keypress) is handled. */)
5803 (void)
5805 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) \
5806 || defined (HAVE_NS)
5807 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5808 && use_dialog_box
5809 && use_file_dialog
5810 && window_system_available (SELECTED_FRAME ()))
5811 return Qt;
5812 #endif
5813 return Qnil;
5816 Lisp_Object
5817 Fread_file_name (Lisp_Object prompt, Lisp_Object dir, Lisp_Object default_filename, Lisp_Object mustmatch, Lisp_Object initial, Lisp_Object predicate)
5819 struct gcpro gcpro1;
5820 Lisp_Object args[7];
5822 GCPRO1 (default_filename);
5823 args[0] = intern ("read-file-name");
5824 args[1] = prompt;
5825 args[2] = dir;
5826 args[3] = default_filename;
5827 args[4] = mustmatch;
5828 args[5] = initial;
5829 args[6] = predicate;
5830 RETURN_UNGCPRO (Ffuncall (7, args));
5834 void
5835 init_fileio (void)
5837 valid_timestamp_file_system = 0;
5840 void
5841 syms_of_fileio (void)
5843 DEFSYM (Qoperations, "operations");
5844 DEFSYM (Qexpand_file_name, "expand-file-name");
5845 DEFSYM (Qsubstitute_in_file_name, "substitute-in-file-name");
5846 DEFSYM (Qdirectory_file_name, "directory-file-name");
5847 DEFSYM (Qfile_name_directory, "file-name-directory");
5848 DEFSYM (Qfile_name_nondirectory, "file-name-nondirectory");
5849 DEFSYM (Qunhandled_file_name_directory, "unhandled-file-name-directory");
5850 DEFSYM (Qfile_name_as_directory, "file-name-as-directory");
5851 DEFSYM (Qcopy_file, "copy-file");
5852 DEFSYM (Qmake_directory_internal, "make-directory-internal");
5853 DEFSYM (Qmake_directory, "make-directory");
5854 DEFSYM (Qdelete_directory_internal, "delete-directory-internal");
5855 DEFSYM (Qdelete_file, "delete-file");
5856 DEFSYM (Qrename_file, "rename-file");
5857 DEFSYM (Qadd_name_to_file, "add-name-to-file");
5858 DEFSYM (Qmake_symbolic_link, "make-symbolic-link");
5859 DEFSYM (Qfile_exists_p, "file-exists-p");
5860 DEFSYM (Qfile_executable_p, "file-executable-p");
5861 DEFSYM (Qfile_readable_p, "file-readable-p");
5862 DEFSYM (Qfile_writable_p, "file-writable-p");
5863 DEFSYM (Qfile_symlink_p, "file-symlink-p");
5864 DEFSYM (Qaccess_file, "access-file");
5865 DEFSYM (Qfile_directory_p, "file-directory-p");
5866 DEFSYM (Qfile_regular_p, "file-regular-p");
5867 DEFSYM (Qfile_accessible_directory_p, "file-accessible-directory-p");
5868 DEFSYM (Qfile_modes, "file-modes");
5869 DEFSYM (Qset_file_modes, "set-file-modes");
5870 DEFSYM (Qset_file_times, "set-file-times");
5871 DEFSYM (Qfile_selinux_context, "file-selinux-context");
5872 DEFSYM (Qset_file_selinux_context, "set-file-selinux-context");
5873 DEFSYM (Qfile_acl, "file-acl");
5874 DEFSYM (Qset_file_acl, "set-file-acl");
5875 DEFSYM (Qfile_newer_than_file_p, "file-newer-than-file-p");
5876 DEFSYM (Qinsert_file_contents, "insert-file-contents");
5877 DEFSYM (Qchoose_write_coding_system, "choose-write-coding-system");
5878 DEFSYM (Qwrite_region, "write-region");
5879 DEFSYM (Qverify_visited_file_modtime, "verify-visited-file-modtime");
5880 DEFSYM (Qset_visited_file_modtime, "set-visited-file-modtime");
5881 DEFSYM (Qauto_save_coding, "auto-save-coding");
5883 DEFSYM (Qfile_name_history, "file-name-history");
5884 Fset (Qfile_name_history, Qnil);
5886 DEFSYM (Qfile_error, "file-error");
5887 DEFSYM (Qfile_already_exists, "file-already-exists");
5888 DEFSYM (Qfile_date_error, "file-date-error");
5889 DEFSYM (Qexcl, "excl");
5891 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
5892 doc: /* Coding system for encoding file names.
5893 If it is nil, `default-file-name-coding-system' (which see) is used. */);
5894 Vfile_name_coding_system = Qnil;
5896 DEFVAR_LISP ("default-file-name-coding-system",
5897 Vdefault_file_name_coding_system,
5898 doc: /* Default coding system for encoding file names.
5899 This variable is used only when `file-name-coding-system' is nil.
5901 This variable is set/changed by the command `set-language-environment'.
5902 User should not set this variable manually,
5903 instead use `file-name-coding-system' to get a constant encoding
5904 of file names regardless of the current language environment. */);
5905 Vdefault_file_name_coding_system = Qnil;
5907 DEFSYM (Qformat_decode, "format-decode");
5908 DEFSYM (Qformat_annotate_function, "format-annotate-function");
5909 DEFSYM (Qafter_insert_file_set_coding, "after-insert-file-set-coding");
5910 DEFSYM (Qcar_less_than_car, "car-less-than-car");
5912 Fput (Qfile_error, Qerror_conditions,
5913 Fpurecopy (list2 (Qfile_error, Qerror)));
5914 Fput (Qfile_error, Qerror_message,
5915 build_pure_c_string ("File error"));
5917 Fput (Qfile_already_exists, Qerror_conditions,
5918 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5919 Fput (Qfile_already_exists, Qerror_message,
5920 build_pure_c_string ("File already exists"));
5922 Fput (Qfile_date_error, Qerror_conditions,
5923 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5924 Fput (Qfile_date_error, Qerror_message,
5925 build_pure_c_string ("Cannot set file date"));
5927 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
5928 doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially.
5929 If a file name matches REGEXP, all I/O on that file is done by calling
5930 HANDLER. If a file name matches more than one handler, the handler
5931 whose match starts last in the file name gets precedence. The
5932 function `find-file-name-handler' checks this list for a handler for
5933 its argument.
5935 HANDLER should be a function. The first argument given to it is the
5936 name of the I/O primitive to be handled; the remaining arguments are
5937 the arguments that were passed to that primitive. For example, if you
5938 do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then
5939 HANDLER is called like this:
5941 (funcall HANDLER 'file-exists-p FILENAME)
5943 Note that HANDLER must be able to handle all I/O primitives; if it has
5944 nothing special to do for a primitive, it should reinvoke the
5945 primitive to handle the operation \"the usual way\".
5946 See Info node `(elisp)Magic File Names' for more details. */);
5947 Vfile_name_handler_alist = Qnil;
5949 DEFVAR_LISP ("set-auto-coding-function",
5950 Vset_auto_coding_function,
5951 doc: /* If non-nil, a function to call to decide a coding system of file.
5952 Two arguments are passed to this function: the file name
5953 and the length of a file contents following the point.
5954 This function should return a coding system to decode the file contents.
5955 It should check the file name against `auto-coding-alist'.
5956 If no coding system is decided, it should check a coding system
5957 specified in the heading lines with the format:
5958 -*- ... coding: CODING-SYSTEM; ... -*-
5959 or local variable spec of the tailing lines with `coding:' tag. */);
5960 Vset_auto_coding_function = Qnil;
5962 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions,
5963 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5964 Each is passed one argument, the number of characters inserted,
5965 with point at the start of the inserted text. Each function
5966 should leave point the same, and return the new character count.
5967 If `insert-file-contents' is intercepted by a handler from
5968 `file-name-handler-alist', that handler is responsible for calling the
5969 functions in `after-insert-file-functions' if appropriate. */);
5970 Vafter_insert_file_functions = Qnil;
5972 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions,
5973 doc: /* A list of functions to be called at the start of `write-region'.
5974 Each is passed two arguments, START and END as for `write-region'.
5975 These are usually two numbers but not always; see the documentation
5976 for `write-region'. The function should return a list of pairs
5977 of the form (POSITION . STRING), consisting of strings to be effectively
5978 inserted at the specified positions of the file being written (1 means to
5979 insert before the first byte written). The POSITIONs must be sorted into
5980 increasing order.
5982 If there are several annotation functions, the lists returned by these
5983 functions are merged destructively. As each annotation function runs,
5984 the variable `write-region-annotations-so-far' contains a list of all
5985 annotations returned by previous annotation functions.
5987 An annotation function can return with a different buffer current.
5988 Doing so removes the annotations returned by previous functions, and
5989 resets START and END to `point-min' and `point-max' of the new buffer.
5991 After `write-region' completes, Emacs calls the function stored in
5992 `write-region-post-annotation-function', once for each buffer that was
5993 current when building the annotations (i.e., at least once), with that
5994 buffer current. */);
5995 Vwrite_region_annotate_functions = Qnil;
5996 DEFSYM (Qwrite_region_annotate_functions, "write-region-annotate-functions");
5998 DEFVAR_LISP ("write-region-post-annotation-function",
5999 Vwrite_region_post_annotation_function,
6000 doc: /* Function to call after `write-region' completes.
6001 The function is called with no arguments. If one or more of the
6002 annotation functions in `write-region-annotate-functions' changed the
6003 current buffer, the function stored in this variable is called for
6004 each of those additional buffers as well, in addition to the original
6005 buffer. The relevant buffer is current during each function call. */);
6006 Vwrite_region_post_annotation_function = Qnil;
6007 staticpro (&Vwrite_region_annotation_buffers);
6009 DEFVAR_LISP ("write-region-annotations-so-far",
6010 Vwrite_region_annotations_so_far,
6011 doc: /* When an annotation function is called, this holds the previous annotations.
6012 These are the annotations made by other annotation functions
6013 that were already called. See also `write-region-annotate-functions'. */);
6014 Vwrite_region_annotations_so_far = Qnil;
6016 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers,
6017 doc: /* A list of file name handlers that temporarily should not be used.
6018 This applies only to the operation `inhibit-file-name-operation'. */);
6019 Vinhibit_file_name_handlers = Qnil;
6021 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation,
6022 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
6023 Vinhibit_file_name_operation = Qnil;
6025 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name,
6026 doc: /* File name in which we write a list of all auto save file names.
6027 This variable is initialized automatically from `auto-save-list-file-prefix'
6028 shortly after Emacs reads your init file, if you have not yet given it
6029 a non-nil value. */);
6030 Vauto_save_list_file_name = Qnil;
6032 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name,
6033 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
6034 Normally auto-save files are written under other names. */);
6035 Vauto_save_visited_file_name = Qnil;
6037 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions,
6038 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
6039 If nil, deleting a substantial portion of the text disables auto-save
6040 in the buffer; this is the default behavior, because the auto-save
6041 file is usually more useful if it contains the deleted text. */);
6042 Vauto_save_include_big_deletions = Qnil;
6044 /* fsync can be a significant performance hit. Often it doesn't
6045 suffice to make the file-save operation survive a crash. For
6046 batch scripts, which are typically part of larger shell commands
6047 that don't fsync other files, its effect on performance can be
6048 significant so its utility is particularly questionable.
6049 Hence, for now by default fsync is used only when interactive.
6051 For more on why fsync often fails to work on today's hardware, see:
6052 Zheng M et al. Understanding the robustness of SSDs under power fault.
6053 11th USENIX Conf. on File and Storage Technologies, 2013 (FAST '13), 271-84
6054 http://www.usenix.org/system/files/conference/fast13/fast13-final80.pdf
6056 For more on why fsync does not suffice even if it works properly, see:
6057 Roche X. Necessary step(s) to synchronize filename operations on disk.
6058 Austin Group Defect 672, 2013-03-19
6059 http://austingroupbugs.net/view.php?id=672 */
6060 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync,
6061 doc: /* Non-nil means don't call fsync in `write-region'.
6062 This variable affects calls to `write-region' as well as save commands.
6063 Setting this to nil may avoid data loss if the system loses power or
6064 the operating system crashes. */);
6065 write_region_inhibit_fsync = noninteractive;
6067 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash,
6068 doc: /* Specifies whether to use the system's trash can.
6069 When non-nil, certain file deletion commands use the function
6070 `move-file-to-trash' instead of deleting files outright.
6071 This includes interactive calls to `delete-file' and
6072 `delete-directory' and the Dired deletion commands. */);
6073 delete_by_moving_to_trash = 0;
6074 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
6076 DEFSYM (Qmove_file_to_trash, "move-file-to-trash");
6077 DEFSYM (Qcopy_directory, "copy-directory");
6078 DEFSYM (Qdelete_directory, "delete-directory");
6080 defsubr (&Sfind_file_name_handler);
6081 defsubr (&Sfile_name_directory);
6082 defsubr (&Sfile_name_nondirectory);
6083 defsubr (&Sunhandled_file_name_directory);
6084 defsubr (&Sfile_name_as_directory);
6085 defsubr (&Sdirectory_file_name);
6086 defsubr (&Smake_temp_name);
6087 defsubr (&Sexpand_file_name);
6088 defsubr (&Ssubstitute_in_file_name);
6089 defsubr (&Scopy_file);
6090 defsubr (&Smake_directory_internal);
6091 defsubr (&Sdelete_directory_internal);
6092 defsubr (&Sdelete_file);
6093 defsubr (&Srename_file);
6094 defsubr (&Sadd_name_to_file);
6095 defsubr (&Smake_symbolic_link);
6096 defsubr (&Sfile_name_absolute_p);
6097 defsubr (&Sfile_exists_p);
6098 defsubr (&Sfile_executable_p);
6099 defsubr (&Sfile_readable_p);
6100 defsubr (&Sfile_writable_p);
6101 defsubr (&Saccess_file);
6102 defsubr (&Sfile_symlink_p);
6103 defsubr (&Sfile_directory_p);
6104 defsubr (&Sfile_accessible_directory_p);
6105 defsubr (&Sfile_regular_p);
6106 defsubr (&Sfile_modes);
6107 defsubr (&Sset_file_modes);
6108 defsubr (&Sset_file_times);
6109 defsubr (&Sfile_selinux_context);
6110 defsubr (&Sfile_acl);
6111 defsubr (&Sset_file_acl);
6112 defsubr (&Sset_file_selinux_context);
6113 defsubr (&Sset_default_file_modes);
6114 defsubr (&Sdefault_file_modes);
6115 defsubr (&Sfile_newer_than_file_p);
6116 defsubr (&Sinsert_file_contents);
6117 defsubr (&Schoose_write_coding_system);
6118 defsubr (&Swrite_region);
6119 defsubr (&Scar_less_than_car);
6120 defsubr (&Sverify_visited_file_modtime);
6121 defsubr (&Sclear_visited_file_modtime);
6122 defsubr (&Svisited_file_modtime);
6123 defsubr (&Sset_visited_file_modtime);
6124 defsubr (&Sdo_auto_save);
6125 defsubr (&Sset_buffer_auto_saved);
6126 defsubr (&Sclear_buffer_auto_save_failure);
6127 defsubr (&Srecent_auto_save_p);
6129 defsubr (&Snext_read_file_uses_dialog_p);
6131 #ifdef HAVE_SYNC
6132 defsubr (&Sunix_sync);
6133 #endif