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