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