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