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