maint: replace each "for (;;)" with "while (true)"
[coreutils.git] / src / ls.c
blob3c0443849b75c2034cbe8a8df118e8cf49aa8fd7
1 /* `dir', `vdir' and `ls' directory listing programs for GNU.
2 Copyright (C) 1985, 1988, 1990-1991, 1995-2010 Free Software Foundation,
3 Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* If ls_mode is LS_MULTI_COL,
19 the multi-column format is the default regardless
20 of the type of output device.
21 This is for the `dir' program.
23 If ls_mode is LS_LONG_FORMAT,
24 the long format is the default regardless of the
25 type of output device.
26 This is for the `vdir' program.
28 If ls_mode is LS_LS,
29 the output format depends on whether the output
30 device is a terminal.
31 This is for the `ls' program. */
33 /* Written by Richard Stallman and David MacKenzie. */
35 /* Color support by Peter Anvin <Peter.Anvin@linux.org> and Dennis
36 Flaherty <dennisf@denix.elk.miles.com> based on original patches by
37 Greg Lee <lee@uhunix.uhcc.hawaii.edu>. */
39 #include <config.h>
40 #include <sys/types.h>
42 #if HAVE_TERMIOS_H
43 # include <termios.h>
44 #endif
45 #if HAVE_STROPTS_H
46 # include <stropts.h>
47 #endif
48 #include <sys/ioctl.h>
50 #ifdef WINSIZE_IN_PTEM
51 # include <sys/stream.h>
52 # include <sys/ptem.h>
53 #endif
55 #include <stdio.h>
56 #include <assert.h>
57 #include <setjmp.h>
58 #include <grp.h>
59 #include <pwd.h>
60 #include <getopt.h>
61 #include <signal.h>
62 #include <selinux/selinux.h>
63 #include <wchar.h>
65 #if HAVE_LANGINFO_CODESET
66 # include <langinfo.h>
67 #endif
69 /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is
70 present. */
71 #ifndef SA_NOCLDSTOP
72 # define SA_NOCLDSTOP 0
73 # define sigprocmask(How, Set, Oset) /* empty */
74 # define sigset_t int
75 # if ! HAVE_SIGINTERRUPT
76 # define siginterrupt(sig, flag) /* empty */
77 # endif
78 #endif
80 #include "system.h"
81 #include <fnmatch.h>
83 #include "acl.h"
84 #include "argmatch.h"
85 #include "dev-ino.h"
86 #include "error.h"
87 #include "filenamecat.h"
88 #include "hard-locale.h"
89 #include "hash.h"
90 #include "human.h"
91 #include "filemode.h"
92 #include "filevercmp.h"
93 #include "idcache.h"
94 #include "ls.h"
95 #include "mbswidth.h"
96 #include "mpsort.h"
97 #include "obstack.h"
98 #include "quote.h"
99 #include "quotearg.h"
100 #include "same.h"
101 #include "stat-time.h"
102 #include "strftime.h"
103 #include "xstrtol.h"
104 #include "areadlink.h"
105 #include "mbsalign.h"
107 /* Include <sys/capability.h> last to avoid a clash of <sys/types.h>
108 include guards with some premature versions of libcap.
109 For more details, see <http://bugzilla.redhat.com/483548>. */
110 #ifdef HAVE_CAP
111 # include <sys/capability.h>
112 #endif
114 #define PROGRAM_NAME (ls_mode == LS_LS ? "ls" \
115 : (ls_mode == LS_MULTI_COL \
116 ? "dir" : "vdir"))
118 #define AUTHORS \
119 proper_name ("Richard M. Stallman"), \
120 proper_name ("David MacKenzie")
122 #define obstack_chunk_alloc malloc
123 #define obstack_chunk_free free
125 /* Return an int indicating the result of comparing two integers.
126 Subtracting doesn't always work, due to overflow. */
127 #define longdiff(a, b) ((a) < (b) ? -1 : (a) > (b))
129 /* Unix-based readdir implementations have historically returned a dirent.d_ino
130 value that is sometimes not equal to the stat-obtained st_ino value for
131 that same entry. This error occurs for a readdir entry that refers
132 to a mount point. readdir's error is to return the inode number of
133 the underlying directory -- one that typically cannot be stat'ed, as
134 long as a file system is mounted on that directory. RELIABLE_D_INO
135 encapsulates whether we can use the more efficient approach of relying
136 on readdir-supplied d_ino values, or whether we must incur the cost of
137 calling stat or lstat to obtain each guaranteed-valid inode number. */
139 #ifndef READDIR_LIES_ABOUT_MOUNTPOINT_D_INO
140 # define READDIR_LIES_ABOUT_MOUNTPOINT_D_INO 1
141 #endif
143 #if READDIR_LIES_ABOUT_MOUNTPOINT_D_INO
144 # define RELIABLE_D_INO(dp) NOT_AN_INODE_NUMBER
145 #else
146 # define RELIABLE_D_INO(dp) D_INO (dp)
147 #endif
149 #if ! HAVE_STRUCT_STAT_ST_AUTHOR
150 # define st_author st_uid
151 #endif
153 enum filetype
155 unknown,
156 fifo,
157 chardev,
158 directory,
159 blockdev,
160 normal,
161 symbolic_link,
162 sock,
163 whiteout,
164 arg_directory
167 /* Display letters and indicators for each filetype.
168 Keep these in sync with enum filetype. */
169 static char const filetype_letter[] = "?pcdb-lswd";
171 /* Ensure that filetype and filetype_letter have the same
172 number of elements. */
173 verify (sizeof filetype_letter - 1 == arg_directory + 1);
175 #define FILETYPE_INDICATORS \
177 C_ORPHAN, C_FIFO, C_CHR, C_DIR, C_BLK, C_FILE, \
178 C_LINK, C_SOCK, C_FILE, C_DIR \
181 enum acl_type
183 ACL_T_NONE,
184 ACL_T_SELINUX_ONLY,
185 ACL_T_YES
188 struct fileinfo
190 /* The file name. */
191 char *name;
193 /* For symbolic link, name of the file linked to, otherwise zero. */
194 char *linkname;
196 struct stat stat;
198 enum filetype filetype;
200 /* For symbolic link and long listing, st_mode of file linked to, otherwise
201 zero. */
202 mode_t linkmode;
204 /* SELinux security context. */
205 security_context_t scontext;
207 bool stat_ok;
209 /* For symbolic link and color printing, true if linked-to file
210 exists, otherwise false. */
211 bool linkok;
213 /* For long listings, true if the file has an access control list,
214 or an SELinux security context. */
215 enum acl_type acl_type;
217 /* For color listings, true if a regular file has capability info. */
218 bool has_capability;
221 #define LEN_STR_PAIR(s) sizeof (s) - 1, s
223 /* Null is a valid character in a color indicator (think about Epson
224 printers, for example) so we have to use a length/buffer string
225 type. */
227 struct bin_str
229 size_t len; /* Number of bytes */
230 const char *string; /* Pointer to the same */
233 #if ! HAVE_TCGETPGRP
234 # define tcgetpgrp(Fd) 0
235 #endif
237 static size_t quote_name (FILE *out, const char *name,
238 struct quoting_options const *options,
239 size_t *width);
240 static char *make_link_name (char const *name, char const *linkname);
241 static int decode_switches (int argc, char **argv);
242 static bool file_ignored (char const *name);
243 static uintmax_t gobble_file (char const *name, enum filetype type,
244 ino_t inode, bool command_line_arg,
245 char const *dirname);
246 static bool print_color_indicator (const struct fileinfo *f,
247 bool symlink_target);
248 static void put_indicator (const struct bin_str *ind);
249 static void add_ignore_pattern (const char *pattern);
250 static void attach (char *dest, const char *dirname, const char *name);
251 static void clear_files (void);
252 static void extract_dirs_from_files (char const *dirname,
253 bool command_line_arg);
254 static void get_link_name (char const *filename, struct fileinfo *f,
255 bool command_line_arg);
256 static void indent (size_t from, size_t to);
257 static size_t calculate_columns (bool by_columns);
258 static void print_current_files (void);
259 static void print_dir (char const *name, char const *realname,
260 bool command_line_arg);
261 static size_t print_file_name_and_frills (const struct fileinfo *f,
262 size_t start_col);
263 static void print_horizontal (void);
264 static int format_user_width (uid_t u);
265 static int format_group_width (gid_t g);
266 static void print_long_format (const struct fileinfo *f);
267 static void print_many_per_line (void);
268 static size_t print_name_with_quoting (const struct fileinfo *f,
269 bool symlink_target,
270 struct obstack *stack,
271 size_t start_col);
272 static void prep_non_filename_text (void);
273 static bool print_type_indicator (bool stat_ok, mode_t mode,
274 enum filetype type);
275 static void print_with_commas (void);
276 static void queue_directory (char const *name, char const *realname,
277 bool command_line_arg);
278 static void sort_files (void);
279 static void parse_ls_color (void);
280 void usage (int status);
282 /* Initial size of hash table.
283 Most hierarchies are likely to be shallower than this. */
284 #define INITIAL_TABLE_SIZE 30
286 /* The set of `active' directories, from the current command-line argument
287 to the level in the hierarchy at which files are being listed.
288 A directory is represented by its device and inode numbers (struct dev_ino).
289 A directory is added to this set when ls begins listing it or its
290 entries, and it is removed from the set just after ls has finished
291 processing it. This set is used solely to detect loops, e.g., with
292 mkdir loop; cd loop; ln -s ../loop sub; ls -RL */
293 static Hash_table *active_dir_set;
295 #define LOOP_DETECT (!!active_dir_set)
297 /* The table of files in the current directory:
299 `cwd_file' points to a vector of `struct fileinfo', one per file.
300 `cwd_n_alloc' is the number of elements space has been allocated for.
301 `cwd_n_used' is the number actually in use. */
303 /* Address of block containing the files that are described. */
304 static struct fileinfo *cwd_file;
306 /* Length of block that `cwd_file' points to, measured in files. */
307 static size_t cwd_n_alloc;
309 /* Index of first unused slot in `cwd_file'. */
310 static size_t cwd_n_used;
312 /* Vector of pointers to files, in proper sorted order, and the number
313 of entries allocated for it. */
314 static void **sorted_file;
315 static size_t sorted_file_alloc;
317 /* When true, in a color listing, color each symlink name according to the
318 type of file it points to. Otherwise, color them according to the `ln'
319 directive in LS_COLORS. Dangling (orphan) symlinks are treated specially,
320 regardless. This is set when `ln=target' appears in LS_COLORS. */
322 static bool color_symlink_as_referent;
324 /* mode of appropriate file for colorization */
325 #define FILE_OR_LINK_MODE(File) \
326 ((color_symlink_as_referent && (File)->linkok) \
327 ? (File)->linkmode : (File)->stat.st_mode)
330 /* Record of one pending directory waiting to be listed. */
332 struct pending
334 char *name;
335 /* If the directory is actually the file pointed to by a symbolic link we
336 were told to list, `realname' will contain the name of the symbolic
337 link, otherwise zero. */
338 char *realname;
339 bool command_line_arg;
340 struct pending *next;
343 static struct pending *pending_dirs;
345 /* Current time in seconds and nanoseconds since 1970, updated as
346 needed when deciding whether a file is recent. */
348 static struct timespec current_time;
350 static bool print_scontext;
351 static char UNKNOWN_SECURITY_CONTEXT[] = "?";
353 /* Whether any of the files has an ACL. This affects the width of the
354 mode column. */
356 static bool any_has_acl;
358 /* The number of columns to use for columns containing inode numbers,
359 block sizes, link counts, owners, groups, authors, major device
360 numbers, minor device numbers, and file sizes, respectively. */
362 static int inode_number_width;
363 static int block_size_width;
364 static int nlink_width;
365 static int scontext_width;
366 static int owner_width;
367 static int group_width;
368 static int author_width;
369 static int major_device_number_width;
370 static int minor_device_number_width;
371 static int file_size_width;
373 /* Option flags */
375 /* long_format for lots of info, one per line.
376 one_per_line for just names, one per line.
377 many_per_line for just names, many per line, sorted vertically.
378 horizontal for just names, many per line, sorted horizontally.
379 with_commas for just names, many per line, separated by commas.
381 -l (and other options that imply -l), -1, -C, -x and -m control
382 this parameter. */
384 enum format
386 long_format, /* -l and other options that imply -l */
387 one_per_line, /* -1 */
388 many_per_line, /* -C */
389 horizontal, /* -x */
390 with_commas /* -m */
393 static enum format format;
395 /* `full-iso' uses full ISO-style dates and times. `long-iso' uses longer
396 ISO-style time stamps, though shorter than `full-iso'. `iso' uses shorter
397 ISO-style time stamps. `locale' uses locale-dependent time stamps. */
398 enum time_style
400 full_iso_time_style, /* --time-style=full-iso */
401 long_iso_time_style, /* --time-style=long-iso */
402 iso_time_style, /* --time-style=iso */
403 locale_time_style /* --time-style=locale */
406 static char const *const time_style_args[] =
408 "full-iso", "long-iso", "iso", "locale", NULL
410 static enum time_style const time_style_types[] =
412 full_iso_time_style, long_iso_time_style, iso_time_style,
413 locale_time_style
415 ARGMATCH_VERIFY (time_style_args, time_style_types);
417 /* Type of time to print or sort by. Controlled by -c and -u.
418 The values of each item of this enum are important since they are
419 used as indices in the sort functions array (see sort_files()). */
421 enum time_type
423 time_mtime, /* default */
424 time_ctime, /* -c */
425 time_atime, /* -u */
426 time_numtypes /* the number of elements of this enum */
429 static enum time_type time_type;
431 /* The file characteristic to sort by. Controlled by -t, -S, -U, -X, -v.
432 The values of each item of this enum are important since they are
433 used as indices in the sort functions array (see sort_files()). */
435 enum sort_type
437 sort_none = -1, /* -U */
438 sort_name, /* default */
439 sort_extension, /* -X */
440 sort_size, /* -S */
441 sort_version, /* -v */
442 sort_time, /* -t */
443 sort_numtypes /* the number of elements of this enum */
446 static enum sort_type sort_type;
448 /* Direction of sort.
449 false means highest first if numeric,
450 lowest first if alphabetic;
451 these are the defaults.
452 true means the opposite order in each case. -r */
454 static bool sort_reverse;
456 /* True means to display owner information. -g turns this off. */
458 static bool print_owner = true;
460 /* True means to display author information. */
462 static bool print_author;
464 /* True means to display group information. -G and -o turn this off. */
466 static bool print_group = true;
468 /* True means print the user and group id's as numbers rather
469 than as names. -n */
471 static bool numeric_ids;
473 /* True means mention the size in blocks of each file. -s */
475 static bool print_block_size;
477 /* Human-readable options for output. */
478 static int human_output_opts;
480 /* The units to use when printing sizes other than file sizes. */
481 static uintmax_t output_block_size;
483 /* Likewise, but for file sizes. */
484 static uintmax_t file_output_block_size = 1;
486 /* Follow the output with a special string. Using this format,
487 Emacs' dired mode starts up twice as fast, and can handle all
488 strange characters in file names. */
489 static bool dired;
491 /* `none' means don't mention the type of files.
492 `slash' means mention directories only, with a '/'.
493 `file_type' means mention file types.
494 `classify' means mention file types and mark executables.
496 Controlled by -F, -p, and --indicator-style. */
498 enum indicator_style
500 none, /* --indicator-style=none */
501 slash, /* -p, --indicator-style=slash */
502 file_type, /* --indicator-style=file-type */
503 classify /* -F, --indicator-style=classify */
506 static enum indicator_style indicator_style;
508 /* Names of indicator styles. */
509 static char const *const indicator_style_args[] =
511 "none", "slash", "file-type", "classify", NULL
513 static enum indicator_style const indicator_style_types[] =
515 none, slash, file_type, classify
517 ARGMATCH_VERIFY (indicator_style_args, indicator_style_types);
519 /* True means use colors to mark types. Also define the different
520 colors as well as the stuff for the LS_COLORS environment variable.
521 The LS_COLORS variable is now in a termcap-like format. */
523 static bool print_with_color;
525 /* Whether we used any colors in the output so far. If so, we will
526 need to restore the default color later. If not, we will need to
527 call prep_non_filename_text before using color for the first time. */
529 static bool used_color = false;
531 enum color_type
533 color_never, /* 0: default or --color=never */
534 color_always, /* 1: --color=always */
535 color_if_tty /* 2: --color=tty */
538 enum Dereference_symlink
540 DEREF_UNDEFINED = 1,
541 DEREF_NEVER,
542 DEREF_COMMAND_LINE_ARGUMENTS, /* -H */
543 DEREF_COMMAND_LINE_SYMLINK_TO_DIR, /* the default, in certain cases */
544 DEREF_ALWAYS /* -L */
547 enum indicator_no
549 C_LEFT, C_RIGHT, C_END, C_RESET, C_NORM, C_FILE, C_DIR, C_LINK,
550 C_FIFO, C_SOCK,
551 C_BLK, C_CHR, C_MISSING, C_ORPHAN, C_EXEC, C_DOOR, C_SETUID, C_SETGID,
552 C_STICKY, C_OTHER_WRITABLE, C_STICKY_OTHER_WRITABLE, C_CAP, C_MULTIHARDLINK,
553 C_CLR_TO_EOL
556 static const char *const indicator_name[]=
558 "lc", "rc", "ec", "rs", "no", "fi", "di", "ln", "pi", "so",
559 "bd", "cd", "mi", "or", "ex", "do", "su", "sg", "st",
560 "ow", "tw", "ca", "mh", "cl", NULL
563 struct color_ext_type
565 struct bin_str ext; /* The extension we're looking for */
566 struct bin_str seq; /* The sequence to output when we do */
567 struct color_ext_type *next; /* Next in list */
570 static struct bin_str color_indicator[] =
572 { LEN_STR_PAIR ("\033[") }, /* lc: Left of color sequence */
573 { LEN_STR_PAIR ("m") }, /* rc: Right of color sequence */
574 { 0, NULL }, /* ec: End color (replaces lc+no+rc) */
575 { LEN_STR_PAIR ("0") }, /* rs: Reset to ordinary colors */
576 { 0, NULL }, /* no: Normal */
577 { 0, NULL }, /* fi: File: default */
578 { LEN_STR_PAIR ("01;34") }, /* di: Directory: bright blue */
579 { LEN_STR_PAIR ("01;36") }, /* ln: Symlink: bright cyan */
580 { LEN_STR_PAIR ("33") }, /* pi: Pipe: yellow/brown */
581 { LEN_STR_PAIR ("01;35") }, /* so: Socket: bright magenta */
582 { LEN_STR_PAIR ("01;33") }, /* bd: Block device: bright yellow */
583 { LEN_STR_PAIR ("01;33") }, /* cd: Char device: bright yellow */
584 { 0, NULL }, /* mi: Missing file: undefined */
585 { 0, NULL }, /* or: Orphaned symlink: undefined */
586 { LEN_STR_PAIR ("01;32") }, /* ex: Executable: bright green */
587 { LEN_STR_PAIR ("01;35") }, /* do: Door: bright magenta */
588 { LEN_STR_PAIR ("37;41") }, /* su: setuid: white on red */
589 { LEN_STR_PAIR ("30;43") }, /* sg: setgid: black on yellow */
590 { LEN_STR_PAIR ("37;44") }, /* st: sticky: black on blue */
591 { LEN_STR_PAIR ("34;42") }, /* ow: other-writable: blue on green */
592 { LEN_STR_PAIR ("30;42") }, /* tw: ow w/ sticky: black on green */
593 { LEN_STR_PAIR ("30;41") }, /* ca: black on red */
594 { 0, NULL }, /* mh: disabled by default */
595 { LEN_STR_PAIR ("\033[K") }, /* cl: clear to end of line */
598 /* FIXME: comment */
599 static struct color_ext_type *color_ext_list = NULL;
601 /* Buffer for color sequences */
602 static char *color_buf;
604 /* True means to check for orphaned symbolic link, for displaying
605 colors. */
607 static bool check_symlink_color;
609 /* True means mention the inode number of each file. -i */
611 static bool print_inode;
613 /* What to do with symbolic links. Affected by -d, -F, -H, -l (and
614 other options that imply -l), and -L. */
616 static enum Dereference_symlink dereference;
618 /* True means when a directory is found, display info on its
619 contents. -R */
621 static bool recursive;
623 /* True means when an argument is a directory name, display info
624 on it itself. -d */
626 static bool immediate_dirs;
628 /* True means that directories are grouped before files. */
630 static bool directories_first;
632 /* Which files to ignore. */
634 static enum
636 /* Ignore files whose names start with `.', and files specified by
637 --hide and --ignore. */
638 IGNORE_DEFAULT,
640 /* Ignore `.', `..', and files specified by --ignore. */
641 IGNORE_DOT_AND_DOTDOT,
643 /* Ignore only files specified by --ignore. */
644 IGNORE_MINIMAL
645 } ignore_mode;
647 /* A linked list of shell-style globbing patterns. If a non-argument
648 file name matches any of these patterns, it is ignored.
649 Controlled by -I. Multiple -I options accumulate.
650 The -B option adds `*~' and `.*~' to this list. */
652 struct ignore_pattern
654 const char *pattern;
655 struct ignore_pattern *next;
658 static struct ignore_pattern *ignore_patterns;
660 /* Similar to IGNORE_PATTERNS, except that -a or -A causes this
661 variable itself to be ignored. */
662 static struct ignore_pattern *hide_patterns;
664 /* True means output nongraphic chars in file names as `?'.
665 (-q, --hide-control-chars)
666 qmark_funny_chars and the quoting style (-Q, --quoting-style=WORD) are
667 independent. The algorithm is: first, obey the quoting style to get a
668 string representing the file name; then, if qmark_funny_chars is set,
669 replace all nonprintable chars in that string with `?'. It's necessary
670 to replace nonprintable chars even in quoted strings, because we don't
671 want to mess up the terminal if control chars get sent to it, and some
672 quoting methods pass through control chars as-is. */
673 static bool qmark_funny_chars;
675 /* Quoting options for file and dir name output. */
677 static struct quoting_options *filename_quoting_options;
678 static struct quoting_options *dirname_quoting_options;
680 /* The number of chars per hardware tab stop. Setting this to zero
681 inhibits the use of TAB characters for separating columns. -T */
682 static size_t tabsize;
684 /* True means print each directory name before listing it. */
686 static bool print_dir_name;
688 /* The line length to use for breaking lines in many-per-line format.
689 Can be set with -w. */
691 static size_t line_length;
693 /* If true, the file listing format requires that stat be called on
694 each file. */
696 static bool format_needs_stat;
698 /* Similar to `format_needs_stat', but set if only the file type is
699 needed. */
701 static bool format_needs_type;
703 /* An arbitrary limit on the number of bytes in a printed time stamp.
704 This is set to a relatively small value to avoid the need to worry
705 about denial-of-service attacks on servers that run "ls" on behalf
706 of remote clients. 1000 bytes should be enough for any practical
707 time stamp format. */
709 enum { TIME_STAMP_LEN_MAXIMUM = MAX (1000, INT_STRLEN_BOUND (time_t)) };
711 /* strftime formats for non-recent and recent files, respectively, in
712 -l output. */
714 static char const *long_time_format[2] =
716 /* strftime format for non-recent files (older than 6 months), in
717 -l output. This should contain the year, month and day (at
718 least), in an order that is understood by people in your
719 locale's territory. Please try to keep the number of used
720 screen columns small, because many people work in windows with
721 only 80 columns. But make this as wide as the other string
722 below, for recent files. */
723 /* TRANSLATORS: ls output needs to be aligned for ease of reading,
724 so be wary of using variable width fields from the locale.
725 Note %b is handled specially by ls and aligned correctly.
726 Note also that specifying a width as in %5b is erroneous as strftime
727 will count bytes rather than characters in multibyte locales. */
728 N_("%b %e %Y"),
729 /* strftime format for recent files (younger than 6 months), in -l
730 output. This should contain the month, day and time (at
731 least), in an order that is understood by people in your
732 locale's territory. Please try to keep the number of used
733 screen columns small, because many people work in windows with
734 only 80 columns. But make this as wide as the other string
735 above, for non-recent files. */
736 /* TRANSLATORS: ls output needs to be aligned for ease of reading,
737 so be wary of using variable width fields from the locale.
738 Note %b is handled specially by ls and aligned correctly.
739 Note also that specifying a width as in %5b is erroneous as strftime
740 will count bytes rather than characters in multibyte locales. */
741 N_("%b %e %H:%M")
744 /* The set of signals that are caught. */
746 static sigset_t caught_signals;
748 /* If nonzero, the value of the pending fatal signal. */
750 static sig_atomic_t volatile interrupt_signal;
752 /* A count of the number of pending stop signals that have been received. */
754 static sig_atomic_t volatile stop_signal_count;
756 /* Desired exit status. */
758 static int exit_status;
760 /* Exit statuses. */
761 enum
763 /* "ls" had a minor problem. E.g., while processing a directory,
764 ls obtained the name of an entry via readdir, yet was later
765 unable to stat that name. This happens when listing a directory
766 in which entries are actively being removed or renamed. */
767 LS_MINOR_PROBLEM = 1,
769 /* "ls" had more serious trouble (e.g., memory exhausted, invalid
770 option or failure to stat a command line argument. */
771 LS_FAILURE = 2
774 /* For long options that have no equivalent short option, use a
775 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
776 enum
778 AUTHOR_OPTION = CHAR_MAX + 1,
779 BLOCK_SIZE_OPTION,
780 COLOR_OPTION,
781 DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION,
782 FILE_TYPE_INDICATOR_OPTION,
783 FORMAT_OPTION,
784 FULL_TIME_OPTION,
785 GROUP_DIRECTORIES_FIRST_OPTION,
786 HIDE_OPTION,
787 INDICATOR_STYLE_OPTION,
788 QUOTING_STYLE_OPTION,
789 SHOW_CONTROL_CHARS_OPTION,
790 SI_OPTION,
791 SORT_OPTION,
792 TIME_OPTION,
793 TIME_STYLE_OPTION
796 static struct option const long_options[] =
798 {"all", no_argument, NULL, 'a'},
799 {"escape", no_argument, NULL, 'b'},
800 {"directory", no_argument, NULL, 'd'},
801 {"dired", no_argument, NULL, 'D'},
802 {"full-time", no_argument, NULL, FULL_TIME_OPTION},
803 {"group-directories-first", no_argument, NULL,
804 GROUP_DIRECTORIES_FIRST_OPTION},
805 {"human-readable", no_argument, NULL, 'h'},
806 {"inode", no_argument, NULL, 'i'},
807 {"numeric-uid-gid", no_argument, NULL, 'n'},
808 {"no-group", no_argument, NULL, 'G'},
809 {"hide-control-chars", no_argument, NULL, 'q'},
810 {"reverse", no_argument, NULL, 'r'},
811 {"size", no_argument, NULL, 's'},
812 {"width", required_argument, NULL, 'w'},
813 {"almost-all", no_argument, NULL, 'A'},
814 {"ignore-backups", no_argument, NULL, 'B'},
815 {"classify", no_argument, NULL, 'F'},
816 {"file-type", no_argument, NULL, FILE_TYPE_INDICATOR_OPTION},
817 {"si", no_argument, NULL, SI_OPTION},
818 {"dereference-command-line", no_argument, NULL, 'H'},
819 {"dereference-command-line-symlink-to-dir", no_argument, NULL,
820 DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION},
821 {"hide", required_argument, NULL, HIDE_OPTION},
822 {"ignore", required_argument, NULL, 'I'},
823 {"indicator-style", required_argument, NULL, INDICATOR_STYLE_OPTION},
824 {"dereference", no_argument, NULL, 'L'},
825 {"literal", no_argument, NULL, 'N'},
826 {"quote-name", no_argument, NULL, 'Q'},
827 {"quoting-style", required_argument, NULL, QUOTING_STYLE_OPTION},
828 {"recursive", no_argument, NULL, 'R'},
829 {"format", required_argument, NULL, FORMAT_OPTION},
830 {"show-control-chars", no_argument, NULL, SHOW_CONTROL_CHARS_OPTION},
831 {"sort", required_argument, NULL, SORT_OPTION},
832 {"tabsize", required_argument, NULL, 'T'},
833 {"time", required_argument, NULL, TIME_OPTION},
834 {"time-style", required_argument, NULL, TIME_STYLE_OPTION},
835 {"color", optional_argument, NULL, COLOR_OPTION},
836 {"block-size", required_argument, NULL, BLOCK_SIZE_OPTION},
837 {"context", no_argument, 0, 'Z'},
838 {"author", no_argument, NULL, AUTHOR_OPTION},
839 {GETOPT_HELP_OPTION_DECL},
840 {GETOPT_VERSION_OPTION_DECL},
841 {NULL, 0, NULL, 0}
844 static char const *const format_args[] =
846 "verbose", "long", "commas", "horizontal", "across",
847 "vertical", "single-column", NULL
849 static enum format const format_types[] =
851 long_format, long_format, with_commas, horizontal, horizontal,
852 many_per_line, one_per_line
854 ARGMATCH_VERIFY (format_args, format_types);
856 static char const *const sort_args[] =
858 "none", "time", "size", "extension", "version", NULL
860 static enum sort_type const sort_types[] =
862 sort_none, sort_time, sort_size, sort_extension, sort_version
864 ARGMATCH_VERIFY (sort_args, sort_types);
866 static char const *const time_args[] =
868 "atime", "access", "use", "ctime", "status", NULL
870 static enum time_type const time_types[] =
872 time_atime, time_atime, time_atime, time_ctime, time_ctime
874 ARGMATCH_VERIFY (time_args, time_types);
876 static char const *const color_args[] =
878 /* force and none are for compatibility with another color-ls version */
879 "always", "yes", "force",
880 "never", "no", "none",
881 "auto", "tty", "if-tty", NULL
883 static enum color_type const color_types[] =
885 color_always, color_always, color_always,
886 color_never, color_never, color_never,
887 color_if_tty, color_if_tty, color_if_tty
889 ARGMATCH_VERIFY (color_args, color_types);
891 /* Information about filling a column. */
892 struct column_info
894 bool valid_len;
895 size_t line_len;
896 size_t *col_arr;
899 /* Array with information about column filledness. */
900 static struct column_info *column_info;
902 /* Maximum number of columns ever possible for this display. */
903 static size_t max_idx;
905 /* The minimum width of a column is 3: 1 character for the name and 2
906 for the separating white space. */
907 #define MIN_COLUMN_WIDTH 3
910 /* This zero-based index is used solely with the --dired option.
911 When that option is in effect, this counter is incremented for each
912 byte of output generated by this program so that the beginning
913 and ending indices (in that output) of every file name can be recorded
914 and later output themselves. */
915 static size_t dired_pos;
917 #define DIRED_PUTCHAR(c) do {putchar ((c)); ++dired_pos;} while (0)
919 /* Write S to STREAM and increment DIRED_POS by S_LEN. */
920 #define DIRED_FPUTS(s, stream, s_len) \
921 do {fputs (s, stream); dired_pos += s_len;} while (0)
923 /* Like DIRED_FPUTS, but for use when S is a literal string. */
924 #define DIRED_FPUTS_LITERAL(s, stream) \
925 do {fputs (s, stream); dired_pos += sizeof (s) - 1;} while (0)
927 #define DIRED_INDENT() \
928 do \
930 if (dired) \
931 DIRED_FPUTS_LITERAL (" ", stdout); \
933 while (0)
935 /* With --dired, store pairs of beginning and ending indices of filenames. */
936 static struct obstack dired_obstack;
938 /* With --dired, store pairs of beginning and ending indices of any
939 directory names that appear as headers (just before `total' line)
940 for lists of directory entries. Such directory names are seen when
941 listing hierarchies using -R and when a directory is listed with at
942 least one other command line argument. */
943 static struct obstack subdired_obstack;
945 /* Save the current index on the specified obstack, OBS. */
946 #define PUSH_CURRENT_DIRED_POS(obs) \
947 do \
949 if (dired) \
950 obstack_grow (obs, &dired_pos, sizeof (dired_pos)); \
952 while (0)
954 /* With -R, this stack is used to help detect directory cycles.
955 The device/inode pairs on this stack mirror the pairs in the
956 active_dir_set hash table. */
957 static struct obstack dev_ino_obstack;
959 /* Push a pair onto the device/inode stack. */
960 #define DEV_INO_PUSH(Dev, Ino) \
961 do \
963 struct dev_ino *di; \
964 obstack_blank (&dev_ino_obstack, sizeof (struct dev_ino)); \
965 di = -1 + (struct dev_ino *) obstack_next_free (&dev_ino_obstack); \
966 di->st_dev = (Dev); \
967 di->st_ino = (Ino); \
969 while (0)
971 /* Pop a dev/ino struct off the global dev_ino_obstack
972 and return that struct. */
973 static struct dev_ino
974 dev_ino_pop (void)
976 assert (sizeof (struct dev_ino) <= obstack_object_size (&dev_ino_obstack));
977 obstack_blank (&dev_ino_obstack, -(int) (sizeof (struct dev_ino)));
978 return *(struct dev_ino *) obstack_next_free (&dev_ino_obstack);
981 /* Note the use commented out below:
982 #define ASSERT_MATCHING_DEV_INO(Name, Di) \
983 do \
985 struct stat sb; \
986 assert (Name); \
987 assert (0 <= stat (Name, &sb)); \
988 assert (sb.st_dev == Di.st_dev); \
989 assert (sb.st_ino == Di.st_ino); \
991 while (0)
994 /* Write to standard output PREFIX, followed by the quoting style and
995 a space-separated list of the integers stored in OS all on one line. */
997 static void
998 dired_dump_obstack (const char *prefix, struct obstack *os)
1000 size_t n_pos;
1002 n_pos = obstack_object_size (os) / sizeof (dired_pos);
1003 if (n_pos > 0)
1005 size_t i;
1006 size_t *pos;
1008 pos = (size_t *) obstack_finish (os);
1009 fputs (prefix, stdout);
1010 for (i = 0; i < n_pos; i++)
1011 printf (" %lu", (unsigned long int) pos[i]);
1012 putchar ('\n');
1016 /* Read the abbreviated month names from the locale, to align them
1017 and to determine the max width of the field and to truncate names
1018 greater than our max allowed.
1019 Note even though this handles multibyte locales correctly
1020 it's not restricted to them as single byte locales can have
1021 variable width abbreviated months and also precomputing/caching
1022 the names was seen to increase the performance of ls significantly. */
1024 /* max number of display cells to use */
1025 enum { MAX_MON_WIDTH = 5 };
1026 /* In the unlikely event that the abmon[] storage is not big enough
1027 an error message will be displayed, and we revert to using
1028 unmodified abbreviated month names from the locale database. */
1029 static char abmon[12][MAX_MON_WIDTH * 2 * MB_LEN_MAX + 1];
1030 /* minimum width needed to align %b, 0 => don't use precomputed values. */
1031 static size_t required_mon_width;
1033 static size_t
1034 abmon_init (void)
1036 #ifdef HAVE_NL_LANGINFO
1037 required_mon_width = MAX_MON_WIDTH;
1038 size_t curr_max_width;
1041 curr_max_width = required_mon_width;
1042 required_mon_width = 0;
1043 for (int i = 0; i < 12; i++)
1045 size_t width = curr_max_width;
1047 size_t req = mbsalign (nl_langinfo (ABMON_1 + i),
1048 abmon[i], sizeof (abmon[i]),
1049 &width, MBS_ALIGN_LEFT, 0);
1051 if (req == (size_t) -1 || req >= sizeof (abmon[i]))
1053 required_mon_width = 0; /* ignore precomputed strings. */
1054 return required_mon_width;
1057 required_mon_width = MAX (required_mon_width, width);
1060 while (curr_max_width > required_mon_width);
1061 #endif
1063 return required_mon_width;
1066 static size_t
1067 dev_ino_hash (void const *x, size_t table_size)
1069 struct dev_ino const *p = x;
1070 return (uintmax_t) p->st_ino % table_size;
1073 static bool
1074 dev_ino_compare (void const *x, void const *y)
1076 struct dev_ino const *a = x;
1077 struct dev_ino const *b = y;
1078 return SAME_INODE (*a, *b) ? true : false;
1081 static void
1082 dev_ino_free (void *x)
1084 free (x);
1087 /* Add the device/inode pair (P->st_dev/P->st_ino) to the set of
1088 active directories. Return true if there is already a matching
1089 entry in the table. */
1091 static bool
1092 visit_dir (dev_t dev, ino_t ino)
1094 struct dev_ino *ent;
1095 struct dev_ino *ent_from_table;
1096 bool found_match;
1098 ent = xmalloc (sizeof *ent);
1099 ent->st_ino = ino;
1100 ent->st_dev = dev;
1102 /* Attempt to insert this entry into the table. */
1103 ent_from_table = hash_insert (active_dir_set, ent);
1105 if (ent_from_table == NULL)
1107 /* Insertion failed due to lack of memory. */
1108 xalloc_die ();
1111 found_match = (ent_from_table != ent);
1113 if (found_match)
1115 /* ent was not inserted, so free it. */
1116 free (ent);
1119 return found_match;
1122 static void
1123 free_pending_ent (struct pending *p)
1125 free (p->name);
1126 free (p->realname);
1127 free (p);
1130 static bool
1131 is_colored (enum indicator_no type)
1133 size_t len = color_indicator[type].len;
1134 char const *s = color_indicator[type].string;
1135 return ! (len == 0
1136 || (len == 1 && strncmp (s, "0", 1) == 0)
1137 || (len == 2 && strncmp (s, "00", 2) == 0));
1140 static void
1141 restore_default_color (void)
1143 put_indicator (&color_indicator[C_LEFT]);
1144 put_indicator (&color_indicator[C_RIGHT]);
1147 static void
1148 set_normal_color (void)
1150 if (print_with_color && is_colored (C_NORM))
1152 put_indicator (&color_indicator[C_LEFT]);
1153 put_indicator (&color_indicator[C_NORM]);
1154 put_indicator (&color_indicator[C_RIGHT]);
1158 /* An ordinary signal was received; arrange for the program to exit. */
1160 static void
1161 sighandler (int sig)
1163 if (! SA_NOCLDSTOP)
1164 signal (sig, SIG_IGN);
1165 if (! interrupt_signal)
1166 interrupt_signal = sig;
1169 /* A SIGTSTP was received; arrange for the program to suspend itself. */
1171 static void
1172 stophandler (int sig)
1174 if (! SA_NOCLDSTOP)
1175 signal (sig, stophandler);
1176 if (! interrupt_signal)
1177 stop_signal_count++;
1180 /* Process any pending signals. If signals are caught, this function
1181 should be called periodically. Ideally there should never be an
1182 unbounded amount of time when signals are not being processed.
1183 Signal handling can restore the default colors, so callers must
1184 immediately change colors after invoking this function. */
1186 static void
1187 process_signals (void)
1189 while (interrupt_signal || stop_signal_count)
1191 int sig;
1192 int stops;
1193 sigset_t oldset;
1195 if (used_color)
1196 restore_default_color ();
1197 fflush (stdout);
1199 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
1201 /* Reload interrupt_signal and stop_signal_count, in case a new
1202 signal was handled before sigprocmask took effect. */
1203 sig = interrupt_signal;
1204 stops = stop_signal_count;
1206 /* SIGTSTP is special, since the application can receive that signal
1207 more than once. In this case, don't set the signal handler to the
1208 default. Instead, just raise the uncatchable SIGSTOP. */
1209 if (stops)
1211 stop_signal_count = stops - 1;
1212 sig = SIGSTOP;
1214 else
1215 signal (sig, SIG_DFL);
1217 /* Exit or suspend the program. */
1218 raise (sig);
1219 sigprocmask (SIG_SETMASK, &oldset, NULL);
1221 /* If execution reaches here, then the program has been
1222 continued (after being suspended). */
1227 main (int argc, char **argv)
1229 int i;
1230 struct pending *thispend;
1231 int n_files;
1233 /* The signals that are trapped, and the number of such signals. */
1234 static int const sig[] =
1236 /* This one is handled specially. */
1237 SIGTSTP,
1239 /* The usual suspects. */
1240 SIGALRM, SIGHUP, SIGINT, SIGPIPE, SIGQUIT, SIGTERM,
1241 #ifdef SIGPOLL
1242 SIGPOLL,
1243 #endif
1244 #ifdef SIGPROF
1245 SIGPROF,
1246 #endif
1247 #ifdef SIGVTALRM
1248 SIGVTALRM,
1249 #endif
1250 #ifdef SIGXCPU
1251 SIGXCPU,
1252 #endif
1253 #ifdef SIGXFSZ
1254 SIGXFSZ,
1255 #endif
1257 enum { nsigs = ARRAY_CARDINALITY (sig) };
1259 #if ! SA_NOCLDSTOP
1260 bool caught_sig[nsigs];
1261 #endif
1263 initialize_main (&argc, &argv);
1264 set_program_name (argv[0]);
1265 setlocale (LC_ALL, "");
1266 bindtextdomain (PACKAGE, LOCALEDIR);
1267 textdomain (PACKAGE);
1269 initialize_exit_failure (LS_FAILURE);
1270 atexit (close_stdout);
1272 assert (ARRAY_CARDINALITY (color_indicator) + 1
1273 == ARRAY_CARDINALITY (indicator_name));
1275 exit_status = EXIT_SUCCESS;
1276 print_dir_name = true;
1277 pending_dirs = NULL;
1279 current_time.tv_sec = TYPE_MINIMUM (time_t);
1280 current_time.tv_nsec = -1;
1282 i = decode_switches (argc, argv);
1284 if (print_with_color)
1285 parse_ls_color ();
1287 /* Test print_with_color again, because the call to parse_ls_color
1288 may have just reset it -- e.g., if LS_COLORS is invalid. */
1289 if (print_with_color)
1291 /* Avoid following symbolic links when possible. */
1292 if (is_colored (C_ORPHAN)
1293 || (is_colored (C_EXEC) && color_symlink_as_referent)
1294 || (is_colored (C_MISSING) && format == long_format))
1295 check_symlink_color = true;
1297 /* If the standard output is a controlling terminal, watch out
1298 for signals, so that the colors can be restored to the
1299 default state if "ls" is suspended or interrupted. */
1301 if (0 <= tcgetpgrp (STDOUT_FILENO))
1303 int j;
1304 #if SA_NOCLDSTOP
1305 struct sigaction act;
1307 sigemptyset (&caught_signals);
1308 for (j = 0; j < nsigs; j++)
1310 sigaction (sig[j], NULL, &act);
1311 if (act.sa_handler != SIG_IGN)
1312 sigaddset (&caught_signals, sig[j]);
1315 act.sa_mask = caught_signals;
1316 act.sa_flags = SA_RESTART;
1318 for (j = 0; j < nsigs; j++)
1319 if (sigismember (&caught_signals, sig[j]))
1321 act.sa_handler = sig[j] == SIGTSTP ? stophandler : sighandler;
1322 sigaction (sig[j], &act, NULL);
1324 #else
1325 for (j = 0; j < nsigs; j++)
1327 caught_sig[j] = (signal (sig[j], SIG_IGN) != SIG_IGN);
1328 if (caught_sig[j])
1330 signal (sig[j], sig[j] == SIGTSTP ? stophandler : sighandler);
1331 siginterrupt (sig[j], 0);
1334 #endif
1338 if (dereference == DEREF_UNDEFINED)
1339 dereference = ((immediate_dirs
1340 || indicator_style == classify
1341 || format == long_format)
1342 ? DEREF_NEVER
1343 : DEREF_COMMAND_LINE_SYMLINK_TO_DIR);
1345 /* When using -R, initialize a data structure we'll use to
1346 detect any directory cycles. */
1347 if (recursive)
1349 active_dir_set = hash_initialize (INITIAL_TABLE_SIZE, NULL,
1350 dev_ino_hash,
1351 dev_ino_compare,
1352 dev_ino_free);
1353 if (active_dir_set == NULL)
1354 xalloc_die ();
1356 obstack_init (&dev_ino_obstack);
1359 format_needs_stat = sort_type == sort_time || sort_type == sort_size
1360 || format == long_format
1361 || print_scontext
1362 || print_block_size;
1363 format_needs_type = (! format_needs_stat
1364 && (recursive
1365 || print_with_color
1366 || indicator_style != none
1367 || directories_first));
1369 if (dired)
1371 obstack_init (&dired_obstack);
1372 obstack_init (&subdired_obstack);
1375 cwd_n_alloc = 100;
1376 cwd_file = xnmalloc (cwd_n_alloc, sizeof *cwd_file);
1377 cwd_n_used = 0;
1379 clear_files ();
1381 n_files = argc - i;
1383 if (n_files <= 0)
1385 if (immediate_dirs)
1386 gobble_file (".", directory, NOT_AN_INODE_NUMBER, true, "");
1387 else
1388 queue_directory (".", NULL, true);
1390 else
1392 gobble_file (argv[i++], unknown, NOT_AN_INODE_NUMBER, true, "");
1393 while (i < argc);
1395 if (cwd_n_used)
1397 sort_files ();
1398 if (!immediate_dirs)
1399 extract_dirs_from_files (NULL, true);
1400 /* `cwd_n_used' might be zero now. */
1403 /* In the following if/else blocks, it is sufficient to test `pending_dirs'
1404 (and not pending_dirs->name) because there may be no markers in the queue
1405 at this point. A marker may be enqueued when extract_dirs_from_files is
1406 called with a non-empty string or via print_dir. */
1407 if (cwd_n_used)
1409 print_current_files ();
1410 if (pending_dirs)
1411 DIRED_PUTCHAR ('\n');
1413 else if (n_files <= 1 && pending_dirs && pending_dirs->next == 0)
1414 print_dir_name = false;
1416 while (pending_dirs)
1418 thispend = pending_dirs;
1419 pending_dirs = pending_dirs->next;
1421 if (LOOP_DETECT)
1423 if (thispend->name == NULL)
1425 /* thispend->name == NULL means this is a marker entry
1426 indicating we've finished processing the directory.
1427 Use its dev/ino numbers to remove the corresponding
1428 entry from the active_dir_set hash table. */
1429 struct dev_ino di = dev_ino_pop ();
1430 struct dev_ino *found = hash_delete (active_dir_set, &di);
1431 /* ASSERT_MATCHING_DEV_INO (thispend->realname, di); */
1432 assert (found);
1433 dev_ino_free (found);
1434 free_pending_ent (thispend);
1435 continue;
1439 print_dir (thispend->name, thispend->realname,
1440 thispend->command_line_arg);
1442 free_pending_ent (thispend);
1443 print_dir_name = true;
1446 if (print_with_color)
1448 int j;
1450 if (used_color)
1452 /* Skip the restore when it would be a no-op, i.e.,
1453 when left is "\033[" and right is "m". */
1454 if (!(color_indicator[C_LEFT].len == 2
1455 && memcmp (color_indicator[C_LEFT].string, "\033[", 2) == 0
1456 && color_indicator[C_RIGHT].len == 1
1457 && color_indicator[C_RIGHT].string[0] == 'm'))
1458 restore_default_color ();
1460 fflush (stdout);
1462 /* Restore the default signal handling. */
1463 #if SA_NOCLDSTOP
1464 for (j = 0; j < nsigs; j++)
1465 if (sigismember (&caught_signals, sig[j]))
1466 signal (sig[j], SIG_DFL);
1467 #else
1468 for (j = 0; j < nsigs; j++)
1469 if (caught_sig[j])
1470 signal (sig[j], SIG_DFL);
1471 #endif
1473 /* Act on any signals that arrived before the default was restored.
1474 This can process signals out of order, but there doesn't seem to
1475 be an easy way to do them in order, and the order isn't that
1476 important anyway. */
1477 for (j = stop_signal_count; j; j--)
1478 raise (SIGSTOP);
1479 j = interrupt_signal;
1480 if (j)
1481 raise (j);
1484 if (dired)
1486 /* No need to free these since we're about to exit. */
1487 dired_dump_obstack ("//DIRED//", &dired_obstack);
1488 dired_dump_obstack ("//SUBDIRED//", &subdired_obstack);
1489 printf ("//DIRED-OPTIONS// --quoting-style=%s\n",
1490 quoting_style_args[get_quoting_style (filename_quoting_options)]);
1493 if (LOOP_DETECT)
1495 assert (hash_get_n_entries (active_dir_set) == 0);
1496 hash_free (active_dir_set);
1499 exit (exit_status);
1502 /* Set all the option flags according to the switches specified.
1503 Return the index of the first non-option argument. */
1505 static int
1506 decode_switches (int argc, char **argv)
1508 char *time_style_option = NULL;
1510 /* Record whether there is an option specifying sort type. */
1511 bool sort_type_specified = false;
1513 qmark_funny_chars = false;
1515 /* initialize all switches to default settings */
1517 switch (ls_mode)
1519 case LS_MULTI_COL:
1520 /* This is for the `dir' program. */
1521 format = many_per_line;
1522 set_quoting_style (NULL, escape_quoting_style);
1523 break;
1525 case LS_LONG_FORMAT:
1526 /* This is for the `vdir' program. */
1527 format = long_format;
1528 set_quoting_style (NULL, escape_quoting_style);
1529 break;
1531 case LS_LS:
1532 /* This is for the `ls' program. */
1533 if (isatty (STDOUT_FILENO))
1535 format = many_per_line;
1536 /* See description of qmark_funny_chars, above. */
1537 qmark_funny_chars = true;
1539 else
1541 format = one_per_line;
1542 qmark_funny_chars = false;
1544 break;
1546 default:
1547 abort ();
1550 time_type = time_mtime;
1551 sort_type = sort_name;
1552 sort_reverse = false;
1553 numeric_ids = false;
1554 print_block_size = false;
1555 indicator_style = none;
1556 print_inode = false;
1557 dereference = DEREF_UNDEFINED;
1558 recursive = false;
1559 immediate_dirs = false;
1560 ignore_mode = IGNORE_DEFAULT;
1561 ignore_patterns = NULL;
1562 hide_patterns = NULL;
1563 print_scontext = false;
1565 /* FIXME: put this in a function. */
1567 char const *q_style = getenv ("QUOTING_STYLE");
1568 if (q_style)
1570 int i = ARGMATCH (q_style, quoting_style_args, quoting_style_vals);
1571 if (0 <= i)
1572 set_quoting_style (NULL, quoting_style_vals[i]);
1573 else
1574 error (0, 0,
1575 _("ignoring invalid value of environment variable QUOTING_STYLE: %s"),
1576 quotearg (q_style));
1581 char const *ls_block_size = getenv ("LS_BLOCK_SIZE");
1582 human_options (ls_block_size,
1583 &human_output_opts, &output_block_size);
1584 if (ls_block_size || getenv ("BLOCK_SIZE"))
1585 file_output_block_size = output_block_size;
1588 line_length = 80;
1590 char const *p = getenv ("COLUMNS");
1591 if (p && *p)
1593 unsigned long int tmp_ulong;
1594 if (xstrtoul (p, NULL, 0, &tmp_ulong, NULL) == LONGINT_OK
1595 && 0 < tmp_ulong && tmp_ulong <= SIZE_MAX)
1597 line_length = tmp_ulong;
1599 else
1601 error (0, 0,
1602 _("ignoring invalid width in environment variable COLUMNS: %s"),
1603 quotearg (p));
1608 #ifdef TIOCGWINSZ
1610 struct winsize ws;
1612 if (ioctl (STDOUT_FILENO, TIOCGWINSZ, &ws) != -1
1613 && 0 < ws.ws_col && ws.ws_col == (size_t) ws.ws_col)
1614 line_length = ws.ws_col;
1616 #endif
1619 char const *p = getenv ("TABSIZE");
1620 tabsize = 8;
1621 if (p)
1623 unsigned long int tmp_ulong;
1624 if (xstrtoul (p, NULL, 0, &tmp_ulong, NULL) == LONGINT_OK
1625 && tmp_ulong <= SIZE_MAX)
1627 tabsize = tmp_ulong;
1629 else
1631 error (0, 0,
1632 _("ignoring invalid tab size in environment variable TABSIZE: %s"),
1633 quotearg (p));
1638 while (true)
1640 int oi = -1;
1641 int c = getopt_long (argc, argv,
1642 "abcdfghiklmnopqrstuvw:xABCDFGHI:LNQRST:UXZ1",
1643 long_options, &oi);
1644 if (c == -1)
1645 break;
1647 switch (c)
1649 case 'a':
1650 ignore_mode = IGNORE_MINIMAL;
1651 break;
1653 case 'b':
1654 set_quoting_style (NULL, escape_quoting_style);
1655 break;
1657 case 'c':
1658 time_type = time_ctime;
1659 break;
1661 case 'd':
1662 immediate_dirs = true;
1663 break;
1665 case 'f':
1666 /* Same as enabling -a -U and disabling -l -s. */
1667 ignore_mode = IGNORE_MINIMAL;
1668 sort_type = sort_none;
1669 sort_type_specified = true;
1670 /* disable -l */
1671 if (format == long_format)
1672 format = (isatty (STDOUT_FILENO) ? many_per_line : one_per_line);
1673 print_block_size = false; /* disable -s */
1674 print_with_color = false; /* disable --color */
1675 break;
1677 case FILE_TYPE_INDICATOR_OPTION: /* --file-type */
1678 indicator_style = file_type;
1679 break;
1681 case 'g':
1682 format = long_format;
1683 print_owner = false;
1684 break;
1686 case 'h':
1687 human_output_opts = human_autoscale | human_SI | human_base_1024;
1688 file_output_block_size = output_block_size = 1;
1689 break;
1691 case 'i':
1692 print_inode = true;
1693 break;
1695 case 'k':
1696 human_output_opts = 0;
1697 file_output_block_size = output_block_size = 1024;
1698 break;
1700 case 'l':
1701 format = long_format;
1702 break;
1704 case 'm':
1705 format = with_commas;
1706 break;
1708 case 'n':
1709 numeric_ids = true;
1710 format = long_format;
1711 break;
1713 case 'o': /* Just like -l, but don't display group info. */
1714 format = long_format;
1715 print_group = false;
1716 break;
1718 case 'p':
1719 indicator_style = slash;
1720 break;
1722 case 'q':
1723 qmark_funny_chars = true;
1724 break;
1726 case 'r':
1727 sort_reverse = true;
1728 break;
1730 case 's':
1731 print_block_size = true;
1732 break;
1734 case 't':
1735 sort_type = sort_time;
1736 sort_type_specified = true;
1737 break;
1739 case 'u':
1740 time_type = time_atime;
1741 break;
1743 case 'v':
1744 sort_type = sort_version;
1745 sort_type_specified = true;
1746 break;
1748 case 'w':
1750 unsigned long int tmp_ulong;
1751 if (xstrtoul (optarg, NULL, 0, &tmp_ulong, NULL) != LONGINT_OK
1752 || ! (0 < tmp_ulong && tmp_ulong <= SIZE_MAX))
1753 error (LS_FAILURE, 0, _("invalid line width: %s"),
1754 quotearg (optarg));
1755 line_length = tmp_ulong;
1756 break;
1759 case 'x':
1760 format = horizontal;
1761 break;
1763 case 'A':
1764 if (ignore_mode == IGNORE_DEFAULT)
1765 ignore_mode = IGNORE_DOT_AND_DOTDOT;
1766 break;
1768 case 'B':
1769 add_ignore_pattern ("*~");
1770 add_ignore_pattern (".*~");
1771 break;
1773 case 'C':
1774 format = many_per_line;
1775 break;
1777 case 'D':
1778 dired = true;
1779 break;
1781 case 'F':
1782 indicator_style = classify;
1783 break;
1785 case 'G': /* inhibit display of group info */
1786 print_group = false;
1787 break;
1789 case 'H':
1790 dereference = DEREF_COMMAND_LINE_ARGUMENTS;
1791 break;
1793 case DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION:
1794 dereference = DEREF_COMMAND_LINE_SYMLINK_TO_DIR;
1795 break;
1797 case 'I':
1798 add_ignore_pattern (optarg);
1799 break;
1801 case 'L':
1802 dereference = DEREF_ALWAYS;
1803 break;
1805 case 'N':
1806 set_quoting_style (NULL, literal_quoting_style);
1807 break;
1809 case 'Q':
1810 set_quoting_style (NULL, c_quoting_style);
1811 break;
1813 case 'R':
1814 recursive = true;
1815 break;
1817 case 'S':
1818 sort_type = sort_size;
1819 sort_type_specified = true;
1820 break;
1822 case 'T':
1824 unsigned long int tmp_ulong;
1825 if (xstrtoul (optarg, NULL, 0, &tmp_ulong, NULL) != LONGINT_OK
1826 || SIZE_MAX < tmp_ulong)
1827 error (LS_FAILURE, 0, _("invalid tab size: %s"),
1828 quotearg (optarg));
1829 tabsize = tmp_ulong;
1830 break;
1833 case 'U':
1834 sort_type = sort_none;
1835 sort_type_specified = true;
1836 break;
1838 case 'X':
1839 sort_type = sort_extension;
1840 sort_type_specified = true;
1841 break;
1843 case '1':
1844 /* -1 has no effect after -l. */
1845 if (format != long_format)
1846 format = one_per_line;
1847 break;
1849 case AUTHOR_OPTION:
1850 print_author = true;
1851 break;
1853 case HIDE_OPTION:
1855 struct ignore_pattern *hide = xmalloc (sizeof *hide);
1856 hide->pattern = optarg;
1857 hide->next = hide_patterns;
1858 hide_patterns = hide;
1860 break;
1862 case SORT_OPTION:
1863 sort_type = XARGMATCH ("--sort", optarg, sort_args, sort_types);
1864 sort_type_specified = true;
1865 break;
1867 case GROUP_DIRECTORIES_FIRST_OPTION:
1868 directories_first = true;
1869 break;
1871 case TIME_OPTION:
1872 time_type = XARGMATCH ("--time", optarg, time_args, time_types);
1873 break;
1875 case FORMAT_OPTION:
1876 format = XARGMATCH ("--format", optarg, format_args, format_types);
1877 break;
1879 case FULL_TIME_OPTION:
1880 format = long_format;
1881 time_style_option = bad_cast ("full-iso");
1882 break;
1884 case COLOR_OPTION:
1886 int i;
1887 if (optarg)
1888 i = XARGMATCH ("--color", optarg, color_args, color_types);
1889 else
1890 /* Using --color with no argument is equivalent to using
1891 --color=always. */
1892 i = color_always;
1894 print_with_color = (i == color_always
1895 || (i == color_if_tty
1896 && isatty (STDOUT_FILENO)));
1898 if (print_with_color)
1900 /* Don't use TAB characters in output. Some terminal
1901 emulators can't handle the combination of tabs and
1902 color codes on the same line. */
1903 tabsize = 0;
1905 break;
1908 case INDICATOR_STYLE_OPTION:
1909 indicator_style = XARGMATCH ("--indicator-style", optarg,
1910 indicator_style_args,
1911 indicator_style_types);
1912 break;
1914 case QUOTING_STYLE_OPTION:
1915 set_quoting_style (NULL,
1916 XARGMATCH ("--quoting-style", optarg,
1917 quoting_style_args,
1918 quoting_style_vals));
1919 break;
1921 case TIME_STYLE_OPTION:
1922 time_style_option = optarg;
1923 break;
1925 case SHOW_CONTROL_CHARS_OPTION:
1926 qmark_funny_chars = false;
1927 break;
1929 case BLOCK_SIZE_OPTION:
1931 enum strtol_error e = human_options (optarg, &human_output_opts,
1932 &output_block_size);
1933 if (e != LONGINT_OK)
1934 xstrtol_fatal (e, oi, 0, long_options, optarg);
1935 file_output_block_size = output_block_size;
1937 break;
1939 case SI_OPTION:
1940 human_output_opts = human_autoscale | human_SI;
1941 file_output_block_size = output_block_size = 1;
1942 break;
1944 case 'Z':
1945 print_scontext = true;
1946 break;
1948 case_GETOPT_HELP_CHAR;
1950 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
1952 default:
1953 usage (LS_FAILURE);
1957 max_idx = MAX (1, line_length / MIN_COLUMN_WIDTH);
1959 filename_quoting_options = clone_quoting_options (NULL);
1960 if (get_quoting_style (filename_quoting_options) == escape_quoting_style)
1961 set_char_quoting (filename_quoting_options, ' ', 1);
1962 if (file_type <= indicator_style)
1964 char const *p;
1965 for (p = "*=>@|" + indicator_style - file_type; *p; p++)
1966 set_char_quoting (filename_quoting_options, *p, 1);
1969 dirname_quoting_options = clone_quoting_options (NULL);
1970 set_char_quoting (dirname_quoting_options, ':', 1);
1972 /* --dired is meaningful only with --format=long (-l).
1973 Otherwise, ignore it. FIXME: warn about this?
1974 Alternatively, make --dired imply --format=long? */
1975 if (dired && format != long_format)
1976 dired = false;
1978 /* If -c or -u is specified and not -l (or any other option that implies -l),
1979 and no sort-type was specified, then sort by the ctime (-c) or atime (-u).
1980 The behavior of ls when using either -c or -u but with neither -l nor -t
1981 appears to be unspecified by POSIX. So, with GNU ls, `-u' alone means
1982 sort by atime (this is the one that's not specified by the POSIX spec),
1983 -lu means show atime and sort by name, -lut means show atime and sort
1984 by atime. */
1986 if ((time_type == time_ctime || time_type == time_atime)
1987 && !sort_type_specified && format != long_format)
1989 sort_type = sort_time;
1992 if (format == long_format)
1994 char *style = time_style_option;
1995 static char const posix_prefix[] = "posix-";
1997 if (! style)
1998 if (! (style = getenv ("TIME_STYLE")))
1999 style = bad_cast ("locale");
2001 while (strncmp (style, posix_prefix, sizeof posix_prefix - 1) == 0)
2003 if (! hard_locale (LC_TIME))
2004 return optind;
2005 style += sizeof posix_prefix - 1;
2008 if (*style == '+')
2010 char *p0 = style + 1;
2011 char *p1 = strchr (p0, '\n');
2012 if (! p1)
2013 p1 = p0;
2014 else
2016 if (strchr (p1 + 1, '\n'))
2017 error (LS_FAILURE, 0, _("invalid time style format %s"),
2018 quote (p0));
2019 *p1++ = '\0';
2021 long_time_format[0] = p0;
2022 long_time_format[1] = p1;
2024 else
2025 switch (XARGMATCH ("time style", style,
2026 time_style_args,
2027 time_style_types))
2029 case full_iso_time_style:
2030 long_time_format[0] = long_time_format[1] =
2031 "%Y-%m-%d %H:%M:%S.%N %z";
2032 break;
2034 case long_iso_time_style:
2035 case_long_iso_time_style:
2036 long_time_format[0] = long_time_format[1] = "%Y-%m-%d %H:%M";
2037 break;
2039 case iso_time_style:
2040 long_time_format[0] = "%Y-%m-%d ";
2041 long_time_format[1] = "%m-%d %H:%M";
2042 break;
2044 case locale_time_style:
2045 if (hard_locale (LC_TIME))
2047 /* Ensure that the locale has translations for both
2048 formats. If not, fall back on long-iso format. */
2049 int i;
2050 for (i = 0; i < 2; i++)
2052 char const *locale_format =
2053 dcgettext (NULL, long_time_format[i], LC_TIME);
2054 if (locale_format == long_time_format[i])
2055 goto case_long_iso_time_style;
2056 long_time_format[i] = locale_format;
2060 /* Note we leave %5b etc. alone so user widths/flags are honored. */
2061 if (strstr (long_time_format[0],"%b") || strstr (long_time_format[1],"%b"))
2062 if (!abmon_init ())
2063 error (0, 0, _("error initializing month strings"));
2066 return optind;
2069 /* Parse a string as part of the LS_COLORS variable; this may involve
2070 decoding all kinds of escape characters. If equals_end is set an
2071 unescaped equal sign ends the string, otherwise only a : or \0
2072 does. Set *OUTPUT_COUNT to the number of bytes output. Return
2073 true if successful.
2075 The resulting string is *not* null-terminated, but may contain
2076 embedded nulls.
2078 Note that both dest and src are char **; on return they point to
2079 the first free byte after the array and the character that ended
2080 the input string, respectively. */
2082 static bool
2083 get_funky_string (char **dest, const char **src, bool equals_end,
2084 size_t *output_count)
2086 char num; /* For numerical codes */
2087 size_t count; /* Something to count with */
2088 enum {
2089 ST_GND, ST_BACKSLASH, ST_OCTAL, ST_HEX, ST_CARET, ST_END, ST_ERROR
2090 } state;
2091 const char *p;
2092 char *q;
2094 p = *src; /* We don't want to double-indirect */
2095 q = *dest; /* the whole darn time. */
2097 count = 0; /* No characters counted in yet. */
2098 num = 0;
2100 state = ST_GND; /* Start in ground state. */
2101 while (state < ST_END)
2103 switch (state)
2105 case ST_GND: /* Ground state (no escapes) */
2106 switch (*p)
2108 case ':':
2109 case '\0':
2110 state = ST_END; /* End of string */
2111 break;
2112 case '\\':
2113 state = ST_BACKSLASH; /* Backslash scape sequence */
2114 ++p;
2115 break;
2116 case '^':
2117 state = ST_CARET; /* Caret escape */
2118 ++p;
2119 break;
2120 case '=':
2121 if (equals_end)
2123 state = ST_END; /* End */
2124 break;
2126 /* else fall through */
2127 default:
2128 *(q++) = *(p++);
2129 ++count;
2130 break;
2132 break;
2134 case ST_BACKSLASH: /* Backslash escaped character */
2135 switch (*p)
2137 case '0':
2138 case '1':
2139 case '2':
2140 case '3':
2141 case '4':
2142 case '5':
2143 case '6':
2144 case '7':
2145 state = ST_OCTAL; /* Octal sequence */
2146 num = *p - '0';
2147 break;
2148 case 'x':
2149 case 'X':
2150 state = ST_HEX; /* Hex sequence */
2151 num = 0;
2152 break;
2153 case 'a': /* Bell */
2154 num = '\a';
2155 break;
2156 case 'b': /* Backspace */
2157 num = '\b';
2158 break;
2159 case 'e': /* Escape */
2160 num = 27;
2161 break;
2162 case 'f': /* Form feed */
2163 num = '\f';
2164 break;
2165 case 'n': /* Newline */
2166 num = '\n';
2167 break;
2168 case 'r': /* Carriage return */
2169 num = '\r';
2170 break;
2171 case 't': /* Tab */
2172 num = '\t';
2173 break;
2174 case 'v': /* Vtab */
2175 num = '\v';
2176 break;
2177 case '?': /* Delete */
2178 num = 127;
2179 break;
2180 case '_': /* Space */
2181 num = ' ';
2182 break;
2183 case '\0': /* End of string */
2184 state = ST_ERROR; /* Error! */
2185 break;
2186 default: /* Escaped character like \ ^ : = */
2187 num = *p;
2188 break;
2190 if (state == ST_BACKSLASH)
2192 *(q++) = num;
2193 ++count;
2194 state = ST_GND;
2196 ++p;
2197 break;
2199 case ST_OCTAL: /* Octal sequence */
2200 if (*p < '0' || *p > '7')
2202 *(q++) = num;
2203 ++count;
2204 state = ST_GND;
2206 else
2207 num = (num << 3) + (*(p++) - '0');
2208 break;
2210 case ST_HEX: /* Hex sequence */
2211 switch (*p)
2213 case '0':
2214 case '1':
2215 case '2':
2216 case '3':
2217 case '4':
2218 case '5':
2219 case '6':
2220 case '7':
2221 case '8':
2222 case '9':
2223 num = (num << 4) + (*(p++) - '0');
2224 break;
2225 case 'a':
2226 case 'b':
2227 case 'c':
2228 case 'd':
2229 case 'e':
2230 case 'f':
2231 num = (num << 4) + (*(p++) - 'a') + 10;
2232 break;
2233 case 'A':
2234 case 'B':
2235 case 'C':
2236 case 'D':
2237 case 'E':
2238 case 'F':
2239 num = (num << 4) + (*(p++) - 'A') + 10;
2240 break;
2241 default:
2242 *(q++) = num;
2243 ++count;
2244 state = ST_GND;
2245 break;
2247 break;
2249 case ST_CARET: /* Caret escape */
2250 state = ST_GND; /* Should be the next state... */
2251 if (*p >= '@' && *p <= '~')
2253 *(q++) = *(p++) & 037;
2254 ++count;
2256 else if (*p == '?')
2258 *(q++) = 127;
2259 ++count;
2261 else
2262 state = ST_ERROR;
2263 break;
2265 default:
2266 abort ();
2270 *dest = q;
2271 *src = p;
2272 *output_count = count;
2274 return state != ST_ERROR;
2277 static void
2278 parse_ls_color (void)
2280 const char *p; /* Pointer to character being parsed */
2281 char *buf; /* color_buf buffer pointer */
2282 int state; /* State of parser */
2283 int ind_no; /* Indicator number */
2284 char label[3]; /* Indicator label */
2285 struct color_ext_type *ext; /* Extension we are working on */
2287 if ((p = getenv ("LS_COLORS")) == NULL || *p == '\0')
2288 return;
2290 ext = NULL;
2291 strcpy (label, "??");
2293 /* This is an overly conservative estimate, but any possible
2294 LS_COLORS string will *not* generate a color_buf longer than
2295 itself, so it is a safe way of allocating a buffer in
2296 advance. */
2297 buf = color_buf = xstrdup (p);
2299 state = 1;
2300 while (state > 0)
2302 switch (state)
2304 case 1: /* First label character */
2305 switch (*p)
2307 case ':':
2308 ++p;
2309 break;
2311 case '*':
2312 /* Allocate new extension block and add to head of
2313 linked list (this way a later definition will
2314 override an earlier one, which can be useful for
2315 having terminal-specific defs override global). */
2317 ext = xmalloc (sizeof *ext);
2318 ext->next = color_ext_list;
2319 color_ext_list = ext;
2321 ++p;
2322 ext->ext.string = buf;
2324 state = (get_funky_string (&buf, &p, true, &ext->ext.len)
2325 ? 4 : -1);
2326 break;
2328 case '\0':
2329 state = 0; /* Done! */
2330 break;
2332 default: /* Assume it is file type label */
2333 label[0] = *(p++);
2334 state = 2;
2335 break;
2337 break;
2339 case 2: /* Second label character */
2340 if (*p)
2342 label[1] = *(p++);
2343 state = 3;
2345 else
2346 state = -1; /* Error */
2347 break;
2349 case 3: /* Equal sign after indicator label */
2350 state = -1; /* Assume failure... */
2351 if (*(p++) == '=')/* It *should* be... */
2353 for (ind_no = 0; indicator_name[ind_no] != NULL; ++ind_no)
2355 if (STREQ (label, indicator_name[ind_no]))
2357 color_indicator[ind_no].string = buf;
2358 state = (get_funky_string (&buf, &p, false,
2359 &color_indicator[ind_no].len)
2360 ? 1 : -1);
2361 break;
2364 if (state == -1)
2365 error (0, 0, _("unrecognized prefix: %s"), quotearg (label));
2367 break;
2369 case 4: /* Equal sign after *.ext */
2370 if (*(p++) == '=')
2372 ext->seq.string = buf;
2373 state = (get_funky_string (&buf, &p, false, &ext->seq.len)
2374 ? 1 : -1);
2376 else
2377 state = -1;
2378 break;
2382 if (state < 0)
2384 struct color_ext_type *e;
2385 struct color_ext_type *e2;
2387 error (0, 0,
2388 _("unparsable value for LS_COLORS environment variable"));
2389 free (color_buf);
2390 for (e = color_ext_list; e != NULL; /* empty */)
2392 e2 = e;
2393 e = e->next;
2394 free (e2);
2396 print_with_color = false;
2399 if (color_indicator[C_LINK].len == 6
2400 && !strncmp (color_indicator[C_LINK].string, "target", 6))
2401 color_symlink_as_referent = true;
2404 /* Set the exit status to report a failure. If SERIOUS, it is a
2405 serious failure; otherwise, it is merely a minor problem. */
2407 static void
2408 set_exit_status (bool serious)
2410 if (serious)
2411 exit_status = LS_FAILURE;
2412 else if (exit_status == EXIT_SUCCESS)
2413 exit_status = LS_MINOR_PROBLEM;
2416 /* Assuming a failure is serious if SERIOUS, use the printf-style
2417 MESSAGE to report the failure to access a file named FILE. Assume
2418 errno is set appropriately for the failure. */
2420 static void
2421 file_failure (bool serious, char const *message, char const *file)
2423 error (0, errno, message, quotearg_colon (file));
2424 set_exit_status (serious);
2427 /* Request that the directory named NAME have its contents listed later.
2428 If REALNAME is nonzero, it will be used instead of NAME when the
2429 directory name is printed. This allows symbolic links to directories
2430 to be treated as regular directories but still be listed under their
2431 real names. NAME == NULL is used to insert a marker entry for the
2432 directory named in REALNAME.
2433 If NAME is non-NULL, we use its dev/ino information to save
2434 a call to stat -- when doing a recursive (-R) traversal.
2435 COMMAND_LINE_ARG means this directory was mentioned on the command line. */
2437 static void
2438 queue_directory (char const *name, char const *realname, bool command_line_arg)
2440 struct pending *new = xmalloc (sizeof *new);
2441 new->realname = realname ? xstrdup (realname) : NULL;
2442 new->name = name ? xstrdup (name) : NULL;
2443 new->command_line_arg = command_line_arg;
2444 new->next = pending_dirs;
2445 pending_dirs = new;
2448 /* Read directory NAME, and list the files in it.
2449 If REALNAME is nonzero, print its name instead of NAME;
2450 this is used for symbolic links to directories.
2451 COMMAND_LINE_ARG means this directory was mentioned on the command line. */
2453 static void
2454 print_dir (char const *name, char const *realname, bool command_line_arg)
2456 DIR *dirp;
2457 struct dirent *next;
2458 uintmax_t total_blocks = 0;
2459 static bool first = true;
2461 errno = 0;
2462 dirp = opendir (name);
2463 if (!dirp)
2465 file_failure (command_line_arg, _("cannot open directory %s"), name);
2466 return;
2469 if (LOOP_DETECT)
2471 struct stat dir_stat;
2472 int fd = dirfd (dirp);
2474 /* If dirfd failed, endure the overhead of using stat. */
2475 if ((0 <= fd
2476 ? fstat (fd, &dir_stat)
2477 : stat (name, &dir_stat)) < 0)
2479 file_failure (command_line_arg,
2480 _("cannot determine device and inode of %s"), name);
2481 closedir (dirp);
2482 return;
2485 /* If we've already visited this dev/inode pair, warn that
2486 we've found a loop, and do not process this directory. */
2487 if (visit_dir (dir_stat.st_dev, dir_stat.st_ino))
2489 error (0, 0, _("%s: not listing already-listed directory"),
2490 quotearg_colon (name));
2491 closedir (dirp);
2492 set_exit_status (true);
2493 return;
2496 DEV_INO_PUSH (dir_stat.st_dev, dir_stat.st_ino);
2499 if (recursive || print_dir_name)
2501 if (!first)
2502 DIRED_PUTCHAR ('\n');
2503 first = false;
2504 DIRED_INDENT ();
2505 PUSH_CURRENT_DIRED_POS (&subdired_obstack);
2506 dired_pos += quote_name (stdout, realname ? realname : name,
2507 dirname_quoting_options, NULL);
2508 PUSH_CURRENT_DIRED_POS (&subdired_obstack);
2509 DIRED_FPUTS_LITERAL (":\n", stdout);
2512 /* Read the directory entries, and insert the subfiles into the `cwd_file'
2513 table. */
2515 clear_files ();
2517 while (1)
2519 /* Set errno to zero so we can distinguish between a readdir failure
2520 and when readdir simply finds that there are no more entries. */
2521 errno = 0;
2522 next = readdir (dirp);
2523 if (next)
2525 if (! file_ignored (next->d_name))
2527 enum filetype type = unknown;
2529 #if HAVE_STRUCT_DIRENT_D_TYPE
2530 switch (next->d_type)
2532 case DT_BLK: type = blockdev; break;
2533 case DT_CHR: type = chardev; break;
2534 case DT_DIR: type = directory; break;
2535 case DT_FIFO: type = fifo; break;
2536 case DT_LNK: type = symbolic_link; break;
2537 case DT_REG: type = normal; break;
2538 case DT_SOCK: type = sock; break;
2539 # ifdef DT_WHT
2540 case DT_WHT: type = whiteout; break;
2541 # endif
2543 #endif
2544 total_blocks += gobble_file (next->d_name, type,
2545 RELIABLE_D_INO (next),
2546 false, name);
2548 /* In this narrow case, print out each name right away, so
2549 ls uses constant memory while processing the entries of
2550 this directory. Useful when there are many (millions)
2551 of entries in a directory. */
2552 if (format == one_per_line && sort_type == sort_none
2553 && !print_block_size && !recursive)
2555 /* We must call sort_files in spite of
2556 "sort_type == sort_none" for its initialization
2557 of the sorted_file vector. */
2558 sort_files ();
2559 print_current_files ();
2560 clear_files ();
2564 else if (errno != 0)
2566 file_failure (command_line_arg, _("reading directory %s"), name);
2567 if (errno != EOVERFLOW)
2568 break;
2570 else
2571 break;
2574 if (closedir (dirp) != 0)
2576 file_failure (command_line_arg, _("closing directory %s"), name);
2577 /* Don't return; print whatever we got. */
2580 /* Sort the directory contents. */
2581 sort_files ();
2583 /* If any member files are subdirectories, perhaps they should have their
2584 contents listed rather than being mentioned here as files. */
2586 if (recursive)
2587 extract_dirs_from_files (name, command_line_arg);
2589 if (format == long_format || print_block_size)
2591 const char *p;
2592 char buf[LONGEST_HUMAN_READABLE + 1];
2594 DIRED_INDENT ();
2595 p = _("total");
2596 DIRED_FPUTS (p, stdout, strlen (p));
2597 DIRED_PUTCHAR (' ');
2598 p = human_readable (total_blocks, buf, human_output_opts,
2599 ST_NBLOCKSIZE, output_block_size);
2600 DIRED_FPUTS (p, stdout, strlen (p));
2601 DIRED_PUTCHAR ('\n');
2604 if (cwd_n_used)
2605 print_current_files ();
2608 /* Add `pattern' to the list of patterns for which files that match are
2609 not listed. */
2611 static void
2612 add_ignore_pattern (const char *pattern)
2614 struct ignore_pattern *ignore;
2616 ignore = xmalloc (sizeof *ignore);
2617 ignore->pattern = pattern;
2618 /* Add it to the head of the linked list. */
2619 ignore->next = ignore_patterns;
2620 ignore_patterns = ignore;
2623 /* Return true if one of the PATTERNS matches FILE. */
2625 static bool
2626 patterns_match (struct ignore_pattern const *patterns, char const *file)
2628 struct ignore_pattern const *p;
2629 for (p = patterns; p; p = p->next)
2630 if (fnmatch (p->pattern, file, FNM_PERIOD) == 0)
2631 return true;
2632 return false;
2635 /* Return true if FILE should be ignored. */
2637 static bool
2638 file_ignored (char const *name)
2640 return ((ignore_mode != IGNORE_MINIMAL
2641 && name[0] == '.'
2642 && (ignore_mode == IGNORE_DEFAULT || ! name[1 + (name[1] == '.')]))
2643 || (ignore_mode == IGNORE_DEFAULT
2644 && patterns_match (hide_patterns, name))
2645 || patterns_match (ignore_patterns, name));
2648 /* POSIX requires that a file size be printed without a sign, even
2649 when negative. Assume the typical case where negative sizes are
2650 actually positive values that have wrapped around. */
2652 static uintmax_t
2653 unsigned_file_size (off_t size)
2655 return size + (size < 0) * ((uintmax_t) OFF_T_MAX - OFF_T_MIN + 1);
2658 #ifdef HAVE_CAP
2659 /* Return true if NAME has a capability (see linux/capability.h) */
2660 static bool
2661 has_capability (char const *name)
2663 char *result;
2664 bool has_cap;
2666 cap_t cap_d = cap_get_file (name);
2667 if (cap_d == NULL)
2668 return false;
2670 result = cap_to_text (cap_d, NULL);
2671 cap_free (cap_d);
2672 if (!result)
2673 return false;
2675 /* check if human-readable capability string is empty */
2676 has_cap = !!*result;
2678 cap_free (result);
2679 return has_cap;
2681 #else
2682 static bool
2683 has_capability (char const *name ATTRIBUTE_UNUSED)
2685 return false;
2687 #endif
2689 /* Enter and remove entries in the table `cwd_file'. */
2691 /* Empty the table of files. */
2693 static void
2694 clear_files (void)
2696 size_t i;
2698 for (i = 0; i < cwd_n_used; i++)
2700 struct fileinfo *f = sorted_file[i];
2701 free (f->name);
2702 free (f->linkname);
2703 if (f->scontext != UNKNOWN_SECURITY_CONTEXT)
2704 freecon (f->scontext);
2707 cwd_n_used = 0;
2708 any_has_acl = false;
2709 inode_number_width = 0;
2710 block_size_width = 0;
2711 nlink_width = 0;
2712 owner_width = 0;
2713 group_width = 0;
2714 author_width = 0;
2715 scontext_width = 0;
2716 major_device_number_width = 0;
2717 minor_device_number_width = 0;
2718 file_size_width = 0;
2721 /* Add a file to the current table of files.
2722 Verify that the file exists, and print an error message if it does not.
2723 Return the number of blocks that the file occupies. */
2725 static uintmax_t
2726 gobble_file (char const *name, enum filetype type, ino_t inode,
2727 bool command_line_arg, char const *dirname)
2729 uintmax_t blocks = 0;
2730 struct fileinfo *f;
2732 /* An inode value prior to gobble_file necessarily came from readdir,
2733 which is not used for command line arguments. */
2734 assert (! command_line_arg || inode == NOT_AN_INODE_NUMBER);
2736 if (cwd_n_used == cwd_n_alloc)
2738 cwd_file = xnrealloc (cwd_file, cwd_n_alloc, 2 * sizeof *cwd_file);
2739 cwd_n_alloc *= 2;
2742 f = &cwd_file[cwd_n_used];
2743 memset (f, '\0', sizeof *f);
2744 f->stat.st_ino = inode;
2745 f->filetype = type;
2747 if (command_line_arg
2748 || format_needs_stat
2749 /* When coloring a directory (we may know the type from
2750 direct.d_type), we have to stat it in order to indicate
2751 sticky and/or other-writable attributes. */
2752 || (type == directory && print_with_color)
2753 /* When dereferencing symlinks, the inode and type must come from
2754 stat, but readdir provides the inode and type of lstat. */
2755 || ((print_inode || format_needs_type)
2756 && (type == symbolic_link || type == unknown)
2757 && (dereference == DEREF_ALWAYS
2758 || (command_line_arg && dereference != DEREF_NEVER)
2759 || color_symlink_as_referent || check_symlink_color))
2760 /* Command line dereferences are already taken care of by the above
2761 assertion that the inode number is not yet known. */
2762 || (print_inode && inode == NOT_AN_INODE_NUMBER)
2763 || (format_needs_type
2764 && (type == unknown || command_line_arg
2765 /* --indicator-style=classify (aka -F)
2766 requires that we stat each regular file
2767 to see if it's executable. */
2768 || (type == normal && (indicator_style == classify
2769 /* This is so that --color ends up
2770 highlighting files with these mode
2771 bits set even when options like -F are
2772 not specified. Note we do a redundant
2773 stat in the very unlikely case where
2774 C_CAP is set but not the others. */
2775 || (print_with_color
2776 && (is_colored (C_EXEC)
2777 || is_colored (C_SETUID)
2778 || is_colored (C_SETGID)
2779 || is_colored (C_CAP)))
2780 )))))
2783 /* Absolute name of this file. */
2784 char *absolute_name;
2785 bool do_deref;
2786 int err;
2788 if (name[0] == '/' || dirname[0] == 0)
2789 absolute_name = (char *) name;
2790 else
2792 absolute_name = alloca (strlen (name) + strlen (dirname) + 2);
2793 attach (absolute_name, dirname, name);
2796 switch (dereference)
2798 case DEREF_ALWAYS:
2799 err = stat (absolute_name, &f->stat);
2800 do_deref = true;
2801 break;
2803 case DEREF_COMMAND_LINE_ARGUMENTS:
2804 case DEREF_COMMAND_LINE_SYMLINK_TO_DIR:
2805 if (command_line_arg)
2807 bool need_lstat;
2808 err = stat (absolute_name, &f->stat);
2809 do_deref = true;
2811 if (dereference == DEREF_COMMAND_LINE_ARGUMENTS)
2812 break;
2814 need_lstat = (err < 0
2815 ? errno == ENOENT
2816 : ! S_ISDIR (f->stat.st_mode));
2817 if (!need_lstat)
2818 break;
2820 /* stat failed because of ENOENT, maybe indicating a dangling
2821 symlink. Or stat succeeded, ABSOLUTE_NAME does not refer to a
2822 directory, and --dereference-command-line-symlink-to-dir is
2823 in effect. Fall through so that we call lstat instead. */
2826 default: /* DEREF_NEVER */
2827 err = lstat (absolute_name, &f->stat);
2828 do_deref = false;
2829 break;
2832 if (err != 0)
2834 /* Failure to stat a command line argument leads to
2835 an exit status of 2. For other files, stat failure
2836 provokes an exit status of 1. */
2837 file_failure (command_line_arg,
2838 _("cannot access %s"), absolute_name);
2839 if (command_line_arg)
2840 return 0;
2842 f->name = xstrdup (name);
2843 cwd_n_used++;
2845 return 0;
2848 f->stat_ok = true;
2850 /* Note has_capability() adds around 30% runtime to `ls --color` */
2851 if ((type == normal || S_ISREG (f->stat.st_mode))
2852 && print_with_color && is_colored (C_CAP))
2853 f->has_capability = has_capability (absolute_name);
2855 if (format == long_format || print_scontext)
2857 bool have_selinux = false;
2858 bool have_acl = false;
2859 int attr_len = (do_deref
2860 ? getfilecon (absolute_name, &f->scontext)
2861 : lgetfilecon (absolute_name, &f->scontext));
2862 err = (attr_len < 0);
2864 if (err == 0)
2865 have_selinux = ! STREQ ("unlabeled", f->scontext);
2866 else
2868 f->scontext = UNKNOWN_SECURITY_CONTEXT;
2870 /* When requesting security context information, don't make
2871 ls fail just because the file (even a command line argument)
2872 isn't on the right type of file system. I.e., a getfilecon
2873 failure isn't in the same class as a stat failure. */
2874 if (errno == ENOTSUP || errno == EOPNOTSUPP || errno == ENODATA)
2875 err = 0;
2878 if (err == 0 && format == long_format)
2880 int n = file_has_acl (absolute_name, &f->stat);
2881 err = (n < 0);
2882 have_acl = (0 < n);
2885 f->acl_type = (!have_selinux && !have_acl
2886 ? ACL_T_NONE
2887 : (have_selinux && !have_acl
2888 ? ACL_T_SELINUX_ONLY
2889 : ACL_T_YES));
2890 any_has_acl |= f->acl_type != ACL_T_NONE;
2892 if (err)
2893 error (0, errno, "%s", quotearg_colon (absolute_name));
2896 if (S_ISLNK (f->stat.st_mode)
2897 && (format == long_format || check_symlink_color))
2899 char *linkname;
2900 struct stat linkstats;
2902 get_link_name (absolute_name, f, command_line_arg);
2903 linkname = make_link_name (absolute_name, f->linkname);
2905 /* Avoid following symbolic links when possible, ie, when
2906 they won't be traced and when no indicator is needed. */
2907 if (linkname
2908 && (file_type <= indicator_style || check_symlink_color)
2909 && stat (linkname, &linkstats) == 0)
2911 f->linkok = true;
2913 /* Symbolic links to directories that are mentioned on the
2914 command line are automatically traced if not being
2915 listed as files. */
2916 if (!command_line_arg || format == long_format
2917 || !S_ISDIR (linkstats.st_mode))
2919 /* Get the linked-to file's mode for the filetype indicator
2920 in long listings. */
2921 f->linkmode = linkstats.st_mode;
2924 free (linkname);
2927 /* When not distinguishing types of symlinks, pretend we know that
2928 it is stat'able, so that it will be colored as a regular symlink,
2929 and not as an orphan. */
2930 if (S_ISLNK (f->stat.st_mode) && !check_symlink_color)
2931 f->linkok = true;
2933 if (S_ISLNK (f->stat.st_mode))
2934 f->filetype = symbolic_link;
2935 else if (S_ISDIR (f->stat.st_mode))
2937 if (command_line_arg && !immediate_dirs)
2938 f->filetype = arg_directory;
2939 else
2940 f->filetype = directory;
2942 else
2943 f->filetype = normal;
2945 blocks = ST_NBLOCKS (f->stat);
2946 if (format == long_format || print_block_size)
2948 char buf[LONGEST_HUMAN_READABLE + 1];
2949 int len = mbswidth (human_readable (blocks, buf, human_output_opts,
2950 ST_NBLOCKSIZE, output_block_size),
2952 if (block_size_width < len)
2953 block_size_width = len;
2956 if (format == long_format)
2958 if (print_owner)
2960 int len = format_user_width (f->stat.st_uid);
2961 if (owner_width < len)
2962 owner_width = len;
2965 if (print_group)
2967 int len = format_group_width (f->stat.st_gid);
2968 if (group_width < len)
2969 group_width = len;
2972 if (print_author)
2974 int len = format_user_width (f->stat.st_author);
2975 if (author_width < len)
2976 author_width = len;
2980 if (print_scontext)
2982 int len = strlen (f->scontext);
2983 if (scontext_width < len)
2984 scontext_width = len;
2987 if (format == long_format)
2989 char b[INT_BUFSIZE_BOUND (uintmax_t)];
2990 int b_len = strlen (umaxtostr (f->stat.st_nlink, b));
2991 if (nlink_width < b_len)
2992 nlink_width = b_len;
2994 if (S_ISCHR (f->stat.st_mode) || S_ISBLK (f->stat.st_mode))
2996 char buf[INT_BUFSIZE_BOUND (uintmax_t)];
2997 int len = strlen (umaxtostr (major (f->stat.st_rdev), buf));
2998 if (major_device_number_width < len)
2999 major_device_number_width = len;
3000 len = strlen (umaxtostr (minor (f->stat.st_rdev), buf));
3001 if (minor_device_number_width < len)
3002 minor_device_number_width = len;
3003 len = major_device_number_width + 2 + minor_device_number_width;
3004 if (file_size_width < len)
3005 file_size_width = len;
3007 else
3009 char buf[LONGEST_HUMAN_READABLE + 1];
3010 uintmax_t size = unsigned_file_size (f->stat.st_size);
3011 int len = mbswidth (human_readable (size, buf, human_output_opts,
3012 1, file_output_block_size),
3014 if (file_size_width < len)
3015 file_size_width = len;
3020 if (print_inode)
3022 char buf[INT_BUFSIZE_BOUND (uintmax_t)];
3023 int len = strlen (umaxtostr (f->stat.st_ino, buf));
3024 if (inode_number_width < len)
3025 inode_number_width = len;
3028 f->name = xstrdup (name);
3029 cwd_n_used++;
3031 return blocks;
3034 /* Return true if F refers to a directory. */
3035 static bool
3036 is_directory (const struct fileinfo *f)
3038 return f->filetype == directory || f->filetype == arg_directory;
3041 /* Put the name of the file that FILENAME is a symbolic link to
3042 into the LINKNAME field of `f'. COMMAND_LINE_ARG indicates whether
3043 FILENAME is a command-line argument. */
3045 static void
3046 get_link_name (char const *filename, struct fileinfo *f, bool command_line_arg)
3048 f->linkname = areadlink_with_size (filename, f->stat.st_size);
3049 if (f->linkname == NULL)
3050 file_failure (command_line_arg, _("cannot read symbolic link %s"),
3051 filename);
3054 /* If `linkname' is a relative name and `name' contains one or more
3055 leading directories, return `linkname' with those directories
3056 prepended; otherwise, return a copy of `linkname'.
3057 If `linkname' is zero, return zero. */
3059 static char *
3060 make_link_name (char const *name, char const *linkname)
3062 char *linkbuf;
3063 size_t bufsiz;
3065 if (!linkname)
3066 return NULL;
3068 if (*linkname == '/')
3069 return xstrdup (linkname);
3071 /* The link is to a relative name. Prepend any leading directory
3072 in `name' to the link name. */
3073 linkbuf = strrchr (name, '/');
3074 if (linkbuf == 0)
3075 return xstrdup (linkname);
3077 bufsiz = linkbuf - name + 1;
3078 linkbuf = xmalloc (bufsiz + strlen (linkname) + 1);
3079 strncpy (linkbuf, name, bufsiz);
3080 strcpy (linkbuf + bufsiz, linkname);
3081 return linkbuf;
3084 /* Return true if the last component of NAME is `.' or `..'
3085 This is so we don't try to recurse on `././././. ...' */
3087 static bool
3088 basename_is_dot_or_dotdot (const char *name)
3090 char const *base = last_component (name);
3091 return dot_or_dotdot (base);
3094 /* Remove any entries from CWD_FILE that are for directories,
3095 and queue them to be listed as directories instead.
3096 DIRNAME is the prefix to prepend to each dirname
3097 to make it correct relative to ls's working dir;
3098 if it is null, no prefix is needed and "." and ".." should not be ignored.
3099 If COMMAND_LINE_ARG is true, this directory was mentioned at the top level,
3100 This is desirable when processing directories recursively. */
3102 static void
3103 extract_dirs_from_files (char const *dirname, bool command_line_arg)
3105 size_t i;
3106 size_t j;
3107 bool ignore_dot_and_dot_dot = (dirname != NULL);
3109 if (dirname && LOOP_DETECT)
3111 /* Insert a marker entry first. When we dequeue this marker entry,
3112 we'll know that DIRNAME has been processed and may be removed
3113 from the set of active directories. */
3114 queue_directory (NULL, dirname, false);
3117 /* Queue the directories last one first, because queueing reverses the
3118 order. */
3119 for (i = cwd_n_used; i-- != 0; )
3121 struct fileinfo *f = sorted_file[i];
3123 if (is_directory (f)
3124 && (! ignore_dot_and_dot_dot
3125 || ! basename_is_dot_or_dotdot (f->name)))
3127 if (!dirname || f->name[0] == '/')
3128 queue_directory (f->name, f->linkname, command_line_arg);
3129 else
3131 char *name = file_name_concat (dirname, f->name, NULL);
3132 queue_directory (name, f->linkname, command_line_arg);
3133 free (name);
3135 if (f->filetype == arg_directory)
3136 free (f->name);
3140 /* Now delete the directories from the table, compacting all the remaining
3141 entries. */
3143 for (i = 0, j = 0; i < cwd_n_used; i++)
3145 struct fileinfo *f = sorted_file[i];
3146 sorted_file[j] = f;
3147 j += (f->filetype != arg_directory);
3149 cwd_n_used = j;
3152 /* Use strcoll to compare strings in this locale. If an error occurs,
3153 report an error and longjmp to failed_strcoll. */
3155 static jmp_buf failed_strcoll;
3157 static int
3158 xstrcoll (char const *a, char const *b)
3160 int diff;
3161 errno = 0;
3162 diff = strcoll (a, b);
3163 if (errno)
3165 error (0, errno, _("cannot compare file names %s and %s"),
3166 quote_n (0, a), quote_n (1, b));
3167 set_exit_status (false);
3168 longjmp (failed_strcoll, 1);
3170 return diff;
3173 /* Comparison routines for sorting the files. */
3175 typedef void const *V;
3176 typedef int (*qsortFunc)(V a, V b);
3178 /* Used below in DEFINE_SORT_FUNCTIONS for _df_ sort function variants.
3179 The do { ... } while(0) makes it possible to use the macro more like
3180 a statement, without violating C89 rules: */
3181 #define DIRFIRST_CHECK(a, b) \
3182 do \
3184 bool a_is_dir = is_directory ((struct fileinfo const *) a); \
3185 bool b_is_dir = is_directory ((struct fileinfo const *) b); \
3186 if (a_is_dir && !b_is_dir) \
3187 return -1; /* a goes before b */ \
3188 if (!a_is_dir && b_is_dir) \
3189 return 1; /* b goes before a */ \
3191 while (0)
3193 /* Define the 8 different sort function variants required for each sortkey.
3194 KEY_NAME is a token describing the sort key, e.g., ctime, atime, size.
3195 KEY_CMP_FUNC is a function to compare records based on that key, e.g.,
3196 ctime_cmp, atime_cmp, size_cmp. Append KEY_NAME to the string,
3197 '[rev_][x]str{cmp|coll}[_df]_', to create each function name. */
3198 #define DEFINE_SORT_FUNCTIONS(key_name, key_cmp_func) \
3199 /* direct, non-dirfirst versions */ \
3200 static int xstrcoll_##key_name (V a, V b) \
3201 { return key_cmp_func (a, b, xstrcoll); } \
3202 static int strcmp_##key_name (V a, V b) \
3203 { return key_cmp_func (a, b, strcmp); } \
3205 /* reverse, non-dirfirst versions */ \
3206 static int rev_xstrcoll_##key_name (V a, V b) \
3207 { return key_cmp_func (b, a, xstrcoll); } \
3208 static int rev_strcmp_##key_name (V a, V b) \
3209 { return key_cmp_func (b, a, strcmp); } \
3211 /* direct, dirfirst versions */ \
3212 static int xstrcoll_df_##key_name (V a, V b) \
3213 { DIRFIRST_CHECK (a, b); return key_cmp_func (a, b, xstrcoll); } \
3214 static int strcmp_df_##key_name (V a, V b) \
3215 { DIRFIRST_CHECK (a, b); return key_cmp_func (a, b, strcmp); } \
3217 /* reverse, dirfirst versions */ \
3218 static int rev_xstrcoll_df_##key_name (V a, V b) \
3219 { DIRFIRST_CHECK (a, b); return key_cmp_func (b, a, xstrcoll); } \
3220 static int rev_strcmp_df_##key_name (V a, V b) \
3221 { DIRFIRST_CHECK (a, b); return key_cmp_func (b, a, strcmp); }
3223 static inline int
3224 cmp_ctime (struct fileinfo const *a, struct fileinfo const *b,
3225 int (*cmp) (char const *, char const *))
3227 int diff = timespec_cmp (get_stat_ctime (&b->stat),
3228 get_stat_ctime (&a->stat));
3229 return diff ? diff : cmp (a->name, b->name);
3232 static inline int
3233 cmp_mtime (struct fileinfo const *a, struct fileinfo const *b,
3234 int (*cmp) (char const *, char const *))
3236 int diff = timespec_cmp (get_stat_mtime (&b->stat),
3237 get_stat_mtime (&a->stat));
3238 return diff ? diff : cmp (a->name, b->name);
3241 static inline int
3242 cmp_atime (struct fileinfo const *a, struct fileinfo const *b,
3243 int (*cmp) (char const *, char const *))
3245 int diff = timespec_cmp (get_stat_atime (&b->stat),
3246 get_stat_atime (&a->stat));
3247 return diff ? diff : cmp (a->name, b->name);
3250 static inline int
3251 cmp_size (struct fileinfo const *a, struct fileinfo const *b,
3252 int (*cmp) (char const *, char const *))
3254 int diff = longdiff (b->stat.st_size, a->stat.st_size);
3255 return diff ? diff : cmp (a->name, b->name);
3258 static inline int
3259 cmp_name (struct fileinfo const *a, struct fileinfo const *b,
3260 int (*cmp) (char const *, char const *))
3262 return cmp (a->name, b->name);
3265 /* Compare file extensions. Files with no extension are `smallest'.
3266 If extensions are the same, compare by filenames instead. */
3268 static inline int
3269 cmp_extension (struct fileinfo const *a, struct fileinfo const *b,
3270 int (*cmp) (char const *, char const *))
3272 char const *base1 = strrchr (a->name, '.');
3273 char const *base2 = strrchr (b->name, '.');
3274 int diff = cmp (base1 ? base1 : "", base2 ? base2 : "");
3275 return diff ? diff : cmp (a->name, b->name);
3278 DEFINE_SORT_FUNCTIONS (ctime, cmp_ctime)
3279 DEFINE_SORT_FUNCTIONS (mtime, cmp_mtime)
3280 DEFINE_SORT_FUNCTIONS (atime, cmp_atime)
3281 DEFINE_SORT_FUNCTIONS (size, cmp_size)
3282 DEFINE_SORT_FUNCTIONS (name, cmp_name)
3283 DEFINE_SORT_FUNCTIONS (extension, cmp_extension)
3285 /* Compare file versions.
3286 Unlike all other compare functions above, cmp_version depends only
3287 on filevercmp, which does not fail (even for locale reasons), and does not
3288 need a secondary sort key. See lib/filevercmp.h for function description.
3290 All the other sort options, in fact, need xstrcoll and strcmp variants,
3291 because they all use a string comparison (either as the primary or secondary
3292 sort key), and xstrcoll has the ability to do a longjmp if strcoll fails for
3293 locale reasons. Lastly, filevercmp is ALWAYS available with gnulib. */
3294 static inline int
3295 cmp_version (struct fileinfo const *a, struct fileinfo const *b)
3297 return filevercmp (a->name, b->name);
3300 static int xstrcoll_version (V a, V b)
3301 { return cmp_version (a, b); }
3302 static int rev_xstrcoll_version (V a, V b)
3303 { return cmp_version (b, a); }
3304 static int xstrcoll_df_version (V a, V b)
3305 { DIRFIRST_CHECK (a, b); return cmp_version (a, b); }
3306 static int rev_xstrcoll_df_version (V a, V b)
3307 { DIRFIRST_CHECK (a, b); return cmp_version (b, a); }
3310 /* We have 2^3 different variants for each sortkey function
3311 (for 3 independent sort modes).
3312 The function pointers stored in this array must be dereferenced as:
3314 sort_variants[sort_key][use_strcmp][reverse][dirs_first]
3316 Note that the order in which sortkeys are listed in the function pointer
3317 array below is defined by the order of the elements in the time_type and
3318 sort_type enums! */
3320 #define LIST_SORTFUNCTION_VARIANTS(key_name) \
3323 { xstrcoll_##key_name, xstrcoll_df_##key_name }, \
3324 { rev_xstrcoll_##key_name, rev_xstrcoll_df_##key_name }, \
3325 }, \
3327 { strcmp_##key_name, strcmp_df_##key_name }, \
3328 { rev_strcmp_##key_name, rev_strcmp_df_##key_name }, \
3332 static qsortFunc const sort_functions[][2][2][2] =
3334 LIST_SORTFUNCTION_VARIANTS (name),
3335 LIST_SORTFUNCTION_VARIANTS (extension),
3336 LIST_SORTFUNCTION_VARIANTS (size),
3340 { xstrcoll_version, xstrcoll_df_version },
3341 { rev_xstrcoll_version, rev_xstrcoll_df_version },
3344 /* We use NULL for the strcmp variants of version comparison
3345 since as explained in cmp_version definition, version comparison
3346 does not rely on xstrcoll, so it will never longjmp, and never
3347 need to try the strcmp fallback. */
3349 { NULL, NULL },
3350 { NULL, NULL },
3354 /* last are time sort functions */
3355 LIST_SORTFUNCTION_VARIANTS (mtime),
3356 LIST_SORTFUNCTION_VARIANTS (ctime),
3357 LIST_SORTFUNCTION_VARIANTS (atime)
3360 /* The number of sortkeys is calculated as
3361 the number of elements in the sort_type enum (i.e. sort_numtypes) +
3362 the number of elements in the time_type enum (i.e. time_numtypes) - 1
3363 This is because when sort_type==sort_time, we have up to
3364 time_numtypes possible sortkeys.
3366 This line verifies at compile-time that the array of sort functions has been
3367 initialized for all possible sortkeys. */
3368 verify (ARRAY_CARDINALITY (sort_functions)
3369 == sort_numtypes + time_numtypes - 1 );
3371 /* Set up SORTED_FILE to point to the in-use entries in CWD_FILE, in order. */
3373 static void
3374 initialize_ordering_vector (void)
3376 size_t i;
3377 for (i = 0; i < cwd_n_used; i++)
3378 sorted_file[i] = &cwd_file[i];
3381 /* Sort the files now in the table. */
3383 static void
3384 sort_files (void)
3386 bool use_strcmp;
3388 if (sorted_file_alloc < cwd_n_used + cwd_n_used / 2)
3390 free (sorted_file);
3391 sorted_file = xnmalloc (cwd_n_used, 3 * sizeof *sorted_file);
3392 sorted_file_alloc = 3 * cwd_n_used;
3395 initialize_ordering_vector ();
3397 if (sort_type == sort_none)
3398 return;
3400 /* Try strcoll. If it fails, fall back on strcmp. We can't safely
3401 ignore strcoll failures, as a failing strcoll might be a
3402 comparison function that is not a total order, and if we ignored
3403 the failure this might cause qsort to dump core. */
3405 if (! setjmp (failed_strcoll))
3406 use_strcmp = false; /* strcoll() succeeded */
3407 else
3409 use_strcmp = true;
3410 assert (sort_type != sort_version);
3411 initialize_ordering_vector ();
3414 /* When sort_type == sort_time, use time_type as subindex. */
3415 mpsort ((void const **) sorted_file, cwd_n_used,
3416 sort_functions[sort_type + (sort_type == sort_time ? time_type : 0)]
3417 [use_strcmp][sort_reverse]
3418 [directories_first]);
3421 /* List all the files now in the table. */
3423 static void
3424 print_current_files (void)
3426 size_t i;
3428 switch (format)
3430 case one_per_line:
3431 for (i = 0; i < cwd_n_used; i++)
3433 print_file_name_and_frills (sorted_file[i], 0);
3434 putchar ('\n');
3436 break;
3438 case many_per_line:
3439 print_many_per_line ();
3440 break;
3442 case horizontal:
3443 print_horizontal ();
3444 break;
3446 case with_commas:
3447 print_with_commas ();
3448 break;
3450 case long_format:
3451 for (i = 0; i < cwd_n_used; i++)
3453 set_normal_color ();
3454 print_long_format (sorted_file[i]);
3455 DIRED_PUTCHAR ('\n');
3457 break;
3461 /* Replace the first %b with precomputed aligned month names.
3462 Note on glibc-2.7 at least, this speeds up the whole `ls -lU`
3463 process by around 17%, compared to letting strftime() handle the %b. */
3465 static size_t
3466 align_nstrftime (char *buf, size_t size, char const *fmt, struct tm const *tm,
3467 int __utc, int __ns)
3469 const char *nfmt = fmt;
3470 /* In the unlikely event that rpl_fmt below is not large enough,
3471 the replacement is not done. A malloc here slows ls down by 2% */
3472 char rpl_fmt[sizeof (abmon[0]) + 100];
3473 const char *pb;
3474 if (required_mon_width && (pb = strstr (fmt, "%b")))
3476 if (strlen (fmt) < (sizeof (rpl_fmt) - sizeof (abmon[0]) + 2))
3478 char *pfmt = rpl_fmt;
3479 nfmt = rpl_fmt;
3481 pfmt = mempcpy (pfmt, fmt, pb - fmt);
3482 pfmt = stpcpy (pfmt, abmon[tm->tm_mon]);
3483 strcpy (pfmt, pb + 2);
3486 size_t ret = nstrftime (buf, size, nfmt, tm, __utc, __ns);
3487 return ret;
3490 /* Return the expected number of columns in a long-format time stamp,
3491 or zero if it cannot be calculated. */
3493 static int
3494 long_time_expected_width (void)
3496 static int width = -1;
3498 if (width < 0)
3500 time_t epoch = 0;
3501 struct tm const *tm = localtime (&epoch);
3502 char buf[TIME_STAMP_LEN_MAXIMUM + 1];
3504 /* In case you're wondering if localtime can fail with an input time_t
3505 value of 0, let's just say it's very unlikely, but not inconceivable.
3506 The TZ environment variable would have to specify a time zone that
3507 is 2**31-1900 years or more ahead of UTC. This could happen only on
3508 a 64-bit system that blindly accepts e.g., TZ=UTC+20000000000000.
3509 However, this is not possible with Solaris 10 or glibc-2.3.5, since
3510 their implementations limit the offset to 167:59 and 24:00, resp. */
3511 if (tm)
3513 size_t len =
3514 align_nstrftime (buf, sizeof buf, long_time_format[0], tm, 0, 0);
3515 if (len != 0)
3516 width = mbsnwidth (buf, len, 0);
3519 if (width < 0)
3520 width = 0;
3523 return width;
3526 /* Print the user or group name NAME, with numeric id ID, using a
3527 print width of WIDTH columns. */
3529 static void
3530 format_user_or_group (char const *name, unsigned long int id, int width)
3532 size_t len;
3534 if (name)
3536 int width_gap = width - mbswidth (name, 0);
3537 int pad = MAX (0, width_gap);
3538 fputs (name, stdout);
3539 len = strlen (name) + pad;
3542 putchar (' ');
3543 while (pad--);
3545 else
3547 printf ("%*lu ", width, id);
3548 len = width;
3551 dired_pos += len + 1;
3554 /* Print the name or id of the user with id U, using a print width of
3555 WIDTH. */
3557 static void
3558 format_user (uid_t u, int width, bool stat_ok)
3560 format_user_or_group (! stat_ok ? "?" :
3561 (numeric_ids ? NULL : getuser (u)), u, width);
3564 /* Likewise, for groups. */
3566 static void
3567 format_group (gid_t g, int width, bool stat_ok)
3569 format_user_or_group (! stat_ok ? "?" :
3570 (numeric_ids ? NULL : getgroup (g)), g, width);
3573 /* Return the number of columns that format_user_or_group will print. */
3575 static int
3576 format_user_or_group_width (char const *name, unsigned long int id)
3578 if (name)
3580 int len = mbswidth (name, 0);
3581 return MAX (0, len);
3583 else
3585 char buf[INT_BUFSIZE_BOUND (unsigned long int)];
3586 sprintf (buf, "%lu", id);
3587 return strlen (buf);
3591 /* Return the number of columns that format_user will print. */
3593 static int
3594 format_user_width (uid_t u)
3596 return format_user_or_group_width (numeric_ids ? NULL : getuser (u), u);
3599 /* Likewise, for groups. */
3601 static int
3602 format_group_width (gid_t g)
3604 return format_user_or_group_width (numeric_ids ? NULL : getgroup (g), g);
3607 /* Return a pointer to a formatted version of F->stat.st_ino,
3608 possibly using buffer, BUF, of length BUFLEN, which must be at least
3609 INT_BUFSIZE_BOUND (uintmax_t) bytes. */
3610 static char *
3611 format_inode (char *buf, size_t buflen, const struct fileinfo *f)
3613 assert (INT_BUFSIZE_BOUND (uintmax_t) <= buflen);
3614 return (f->stat_ok && f->stat.st_ino != NOT_AN_INODE_NUMBER
3615 ? umaxtostr (f->stat.st_ino, buf)
3616 : (char *) "?");
3619 /* Print information about F in long format. */
3620 static void
3621 print_long_format (const struct fileinfo *f)
3623 char modebuf[12];
3624 char buf
3625 [LONGEST_HUMAN_READABLE + 1 /* inode */
3626 + LONGEST_HUMAN_READABLE + 1 /* size in blocks */
3627 + sizeof (modebuf) - 1 + 1 /* mode string */
3628 + INT_BUFSIZE_BOUND (uintmax_t) /* st_nlink */
3629 + LONGEST_HUMAN_READABLE + 2 /* major device number */
3630 + LONGEST_HUMAN_READABLE + 1 /* minor device number */
3631 + TIME_STAMP_LEN_MAXIMUM + 1 /* max length of time/date */
3633 size_t s;
3634 char *p;
3635 struct timespec when_timespec;
3636 struct tm *when_local;
3638 /* Compute the mode string, except remove the trailing space if no
3639 file in this directory has an ACL or SELinux security context. */
3640 if (f->stat_ok)
3641 filemodestring (&f->stat, modebuf);
3642 else
3644 modebuf[0] = filetype_letter[f->filetype];
3645 memset (modebuf + 1, '?', 10);
3646 modebuf[11] = '\0';
3648 if (! any_has_acl)
3649 modebuf[10] = '\0';
3650 else if (f->acl_type == ACL_T_SELINUX_ONLY)
3651 modebuf[10] = '.';
3652 else if (f->acl_type == ACL_T_YES)
3653 modebuf[10] = '+';
3655 switch (time_type)
3657 case time_ctime:
3658 when_timespec = get_stat_ctime (&f->stat);
3659 break;
3660 case time_mtime:
3661 when_timespec = get_stat_mtime (&f->stat);
3662 break;
3663 case time_atime:
3664 when_timespec = get_stat_atime (&f->stat);
3665 break;
3666 default:
3667 abort ();
3670 p = buf;
3672 if (print_inode)
3674 char hbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3675 sprintf (p, "%*s ", inode_number_width,
3676 format_inode (hbuf, sizeof hbuf, f));
3677 /* Increment by strlen (p) here, rather than by inode_number_width + 1.
3678 The latter is wrong when inode_number_width is zero. */
3679 p += strlen (p);
3682 if (print_block_size)
3684 char hbuf[LONGEST_HUMAN_READABLE + 1];
3685 char const *blocks =
3686 (! f->stat_ok
3687 ? "?"
3688 : human_readable (ST_NBLOCKS (f->stat), hbuf, human_output_opts,
3689 ST_NBLOCKSIZE, output_block_size));
3690 int pad;
3691 for (pad = block_size_width - mbswidth (blocks, 0); 0 < pad; pad--)
3692 *p++ = ' ';
3693 while ((*p++ = *blocks++))
3694 continue;
3695 p[-1] = ' ';
3698 /* The last byte of the mode string is the POSIX
3699 "optional alternate access method flag". */
3701 char hbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3702 sprintf (p, "%s %*s ", modebuf, nlink_width,
3703 ! f->stat_ok ? "?" : umaxtostr (f->stat.st_nlink, hbuf));
3705 /* Increment by strlen (p) here, rather than by, e.g.,
3706 sizeof modebuf - 2 + any_has_acl + 1 + nlink_width + 1.
3707 The latter is wrong when nlink_width is zero. */
3708 p += strlen (p);
3710 DIRED_INDENT ();
3712 if (print_owner || print_group || print_author || print_scontext)
3714 DIRED_FPUTS (buf, stdout, p - buf);
3716 if (print_owner)
3717 format_user (f->stat.st_uid, owner_width, f->stat_ok);
3719 if (print_group)
3720 format_group (f->stat.st_gid, group_width, f->stat_ok);
3722 if (print_author)
3723 format_user (f->stat.st_author, author_width, f->stat_ok);
3725 if (print_scontext)
3726 format_user_or_group (f->scontext, 0, scontext_width);
3728 p = buf;
3731 if (f->stat_ok
3732 && (S_ISCHR (f->stat.st_mode) || S_ISBLK (f->stat.st_mode)))
3734 char majorbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3735 char minorbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3736 int blanks_width = (file_size_width
3737 - (major_device_number_width + 2
3738 + minor_device_number_width));
3739 sprintf (p, "%*s, %*s ",
3740 major_device_number_width + MAX (0, blanks_width),
3741 umaxtostr (major (f->stat.st_rdev), majorbuf),
3742 minor_device_number_width,
3743 umaxtostr (minor (f->stat.st_rdev), minorbuf));
3744 p += file_size_width + 1;
3746 else
3748 char hbuf[LONGEST_HUMAN_READABLE + 1];
3749 char const *size =
3750 (! f->stat_ok
3751 ? "?"
3752 : human_readable (unsigned_file_size (f->stat.st_size),
3753 hbuf, human_output_opts, 1, file_output_block_size));
3754 int pad;
3755 for (pad = file_size_width - mbswidth (size, 0); 0 < pad; pad--)
3756 *p++ = ' ';
3757 while ((*p++ = *size++))
3758 continue;
3759 p[-1] = ' ';
3762 when_local = localtime (&when_timespec.tv_sec);
3763 s = 0;
3764 *p = '\1';
3766 if (f->stat_ok && when_local)
3768 struct timespec six_months_ago;
3769 bool recent;
3770 char const *fmt;
3772 /* If the file appears to be in the future, update the current
3773 time, in case the file happens to have been modified since
3774 the last time we checked the clock. */
3775 if (timespec_cmp (current_time, when_timespec) < 0)
3777 /* Note that gettime may call gettimeofday which, on some non-
3778 compliant systems, clobbers the buffer used for localtime's result.
3779 But it's ok here, because we use a gettimeofday wrapper that
3780 saves and restores the buffer around the gettimeofday call. */
3781 gettime (&current_time);
3784 /* Consider a time to be recent if it is within the past six
3785 months. A Gregorian year has 365.2425 * 24 * 60 * 60 ==
3786 31556952 seconds on the average. Write this value as an
3787 integer constant to avoid floating point hassles. */
3788 six_months_ago.tv_sec = current_time.tv_sec - 31556952 / 2;
3789 six_months_ago.tv_nsec = current_time.tv_nsec;
3791 recent = (timespec_cmp (six_months_ago, when_timespec) < 0
3792 && (timespec_cmp (when_timespec, current_time) < 0));
3793 fmt = long_time_format[recent];
3795 /* We assume here that all time zones are offset from UTC by a
3796 whole number of seconds. */
3797 s = align_nstrftime (p, TIME_STAMP_LEN_MAXIMUM + 1, fmt,
3798 when_local, 0, when_timespec.tv_nsec);
3801 if (s || !*p)
3803 p += s;
3804 *p++ = ' ';
3806 /* NUL-terminate the string -- fputs (via DIRED_FPUTS) requires it. */
3807 *p = '\0';
3809 else
3811 /* The time cannot be converted using the desired format, so
3812 print it as a huge integer number of seconds. */
3813 char hbuf[INT_BUFSIZE_BOUND (intmax_t)];
3814 sprintf (p, "%*s ", long_time_expected_width (),
3815 (! f->stat_ok
3816 ? "?"
3817 : timetostr (when_timespec.tv_sec, hbuf)));
3818 /* FIXME: (maybe) We discarded when_timespec.tv_nsec. */
3819 p += strlen (p);
3822 DIRED_FPUTS (buf, stdout, p - buf);
3823 size_t w = print_name_with_quoting (f, false, &dired_obstack, p - buf);
3825 if (f->filetype == symbolic_link)
3827 if (f->linkname)
3829 DIRED_FPUTS_LITERAL (" -> ", stdout);
3830 print_name_with_quoting (f, true, NULL, (p - buf) + w + 4);
3831 if (indicator_style != none)
3832 print_type_indicator (true, f->linkmode, unknown);
3835 else if (indicator_style != none)
3836 print_type_indicator (f->stat_ok, f->stat.st_mode, f->filetype);
3839 /* Output to OUT a quoted representation of the file name NAME,
3840 using OPTIONS to control quoting. Produce no output if OUT is NULL.
3841 Store the number of screen columns occupied by NAME's quoted
3842 representation into WIDTH, if non-NULL. Return the number of bytes
3843 produced. */
3845 static size_t
3846 quote_name (FILE *out, const char *name, struct quoting_options const *options,
3847 size_t *width)
3849 char smallbuf[BUFSIZ];
3850 size_t len = quotearg_buffer (smallbuf, sizeof smallbuf, name, -1, options);
3851 char *buf;
3852 size_t displayed_width IF_LINT (= 0);
3854 if (len < sizeof smallbuf)
3855 buf = smallbuf;
3856 else
3858 buf = alloca (len + 1);
3859 quotearg_buffer (buf, len + 1, name, -1, options);
3862 if (qmark_funny_chars)
3864 if (MB_CUR_MAX > 1)
3866 char const *p = buf;
3867 char const *plimit = buf + len;
3868 char *q = buf;
3869 displayed_width = 0;
3871 while (p < plimit)
3872 switch (*p)
3874 case ' ': case '!': case '"': case '#': case '%':
3875 case '&': case '\'': case '(': case ')': case '*':
3876 case '+': case ',': case '-': case '.': case '/':
3877 case '0': case '1': case '2': case '3': case '4':
3878 case '5': case '6': case '7': case '8': case '9':
3879 case ':': case ';': case '<': case '=': case '>':
3880 case '?':
3881 case 'A': case 'B': case 'C': case 'D': case 'E':
3882 case 'F': case 'G': case 'H': case 'I': case 'J':
3883 case 'K': case 'L': case 'M': case 'N': case 'O':
3884 case 'P': case 'Q': case 'R': case 'S': case 'T':
3885 case 'U': case 'V': case 'W': case 'X': case 'Y':
3886 case 'Z':
3887 case '[': case '\\': case ']': case '^': case '_':
3888 case 'a': case 'b': case 'c': case 'd': case 'e':
3889 case 'f': case 'g': case 'h': case 'i': case 'j':
3890 case 'k': case 'l': case 'm': case 'n': case 'o':
3891 case 'p': case 'q': case 'r': case 's': case 't':
3892 case 'u': case 'v': case 'w': case 'x': case 'y':
3893 case 'z': case '{': case '|': case '}': case '~':
3894 /* These characters are printable ASCII characters. */
3895 *q++ = *p++;
3896 displayed_width += 1;
3897 break;
3898 default:
3899 /* If we have a multibyte sequence, copy it until we
3900 reach its end, replacing each non-printable multibyte
3901 character with a single question mark. */
3903 DECLARE_ZEROED_AGGREGATE (mbstate_t, mbstate);
3906 wchar_t wc;
3907 size_t bytes;
3908 int w;
3910 bytes = mbrtowc (&wc, p, plimit - p, &mbstate);
3912 if (bytes == (size_t) -1)
3914 /* An invalid multibyte sequence was
3915 encountered. Skip one input byte, and
3916 put a question mark. */
3917 p++;
3918 *q++ = '?';
3919 displayed_width += 1;
3920 break;
3923 if (bytes == (size_t) -2)
3925 /* An incomplete multibyte character
3926 at the end. Replace it entirely with
3927 a question mark. */
3928 p = plimit;
3929 *q++ = '?';
3930 displayed_width += 1;
3931 break;
3934 if (bytes == 0)
3935 /* A null wide character was encountered. */
3936 bytes = 1;
3938 w = wcwidth (wc);
3939 if (w >= 0)
3941 /* A printable multibyte character.
3942 Keep it. */
3943 for (; bytes > 0; --bytes)
3944 *q++ = *p++;
3945 displayed_width += w;
3947 else
3949 /* An unprintable multibyte character.
3950 Replace it entirely with a question
3951 mark. */
3952 p += bytes;
3953 *q++ = '?';
3954 displayed_width += 1;
3957 while (! mbsinit (&mbstate));
3959 break;
3962 /* The buffer may have shrunk. */
3963 len = q - buf;
3965 else
3967 char *p = buf;
3968 char const *plimit = buf + len;
3970 while (p < plimit)
3972 if (! isprint (to_uchar (*p)))
3973 *p = '?';
3974 p++;
3976 displayed_width = len;
3979 else if (width != NULL)
3981 if (MB_CUR_MAX > 1)
3982 displayed_width = mbsnwidth (buf, len, 0);
3983 else
3985 char const *p = buf;
3986 char const *plimit = buf + len;
3988 displayed_width = 0;
3989 while (p < plimit)
3991 if (isprint (to_uchar (*p)))
3992 displayed_width++;
3993 p++;
3998 if (out != NULL)
3999 fwrite (buf, 1, len, out);
4000 if (width != NULL)
4001 *width = displayed_width;
4002 return len;
4005 static size_t
4006 print_name_with_quoting (const struct fileinfo *f,
4007 bool symlink_target,
4008 struct obstack *stack,
4009 size_t start_col)
4011 const char* name = symlink_target ? f->linkname : f->name;
4013 bool used_color_this_time
4014 = (print_with_color
4015 && (print_color_indicator (f, symlink_target)
4016 || is_colored (C_NORM)));
4018 if (stack)
4019 PUSH_CURRENT_DIRED_POS (stack);
4021 size_t width = quote_name (stdout, name, filename_quoting_options, NULL);
4022 dired_pos += width;
4024 if (stack)
4025 PUSH_CURRENT_DIRED_POS (stack);
4027 if (used_color_this_time)
4029 process_signals ();
4030 prep_non_filename_text ();
4031 if (start_col / line_length != (start_col + width - 1) / line_length)
4032 put_indicator (&color_indicator[C_CLR_TO_EOL]);
4035 return width;
4038 static void
4039 prep_non_filename_text (void)
4041 if (color_indicator[C_END].string != NULL)
4042 put_indicator (&color_indicator[C_END]);
4043 else
4045 put_indicator (&color_indicator[C_LEFT]);
4046 put_indicator (&color_indicator[C_RESET]);
4047 put_indicator (&color_indicator[C_RIGHT]);
4051 /* Print the file name of `f' with appropriate quoting.
4052 Also print file size, inode number, and filetype indicator character,
4053 as requested by switches. */
4055 static size_t
4056 print_file_name_and_frills (const struct fileinfo *f, size_t start_col)
4058 char buf[MAX (LONGEST_HUMAN_READABLE + 1, INT_BUFSIZE_BOUND (uintmax_t))];
4060 set_normal_color ();
4062 if (print_inode)
4063 printf ("%*s ", format == with_commas ? 0 : inode_number_width,
4064 format_inode (buf, sizeof buf, f));
4066 if (print_block_size)
4067 printf ("%*s ", format == with_commas ? 0 : block_size_width,
4068 ! f->stat_ok ? "?"
4069 : human_readable (ST_NBLOCKS (f->stat), buf, human_output_opts,
4070 ST_NBLOCKSIZE, output_block_size));
4072 if (print_scontext)
4073 printf ("%*s ", format == with_commas ? 0 : scontext_width, f->scontext);
4075 size_t width = print_name_with_quoting (f, false, NULL, start_col);
4077 if (indicator_style != none)
4078 width += print_type_indicator (f->stat_ok, f->stat.st_mode, f->filetype);
4080 return width;
4083 /* Given these arguments describing a file, return the single-byte
4084 type indicator, or 0. */
4085 static char
4086 get_type_indicator (bool stat_ok, mode_t mode, enum filetype type)
4088 char c;
4090 if (stat_ok ? S_ISREG (mode) : type == normal)
4092 if (stat_ok && indicator_style == classify && (mode & S_IXUGO))
4093 c = '*';
4094 else
4095 c = 0;
4097 else
4099 if (stat_ok ? S_ISDIR (mode) : type == directory || type == arg_directory)
4100 c = '/';
4101 else if (indicator_style == slash)
4102 c = 0;
4103 else if (stat_ok ? S_ISLNK (mode) : type == symbolic_link)
4104 c = '@';
4105 else if (stat_ok ? S_ISFIFO (mode) : type == fifo)
4106 c = '|';
4107 else if (stat_ok ? S_ISSOCK (mode) : type == sock)
4108 c = '=';
4109 else if (stat_ok && S_ISDOOR (mode))
4110 c = '>';
4111 else
4112 c = 0;
4114 return c;
4117 static bool
4118 print_type_indicator (bool stat_ok, mode_t mode, enum filetype type)
4120 char c = get_type_indicator (stat_ok, mode, type);
4121 if (c)
4122 DIRED_PUTCHAR (c);
4123 return !!c;
4126 /* Returns whether any color sequence was printed. */
4127 static bool
4128 print_color_indicator (const struct fileinfo *f, bool symlink_target)
4130 enum indicator_no type;
4131 struct color_ext_type *ext; /* Color extension */
4132 size_t len; /* Length of name */
4134 const char* name;
4135 mode_t mode;
4136 int linkok;
4137 if (symlink_target)
4139 name = f->linkname;
4140 mode = f->linkmode;
4141 linkok = f->linkok - 1;
4143 else
4145 name = f->name;
4146 mode = FILE_OR_LINK_MODE (f);
4147 linkok = f->linkok;
4150 /* Is this a nonexistent file? If so, linkok == -1. */
4152 if (linkok == -1 && color_indicator[C_MISSING].string != NULL)
4153 type = C_MISSING;
4154 else if (!f->stat_ok)
4156 static enum indicator_no filetype_indicator[] = FILETYPE_INDICATORS;
4157 type = filetype_indicator[f->filetype];
4159 else
4161 if (S_ISREG (mode))
4163 type = C_FILE;
4165 if ((mode & S_ISUID) != 0 && is_colored (C_SETUID))
4166 type = C_SETUID;
4167 else if ((mode & S_ISGID) != 0 && is_colored (C_SETGID))
4168 type = C_SETGID;
4169 else if (is_colored (C_CAP) && f->has_capability)
4170 type = C_CAP;
4171 else if ((mode & S_IXUGO) != 0 && is_colored (C_EXEC))
4172 type = C_EXEC;
4173 else if ((1 < f->stat.st_nlink) && is_colored (C_MULTIHARDLINK))
4174 type = C_MULTIHARDLINK;
4176 else if (S_ISDIR (mode))
4178 type = C_DIR;
4180 if ((mode & S_ISVTX) && (mode & S_IWOTH)
4181 && is_colored (C_STICKY_OTHER_WRITABLE))
4182 type = C_STICKY_OTHER_WRITABLE;
4183 else if ((mode & S_IWOTH) != 0 && is_colored (C_OTHER_WRITABLE))
4184 type = C_OTHER_WRITABLE;
4185 else if ((mode & S_ISVTX) != 0 && is_colored (C_STICKY))
4186 type = C_STICKY;
4188 else if (S_ISLNK (mode))
4189 type = ((!linkok
4190 && (!strncmp (color_indicator[C_LINK].string, "target", 6)
4191 || color_indicator[C_ORPHAN].string))
4192 ? C_ORPHAN : C_LINK);
4193 else if (S_ISFIFO (mode))
4194 type = C_FIFO;
4195 else if (S_ISSOCK (mode))
4196 type = C_SOCK;
4197 else if (S_ISBLK (mode))
4198 type = C_BLK;
4199 else if (S_ISCHR (mode))
4200 type = C_CHR;
4201 else if (S_ISDOOR (mode))
4202 type = C_DOOR;
4203 else
4205 /* Classify a file of some other type as C_ORPHAN. */
4206 type = C_ORPHAN;
4210 /* Check the file's suffix only if still classified as C_FILE. */
4211 ext = NULL;
4212 if (type == C_FILE)
4214 /* Test if NAME has a recognized suffix. */
4216 len = strlen (name);
4217 name += len; /* Pointer to final \0. */
4218 for (ext = color_ext_list; ext != NULL; ext = ext->next)
4220 if (ext->ext.len <= len
4221 && strncmp (name - ext->ext.len, ext->ext.string,
4222 ext->ext.len) == 0)
4223 break;
4228 const struct bin_str *const s
4229 = ext ? &(ext->seq) : &color_indicator[type];
4230 if (s->string != NULL)
4232 /* Need to reset so not dealing with attribute combinations */
4233 if (is_colored (C_NORM))
4234 restore_default_color ();
4235 put_indicator (&color_indicator[C_LEFT]);
4236 put_indicator (s);
4237 put_indicator (&color_indicator[C_RIGHT]);
4238 return true;
4240 else
4241 return false;
4245 /* Output a color indicator (which may contain nulls). */
4246 static void
4247 put_indicator (const struct bin_str *ind)
4249 if (! used_color)
4251 used_color = true;
4252 prep_non_filename_text ();
4255 fwrite (ind->string, ind->len, 1, stdout);
4258 static size_t
4259 length_of_file_name_and_frills (const struct fileinfo *f)
4261 size_t len = 0;
4262 size_t name_width;
4263 char buf[MAX (LONGEST_HUMAN_READABLE + 1, INT_BUFSIZE_BOUND (uintmax_t))];
4265 if (print_inode)
4266 len += 1 + (format == with_commas
4267 ? strlen (umaxtostr (f->stat.st_ino, buf))
4268 : inode_number_width);
4270 if (print_block_size)
4271 len += 1 + (format == with_commas
4272 ? strlen (! f->stat_ok ? "?"
4273 : human_readable (ST_NBLOCKS (f->stat), buf,
4274 human_output_opts, ST_NBLOCKSIZE,
4275 output_block_size))
4276 : block_size_width);
4278 if (print_scontext)
4279 len += 1 + (format == with_commas ? strlen (f->scontext) : scontext_width);
4281 quote_name (NULL, f->name, filename_quoting_options, &name_width);
4282 len += name_width;
4284 if (indicator_style != none)
4286 char c = get_type_indicator (f->stat_ok, f->stat.st_mode, f->filetype);
4287 len += (c != 0);
4290 return len;
4293 static void
4294 print_many_per_line (void)
4296 size_t row; /* Current row. */
4297 size_t cols = calculate_columns (true);
4298 struct column_info const *line_fmt = &column_info[cols - 1];
4300 /* Calculate the number of rows that will be in each column except possibly
4301 for a short column on the right. */
4302 size_t rows = cwd_n_used / cols + (cwd_n_used % cols != 0);
4304 for (row = 0; row < rows; row++)
4306 size_t col = 0;
4307 size_t filesno = row;
4308 size_t pos = 0;
4310 /* Print the next row. */
4311 while (1)
4313 struct fileinfo const *f = sorted_file[filesno];
4314 size_t name_length = length_of_file_name_and_frills (f);
4315 size_t max_name_length = line_fmt->col_arr[col++];
4316 print_file_name_and_frills (f, pos);
4318 filesno += rows;
4319 if (filesno >= cwd_n_used)
4320 break;
4322 indent (pos + name_length, pos + max_name_length);
4323 pos += max_name_length;
4325 putchar ('\n');
4329 static void
4330 print_horizontal (void)
4332 size_t filesno;
4333 size_t pos = 0;
4334 size_t cols = calculate_columns (false);
4335 struct column_info const *line_fmt = &column_info[cols - 1];
4336 struct fileinfo const *f = sorted_file[0];
4337 size_t name_length = length_of_file_name_and_frills (f);
4338 size_t max_name_length = line_fmt->col_arr[0];
4340 /* Print first entry. */
4341 print_file_name_and_frills (f, 0);
4343 /* Now the rest. */
4344 for (filesno = 1; filesno < cwd_n_used; ++filesno)
4346 size_t col = filesno % cols;
4348 if (col == 0)
4350 putchar ('\n');
4351 pos = 0;
4353 else
4355 indent (pos + name_length, pos + max_name_length);
4356 pos += max_name_length;
4359 f = sorted_file[filesno];
4360 print_file_name_and_frills (f, pos);
4362 name_length = length_of_file_name_and_frills (f);
4363 max_name_length = line_fmt->col_arr[col];
4365 putchar ('\n');
4368 static void
4369 print_with_commas (void)
4371 size_t filesno;
4372 size_t pos = 0;
4374 for (filesno = 0; filesno < cwd_n_used; filesno++)
4376 struct fileinfo const *f = sorted_file[filesno];
4377 size_t len = length_of_file_name_and_frills (f);
4379 if (filesno != 0)
4381 char separator;
4383 if (pos + len + 2 < line_length)
4385 pos += 2;
4386 separator = ' ';
4388 else
4390 pos = 0;
4391 separator = '\n';
4394 putchar (',');
4395 putchar (separator);
4398 print_file_name_and_frills (f, pos);
4399 pos += len;
4401 putchar ('\n');
4404 /* Assuming cursor is at position FROM, indent up to position TO.
4405 Use a TAB character instead of two or more spaces whenever possible. */
4407 static void
4408 indent (size_t from, size_t to)
4410 while (from < to)
4412 if (tabsize != 0 && to / tabsize > (from + 1) / tabsize)
4414 putchar ('\t');
4415 from += tabsize - from % tabsize;
4417 else
4419 putchar (' ');
4420 from++;
4425 /* Put DIRNAME/NAME into DEST, handling `.' and `/' properly. */
4426 /* FIXME: maybe remove this function someday. See about using a
4427 non-malloc'ing version of file_name_concat. */
4429 static void
4430 attach (char *dest, const char *dirname, const char *name)
4432 const char *dirnamep = dirname;
4434 /* Copy dirname if it is not ".". */
4435 if (dirname[0] != '.' || dirname[1] != 0)
4437 while (*dirnamep)
4438 *dest++ = *dirnamep++;
4439 /* Add '/' if `dirname' doesn't already end with it. */
4440 if (dirnamep > dirname && dirnamep[-1] != '/')
4441 *dest++ = '/';
4443 while (*name)
4444 *dest++ = *name++;
4445 *dest = 0;
4448 /* Allocate enough column info suitable for the current number of
4449 files and display columns, and initialize the info to represent the
4450 narrowest possible columns. */
4452 static void
4453 init_column_info (void)
4455 size_t i;
4456 size_t max_cols = MIN (max_idx, cwd_n_used);
4458 /* Currently allocated columns in column_info. */
4459 static size_t column_info_alloc;
4461 if (column_info_alloc < max_cols)
4463 size_t new_column_info_alloc;
4464 size_t *p;
4466 if (max_cols < max_idx / 2)
4468 /* The number of columns is far less than the display width
4469 allows. Grow the allocation, but only so that it's
4470 double the current requirements. If the display is
4471 extremely wide, this avoids allocating a lot of memory
4472 that is never needed. */
4473 column_info = xnrealloc (column_info, max_cols,
4474 2 * sizeof *column_info);
4475 new_column_info_alloc = 2 * max_cols;
4477 else
4479 column_info = xnrealloc (column_info, max_idx, sizeof *column_info);
4480 new_column_info_alloc = max_idx;
4483 /* Allocate the new size_t objects by computing the triangle
4484 formula n * (n + 1) / 2, except that we don't need to
4485 allocate the part of the triangle that we've already
4486 allocated. Check for address arithmetic overflow. */
4488 size_t column_info_growth = new_column_info_alloc - column_info_alloc;
4489 size_t s = column_info_alloc + 1 + new_column_info_alloc;
4490 size_t t = s * column_info_growth;
4491 if (s < new_column_info_alloc || t / column_info_growth != s)
4492 xalloc_die ();
4493 p = xnmalloc (t / 2, sizeof *p);
4496 /* Grow the triangle by parceling out the cells just allocated. */
4497 for (i = column_info_alloc; i < new_column_info_alloc; i++)
4499 column_info[i].col_arr = p;
4500 p += i + 1;
4503 column_info_alloc = new_column_info_alloc;
4506 for (i = 0; i < max_cols; ++i)
4508 size_t j;
4510 column_info[i].valid_len = true;
4511 column_info[i].line_len = (i + 1) * MIN_COLUMN_WIDTH;
4512 for (j = 0; j <= i; ++j)
4513 column_info[i].col_arr[j] = MIN_COLUMN_WIDTH;
4517 /* Calculate the number of columns needed to represent the current set
4518 of files in the current display width. */
4520 static size_t
4521 calculate_columns (bool by_columns)
4523 size_t filesno; /* Index into cwd_file. */
4524 size_t cols; /* Number of files across. */
4526 /* Normally the maximum number of columns is determined by the
4527 screen width. But if few files are available this might limit it
4528 as well. */
4529 size_t max_cols = MIN (max_idx, cwd_n_used);
4531 init_column_info ();
4533 /* Compute the maximum number of possible columns. */
4534 for (filesno = 0; filesno < cwd_n_used; ++filesno)
4536 struct fileinfo const *f = sorted_file[filesno];
4537 size_t name_length = length_of_file_name_and_frills (f);
4538 size_t i;
4540 for (i = 0; i < max_cols; ++i)
4542 if (column_info[i].valid_len)
4544 size_t idx = (by_columns
4545 ? filesno / ((cwd_n_used + i) / (i + 1))
4546 : filesno % (i + 1));
4547 size_t real_length = name_length + (idx == i ? 0 : 2);
4549 if (column_info[i].col_arr[idx] < real_length)
4551 column_info[i].line_len += (real_length
4552 - column_info[i].col_arr[idx]);
4553 column_info[i].col_arr[idx] = real_length;
4554 column_info[i].valid_len = (column_info[i].line_len
4555 < line_length);
4561 /* Find maximum allowed columns. */
4562 for (cols = max_cols; 1 < cols; --cols)
4564 if (column_info[cols - 1].valid_len)
4565 break;
4568 return cols;
4571 void
4572 usage (int status)
4574 if (status != EXIT_SUCCESS)
4575 fprintf (stderr, _("Try `%s --help' for more information.\n"),
4576 program_name);
4577 else
4579 printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name);
4580 fputs (_("\
4581 List information about the FILEs (the current directory by default).\n\
4582 Sort entries alphabetically if none of -cftuvSUX nor --sort.\n\
4584 "), stdout);
4585 fputs (_("\
4586 Mandatory arguments to long options are mandatory for short options too.\n\
4587 "), stdout);
4588 fputs (_("\
4589 -a, --all do not ignore entries starting with .\n\
4590 -A, --almost-all do not list implied . and ..\n\
4591 --author with -l, print the author of each file\n\
4592 -b, --escape print C-style escapes for nongraphic characters\n\
4593 "), stdout);
4594 fputs (_("\
4595 --block-size=SIZE use SIZE-byte blocks. See SIZE format below\n\
4596 -B, --ignore-backups do not list implied entries ending with ~\n\
4597 -c with -lt: sort by, and show, ctime (time of last\n\
4598 modification of file status information)\n\
4599 with -l: show ctime and sort by name\n\
4600 otherwise: sort by ctime\n\
4601 "), stdout);
4602 fputs (_("\
4603 -C list entries by columns\n\
4604 --color[=WHEN] colorize the output. WHEN defaults to `always'\n\
4605 or can be `never' or `auto'. More info below\n\
4606 -d, --directory list directory entries instead of contents,\n\
4607 and do not dereference symbolic links\n\
4608 -D, --dired generate output designed for Emacs' dired mode\n\
4609 "), stdout);
4610 fputs (_("\
4611 -f do not sort, enable -aU, disable -ls --color\n\
4612 -F, --classify append indicator (one of */=>@|) to entries\n\
4613 --file-type likewise, except do not append `*'\n\
4614 --format=WORD across -x, commas -m, horizontal -x, long -l,\n\
4615 single-column -1, verbose -l, vertical -C\n\
4616 --full-time like -l --time-style=full-iso\n\
4617 "), stdout);
4618 fputs (_("\
4619 -g like -l, but do not list owner\n\
4620 "), stdout);
4621 fputs (_("\
4622 --group-directories-first\n\
4623 group directories before files.\n\
4624 augment with a --sort option, but any\n\
4625 use of --sort=none (-U) disables grouping\n\
4626 "), stdout);
4627 fputs (_("\
4628 -G, --no-group in a long listing, don't print group names\n\
4629 -h, --human-readable with -l, print sizes in human readable format\n\
4630 (e.g., 1K 234M 2G)\n\
4631 --si likewise, but use powers of 1000 not 1024\n\
4632 "), stdout);
4633 fputs (_("\
4634 -H, --dereference-command-line\n\
4635 follow symbolic links listed on the command line\n\
4636 --dereference-command-line-symlink-to-dir\n\
4637 follow each command line symbolic link\n\
4638 that points to a directory\n\
4639 --hide=PATTERN do not list implied entries matching shell PATTERN\n\
4640 (overridden by -a or -A)\n\
4641 "), stdout);
4642 fputs (_("\
4643 --indicator-style=WORD append indicator with style WORD to entry names:\n\
4644 none (default), slash (-p),\n\
4645 file-type (--file-type), classify (-F)\n\
4646 -i, --inode print the index number of each file\n\
4647 -I, --ignore=PATTERN do not list implied entries matching shell PATTERN\n\
4648 -k like --block-size=1K\n\
4649 "), stdout);
4650 fputs (_("\
4651 -l use a long listing format\n\
4652 -L, --dereference when showing file information for a symbolic\n\
4653 link, show information for the file the link\n\
4654 references rather than for the link itself\n\
4655 -m fill width with a comma separated list of entries\n\
4656 "), stdout);
4657 fputs (_("\
4658 -n, --numeric-uid-gid like -l, but list numeric user and group IDs\n\
4659 -N, --literal print raw entry names (don't treat e.g. control\n\
4660 characters specially)\n\
4661 -o like -l, but do not list group information\n\
4662 -p, --indicator-style=slash\n\
4663 append / indicator to directories\n\
4664 "), stdout);
4665 fputs (_("\
4666 -q, --hide-control-chars print ? instead of non graphic characters\n\
4667 --show-control-chars show non graphic characters as-is (default\n\
4668 unless program is `ls' and output is a terminal)\n\
4669 -Q, --quote-name enclose entry names in double quotes\n\
4670 --quoting-style=WORD use quoting style WORD for entry names:\n\
4671 literal, locale, shell, shell-always, c, escape\n\
4672 "), stdout);
4673 fputs (_("\
4674 -r, --reverse reverse order while sorting\n\
4675 -R, --recursive list subdirectories recursively\n\
4676 -s, --size print the allocated size of each file, in blocks\n\
4677 "), stdout);
4678 fputs (_("\
4679 -S sort by file size\n\
4680 --sort=WORD sort by WORD instead of name: none -U,\n\
4681 extension -X, size -S, time -t, version -v\n\
4682 --time=WORD with -l, show time as WORD instead of modification\n\
4683 time: atime -u, access -u, use -u, ctime -c,\n\
4684 or status -c; use specified time as sort key\n\
4685 if --sort=time\n\
4686 "), stdout);
4687 fputs (_("\
4688 --time-style=STYLE with -l, show times using style STYLE:\n\
4689 full-iso, long-iso, iso, locale, +FORMAT.\n\
4690 FORMAT is interpreted like `date'; if FORMAT is\n\
4691 FORMAT1<newline>FORMAT2, FORMAT1 applies to\n\
4692 non-recent files and FORMAT2 to recent files;\n\
4693 if STYLE is prefixed with `posix-', STYLE\n\
4694 takes effect only outside the POSIX locale\n\
4695 "), stdout);
4696 fputs (_("\
4697 -t sort by modification time\n\
4698 -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n\
4699 "), stdout);
4700 fputs (_("\
4701 -u with -lt: sort by, and show, access time\n\
4702 with -l: show access time and sort by name\n\
4703 otherwise: sort by access time\n\
4704 -U do not sort; list entries in directory order\n\
4705 -v natural sort of (version) numbers within text\n\
4706 "), stdout);
4707 fputs (_("\
4708 -w, --width=COLS assume screen width instead of current value\n\
4709 -x list entries by lines instead of by columns\n\
4710 -X sort alphabetically by entry extension\n\
4711 -Z, --context print any SELinux security context of each file\n\
4712 -1 list one file per line\n\
4713 "), stdout);
4714 fputs (HELP_OPTION_DESCRIPTION, stdout);
4715 fputs (VERSION_OPTION_DESCRIPTION, stdout);
4716 emit_size_note ();
4717 fputs (_("\
4719 Using color to distinguish file types is disabled both by default and\n\
4720 with --color=never. With --color=auto, ls emits color codes only when\n\
4721 standard output is connected to a terminal. The LS_COLORS environment\n\
4722 variable can change the settings. Use the dircolors command to set it.\n\
4723 "), stdout);
4724 fputs (_("\
4726 Exit status:\n\
4727 0 if OK,\n\
4728 1 if minor problems (e.g., cannot access subdirectory),\n\
4729 2 if serious trouble (e.g., cannot access command-line argument).\n\
4730 "), stdout);
4731 emit_ancillary_info ();
4733 exit (status);