]> code.delx.au - gnu-emacs/blob - src/dired.c
Fix error messages when readdir cannot open a directory on MS-Windows
[gnu-emacs] / src / dired.c
1 /* Lisp functions for making directory listings.
2 Copyright (C) 1985-1986, 1993-1994, 1999-2015 Free Software
3 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
21 #include <config.h>
22
23 #include <stdio.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26
27 #ifdef HAVE_PWD_H
28 #include <pwd.h>
29 #endif
30 #include <grp.h>
31
32 #include <errno.h>
33 #include <fcntl.h>
34 #include <unistd.h>
35
36 #include <dirent.h>
37 #include <filemode.h>
38 #include <stat-time.h>
39
40 #include "lisp.h"
41 #include "systime.h"
42 #include "character.h"
43 #include "buffer.h"
44 #include "commands.h"
45 #include "charset.h"
46 #include "coding.h"
47 #include "regex.h"
48 #include "blockinput.h"
49
50 #ifdef MSDOS
51 #include "msdos.h" /* for fstatat */
52 #endif
53
54 static ptrdiff_t scmp (const char *, const char *, ptrdiff_t);
55 static Lisp_Object file_attributes (int, char const *, Lisp_Object);
56 \f
57 /* Return the number of bytes in DP's name. */
58 static ptrdiff_t
59 dirent_namelen (struct dirent *dp)
60 {
61 #ifdef _D_EXACT_NAMLEN
62 return _D_EXACT_NAMLEN (dp);
63 #else
64 return strlen (dp->d_name);
65 #endif
66 }
67
68 static DIR *
69 open_directory (Lisp_Object dirname, int *fdp)
70 {
71 char *name = SSDATA (dirname);
72 DIR *d;
73 int fd, opendir_errno;
74
75 block_input ();
76
77 #ifdef DOS_NT
78 /* Directories cannot be opened. The emulation assumes that any
79 file descriptor other than AT_FDCWD corresponds to the most
80 recently opened directory. This hack is good enough for Emacs. */
81 fd = 0;
82 d = opendir (name);
83 opendir_errno = errno;
84 #else
85 fd = emacs_open (name, O_RDONLY | O_DIRECTORY, 0);
86 if (fd < 0)
87 {
88 opendir_errno = errno;
89 d = 0;
90 }
91 else
92 {
93 d = fdopendir (fd);
94 opendir_errno = errno;
95 if (! d)
96 emacs_close (fd);
97 }
98 #endif
99
100 unblock_input ();
101
102 if (!d)
103 report_file_errno ("Opening directory", dirname, opendir_errno);
104 *fdp = fd;
105 return d;
106 }
107
108 #ifdef WINDOWSNT
109 void
110 directory_files_internal_w32_unwind (Lisp_Object arg)
111 {
112 Vw32_get_true_file_attributes = arg;
113 }
114 #endif
115
116 static void
117 directory_files_internal_unwind (void *dh)
118 {
119 DIR *d = dh;
120 block_input ();
121 closedir (d);
122 unblock_input ();
123 }
124
125 /* Return the next directory entry from DIR; DIR's name is DIRNAME.
126 If there are no more directory entries, return a null pointer.
127 Signal any unrecoverable errors. FIRST_ENTRY true means this is
128 the first call after open_directory. */
129
130 static struct dirent *
131 read_dirent (DIR *dir, Lisp_Object dirname, bool first_entry)
132 {
133 while (true)
134 {
135 errno = 0;
136 struct dirent *dp = readdir (dir);
137 if (dp || errno == 0)
138 return dp;
139 if (! (errno == EAGAIN || errno == EINTR))
140 {
141 /* The MS-Windows implementation of 'opendir' doesn't
142 actually open a directory until the first call to
143 'readdir'. If 'readdir' fails to open the directory, it
144 sets errno to ENOENT or EACCES, see w32.c. */
145 if (first_entry && (errno == ENOENT || errno == EACCES))
146 report_file_error ("Opening directory", dirname);
147 else
148 report_file_error ("Reading directory", dirname);
149 }
150 QUIT;
151 }
152 }
153
154 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
155 If not ATTRS, return a list of directory filenames;
156 if ATTRS, return a list of directory filenames and their attributes.
157 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
158
159 Lisp_Object
160 directory_files_internal (Lisp_Object directory, Lisp_Object full,
161 Lisp_Object match, Lisp_Object nosort, bool attrs,
162 Lisp_Object id_format)
163 {
164 ptrdiff_t directory_nbytes;
165 Lisp_Object list, dirfilename, encoded_directory;
166 struct re_pattern_buffer *bufp = NULL;
167 bool needsep = 0;
168 ptrdiff_t count = SPECPDL_INDEX ();
169 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
170 #ifdef WINDOWSNT
171 Lisp_Object w32_save = Qnil;
172 #endif
173
174 /* Don't let the compiler optimize away all copies of DIRECTORY,
175 which would break GC; see Bug#16986. Although this is required
176 only in the common case where GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS,
177 it shouldn't break anything in the other cases. */
178 Lisp_Object volatile directory_volatile = directory;
179
180 /* Because of file name handlers, these functions might call
181 Ffuncall, and cause a GC. */
182 list = encoded_directory = dirfilename = Qnil;
183 GCPRO5 (match, directory, list, dirfilename, encoded_directory);
184 dirfilename = Fdirectory_file_name (directory);
185
186 if (!NILP (match))
187 {
188 CHECK_STRING (match);
189
190 /* MATCH might be a flawed regular expression. Rather than
191 catching and signaling our own errors, we just call
192 compile_pattern to do the work for us. */
193 /* Pass 1 for the MULTIBYTE arg
194 because we do make multibyte strings if the contents warrant. */
195 # ifdef WINDOWSNT
196 /* Windows users want case-insensitive wildcards. */
197 bufp = compile_pattern (match, 0,
198 BVAR (&buffer_defaults, case_canon_table), 0, 1);
199 # else /* !WINDOWSNT */
200 bufp = compile_pattern (match, 0, Qnil, 0, 1);
201 # endif /* !WINDOWSNT */
202 }
203
204 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
205 run_pre_post_conversion_on_str which calls Lisp directly and
206 indirectly. */
207 dirfilename = ENCODE_FILE (dirfilename);
208 encoded_directory = ENCODE_FILE (directory);
209
210 /* Now *bufp is the compiled form of MATCH; don't call anything
211 which might compile a new regexp until we're done with the loop! */
212
213 int fd;
214 DIR *d = open_directory (dirfilename, &fd);
215
216 /* Unfortunately, we can now invoke expand-file-name and
217 file-attributes on filenames, both of which can throw, so we must
218 do a proper unwind-protect. */
219 record_unwind_protect_ptr (directory_files_internal_unwind, d);
220
221 #ifdef WINDOWSNT
222 if (attrs)
223 {
224 extern int is_slow_fs (const char *);
225
226 /* Do this only once to avoid doing it (in w32.c:stat) for each
227 file in the directory, when we call Ffile_attributes below. */
228 record_unwind_protect (directory_files_internal_w32_unwind,
229 Vw32_get_true_file_attributes);
230 w32_save = Vw32_get_true_file_attributes;
231 if (EQ (Vw32_get_true_file_attributes, Qlocal))
232 {
233 /* w32.c:stat will notice these bindings and avoid calling
234 GetDriveType for each file. */
235 if (is_slow_fs (SDATA (dirfilename)))
236 Vw32_get_true_file_attributes = Qnil;
237 else
238 Vw32_get_true_file_attributes = Qt;
239 }
240 }
241 #endif
242
243 directory_nbytes = SBYTES (directory);
244 re_match_object = Qt;
245
246 /* Decide whether we need to add a directory separator. */
247 if (directory_nbytes == 0
248 || !IS_ANY_SEP (SREF (directory, directory_nbytes - 1)))
249 needsep = 1;
250
251 /* Loop reading directory entries. */
252 bool first_entry = true;
253 for (struct dirent *dp; (dp = read_dirent (d, directory, first_entry)); )
254 {
255 ptrdiff_t len = dirent_namelen (dp);
256 Lisp_Object name = make_unibyte_string (dp->d_name, len);
257 Lisp_Object finalname = name;
258 struct gcpro gcpro1, gcpro2;
259 GCPRO2 (finalname, name);
260
261 first_entry = false;
262
263 /* Note: DECODE_FILE can GC; it should protect its argument,
264 though. */
265 name = DECODE_FILE (name);
266 len = SBYTES (name);
267
268 /* Now that we have unwind_protect in place, we might as well
269 allow matching to be interrupted. */
270 immediate_quit = 1;
271 QUIT;
272
273 bool wanted = (NILP (match)
274 || re_search (bufp, SSDATA (name), len, 0, len, 0) >= 0);
275
276 immediate_quit = 0;
277
278 if (wanted)
279 {
280 if (!NILP (full))
281 {
282 Lisp_Object fullname;
283 ptrdiff_t nbytes = len + directory_nbytes + needsep;
284 ptrdiff_t nchars;
285
286 fullname = make_uninit_multibyte_string (nbytes, nbytes);
287 memcpy (SDATA (fullname), SDATA (directory),
288 directory_nbytes);
289
290 if (needsep)
291 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
292
293 memcpy (SDATA (fullname) + directory_nbytes + needsep,
294 SDATA (name), len);
295
296 nchars = multibyte_chars_in_text (SDATA (fullname), nbytes);
297
298 /* Some bug somewhere. */
299 if (nchars > nbytes)
300 emacs_abort ();
301
302 STRING_SET_CHARS (fullname, nchars);
303 if (nchars == nbytes)
304 STRING_SET_UNIBYTE (fullname);
305
306 finalname = fullname;
307 }
308 else
309 finalname = name;
310
311 if (attrs)
312 {
313 Lisp_Object fileattrs
314 = file_attributes (fd, dp->d_name, id_format);
315 list = Fcons (Fcons (finalname, fileattrs), list);
316 }
317 else
318 list = Fcons (finalname, list);
319 }
320
321 UNGCPRO;
322 }
323
324 block_input ();
325 closedir (d);
326 unblock_input ();
327 #ifdef WINDOWSNT
328 if (attrs)
329 Vw32_get_true_file_attributes = w32_save;
330 #endif
331
332 /* Discard the unwind protect. */
333 specpdl_ptr = specpdl + count;
334
335 if (NILP (nosort))
336 list = Fsort (Fnreverse (list),
337 attrs ? Qfile_attributes_lessp : Qstring_lessp);
338
339 (void) directory_volatile;
340 RETURN_UNGCPRO (list);
341 }
342
343
344 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
345 doc: /* Return a list of names of files in DIRECTORY.
346 There are three optional arguments:
347 If FULL is non-nil, return absolute file names. Otherwise return names
348 that are relative to the specified directory.
349 If MATCH is non-nil, mention only file names that match the regexp MATCH.
350 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
351 Otherwise, the list returned is sorted with `string-lessp'.
352 NOSORT is useful if you plan to sort the result yourself. */)
353 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort)
354 {
355 Lisp_Object handler;
356 directory = Fexpand_file_name (directory, Qnil);
357
358 /* If the file name has special constructs in it,
359 call the corresponding file handler. */
360 handler = Ffind_file_name_handler (directory, Qdirectory_files);
361 if (!NILP (handler))
362 return call5 (handler, Qdirectory_files, directory,
363 full, match, nosort);
364
365 return directory_files_internal (directory, full, match, nosort, 0, Qnil);
366 }
367
368 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes,
369 Sdirectory_files_and_attributes, 1, 5, 0,
370 doc: /* Return a list of names of files and their attributes in DIRECTORY.
371 There are four optional arguments:
372 If FULL is non-nil, return absolute file names. Otherwise return names
373 that are relative to the specified directory.
374 If MATCH is non-nil, mention only file names that match the regexp MATCH.
375 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
376 NOSORT is useful if you plan to sort the result yourself.
377 ID-FORMAT specifies the preferred format of attributes uid and gid, see
378 `file-attributes' for further documentation.
379 On MS-Windows, performance depends on `w32-get-true-file-attributes',
380 which see. */)
381 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, Lisp_Object id_format)
382 {
383 Lisp_Object handler;
384 directory = Fexpand_file_name (directory, Qnil);
385
386 /* If the file name has special constructs in it,
387 call the corresponding file handler. */
388 handler = Ffind_file_name_handler (directory, Qdirectory_files_and_attributes);
389 if (!NILP (handler))
390 return call6 (handler, Qdirectory_files_and_attributes,
391 directory, full, match, nosort, id_format);
392
393 return directory_files_internal (directory, full, match, nosort, 1, id_format);
394 }
395
396 \f
397 static Lisp_Object file_name_completion (Lisp_Object, Lisp_Object, bool,
398 Lisp_Object);
399
400 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
401 2, 3, 0,
402 doc: /* Complete file name FILE in directory DIRECTORY.
403 Returns the longest string
404 common to all file names in DIRECTORY that start with FILE.
405 If there is only one and FILE matches it exactly, returns t.
406 Returns nil if DIRECTORY contains no name starting with FILE.
407
408 If PREDICATE is non-nil, call PREDICATE with each possible
409 completion (in absolute form) and ignore it if PREDICATE returns nil.
410
411 This function ignores some of the possible completions as
412 determined by the variable `completion-ignored-extensions', which see. */)
413 (Lisp_Object file, Lisp_Object directory, Lisp_Object predicate)
414 {
415 Lisp_Object handler;
416 directory = Fexpand_file_name (directory, Qnil);
417
418 /* If the directory name has special constructs in it,
419 call the corresponding file handler. */
420 handler = Ffind_file_name_handler (directory, Qfile_name_completion);
421 if (!NILP (handler))
422 return call4 (handler, Qfile_name_completion, file, directory, predicate);
423
424 /* If the file name has special constructs in it,
425 call the corresponding file handler. */
426 handler = Ffind_file_name_handler (file, Qfile_name_completion);
427 if (!NILP (handler))
428 return call4 (handler, Qfile_name_completion, file, directory, predicate);
429
430 return file_name_completion (file, directory, 0, predicate);
431 }
432
433 DEFUN ("file-name-all-completions", Ffile_name_all_completions,
434 Sfile_name_all_completions, 2, 2, 0,
435 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY.
436 These are all file names in directory DIRECTORY which begin with FILE. */)
437 (Lisp_Object file, Lisp_Object directory)
438 {
439 Lisp_Object handler;
440 directory = Fexpand_file_name (directory, Qnil);
441
442 /* If the directory name has special constructs in it,
443 call the corresponding file handler. */
444 handler = Ffind_file_name_handler (directory, Qfile_name_all_completions);
445 if (!NILP (handler))
446 return call3 (handler, Qfile_name_all_completions, file, directory);
447
448 /* If the file name has special constructs in it,
449 call the corresponding file handler. */
450 handler = Ffind_file_name_handler (file, Qfile_name_all_completions);
451 if (!NILP (handler))
452 return call3 (handler, Qfile_name_all_completions, file, directory);
453
454 return file_name_completion (file, directory, 1, Qnil);
455 }
456
457 static int file_name_completion_stat (int, struct dirent *, struct stat *);
458
459 static Lisp_Object
460 file_name_completion (Lisp_Object file, Lisp_Object dirname, bool all_flag,
461 Lisp_Object predicate)
462 {
463 ptrdiff_t bestmatchsize = 0;
464 int matchcount = 0;
465 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
466 If ALL_FLAG is 0, BESTMATCH is either nil
467 or the best match so far, not decoded. */
468 Lisp_Object bestmatch, tem, elt, name;
469 Lisp_Object encoded_file;
470 Lisp_Object encoded_dir;
471 struct stat st;
472 bool directoryp;
473 /* If not INCLUDEALL, exclude files in completion-ignored-extensions as
474 well as "." and "..". Until shown otherwise, assume we can't exclude
475 anything. */
476 bool includeall = 1;
477 ptrdiff_t count = SPECPDL_INDEX ();
478 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
479
480 elt = Qnil;
481
482 CHECK_STRING (file);
483
484 bestmatch = Qnil;
485 encoded_file = encoded_dir = Qnil;
486 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir);
487 specbind (Qdefault_directory, dirname);
488
489 /* Do completion on the encoded file name
490 because the other names in the directory are (we presume)
491 encoded likewise. We decode the completed string at the end. */
492 /* Actually, this is not quite true any more: we do most of the completion
493 work with decoded file names, but we still do some filtering based
494 on the encoded file name. */
495 encoded_file = ENCODE_FILE (file);
496 encoded_dir = ENCODE_FILE (Fdirectory_file_name (dirname));
497 int fd;
498 DIR *d = open_directory (encoded_dir, &fd);
499 record_unwind_protect_ptr (directory_files_internal_unwind, d);
500
501 /* Loop reading directory entries. */
502 bool first_entry = true;
503 for (struct dirent *dp; (dp = read_dirent (d, dirname, first_entry)); )
504 {
505 ptrdiff_t len = dirent_namelen (dp);
506 bool canexclude = 0;
507
508 first_entry = false;
509 QUIT;
510 if (len < SCHARS (encoded_file)
511 || (scmp (dp->d_name, SSDATA (encoded_file),
512 SCHARS (encoded_file))
513 >= 0))
514 continue;
515
516 if (file_name_completion_stat (fd, dp, &st) < 0)
517 continue;
518
519 directoryp = S_ISDIR (st.st_mode) != 0;
520 tem = Qnil;
521 /* If all_flag is set, always include all.
522 It would not actually be helpful to the user to ignore any possible
523 completions when making a list of them. */
524 if (!all_flag)
525 {
526 ptrdiff_t skip;
527
528 #if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
529 /* If this entry matches the current bestmatch, the only
530 thing it can do is increase matchcount, so don't bother
531 investigating it any further. */
532 if (!completion_ignore_case
533 /* The return result depends on whether it's the sole match. */
534 && matchcount > 1
535 && !includeall /* This match may allow includeall to 0. */
536 && len >= bestmatchsize
537 && 0 > scmp (dp->d_name, SSDATA (bestmatch), bestmatchsize))
538 continue;
539 #endif
540
541 if (directoryp)
542 {
543 #ifndef TRIVIAL_DIRECTORY_ENTRY
544 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
545 #endif
546 /* "." and ".." are never interesting as completions, and are
547 actually in the way in a directory with only one file. */
548 if (TRIVIAL_DIRECTORY_ENTRY (dp->d_name))
549 canexclude = 1;
550 else if (len > SCHARS (encoded_file))
551 /* Ignore directories if they match an element of
552 completion-ignored-extensions which ends in a slash. */
553 for (tem = Vcompletion_ignored_extensions;
554 CONSP (tem); tem = XCDR (tem))
555 {
556 ptrdiff_t elt_len;
557 char *p1;
558
559 elt = XCAR (tem);
560 if (!STRINGP (elt))
561 continue;
562 /* Need to encode ELT, since scmp compares unibyte
563 strings only. */
564 elt = ENCODE_FILE (elt);
565 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
566 if (elt_len <= 0)
567 continue;
568 p1 = SSDATA (elt);
569 if (p1[elt_len] != '/')
570 continue;
571 skip = len - elt_len;
572 if (skip < 0)
573 continue;
574
575 if (scmp (dp->d_name + skip, p1, elt_len) >= 0)
576 continue;
577 break;
578 }
579 }
580 else
581 {
582 /* Compare extensions-to-be-ignored against end of this file name */
583 /* if name is not an exact match against specified string */
584 if (len > SCHARS (encoded_file))
585 /* and exit this for loop if a match is found */
586 for (tem = Vcompletion_ignored_extensions;
587 CONSP (tem); tem = XCDR (tem))
588 {
589 elt = XCAR (tem);
590 if (!STRINGP (elt)) continue;
591 /* Need to encode ELT, since scmp compares unibyte
592 strings only. */
593 elt = ENCODE_FILE (elt);
594 skip = len - SCHARS (elt);
595 if (skip < 0) continue;
596
597 if (scmp (dp->d_name + skip, SSDATA (elt), SCHARS (elt))
598 >= 0)
599 continue;
600 break;
601 }
602 }
603
604 /* If an ignored-extensions match was found,
605 don't process this name as a completion. */
606 if (CONSP (tem))
607 canexclude = 1;
608
609 if (!includeall && canexclude)
610 /* We're not including all files and this file can be excluded. */
611 continue;
612
613 if (includeall && !canexclude)
614 { /* If we have one non-excludable file, we want to exclude the
615 excludable files. */
616 includeall = 0;
617 /* Throw away any previous excludable match found. */
618 bestmatch = Qnil;
619 bestmatchsize = 0;
620 matchcount = 0;
621 }
622 }
623 /* FIXME: If we move this `decode' earlier we can eliminate
624 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
625 name = make_unibyte_string (dp->d_name, len);
626 name = DECODE_FILE (name);
627
628 {
629 Lisp_Object regexps, table = (completion_ignore_case
630 ? Vascii_canon_table : Qnil);
631
632 /* Ignore this element if it fails to match all the regexps. */
633 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
634 regexps = XCDR (regexps))
635 if (fast_string_match_internal (XCAR (regexps), name, table) < 0)
636 break;
637
638 if (CONSP (regexps))
639 continue;
640 }
641
642 /* This is a possible completion */
643 if (directoryp)
644 /* This completion is a directory; make it end with '/'. */
645 name = Ffile_name_as_directory (name);
646
647 /* Test the predicate, if any. */
648 if (!NILP (predicate))
649 {
650 Lisp_Object val;
651 struct gcpro gcpro1;
652
653 GCPRO1 (name);
654 val = call1 (predicate, name);
655 UNGCPRO;
656
657 if (NILP (val))
658 continue;
659 }
660
661 /* Suitably record this match. */
662
663 matchcount += matchcount <= 1;
664
665 if (all_flag)
666 bestmatch = Fcons (name, bestmatch);
667 else if (NILP (bestmatch))
668 {
669 bestmatch = name;
670 bestmatchsize = SCHARS (name);
671 }
672 else
673 {
674 Lisp_Object zero = make_number (0);
675 /* FIXME: This is a copy of the code in Ftry_completion. */
676 ptrdiff_t compare = min (bestmatchsize, SCHARS (name));
677 Lisp_Object cmp
678 = Fcompare_strings (bestmatch, zero,
679 make_number (compare),
680 name, zero,
681 make_number (compare),
682 completion_ignore_case ? Qt : Qnil);
683 ptrdiff_t matchsize = EQ (cmp, Qt) ? compare : eabs (XINT (cmp)) - 1;
684
685 if (completion_ignore_case)
686 {
687 /* If this is an exact match except for case,
688 use it as the best match rather than one that is not
689 an exact match. This way, we get the case pattern
690 of the actual match. */
691 /* This tests that the current file is an exact match
692 but BESTMATCH is not (it is too long). */
693 if ((matchsize == SCHARS (name)
694 && matchsize + directoryp < SCHARS (bestmatch))
695 ||
696 /* If there is no exact match ignoring case,
697 prefer a match that does not change the case
698 of the input. */
699 /* If there is more than one exact match aside from
700 case, and one of them is exact including case,
701 prefer that one. */
702 /* This == checks that, of current file and BESTMATCH,
703 either both or neither are exact. */
704 (((matchsize == SCHARS (name))
705 ==
706 (matchsize + directoryp == SCHARS (bestmatch)))
707 && (cmp = Fcompare_strings (name, zero,
708 make_number (SCHARS (file)),
709 file, zero,
710 Qnil,
711 Qnil),
712 EQ (Qt, cmp))
713 && (cmp = Fcompare_strings (bestmatch, zero,
714 make_number (SCHARS (file)),
715 file, zero,
716 Qnil,
717 Qnil),
718 ! EQ (Qt, cmp))))
719 bestmatch = name;
720 }
721 bestmatchsize = matchsize;
722
723 /* If the best completion so far is reduced to the string
724 we're trying to complete, then we already know there's no
725 other completion, so there's no point looking any further. */
726 if (matchsize <= SCHARS (file)
727 && !includeall /* A future match may allow includeall to 0. */
728 /* If completion-ignore-case is non-nil, don't
729 short-circuit because we want to find the best
730 possible match *including* case differences. */
731 && (!completion_ignore_case || matchsize == 0)
732 /* The return value depends on whether it's the sole match. */
733 && matchcount > 1)
734 break;
735
736 }
737 }
738
739 UNGCPRO;
740 /* This closes the directory. */
741 bestmatch = unbind_to (count, bestmatch);
742
743 if (all_flag || NILP (bestmatch))
744 return bestmatch;
745 /* Return t if the supplied string is an exact match (counting case);
746 it does not require any change to be made. */
747 if (matchcount == 1 && !NILP (Fequal (bestmatch, file)))
748 return Qt;
749 bestmatch = Fsubstring (bestmatch, make_number (0),
750 make_number (bestmatchsize));
751 return bestmatch;
752 }
753
754 /* Compare exactly LEN chars of strings at S1 and S2,
755 ignoring case if appropriate.
756 Return -1 if strings match,
757 else number of chars that match at the beginning. */
758
759 static ptrdiff_t
760 scmp (const char *s1, const char *s2, ptrdiff_t len)
761 {
762 register ptrdiff_t l = len;
763
764 if (completion_ignore_case)
765 {
766 while (l
767 && (downcase ((unsigned char) *s1++)
768 == downcase ((unsigned char) *s2++)))
769 l--;
770 }
771 else
772 {
773 while (l && *s1++ == *s2++)
774 l--;
775 }
776 if (l == 0)
777 return -1;
778 else
779 return len - l;
780 }
781
782 static int
783 file_name_completion_stat (int fd, struct dirent *dp, struct stat *st_addr)
784 {
785 int value;
786
787 #ifdef MSDOS
788 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
789 but aren't required here. Avoid computing the following fields:
790 st_inode, st_size and st_nlink for directories, and the execute bits
791 in st_mode for non-directory files with non-standard extensions. */
792
793 unsigned short save_djstat_flags = _djstat_flags;
794
795 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
796 #endif /* MSDOS */
797
798 /* We want to return success if a link points to a nonexistent file,
799 but we want to return the status for what the link points to,
800 in case it is a directory. */
801 value = fstatat (fd, dp->d_name, st_addr, AT_SYMLINK_NOFOLLOW);
802 if (value == 0 && S_ISLNK (st_addr->st_mode))
803 fstatat (fd, dp->d_name, st_addr, 0);
804 #ifdef MSDOS
805 _djstat_flags = save_djstat_flags;
806 #endif /* MSDOS */
807 return value;
808 }
809 \f
810 static char *
811 stat_uname (struct stat *st)
812 {
813 #ifdef WINDOWSNT
814 return st->st_uname;
815 #else
816 struct passwd *pw = getpwuid (st->st_uid);
817
818 if (pw)
819 return pw->pw_name;
820 else
821 return NULL;
822 #endif
823 }
824
825 static char *
826 stat_gname (struct stat *st)
827 {
828 #ifdef WINDOWSNT
829 return st->st_gname;
830 #else
831 struct group *gr = getgrgid (st->st_gid);
832
833 if (gr)
834 return gr->gr_name;
835 else
836 return NULL;
837 #endif
838 }
839
840 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0,
841 doc: /* Return a list of attributes of file FILENAME.
842 Value is nil if specified file cannot be opened.
843
844 ID-FORMAT specifies the preferred format of attributes uid and gid (see
845 below) - valid values are 'string and 'integer. The latter is the
846 default, but we plan to change that, so you should specify a non-nil value
847 for ID-FORMAT if you use the returned uid or gid.
848
849 Elements of the attribute list are:
850 0. t for directory, string (name linked to) for symbolic link, or nil.
851 1. Number of links to file.
852 2. File uid as a string or a number. If a string value cannot be
853 looked up, a numeric value, either an integer or a float, is returned.
854 3. File gid, likewise.
855 4. Last access time, as a list of integers (HIGH LOW USEC PSEC) in the
856 same style as (current-time).
857 (See a note below about access time on FAT-based filesystems.)
858 5. Last modification time, likewise. This is the time of the last
859 change to the file's contents.
860 6. Last status change time, likewise. This is the time of last change
861 to the file's attributes: owner and group, access mode bits, etc.
862 7. Size in bytes.
863 This is a floating point number if the size is too large for an integer.
864 8. File modes, as a string of ten letters or dashes as in ls -l.
865 9. An unspecified value, present only for backward compatibility.
866 10. inode number. If it is larger than what an Emacs integer can hold,
867 this is of the form (HIGH . LOW): first the high bits, then the low 16 bits.
868 If even HIGH is too large for an Emacs integer, this is instead of the form
869 (HIGH MIDDLE . LOW): first the high bits, then the middle 24 bits,
870 and finally the low 16 bits.
871 11. Filesystem device number. If it is larger than what the Emacs
872 integer can hold, this is a cons cell, similar to the inode number.
873
874 On most filesystems, the combination of the inode and the device
875 number uniquely identifies the file.
876
877 On MS-Windows, performance depends on `w32-get-true-file-attributes',
878 which see.
879
880 On some FAT-based filesystems, only the date of last access is recorded,
881 so last access time will always be midnight of that day. */)
882 (Lisp_Object filename, Lisp_Object id_format)
883 {
884 Lisp_Object encoded;
885 Lisp_Object handler;
886
887 filename = internal_condition_case_2 (Fexpand_file_name, filename, Qnil,
888 Qt, Fidentity);
889 if (!STRINGP (filename))
890 return Qnil;
891
892 /* If the file name has special constructs in it,
893 call the corresponding file handler. */
894 handler = Ffind_file_name_handler (filename, Qfile_attributes);
895 if (!NILP (handler))
896 { /* Only pass the extra arg if it is used to help backward compatibility
897 with old file handlers which do not implement the new arg. --Stef */
898 if (NILP (id_format))
899 return call2 (handler, Qfile_attributes, filename);
900 else
901 return call3 (handler, Qfile_attributes, filename, id_format);
902 }
903
904 encoded = ENCODE_FILE (filename);
905 return file_attributes (AT_FDCWD, SSDATA (encoded), id_format);
906 }
907
908 static Lisp_Object
909 file_attributes (int fd, char const *name, Lisp_Object id_format)
910 {
911 struct stat s;
912 int lstat_result;
913
914 /* An array to hold the mode string generated by filemodestring,
915 including its terminating space and null byte. */
916 char modes[sizeof "-rwxr-xr-x "];
917
918 char *uname = NULL, *gname = NULL;
919
920 #ifdef WINDOWSNT
921 /* We usually don't request accurate owner and group info, because
922 it can be very expensive on Windows to get that, and most callers
923 of 'lstat' don't need that. But here we do want that information
924 to be accurate. */
925 w32_stat_get_owner_group = 1;
926 #endif
927
928 lstat_result = fstatat (fd, name, &s, AT_SYMLINK_NOFOLLOW);
929
930 #ifdef WINDOWSNT
931 w32_stat_get_owner_group = 0;
932 #endif
933
934 if (lstat_result < 0)
935 return Qnil;
936
937 if (!(NILP (id_format) || EQ (id_format, Qinteger)))
938 {
939 block_input ();
940 uname = stat_uname (&s);
941 gname = stat_gname (&s);
942 unblock_input ();
943 }
944
945 filemodestring (&s, modes);
946
947 return CALLN (Flist,
948 (S_ISLNK (s.st_mode) ? emacs_readlinkat (fd, name)
949 : S_ISDIR (s.st_mode) ? Qt : Qnil),
950 make_number (s.st_nlink),
951 (uname
952 ? DECODE_SYSTEM (build_unibyte_string (uname))
953 : make_fixnum_or_float (s.st_uid)),
954 (gname
955 ? DECODE_SYSTEM (build_unibyte_string (gname))
956 : make_fixnum_or_float (s.st_gid)),
957 make_lisp_time (get_stat_atime (&s)),
958 make_lisp_time (get_stat_mtime (&s)),
959 make_lisp_time (get_stat_ctime (&s)),
960
961 /* If the file size is a 4-byte type, assume that
962 files of sizes in the 2-4 GiB range wrap around to
963 negative values, as this is a common bug on older
964 32-bit platforms. */
965 make_fixnum_or_float (sizeof (s.st_size) == 4
966 ? s.st_size & 0xffffffffu
967 : s.st_size),
968
969 make_string (modes, 10),
970 Qt,
971 INTEGER_TO_CONS (s.st_ino),
972 INTEGER_TO_CONS (s.st_dev));
973 }
974
975 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
976 doc: /* Return t if first arg file attributes list is less than second.
977 Comparison is in lexicographic order and case is significant. */)
978 (Lisp_Object f1, Lisp_Object f2)
979 {
980 return Fstring_lessp (Fcar (f1), Fcar (f2));
981 }
982 \f
983
984 DEFUN ("system-users", Fsystem_users, Ssystem_users, 0, 0, 0,
985 doc: /* Return a list of user names currently registered in the system.
986 If we don't know how to determine that on this platform, just
987 return a list with one element, taken from `user-real-login-name'. */)
988 (void)
989 {
990 Lisp_Object users = Qnil;
991 #if defined HAVE_GETPWENT && defined HAVE_ENDPWENT
992 struct passwd *pw;
993
994 while ((pw = getpwent ()))
995 users = Fcons (DECODE_SYSTEM (build_string (pw->pw_name)), users);
996
997 endpwent ();
998 #endif
999 if (EQ (users, Qnil))
1000 /* At least current user is always known. */
1001 users = list1 (Vuser_real_login_name);
1002 return users;
1003 }
1004
1005 DEFUN ("system-groups", Fsystem_groups, Ssystem_groups, 0, 0, 0,
1006 doc: /* Return a list of user group names currently registered in the system.
1007 The value may be nil if not supported on this platform. */)
1008 (void)
1009 {
1010 Lisp_Object groups = Qnil;
1011 #if defined HAVE_GETGRENT && defined HAVE_ENDGRENT
1012 struct group *gr;
1013
1014 while ((gr = getgrent ()))
1015 groups = Fcons (DECODE_SYSTEM (build_string (gr->gr_name)), groups);
1016
1017 endgrent ();
1018 #endif
1019 return groups;
1020 }
1021
1022 void
1023 syms_of_dired (void)
1024 {
1025 DEFSYM (Qdirectory_files, "directory-files");
1026 DEFSYM (Qdirectory_files_and_attributes, "directory-files-and-attributes");
1027 DEFSYM (Qfile_name_completion, "file-name-completion");
1028 DEFSYM (Qfile_name_all_completions, "file-name-all-completions");
1029 DEFSYM (Qfile_attributes, "file-attributes");
1030 DEFSYM (Qfile_attributes_lessp, "file-attributes-lessp");
1031 DEFSYM (Qdefault_directory, "default-directory");
1032
1033 defsubr (&Sdirectory_files);
1034 defsubr (&Sdirectory_files_and_attributes);
1035 defsubr (&Sfile_name_completion);
1036 defsubr (&Sfile_name_all_completions);
1037 defsubr (&Sfile_attributes);
1038 defsubr (&Sfile_attributes_lessp);
1039 defsubr (&Ssystem_users);
1040 defsubr (&Ssystem_groups);
1041
1042 DEFVAR_LISP ("completion-ignored-extensions", Vcompletion_ignored_extensions,
1043 doc: /* Completion ignores file names ending in any string in this list.
1044 It does not ignore them if all possible completions end in one of
1045 these strings or when displaying a list of completions.
1046 It ignores directory names if they match any string in this list which
1047 ends in a slash. */);
1048 Vcompletion_ignored_extensions = Qnil;
1049 }