* lisp/fringe.el (fringe-bitmap-p): Fix 2014-12-05 breakage.
[emacs.git] / src / fileio.c
blob83b4954b74546c332aff5dd32c7f9ba09ac59749
1 /* File IO for GNU Emacs.
3 Copyright (C) 1985-1988, 1993-2014 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 "sysstdio.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 "region-cache.h"
53 #include "frame.h"
54 #include "dispextern.h"
56 #ifdef WINDOWSNT
57 #define NOMINMAX 1
58 #include <windows.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 #endif
68 #ifdef DOS_NT
69 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
70 redirector allows the six letters between 'Z' and 'a' as well. */
71 #ifdef MSDOS
72 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
73 #endif
74 #ifdef WINDOWSNT
75 #define IS_DRIVE(x) c_isalpha (x)
76 #endif
77 /* Need to lower-case the drive letter, or else expanded
78 filenames will sometimes compare unequal, because
79 `expand-file-name' doesn't always down-case the drive letter. */
80 #define DRIVE_LETTER(x) c_tolower (x)
81 #endif
83 #include "systime.h"
84 #include <acl.h>
85 #include <allocator.h>
86 #include <careadlinkat.h>
87 #include <stat-time.h>
89 #ifdef HPUX
90 #include <netio.h>
91 #endif
93 #include "commands.h"
95 /* True during writing of auto-save files. */
96 static bool auto_saving;
98 /* Emacs's real umask. */
99 static mode_t realmask;
101 /* Nonzero umask during creation of auto-save directories. */
102 static mode_t auto_saving_dir_umask;
104 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
105 a new file with the same mode as the original. */
106 static mode_t auto_save_mode_bits;
108 /* Set by auto_save_1 if an error occurred during the last auto-save. */
109 static bool auto_save_error_occurred;
111 /* If VALID_TIMESTAMP_FILE_SYSTEM, then TIMESTAMP_FILE_SYSTEM is the device
112 number of a file system where time stamps were observed to to work. */
113 static bool valid_timestamp_file_system;
114 static dev_t timestamp_file_system;
116 /* The symbol bound to coding-system-for-read when
117 insert-file-contents is called for recovering a file. This is not
118 an actual coding system name, but just an indicator to tell
119 insert-file-contents to use `emacs-mule' with a special flag for
120 auto saving and recovering a file. */
121 static Lisp_Object Qauto_save_coding;
123 /* Property name of a file name handler,
124 which gives a list of operations it handles.. */
125 static Lisp_Object Qoperations;
127 /* Lisp functions for translating file formats. */
128 static Lisp_Object Qformat_decode, Qformat_annotate_function;
130 /* Lisp function for setting buffer-file-coding-system and the
131 multibyteness of the current buffer after inserting a file. */
132 static Lisp_Object Qafter_insert_file_set_coding;
134 static Lisp_Object Qwrite_region_annotate_functions;
135 /* Each time an annotation function changes the buffer, the new buffer
136 is added here. */
137 static Lisp_Object Vwrite_region_annotation_buffers;
139 static Lisp_Object Qdelete_by_moving_to_trash;
141 /* Lisp function for moving files to trash. */
142 static Lisp_Object Qmove_file_to_trash;
144 /* Lisp function for recursively copying directories. */
145 static Lisp_Object Qcopy_directory;
147 /* Lisp function for recursively deleting directories. */
148 static Lisp_Object Qdelete_directory;
150 static Lisp_Object Qsubstitute_env_in_file_name;
151 static Lisp_Object Qget_buffer_window_list;
153 Lisp_Object Qfile_error, Qfile_notify_error;
154 static Lisp_Object Qfile_already_exists, Qfile_date_error;
155 static Lisp_Object Qexcl;
156 Lisp_Object Qfile_name_history;
158 static Lisp_Object Qcar_less_than_car;
160 static bool a_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
161 Lisp_Object *, struct coding_system *);
162 static bool e_write (int, Lisp_Object, ptrdiff_t, ptrdiff_t,
163 struct coding_system *);
166 /* Return true if FILENAME exists. */
168 static bool
169 check_existing (const char *filename)
171 return faccessat (AT_FDCWD, filename, F_OK, AT_EACCESS) == 0;
174 /* Return true if file FILENAME exists and can be executed. */
176 static bool
177 check_executable (char *filename)
179 return faccessat (AT_FDCWD, filename, X_OK, AT_EACCESS) == 0;
182 /* Return true if file FILENAME exists and can be accessed
183 according to AMODE, which should include W_OK.
184 On failure, return false and set errno. */
186 static bool
187 check_writable (const char *filename, int amode)
189 #ifdef MSDOS
190 /* FIXME: an faccessat implementation should be added to the
191 DOS/Windows ports and this #ifdef branch should be removed. */
192 struct stat st;
193 if (stat (filename, &st) < 0)
194 return 0;
195 errno = EPERM;
196 return (st.st_mode & S_IWRITE || S_ISDIR (st.st_mode));
197 #else /* not MSDOS */
198 bool res = faccessat (AT_FDCWD, filename, amode, AT_EACCESS) == 0;
199 #ifdef CYGWIN
200 /* faccessat may have returned failure because Cygwin couldn't
201 determine the file's UID or GID; if so, we return success. */
202 if (!res)
204 int faccessat_errno = errno;
205 struct stat st;
206 if (stat (filename, &st) < 0)
207 return 0;
208 res = (st.st_uid == -1 || st.st_gid == -1);
209 errno = faccessat_errno;
211 #endif /* CYGWIN */
212 return res;
213 #endif /* not MSDOS */
216 /* Signal a file-access failure. STRING describes the failure,
217 NAME the file involved, and ERRORNO the errno value.
219 If NAME is neither null nor a pair, package it up as a singleton
220 list before reporting it; this saves report_file_errno's caller the
221 trouble of preserving errno before calling list1. */
223 void
224 report_file_errno (char const *string, Lisp_Object name, int errorno)
226 Lisp_Object data = CONSP (name) || NILP (name) ? name : list1 (name);
227 Lisp_Object errstring;
228 char *str;
230 synchronize_system_messages_locale ();
231 str = strerror (errorno);
232 errstring = code_convert_string_norecord (build_unibyte_string (str),
233 Vlocale_coding_system, 0);
235 while (1)
236 switch (errorno)
238 case EEXIST:
239 xsignal (Qfile_already_exists, Fcons (errstring, data));
240 break;
241 default:
242 /* System error messages are capitalized. Downcase the initial
243 unless it is followed by a slash. (The slash case caters to
244 error messages that begin with "I/O" or, in German, "E/A".) */
245 if (STRING_MULTIBYTE (errstring)
246 && ! EQ (Faref (errstring, make_number (1)), make_number ('/')))
248 int c;
250 str = SSDATA (errstring);
251 c = STRING_CHAR ((unsigned char *) str);
252 Faset (errstring, make_number (0), make_number (downcase (c)));
255 xsignal (Qfile_error,
256 Fcons (build_string (string), Fcons (errstring, data)));
260 /* Signal a file-access failure that set errno. STRING describes the
261 failure, NAME the file involved. When invoking this function, take
262 care to not use arguments such as build_string ("foo") that involve
263 side effects that may set errno. */
265 void
266 report_file_error (char const *string, Lisp_Object name)
268 report_file_errno (string, name, errno);
271 void
272 close_file_unwind (int fd)
274 emacs_close (fd);
277 void
278 fclose_unwind (void *arg)
280 FILE *stream = arg;
281 fclose (stream);
284 /* Restore point, having saved it as a marker. */
286 void
287 restore_point_unwind (Lisp_Object location)
289 Fgoto_char (location);
290 unchain_marker (XMARKER (location));
294 static Lisp_Object Qexpand_file_name;
295 static Lisp_Object Qsubstitute_in_file_name;
296 static Lisp_Object Qdirectory_file_name;
297 static Lisp_Object Qfile_name_directory;
298 static Lisp_Object Qfile_name_nondirectory;
299 static Lisp_Object Qunhandled_file_name_directory;
300 static Lisp_Object Qfile_name_as_directory;
301 static Lisp_Object Qcopy_file;
302 static Lisp_Object Qmake_directory_internal;
303 static Lisp_Object Qmake_directory;
304 static Lisp_Object Qdelete_directory_internal;
305 Lisp_Object Qdelete_file;
306 static Lisp_Object Qrename_file;
307 static Lisp_Object Qadd_name_to_file;
308 static Lisp_Object Qmake_symbolic_link;
309 Lisp_Object Qfile_exists_p;
310 static Lisp_Object Qfile_executable_p;
311 static Lisp_Object Qfile_readable_p;
312 static Lisp_Object Qfile_writable_p;
313 static Lisp_Object Qfile_symlink_p;
314 static Lisp_Object Qaccess_file;
315 Lisp_Object Qfile_directory_p;
316 static Lisp_Object Qfile_regular_p;
317 static Lisp_Object Qfile_accessible_directory_p;
318 static Lisp_Object Qfile_modes;
319 static Lisp_Object Qset_file_modes;
320 static Lisp_Object Qset_file_times;
321 static Lisp_Object Qfile_selinux_context;
322 static Lisp_Object Qset_file_selinux_context;
323 static Lisp_Object Qfile_acl;
324 static Lisp_Object Qset_file_acl;
325 static Lisp_Object Qfile_newer_than_file_p;
326 Lisp_Object Qinsert_file_contents;
327 Lisp_Object Qwrite_region;
328 static Lisp_Object Qverify_visited_file_modtime;
329 static Lisp_Object Qset_visited_file_modtime;
331 DEFUN ("find-file-name-handler", Ffind_file_name_handler,
332 Sfind_file_name_handler, 2, 2, 0,
333 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
334 Otherwise, return nil.
335 A file name is handled if one of the regular expressions in
336 `file-name-handler-alist' matches it.
338 If OPERATION equals `inhibit-file-name-operation', then we ignore
339 any handlers that are members of `inhibit-file-name-handlers',
340 but we still do run any other handlers. This lets handlers
341 use the standard functions without calling themselves recursively. */)
342 (Lisp_Object filename, Lisp_Object operation)
344 /* This function must not munge the match data. */
345 Lisp_Object chain, inhibited_handlers, result;
346 ptrdiff_t pos = -1;
348 result = Qnil;
349 CHECK_STRING (filename);
351 if (EQ (operation, Vinhibit_file_name_operation))
352 inhibited_handlers = Vinhibit_file_name_handlers;
353 else
354 inhibited_handlers = Qnil;
356 for (chain = Vfile_name_handler_alist; CONSP (chain);
357 chain = XCDR (chain))
359 Lisp_Object elt;
360 elt = XCAR (chain);
361 if (CONSP (elt))
363 Lisp_Object string = XCAR (elt);
364 ptrdiff_t match_pos;
365 Lisp_Object handler = XCDR (elt);
366 Lisp_Object operations = Qnil;
368 if (SYMBOLP (handler))
369 operations = Fget (handler, Qoperations);
371 if (STRINGP (string)
372 && (match_pos = fast_string_match (string, filename)) > pos
373 && (NILP (operations) || ! NILP (Fmemq (operation, operations))))
375 Lisp_Object tem;
377 handler = XCDR (elt);
378 tem = Fmemq (handler, inhibited_handlers);
379 if (NILP (tem))
381 result = handler;
382 pos = match_pos;
387 QUIT;
389 return result;
392 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
393 1, 1, 0,
394 doc: /* Return the directory component in file name FILENAME.
395 Return nil if FILENAME does not include a directory.
396 Otherwise return a directory name.
397 Given a Unix syntax file name, returns a string ending in slash. */)
398 (Lisp_Object filename)
400 Lisp_Object handler;
402 CHECK_STRING (filename);
404 /* If the file name has special constructs in it,
405 call the corresponding file handler. */
406 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
407 if (!NILP (handler))
409 Lisp_Object handled_name = call2 (handler, Qfile_name_directory,
410 filename);
411 return STRINGP (handled_name) ? handled_name : Qnil;
414 char *beg = SSDATA (filename);
415 char const *p = beg + SBYTES (filename);
417 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
418 #ifdef DOS_NT
419 /* only recognize drive specifier at the beginning */
420 && !(p[-1] == ':'
421 /* handle the "/:d:foo" and "/:foo" cases correctly */
422 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
423 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
424 #endif
425 ) p--;
427 if (p == beg)
428 return Qnil;
429 #ifdef DOS_NT
430 /* Expansion of "c:" to drive and default directory. */
431 Lisp_Object tem_fn;
432 USE_SAFE_ALLOCA;
433 SAFE_ALLOCA_STRING (beg, filename);
434 p = beg + (p - SSDATA (filename));
436 if (p[-1] == ':')
438 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
439 char *res = alloca (MAXPATHLEN + 1);
440 char *r = res;
442 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
444 memcpy (res, beg, 2);
445 beg += 2;
446 r += 2;
449 if (getdefdir (c_toupper (*beg) - 'A' + 1, r))
451 size_t l = strlen (res);
453 if (l > 3 || !IS_DIRECTORY_SEP (res[l - 1]))
454 strcat (res, "/");
455 beg = res;
456 p = beg + strlen (beg);
457 dostounix_filename (beg);
458 tem_fn = make_specified_string (beg, -1, p - beg,
459 STRING_MULTIBYTE (filename));
461 else
462 tem_fn = make_specified_string (beg - 2, -1, p - beg + 2,
463 STRING_MULTIBYTE (filename));
465 else if (STRING_MULTIBYTE (filename))
467 tem_fn = make_specified_string (beg, -1, p - beg, 1);
468 dostounix_filename (SSDATA (tem_fn));
469 #ifdef WINDOWSNT
470 if (!NILP (Vw32_downcase_file_names))
471 tem_fn = Fdowncase (tem_fn);
472 #endif
474 else
476 dostounix_filename (beg);
477 tem_fn = make_specified_string (beg, -1, p - beg, 0);
479 SAFE_FREE ();
480 return tem_fn;
481 #else /* DOS_NT */
482 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
483 #endif /* DOS_NT */
486 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
487 Sfile_name_nondirectory, 1, 1, 0,
488 doc: /* Return file name FILENAME sans its directory.
489 For example, in a Unix-syntax file name,
490 this is everything after the last slash,
491 or the entire name if it contains no slash. */)
492 (Lisp_Object filename)
494 register const char *beg, *p, *end;
495 Lisp_Object handler;
497 CHECK_STRING (filename);
499 /* If the file name has special constructs in it,
500 call the corresponding file handler. */
501 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
502 if (!NILP (handler))
504 Lisp_Object handled_name = call2 (handler, Qfile_name_nondirectory,
505 filename);
506 if (STRINGP (handled_name))
507 return handled_name;
508 error ("Invalid handler in `file-name-handler-alist'");
511 beg = SSDATA (filename);
512 end = p = beg + SBYTES (filename);
514 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
515 #ifdef DOS_NT
516 /* only recognize drive specifier at beginning */
517 && !(p[-1] == ':'
518 /* handle the "/:d:foo" case correctly */
519 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
520 #endif
522 p--;
524 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
527 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
528 Sunhandled_file_name_directory, 1, 1, 0,
529 doc: /* Return a directly usable directory name somehow associated with FILENAME.
530 A `directly usable' directory name is one that may be used without the
531 intervention of any file handler.
532 If FILENAME is a directly usable file itself, return
533 \(file-name-directory FILENAME).
534 If FILENAME refers to a file which is not accessible from a local process,
535 then this should return nil.
536 The `call-process' and `start-process' functions use this function to
537 get a current directory to run processes in. */)
538 (Lisp_Object filename)
540 Lisp_Object handler;
542 /* If the file name has special constructs in it,
543 call the corresponding file handler. */
544 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
545 if (!NILP (handler))
547 Lisp_Object handled_name = call2 (handler, Qunhandled_file_name_directory,
548 filename);
549 return STRINGP (handled_name) ? handled_name : Qnil;
552 return Ffile_name_directory (filename);
555 /* Maximum number of bytes that DST will be longer than SRC
556 in file_name_as_directory. This occurs when SRCLEN == 0. */
557 enum { file_name_as_directory_slop = 2 };
559 /* Convert from file name SRC of length SRCLEN to directory name in
560 DST. MULTIBYTE non-zero means the file name in SRC is a multibyte
561 string. On UNIX, just make sure there is a terminating /. Return
562 the length of DST in bytes. */
564 static ptrdiff_t
565 file_name_as_directory (char *dst, const char *src, ptrdiff_t srclen,
566 bool multibyte)
568 if (srclen == 0)
570 dst[0] = '.';
571 dst[1] = '/';
572 dst[2] = '\0';
573 return 2;
576 memcpy (dst, src, srclen);
577 if (!IS_DIRECTORY_SEP (dst[srclen - 1]))
578 dst[srclen++] = DIRECTORY_SEP;
579 dst[srclen] = 0;
580 #ifdef DOS_NT
581 dostounix_filename (dst);
582 #endif
583 return srclen;
586 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
587 Sfile_name_as_directory, 1, 1, 0,
588 doc: /* Return a string representing the file name FILE interpreted as a 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 The result can be used as the value of `default-directory'
592 or passed as second argument to `expand-file-name'.
593 For a Unix-syntax file name, just appends a slash. */)
594 (Lisp_Object file)
596 char *buf;
597 ptrdiff_t length;
598 Lisp_Object handler, val;
599 USE_SAFE_ALLOCA;
601 CHECK_STRING (file);
602 if (NILP (file))
603 return Qnil;
605 /* If the file name has special constructs in it,
606 call the corresponding file handler. */
607 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
608 if (!NILP (handler))
610 Lisp_Object handled_name = call2 (handler, Qfile_name_as_directory,
611 file);
612 if (STRINGP (handled_name))
613 return handled_name;
614 error ("Invalid handler in `file-name-handler-alist'");
617 #ifdef WINDOWSNT
618 if (!NILP (Vw32_downcase_file_names))
619 file = Fdowncase (file);
620 #endif
621 buf = SAFE_ALLOCA (SBYTES (file) + file_name_as_directory_slop + 1);
622 length = file_name_as_directory (buf, SSDATA (file), SBYTES (file),
623 STRING_MULTIBYTE (file));
624 val = make_specified_string (buf, -1, length, STRING_MULTIBYTE (file));
625 SAFE_FREE ();
626 return val;
629 /* Convert from directory name SRC of length SRCLEN to file name in
630 DST. MULTIBYTE non-zero means the file name in SRC is a multibyte
631 string. On UNIX, just make sure there isn't a terminating /.
632 Return the length of DST in bytes. */
634 static ptrdiff_t
635 directory_file_name (char *dst, char *src, ptrdiff_t srclen, bool multibyte)
637 /* Process as Unix format: just remove any final slash.
638 But leave "/" and "//" unchanged. */
639 while (srclen > 1
640 #ifdef DOS_NT
641 && !IS_ANY_SEP (src[srclen - 2])
642 #endif
643 && IS_DIRECTORY_SEP (src[srclen - 1])
644 && ! (srclen == 2 && IS_DIRECTORY_SEP (src[0])))
645 srclen--;
647 memcpy (dst, src, srclen);
648 dst[srclen] = 0;
649 #ifdef DOS_NT
650 dostounix_filename (dst);
651 #endif
652 return srclen;
655 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
656 1, 1, 0,
657 doc: /* Returns the file name of the directory named DIRECTORY.
658 This is the name of the file that holds the data for the directory DIRECTORY.
659 This operation exists because a directory is also a file, but its name as
660 a directory is different from its name as a file.
661 In Unix-syntax, this function just removes the final slash. */)
662 (Lisp_Object directory)
664 char *buf;
665 ptrdiff_t length;
666 Lisp_Object handler, val;
667 USE_SAFE_ALLOCA;
669 CHECK_STRING (directory);
671 if (NILP (directory))
672 return Qnil;
674 /* If the file name has special constructs in it,
675 call the corresponding file handler. */
676 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
677 if (!NILP (handler))
679 Lisp_Object handled_name = call2 (handler, Qdirectory_file_name,
680 directory);
681 if (STRINGP (handled_name))
682 return handled_name;
683 error ("Invalid handler in `file-name-handler-alist'");
686 #ifdef WINDOWSNT
687 if (!NILP (Vw32_downcase_file_names))
688 directory = Fdowncase (directory);
689 #endif
690 buf = SAFE_ALLOCA (SBYTES (directory) + 1);
691 length = directory_file_name (buf, SSDATA (directory), SBYTES (directory),
692 STRING_MULTIBYTE (directory));
693 val = make_specified_string (buf, -1, length, STRING_MULTIBYTE (directory));
694 SAFE_FREE ();
695 return val;
698 static const char make_temp_name_tbl[64] =
700 'A','B','C','D','E','F','G','H',
701 'I','J','K','L','M','N','O','P',
702 'Q','R','S','T','U','V','W','X',
703 'Y','Z','a','b','c','d','e','f',
704 'g','h','i','j','k','l','m','n',
705 'o','p','q','r','s','t','u','v',
706 'w','x','y','z','0','1','2','3',
707 '4','5','6','7','8','9','-','_'
710 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
712 /* Value is a temporary file name starting with PREFIX, a string.
714 The Emacs process number forms part of the result, so there is
715 no danger of generating a name being used by another process.
716 In addition, this function makes an attempt to choose a name
717 which has no existing file. To make this work, PREFIX should be
718 an absolute file name.
720 BASE64_P means add the pid as 3 characters in base64
721 encoding. In this case, 6 characters will be added to PREFIX to
722 form the file name. Otherwise, if Emacs is running on a system
723 with long file names, add the pid as a decimal number.
725 This function signals an error if no unique file name could be
726 generated. */
728 Lisp_Object
729 make_temp_name (Lisp_Object prefix, bool base64_p)
731 Lisp_Object val, encoded_prefix;
732 ptrdiff_t len;
733 printmax_t pid;
734 char *p, *data;
735 char pidbuf[INT_BUFSIZE_BOUND (printmax_t)];
736 int pidlen;
738 CHECK_STRING (prefix);
740 /* VAL is created by adding 6 characters to PREFIX. The first
741 three are the PID of this process, in base 64, and the second
742 three are incremented if the file already exists. This ensures
743 262144 unique file names per PID per PREFIX. */
745 pid = getpid ();
747 if (base64_p)
749 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
750 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
751 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
752 pidlen = 3;
754 else
756 #ifdef HAVE_LONG_FILE_NAMES
757 pidlen = sprintf (pidbuf, "%"pMd, pid);
758 #else
759 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
760 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
761 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
762 pidlen = 3;
763 #endif
766 encoded_prefix = ENCODE_FILE (prefix);
767 len = SBYTES (encoded_prefix);
768 val = make_uninit_string (len + 3 + pidlen);
769 data = SSDATA (val);
770 memcpy (data, SSDATA (encoded_prefix), len);
771 p = data + len;
773 memcpy (p, pidbuf, pidlen);
774 p += pidlen;
776 /* Here we try to minimize useless stat'ing when this function is
777 invoked many times successively with the same PREFIX. We achieve
778 this by initializing count to a random value, and incrementing it
779 afterwards.
781 We don't want make-temp-name to be called while dumping,
782 because then make_temp_name_count_initialized_p would get set
783 and then make_temp_name_count would not be set when Emacs starts. */
785 if (!make_temp_name_count_initialized_p)
787 make_temp_name_count = time (NULL);
788 make_temp_name_count_initialized_p = 1;
791 while (1)
793 unsigned num = make_temp_name_count;
795 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
796 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
797 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
799 /* Poor man's congruential RN generator. Replace with
800 ++make_temp_name_count for debugging. */
801 make_temp_name_count += 25229;
802 make_temp_name_count %= 225307;
804 if (!check_existing (data))
806 /* We want to return only if errno is ENOENT. */
807 if (errno == ENOENT)
808 return DECODE_FILE (val);
809 else
810 /* The error here is dubious, but there is little else we
811 can do. The alternatives are to return nil, which is
812 as bad as (and in many cases worse than) throwing the
813 error, or to ignore the error, which will likely result
814 in looping through 225307 stat's, which is not only
815 dog-slow, but also useless since eventually nil would
816 have to be returned anyway. */
817 report_file_error ("Cannot create temporary name for prefix",
818 prefix);
819 /* not reached */
825 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
826 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
827 The Emacs process number forms part of the result,
828 so there is no danger of generating a name being used by another process.
830 In addition, this function makes an attempt to choose a name
831 which has no existing file. To make this work,
832 PREFIX should be an absolute file name.
834 There is a race condition between calling `make-temp-name' and creating the
835 file which opens all kinds of security holes. For that reason, you should
836 probably use `make-temp-file' instead, except in three circumstances:
838 * If you are creating the file in the user's home directory.
839 * If you are creating a directory rather than an ordinary file.
840 * If you are taking special precautions as `make-temp-file' does. */)
841 (Lisp_Object prefix)
843 return make_temp_name (prefix, 0);
846 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
847 doc: /* Convert filename NAME to absolute, and canonicalize it.
848 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
849 \(does not start with slash or tilde); both the directory name and
850 a directory's file name are accepted. If DEFAULT-DIRECTORY is nil or
851 missing, the current buffer's value of `default-directory' is used.
852 NAME should be a string that is a valid file name for the underlying
853 filesystem.
854 File name components that are `.' are removed, and
855 so are file name components followed by `..', along with the `..' itself;
856 note that these simplifications are done without checking the resulting
857 file names in the file system.
858 Multiple consecutive slashes are collapsed into a single slash,
859 except at the beginning of the file name when they are significant (e.g.,
860 UNC file names on MS-Windows.)
861 An initial `~/' expands to your home directory.
862 An initial `~USER/' expands to USER's home directory.
863 See also the function `substitute-in-file-name'.
865 For technical reasons, this function can return correct but
866 non-intuitive results for the root directory; for instance,
867 \(expand-file-name ".." "/") returns "/..". For this reason, use
868 \(directory-file-name (file-name-directory dirname)) to traverse a
869 filesystem tree, not (expand-file-name ".." dirname). */)
870 (Lisp_Object name, Lisp_Object default_directory)
872 /* These point to SDATA and need to be careful with string-relocation
873 during GC (via DECODE_FILE). */
874 char *nm;
875 char *nmlim;
876 const char *newdir;
877 const char *newdirlim;
878 /* This should only point to alloca'd data. */
879 char *target;
881 ptrdiff_t tlen;
882 struct passwd *pw;
883 #ifdef DOS_NT
884 int drive = 0;
885 bool collapse_newdir = true;
886 bool is_escaped = 0;
887 #endif /* DOS_NT */
888 ptrdiff_t length, nbytes;
889 Lisp_Object handler, result, handled_name;
890 bool multibyte;
891 Lisp_Object hdir;
892 USE_SAFE_ALLOCA;
894 CHECK_STRING (name);
896 /* If the file name has special constructs in it,
897 call the corresponding file handler. */
898 handler = Ffind_file_name_handler (name, Qexpand_file_name);
899 if (!NILP (handler))
901 handled_name = call3 (handler, Qexpand_file_name,
902 name, default_directory);
903 if (STRINGP (handled_name))
904 return handled_name;
905 error ("Invalid handler in `file-name-handler-alist'");
909 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
910 if (NILP (default_directory))
911 default_directory = BVAR (current_buffer, directory);
912 if (! STRINGP (default_directory))
914 #ifdef DOS_NT
915 /* "/" is not considered a root directory on DOS_NT, so using "/"
916 here causes an infinite recursion in, e.g., the following:
918 (let (default-directory)
919 (expand-file-name "a"))
921 To avoid this, we set default_directory to the root of the
922 current drive. */
923 default_directory = build_string (emacs_root_dir ());
924 #else
925 default_directory = build_string ("/");
926 #endif
929 if (!NILP (default_directory))
931 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
932 if (!NILP (handler))
934 handled_name = call3 (handler, Qexpand_file_name,
935 name, default_directory);
936 if (STRINGP (handled_name))
937 return handled_name;
938 error ("Invalid handler in `file-name-handler-alist'");
943 char *o = SSDATA (default_directory);
945 /* Make sure DEFAULT_DIRECTORY is properly expanded.
946 It would be better to do this down below where we actually use
947 default_directory. Unfortunately, calling Fexpand_file_name recursively
948 could invoke GC, and the strings might be relocated. This would
949 be annoying because we have pointers into strings lying around
950 that would need adjusting, and people would add new pointers to
951 the code and forget to adjust them, resulting in intermittent bugs.
952 Putting this call here avoids all that crud.
954 The EQ test avoids infinite recursion. */
955 if (! NILP (default_directory) && !EQ (default_directory, name)
956 /* Save time in some common cases - as long as default_directory
957 is not relative, it can be canonicalized with name below (if it
958 is needed at all) without requiring it to be expanded now. */
959 #ifdef DOS_NT
960 /* Detect MSDOS file names with drive specifiers. */
961 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1])
962 && IS_DIRECTORY_SEP (o[2]))
963 #ifdef WINDOWSNT
964 /* Detect Windows file names in UNC format. */
965 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
966 #endif
967 #else /* not DOS_NT */
968 /* Detect Unix absolute file names (/... alone is not absolute on
969 DOS or Windows). */
970 && ! (IS_DIRECTORY_SEP (o[0]))
971 #endif /* not DOS_NT */
974 struct gcpro gcpro1;
976 GCPRO1 (name);
977 default_directory = Fexpand_file_name (default_directory, Qnil);
978 UNGCPRO;
981 multibyte = STRING_MULTIBYTE (name);
982 if (multibyte != STRING_MULTIBYTE (default_directory))
984 if (multibyte)
986 unsigned char *p = SDATA (name);
988 while (*p && ASCII_CHAR_P (*p))
989 p++;
990 if (*p == '\0')
992 /* NAME is a pure ASCII string, and DEFAULT_DIRECTORY is
993 unibyte. Do not convert DEFAULT_DIRECTORY to
994 multibyte; instead, convert NAME to a unibyte string,
995 so that the result of this function is also a unibyte
996 string. This is needed during bootstrapping and
997 dumping, when Emacs cannot decode file names, because
998 the locale environment is not set up. */
999 name = make_unibyte_string (SSDATA (name), SBYTES (name));
1000 multibyte = 0;
1002 else
1003 default_directory = string_to_multibyte (default_directory);
1005 else
1007 name = string_to_multibyte (name);
1008 multibyte = 1;
1012 #ifdef WINDOWSNT
1013 if (!NILP (Vw32_downcase_file_names))
1014 default_directory = Fdowncase (default_directory);
1015 #endif
1017 /* Make a local copy of NAME to protect it from GC in DECODE_FILE below. */
1018 SAFE_ALLOCA_STRING (nm, name);
1019 nmlim = nm + SBYTES (name);
1021 #ifdef DOS_NT
1022 /* Note if special escape prefix is present, but remove for now. */
1023 if (nm[0] == '/' && nm[1] == ':')
1025 is_escaped = 1;
1026 nm += 2;
1029 /* Find and remove drive specifier if present; this makes nm absolute
1030 even if the rest of the name appears to be relative. Only look for
1031 drive specifier at the beginning. */
1032 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
1034 drive = (unsigned char) nm[0];
1035 nm += 2;
1038 #ifdef WINDOWSNT
1039 /* If we see "c://somedir", we want to strip the first slash after the
1040 colon when stripping the drive letter. Otherwise, this expands to
1041 "//somedir". */
1042 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1043 nm++;
1045 /* Discard any previous drive specifier if nm is now in UNC format. */
1046 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])
1047 && !IS_DIRECTORY_SEP (nm[2]))
1048 drive = 0;
1049 #endif /* WINDOWSNT */
1050 #endif /* DOS_NT */
1052 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
1053 none are found, we can probably return right away. We will avoid
1054 allocating a new string if name is already fully expanded. */
1055 if (
1056 IS_DIRECTORY_SEP (nm[0])
1057 #ifdef MSDOS
1058 && drive && !is_escaped
1059 #endif
1060 #ifdef WINDOWSNT
1061 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
1062 #endif
1065 /* If it turns out that the filename we want to return is just a
1066 suffix of FILENAME, we don't need to go through and edit
1067 things; we just need to construct a new string using data
1068 starting at the middle of FILENAME. If we set LOSE, that
1069 means we've discovered that we can't do that cool trick. */
1070 bool lose = 0;
1071 char *p = nm;
1073 while (*p)
1075 /* Since we know the name is absolute, we can assume that each
1076 element starts with a "/". */
1078 /* "." and ".." are hairy. */
1079 if (IS_DIRECTORY_SEP (p[0])
1080 && p[1] == '.'
1081 && (IS_DIRECTORY_SEP (p[2])
1082 || p[2] == 0
1083 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
1084 || p[3] == 0))))
1085 lose = 1;
1086 /* Replace multiple slashes with a single one, except
1087 leave leading "//" alone. */
1088 else if (IS_DIRECTORY_SEP (p[0])
1089 && IS_DIRECTORY_SEP (p[1])
1090 && (p != nm || IS_DIRECTORY_SEP (p[2])))
1091 lose = 1;
1092 p++;
1094 if (!lose)
1096 #ifdef DOS_NT
1097 /* Make sure directories are all separated with /, but
1098 avoid allocation of a new string when not required. */
1099 dostounix_filename (nm);
1100 #ifdef WINDOWSNT
1101 if (IS_DIRECTORY_SEP (nm[1]))
1103 if (strcmp (nm, SSDATA (name)) != 0)
1104 name = make_specified_string (nm, -1, nmlim - nm, multibyte);
1106 else
1107 #endif
1108 /* Drive must be set, so this is okay. */
1109 if (strcmp (nm - 2, SSDATA (name)) != 0)
1111 char temp[] = " :";
1113 name = make_specified_string (nm, -1, p - nm, multibyte);
1114 temp[0] = DRIVE_LETTER (drive);
1115 AUTO_STRING (drive_prefix, temp);
1116 name = concat2 (drive_prefix, name);
1118 #ifdef WINDOWSNT
1119 if (!NILP (Vw32_downcase_file_names))
1120 name = Fdowncase (name);
1121 #endif
1122 #else /* not DOS_NT */
1123 if (strcmp (nm, SSDATA (name)) != 0)
1124 name = make_specified_string (nm, -1, nmlim - nm, multibyte);
1125 #endif /* not DOS_NT */
1126 SAFE_FREE ();
1127 return name;
1131 /* At this point, nm might or might not be an absolute file name. We
1132 need to expand ~ or ~user if present, otherwise prefix nm with
1133 default_directory if nm is not absolute, and finally collapse /./
1134 and /foo/../ sequences.
1136 We set newdir to be the appropriate prefix if one is needed:
1137 - the relevant user directory if nm starts with ~ or ~user
1138 - the specified drive's working dir (DOS/NT only) if nm does not
1139 start with /
1140 - the value of default_directory.
1142 Note that these prefixes are not guaranteed to be absolute (except
1143 for the working dir of a drive). Therefore, to ensure we always
1144 return an absolute name, if the final prefix is not absolute we
1145 append it to the current working directory. */
1147 newdir = newdirlim = 0;
1149 if (nm[0] == '~') /* prefix ~ */
1151 if (IS_DIRECTORY_SEP (nm[1])
1152 || nm[1] == 0) /* ~ by itself */
1154 Lisp_Object tem;
1156 if (!(newdir = egetenv ("HOME")))
1157 newdir = newdirlim = "";
1158 nm++;
1159 /* `egetenv' may return a unibyte string, which will bite us since
1160 we expect the directory to be multibyte. */
1161 #ifdef WINDOWSNT
1162 if (newdir[0])
1164 char newdir_utf8[MAX_UTF8_PATH];
1166 filename_from_ansi (newdir, newdir_utf8);
1167 tem = make_unibyte_string (newdir_utf8, strlen (newdir_utf8));
1169 else
1170 #endif
1171 tem = build_string (newdir);
1172 newdirlim = newdir + SBYTES (tem);
1173 if (multibyte && !STRING_MULTIBYTE (tem))
1175 hdir = DECODE_FILE (tem);
1176 newdir = SSDATA (hdir);
1177 newdirlim = newdir + SBYTES (hdir);
1179 #ifdef DOS_NT
1180 collapse_newdir = false;
1181 #endif
1183 else /* ~user/filename */
1185 char *o, *p;
1186 for (p = nm; *p && !IS_DIRECTORY_SEP (*p); p++)
1187 continue;
1188 o = SAFE_ALLOCA (p - nm + 1);
1189 memcpy (o, nm, p - nm);
1190 o[p - nm] = 0;
1192 block_input ();
1193 pw = getpwnam (o + 1);
1194 unblock_input ();
1195 if (pw)
1197 Lisp_Object tem;
1199 newdir = pw->pw_dir;
1200 /* `getpwnam' may return a unibyte string, which will
1201 bite us since we expect the directory to be
1202 multibyte. */
1203 tem = make_unibyte_string (newdir, strlen (newdir));
1204 newdirlim = newdir + SBYTES (tem);
1205 if (multibyte && !STRING_MULTIBYTE (tem))
1207 hdir = DECODE_FILE (tem);
1208 newdir = SSDATA (hdir);
1209 newdirlim = newdir + SBYTES (hdir);
1211 nm = p;
1212 #ifdef DOS_NT
1213 collapse_newdir = false;
1214 #endif
1217 /* If we don't find a user of that name, leave the name
1218 unchanged; don't move nm forward to p. */
1222 #ifdef DOS_NT
1223 /* On DOS and Windows, nm is absolute if a drive name was specified;
1224 use the drive's current directory as the prefix if needed. */
1225 if (!newdir && drive)
1227 /* Get default directory if needed to make nm absolute. */
1228 char *adir = NULL;
1229 if (!IS_DIRECTORY_SEP (nm[0]))
1231 adir = alloca (MAXPATHLEN + 1);
1232 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
1233 adir = NULL;
1234 else if (multibyte)
1236 Lisp_Object tem = build_string (adir);
1238 tem = DECODE_FILE (tem);
1239 newdirlim = adir + SBYTES (tem);
1240 memcpy (adir, SSDATA (tem), SBYTES (tem) + 1);
1242 else
1243 newdirlim = adir + strlen (adir);
1245 if (!adir)
1247 /* Either nm starts with /, or drive isn't mounted. */
1248 adir = alloca (4);
1249 adir[0] = DRIVE_LETTER (drive);
1250 adir[1] = ':';
1251 adir[2] = '/';
1252 adir[3] = 0;
1253 newdirlim = adir + 3;
1255 newdir = adir;
1257 #endif /* DOS_NT */
1259 /* Finally, if no prefix has been specified and nm is not absolute,
1260 then it must be expanded relative to default_directory. */
1262 if (1
1263 #ifndef DOS_NT
1264 /* /... alone is not absolute on DOS and Windows. */
1265 && !IS_DIRECTORY_SEP (nm[0])
1266 #endif
1267 #ifdef WINDOWSNT
1268 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])
1269 && !IS_DIRECTORY_SEP (nm[2]))
1270 #endif
1271 && !newdir)
1273 newdir = SSDATA (default_directory);
1274 newdirlim = newdir + SBYTES (default_directory);
1275 #ifdef DOS_NT
1276 /* Note if special escape prefix is present, but remove for now. */
1277 if (newdir[0] == '/' && newdir[1] == ':')
1279 is_escaped = 1;
1280 newdir += 2;
1282 #endif
1285 #ifdef DOS_NT
1286 if (newdir)
1288 /* First ensure newdir is an absolute name. */
1289 if (
1290 /* Detect MSDOS file names with drive specifiers. */
1291 ! (IS_DRIVE (newdir[0])
1292 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1293 #ifdef WINDOWSNT
1294 /* Detect Windows file names in UNC format. */
1295 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1])
1296 && !IS_DIRECTORY_SEP (newdir[2]))
1297 #endif
1300 /* Effectively, let newdir be (expand-file-name newdir cwd).
1301 Because of the admonition against calling expand-file-name
1302 when we have pointers into lisp strings, we accomplish this
1303 indirectly by prepending newdir to nm if necessary, and using
1304 cwd (or the wd of newdir's drive) as the new newdir. */
1305 char *adir;
1306 #ifdef WINDOWSNT
1307 const int adir_size = MAX_UTF8_PATH;
1308 #else
1309 const int adir_size = MAXPATHLEN + 1;
1310 #endif
1312 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1314 drive = (unsigned char) newdir[0];
1315 newdir += 2;
1317 if (!IS_DIRECTORY_SEP (nm[0]))
1319 ptrdiff_t nmlen = nmlim - nm;
1320 ptrdiff_t newdirlen = newdirlim - newdir;
1321 char *tmp = alloca (newdirlen + file_name_as_directory_slop
1322 + nmlen + 1);
1323 ptrdiff_t dlen = file_name_as_directory (tmp, newdir, newdirlen,
1324 multibyte);
1325 memcpy (tmp + dlen, nm, nmlen + 1);
1326 nm = tmp;
1327 nmlim = nm + dlen + nmlen;
1329 adir = alloca (adir_size);
1330 if (drive)
1332 if (!getdefdir (c_toupper (drive) - 'A' + 1, adir))
1333 strcpy (adir, "/");
1335 else
1336 getcwd (adir, adir_size);
1337 if (multibyte)
1339 Lisp_Object tem = build_string (adir);
1341 tem = DECODE_FILE (tem);
1342 newdirlim = adir + SBYTES (tem);
1343 memcpy (adir, SSDATA (tem), SBYTES (tem) + 1);
1345 else
1346 newdirlim = adir + strlen (adir);
1347 newdir = adir;
1350 /* Strip off drive name from prefix, if present. */
1351 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1]))
1353 drive = newdir[0];
1354 newdir += 2;
1357 /* Keep only a prefix from newdir if nm starts with slash
1358 (//server/share for UNC, nothing otherwise). */
1359 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1361 #ifdef WINDOWSNT
1362 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1])
1363 && !IS_DIRECTORY_SEP (newdir[2]))
1365 char *adir = strcpy (alloca (newdirlim - newdir + 1), newdir);
1366 char *p = adir + 2;
1367 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1368 p++;
1369 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1370 *p = 0;
1371 newdir = adir;
1372 newdirlim = newdir + strlen (adir);
1374 else
1375 #endif
1376 newdir = newdirlim = "";
1379 #endif /* DOS_NT */
1381 /* Ignore any slash at the end of newdir, unless newdir is
1382 just "/" or "//". */
1383 length = newdirlim - newdir;
1384 while (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1385 && ! (length == 2 && IS_DIRECTORY_SEP (newdir[0])))
1386 length--;
1388 /* Now concatenate the directory and name to new space in the stack frame. */
1389 tlen = length + file_name_as_directory_slop + (nmlim - nm) + 1;
1390 eassert (tlen > file_name_as_directory_slop + 1);
1391 #ifdef DOS_NT
1392 /* Reserve space for drive specifier and escape prefix, since either
1393 or both may need to be inserted. (The Microsoft x86 compiler
1394 produces incorrect code if the following two lines are combined.) */
1395 target = alloca (tlen + 4);
1396 target += 4;
1397 #else /* not DOS_NT */
1398 target = SAFE_ALLOCA (tlen);
1399 #endif /* not DOS_NT */
1400 *target = 0;
1401 nbytes = 0;
1403 if (newdir)
1405 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1407 #ifdef DOS_NT
1408 /* If newdir is effectively "C:/", then the drive letter will have
1409 been stripped and newdir will be "/". Concatenating with an
1410 absolute directory in nm produces "//", which will then be
1411 incorrectly treated as a network share. Ignore newdir in
1412 this case (keeping the drive letter). */
1413 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1414 && newdir[1] == '\0'))
1415 #endif
1417 memcpy (target, newdir, length);
1418 target[length] = 0;
1419 nbytes = length;
1422 else
1423 nbytes = file_name_as_directory (target, newdir, length, multibyte);
1426 memcpy (target + nbytes, nm, nmlim - nm + 1);
1428 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1429 appear. */
1431 char *p = target;
1432 char *o = target;
1434 while (*p)
1436 if (!IS_DIRECTORY_SEP (*p))
1438 *o++ = *p++;
1440 else if (p[1] == '.'
1441 && (IS_DIRECTORY_SEP (p[2])
1442 || p[2] == 0))
1444 /* If "/." is the entire filename, keep the "/". Otherwise,
1445 just delete the whole "/.". */
1446 if (o == target && p[2] == '\0')
1447 *o++ = *p;
1448 p += 2;
1450 else if (p[1] == '.' && p[2] == '.'
1451 /* `/../' is the "superroot" on certain file systems.
1452 Turned off on DOS_NT systems because they have no
1453 "superroot" and because this causes us to produce
1454 file names like "d:/../foo" which fail file-related
1455 functions of the underlying OS. (To reproduce, try a
1456 long series of "../../" in default_directory, longer
1457 than the number of levels from the root.) */
1458 #ifndef DOS_NT
1459 && o != target
1460 #endif
1461 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1463 #ifdef WINDOWSNT
1464 char *prev_o = o;
1465 #endif
1466 while (o != target && (--o, !IS_DIRECTORY_SEP (*o)))
1467 continue;
1468 #ifdef WINDOWSNT
1469 /* Don't go below server level in UNC filenames. */
1470 if (o == target + 1 && IS_DIRECTORY_SEP (*o)
1471 && IS_DIRECTORY_SEP (*target))
1472 o = prev_o;
1473 else
1474 #endif
1475 /* Keep initial / only if this is the whole name. */
1476 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1477 ++o;
1478 p += 3;
1480 else if (IS_DIRECTORY_SEP (p[1])
1481 && (p != target || IS_DIRECTORY_SEP (p[2])))
1482 /* Collapse multiple "/", except leave leading "//" alone. */
1483 p++;
1484 else
1486 *o++ = *p++;
1490 #ifdef DOS_NT
1491 /* At last, set drive name. */
1492 #ifdef WINDOWSNT
1493 /* Except for network file name. */
1494 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1495 #endif /* WINDOWSNT */
1497 if (!drive) emacs_abort ();
1498 target -= 2;
1499 target[0] = DRIVE_LETTER (drive);
1500 target[1] = ':';
1502 /* Reinsert the escape prefix if required. */
1503 if (is_escaped)
1505 target -= 2;
1506 target[0] = '/';
1507 target[1] = ':';
1509 result = make_specified_string (target, -1, o - target, multibyte);
1510 dostounix_filename (SSDATA (result));
1511 #ifdef WINDOWSNT
1512 if (!NILP (Vw32_downcase_file_names))
1513 result = Fdowncase (result);
1514 #endif
1515 #else /* !DOS_NT */
1516 result = make_specified_string (target, -1, o - target, multibyte);
1517 #endif /* !DOS_NT */
1520 /* Again look to see if the file name has special constructs in it
1521 and perhaps call the corresponding file handler. This is needed
1522 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1523 the ".." component gives us "/user@host:/bar/../baz" which needs
1524 to be expanded again. */
1525 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1526 if (!NILP (handler))
1528 handled_name = call3 (handler, Qexpand_file_name,
1529 result, default_directory);
1530 if (! STRINGP (handled_name))
1531 error ("Invalid handler in `file-name-handler-alist'");
1532 result = handled_name;
1535 SAFE_FREE ();
1536 return result;
1539 #if 0
1540 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1541 This is the old version of expand-file-name, before it was thoroughly
1542 rewritten for Emacs 10.31. We leave this version here commented-out,
1543 because the code is very complex and likely to have subtle bugs. If
1544 bugs _are_ found, it might be of interest to look at the old code and
1545 see what did it do in the relevant situation.
1547 Don't remove this code: it's true that it will be accessible
1548 from the repository, but a few years from deletion, people will
1549 forget it is there. */
1551 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1552 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1553 "Convert FILENAME to absolute, and canonicalize it.\n\
1554 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1555 \(does not start with slash); if DEFAULT is nil or missing,\n\
1556 the current buffer's value of default-directory is used.\n\
1557 Filenames containing `.' or `..' as components are simplified;\n\
1558 initial `~/' expands to your home directory.\n\
1559 See also the function `substitute-in-file-name'.")
1560 (name, defalt)
1561 Lisp_Object name, defalt;
1563 unsigned char *nm;
1565 register unsigned char *newdir, *p, *o;
1566 ptrdiff_t tlen;
1567 unsigned char *target;
1568 struct passwd *pw;
1570 CHECK_STRING (name);
1571 nm = SDATA (name);
1573 /* If nm is absolute, flush ...// and detect /./ and /../.
1574 If no /./ or /../ we can return right away. */
1575 if (nm[0] == '/')
1577 bool lose = 0;
1578 p = nm;
1579 while (*p)
1581 if (p[0] == '/' && p[1] == '/')
1582 nm = p + 1;
1583 if (p[0] == '/' && p[1] == '~')
1584 nm = p + 1, lose = 1;
1585 if (p[0] == '/' && p[1] == '.'
1586 && (p[2] == '/' || p[2] == 0
1587 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1588 lose = 1;
1589 p++;
1591 if (!lose)
1593 if (nm == SDATA (name))
1594 return name;
1595 return build_string (nm);
1599 /* Now determine directory to start with and put it in NEWDIR. */
1601 newdir = 0;
1603 if (nm[0] == '~') /* prefix ~ */
1604 if (nm[1] == '/' || nm[1] == 0)/* ~/filename */
1606 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1607 newdir = (unsigned char *) "";
1608 nm++;
1610 else /* ~user/filename */
1612 /* Get past ~ to user. */
1613 unsigned char *user = nm + 1;
1614 /* Find end of name. */
1615 unsigned char *ptr = (unsigned char *) strchr (user, '/');
1616 ptrdiff_t len = ptr ? ptr - user : strlen (user);
1617 /* Copy the user name into temp storage. */
1618 o = alloca (len + 1);
1619 memcpy (o, user, len);
1620 o[len] = 0;
1622 /* Look up the user name. */
1623 block_input ();
1624 pw = (struct passwd *) getpwnam (o + 1);
1625 unblock_input ();
1626 if (!pw)
1627 error ("\"%s\" isn't a registered user", o + 1);
1629 newdir = (unsigned char *) pw->pw_dir;
1631 /* Discard the user name from NM. */
1632 nm += len;
1635 if (nm[0] != '/' && !newdir)
1637 if (NILP (defalt))
1638 defalt = current_buffer->directory;
1639 CHECK_STRING (defalt);
1640 newdir = SDATA (defalt);
1643 /* Now concatenate the directory and name to new space in the stack frame. */
1645 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1646 target = alloca (tlen);
1647 *target = 0;
1649 if (newdir)
1651 if (nm[0] == 0 || nm[0] == '/')
1652 strcpy (target, newdir);
1653 else
1654 file_name_as_directory (target, newdir);
1657 strcat (target, nm);
1659 /* Now canonicalize by removing /. and /foo/.. if they appear. */
1661 p = target;
1662 o = target;
1664 while (*p)
1666 if (*p != '/')
1668 *o++ = *p++;
1670 else if (!strncmp (p, "//", 2)
1673 o = target;
1674 p++;
1676 else if (p[0] == '/' && p[1] == '.'
1677 && (p[2] == '/' || p[2] == 0))
1678 p += 2;
1679 else if (!strncmp (p, "/..", 3)
1680 /* `/../' is the "superroot" on certain file systems. */
1681 && o != target
1682 && (p[3] == '/' || p[3] == 0))
1684 while (o != target && *--o != '/')
1686 if (o == target && *o == '/')
1687 ++o;
1688 p += 3;
1690 else
1692 *o++ = *p++;
1696 return make_string (target, o - target);
1698 #endif
1700 /* If /~ or // appears, discard everything through first slash. */
1701 static bool
1702 file_name_absolute_p (const char *filename)
1704 return
1705 (IS_DIRECTORY_SEP (*filename) || *filename == '~'
1706 #ifdef DOS_NT
1707 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1])
1708 && IS_DIRECTORY_SEP (filename[2]))
1709 #endif
1713 static char *
1714 search_embedded_absfilename (char *nm, char *endp)
1716 char *p, *s;
1718 for (p = nm + 1; p < endp; p++)
1720 if (IS_DIRECTORY_SEP (p[-1])
1721 && file_name_absolute_p (p)
1722 #if defined (WINDOWSNT) || defined (CYGWIN)
1723 /* // at start of file name is meaningful in Apollo,
1724 WindowsNT and Cygwin systems. */
1725 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm)
1726 #endif /* not (WINDOWSNT || CYGWIN) */
1729 for (s = p; *s && !IS_DIRECTORY_SEP (*s); s++);
1730 if (p[0] == '~' && s > p + 1) /* We've got "/~something/". */
1732 USE_SAFE_ALLOCA;
1733 char *o = SAFE_ALLOCA (s - p + 1);
1734 struct passwd *pw;
1735 memcpy (o, p, s - p);
1736 o [s - p] = 0;
1738 /* If we have ~user and `user' exists, discard
1739 everything up to ~. But if `user' does not exist, leave
1740 ~user alone, it might be a literal file name. */
1741 block_input ();
1742 pw = getpwnam (o + 1);
1743 unblock_input ();
1744 SAFE_FREE ();
1745 if (pw)
1746 return p;
1748 else
1749 return p;
1752 return NULL;
1755 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
1756 Ssubstitute_in_file_name, 1, 1, 0,
1757 doc: /* Substitute environment variables referred to in FILENAME.
1758 `$FOO' where FOO is an environment variable name means to substitute
1759 the value of that variable. The variable name should be terminated
1760 with a character not a letter, digit or underscore; otherwise, enclose
1761 the entire variable name in braces.
1763 If `/~' appears, all of FILENAME through that `/' is discarded.
1764 If `//' appears, everything up to and including the first of
1765 those `/' is discarded. */)
1766 (Lisp_Object filename)
1768 char *nm, *p, *x, *endp;
1769 bool substituted = false;
1770 bool multibyte;
1771 char *xnm;
1772 Lisp_Object handler;
1774 CHECK_STRING (filename);
1776 multibyte = STRING_MULTIBYTE (filename);
1778 /* If the file name has special constructs in it,
1779 call the corresponding file handler. */
1780 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
1781 if (!NILP (handler))
1783 Lisp_Object handled_name = call2 (handler, Qsubstitute_in_file_name,
1784 filename);
1785 if (STRINGP (handled_name))
1786 return handled_name;
1787 error ("Invalid handler in `file-name-handler-alist'");
1790 /* Always work on a copy of the string, in case GC happens during
1791 decode of environment variables, causing the original Lisp_String
1792 data to be relocated. */
1793 USE_SAFE_ALLOCA;
1794 SAFE_ALLOCA_STRING (nm, filename);
1796 #ifdef DOS_NT
1797 dostounix_filename (nm);
1798 substituted = (memcmp (nm, SDATA (filename), SBYTES (filename)) != 0);
1799 #endif
1800 endp = nm + SBYTES (filename);
1802 /* If /~ or // appears, discard everything through first slash. */
1803 p = search_embedded_absfilename (nm, endp);
1804 if (p)
1805 /* Start over with the new string, so we check the file-name-handler
1806 again. Important with filenames like "/home/foo//:/hello///there"
1807 which would substitute to "/:/hello///there" rather than "/there". */
1809 Lisp_Object result
1810 = (Fsubstitute_in_file_name
1811 (make_specified_string (p, -1, endp - p, multibyte)));
1812 SAFE_FREE ();
1813 return result;
1816 /* See if any variables are substituted into the string. */
1818 if (!NILP (Ffboundp (Qsubstitute_env_in_file_name)))
1820 Lisp_Object name
1821 = (!substituted ? filename
1822 : make_specified_string (nm, -1, endp - nm, multibyte));
1823 Lisp_Object tmp = call1 (Qsubstitute_env_in_file_name, name);
1824 CHECK_STRING (tmp);
1825 if (!EQ (tmp, name))
1826 substituted = true;
1827 filename = tmp;
1830 if (!substituted)
1832 #ifdef WINDOWSNT
1833 if (!NILP (Vw32_downcase_file_names))
1834 filename = Fdowncase (filename);
1835 #endif
1836 SAFE_FREE ();
1837 return filename;
1840 xnm = SSDATA (filename);
1841 x = xnm + SBYTES (filename);
1843 /* If /~ or // appears, discard everything through first slash. */
1844 while ((p = search_embedded_absfilename (xnm, x)) != NULL)
1845 /* This time we do not start over because we've already expanded envvars
1846 and replaced $$ with $. Maybe we should start over as well, but we'd
1847 need to quote some $ to $$ first. */
1848 xnm = p;
1850 #ifdef WINDOWSNT
1851 if (!NILP (Vw32_downcase_file_names))
1853 Lisp_Object xname = make_specified_string (xnm, -1, x - xnm, multibyte);
1855 filename = Fdowncase (xname);
1857 else
1858 #endif
1859 if (xnm != SSDATA (filename))
1860 filename = make_specified_string (xnm, -1, x - xnm, multibyte);
1861 SAFE_FREE ();
1862 return filename;
1865 /* A slightly faster and more convenient way to get
1866 (directory-file-name (expand-file-name FOO)). */
1868 Lisp_Object
1869 expand_and_dir_to_file (Lisp_Object filename, Lisp_Object defdir)
1871 register Lisp_Object absname;
1873 absname = Fexpand_file_name (filename, defdir);
1875 /* Remove final slash, if any (unless this is the root dir).
1876 stat behaves differently depending! */
1877 if (SCHARS (absname) > 1
1878 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
1879 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname) - 2)))
1880 /* We cannot take shortcuts; they might be wrong for magic file names. */
1881 absname = Fdirectory_file_name (absname);
1882 return absname;
1885 /* Signal an error if the file ABSNAME already exists.
1886 If KNOWN_TO_EXIST, the file is known to exist.
1887 QUERYSTRING is a name for the action that is being considered
1888 to alter the file.
1889 If INTERACTIVE, ask the user whether to proceed,
1890 and bypass the error if the user says to go ahead.
1891 If QUICK, ask for y or n, not yes or no. */
1893 static void
1894 barf_or_query_if_file_exists (Lisp_Object absname, bool known_to_exist,
1895 const char *querystring, bool interactive,
1896 bool quick)
1898 Lisp_Object tem, encoded_filename;
1899 struct stat statbuf;
1900 struct gcpro gcpro1;
1902 encoded_filename = ENCODE_FILE (absname);
1904 if (! known_to_exist && lstat (SSDATA (encoded_filename), &statbuf) == 0)
1906 if (S_ISDIR (statbuf.st_mode))
1907 xsignal2 (Qfile_error,
1908 build_string ("File is a directory"), absname);
1909 known_to_exist = true;
1912 if (known_to_exist)
1914 if (! interactive)
1915 xsignal2 (Qfile_already_exists,
1916 build_string ("File already exists"), absname);
1917 GCPRO1 (absname);
1918 tem = format2 ("File %s already exists; %s anyway? ",
1919 absname, build_string (querystring));
1920 if (quick)
1921 tem = call1 (intern ("y-or-n-p"), tem);
1922 else
1923 tem = do_yes_or_no_p (tem);
1924 UNGCPRO;
1925 if (NILP (tem))
1926 xsignal2 (Qfile_already_exists,
1927 build_string ("File already exists"), absname);
1931 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 6,
1932 "fCopy file: \nGCopy %s to file: \np\nP",
1933 doc: /* Copy FILE to NEWNAME. Both args must be strings.
1934 If NEWNAME names a directory, copy FILE there.
1936 This function always sets the file modes of the output file to match
1937 the input file.
1939 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
1940 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
1941 signal a `file-already-exists' error without overwriting. If
1942 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
1943 about overwriting; this is what happens in interactive use with M-x.
1944 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
1945 existing file.
1947 Fourth arg KEEP-TIME non-nil means give the output file the same
1948 last-modified time as the old one. (This works on only some systems.)
1950 A prefix arg makes KEEP-TIME non-nil.
1952 If PRESERVE-UID-GID is non-nil, we try to transfer the
1953 uid and gid of FILE to NEWNAME.
1955 If PRESERVE-PERMISSIONS is non-nil, copy permissions of FILE to NEWNAME;
1956 this includes the file modes, along with ACL entries and SELinux
1957 context if present. Otherwise, if NEWNAME is created its file
1958 permission bits are those of FILE, masked by the default file
1959 permissions. */)
1960 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists,
1961 Lisp_Object keep_time, Lisp_Object preserve_uid_gid,
1962 Lisp_Object preserve_permissions)
1964 Lisp_Object handler;
1965 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
1966 ptrdiff_t count = SPECPDL_INDEX ();
1967 Lisp_Object encoded_file, encoded_newname;
1968 #if HAVE_LIBSELINUX
1969 security_context_t con;
1970 int conlength = 0;
1971 #endif
1972 #ifdef WINDOWSNT
1973 int result;
1974 #else
1975 bool already_exists = false;
1976 mode_t new_mask;
1977 int ifd, ofd;
1978 int n;
1979 char buf[16 * 1024];
1980 struct stat st;
1981 #endif
1983 encoded_file = encoded_newname = Qnil;
1984 GCPRO4 (file, newname, encoded_file, encoded_newname);
1985 CHECK_STRING (file);
1986 CHECK_STRING (newname);
1988 if (!NILP (Ffile_directory_p (newname)))
1989 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
1990 else
1991 newname = Fexpand_file_name (newname, Qnil);
1993 file = Fexpand_file_name (file, Qnil);
1995 /* If the input file name has special constructs in it,
1996 call the corresponding file handler. */
1997 handler = Ffind_file_name_handler (file, Qcopy_file);
1998 /* Likewise for output file name. */
1999 if (NILP (handler))
2000 handler = Ffind_file_name_handler (newname, Qcopy_file);
2001 if (!NILP (handler))
2002 RETURN_UNGCPRO (call7 (handler, Qcopy_file, file, newname,
2003 ok_if_already_exists, keep_time, preserve_uid_gid,
2004 preserve_permissions));
2006 encoded_file = ENCODE_FILE (file);
2007 encoded_newname = ENCODE_FILE (newname);
2009 #ifdef WINDOWSNT
2010 if (NILP (ok_if_already_exists)
2011 || INTEGERP (ok_if_already_exists))
2012 barf_or_query_if_file_exists (newname, false, "copy to it",
2013 INTEGERP (ok_if_already_exists), false);
2015 result = w32_copy_file (SSDATA (encoded_file), SSDATA (encoded_newname),
2016 !NILP (keep_time), !NILP (preserve_uid_gid),
2017 !NILP (preserve_permissions));
2018 switch (result)
2020 case -1:
2021 report_file_error ("Copying file", list2 (file, newname));
2022 case -2:
2023 report_file_error ("Copying permissions from", file);
2024 case -3:
2025 xsignal2 (Qfile_date_error,
2026 build_string ("Resetting file times"), newname);
2027 case -4:
2028 report_file_error ("Copying permissions to", newname);
2030 #else /* not WINDOWSNT */
2031 immediate_quit = 1;
2032 ifd = emacs_open (SSDATA (encoded_file), O_RDONLY, 0);
2033 immediate_quit = 0;
2035 if (ifd < 0)
2036 report_file_error ("Opening input file", file);
2038 record_unwind_protect_int (close_file_unwind, ifd);
2040 if (fstat (ifd, &st) != 0)
2041 report_file_error ("Input file status", file);
2043 if (!NILP (preserve_permissions))
2045 #if HAVE_LIBSELINUX
2046 if (is_selinux_enabled ())
2048 conlength = fgetfilecon (ifd, &con);
2049 if (conlength == -1)
2050 report_file_error ("Doing fgetfilecon", file);
2052 #endif
2055 /* We can copy only regular files. */
2056 if (!S_ISREG (st.st_mode))
2057 report_file_errno ("Non-regular file", file,
2058 S_ISDIR (st.st_mode) ? EISDIR : EINVAL);
2060 #ifndef MSDOS
2061 new_mask = st.st_mode & (!NILP (preserve_uid_gid) ? 0700 : 0777);
2062 #else
2063 new_mask = S_IREAD | S_IWRITE;
2064 #endif
2066 ofd = emacs_open (SSDATA (encoded_newname), O_WRONLY | O_CREAT | O_EXCL,
2067 new_mask);
2068 if (ofd < 0 && errno == EEXIST)
2070 if (NILP (ok_if_already_exists) || INTEGERP (ok_if_already_exists))
2071 barf_or_query_if_file_exists (newname, true, "copy to it",
2072 INTEGERP (ok_if_already_exists), false);
2073 already_exists = true;
2074 ofd = emacs_open (SSDATA (encoded_newname), O_WRONLY, 0);
2076 if (ofd < 0)
2077 report_file_error ("Opening output file", newname);
2079 record_unwind_protect_int (close_file_unwind, ofd);
2081 if (already_exists)
2083 struct stat out_st;
2084 if (fstat (ofd, &out_st) != 0)
2085 report_file_error ("Output file status", newname);
2086 if (st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
2087 report_file_errno ("Input and output files are the same",
2088 list2 (file, newname), 0);
2089 if (ftruncate (ofd, 0) != 0)
2090 report_file_error ("Truncating output file", newname);
2093 immediate_quit = 1;
2094 QUIT;
2095 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
2096 if (emacs_write_sig (ofd, buf, n) != n)
2097 report_file_error ("Write error", newname);
2098 immediate_quit = 0;
2100 #ifndef MSDOS
2101 /* Preserve the original file permissions, and if requested, also its
2102 owner and group. */
2104 mode_t preserved_permissions = st.st_mode & 07777;
2105 mode_t default_permissions = st.st_mode & 0777 & ~realmask;
2106 if (!NILP (preserve_uid_gid))
2108 /* Attempt to change owner and group. If that doesn't work
2109 attempt to change just the group, as that is sometimes allowed.
2110 Adjust the mode mask to eliminate setuid or setgid bits
2111 or group permissions bits that are inappropriate if the
2112 owner or group are wrong. */
2113 if (fchown (ofd, st.st_uid, st.st_gid) != 0)
2115 if (fchown (ofd, -1, st.st_gid) == 0)
2116 preserved_permissions &= ~04000;
2117 else
2119 preserved_permissions &= ~06000;
2121 /* Copy the other bits to the group bits, since the
2122 group is wrong. */
2123 preserved_permissions &= ~070;
2124 preserved_permissions |= (preserved_permissions & 7) << 3;
2125 default_permissions &= ~070;
2126 default_permissions |= (default_permissions & 7) << 3;
2131 switch (!NILP (preserve_permissions)
2132 ? qcopy_acl (SSDATA (encoded_file), ifd,
2133 SSDATA (encoded_newname), ofd,
2134 preserved_permissions)
2135 : (already_exists
2136 || (new_mask & ~realmask) == default_permissions)
2138 : fchmod (ofd, default_permissions))
2140 case -2: report_file_error ("Copying permissions from", file);
2141 case -1: report_file_error ("Copying permissions to", newname);
2144 #endif /* not MSDOS */
2146 #if HAVE_LIBSELINUX
2147 if (conlength > 0)
2149 /* Set the modified context back to the file. */
2150 bool fail = fsetfilecon (ofd, con) != 0;
2151 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
2152 if (fail && errno != ENOTSUP)
2153 report_file_error ("Doing fsetfilecon", newname);
2155 freecon (con);
2157 #endif
2159 if (!NILP (keep_time))
2161 struct timespec atime = get_stat_atime (&st);
2162 struct timespec mtime = get_stat_mtime (&st);
2163 if (set_file_times (ofd, SSDATA (encoded_newname), atime, mtime) != 0)
2164 xsignal2 (Qfile_date_error,
2165 build_string ("Cannot set file date"), newname);
2168 if (emacs_close (ofd) < 0)
2169 report_file_error ("Write error", newname);
2171 emacs_close (ifd);
2173 #ifdef MSDOS
2174 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2175 and if it can't, it tells so. Otherwise, under MSDOS we usually
2176 get only the READ bit, which will make the copied file read-only,
2177 so it's better not to chmod at all. */
2178 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2179 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2180 #endif /* MSDOS */
2181 #endif /* not WINDOWSNT */
2183 /* Discard the unwind protects. */
2184 specpdl_ptr = specpdl + count;
2186 UNGCPRO;
2187 return Qnil;
2190 DEFUN ("make-directory-internal", Fmake_directory_internal,
2191 Smake_directory_internal, 1, 1, 0,
2192 doc: /* Create a new directory named DIRECTORY. */)
2193 (Lisp_Object directory)
2195 const char *dir;
2196 Lisp_Object handler;
2197 Lisp_Object encoded_dir;
2199 CHECK_STRING (directory);
2200 directory = Fexpand_file_name (directory, Qnil);
2202 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2203 if (!NILP (handler))
2204 return call2 (handler, Qmake_directory_internal, directory);
2206 encoded_dir = ENCODE_FILE (directory);
2208 dir = SSDATA (encoded_dir);
2210 #ifdef WINDOWSNT
2211 if (mkdir (dir) != 0)
2212 #else
2213 if (mkdir (dir, 0777 & ~auto_saving_dir_umask) != 0)
2214 #endif
2215 report_file_error ("Creating directory", directory);
2217 return Qnil;
2220 DEFUN ("delete-directory-internal", Fdelete_directory_internal,
2221 Sdelete_directory_internal, 1, 1, 0,
2222 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2223 (Lisp_Object directory)
2225 const char *dir;
2226 Lisp_Object encoded_dir;
2228 CHECK_STRING (directory);
2229 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2230 encoded_dir = ENCODE_FILE (directory);
2231 dir = SSDATA (encoded_dir);
2233 if (rmdir (dir) != 0)
2234 report_file_error ("Removing directory", directory);
2236 return Qnil;
2239 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 2,
2240 "(list (read-file-name \
2241 (if (and delete-by-moving-to-trash (null current-prefix-arg)) \
2242 \"Move file to trash: \" \"Delete file: \") \
2243 nil default-directory (confirm-nonexistent-file-or-buffer)) \
2244 (null current-prefix-arg))",
2245 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2246 If file has multiple names, it continues to exist with the other names.
2247 TRASH non-nil means to trash the file instead of deleting, provided
2248 `delete-by-moving-to-trash' is non-nil.
2250 When called interactively, TRASH is t if no prefix argument is given.
2251 With a prefix argument, TRASH is nil. */)
2252 (Lisp_Object filename, Lisp_Object trash)
2254 Lisp_Object handler;
2255 Lisp_Object encoded_file;
2256 struct gcpro gcpro1;
2258 GCPRO1 (filename);
2259 if (!NILP (Ffile_directory_p (filename))
2260 && NILP (Ffile_symlink_p (filename)))
2261 xsignal2 (Qfile_error,
2262 build_string ("Removing old name: is a directory"),
2263 filename);
2264 UNGCPRO;
2265 filename = Fexpand_file_name (filename, Qnil);
2267 handler = Ffind_file_name_handler (filename, Qdelete_file);
2268 if (!NILP (handler))
2269 return call3 (handler, Qdelete_file, filename, trash);
2271 if (delete_by_moving_to_trash && !NILP (trash))
2272 return call1 (Qmove_file_to_trash, filename);
2274 encoded_file = ENCODE_FILE (filename);
2276 if (unlink (SSDATA (encoded_file)) < 0)
2277 report_file_error ("Removing old name", filename);
2278 return Qnil;
2281 static Lisp_Object
2282 internal_delete_file_1 (Lisp_Object ignore)
2284 return Qt;
2287 /* Delete file FILENAME, returning true if successful.
2288 This ignores `delete-by-moving-to-trash'. */
2290 bool
2291 internal_delete_file (Lisp_Object filename)
2293 Lisp_Object tem;
2295 tem = internal_condition_case_2 (Fdelete_file, filename, Qnil,
2296 Qt, internal_delete_file_1);
2297 return NILP (tem);
2300 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2301 "fRename file: \nGRename %s to file: \np",
2302 doc: /* Rename FILE as NEWNAME. Both args must be strings.
2303 If file has names other than FILE, it continues to have those names.
2304 Signals a `file-already-exists' error if a file NEWNAME already exists
2305 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2306 A number as third arg means request confirmation if NEWNAME already exists.
2307 This is what happens in interactive use with M-x. */)
2308 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2310 Lisp_Object handler;
2311 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2312 Lisp_Object encoded_file, encoded_newname, symlink_target;
2314 symlink_target = encoded_file = encoded_newname = Qnil;
2315 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2316 CHECK_STRING (file);
2317 CHECK_STRING (newname);
2318 file = Fexpand_file_name (file, Qnil);
2320 if ((!NILP (Ffile_directory_p (newname)))
2321 #ifdef DOS_NT
2322 /* If the file names are identical but for the case,
2323 don't attempt to move directory to itself. */
2324 && (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2325 #endif
2328 Lisp_Object fname = (NILP (Ffile_directory_p (file))
2329 ? file : Fdirectory_file_name (file));
2330 newname = Fexpand_file_name (Ffile_name_nondirectory (fname), newname);
2332 else
2333 newname = Fexpand_file_name (newname, Qnil);
2335 /* If the file name has special constructs in it,
2336 call the corresponding file handler. */
2337 handler = Ffind_file_name_handler (file, Qrename_file);
2338 if (NILP (handler))
2339 handler = Ffind_file_name_handler (newname, Qrename_file);
2340 if (!NILP (handler))
2341 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2342 file, newname, ok_if_already_exists));
2344 encoded_file = ENCODE_FILE (file);
2345 encoded_newname = ENCODE_FILE (newname);
2347 #ifdef DOS_NT
2348 /* If the file names are identical but for the case, don't ask for
2349 confirmation: they simply want to change the letter-case of the
2350 file name. */
2351 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2352 #endif
2353 if (NILP (ok_if_already_exists)
2354 || INTEGERP (ok_if_already_exists))
2355 barf_or_query_if_file_exists (newname, false, "rename to it",
2356 INTEGERP (ok_if_already_exists), false);
2357 if (rename (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
2359 int rename_errno = errno;
2360 if (rename_errno == EXDEV)
2362 ptrdiff_t count;
2363 symlink_target = Ffile_symlink_p (file);
2364 if (! NILP (symlink_target))
2365 Fmake_symbolic_link (symlink_target, newname,
2366 NILP (ok_if_already_exists) ? Qnil : Qt);
2367 else if (!NILP (Ffile_directory_p (file)))
2368 call4 (Qcopy_directory, file, newname, Qt, Qnil);
2369 else
2370 /* We have already prompted if it was an integer, so don't
2371 have copy-file prompt again. */
2372 Fcopy_file (file, newname,
2373 NILP (ok_if_already_exists) ? Qnil : Qt,
2374 Qt, Qt, Qt);
2376 count = SPECPDL_INDEX ();
2377 specbind (Qdelete_by_moving_to_trash, Qnil);
2379 if (!NILP (Ffile_directory_p (file)) && NILP (symlink_target))
2380 call2 (Qdelete_directory, file, Qt);
2381 else
2382 Fdelete_file (file, Qnil);
2383 unbind_to (count, Qnil);
2385 else
2386 report_file_errno ("Renaming", list2 (file, newname), rename_errno);
2388 UNGCPRO;
2389 return Qnil;
2392 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2393 "fAdd name to file: \nGName to add to %s: \np",
2394 doc: /* Give FILE additional name NEWNAME. Both args must be strings.
2395 Signals a `file-already-exists' error if a file NEWNAME already exists
2396 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2397 A number as third arg means request confirmation if NEWNAME already exists.
2398 This is what happens in interactive use with M-x. */)
2399 (Lisp_Object file, Lisp_Object newname, Lisp_Object ok_if_already_exists)
2401 Lisp_Object handler;
2402 Lisp_Object encoded_file, encoded_newname;
2403 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2405 GCPRO4 (file, newname, encoded_file, encoded_newname);
2406 encoded_file = encoded_newname = Qnil;
2407 CHECK_STRING (file);
2408 CHECK_STRING (newname);
2409 file = Fexpand_file_name (file, Qnil);
2411 if (!NILP (Ffile_directory_p (newname)))
2412 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2413 else
2414 newname = Fexpand_file_name (newname, Qnil);
2416 /* If the file name has special constructs in it,
2417 call the corresponding file handler. */
2418 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2419 if (!NILP (handler))
2420 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2421 newname, ok_if_already_exists));
2423 /* If the new name has special constructs in it,
2424 call the corresponding file handler. */
2425 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2426 if (!NILP (handler))
2427 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2428 newname, ok_if_already_exists));
2430 encoded_file = ENCODE_FILE (file);
2431 encoded_newname = ENCODE_FILE (newname);
2433 if (NILP (ok_if_already_exists)
2434 || INTEGERP (ok_if_already_exists))
2435 barf_or_query_if_file_exists (newname, false, "make it a new name",
2436 INTEGERP (ok_if_already_exists), false);
2438 unlink (SSDATA (newname));
2439 if (link (SSDATA (encoded_file), SSDATA (encoded_newname)) < 0)
2441 int link_errno = errno;
2442 report_file_errno ("Adding new name", list2 (file, newname), link_errno);
2445 UNGCPRO;
2446 return Qnil;
2449 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2450 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2451 doc: /* Make a symbolic link to FILENAME, named LINKNAME.
2452 Both args must be strings.
2453 Signals a `file-already-exists' error if a file LINKNAME already exists
2454 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2455 A number as third arg means request confirmation if LINKNAME already exists.
2456 This happens for interactive use with M-x. */)
2457 (Lisp_Object filename, Lisp_Object linkname, Lisp_Object ok_if_already_exists)
2459 Lisp_Object handler;
2460 Lisp_Object encoded_filename, encoded_linkname;
2461 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2463 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2464 encoded_filename = encoded_linkname = Qnil;
2465 CHECK_STRING (filename);
2466 CHECK_STRING (linkname);
2467 /* If the link target has a ~, we must expand it to get
2468 a truly valid file name. Otherwise, do not expand;
2469 we want to permit links to relative file names. */
2470 if (SREF (filename, 0) == '~')
2471 filename = Fexpand_file_name (filename, Qnil);
2473 if (!NILP (Ffile_directory_p (linkname)))
2474 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname);
2475 else
2476 linkname = Fexpand_file_name (linkname, Qnil);
2478 /* If the file name has special constructs in it,
2479 call the corresponding file handler. */
2480 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2481 if (!NILP (handler))
2482 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2483 linkname, ok_if_already_exists));
2485 /* If the new link name has special constructs in it,
2486 call the corresponding file handler. */
2487 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2488 if (!NILP (handler))
2489 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2490 linkname, ok_if_already_exists));
2492 encoded_filename = ENCODE_FILE (filename);
2493 encoded_linkname = ENCODE_FILE (linkname);
2495 if (NILP (ok_if_already_exists)
2496 || INTEGERP (ok_if_already_exists))
2497 barf_or_query_if_file_exists (linkname, false, "make it a link",
2498 INTEGERP (ok_if_already_exists), false);
2499 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname)) < 0)
2501 /* If we didn't complain already, silently delete existing file. */
2502 int symlink_errno;
2503 if (errno == EEXIST)
2505 unlink (SSDATA (encoded_linkname));
2506 if (symlink (SSDATA (encoded_filename), SSDATA (encoded_linkname))
2507 >= 0)
2509 UNGCPRO;
2510 return Qnil;
2513 if (errno == ENOSYS)
2515 UNGCPRO;
2516 xsignal1 (Qfile_error,
2517 build_string ("Symbolic links are not supported"));
2520 symlink_errno = errno;
2521 report_file_errno ("Making symbolic link", list2 (filename, linkname),
2522 symlink_errno);
2524 UNGCPRO;
2525 return Qnil;
2529 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2530 1, 1, 0,
2531 doc: /* Return t if file FILENAME specifies an absolute file name.
2532 On Unix, this is a name starting with a `/' or a `~'. */)
2533 (Lisp_Object filename)
2535 CHECK_STRING (filename);
2536 return file_name_absolute_p (SSDATA (filename)) ? Qt : Qnil;
2539 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
2540 doc: /* Return t if file FILENAME exists (whether or not you can read it.)
2541 See also `file-readable-p' and `file-attributes'.
2542 This returns nil for a symlink to a nonexistent file.
2543 Use `file-symlink-p' to test for such links. */)
2544 (Lisp_Object filename)
2546 Lisp_Object absname;
2547 Lisp_Object handler;
2549 CHECK_STRING (filename);
2550 absname = Fexpand_file_name (filename, Qnil);
2552 /* If the file name has special constructs in it,
2553 call the corresponding file handler. */
2554 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
2555 if (!NILP (handler))
2557 Lisp_Object result = call2 (handler, Qfile_exists_p, absname);
2558 errno = 0;
2559 return result;
2562 absname = ENCODE_FILE (absname);
2564 return check_existing (SSDATA (absname)) ? Qt : Qnil;
2567 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
2568 doc: /* Return t if FILENAME can be executed by you.
2569 For a directory, this means you can access files in that directory.
2570 \(It is generally better to use `file-accessible-directory-p' for that
2571 purpose, though.) */)
2572 (Lisp_Object filename)
2574 Lisp_Object absname;
2575 Lisp_Object handler;
2577 CHECK_STRING (filename);
2578 absname = Fexpand_file_name (filename, Qnil);
2580 /* If the file name has special constructs in it,
2581 call the corresponding file handler. */
2582 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
2583 if (!NILP (handler))
2584 return call2 (handler, Qfile_executable_p, absname);
2586 absname = ENCODE_FILE (absname);
2588 return (check_executable (SSDATA (absname)) ? Qt : Qnil);
2591 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
2592 doc: /* Return t if file FILENAME exists and you can read it.
2593 See also `file-exists-p' and `file-attributes'. */)
2594 (Lisp_Object filename)
2596 Lisp_Object absname;
2597 Lisp_Object handler;
2599 CHECK_STRING (filename);
2600 absname = Fexpand_file_name (filename, Qnil);
2602 /* If the file name has special constructs in it,
2603 call the corresponding file handler. */
2604 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
2605 if (!NILP (handler))
2606 return call2 (handler, Qfile_readable_p, absname);
2608 absname = ENCODE_FILE (absname);
2609 return (faccessat (AT_FDCWD, SSDATA (absname), R_OK, AT_EACCESS) == 0
2610 ? Qt : Qnil);
2613 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
2614 doc: /* Return t if file FILENAME can be written or created by you. */)
2615 (Lisp_Object filename)
2617 Lisp_Object absname, dir, encoded;
2618 Lisp_Object handler;
2620 CHECK_STRING (filename);
2621 absname = Fexpand_file_name (filename, Qnil);
2623 /* If the file name has special constructs in it,
2624 call the corresponding file handler. */
2625 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
2626 if (!NILP (handler))
2627 return call2 (handler, Qfile_writable_p, absname);
2629 encoded = ENCODE_FILE (absname);
2630 if (check_writable (SSDATA (encoded), W_OK))
2631 return Qt;
2632 if (errno != ENOENT)
2633 return Qnil;
2635 dir = Ffile_name_directory (absname);
2636 eassert (!NILP (dir));
2637 #ifdef MSDOS
2638 dir = Fdirectory_file_name (dir);
2639 #endif /* MSDOS */
2641 dir = ENCODE_FILE (dir);
2642 #ifdef WINDOWSNT
2643 /* The read-only attribute of the parent directory doesn't affect
2644 whether a file or directory can be created within it. Some day we
2645 should check ACLs though, which do affect this. */
2646 return file_directory_p (SDATA (dir)) ? Qt : Qnil;
2647 #else
2648 return check_writable (SSDATA (dir), W_OK | X_OK) ? Qt : Qnil;
2649 #endif
2652 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
2653 doc: /* Access file FILENAME, and get an error if that does not work.
2654 The second argument STRING is used in the error message.
2655 If there is no error, returns nil. */)
2656 (Lisp_Object filename, Lisp_Object string)
2658 Lisp_Object handler, encoded_filename, absname;
2660 CHECK_STRING (filename);
2661 absname = Fexpand_file_name (filename, Qnil);
2663 CHECK_STRING (string);
2665 /* If the file name has special constructs in it,
2666 call the corresponding file handler. */
2667 handler = Ffind_file_name_handler (absname, Qaccess_file);
2668 if (!NILP (handler))
2669 return call3 (handler, Qaccess_file, absname, string);
2671 encoded_filename = ENCODE_FILE (absname);
2673 if (faccessat (AT_FDCWD, SSDATA (encoded_filename), R_OK, AT_EACCESS) != 0)
2674 report_file_error (SSDATA (string), filename);
2676 return Qnil;
2679 /* Relative to directory FD, return the symbolic link value of FILENAME.
2680 On failure, return nil. */
2681 Lisp_Object
2682 emacs_readlinkat (int fd, char const *filename)
2684 static struct allocator const emacs_norealloc_allocator =
2685 { xmalloc, NULL, xfree, memory_full };
2686 Lisp_Object val;
2687 char readlink_buf[1024];
2688 char *buf = careadlinkat (fd, filename, readlink_buf, sizeof readlink_buf,
2689 &emacs_norealloc_allocator, readlinkat);
2690 if (!buf)
2691 return Qnil;
2693 val = build_unibyte_string (buf);
2694 if (buf[0] == '/' && strchr (buf, ':'))
2696 AUTO_STRING (slash_colon, "/:");
2697 val = concat2 (slash_colon, val);
2699 if (buf != readlink_buf)
2700 xfree (buf);
2701 val = DECODE_FILE (val);
2702 return val;
2705 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
2706 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
2707 The value is the link target, as a string.
2708 Otherwise it returns nil.
2710 This function does not check whether the link target exists. */)
2711 (Lisp_Object filename)
2713 Lisp_Object handler;
2715 CHECK_STRING (filename);
2716 filename = Fexpand_file_name (filename, Qnil);
2718 /* If the file name has special constructs in it,
2719 call the corresponding file handler. */
2720 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
2721 if (!NILP (handler))
2722 return call2 (handler, Qfile_symlink_p, filename);
2724 filename = ENCODE_FILE (filename);
2726 return emacs_readlinkat (AT_FDCWD, SSDATA (filename));
2729 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
2730 doc: /* Return t if FILENAME names an existing directory.
2731 Symbolic links to directories count as directories.
2732 See `file-symlink-p' to distinguish symlinks. */)
2733 (Lisp_Object filename)
2735 Lisp_Object absname;
2736 Lisp_Object handler;
2738 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2740 /* If the file name has special constructs in it,
2741 call the corresponding file handler. */
2742 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
2743 if (!NILP (handler))
2744 return call2 (handler, Qfile_directory_p, absname);
2746 absname = ENCODE_FILE (absname);
2748 return file_directory_p (SSDATA (absname)) ? Qt : Qnil;
2751 /* Return true if FILE is a directory or a symlink to a directory. */
2752 bool
2753 file_directory_p (char const *file)
2755 #ifdef WINDOWSNT
2756 /* This is cheaper than 'stat'. */
2757 return faccessat (AT_FDCWD, file, D_OK, AT_EACCESS) == 0;
2758 #else
2759 struct stat st;
2760 return stat (file, &st) == 0 && S_ISDIR (st.st_mode);
2761 #endif
2764 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p,
2765 Sfile_accessible_directory_p, 1, 1, 0,
2766 doc: /* Return t if file FILENAME names a directory you can open.
2767 For the value to be t, FILENAME must specify the name of a directory as a file,
2768 and the directory must allow you to open files in it. In order to use a
2769 directory as a buffer's current directory, this predicate must return true.
2770 A directory name spec may be given instead; then the value is t
2771 if the directory so specified exists and really is a readable and
2772 searchable directory. */)
2773 (Lisp_Object filename)
2775 Lisp_Object absname;
2776 Lisp_Object handler;
2778 CHECK_STRING (filename);
2779 absname = Fexpand_file_name (filename, Qnil);
2781 /* If the file name has special constructs in it,
2782 call the corresponding file handler. */
2783 handler = Ffind_file_name_handler (absname, Qfile_accessible_directory_p);
2784 if (!NILP (handler))
2786 Lisp_Object r = call2 (handler, Qfile_accessible_directory_p, absname);
2787 errno = 0;
2788 return r;
2791 absname = ENCODE_FILE (absname);
2792 return file_accessible_directory_p (absname) ? Qt : Qnil;
2795 /* If FILE is a searchable directory or a symlink to a
2796 searchable directory, return true. Otherwise return
2797 false and set errno to an error number. */
2798 bool
2799 file_accessible_directory_p (Lisp_Object file)
2801 #ifdef DOS_NT
2802 /* There's no need to test whether FILE is searchable, as the
2803 searchable/executable bit is invented on DOS_NT platforms. */
2804 return file_directory_p (SSDATA (file));
2805 #else
2806 /* On POSIXish platforms, use just one system call; this avoids a
2807 race and is typically faster. */
2808 const char *data = SSDATA (file);
2809 ptrdiff_t len = SBYTES (file);
2810 char const *dir;
2811 bool ok;
2812 int saved_errno;
2813 USE_SAFE_ALLOCA;
2815 /* Normally a file "FOO" is an accessible directory if "FOO/." exists.
2816 There are three exceptions: "", "/", and "//". Leave "" alone,
2817 as it's invalid. Append only "." to the other two exceptions as
2818 "/" and "//" are distinct on some platforms, whereas "/", "///",
2819 "////", etc. are all equivalent. */
2820 if (! len)
2821 dir = data;
2822 else
2824 /* Just check for trailing '/' when deciding whether to append '/'.
2825 That's simpler than testing the two special cases "/" and "//",
2826 and it's a safe optimization here. */
2827 char *buf = SAFE_ALLOCA (len + 3);
2828 memcpy (buf, data, len);
2829 strcpy (buf + len, &"/."[data[len - 1] == '/']);
2830 dir = buf;
2833 ok = check_existing (dir);
2834 saved_errno = errno;
2835 SAFE_FREE ();
2836 errno = saved_errno;
2837 return ok;
2838 #endif
2841 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
2842 doc: /* Return t if FILENAME names a regular file.
2843 This is the sort of file that holds an ordinary stream of data bytes.
2844 Symbolic links to regular files count as regular files.
2845 See `file-symlink-p' to distinguish symlinks. */)
2846 (Lisp_Object filename)
2848 register Lisp_Object absname;
2849 struct stat st;
2850 Lisp_Object handler;
2852 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2854 /* If the file name has special constructs in it,
2855 call the corresponding file handler. */
2856 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
2857 if (!NILP (handler))
2858 return call2 (handler, Qfile_regular_p, absname);
2860 absname = ENCODE_FILE (absname);
2862 #ifdef WINDOWSNT
2864 int result;
2865 Lisp_Object tem = Vw32_get_true_file_attributes;
2867 /* Tell stat to use expensive method to get accurate info. */
2868 Vw32_get_true_file_attributes = Qt;
2869 result = stat (SDATA (absname), &st);
2870 Vw32_get_true_file_attributes = tem;
2872 if (result < 0)
2873 return Qnil;
2874 return S_ISREG (st.st_mode) ? Qt : Qnil;
2876 #else
2877 if (stat (SSDATA (absname), &st) < 0)
2878 return Qnil;
2879 return S_ISREG (st.st_mode) ? Qt : Qnil;
2880 #endif
2883 DEFUN ("file-selinux-context", Ffile_selinux_context,
2884 Sfile_selinux_context, 1, 1, 0,
2885 doc: /* Return SELinux context of file named FILENAME.
2886 The return value is a list (USER ROLE TYPE RANGE), where the list
2887 elements are strings naming the user, role, type, and range of the
2888 file's SELinux security context.
2890 Return (nil nil nil nil) if the file is nonexistent or inaccessible,
2891 or if SELinux is disabled, or if Emacs lacks SELinux support. */)
2892 (Lisp_Object filename)
2894 Lisp_Object absname;
2895 Lisp_Object values[4];
2896 Lisp_Object handler;
2897 #if HAVE_LIBSELINUX
2898 security_context_t con;
2899 int conlength;
2900 context_t context;
2901 #endif
2903 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
2905 /* If the file name has special constructs in it,
2906 call the corresponding file handler. */
2907 handler = Ffind_file_name_handler (absname, Qfile_selinux_context);
2908 if (!NILP (handler))
2909 return call2 (handler, Qfile_selinux_context, absname);
2911 absname = ENCODE_FILE (absname);
2913 values[0] = Qnil;
2914 values[1] = Qnil;
2915 values[2] = Qnil;
2916 values[3] = Qnil;
2917 #if HAVE_LIBSELINUX
2918 if (is_selinux_enabled ())
2920 conlength = lgetfilecon (SSDATA (absname), &con);
2921 if (conlength > 0)
2923 context = context_new (con);
2924 if (context_user_get (context))
2925 values[0] = build_string (context_user_get (context));
2926 if (context_role_get (context))
2927 values[1] = build_string (context_role_get (context));
2928 if (context_type_get (context))
2929 values[2] = build_string (context_type_get (context));
2930 if (context_range_get (context))
2931 values[3] = build_string (context_range_get (context));
2932 context_free (context);
2933 freecon (con);
2936 #endif
2938 return Flist (ARRAYELTS (values), values);
2941 DEFUN ("set-file-selinux-context", Fset_file_selinux_context,
2942 Sset_file_selinux_context, 2, 2, 0,
2943 doc: /* Set SELinux context of file named FILENAME to CONTEXT.
2944 CONTEXT should be a list (USER ROLE TYPE RANGE), where the list
2945 elements are strings naming the components of a SELinux context.
2947 Value is t if setting of SELinux context was successful, nil otherwise.
2949 This function does nothing and returns nil if SELinux is disabled,
2950 or if Emacs was not compiled with SELinux support. */)
2951 (Lisp_Object filename, Lisp_Object context)
2953 Lisp_Object absname;
2954 Lisp_Object handler;
2955 #if HAVE_LIBSELINUX
2956 Lisp_Object encoded_absname;
2957 Lisp_Object user = CAR_SAFE (context);
2958 Lisp_Object role = CAR_SAFE (CDR_SAFE (context));
2959 Lisp_Object type = CAR_SAFE (CDR_SAFE (CDR_SAFE (context)));
2960 Lisp_Object range = CAR_SAFE (CDR_SAFE (CDR_SAFE (CDR_SAFE (context))));
2961 security_context_t con;
2962 bool fail;
2963 int conlength;
2964 context_t parsed_con;
2965 #endif
2967 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
2969 /* If the file name has special constructs in it,
2970 call the corresponding file handler. */
2971 handler = Ffind_file_name_handler (absname, Qset_file_selinux_context);
2972 if (!NILP (handler))
2973 return call3 (handler, Qset_file_selinux_context, absname, context);
2975 #if HAVE_LIBSELINUX
2976 if (is_selinux_enabled ())
2978 /* Get current file context. */
2979 encoded_absname = ENCODE_FILE (absname);
2980 conlength = lgetfilecon (SSDATA (encoded_absname), &con);
2981 if (conlength > 0)
2983 parsed_con = context_new (con);
2984 /* Change the parts defined in the parameter.*/
2985 if (STRINGP (user))
2987 if (context_user_set (parsed_con, SSDATA (user)))
2988 error ("Doing context_user_set");
2990 if (STRINGP (role))
2992 if (context_role_set (parsed_con, SSDATA (role)))
2993 error ("Doing context_role_set");
2995 if (STRINGP (type))
2997 if (context_type_set (parsed_con, SSDATA (type)))
2998 error ("Doing context_type_set");
3000 if (STRINGP (range))
3002 if (context_range_set (parsed_con, SSDATA (range)))
3003 error ("Doing context_range_set");
3006 /* Set the modified context back to the file. */
3007 fail = (lsetfilecon (SSDATA (encoded_absname),
3008 context_str (parsed_con))
3009 != 0);
3010 /* See http://debbugs.gnu.org/11245 for ENOTSUP. */
3011 if (fail && errno != ENOTSUP)
3012 report_file_error ("Doing lsetfilecon", absname);
3014 context_free (parsed_con);
3015 freecon (con);
3016 return fail ? Qnil : Qt;
3018 else
3019 report_file_error ("Doing lgetfilecon", absname);
3021 #endif
3023 return Qnil;
3026 DEFUN ("file-acl", Ffile_acl, Sfile_acl, 1, 1, 0,
3027 doc: /* Return ACL entries of file named FILENAME.
3028 The entries are returned in a format suitable for use in `set-file-acl'
3029 but is otherwise undocumented and subject to change.
3030 Return nil if file does not exist or is not accessible, or if Emacs
3031 was unable to determine the ACL entries. */)
3032 (Lisp_Object filename)
3034 Lisp_Object absname;
3035 Lisp_Object handler;
3036 #ifdef HAVE_ACL_SET_FILE
3037 acl_t acl;
3038 Lisp_Object acl_string;
3039 char *str;
3040 # ifndef HAVE_ACL_TYPE_EXTENDED
3041 acl_type_t ACL_TYPE_EXTENDED = ACL_TYPE_ACCESS;
3042 # endif
3043 #endif
3045 absname = expand_and_dir_to_file (filename,
3046 BVAR (current_buffer, directory));
3048 /* If the file name has special constructs in it,
3049 call the corresponding file handler. */
3050 handler = Ffind_file_name_handler (absname, Qfile_acl);
3051 if (!NILP (handler))
3052 return call2 (handler, Qfile_acl, absname);
3054 #ifdef HAVE_ACL_SET_FILE
3055 absname = ENCODE_FILE (absname);
3057 acl = acl_get_file (SSDATA (absname), ACL_TYPE_EXTENDED);
3058 if (acl == NULL)
3059 return Qnil;
3061 str = acl_to_text (acl, NULL);
3062 if (str == NULL)
3064 acl_free (acl);
3065 return Qnil;
3068 acl_string = build_string (str);
3069 acl_free (str);
3070 acl_free (acl);
3072 return acl_string;
3073 #endif
3075 return Qnil;
3078 DEFUN ("set-file-acl", Fset_file_acl, Sset_file_acl,
3079 2, 2, 0,
3080 doc: /* Set ACL of file named FILENAME to ACL-STRING.
3081 ACL-STRING should contain the textual representation of the ACL
3082 entries in a format suitable for the platform.
3084 Value is t if setting of ACL was successful, nil otherwise.
3086 Setting ACL for local files requires Emacs to be built with ACL
3087 support. */)
3088 (Lisp_Object filename, Lisp_Object acl_string)
3090 Lisp_Object absname;
3091 Lisp_Object handler;
3092 #ifdef HAVE_ACL_SET_FILE
3093 Lisp_Object encoded_absname;
3094 acl_t acl;
3095 bool fail;
3096 #endif
3098 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3100 /* If the file name has special constructs in it,
3101 call the corresponding file handler. */
3102 handler = Ffind_file_name_handler (absname, Qset_file_acl);
3103 if (!NILP (handler))
3104 return call3 (handler, Qset_file_acl, absname, acl_string);
3106 #ifdef HAVE_ACL_SET_FILE
3107 if (STRINGP (acl_string))
3109 acl = acl_from_text (SSDATA (acl_string));
3110 if (acl == NULL)
3112 report_file_error ("Converting ACL", absname);
3113 return Qnil;
3116 encoded_absname = ENCODE_FILE (absname);
3118 fail = (acl_set_file (SSDATA (encoded_absname), ACL_TYPE_ACCESS,
3119 acl)
3120 != 0);
3121 if (fail && acl_errno_valid (errno))
3122 report_file_error ("Setting ACL", absname);
3124 acl_free (acl);
3125 return fail ? Qnil : Qt;
3127 #endif
3129 return Qnil;
3132 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
3133 doc: /* Return mode bits of file named FILENAME, as an integer.
3134 Return nil, if file does not exist or is not accessible. */)
3135 (Lisp_Object filename)
3137 Lisp_Object absname;
3138 struct stat st;
3139 Lisp_Object handler;
3141 absname = expand_and_dir_to_file (filename, BVAR (current_buffer, directory));
3143 /* If the file name has special constructs in it,
3144 call the corresponding file handler. */
3145 handler = Ffind_file_name_handler (absname, Qfile_modes);
3146 if (!NILP (handler))
3147 return call2 (handler, Qfile_modes, absname);
3149 absname = ENCODE_FILE (absname);
3151 if (stat (SSDATA (absname), &st) < 0)
3152 return Qnil;
3154 return make_number (st.st_mode & 07777);
3157 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2,
3158 "(let ((file (read-file-name \"File: \"))) \
3159 (list file (read-file-modes nil file)))",
3160 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
3161 Only the 12 low bits of MODE are used.
3163 Interactively, mode bits are read by `read-file-modes', which accepts
3164 symbolic notation, like the `chmod' command from GNU Coreutils. */)
3165 (Lisp_Object filename, Lisp_Object mode)
3167 Lisp_Object absname, encoded_absname;
3168 Lisp_Object handler;
3170 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3171 CHECK_NUMBER (mode);
3173 /* If the file name has special constructs in it,
3174 call the corresponding file handler. */
3175 handler = Ffind_file_name_handler (absname, Qset_file_modes);
3176 if (!NILP (handler))
3177 return call3 (handler, Qset_file_modes, absname, mode);
3179 encoded_absname = ENCODE_FILE (absname);
3181 if (chmod (SSDATA (encoded_absname), XINT (mode) & 07777) < 0)
3182 report_file_error ("Doing chmod", absname);
3184 return Qnil;
3187 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
3188 doc: /* Set the file permission bits for newly created files.
3189 The argument MODE should be an integer; only the low 9 bits are used.
3190 This setting is inherited by subprocesses. */)
3191 (Lisp_Object mode)
3193 mode_t oldrealmask, oldumask, newumask;
3194 CHECK_NUMBER (mode);
3195 oldrealmask = realmask;
3196 newumask = ~ XINT (mode) & 0777;
3198 block_input ();
3199 realmask = newumask;
3200 oldumask = umask (newumask);
3201 unblock_input ();
3203 eassert (oldumask == oldrealmask);
3204 return Qnil;
3207 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
3208 doc: /* Return the default file protection for created files.
3209 The value is an integer. */)
3210 (void)
3212 Lisp_Object value;
3213 XSETINT (value, (~ realmask) & 0777);
3214 return value;
3218 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
3219 doc: /* Set times of file FILENAME to TIMESTAMP.
3220 Set both access and modification times.
3221 Return t on success, else nil.
3222 Use the current time if TIMESTAMP is nil. TIMESTAMP is in the format of
3223 `current-time'. */)
3224 (Lisp_Object filename, Lisp_Object timestamp)
3226 Lisp_Object absname, encoded_absname;
3227 Lisp_Object handler;
3228 struct timespec t = lisp_time_argument (timestamp);
3230 absname = Fexpand_file_name (filename, BVAR (current_buffer, directory));
3232 /* If the file name has special constructs in it,
3233 call the corresponding file handler. */
3234 handler = Ffind_file_name_handler (absname, Qset_file_times);
3235 if (!NILP (handler))
3236 return call3 (handler, Qset_file_times, absname, timestamp);
3238 encoded_absname = ENCODE_FILE (absname);
3241 if (set_file_times (-1, SSDATA (encoded_absname), t, t) != 0)
3243 #ifdef MSDOS
3244 /* Setting times on a directory always fails. */
3245 if (file_directory_p (SSDATA (encoded_absname)))
3246 return Qnil;
3247 #endif
3248 report_file_error ("Setting file times", absname);
3252 return Qt;
3255 #ifdef HAVE_SYNC
3256 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
3257 doc: /* Tell Unix to finish all pending disk updates. */)
3258 (void)
3260 sync ();
3261 return Qnil;
3264 #endif /* HAVE_SYNC */
3266 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
3267 doc: /* Return t if file FILE1 is newer than file FILE2.
3268 If FILE1 does not exist, the answer is nil;
3269 otherwise, if FILE2 does not exist, the answer is t. */)
3270 (Lisp_Object file1, Lisp_Object file2)
3272 Lisp_Object absname1, absname2;
3273 struct stat st1, st2;
3274 Lisp_Object handler;
3275 struct gcpro gcpro1, gcpro2;
3277 CHECK_STRING (file1);
3278 CHECK_STRING (file2);
3280 absname1 = Qnil;
3281 GCPRO2 (absname1, file2);
3282 absname1 = expand_and_dir_to_file (file1, BVAR (current_buffer, directory));
3283 absname2 = expand_and_dir_to_file (file2, BVAR (current_buffer, directory));
3284 UNGCPRO;
3286 /* If the file name has special constructs in it,
3287 call the corresponding file handler. */
3288 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3289 if (NILP (handler))
3290 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3291 if (!NILP (handler))
3292 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3294 GCPRO2 (absname1, absname2);
3295 absname1 = ENCODE_FILE (absname1);
3296 absname2 = ENCODE_FILE (absname2);
3297 UNGCPRO;
3299 if (stat (SSDATA (absname1), &st1) < 0)
3300 return Qnil;
3302 if (stat (SSDATA (absname2), &st2) < 0)
3303 return Qt;
3305 return (timespec_cmp (get_stat_mtime (&st2), get_stat_mtime (&st1)) < 0
3306 ? Qt : Qnil);
3309 #ifndef READ_BUF_SIZE
3310 #define READ_BUF_SIZE (64 << 10)
3311 #endif
3312 /* Some buffer offsets are stored in 'int' variables. */
3313 verify (READ_BUF_SIZE <= INT_MAX);
3315 /* This function is called after Lisp functions to decide a coding
3316 system are called, or when they cause an error. Before they are
3317 called, the current buffer is set unibyte and it contains only a
3318 newly inserted text (thus the buffer was empty before the
3319 insertion).
3321 The functions may set markers, overlays, text properties, or even
3322 alter the buffer contents, change the current buffer.
3324 Here, we reset all those changes by:
3325 o set back the current buffer.
3326 o move all markers and overlays to BEG.
3327 o remove all text properties.
3328 o set back the buffer multibyteness. */
3330 static void
3331 decide_coding_unwind (Lisp_Object unwind_data)
3333 Lisp_Object multibyte, undo_list, buffer;
3335 multibyte = XCAR (unwind_data);
3336 unwind_data = XCDR (unwind_data);
3337 undo_list = XCAR (unwind_data);
3338 buffer = XCDR (unwind_data);
3340 set_buffer_internal (XBUFFER (buffer));
3341 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3342 adjust_overlays_for_delete (BEG, Z - BEG);
3343 set_buffer_intervals (current_buffer, NULL);
3344 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3346 /* Now we are safe to change the buffer's multibyteness directly. */
3347 bset_enable_multibyte_characters (current_buffer, multibyte);
3348 bset_undo_list (current_buffer, undo_list);
3351 /* Read from a non-regular file. STATE is a Lisp_Save_Value
3352 object where slot 0 is the file descriptor, slot 1 specifies
3353 an offset to put the read bytes, and slot 2 is the maximum
3354 amount of bytes to read. Value is the number of bytes read. */
3356 static Lisp_Object
3357 read_non_regular (Lisp_Object state)
3359 int nbytes;
3361 immediate_quit = 1;
3362 QUIT;
3363 nbytes = emacs_read (XSAVE_INTEGER (state, 0),
3364 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
3365 + XSAVE_INTEGER (state, 1)),
3366 XSAVE_INTEGER (state, 2));
3367 immediate_quit = 0;
3368 /* Fast recycle this object for the likely next call. */
3369 free_misc (state);
3370 return make_number (nbytes);
3374 /* Condition-case handler used when reading from non-regular files
3375 in insert-file-contents. */
3377 static Lisp_Object
3378 read_non_regular_quit (Lisp_Object ignore)
3380 return Qnil;
3383 /* Return the file offset that VAL represents, checking for type
3384 errors and overflow. */
3385 static off_t
3386 file_offset (Lisp_Object val)
3388 if (RANGED_INTEGERP (0, val, TYPE_MAXIMUM (off_t)))
3389 return XINT (val);
3391 if (FLOATP (val))
3393 double v = XFLOAT_DATA (val);
3394 if (0 <= v
3395 && (sizeof (off_t) < sizeof v
3396 ? v <= TYPE_MAXIMUM (off_t)
3397 : v < TYPE_MAXIMUM (off_t)))
3398 return v;
3401 wrong_type_argument (intern ("file-offset"), val);
3404 /* Return a special time value indicating the error number ERRNUM. */
3405 static struct timespec
3406 time_error_value (int errnum)
3408 int ns = (errnum == ENOENT || errnum == EACCES || errnum == ENOTDIR
3409 ? NONEXISTENT_MODTIME_NSECS
3410 : UNKNOWN_MODTIME_NSECS);
3411 return make_timespec (0, ns);
3414 static Lisp_Object
3415 get_window_points_and_markers (void)
3417 Lisp_Object pt_marker = Fpoint_marker ();
3418 Lisp_Object windows
3419 = call3 (Qget_buffer_window_list, Fcurrent_buffer (), Qnil, Qt);
3420 Lisp_Object window_markers = windows;
3421 /* Window markers (and point) are handled specially: rather than move to
3422 just before or just after the modified text, we try to keep the
3423 markers at the same distance (bug#19161).
3424 In general, this is wrong, but for window-markers, this should be harmless
3425 and is convenient for the end user when most of the file is unmodified,
3426 except for a few minor details near the beginning and near the end. */
3427 for (; CONSP (windows); windows = XCDR (windows))
3428 if (WINDOWP (XCAR (windows)))
3430 Lisp_Object window_marker = XWINDOW (XCAR (windows))->pointm;
3431 XSETCAR (windows,
3432 Fcons (window_marker, Fmarker_position (window_marker)));
3434 return Fcons (Fcons (pt_marker, Fpoint ()), window_markers);
3437 static void
3438 restore_window_points (Lisp_Object window_markers, ptrdiff_t inserted,
3439 ptrdiff_t same_at_start, ptrdiff_t same_at_end)
3441 for (; CONSP (window_markers); window_markers = XCDR (window_markers))
3442 if (CONSP (XCAR (window_markers)))
3444 Lisp_Object car = XCAR (window_markers);
3445 Lisp_Object marker = XCAR (car);
3446 Lisp_Object oldpos = XCDR (car);
3447 if (MARKERP (marker) && INTEGERP (oldpos)
3448 && XINT (oldpos) > same_at_start
3449 && XINT (oldpos) < same_at_end)
3451 ptrdiff_t oldsize = same_at_end - same_at_start;
3452 ptrdiff_t newsize = inserted;
3453 double growth = newsize / (double)oldsize;
3454 ptrdiff_t newpos
3455 = same_at_start + growth * (XINT (oldpos) - same_at_start);
3456 Fset_marker (marker, make_number (newpos), Qnil);
3461 /* FIXME: insert-file-contents should be split with the top-level moved to
3462 Elisp and only the core kept in C. */
3464 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3465 1, 5, 0,
3466 doc: /* Insert contents of file FILENAME after point.
3467 Returns list of absolute file name and number of characters inserted.
3468 If second argument VISIT is non-nil, the buffer's visited filename and
3469 last save file modtime are set, and it is marked unmodified. If
3470 visiting and the file does not exist, visiting is completed before the
3471 error is signaled.
3473 The optional third and fourth arguments BEG and END specify what portion
3474 of the file to insert. These arguments count bytes in the file, not
3475 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3477 If optional fifth argument REPLACE is non-nil, replace the current
3478 buffer contents (in the accessible portion) with the file contents.
3479 This is better than simply deleting and inserting the whole thing
3480 because (1) it preserves some marker positions and (2) it puts less data
3481 in the undo list. When REPLACE is non-nil, the second return value is
3482 the number of characters that replace previous buffer contents.
3484 This function does code conversion according to the value of
3485 `coding-system-for-read' or `file-coding-system-alist', and sets the
3486 variable `last-coding-system-used' to the coding system actually used.
3488 In addition, this function decodes the inserted text from known formats
3489 by calling `format-decode', which see. */)
3490 (Lisp_Object filename, Lisp_Object visit, Lisp_Object beg, Lisp_Object end, Lisp_Object replace)
3492 struct stat st;
3493 struct timespec mtime;
3494 int fd;
3495 ptrdiff_t inserted = 0;
3496 ptrdiff_t how_much;
3497 off_t beg_offset, end_offset;
3498 int unprocessed;
3499 ptrdiff_t count = SPECPDL_INDEX ();
3500 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3501 Lisp_Object handler, val, insval, orig_filename, old_undo;
3502 Lisp_Object p;
3503 ptrdiff_t total = 0;
3504 bool not_regular = 0;
3505 int save_errno = 0;
3506 char read_buf[READ_BUF_SIZE];
3507 struct coding_system coding;
3508 bool replace_handled = false;
3509 bool set_coding_system = false;
3510 Lisp_Object coding_system;
3511 bool read_quit = false;
3512 /* If the undo log only contains the insertion, there's no point
3513 keeping it. It's typically when we first fill a file-buffer. */
3514 bool empty_undo_list_p
3515 = (!NILP (visit) && NILP (BVAR (current_buffer, undo_list))
3516 && BEG == Z);
3517 Lisp_Object old_Vdeactivate_mark = Vdeactivate_mark;
3518 bool we_locked_file = false;
3519 ptrdiff_t fd_index;
3520 Lisp_Object window_markers = Qnil;
3521 /* same_at_start and same_at_end count bytes, because file access counts
3522 bytes and BEG and END count bytes. */
3523 ptrdiff_t same_at_start = BEGV_BYTE;
3524 ptrdiff_t same_at_end = ZV_BYTE;
3526 if (current_buffer->base_buffer && ! NILP (visit))
3527 error ("Cannot do file visiting in an indirect buffer");
3529 if (!NILP (BVAR (current_buffer, read_only)))
3530 Fbarf_if_buffer_read_only (Qnil);
3532 val = Qnil;
3533 p = Qnil;
3534 orig_filename = Qnil;
3535 old_undo = Qnil;
3537 GCPRO5 (filename, val, p, orig_filename, old_undo);
3539 CHECK_STRING (filename);
3540 filename = Fexpand_file_name (filename, Qnil);
3542 /* The value Qnil means that the coding system is not yet
3543 decided. */
3544 coding_system = Qnil;
3546 /* If the file name has special constructs in it,
3547 call the corresponding file handler. */
3548 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3549 if (!NILP (handler))
3551 val = call6 (handler, Qinsert_file_contents, filename,
3552 visit, beg, end, replace);
3553 if (CONSP (val) && CONSP (XCDR (val))
3554 && RANGED_INTEGERP (0, XCAR (XCDR (val)), ZV - PT))
3555 inserted = XINT (XCAR (XCDR (val)));
3556 goto handled;
3559 orig_filename = filename;
3560 filename = ENCODE_FILE (filename);
3562 fd = emacs_open (SSDATA (filename), O_RDONLY, 0);
3563 if (fd < 0)
3565 save_errno = errno;
3566 if (NILP (visit))
3567 report_file_error ("Opening input file", orig_filename);
3568 mtime = time_error_value (save_errno);
3569 st.st_size = -1;
3570 if (!NILP (Vcoding_system_for_read))
3571 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3572 goto notfound;
3575 fd_index = SPECPDL_INDEX ();
3576 record_unwind_protect_int (close_file_unwind, fd);
3578 /* Replacement should preserve point as it preserves markers. */
3579 if (!NILP (replace))
3581 window_markers = get_window_points_and_markers ();
3582 record_unwind_protect (restore_point_unwind,
3583 XCAR (XCAR (window_markers)));
3586 if (fstat (fd, &st) != 0)
3587 report_file_error ("Input file status", orig_filename);
3588 mtime = get_stat_mtime (&st);
3590 /* This code will need to be changed in order to work on named
3591 pipes, and it's probably just not worth it. So we should at
3592 least signal an error. */
3593 if (!S_ISREG (st.st_mode))
3595 not_regular = 1;
3597 if (! NILP (visit))
3598 goto notfound;
3600 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3601 xsignal2 (Qfile_error,
3602 build_string ("not a regular file"), orig_filename);
3605 if (!NILP (visit))
3607 if (!NILP (beg) || !NILP (end))
3608 error ("Attempt to visit less than an entire file");
3609 if (BEG < Z && NILP (replace))
3610 error ("Cannot do file visiting in a non-empty buffer");
3613 if (!NILP (beg))
3614 beg_offset = file_offset (beg);
3615 else
3616 beg_offset = 0;
3618 if (!NILP (end))
3619 end_offset = file_offset (end);
3620 else
3622 if (not_regular)
3623 end_offset = TYPE_MAXIMUM (off_t);
3624 else
3626 end_offset = st.st_size;
3628 /* A negative size can happen on a platform that allows file
3629 sizes greater than the maximum off_t value. */
3630 if (end_offset < 0)
3631 buffer_overflow ();
3633 /* The file size returned from stat may be zero, but data
3634 may be readable nonetheless, for example when this is a
3635 file in the /proc filesystem. */
3636 if (end_offset == 0)
3637 end_offset = READ_BUF_SIZE;
3641 /* Check now whether the buffer will become too large,
3642 in the likely case where the file's length is not changing.
3643 This saves a lot of needless work before a buffer overflow. */
3644 if (! not_regular)
3646 /* The likely offset where we will stop reading. We could read
3647 more (or less), if the file grows (or shrinks) as we read it. */
3648 off_t likely_end = min (end_offset, st.st_size);
3650 if (beg_offset < likely_end)
3652 ptrdiff_t buf_bytes
3653 = Z_BYTE - (!NILP (replace) ? ZV_BYTE - BEGV_BYTE : 0);
3654 ptrdiff_t buf_growth_max = BUF_BYTES_MAX - buf_bytes;
3655 off_t likely_growth = likely_end - beg_offset;
3656 if (buf_growth_max < likely_growth)
3657 buffer_overflow ();
3661 /* Prevent redisplay optimizations. */
3662 current_buffer->clip_changed = true;
3664 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3666 coding_system = coding_inherit_eol_type (Qutf_8_emacs, Qunix);
3667 setup_coding_system (coding_system, &coding);
3668 /* Ensure we set Vlast_coding_system_used. */
3669 set_coding_system = true;
3671 else if (BEG < Z)
3673 /* Decide the coding system to use for reading the file now
3674 because we can't use an optimized method for handling
3675 `coding:' tag if the current buffer is not empty. */
3676 if (!NILP (Vcoding_system_for_read))
3677 coding_system = Vcoding_system_for_read;
3678 else
3680 /* Don't try looking inside a file for a coding system
3681 specification if it is not seekable. */
3682 if (! not_regular && ! NILP (Vset_auto_coding_function))
3684 /* Find a coding system specified in the heading two
3685 lines or in the tailing several lines of the file.
3686 We assume that the 1K-byte and 3K-byte for heading
3687 and tailing respectively are sufficient for this
3688 purpose. */
3689 int nread;
3691 if (st.st_size <= (1024 * 4))
3692 nread = emacs_read (fd, read_buf, 1024 * 4);
3693 else
3695 nread = emacs_read (fd, read_buf, 1024);
3696 if (nread == 1024)
3698 int ntail;
3699 if (lseek (fd, - (1024 * 3), SEEK_END) < 0)
3700 report_file_error ("Setting file position",
3701 orig_filename);
3702 ntail = emacs_read (fd, read_buf + nread, 1024 * 3);
3703 nread = ntail < 0 ? ntail : nread + ntail;
3707 if (nread < 0)
3708 report_file_error ("Read error", orig_filename);
3709 else if (nread > 0)
3711 AUTO_STRING (name, " *code-converting-work*");
3712 struct buffer *prev = current_buffer;
3713 Lisp_Object workbuf;
3714 struct buffer *buf;
3716 record_unwind_current_buffer ();
3718 workbuf = Fget_buffer_create (name);
3719 buf = XBUFFER (workbuf);
3721 delete_all_overlays (buf);
3722 bset_directory (buf, BVAR (current_buffer, directory));
3723 bset_read_only (buf, Qnil);
3724 bset_filename (buf, Qnil);
3725 bset_undo_list (buf, Qt);
3726 eassert (buf->overlays_before == NULL);
3727 eassert (buf->overlays_after == NULL);
3729 set_buffer_internal (buf);
3730 Ferase_buffer ();
3731 bset_enable_multibyte_characters (buf, Qnil);
3733 insert_1_both ((char *) read_buf, nread, nread, 0, 0, 0);
3734 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3735 coding_system = call2 (Vset_auto_coding_function,
3736 filename, make_number (nread));
3737 set_buffer_internal (prev);
3739 /* Discard the unwind protect for recovering the
3740 current buffer. */
3741 specpdl_ptr--;
3743 /* Rewind the file for the actual read done later. */
3744 if (lseek (fd, 0, SEEK_SET) < 0)
3745 report_file_error ("Setting file position", orig_filename);
3749 if (NILP (coding_system))
3751 /* If we have not yet decided a coding system, check
3752 file-coding-system-alist. */
3753 Lisp_Object args[6];
3755 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3756 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3757 coding_system = Ffind_operation_coding_system (6, args);
3758 if (CONSP (coding_system))
3759 coding_system = XCAR (coding_system);
3763 if (NILP (coding_system))
3764 coding_system = Qundecided;
3765 else
3766 CHECK_CODING_SYSTEM (coding_system);
3768 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
3769 /* We must suppress all character code conversion except for
3770 end-of-line conversion. */
3771 coding_system = raw_text_coding_system (coding_system);
3773 setup_coding_system (coding_system, &coding);
3774 /* Ensure we set Vlast_coding_system_used. */
3775 set_coding_system = true;
3778 /* If requested, replace the accessible part of the buffer
3779 with the file contents. Avoid replacing text at the
3780 beginning or end of the buffer that matches the file contents;
3781 that preserves markers pointing to the unchanged parts.
3783 Here we implement this feature in an optimized way
3784 for the case where code conversion is NOT needed.
3785 The following if-statement handles the case of conversion
3786 in a less optimal way.
3788 If the code conversion is "automatic" then we try using this
3789 method and hope for the best.
3790 But if we discover the need for conversion, we give up on this method
3791 and let the following if-statement handle the replace job. */
3792 if (!NILP (replace)
3793 && BEGV < ZV
3794 && (NILP (coding_system)
3795 || ! CODING_REQUIRE_DECODING (&coding)))
3797 ptrdiff_t overlap;
3798 /* There is still a possibility we will find the need to do code
3799 conversion. If that happens, set this variable to
3800 give up on handling REPLACE in the optimized way. */
3801 bool giveup_match_end = false;
3803 if (beg_offset != 0)
3805 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3806 report_file_error ("Setting file position", orig_filename);
3809 immediate_quit = 1;
3810 QUIT;
3811 /* Count how many chars at the start of the file
3812 match the text at the beginning of the buffer. */
3813 while (1)
3815 int nread, bufpos;
3817 nread = emacs_read (fd, read_buf, sizeof read_buf);
3818 if (nread < 0)
3819 report_file_error ("Read error", orig_filename);
3820 else if (nread == 0)
3821 break;
3823 if (CODING_REQUIRE_DETECTION (&coding))
3825 coding_system = detect_coding_system ((unsigned char *) read_buf,
3826 nread, nread, 1, 0,
3827 coding_system);
3828 setup_coding_system (coding_system, &coding);
3831 if (CODING_REQUIRE_DECODING (&coding))
3832 /* We found that the file should be decoded somehow.
3833 Let's give up here. */
3835 giveup_match_end = true;
3836 break;
3839 bufpos = 0;
3840 while (bufpos < nread && same_at_start < ZV_BYTE
3841 && FETCH_BYTE (same_at_start) == read_buf[bufpos])
3842 same_at_start++, bufpos++;
3843 /* If we found a discrepancy, stop the scan.
3844 Otherwise loop around and scan the next bufferful. */
3845 if (bufpos != nread)
3846 break;
3848 immediate_quit = false;
3849 /* If the file matches the buffer completely,
3850 there's no need to replace anything. */
3851 if (same_at_start - BEGV_BYTE == end_offset - beg_offset)
3853 emacs_close (fd);
3854 clear_unwind_protect (fd_index);
3856 /* Truncate the buffer to the size of the file. */
3857 del_range_1 (same_at_start, same_at_end, 0, 0);
3858 goto handled;
3860 immediate_quit = true;
3861 QUIT;
3862 /* Count how many chars at the end of the file
3863 match the text at the end of the buffer. But, if we have
3864 already found that decoding is necessary, don't waste time. */
3865 while (!giveup_match_end)
3867 int total_read, nread, bufpos, trial;
3868 off_t curpos;
3870 /* At what file position are we now scanning? */
3871 curpos = end_offset - (ZV_BYTE - same_at_end);
3872 /* If the entire file matches the buffer tail, stop the scan. */
3873 if (curpos == 0)
3874 break;
3875 /* How much can we scan in the next step? */
3876 trial = min (curpos, sizeof read_buf);
3877 if (lseek (fd, curpos - trial, SEEK_SET) < 0)
3878 report_file_error ("Setting file position", orig_filename);
3880 total_read = nread = 0;
3881 while (total_read < trial)
3883 nread = emacs_read (fd, read_buf + total_read, trial - total_read);
3884 if (nread < 0)
3885 report_file_error ("Read error", orig_filename);
3886 else if (nread == 0)
3887 break;
3888 total_read += nread;
3891 /* Scan this bufferful from the end, comparing with
3892 the Emacs buffer. */
3893 bufpos = total_read;
3895 /* Compare with same_at_start to avoid counting some buffer text
3896 as matching both at the file's beginning and at the end. */
3897 while (bufpos > 0 && same_at_end > same_at_start
3898 && FETCH_BYTE (same_at_end - 1) == read_buf[bufpos - 1])
3899 same_at_end--, bufpos--;
3901 /* If we found a discrepancy, stop the scan.
3902 Otherwise loop around and scan the preceding bufferful. */
3903 if (bufpos != 0)
3905 /* If this discrepancy is because of code conversion,
3906 we cannot use this method; giveup and try the other. */
3907 if (same_at_end > same_at_start
3908 && FETCH_BYTE (same_at_end - 1) >= 0200
3909 && ! NILP (BVAR (current_buffer, enable_multibyte_characters))
3910 && (CODING_MAY_REQUIRE_DECODING (&coding)))
3911 giveup_match_end = true;
3912 break;
3915 if (nread == 0)
3916 break;
3918 immediate_quit = 0;
3920 if (! giveup_match_end)
3922 ptrdiff_t temp;
3924 /* We win! We can handle REPLACE the optimized way. */
3926 /* Extend the start of non-matching text area to multibyte
3927 character boundary. */
3928 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3929 while (same_at_start > BEGV_BYTE
3930 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
3931 same_at_start--;
3933 /* Extend the end of non-matching text area to multibyte
3934 character boundary. */
3935 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
3936 while (same_at_end < ZV_BYTE
3937 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
3938 same_at_end++;
3940 /* Don't try to reuse the same piece of text twice. */
3941 overlap = (same_at_start - BEGV_BYTE
3942 - (same_at_end
3943 + (! NILP (end) ? end_offset : st.st_size) - ZV_BYTE));
3944 if (overlap > 0)
3945 same_at_end += overlap;
3947 /* Arrange to read only the nonmatching middle part of the file. */
3948 beg_offset += same_at_start - BEGV_BYTE;
3949 end_offset -= ZV_BYTE - same_at_end;
3951 invalidate_buffer_caches (current_buffer,
3952 BYTE_TO_CHAR (same_at_start),
3953 BYTE_TO_CHAR (same_at_end));
3954 del_range_byte (same_at_start, same_at_end, 0);
3955 /* Insert from the file at the proper position. */
3956 temp = BYTE_TO_CHAR (same_at_start);
3957 SET_PT_BOTH (temp, same_at_start);
3959 /* If display currently starts at beginning of line,
3960 keep it that way. */
3961 if (XBUFFER (XWINDOW (selected_window)->contents) == current_buffer)
3962 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
3964 replace_handled = true;
3968 /* If requested, replace the accessible part of the buffer
3969 with the file contents. Avoid replacing text at the
3970 beginning or end of the buffer that matches the file contents;
3971 that preserves markers pointing to the unchanged parts.
3973 Here we implement this feature for the case where code conversion
3974 is needed, in a simple way that needs a lot of memory.
3975 The preceding if-statement handles the case of no conversion
3976 in a more optimized way. */
3977 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
3979 ptrdiff_t same_at_start_charpos;
3980 ptrdiff_t inserted_chars;
3981 ptrdiff_t overlap;
3982 ptrdiff_t bufpos;
3983 unsigned char *decoded;
3984 ptrdiff_t temp;
3985 ptrdiff_t this = 0;
3986 ptrdiff_t this_count = SPECPDL_INDEX ();
3987 bool multibyte
3988 = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3989 Lisp_Object conversion_buffer;
3990 struct gcpro gcpro1;
3992 conversion_buffer = code_conversion_save (1, multibyte);
3994 /* First read the whole file, performing code conversion into
3995 CONVERSION_BUFFER. */
3997 if (lseek (fd, beg_offset, SEEK_SET) < 0)
3998 report_file_error ("Setting file position", orig_filename);
4000 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
4001 unprocessed = 0; /* Bytes not processed in previous loop. */
4003 GCPRO1 (conversion_buffer);
4004 while (1)
4006 /* Read at most READ_BUF_SIZE bytes at a time, to allow
4007 quitting while reading a huge file. */
4009 /* Allow quitting out of the actual I/O. */
4010 immediate_quit = 1;
4011 QUIT;
4012 this = emacs_read (fd, read_buf + unprocessed,
4013 READ_BUF_SIZE - unprocessed);
4014 immediate_quit = 0;
4016 if (this <= 0)
4017 break;
4019 BUF_TEMP_SET_PT (XBUFFER (conversion_buffer),
4020 BUF_Z (XBUFFER (conversion_buffer)));
4021 decode_coding_c_string (&coding, (unsigned char *) read_buf,
4022 unprocessed + this, conversion_buffer);
4023 unprocessed = coding.carryover_bytes;
4024 if (coding.carryover_bytes > 0)
4025 memcpy (read_buf, coding.carryover, unprocessed);
4027 UNGCPRO;
4028 if (this < 0)
4029 report_file_error ("Read error", orig_filename);
4030 emacs_close (fd);
4031 clear_unwind_protect (fd_index);
4033 if (unprocessed > 0)
4035 coding.mode |= CODING_MODE_LAST_BLOCK;
4036 decode_coding_c_string (&coding, (unsigned char *) read_buf,
4037 unprocessed, conversion_buffer);
4038 coding.mode &= ~CODING_MODE_LAST_BLOCK;
4041 coding_system = CODING_ID_NAME (coding.id);
4042 set_coding_system = true;
4043 decoded = BUF_BEG_ADDR (XBUFFER (conversion_buffer));
4044 inserted = (BUF_Z_BYTE (XBUFFER (conversion_buffer))
4045 - BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
4047 /* Compare the beginning of the converted string with the buffer
4048 text. */
4050 bufpos = 0;
4051 while (bufpos < inserted && same_at_start < same_at_end
4052 && FETCH_BYTE (same_at_start) == decoded[bufpos])
4053 same_at_start++, bufpos++;
4055 /* If the file matches the head of buffer completely,
4056 there's no need to replace anything. */
4058 if (bufpos == inserted)
4060 /* Truncate the buffer to the size of the file. */
4061 if (same_at_start != same_at_end)
4063 invalidate_buffer_caches (current_buffer,
4064 BYTE_TO_CHAR (same_at_start),
4065 BYTE_TO_CHAR (same_at_end));
4066 del_range_byte (same_at_start, same_at_end, 0);
4068 inserted = 0;
4070 unbind_to (this_count, Qnil);
4071 goto handled;
4074 /* Extend the start of non-matching text area to the previous
4075 multibyte character boundary. */
4076 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
4077 while (same_at_start > BEGV_BYTE
4078 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
4079 same_at_start--;
4081 /* Scan this bufferful from the end, comparing with
4082 the Emacs buffer. */
4083 bufpos = inserted;
4085 /* Compare with same_at_start to avoid counting some buffer text
4086 as matching both at the file's beginning and at the end. */
4087 while (bufpos > 0 && same_at_end > same_at_start
4088 && FETCH_BYTE (same_at_end - 1) == decoded[bufpos - 1])
4089 same_at_end--, bufpos--;
4091 /* Extend the end of non-matching text area to the next
4092 multibyte character boundary. */
4093 if (! NILP (BVAR (current_buffer, enable_multibyte_characters)))
4094 while (same_at_end < ZV_BYTE
4095 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
4096 same_at_end++;
4098 /* Don't try to reuse the same piece of text twice. */
4099 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
4100 if (overlap > 0)
4101 same_at_end += overlap;
4103 /* If display currently starts at beginning of line,
4104 keep it that way. */
4105 if (XBUFFER (XWINDOW (selected_window)->contents) == current_buffer)
4106 XWINDOW (selected_window)->start_at_line_beg = !NILP (Fbolp ());
4108 /* Replace the chars that we need to replace,
4109 and update INSERTED to equal the number of bytes
4110 we are taking from the decoded string. */
4111 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE);
4113 if (same_at_end != same_at_start)
4115 invalidate_buffer_caches (current_buffer,
4116 BYTE_TO_CHAR (same_at_start),
4117 BYTE_TO_CHAR (same_at_end));
4118 del_range_byte (same_at_start, same_at_end, 0);
4119 temp = GPT;
4120 eassert (same_at_start == GPT_BYTE);
4121 same_at_start = GPT_BYTE;
4123 else
4125 temp = BYTE_TO_CHAR (same_at_start);
4127 /* Insert from the file at the proper position. */
4128 SET_PT_BOTH (temp, same_at_start);
4129 same_at_start_charpos
4130 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
4131 same_at_start - BEGV_BYTE
4132 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)));
4133 eassert (same_at_start_charpos == temp - (BEGV - BEG));
4134 inserted_chars
4135 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer),
4136 same_at_start + inserted - BEGV_BYTE
4137 + BUF_BEG_BYTE (XBUFFER (conversion_buffer)))
4138 - same_at_start_charpos);
4139 /* This binding is to avoid ask-user-about-supersession-threat
4140 being called in insert_from_buffer (via in
4141 prepare_to_modify_buffer). */
4142 specbind (intern ("buffer-file-name"), Qnil);
4143 insert_from_buffer (XBUFFER (conversion_buffer),
4144 same_at_start_charpos, inserted_chars, 0);
4145 /* Set `inserted' to the number of inserted characters. */
4146 inserted = PT - temp;
4147 /* Set point before the inserted characters. */
4148 SET_PT_BOTH (temp, same_at_start);
4150 unbind_to (this_count, Qnil);
4152 goto handled;
4155 if (! not_regular)
4156 total = end_offset - beg_offset;
4157 else
4158 /* For a special file, all we can do is guess. */
4159 total = READ_BUF_SIZE;
4161 if (NILP (visit) && total > 0)
4163 if (!NILP (BVAR (current_buffer, file_truename))
4164 /* Make binding buffer-file-name to nil effective. */
4165 && !NILP (BVAR (current_buffer, filename))
4166 && SAVE_MODIFF >= MODIFF)
4167 we_locked_file = true;
4168 prepare_to_modify_buffer (PT, PT, NULL);
4171 move_gap_both (PT, PT_BYTE);
4172 if (GAP_SIZE < total)
4173 make_gap (total - GAP_SIZE);
4175 if (beg_offset != 0 || !NILP (replace))
4177 if (lseek (fd, beg_offset, SEEK_SET) < 0)
4178 report_file_error ("Setting file position", orig_filename);
4181 /* In the following loop, HOW_MUCH contains the total bytes read so
4182 far for a regular file, and not changed for a special file. But,
4183 before exiting the loop, it is set to a negative value if I/O
4184 error occurs. */
4185 how_much = 0;
4187 /* Total bytes inserted. */
4188 inserted = 0;
4190 /* Here, we don't do code conversion in the loop. It is done by
4191 decode_coding_gap after all data are read into the buffer. */
4193 ptrdiff_t gap_size = GAP_SIZE;
4195 while (how_much < total)
4197 /* `try' is reserved in some compilers (Microsoft C). */
4198 ptrdiff_t trytry = min (total - how_much, READ_BUF_SIZE);
4199 ptrdiff_t this;
4201 if (not_regular)
4203 Lisp_Object nbytes;
4205 /* Maybe make more room. */
4206 if (gap_size < trytry)
4208 make_gap (trytry - gap_size);
4209 gap_size = GAP_SIZE - inserted;
4212 /* Read from the file, capturing `quit'. When an
4213 error occurs, end the loop, and arrange for a quit
4214 to be signaled after decoding the text we read. */
4215 nbytes = internal_condition_case_1
4216 (read_non_regular,
4217 make_save_int_int_int (fd, inserted, trytry),
4218 Qerror, read_non_regular_quit);
4220 if (NILP (nbytes))
4222 read_quit = true;
4223 break;
4226 this = XINT (nbytes);
4228 else
4230 /* Allow quitting out of the actual I/O. We don't make text
4231 part of the buffer until all the reading is done, so a C-g
4232 here doesn't do any harm. */
4233 immediate_quit = 1;
4234 QUIT;
4235 this = emacs_read (fd,
4236 ((char *) BEG_ADDR + PT_BYTE - BEG_BYTE
4237 + inserted),
4238 trytry);
4239 immediate_quit = 0;
4242 if (this <= 0)
4244 how_much = this;
4245 break;
4248 gap_size -= this;
4250 /* For a regular file, where TOTAL is the real size,
4251 count HOW_MUCH to compare with it.
4252 For a special file, where TOTAL is just a buffer size,
4253 so don't bother counting in HOW_MUCH.
4254 (INSERTED is where we count the number of characters inserted.) */
4255 if (! not_regular)
4256 how_much += this;
4257 inserted += this;
4261 /* Now we have either read all the file data into the gap,
4262 or stop reading on I/O error or quit. If nothing was
4263 read, undo marking the buffer modified. */
4265 if (inserted == 0)
4267 if (we_locked_file)
4268 unlock_file (BVAR (current_buffer, file_truename));
4269 Vdeactivate_mark = old_Vdeactivate_mark;
4271 else
4272 Vdeactivate_mark = Qt;
4274 emacs_close (fd);
4275 clear_unwind_protect (fd_index);
4277 if (how_much < 0)
4278 report_file_error ("Read error", orig_filename);
4280 /* Make the text read part of the buffer. */
4281 GAP_SIZE -= inserted;
4282 GPT += inserted;
4283 GPT_BYTE += inserted;
4284 ZV += inserted;
4285 ZV_BYTE += inserted;
4286 Z += inserted;
4287 Z_BYTE += inserted;
4289 if (GAP_SIZE > 0)
4290 /* Put an anchor to ensure multi-byte form ends at gap. */
4291 *GPT_ADDR = 0;
4293 notfound:
4295 if (NILP (coding_system))
4297 /* The coding system is not yet decided. Decide it by an
4298 optimized method for handling `coding:' tag.
4300 Note that we can get here only if the buffer was empty
4301 before the insertion. */
4303 if (!NILP (Vcoding_system_for_read))
4304 coding_system = Vcoding_system_for_read;
4305 else
4307 /* Since we are sure that the current buffer was empty
4308 before the insertion, we can toggle
4309 enable-multibyte-characters directly here without taking
4310 care of marker adjustment. By this way, we can run Lisp
4311 program safely before decoding the inserted text. */
4312 Lisp_Object unwind_data;
4313 ptrdiff_t count1 = SPECPDL_INDEX ();
4315 unwind_data = Fcons (BVAR (current_buffer, enable_multibyte_characters),
4316 Fcons (BVAR (current_buffer, undo_list),
4317 Fcurrent_buffer ()));
4318 bset_enable_multibyte_characters (current_buffer, Qnil);
4319 bset_undo_list (current_buffer, Qt);
4320 record_unwind_protect (decide_coding_unwind, unwind_data);
4322 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4324 coding_system = call2 (Vset_auto_coding_function,
4325 filename, make_number (inserted));
4328 if (NILP (coding_system))
4330 /* If the coding system is not yet decided, check
4331 file-coding-system-alist. */
4332 Lisp_Object args[6];
4334 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4335 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4336 coding_system = Ffind_operation_coding_system (6, args);
4337 if (CONSP (coding_system))
4338 coding_system = XCAR (coding_system);
4340 unbind_to (count1, Qnil);
4341 inserted = Z_BYTE - BEG_BYTE;
4344 if (NILP (coding_system))
4345 coding_system = Qundecided;
4346 else
4347 CHECK_CODING_SYSTEM (coding_system);
4349 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4350 /* We must suppress all character code conversion except for
4351 end-of-line conversion. */
4352 coding_system = raw_text_coding_system (coding_system);
4353 setup_coding_system (coding_system, &coding);
4354 /* Ensure we set Vlast_coding_system_used. */
4355 set_coding_system = true;
4358 if (!NILP (visit))
4360 /* When we visit a file by raw-text, we change the buffer to
4361 unibyte. */
4362 if (CODING_FOR_UNIBYTE (&coding)
4363 /* Can't do this if part of the buffer might be preserved. */
4364 && NILP (replace))
4365 /* Visiting a file with these coding system makes the buffer
4366 unibyte. */
4367 bset_enable_multibyte_characters (current_buffer, Qnil);
4370 coding.dst_multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
4371 if (CODING_MAY_REQUIRE_DECODING (&coding)
4372 && (inserted > 0 || CODING_REQUIRE_FLUSHING (&coding)))
4374 move_gap_both (PT, PT_BYTE);
4375 GAP_SIZE += inserted;
4376 ZV_BYTE -= inserted;
4377 Z_BYTE -= inserted;
4378 ZV -= inserted;
4379 Z -= inserted;
4380 decode_coding_gap (&coding, inserted, inserted);
4381 inserted = coding.produced_char;
4382 coding_system = CODING_ID_NAME (coding.id);
4384 else if (inserted > 0)
4386 invalidate_buffer_caches (current_buffer, PT, PT + inserted);
4387 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4388 inserted);
4391 /* Call after-change hooks for the inserted text, aside from the case
4392 of normal visiting (not with REPLACE), which is done in a new buffer
4393 "before" the buffer is changed. */
4394 if (inserted > 0 && total > 0
4395 && (NILP (visit) || !NILP (replace)))
4397 signal_after_change (PT, 0, inserted);
4398 update_compositions (PT, PT, CHECK_BORDER);
4401 /* Now INSERTED is measured in characters. */
4403 handled:
4405 if (inserted > 0)
4406 restore_window_points (window_markers, inserted,
4407 BYTE_TO_CHAR (same_at_start),
4408 BYTE_TO_CHAR (same_at_end));
4410 if (!NILP (visit))
4412 if (empty_undo_list_p)
4413 bset_undo_list (current_buffer, Qnil);
4415 if (NILP (handler))
4417 current_buffer->modtime = mtime;
4418 current_buffer->modtime_size = st.st_size;
4419 bset_filename (current_buffer, orig_filename);
4422 SAVE_MODIFF = MODIFF;
4423 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
4424 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
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 if (not_regular)
4432 xsignal2 (Qfile_error,
4433 build_string ("not a regular file"), orig_filename);
4436 if (set_coding_system)
4437 Vlast_coding_system_used = coding_system;
4439 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4441 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted),
4442 visit);
4443 if (! NILP (insval))
4445 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4446 wrong_type_argument (intern ("inserted-chars"), insval);
4447 inserted = XFASTINT (insval);
4451 /* Decode file format. */
4452 if (inserted > 0)
4454 /* Don't run point motion or modification hooks when decoding. */
4455 ptrdiff_t count1 = SPECPDL_INDEX ();
4456 ptrdiff_t old_inserted = inserted;
4457 specbind (Qinhibit_point_motion_hooks, Qt);
4458 specbind (Qinhibit_modification_hooks, Qt);
4460 /* Save old undo list and don't record undo for decoding. */
4461 old_undo = BVAR (current_buffer, undo_list);
4462 bset_undo_list (current_buffer, Qt);
4464 if (NILP (replace))
4466 insval = call3 (Qformat_decode,
4467 Qnil, make_number (inserted), visit);
4468 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4469 wrong_type_argument (intern ("inserted-chars"), insval);
4470 inserted = XFASTINT (insval);
4472 else
4474 /* If REPLACE is non-nil and we succeeded in not replacing the
4475 beginning or end of the buffer text with the file's contents,
4476 call format-decode with `point' positioned at the beginning
4477 of the buffer and `inserted' equaling the number of
4478 characters in the buffer. Otherwise, format-decode might
4479 fail to correctly analyze the beginning or end of the buffer.
4480 Hence we temporarily save `point' and `inserted' here and
4481 restore `point' iff format-decode did not insert or delete
4482 any text. Otherwise we leave `point' at point-min. */
4483 ptrdiff_t opoint = PT;
4484 ptrdiff_t opoint_byte = PT_BYTE;
4485 ptrdiff_t oinserted = ZV - BEGV;
4486 EMACS_INT ochars_modiff = CHARS_MODIFF;
4488 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4489 insval = call3 (Qformat_decode,
4490 Qnil, make_number (oinserted), visit);
4491 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4492 wrong_type_argument (intern ("inserted-chars"), insval);
4493 if (ochars_modiff == CHARS_MODIFF)
4494 /* format_decode didn't modify buffer's characters => move
4495 point back to position before inserted text and leave
4496 value of inserted alone. */
4497 SET_PT_BOTH (opoint, opoint_byte);
4498 else
4499 /* format_decode modified buffer's characters => consider
4500 entire buffer changed and leave point at point-min. */
4501 inserted = XFASTINT (insval);
4504 /* For consistency with format-decode call these now iff inserted > 0
4505 (martin 2007-06-28). */
4506 p = Vafter_insert_file_functions;
4507 while (CONSP (p))
4509 if (NILP (replace))
4511 insval = call1 (XCAR (p), make_number (inserted));
4512 if (!NILP (insval))
4514 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4515 wrong_type_argument (intern ("inserted-chars"), insval);
4516 inserted = XFASTINT (insval);
4519 else
4521 /* For the rationale of this see the comment on
4522 format-decode above. */
4523 ptrdiff_t opoint = PT;
4524 ptrdiff_t opoint_byte = PT_BYTE;
4525 ptrdiff_t oinserted = ZV - BEGV;
4526 EMACS_INT ochars_modiff = CHARS_MODIFF;
4528 TEMP_SET_PT_BOTH (BEGV, BEGV_BYTE);
4529 insval = call1 (XCAR (p), make_number (oinserted));
4530 if (!NILP (insval))
4532 if (! RANGED_INTEGERP (0, insval, ZV - PT))
4533 wrong_type_argument (intern ("inserted-chars"), insval);
4534 if (ochars_modiff == CHARS_MODIFF)
4535 /* after_insert_file_functions didn't modify
4536 buffer's characters => move point back to
4537 position before inserted text and leave value of
4538 inserted alone. */
4539 SET_PT_BOTH (opoint, opoint_byte);
4540 else
4541 /* after_insert_file_functions did modify buffer's
4542 characters => consider entire buffer changed and
4543 leave point at point-min. */
4544 inserted = XFASTINT (insval);
4548 QUIT;
4549 p = XCDR (p);
4552 if (!empty_undo_list_p)
4554 bset_undo_list (current_buffer, old_undo);
4555 if (CONSP (old_undo) && inserted != old_inserted)
4557 /* Adjust the last undo record for the size change during
4558 the format conversion. */
4559 Lisp_Object tem = XCAR (old_undo);
4560 if (CONSP (tem) && INTEGERP (XCAR (tem))
4561 && INTEGERP (XCDR (tem))
4562 && XFASTINT (XCDR (tem)) == PT + old_inserted)
4563 XSETCDR (tem, make_number (PT + inserted));
4566 else
4567 /* If undo_list was Qt before, keep it that way.
4568 Otherwise start with an empty undo_list. */
4569 bset_undo_list (current_buffer, EQ (old_undo, Qt) ? Qt : Qnil);
4571 unbind_to (count1, Qnil);
4574 if (!NILP (visit)
4575 && current_buffer->modtime.tv_nsec == NONEXISTENT_MODTIME_NSECS)
4577 /* If visiting nonexistent file, return nil. */
4578 report_file_errno ("Opening input file", orig_filename, save_errno);
4581 /* We made a lot of deletions and insertions above, so invalidate
4582 the newline cache for the entire region of the inserted
4583 characters. */
4584 if (current_buffer->base_buffer && current_buffer->base_buffer->newline_cache)
4585 invalidate_region_cache (current_buffer->base_buffer,
4586 current_buffer->base_buffer->newline_cache,
4587 PT - BEG, Z - PT - inserted);
4588 else if (current_buffer->newline_cache)
4589 invalidate_region_cache (current_buffer,
4590 current_buffer->newline_cache,
4591 PT - BEG, Z - PT - inserted);
4593 if (read_quit)
4594 Fsignal (Qquit, Qnil);
4596 /* Retval needs to be dealt with in all cases consistently. */
4597 if (NILP (val))
4598 val = list2 (orig_filename, make_number (inserted));
4600 RETURN_UNGCPRO (unbind_to (count, val));
4603 static Lisp_Object build_annotations (Lisp_Object, Lisp_Object);
4605 static void
4606 build_annotations_unwind (Lisp_Object arg)
4608 Vwrite_region_annotation_buffers = arg;
4611 /* Decide the coding-system to encode the data with. */
4613 static Lisp_Object
4614 choose_write_coding_system (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4615 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname,
4616 struct coding_system *coding)
4618 Lisp_Object val;
4619 Lisp_Object eol_parent = Qnil;
4621 if (auto_saving
4622 && NILP (Fstring_equal (BVAR (current_buffer, filename),
4623 BVAR (current_buffer, auto_save_file_name))))
4625 val = Qutf_8_emacs;
4626 eol_parent = Qunix;
4628 else if (!NILP (Vcoding_system_for_write))
4630 val = Vcoding_system_for_write;
4631 if (coding_system_require_warning
4632 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4633 /* Confirm that VAL can surely encode the current region. */
4634 val = call5 (Vselect_safe_coding_system_function,
4635 start, end, list2 (Qt, val),
4636 Qnil, filename);
4638 else
4640 /* If the variable `buffer-file-coding-system' is set locally,
4641 it means that the file was read with some kind of code
4642 conversion or the variable is explicitly set by users. We
4643 had better write it out with the same coding system even if
4644 `enable-multibyte-characters' is nil.
4646 If it is not set locally, we anyway have to convert EOL
4647 format if the default value of `buffer-file-coding-system'
4648 tells that it is not Unix-like (LF only) format. */
4649 bool using_default_coding = 0;
4650 bool force_raw_text = 0;
4652 val = BVAR (current_buffer, buffer_file_coding_system);
4653 if (NILP (val)
4654 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4656 val = Qnil;
4657 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
4658 force_raw_text = 1;
4661 if (NILP (val))
4663 /* Check file-coding-system-alist. */
4664 Lisp_Object args[7], coding_systems;
4666 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4667 args[3] = filename; args[4] = append; args[5] = visit;
4668 args[6] = lockname;
4669 coding_systems = Ffind_operation_coding_system (7, args);
4670 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4671 val = XCDR (coding_systems);
4674 if (NILP (val))
4676 /* If we still have not decided a coding system, use the
4677 default value of buffer-file-coding-system. */
4678 val = BVAR (current_buffer, buffer_file_coding_system);
4679 using_default_coding = 1;
4682 if (! NILP (val) && ! force_raw_text)
4684 Lisp_Object spec, attrs;
4686 CHECK_CODING_SYSTEM_GET_SPEC (val, spec);
4687 attrs = AREF (spec, 0);
4688 if (EQ (CODING_ATTR_TYPE (attrs), Qraw_text))
4689 force_raw_text = 1;
4692 if (!force_raw_text
4693 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4694 /* Confirm that VAL can surely encode the current region. */
4695 val = call5 (Vselect_safe_coding_system_function,
4696 start, end, val, Qnil, filename);
4698 /* If the decided coding-system doesn't specify end-of-line
4699 format, we use that of
4700 `default-buffer-file-coding-system'. */
4701 if (! using_default_coding
4702 && ! NILP (BVAR (&buffer_defaults, buffer_file_coding_system)))
4703 val = (coding_inherit_eol_type
4704 (val, BVAR (&buffer_defaults, buffer_file_coding_system)));
4706 /* If we decide not to encode text, use `raw-text' or one of its
4707 subsidiaries. */
4708 if (force_raw_text)
4709 val = raw_text_coding_system (val);
4712 val = coding_inherit_eol_type (val, eol_parent);
4713 setup_coding_system (val, coding);
4715 if (!STRINGP (start) && !NILP (BVAR (current_buffer, selective_display)))
4716 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4717 return val;
4720 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4721 "r\nFWrite region to file: \ni\ni\ni\np",
4722 doc: /* Write current region into specified file.
4723 When called from a program, requires three arguments:
4724 START, END and FILENAME. START and END are normally buffer positions
4725 specifying the part of the buffer to write.
4726 If START is nil, that means to use the entire buffer contents.
4727 If START is a string, then output that string to the file
4728 instead of any buffer contents; END is ignored.
4730 Optional fourth argument APPEND if non-nil means
4731 append to existing file contents (if any). If it is a number,
4732 seek to that offset in the file before writing.
4733 Optional fifth argument VISIT, if t or a string, means
4734 set the last-save-file-modtime of buffer to this file's modtime
4735 and mark buffer not modified.
4736 If VISIT is a string, it is a second file name;
4737 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4738 VISIT is also the file name to lock and unlock for clash detection.
4739 If VISIT is neither t nor nil nor a string,
4740 that means do not display the \"Wrote file\" message.
4741 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4742 use for locking and unlocking, overriding FILENAME and VISIT.
4743 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4744 for an existing file with the same name. If MUSTBENEW is `excl',
4745 that means to get an error if the file already exists; never overwrite.
4746 If MUSTBENEW is neither nil nor `excl', that means ask for
4747 confirmation before overwriting, but do go ahead and overwrite the file
4748 if the user confirms.
4750 This does code conversion according to the value of
4751 `coding-system-for-write', `buffer-file-coding-system', or
4752 `file-coding-system-alist', and sets the variable
4753 `last-coding-system-used' to the coding system actually used.
4755 This calls `write-region-annotate-functions' at the start, and
4756 `write-region-post-annotation-function' at the end. */)
4757 (Lisp_Object start, Lisp_Object end, Lisp_Object filename, Lisp_Object append,
4758 Lisp_Object visit, Lisp_Object lockname, Lisp_Object mustbenew)
4760 return write_region (start, end, filename, append, visit, lockname, mustbenew,
4761 -1);
4764 /* Like Fwrite_region, except that if DESC is nonnegative, it is a file
4765 descriptor for FILENAME, so do not open or close FILENAME. */
4767 Lisp_Object
4768 write_region (Lisp_Object start, Lisp_Object end, Lisp_Object filename,
4769 Lisp_Object append, Lisp_Object visit, Lisp_Object lockname,
4770 Lisp_Object mustbenew, int desc)
4772 int open_flags;
4773 int mode;
4774 off_t offset IF_LINT (= 0);
4775 bool open_and_close_file = desc < 0;
4776 bool ok;
4777 int save_errno = 0;
4778 const char *fn;
4779 struct stat st;
4780 struct timespec modtime;
4781 ptrdiff_t count = SPECPDL_INDEX ();
4782 ptrdiff_t count1 IF_LINT (= 0);
4783 Lisp_Object handler;
4784 Lisp_Object visit_file;
4785 Lisp_Object annotations;
4786 Lisp_Object encoded_filename;
4787 bool visiting = (EQ (visit, Qt) || STRINGP (visit));
4788 bool quietly = !NILP (visit);
4789 bool file_locked = 0;
4790 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4791 struct buffer *given_buffer;
4792 struct coding_system coding;
4794 if (current_buffer->base_buffer && visiting)
4795 error ("Cannot do file visiting in an indirect buffer");
4797 if (!NILP (start) && !STRINGP (start))
4798 validate_region (&start, &end);
4800 visit_file = Qnil;
4801 GCPRO5 (start, filename, visit, visit_file, lockname);
4803 filename = Fexpand_file_name (filename, Qnil);
4805 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4806 barf_or_query_if_file_exists (filename, false, "overwrite", true, true);
4808 if (STRINGP (visit))
4809 visit_file = Fexpand_file_name (visit, Qnil);
4810 else
4811 visit_file = filename;
4813 if (NILP (lockname))
4814 lockname = visit_file;
4816 annotations = Qnil;
4818 /* If the file name has special constructs in it,
4819 call the corresponding file handler. */
4820 handler = Ffind_file_name_handler (filename, Qwrite_region);
4821 /* If FILENAME has no handler, see if VISIT has one. */
4822 if (NILP (handler) && STRINGP (visit))
4823 handler = Ffind_file_name_handler (visit, Qwrite_region);
4825 if (!NILP (handler))
4827 Lisp_Object val;
4828 val = call6 (handler, Qwrite_region, start, end,
4829 filename, append, visit);
4831 if (visiting)
4833 SAVE_MODIFF = MODIFF;
4834 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
4835 bset_filename (current_buffer, visit_file);
4837 UNGCPRO;
4838 return val;
4841 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4843 /* Special kludge to simplify auto-saving. */
4844 if (NILP (start))
4846 /* Do it later, so write-region-annotate-function can work differently
4847 if we save "the buffer" vs "a region".
4848 This is useful in tar-mode. --Stef
4849 XSETFASTINT (start, BEG);
4850 XSETFASTINT (end, Z); */
4851 Fwiden ();
4854 record_unwind_protect (build_annotations_unwind,
4855 Vwrite_region_annotation_buffers);
4856 Vwrite_region_annotation_buffers = list1 (Fcurrent_buffer ());
4858 given_buffer = current_buffer;
4860 if (!STRINGP (start))
4862 annotations = build_annotations (start, end);
4864 if (current_buffer != given_buffer)
4866 XSETFASTINT (start, BEGV);
4867 XSETFASTINT (end, ZV);
4871 if (NILP (start))
4873 XSETFASTINT (start, BEGV);
4874 XSETFASTINT (end, ZV);
4877 UNGCPRO;
4879 GCPRO5 (start, filename, annotations, visit_file, lockname);
4881 /* Decide the coding-system to encode the data with.
4882 We used to make this choice before calling build_annotations, but that
4883 leads to problems when a write-annotate-function takes care of
4884 unsavable chars (as was the case with X-Symbol). */
4885 Vlast_coding_system_used
4886 = choose_write_coding_system (start, end, filename,
4887 append, visit, lockname, &coding);
4889 if (open_and_close_file && !auto_saving)
4891 lock_file (lockname);
4892 file_locked = 1;
4895 encoded_filename = ENCODE_FILE (filename);
4896 fn = SSDATA (encoded_filename);
4897 open_flags = O_WRONLY | O_BINARY | O_CREAT;
4898 open_flags |= EQ (mustbenew, Qexcl) ? O_EXCL : !NILP (append) ? 0 : O_TRUNC;
4899 if (NUMBERP (append))
4900 offset = file_offset (append);
4901 else if (!NILP (append))
4902 open_flags |= O_APPEND;
4903 #ifdef DOS_NT
4904 mode = S_IREAD | S_IWRITE;
4905 #else
4906 mode = auto_saving ? auto_save_mode_bits : 0666;
4907 #endif
4909 if (open_and_close_file)
4911 desc = emacs_open (fn, open_flags, mode);
4912 if (desc < 0)
4914 int open_errno = errno;
4915 if (file_locked)
4916 unlock_file (lockname);
4917 UNGCPRO;
4918 report_file_errno ("Opening output file", filename, open_errno);
4921 count1 = SPECPDL_INDEX ();
4922 record_unwind_protect_int (close_file_unwind, desc);
4925 if (NUMBERP (append))
4927 off_t ret = lseek (desc, offset, SEEK_SET);
4928 if (ret < 0)
4930 int lseek_errno = errno;
4931 if (file_locked)
4932 unlock_file (lockname);
4933 UNGCPRO;
4934 report_file_errno ("Lseek error", filename, lseek_errno);
4938 UNGCPRO;
4940 immediate_quit = 1;
4942 if (STRINGP (start))
4943 ok = a_write (desc, start, 0, SCHARS (start), &annotations, &coding);
4944 else if (XINT (start) != XINT (end))
4945 ok = a_write (desc, Qnil, XINT (start), XINT (end) - XINT (start),
4946 &annotations, &coding);
4947 else
4949 /* If file was empty, still need to write the annotations. */
4950 coding.mode |= CODING_MODE_LAST_BLOCK;
4951 ok = a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
4953 save_errno = errno;
4955 if (ok && CODING_REQUIRE_FLUSHING (&coding)
4956 && !(coding.mode & CODING_MODE_LAST_BLOCK))
4958 /* We have to flush out a data. */
4959 coding.mode |= CODING_MODE_LAST_BLOCK;
4960 ok = e_write (desc, Qnil, 1, 1, &coding);
4961 save_errno = errno;
4964 immediate_quit = 0;
4966 /* fsync is not crucial for temporary files. Nor for auto-save
4967 files, since they might lose some work anyway. */
4968 if (open_and_close_file && !auto_saving && !write_region_inhibit_fsync)
4970 /* Transfer data and metadata to disk, retrying if interrupted.
4971 fsync can report a write failure here, e.g., due to disk full
4972 under NFS. But ignore EINVAL, which means fsync is not
4973 supported on this file. */
4974 while (fsync (desc) != 0)
4975 if (errno != EINTR)
4977 if (errno != EINVAL)
4978 ok = 0, save_errno = errno;
4979 break;
4983 modtime = invalid_timespec ();
4984 if (visiting)
4986 if (fstat (desc, &st) == 0)
4987 modtime = get_stat_mtime (&st);
4988 else
4989 ok = 0, save_errno = errno;
4992 if (open_and_close_file)
4994 /* NFS can report a write failure now. */
4995 if (emacs_close (desc) < 0)
4996 ok = 0, save_errno = errno;
4998 /* Discard the unwind protect for close_file_unwind. */
4999 specpdl_ptr = specpdl + count1;
5002 /* Some file systems have a bug where st_mtime is not updated
5003 properly after a write. For example, CIFS might not see the
5004 st_mtime change until after the file is opened again.
5006 Attempt to detect this file system bug, and update MODTIME to the
5007 newer st_mtime if the bug appears to be present. This introduces
5008 a race condition, so to avoid most instances of the race condition
5009 on non-buggy file systems, skip this check if the most recently
5010 encountered non-buggy file system was the current file system.
5012 A race condition can occur if some other process modifies the
5013 file between the fstat above and the fstat below, but the race is
5014 unlikely and a similar race between the last write and the fstat
5015 above cannot possibly be closed anyway. */
5017 if (timespec_valid_p (modtime)
5018 && ! (valid_timestamp_file_system && st.st_dev == timestamp_file_system))
5020 int desc1 = emacs_open (fn, O_WRONLY | O_BINARY, 0);
5021 if (desc1 >= 0)
5023 struct stat st1;
5024 if (fstat (desc1, &st1) == 0
5025 && st.st_dev == st1.st_dev && st.st_ino == st1.st_ino)
5027 /* Use the heuristic if it appears to be valid. With neither
5028 O_EXCL nor O_TRUNC, if Emacs happened to write nothing to the
5029 file, the time stamp won't change. Also, some non-POSIX
5030 systems don't update an empty file's time stamp when
5031 truncating it. Finally, file systems with 100 ns or worse
5032 resolution sometimes seem to have bugs: on a system with ns
5033 resolution, checking ns % 100 incorrectly avoids the heuristic
5034 1% of the time, but the problem should be temporary as we will
5035 try again on the next time stamp. */
5036 bool use_heuristic
5037 = ((open_flags & (O_EXCL | O_TRUNC)) != 0
5038 && st.st_size != 0
5039 && modtime.tv_nsec % 100 != 0);
5041 struct timespec modtime1 = get_stat_mtime (&st1);
5042 if (use_heuristic
5043 && timespec_cmp (modtime, modtime1) == 0
5044 && st.st_size == st1.st_size)
5046 timestamp_file_system = st.st_dev;
5047 valid_timestamp_file_system = 1;
5049 else
5051 st.st_size = st1.st_size;
5052 modtime = modtime1;
5055 emacs_close (desc1);
5059 /* Call write-region-post-annotation-function. */
5060 while (CONSP (Vwrite_region_annotation_buffers))
5062 Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers);
5063 if (!NILP (Fbuffer_live_p (buf)))
5065 Fset_buffer (buf);
5066 if (FUNCTIONP (Vwrite_region_post_annotation_function))
5067 call0 (Vwrite_region_post_annotation_function);
5069 Vwrite_region_annotation_buffers
5070 = XCDR (Vwrite_region_annotation_buffers);
5073 unbind_to (count, Qnil);
5075 if (file_locked)
5076 unlock_file (lockname);
5078 /* Do this before reporting IO error
5079 to avoid a "file has changed on disk" warning on
5080 next attempt to save. */
5081 if (timespec_valid_p (modtime))
5083 current_buffer->modtime = modtime;
5084 current_buffer->modtime_size = st.st_size;
5087 if (! ok)
5088 report_file_errno ("Write error", filename, save_errno);
5090 if (visiting)
5092 SAVE_MODIFF = MODIFF;
5093 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5094 bset_filename (current_buffer, visit_file);
5095 update_mode_lines = 14;
5097 else if (quietly)
5099 if (auto_saving
5100 && ! NILP (Fstring_equal (BVAR (current_buffer, filename),
5101 BVAR (current_buffer, auto_save_file_name))))
5102 SAVE_MODIFF = MODIFF;
5104 return Qnil;
5107 if (!auto_saving)
5108 message_with_string ((NUMBERP (append)
5109 ? "Updated %s"
5110 : ! NILP (append)
5111 ? "Added to %s"
5112 : "Wrote %s"),
5113 visit_file, 1);
5115 return Qnil;
5118 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
5119 doc: /* Return t if (car A) is numerically less than (car B). */)
5120 (Lisp_Object a, Lisp_Object b)
5122 Lisp_Object args[2];
5123 args[0] = Fcar (a);
5124 args[1] = Fcar (b);
5125 return Flss (2, args);
5128 /* Build the complete list of annotations appropriate for writing out
5129 the text between START and END, by calling all the functions in
5130 write-region-annotate-functions and merging the lists they return.
5131 If one of these functions switches to a different buffer, we assume
5132 that buffer contains altered text. Therefore, the caller must
5133 make sure to restore the current buffer in all cases,
5134 as save-excursion would do. */
5136 static Lisp_Object
5137 build_annotations (Lisp_Object start, Lisp_Object end)
5139 Lisp_Object annotations;
5140 Lisp_Object p, res;
5141 struct gcpro gcpro1, gcpro2;
5142 Lisp_Object original_buffer;
5143 int i;
5144 bool used_global = 0;
5146 XSETBUFFER (original_buffer, current_buffer);
5148 annotations = Qnil;
5149 p = Vwrite_region_annotate_functions;
5150 GCPRO2 (annotations, p);
5151 while (CONSP (p))
5153 struct buffer *given_buffer = current_buffer;
5154 if (EQ (Qt, XCAR (p)) && !used_global)
5155 { /* Use the global value of the hook. */
5156 Lisp_Object arg[2];
5157 used_global = 1;
5158 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
5159 arg[1] = XCDR (p);
5160 p = Fappend (2, arg);
5161 continue;
5163 Vwrite_region_annotations_so_far = annotations;
5164 res = call2 (XCAR (p), start, end);
5165 /* If the function makes a different buffer current,
5166 assume that means this buffer contains altered text to be output.
5167 Reset START and END from the buffer bounds
5168 and discard all previous annotations because they should have
5169 been dealt with by this function. */
5170 if (current_buffer != given_buffer)
5172 Vwrite_region_annotation_buffers
5173 = Fcons (Fcurrent_buffer (),
5174 Vwrite_region_annotation_buffers);
5175 XSETFASTINT (start, BEGV);
5176 XSETFASTINT (end, ZV);
5177 annotations = Qnil;
5179 Flength (res); /* Check basic validity of return value */
5180 annotations = merge (annotations, res, Qcar_less_than_car);
5181 p = XCDR (p);
5184 /* Now do the same for annotation functions implied by the file-format */
5185 if (auto_saving && (!EQ (BVAR (current_buffer, auto_save_file_format), Qt)))
5186 p = BVAR (current_buffer, auto_save_file_format);
5187 else
5188 p = BVAR (current_buffer, file_format);
5189 for (i = 0; CONSP (p); p = XCDR (p), ++i)
5191 struct buffer *given_buffer = current_buffer;
5193 Vwrite_region_annotations_so_far = annotations;
5195 /* Value is either a list of annotations or nil if the function
5196 has written annotations to a temporary buffer, which is now
5197 current. */
5198 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
5199 original_buffer, make_number (i));
5200 if (current_buffer != given_buffer)
5202 XSETFASTINT (start, BEGV);
5203 XSETFASTINT (end, ZV);
5204 annotations = Qnil;
5207 if (CONSP (res))
5208 annotations = merge (annotations, res, Qcar_less_than_car);
5211 UNGCPRO;
5212 return annotations;
5216 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
5217 If STRING is nil, POS is the character position in the current buffer.
5218 Intersperse with them the annotations from *ANNOT
5219 which fall within the range of POS to POS + NCHARS,
5220 each at its appropriate position.
5222 We modify *ANNOT by discarding elements as we use them up.
5224 Return true if successful. */
5226 static bool
5227 a_write (int desc, Lisp_Object string, ptrdiff_t pos,
5228 ptrdiff_t nchars, Lisp_Object *annot,
5229 struct coding_system *coding)
5231 Lisp_Object tem;
5232 ptrdiff_t nextpos;
5233 ptrdiff_t lastpos = pos + nchars;
5235 while (NILP (*annot) || CONSP (*annot))
5237 tem = Fcar_safe (Fcar (*annot));
5238 nextpos = pos - 1;
5239 if (INTEGERP (tem))
5240 nextpos = XFASTINT (tem);
5242 /* If there are no more annotations in this range,
5243 output the rest of the range all at once. */
5244 if (! (nextpos >= pos && nextpos <= lastpos))
5245 return e_write (desc, string, pos, lastpos, coding);
5247 /* Output buffer text up to the next annotation's position. */
5248 if (nextpos > pos)
5250 if (!e_write (desc, string, pos, nextpos, coding))
5251 return 0;
5252 pos = nextpos;
5254 /* Output the annotation. */
5255 tem = Fcdr (Fcar (*annot));
5256 if (STRINGP (tem))
5258 if (!e_write (desc, tem, 0, SCHARS (tem), coding))
5259 return 0;
5261 *annot = Fcdr (*annot);
5263 return 1;
5266 /* Maximum number of characters that the next
5267 function encodes per one loop iteration. */
5269 enum { E_WRITE_MAX = 8 * 1024 * 1024 };
5271 /* Write text in the range START and END into descriptor DESC,
5272 encoding them with coding system CODING. If STRING is nil, START
5273 and END are character positions of the current buffer, else they
5274 are indexes to the string STRING. Return true if successful. */
5276 static bool
5277 e_write (int desc, Lisp_Object string, ptrdiff_t start, ptrdiff_t end,
5278 struct coding_system *coding)
5280 if (STRINGP (string))
5282 start = 0;
5283 end = SCHARS (string);
5286 /* We used to have a code for handling selective display here. But,
5287 now it is handled within encode_coding. */
5289 while (start < end)
5291 if (STRINGP (string))
5293 coding->src_multibyte = SCHARS (string) < SBYTES (string);
5294 if (CODING_REQUIRE_ENCODING (coding))
5296 ptrdiff_t nchars = min (end - start, E_WRITE_MAX);
5298 /* Avoid creating huge Lisp string in encode_coding_object. */
5299 if (nchars == E_WRITE_MAX)
5300 coding->raw_destination = 1;
5302 encode_coding_object
5303 (coding, string, start, string_char_to_byte (string, start),
5304 start + nchars, string_char_to_byte (string, start + nchars),
5305 Qt);
5307 else
5309 coding->dst_object = string;
5310 coding->consumed_char = SCHARS (string);
5311 coding->produced = SBYTES (string);
5314 else
5316 ptrdiff_t start_byte = CHAR_TO_BYTE (start);
5317 ptrdiff_t end_byte = CHAR_TO_BYTE (end);
5319 coding->src_multibyte = (end - start) < (end_byte - start_byte);
5320 if (CODING_REQUIRE_ENCODING (coding))
5322 ptrdiff_t nchars = min (end - start, E_WRITE_MAX);
5324 /* Likewise. */
5325 if (nchars == E_WRITE_MAX)
5326 coding->raw_destination = 1;
5328 encode_coding_object
5329 (coding, Fcurrent_buffer (), start, start_byte,
5330 start + nchars, CHAR_TO_BYTE (start + nchars), Qt);
5332 else
5334 coding->dst_object = Qnil;
5335 coding->dst_pos_byte = start_byte;
5336 if (start >= GPT || end <= GPT)
5338 coding->consumed_char = end - start;
5339 coding->produced = end_byte - start_byte;
5341 else
5343 coding->consumed_char = GPT - start;
5344 coding->produced = GPT_BYTE - start_byte;
5349 if (coding->produced > 0)
5351 char *buf = (coding->raw_destination ? (char *) coding->destination
5352 : (STRINGP (coding->dst_object)
5353 ? SSDATA (coding->dst_object)
5354 : (char *) BYTE_POS_ADDR (coding->dst_pos_byte)));
5355 coding->produced -= emacs_write_sig (desc, buf, coding->produced);
5357 if (coding->raw_destination)
5359 /* We're responsible for freeing this, see
5360 encode_coding_object to check why. */
5361 xfree (coding->destination);
5362 coding->raw_destination = 0;
5364 if (coding->produced)
5365 return 0;
5367 start += coding->consumed_char;
5370 return 1;
5373 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
5374 Sverify_visited_file_modtime, 0, 1, 0,
5375 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
5376 This means that the file has not been changed since it was visited or saved.
5377 If BUF is omitted or nil, it defaults to the current buffer.
5378 See Info node `(elisp)Modification Time' for more details. */)
5379 (Lisp_Object buf)
5381 struct buffer *b = decode_buffer (buf);
5382 struct stat st;
5383 Lisp_Object handler;
5384 Lisp_Object filename;
5385 struct timespec mtime;
5387 if (!STRINGP (BVAR (b, filename))) return Qt;
5388 if (b->modtime.tv_nsec == UNKNOWN_MODTIME_NSECS) return Qt;
5390 /* If the file name has special constructs in it,
5391 call the corresponding file handler. */
5392 handler = Ffind_file_name_handler (BVAR (b, filename),
5393 Qverify_visited_file_modtime);
5394 if (!NILP (handler))
5395 return call2 (handler, Qverify_visited_file_modtime, buf);
5397 filename = ENCODE_FILE (BVAR (b, filename));
5399 mtime = (stat (SSDATA (filename), &st) == 0
5400 ? get_stat_mtime (&st)
5401 : time_error_value (errno));
5402 if (timespec_cmp (mtime, b->modtime) == 0
5403 && (b->modtime_size < 0
5404 || st.st_size == b->modtime_size))
5405 return Qt;
5406 return Qnil;
5409 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5410 Svisited_file_modtime, 0, 0, 0,
5411 doc: /* Return the current buffer's recorded visited file modification time.
5412 The value is a list of the form (HIGH LOW USEC PSEC), like the time values that
5413 `file-attributes' returns. If the current buffer has no recorded file
5414 modification time, this function returns 0. If the visited file
5415 doesn't exist, return -1.
5416 See Info node `(elisp)Modification Time' for more details. */)
5417 (void)
5419 int ns = current_buffer->modtime.tv_nsec;
5420 if (ns < 0)
5421 return make_number (UNKNOWN_MODTIME_NSECS - ns);
5422 return make_lisp_time (current_buffer->modtime);
5425 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5426 Sset_visited_file_modtime, 0, 1, 0,
5427 doc: /* Update buffer's recorded modification time from the visited file's time.
5428 Useful if the buffer was not read from the file normally
5429 or if the file itself has been changed for some known benign reason.
5430 An argument specifies the modification time value to use
5431 \(instead of that of the visited file), in the form of a list
5432 \(HIGH LOW USEC PSEC) or an integer flag as returned by
5433 `visited-file-modtime'. */)
5434 (Lisp_Object time_flag)
5436 if (!NILP (time_flag))
5438 struct timespec mtime;
5439 if (INTEGERP (time_flag))
5441 CHECK_RANGED_INTEGER (time_flag, -1, 0);
5442 mtime = make_timespec (0, UNKNOWN_MODTIME_NSECS - XINT (time_flag));
5444 else
5445 mtime = lisp_time_argument (time_flag);
5447 current_buffer->modtime = mtime;
5448 current_buffer->modtime_size = -1;
5450 else
5452 register Lisp_Object filename;
5453 struct stat st;
5454 Lisp_Object handler;
5456 filename = Fexpand_file_name (BVAR (current_buffer, filename), Qnil);
5458 /* If the file name has special constructs in it,
5459 call the corresponding file handler. */
5460 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5461 if (!NILP (handler))
5462 /* The handler can find the file name the same way we did. */
5463 return call2 (handler, Qset_visited_file_modtime, Qnil);
5465 filename = ENCODE_FILE (filename);
5467 if (stat (SSDATA (filename), &st) >= 0)
5469 current_buffer->modtime = get_stat_mtime (&st);
5470 current_buffer->modtime_size = st.st_size;
5474 return Qnil;
5477 static Lisp_Object
5478 auto_save_error (Lisp_Object error_val)
5480 Lisp_Object msg;
5481 int i;
5482 struct gcpro gcpro1;
5484 auto_save_error_occurred = 1;
5486 ring_bell (XFRAME (selected_frame));
5488 AUTO_STRING (format, "Auto-saving %s: %s");
5489 msg = Fformat (3, ((Lisp_Object [])
5490 {format, BVAR (current_buffer, name),
5491 Ferror_message_string (error_val)}));
5492 GCPRO1 (msg);
5494 for (i = 0; i < 3; ++i)
5496 if (i == 0)
5497 message3 (msg);
5498 else
5499 message3_nolog (msg);
5500 Fsleep_for (make_number (1), Qnil);
5503 UNGCPRO;
5504 return Qnil;
5507 static Lisp_Object
5508 auto_save_1 (void)
5510 struct stat st;
5511 Lisp_Object modes;
5513 auto_save_mode_bits = 0666;
5515 /* Get visited file's mode to become the auto save file's mode. */
5516 if (! NILP (BVAR (current_buffer, filename)))
5518 if (stat (SSDATA (BVAR (current_buffer, filename)), &st) >= 0)
5519 /* But make sure we can overwrite it later! */
5520 auto_save_mode_bits = (st.st_mode | 0600) & 0777;
5521 else if (modes = Ffile_modes (BVAR (current_buffer, filename)),
5522 INTEGERP (modes))
5523 /* Remote files don't cooperate with stat. */
5524 auto_save_mode_bits = (XINT (modes) | 0600) & 0777;
5527 return
5528 Fwrite_region (Qnil, Qnil, BVAR (current_buffer, auto_save_file_name), Qnil,
5529 NILP (Vauto_save_visited_file_name) ? Qlambda : Qt,
5530 Qnil, Qnil);
5533 struct auto_save_unwind
5535 FILE *stream;
5536 bool auto_raise;
5539 static void
5540 do_auto_save_unwind (void *arg)
5542 struct auto_save_unwind *p = arg;
5543 FILE *stream = p->stream;
5544 minibuffer_auto_raise = p->auto_raise;
5545 auto_saving = 0;
5546 if (stream != NULL)
5548 block_input ();
5549 fclose (stream);
5550 unblock_input ();
5554 static Lisp_Object
5555 do_auto_save_make_dir (Lisp_Object dir)
5557 Lisp_Object result;
5559 auto_saving_dir_umask = 077;
5560 result = call2 (Qmake_directory, dir, Qt);
5561 auto_saving_dir_umask = 0;
5562 return result;
5565 static Lisp_Object
5566 do_auto_save_eh (Lisp_Object ignore)
5568 auto_saving_dir_umask = 0;
5569 return Qnil;
5572 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5573 doc: /* Auto-save all buffers that need it.
5574 This is all buffers that have auto-saving enabled
5575 and are changed since last auto-saved.
5576 Auto-saving writes the buffer into a file
5577 so that your editing is not lost if the system crashes.
5578 This file is not the file you visited; that changes only when you save.
5579 Normally we run the normal hook `auto-save-hook' before saving.
5581 A non-nil NO-MESSAGE argument means do not print any message if successful.
5582 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5583 (Lisp_Object no_message, Lisp_Object current_only)
5585 struct buffer *old = current_buffer, *b;
5586 Lisp_Object tail, buf, hook;
5587 bool auto_saved = 0;
5588 int do_handled_files;
5589 Lisp_Object oquit;
5590 FILE *stream = NULL;
5591 ptrdiff_t count = SPECPDL_INDEX ();
5592 bool orig_minibuffer_auto_raise = minibuffer_auto_raise;
5593 bool old_message_p = 0;
5594 struct auto_save_unwind auto_save_unwind;
5595 struct gcpro gcpro1, gcpro2;
5597 if (max_specpdl_size < specpdl_size + 40)
5598 max_specpdl_size = specpdl_size + 40;
5600 if (minibuf_level)
5601 no_message = Qt;
5603 if (NILP (no_message))
5605 old_message_p = push_message ();
5606 record_unwind_protect_void (pop_message_unwind);
5609 /* Ordinarily don't quit within this function,
5610 but don't make it impossible to quit (in case we get hung in I/O). */
5611 oquit = Vquit_flag;
5612 Vquit_flag = Qnil;
5614 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5615 point to non-strings reached from Vbuffer_alist. */
5617 hook = intern ("auto-save-hook");
5618 safe_run_hooks (hook);
5620 if (STRINGP (Vauto_save_list_file_name))
5622 Lisp_Object listfile;
5624 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5626 /* Don't try to create the directory when shutting down Emacs,
5627 because creating the directory might signal an error, and
5628 that would leave Emacs in a strange state. */
5629 if (!NILP (Vrun_hooks))
5631 Lisp_Object dir;
5632 dir = Qnil;
5633 GCPRO2 (dir, listfile);
5634 dir = Ffile_name_directory (listfile);
5635 if (NILP (Ffile_directory_p (dir)))
5636 internal_condition_case_1 (do_auto_save_make_dir,
5637 dir, Qt,
5638 do_auto_save_eh);
5639 UNGCPRO;
5642 stream = emacs_fopen (SSDATA (listfile), "w");
5645 auto_save_unwind.stream = stream;
5646 auto_save_unwind.auto_raise = minibuffer_auto_raise;
5647 record_unwind_protect_ptr (do_auto_save_unwind, &auto_save_unwind);
5648 minibuffer_auto_raise = 0;
5649 auto_saving = 1;
5650 auto_save_error_occurred = 0;
5652 /* On first pass, save all files that don't have handlers.
5653 On second pass, save all files that do have handlers.
5655 If Emacs is crashing, the handlers may tweak what is causing
5656 Emacs to crash in the first place, and it would be a shame if
5657 Emacs failed to autosave perfectly ordinary files because it
5658 couldn't handle some ange-ftp'd file. */
5660 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5661 FOR_EACH_LIVE_BUFFER (tail, buf)
5663 b = XBUFFER (buf);
5665 /* Record all the buffers that have auto save mode
5666 in the special file that lists them. For each of these buffers,
5667 Record visited name (if any) and auto save name. */
5668 if (STRINGP (BVAR (b, auto_save_file_name))
5669 && stream != NULL && do_handled_files == 0)
5671 block_input ();
5672 if (!NILP (BVAR (b, filename)))
5674 fwrite (SDATA (BVAR (b, filename)), 1,
5675 SBYTES (BVAR (b, filename)), stream);
5677 putc ('\n', stream);
5678 fwrite (SDATA (BVAR (b, auto_save_file_name)), 1,
5679 SBYTES (BVAR (b, auto_save_file_name)), stream);
5680 putc ('\n', stream);
5681 unblock_input ();
5684 if (!NILP (current_only)
5685 && b != current_buffer)
5686 continue;
5688 /* Don't auto-save indirect buffers.
5689 The base buffer takes care of it. */
5690 if (b->base_buffer)
5691 continue;
5693 /* Check for auto save enabled
5694 and file changed since last auto save
5695 and file changed since last real save. */
5696 if (STRINGP (BVAR (b, auto_save_file_name))
5697 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5698 && BUF_AUTOSAVE_MODIFF (b) < BUF_MODIFF (b)
5699 /* -1 means we've turned off autosaving for a while--see below. */
5700 && XINT (BVAR (b, save_length)) >= 0
5701 && (do_handled_files
5702 || NILP (Ffind_file_name_handler (BVAR (b, auto_save_file_name),
5703 Qwrite_region))))
5705 struct timespec before_time = current_timespec ();
5706 struct timespec after_time;
5708 /* If we had a failure, don't try again for 20 minutes. */
5709 if (b->auto_save_failure_time > 0
5710 && before_time.tv_sec - b->auto_save_failure_time < 1200)
5711 continue;
5713 set_buffer_internal (b);
5714 if (NILP (Vauto_save_include_big_deletions)
5715 && (XFASTINT (BVAR (b, save_length)) * 10
5716 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5717 /* A short file is likely to change a large fraction;
5718 spare the user annoying messages. */
5719 && XFASTINT (BVAR (b, save_length)) > 5000
5720 /* These messages are frequent and annoying for `*mail*'. */
5721 && !EQ (BVAR (b, filename), Qnil)
5722 && NILP (no_message))
5724 /* It has shrunk too much; turn off auto-saving here. */
5725 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5726 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5727 BVAR (b, name), 1);
5728 minibuffer_auto_raise = 0;
5729 /* Turn off auto-saving until there's a real save,
5730 and prevent any more warnings. */
5731 XSETINT (BVAR (b, save_length), -1);
5732 Fsleep_for (make_number (1), Qnil);
5733 continue;
5735 if (!auto_saved && NILP (no_message))
5736 message1 ("Auto-saving...");
5737 internal_condition_case (auto_save_1, Qt, auto_save_error);
5738 auto_saved = 1;
5739 BUF_AUTOSAVE_MODIFF (b) = BUF_MODIFF (b);
5740 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5741 set_buffer_internal (old);
5743 after_time = current_timespec ();
5745 /* If auto-save took more than 60 seconds,
5746 assume it was an NFS failure that got a timeout. */
5747 if (after_time.tv_sec - before_time.tv_sec > 60)
5748 b->auto_save_failure_time = after_time.tv_sec;
5752 /* Prevent another auto save till enough input events come in. */
5753 record_auto_save ();
5755 if (auto_saved && NILP (no_message))
5757 if (old_message_p)
5759 /* If we are going to restore an old message,
5760 give time to read ours. */
5761 sit_for (make_number (1), 0, 0);
5762 restore_message ();
5764 else if (!auto_save_error_occurred)
5765 /* Don't overwrite the error message if an error occurred.
5766 If we displayed a message and then restored a state
5767 with no message, leave a "done" message on the screen. */
5768 message1 ("Auto-saving...done");
5771 Vquit_flag = oquit;
5773 /* This restores the message-stack status. */
5774 unbind_to (count, Qnil);
5775 return Qnil;
5778 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5779 Sset_buffer_auto_saved, 0, 0, 0,
5780 doc: /* Mark current buffer as auto-saved with its current text.
5781 No auto-save file will be written until the buffer changes again. */)
5782 (void)
5784 /* FIXME: This should not be called in indirect buffers, since
5785 they're not autosaved. */
5786 BUF_AUTOSAVE_MODIFF (current_buffer) = MODIFF;
5787 XSETFASTINT (BVAR (current_buffer, save_length), Z - BEG);
5788 current_buffer->auto_save_failure_time = 0;
5789 return Qnil;
5792 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5793 Sclear_buffer_auto_save_failure, 0, 0, 0,
5794 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5795 (void)
5797 current_buffer->auto_save_failure_time = 0;
5798 return Qnil;
5801 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5802 0, 0, 0,
5803 doc: /* Return t if current buffer has been auto-saved recently.
5804 More precisely, if it has been auto-saved since last read from or saved
5805 in the visited file. If the buffer has no visited file,
5806 then any auto-save counts as "recent". */)
5807 (void)
5809 /* FIXME: maybe we should return nil for indirect buffers since
5810 they're never autosaved. */
5811 return (SAVE_MODIFF < BUF_AUTOSAVE_MODIFF (current_buffer) ? Qt : Qnil);
5814 /* Reading and completing file names */
5816 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p,
5817 Snext_read_file_uses_dialog_p, 0, 0, 0,
5818 doc: /* Return t if a call to `read-file-name' will use a dialog.
5819 The return value is only relevant for a call to `read-file-name' that happens
5820 before any other event (mouse or keypress) is handled. */)
5821 (void)
5823 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) \
5824 || defined (HAVE_NS)
5825 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
5826 && use_dialog_box
5827 && use_file_dialog
5828 && window_system_available (SELECTED_FRAME ()))
5829 return Qt;
5830 #endif
5831 return Qnil;
5834 void
5835 init_fileio (void)
5837 realmask = umask (0);
5838 umask (realmask);
5840 valid_timestamp_file_system = 0;
5842 /* fsync can be a significant performance hit. Often it doesn't
5843 suffice to make the file-save operation survive a crash. For
5844 batch scripts, which are typically part of larger shell commands
5845 that don't fsync other files, its effect on performance can be
5846 significant so its utility is particularly questionable.
5847 Hence, for now by default fsync is used only when interactive.
5849 For more on why fsync often fails to work on today's hardware, see:
5850 Zheng M et al. Understanding the robustness of SSDs under power fault.
5851 11th USENIX Conf. on File and Storage Technologies, 2013 (FAST '13), 271-84
5852 http://www.usenix.org/system/files/conference/fast13/fast13-final80.pdf
5854 For more on why fsync does not suffice even if it works properly, see:
5855 Roche X. Necessary step(s) to synchronize filename operations on disk.
5856 Austin Group Defect 672, 2013-03-19
5857 http://austingroupbugs.net/view.php?id=672 */
5858 write_region_inhibit_fsync = noninteractive;
5861 void
5862 syms_of_fileio (void)
5864 DEFSYM (Qoperations, "operations");
5865 DEFSYM (Qexpand_file_name, "expand-file-name");
5866 DEFSYM (Qsubstitute_in_file_name, "substitute-in-file-name");
5867 DEFSYM (Qdirectory_file_name, "directory-file-name");
5868 DEFSYM (Qfile_name_directory, "file-name-directory");
5869 DEFSYM (Qfile_name_nondirectory, "file-name-nondirectory");
5870 DEFSYM (Qunhandled_file_name_directory, "unhandled-file-name-directory");
5871 DEFSYM (Qfile_name_as_directory, "file-name-as-directory");
5872 DEFSYM (Qcopy_file, "copy-file");
5873 DEFSYM (Qmake_directory_internal, "make-directory-internal");
5874 DEFSYM (Qmake_directory, "make-directory");
5875 DEFSYM (Qdelete_directory_internal, "delete-directory-internal");
5876 DEFSYM (Qdelete_file, "delete-file");
5877 DEFSYM (Qrename_file, "rename-file");
5878 DEFSYM (Qadd_name_to_file, "add-name-to-file");
5879 DEFSYM (Qmake_symbolic_link, "make-symbolic-link");
5880 DEFSYM (Qfile_exists_p, "file-exists-p");
5881 DEFSYM (Qfile_executable_p, "file-executable-p");
5882 DEFSYM (Qfile_readable_p, "file-readable-p");
5883 DEFSYM (Qfile_writable_p, "file-writable-p");
5884 DEFSYM (Qfile_symlink_p, "file-symlink-p");
5885 DEFSYM (Qaccess_file, "access-file");
5886 DEFSYM (Qfile_directory_p, "file-directory-p");
5887 DEFSYM (Qfile_regular_p, "file-regular-p");
5888 DEFSYM (Qfile_accessible_directory_p, "file-accessible-directory-p");
5889 DEFSYM (Qfile_modes, "file-modes");
5890 DEFSYM (Qset_file_modes, "set-file-modes");
5891 DEFSYM (Qset_file_times, "set-file-times");
5892 DEFSYM (Qfile_selinux_context, "file-selinux-context");
5893 DEFSYM (Qset_file_selinux_context, "set-file-selinux-context");
5894 DEFSYM (Qfile_acl, "file-acl");
5895 DEFSYM (Qset_file_acl, "set-file-acl");
5896 DEFSYM (Qfile_newer_than_file_p, "file-newer-than-file-p");
5897 DEFSYM (Qinsert_file_contents, "insert-file-contents");
5898 DEFSYM (Qwrite_region, "write-region");
5899 DEFSYM (Qverify_visited_file_modtime, "verify-visited-file-modtime");
5900 DEFSYM (Qset_visited_file_modtime, "set-visited-file-modtime");
5901 DEFSYM (Qauto_save_coding, "auto-save-coding");
5903 DEFSYM (Qfile_name_history, "file-name-history");
5904 Fset (Qfile_name_history, Qnil);
5906 DEFSYM (Qfile_error, "file-error");
5907 DEFSYM (Qfile_already_exists, "file-already-exists");
5908 DEFSYM (Qfile_date_error, "file-date-error");
5909 DEFSYM (Qfile_notify_error, "file-notify-error");
5910 DEFSYM (Qexcl, "excl");
5912 DEFVAR_LISP ("file-name-coding-system", Vfile_name_coding_system,
5913 doc: /* Coding system for encoding file names.
5914 If it is nil, `default-file-name-coding-system' (which see) is used.
5916 On MS-Windows, the value of this variable is largely ignored if
5917 \`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows
5918 behaves as if file names were encoded in `utf-8'. */);
5919 Vfile_name_coding_system = Qnil;
5921 DEFVAR_LISP ("default-file-name-coding-system",
5922 Vdefault_file_name_coding_system,
5923 doc: /* Default coding system for encoding file names.
5924 This variable is used only when `file-name-coding-system' is nil.
5926 This variable is set/changed by the command `set-language-environment'.
5927 User should not set this variable manually,
5928 instead use `file-name-coding-system' to get a constant encoding
5929 of file names regardless of the current language environment.
5931 On MS-Windows, the value of this variable is largely ignored if
5932 \`w32-unicode-filenames' (which see) is non-nil. Emacs on Windows
5933 behaves as if file names were encoded in `utf-8'. */);
5934 Vdefault_file_name_coding_system = Qnil;
5936 DEFSYM (Qformat_decode, "format-decode");
5937 DEFSYM (Qformat_annotate_function, "format-annotate-function");
5938 DEFSYM (Qafter_insert_file_set_coding, "after-insert-file-set-coding");
5939 DEFSYM (Qcar_less_than_car, "car-less-than-car");
5941 Fput (Qfile_error, Qerror_conditions,
5942 Fpurecopy (list2 (Qfile_error, Qerror)));
5943 Fput (Qfile_error, Qerror_message,
5944 build_pure_c_string ("File error"));
5946 Fput (Qfile_already_exists, Qerror_conditions,
5947 Fpurecopy (list3 (Qfile_already_exists, Qfile_error, Qerror)));
5948 Fput (Qfile_already_exists, Qerror_message,
5949 build_pure_c_string ("File already exists"));
5951 Fput (Qfile_date_error, Qerror_conditions,
5952 Fpurecopy (list3 (Qfile_date_error, Qfile_error, Qerror)));
5953 Fput (Qfile_date_error, Qerror_message,
5954 build_pure_c_string ("Cannot set file date"));
5956 Fput (Qfile_notify_error, Qerror_conditions,
5957 Fpurecopy (list3 (Qfile_notify_error, Qfile_error, Qerror)));
5958 Fput (Qfile_notify_error, Qerror_message,
5959 build_pure_c_string ("File notification error"));
5961 DEFVAR_LISP ("file-name-handler-alist", Vfile_name_handler_alist,
5962 doc: /* Alist of elements (REGEXP . HANDLER) for file names handled specially.
5963 If a file name matches REGEXP, all I/O on that file is done by calling
5964 HANDLER. If a file name matches more than one handler, the handler
5965 whose match starts last in the file name gets precedence. The
5966 function `find-file-name-handler' checks this list for a handler for
5967 its argument.
5969 HANDLER should be a function. The first argument given to it is the
5970 name of the I/O primitive to be handled; the remaining arguments are
5971 the arguments that were passed to that primitive. For example, if you
5972 do (file-exists-p FILENAME) and FILENAME is handled by HANDLER, then
5973 HANDLER is called like this:
5975 (funcall HANDLER 'file-exists-p FILENAME)
5977 Note that HANDLER must be able to handle all I/O primitives; if it has
5978 nothing special to do for a primitive, it should reinvoke the
5979 primitive to handle the operation \"the usual way\".
5980 See Info node `(elisp)Magic File Names' for more details. */);
5981 Vfile_name_handler_alist = Qnil;
5983 DEFVAR_LISP ("set-auto-coding-function",
5984 Vset_auto_coding_function,
5985 doc: /* If non-nil, a function to call to decide a coding system of file.
5986 Two arguments are passed to this function: the file name
5987 and the length of a file contents following the point.
5988 This function should return a coding system to decode the file contents.
5989 It should check the file name against `auto-coding-alist'.
5990 If no coding system is decided, it should check a coding system
5991 specified in the heading lines with the format:
5992 -*- ... coding: CODING-SYSTEM; ... -*-
5993 or local variable spec of the tailing lines with `coding:' tag. */);
5994 Vset_auto_coding_function = Qnil;
5996 DEFVAR_LISP ("after-insert-file-functions", Vafter_insert_file_functions,
5997 doc: /* A list of functions to be called at the end of `insert-file-contents'.
5998 Each is passed one argument, the number of characters inserted,
5999 with point at the start of the inserted text. Each function
6000 should leave point the same, and return the new character count.
6001 If `insert-file-contents' is intercepted by a handler from
6002 `file-name-handler-alist', that handler is responsible for calling the
6003 functions in `after-insert-file-functions' if appropriate. */);
6004 Vafter_insert_file_functions = Qnil;
6006 DEFVAR_LISP ("write-region-annotate-functions", Vwrite_region_annotate_functions,
6007 doc: /* A list of functions to be called at the start of `write-region'.
6008 Each is passed two arguments, START and END as for `write-region'.
6009 These are usually two numbers but not always; see the documentation
6010 for `write-region'. The function should return a list of pairs
6011 of the form (POSITION . STRING), consisting of strings to be effectively
6012 inserted at the specified positions of the file being written (1 means to
6013 insert before the first byte written). The POSITIONs must be sorted into
6014 increasing order.
6016 If there are several annotation functions, the lists returned by these
6017 functions are merged destructively. As each annotation function runs,
6018 the variable `write-region-annotations-so-far' contains a list of all
6019 annotations returned by previous annotation functions.
6021 An annotation function can return with a different buffer current.
6022 Doing so removes the annotations returned by previous functions, and
6023 resets START and END to `point-min' and `point-max' of the new buffer.
6025 After `write-region' completes, Emacs calls the function stored in
6026 `write-region-post-annotation-function', once for each buffer that was
6027 current when building the annotations (i.e., at least once), with that
6028 buffer current. */);
6029 Vwrite_region_annotate_functions = Qnil;
6030 DEFSYM (Qwrite_region_annotate_functions, "write-region-annotate-functions");
6032 DEFVAR_LISP ("write-region-post-annotation-function",
6033 Vwrite_region_post_annotation_function,
6034 doc: /* Function to call after `write-region' completes.
6035 The function is called with no arguments. If one or more of the
6036 annotation functions in `write-region-annotate-functions' changed the
6037 current buffer, the function stored in this variable is called for
6038 each of those additional buffers as well, in addition to the original
6039 buffer. The relevant buffer is current during each function call. */);
6040 Vwrite_region_post_annotation_function = Qnil;
6041 staticpro (&Vwrite_region_annotation_buffers);
6043 DEFVAR_LISP ("write-region-annotations-so-far",
6044 Vwrite_region_annotations_so_far,
6045 doc: /* When an annotation function is called, this holds the previous annotations.
6046 These are the annotations made by other annotation functions
6047 that were already called. See also `write-region-annotate-functions'. */);
6048 Vwrite_region_annotations_so_far = Qnil;
6050 DEFVAR_LISP ("inhibit-file-name-handlers", Vinhibit_file_name_handlers,
6051 doc: /* A list of file name handlers that temporarily should not be used.
6052 This applies only to the operation `inhibit-file-name-operation'. */);
6053 Vinhibit_file_name_handlers = Qnil;
6055 DEFVAR_LISP ("inhibit-file-name-operation", Vinhibit_file_name_operation,
6056 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
6057 Vinhibit_file_name_operation = Qnil;
6059 DEFVAR_LISP ("auto-save-list-file-name", Vauto_save_list_file_name,
6060 doc: /* File name in which we write a list of all auto save file names.
6061 This variable is initialized automatically from `auto-save-list-file-prefix'
6062 shortly after Emacs reads your init file, if you have not yet given it
6063 a non-nil value. */);
6064 Vauto_save_list_file_name = Qnil;
6066 DEFVAR_LISP ("auto-save-visited-file-name", Vauto_save_visited_file_name,
6067 doc: /* Non-nil says auto-save a buffer in the file it is visiting, when practical.
6068 Normally auto-save files are written under other names. */);
6069 Vauto_save_visited_file_name = Qnil;
6071 DEFVAR_LISP ("auto-save-include-big-deletions", Vauto_save_include_big_deletions,
6072 doc: /* If non-nil, auto-save even if a large part of the text is deleted.
6073 If nil, deleting a substantial portion of the text disables auto-save
6074 in the buffer; this is the default behavior, because the auto-save
6075 file is usually more useful if it contains the deleted text. */);
6076 Vauto_save_include_big_deletions = Qnil;
6078 DEFVAR_BOOL ("write-region-inhibit-fsync", write_region_inhibit_fsync,
6079 doc: /* Non-nil means don't call fsync in `write-region'.
6080 This variable affects calls to `write-region' as well as save commands.
6081 Setting this to nil may avoid data loss if the system loses power or
6082 the operating system crashes. By default, it is non-nil in batch mode. */);
6083 write_region_inhibit_fsync = 0; /* See also `init_fileio' above. */
6085 DEFVAR_BOOL ("delete-by-moving-to-trash", delete_by_moving_to_trash,
6086 doc: /* Specifies whether to use the system's trash can.
6087 When non-nil, certain file deletion commands use the function
6088 `move-file-to-trash' instead of deleting files outright.
6089 This includes interactive calls to `delete-file' and
6090 `delete-directory' and the Dired deletion commands. */);
6091 delete_by_moving_to_trash = 0;
6092 Qdelete_by_moving_to_trash = intern_c_string ("delete-by-moving-to-trash");
6094 DEFSYM (Qmove_file_to_trash, "move-file-to-trash");
6095 DEFSYM (Qcopy_directory, "copy-directory");
6096 DEFSYM (Qdelete_directory, "delete-directory");
6097 DEFSYM (Qsubstitute_env_in_file_name, "substitute-env-in-file-name");
6098 DEFSYM (Qget_buffer_window_list, "get-buffer-window-list");
6100 defsubr (&Sfind_file_name_handler);
6101 defsubr (&Sfile_name_directory);
6102 defsubr (&Sfile_name_nondirectory);
6103 defsubr (&Sunhandled_file_name_directory);
6104 defsubr (&Sfile_name_as_directory);
6105 defsubr (&Sdirectory_file_name);
6106 defsubr (&Smake_temp_name);
6107 defsubr (&Sexpand_file_name);
6108 defsubr (&Ssubstitute_in_file_name);
6109 defsubr (&Scopy_file);
6110 defsubr (&Smake_directory_internal);
6111 defsubr (&Sdelete_directory_internal);
6112 defsubr (&Sdelete_file);
6113 defsubr (&Srename_file);
6114 defsubr (&Sadd_name_to_file);
6115 defsubr (&Smake_symbolic_link);
6116 defsubr (&Sfile_name_absolute_p);
6117 defsubr (&Sfile_exists_p);
6118 defsubr (&Sfile_executable_p);
6119 defsubr (&Sfile_readable_p);
6120 defsubr (&Sfile_writable_p);
6121 defsubr (&Saccess_file);
6122 defsubr (&Sfile_symlink_p);
6123 defsubr (&Sfile_directory_p);
6124 defsubr (&Sfile_accessible_directory_p);
6125 defsubr (&Sfile_regular_p);
6126 defsubr (&Sfile_modes);
6127 defsubr (&Sset_file_modes);
6128 defsubr (&Sset_file_times);
6129 defsubr (&Sfile_selinux_context);
6130 defsubr (&Sfile_acl);
6131 defsubr (&Sset_file_acl);
6132 defsubr (&Sset_file_selinux_context);
6133 defsubr (&Sset_default_file_modes);
6134 defsubr (&Sdefault_file_modes);
6135 defsubr (&Sfile_newer_than_file_p);
6136 defsubr (&Sinsert_file_contents);
6137 defsubr (&Swrite_region);
6138 defsubr (&Scar_less_than_car);
6139 defsubr (&Sverify_visited_file_modtime);
6140 defsubr (&Svisited_file_modtime);
6141 defsubr (&Sset_visited_file_modtime);
6142 defsubr (&Sdo_auto_save);
6143 defsubr (&Sset_buffer_auto_saved);
6144 defsubr (&Sclear_buffer_auto_save_failure);
6145 defsubr (&Srecent_auto_save_p);
6147 defsubr (&Snext_read_file_uses_dialog_p);
6149 #ifdef HAVE_SYNC
6150 defsubr (&Sunix_sync);
6151 #endif