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