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