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