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