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