ls: avoid redundant processing when already escaping
[coreutils.git] / src / ls.c
blobc22c536c04731ff25c9cb265c2e8e7952381f4ad
1 /* 'dir', 'vdir' and 'ls' directory listing programs for GNU.
2 Copyright (C) 1985-2015 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* If ls_mode is LS_MULTI_COL,
18 the multi-column format is the default regardless
19 of the type of output device.
20 This is for the 'dir' program.
22 If ls_mode is LS_LONG_FORMAT,
23 the long format is the default regardless of the
24 type of output device.
25 This is for the 'vdir' program.
27 If ls_mode is LS_LS,
28 the output format depends on whether the output
29 device is a terminal.
30 This is for the 'ls' program. */
32 /* Written by Richard Stallman and David MacKenzie. */
34 /* Color support by Peter Anvin <Peter.Anvin@linux.org> and Dennis
35 Flaherty <dennisf@denix.elk.miles.com> based on original patches by
36 Greg Lee <lee@uhunix.uhcc.hawaii.edu>. */
38 #include <config.h>
39 #include <sys/types.h>
41 #include <termios.h>
42 #if HAVE_STROPTS_H
43 # include <stropts.h>
44 #endif
45 #include <sys/ioctl.h>
47 #ifdef WINSIZE_IN_PTEM
48 # include <sys/stream.h>
49 # include <sys/ptem.h>
50 #endif
52 #include <stdio.h>
53 #include <assert.h>
54 #include <setjmp.h>
55 #include <pwd.h>
56 #include <getopt.h>
57 #include <signal.h>
58 #include <selinux/selinux.h>
59 #include <wchar.h>
61 #if HAVE_LANGINFO_CODESET
62 # include <langinfo.h>
63 #endif
65 /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is
66 present. */
67 #ifndef SA_NOCLDSTOP
68 # define SA_NOCLDSTOP 0
69 # define sigprocmask(How, Set, Oset) /* empty */
70 # define sigset_t int
71 # if ! HAVE_SIGINTERRUPT
72 # define siginterrupt(sig, flag) /* empty */
73 # endif
74 #endif
76 /* NonStop circa 2011 lacks both SA_RESTART and siginterrupt, so don't
77 restart syscalls after a signal handler fires. This may cause
78 colors to get messed up on the screen if 'ls' is interrupted, but
79 that's the best we can do on such a platform. */
80 #ifndef SA_RESTART
81 # define SA_RESTART 0
82 #endif
84 #include "system.h"
85 #include <fnmatch.h>
87 #include "acl.h"
88 #include "argmatch.h"
89 #include "dev-ino.h"
90 #include "error.h"
91 #include "filenamecat.h"
92 #include "hard-locale.h"
93 #include "hash.h"
94 #include "human.h"
95 #include "filemode.h"
96 #include "filevercmp.h"
97 #include "idcache.h"
98 #include "ls.h"
99 #include "mbswidth.h"
100 #include "mpsort.h"
101 #include "obstack.h"
102 #include "quote.h"
103 #include "smack.h"
104 #include "stat-size.h"
105 #include "stat-time.h"
106 #include "strftime.h"
107 #include "xdectoint.h"
108 #include "xstrtol.h"
109 #include "areadlink.h"
110 #include "mbsalign.h"
111 #include "dircolors.h"
113 /* Include <sys/capability.h> last to avoid a clash of <sys/types.h>
114 include guards with some premature versions of libcap.
115 For more details, see <http://bugzilla.redhat.com/483548>. */
116 #ifdef HAVE_CAP
117 # include <sys/capability.h>
118 #endif
120 #define PROGRAM_NAME (ls_mode == LS_LS ? "ls" \
121 : (ls_mode == LS_MULTI_COL \
122 ? "dir" : "vdir"))
124 #define AUTHORS \
125 proper_name ("Richard M. Stallman"), \
126 proper_name ("David MacKenzie")
128 #define obstack_chunk_alloc malloc
129 #define obstack_chunk_free free
131 /* Return an int indicating the result of comparing two integers.
132 Subtracting doesn't always work, due to overflow. */
133 #define longdiff(a, b) ((a) < (b) ? -1 : (a) > (b))
135 /* Unix-based readdir implementations have historically returned a dirent.d_ino
136 value that is sometimes not equal to the stat-obtained st_ino value for
137 that same entry. This error occurs for a readdir entry that refers
138 to a mount point. readdir's error is to return the inode number of
139 the underlying directory -- one that typically cannot be stat'ed, as
140 long as a file system is mounted on that directory. RELIABLE_D_INO
141 encapsulates whether we can use the more efficient approach of relying
142 on readdir-supplied d_ino values, or whether we must incur the cost of
143 calling stat or lstat to obtain each guaranteed-valid inode number. */
145 #ifndef READDIR_LIES_ABOUT_MOUNTPOINT_D_INO
146 # define READDIR_LIES_ABOUT_MOUNTPOINT_D_INO 1
147 #endif
149 #if READDIR_LIES_ABOUT_MOUNTPOINT_D_INO
150 # define RELIABLE_D_INO(dp) NOT_AN_INODE_NUMBER
151 #else
152 # define RELIABLE_D_INO(dp) D_INO (dp)
153 #endif
155 #if ! HAVE_STRUCT_STAT_ST_AUTHOR
156 # define st_author st_uid
157 #endif
159 enum filetype
161 unknown,
162 fifo,
163 chardev,
164 directory,
165 blockdev,
166 normal,
167 symbolic_link,
168 sock,
169 whiteout,
170 arg_directory
173 /* Display letters and indicators for each filetype.
174 Keep these in sync with enum filetype. */
175 static char const filetype_letter[] = "?pcdb-lswd";
177 /* Ensure that filetype and filetype_letter have the same
178 number of elements. */
179 verify (sizeof filetype_letter - 1 == arg_directory + 1);
181 #define FILETYPE_INDICATORS \
183 C_ORPHAN, C_FIFO, C_CHR, C_DIR, C_BLK, C_FILE, \
184 C_LINK, C_SOCK, C_FILE, C_DIR \
187 enum acl_type
189 ACL_T_NONE,
190 ACL_T_LSM_CONTEXT_ONLY,
191 ACL_T_YES
194 struct fileinfo
196 /* The file name. */
197 char *name;
199 /* For symbolic link, name of the file linked to, otherwise zero. */
200 char *linkname;
202 struct stat stat;
204 enum filetype filetype;
206 /* For symbolic link and long listing, st_mode of file linked to, otherwise
207 zero. */
208 mode_t linkmode;
210 /* security context. */
211 char *scontext;
213 bool stat_ok;
215 /* For symbolic link and color printing, true if linked-to file
216 exists, otherwise false. */
217 bool linkok;
219 /* For long listings, true if the file has an access control list,
220 or a security context. */
221 enum acl_type acl_type;
223 /* For color listings, true if a regular file has capability info. */
224 bool has_capability;
227 #define LEN_STR_PAIR(s) sizeof (s) - 1, s
229 /* Null is a valid character in a color indicator (think about Epson
230 printers, for example) so we have to use a length/buffer string
231 type. */
233 struct bin_str
235 size_t len; /* Number of bytes */
236 const char *string; /* Pointer to the same */
239 #if ! HAVE_TCGETPGRP
240 # define tcgetpgrp(Fd) 0
241 #endif
243 static size_t quote_name (FILE *out, const char *name,
244 struct quoting_options const *options,
245 size_t *width);
246 static char *make_link_name (char const *name, char const *linkname);
247 static int decode_switches (int argc, char **argv);
248 static bool file_ignored (char const *name);
249 static uintmax_t gobble_file (char const *name, enum filetype type,
250 ino_t inode, bool command_line_arg,
251 char const *dirname);
252 static bool print_color_indicator (const struct fileinfo *f,
253 bool symlink_target);
254 static void put_indicator (const struct bin_str *ind);
255 static void add_ignore_pattern (const char *pattern);
256 static void attach (char *dest, const char *dirname, const char *name);
257 static void clear_files (void);
258 static void extract_dirs_from_files (char const *dirname,
259 bool command_line_arg);
260 static void get_link_name (char const *filename, struct fileinfo *f,
261 bool command_line_arg);
262 static void indent (size_t from, size_t to);
263 static size_t calculate_columns (bool by_columns);
264 static void print_current_files (void);
265 static void print_dir (char const *name, char const *realname,
266 bool command_line_arg);
267 static size_t print_file_name_and_frills (const struct fileinfo *f,
268 size_t start_col);
269 static void print_horizontal (void);
270 static int format_user_width (uid_t u);
271 static int format_group_width (gid_t g);
272 static void print_long_format (const struct fileinfo *f);
273 static void print_many_per_line (void);
274 static size_t print_name_with_quoting (const struct fileinfo *f,
275 bool symlink_target,
276 struct obstack *stack,
277 size_t start_col);
278 static void prep_non_filename_text (void);
279 static bool print_type_indicator (bool stat_ok, mode_t mode,
280 enum filetype type);
281 static void print_with_separator (char sep);
282 static void queue_directory (char const *name, char const *realname,
283 bool command_line_arg);
284 static void sort_files (void);
285 static void parse_ls_color (void);
287 static void getenv_quoting_style (void);
289 /* Initial size of hash table.
290 Most hierarchies are likely to be shallower than this. */
291 #define INITIAL_TABLE_SIZE 30
293 /* The set of 'active' directories, from the current command-line argument
294 to the level in the hierarchy at which files are being listed.
295 A directory is represented by its device and inode numbers (struct dev_ino).
296 A directory is added to this set when ls begins listing it or its
297 entries, and it is removed from the set just after ls has finished
298 processing it. This set is used solely to detect loops, e.g., with
299 mkdir loop; cd loop; ln -s ../loop sub; ls -RL */
300 static Hash_table *active_dir_set;
302 #define LOOP_DETECT (!!active_dir_set)
304 /* The table of files in the current directory:
306 'cwd_file' points to a vector of 'struct fileinfo', one per file.
307 'cwd_n_alloc' is the number of elements space has been allocated for.
308 'cwd_n_used' is the number actually in use. */
310 /* Address of block containing the files that are described. */
311 static struct fileinfo *cwd_file;
313 /* Length of block that 'cwd_file' points to, measured in files. */
314 static size_t cwd_n_alloc;
316 /* Index of first unused slot in 'cwd_file'. */
317 static size_t cwd_n_used;
319 /* Vector of pointers to files, in proper sorted order, and the number
320 of entries allocated for it. */
321 static void **sorted_file;
322 static size_t sorted_file_alloc;
324 /* When true, in a color listing, color each symlink name according to the
325 type of file it points to. Otherwise, color them according to the 'ln'
326 directive in LS_COLORS. Dangling (orphan) symlinks are treated specially,
327 regardless. This is set when 'ln=target' appears in LS_COLORS. */
329 static bool color_symlink_as_referent;
331 /* mode of appropriate file for colorization */
332 #define FILE_OR_LINK_MODE(File) \
333 ((color_symlink_as_referent && (File)->linkok) \
334 ? (File)->linkmode : (File)->stat.st_mode)
337 /* Record of one pending directory waiting to be listed. */
339 struct pending
341 char *name;
342 /* If the directory is actually the file pointed to by a symbolic link we
343 were told to list, 'realname' will contain the name of the symbolic
344 link, otherwise zero. */
345 char *realname;
346 bool command_line_arg;
347 struct pending *next;
350 static struct pending *pending_dirs;
352 /* Current time in seconds and nanoseconds since 1970, updated as
353 needed when deciding whether a file is recent. */
355 static struct timespec current_time;
357 static bool print_scontext;
358 static char UNKNOWN_SECURITY_CONTEXT[] = "?";
360 /* Whether any of the files has an ACL. This affects the width of the
361 mode column. */
363 static bool any_has_acl;
365 /* The number of columns to use for columns containing inode numbers,
366 block sizes, link counts, owners, groups, authors, major device
367 numbers, minor device numbers, and file sizes, respectively. */
369 static int inode_number_width;
370 static int block_size_width;
371 static int nlink_width;
372 static int scontext_width;
373 static int owner_width;
374 static int group_width;
375 static int author_width;
376 static int major_device_number_width;
377 static int minor_device_number_width;
378 static int file_size_width;
380 /* Option flags */
382 /* long_format for lots of info, one per line.
383 one_per_line for just names, one per line.
384 many_per_line for just names, many per line, sorted vertically.
385 horizontal for just names, many per line, sorted horizontally.
386 with_commas for just names, many per line, separated by commas.
388 -l (and other options that imply -l), -1, -C, -x and -m control
389 this parameter. */
391 enum format
393 long_format, /* -l and other options that imply -l */
394 one_per_line, /* -1 */
395 many_per_line, /* -C */
396 horizontal, /* -x */
397 with_commas /* -m */
400 static enum format format;
402 /* 'full-iso' uses full ISO-style dates and times. 'long-iso' uses longer
403 ISO-style time stamps, though shorter than 'full-iso'. 'iso' uses shorter
404 ISO-style time stamps. 'locale' uses locale-dependent time stamps. */
405 enum time_style
407 full_iso_time_style, /* --time-style=full-iso */
408 long_iso_time_style, /* --time-style=long-iso */
409 iso_time_style, /* --time-style=iso */
410 locale_time_style /* --time-style=locale */
413 static char const *const time_style_args[] =
415 "full-iso", "long-iso", "iso", "locale", NULL
417 static enum time_style const time_style_types[] =
419 full_iso_time_style, long_iso_time_style, iso_time_style,
420 locale_time_style
422 ARGMATCH_VERIFY (time_style_args, time_style_types);
424 /* Type of time to print or sort by. Controlled by -c and -u.
425 The values of each item of this enum are important since they are
426 used as indices in the sort functions array (see sort_files()). */
428 enum time_type
430 time_mtime, /* default */
431 time_ctime, /* -c */
432 time_atime, /* -u */
433 time_numtypes /* the number of elements of this enum */
436 static enum time_type time_type;
438 /* The file characteristic to sort by. Controlled by -t, -S, -U, -X, -v.
439 The values of each item of this enum are important since they are
440 used as indices in the sort functions array (see sort_files()). */
442 enum sort_type
444 sort_none = -1, /* -U */
445 sort_name, /* default */
446 sort_extension, /* -X */
447 sort_size, /* -S */
448 sort_version, /* -v */
449 sort_time, /* -t */
450 sort_numtypes /* the number of elements of this enum */
453 static enum sort_type sort_type;
455 /* Direction of sort.
456 false means highest first if numeric,
457 lowest first if alphabetic;
458 these are the defaults.
459 true means the opposite order in each case. -r */
461 static bool sort_reverse;
463 /* True means to display owner information. -g turns this off. */
465 static bool print_owner = true;
467 /* True means to display author information. */
469 static bool print_author;
471 /* True means to display group information. -G and -o turn this off. */
473 static bool print_group = true;
475 /* True means print the user and group id's as numbers rather
476 than as names. -n */
478 static bool numeric_ids;
480 /* True means mention the size in blocks of each file. -s */
482 static bool print_block_size;
484 /* Human-readable options for output, when printing block counts. */
485 static int human_output_opts;
487 /* The units to use when printing block counts. */
488 static uintmax_t output_block_size;
490 /* Likewise, but for file sizes. */
491 static int file_human_output_opts;
492 static uintmax_t file_output_block_size = 1;
494 /* Follow the output with a special string. Using this format,
495 Emacs' dired mode starts up twice as fast, and can handle all
496 strange characters in file names. */
497 static bool dired;
499 /* 'none' means don't mention the type of files.
500 'slash' means mention directories only, with a '/'.
501 'file_type' means mention file types.
502 'classify' means mention file types and mark executables.
504 Controlled by -F, -p, and --indicator-style. */
506 enum indicator_style
508 none, /* --indicator-style=none */
509 slash, /* -p, --indicator-style=slash */
510 file_type, /* --indicator-style=file-type */
511 classify /* -F, --indicator-style=classify */
514 static enum indicator_style indicator_style;
516 /* Names of indicator styles. */
517 static char const *const indicator_style_args[] =
519 "none", "slash", "file-type", "classify", NULL
521 static enum indicator_style const indicator_style_types[] =
523 none, slash, file_type, classify
525 ARGMATCH_VERIFY (indicator_style_args, indicator_style_types);
527 /* True means use colors to mark types. Also define the different
528 colors as well as the stuff for the LS_COLORS environment variable.
529 The LS_COLORS variable is now in a termcap-like format. */
531 static bool print_with_color;
533 /* Whether we used any colors in the output so far. If so, we will
534 need to restore the default color later. If not, we will need to
535 call prep_non_filename_text before using color for the first time. */
537 static bool used_color = false;
539 enum color_type
541 color_never, /* 0: default or --color=never */
542 color_always, /* 1: --color=always */
543 color_if_tty /* 2: --color=tty */
546 enum Dereference_symlink
548 DEREF_UNDEFINED = 1,
549 DEREF_NEVER,
550 DEREF_COMMAND_LINE_ARGUMENTS, /* -H */
551 DEREF_COMMAND_LINE_SYMLINK_TO_DIR, /* the default, in certain cases */
552 DEREF_ALWAYS /* -L */
555 enum indicator_no
557 C_LEFT, C_RIGHT, C_END, C_RESET, C_NORM, C_FILE, C_DIR, C_LINK,
558 C_FIFO, C_SOCK,
559 C_BLK, C_CHR, C_MISSING, C_ORPHAN, C_EXEC, C_DOOR, C_SETUID, C_SETGID,
560 C_STICKY, C_OTHER_WRITABLE, C_STICKY_OTHER_WRITABLE, C_CAP, C_MULTIHARDLINK,
561 C_CLR_TO_EOL
564 static const char *const indicator_name[]=
566 "lc", "rc", "ec", "rs", "no", "fi", "di", "ln", "pi", "so",
567 "bd", "cd", "mi", "or", "ex", "do", "su", "sg", "st",
568 "ow", "tw", "ca", "mh", "cl", NULL
571 struct color_ext_type
573 struct bin_str ext; /* The extension we're looking for */
574 struct bin_str seq; /* The sequence to output when we do */
575 struct color_ext_type *next; /* Next in list */
578 static struct bin_str color_indicator[] =
580 { LEN_STR_PAIR ("\033[") }, /* lc: Left of color sequence */
581 { LEN_STR_PAIR ("m") }, /* rc: Right of color sequence */
582 { 0, NULL }, /* ec: End color (replaces lc+rs+rc) */
583 { LEN_STR_PAIR ("0") }, /* rs: Reset to ordinary colors */
584 { 0, NULL }, /* no: Normal */
585 { 0, NULL }, /* fi: File: default */
586 { LEN_STR_PAIR ("01;34") }, /* di: Directory: bright blue */
587 { LEN_STR_PAIR ("01;36") }, /* ln: Symlink: bright cyan */
588 { LEN_STR_PAIR ("33") }, /* pi: Pipe: yellow/brown */
589 { LEN_STR_PAIR ("01;35") }, /* so: Socket: bright magenta */
590 { LEN_STR_PAIR ("01;33") }, /* bd: Block device: bright yellow */
591 { LEN_STR_PAIR ("01;33") }, /* cd: Char device: bright yellow */
592 { 0, NULL }, /* mi: Missing file: undefined */
593 { 0, NULL }, /* or: Orphaned symlink: undefined */
594 { LEN_STR_PAIR ("01;32") }, /* ex: Executable: bright green */
595 { LEN_STR_PAIR ("01;35") }, /* do: Door: bright magenta */
596 { LEN_STR_PAIR ("37;41") }, /* su: setuid: white on red */
597 { LEN_STR_PAIR ("30;43") }, /* sg: setgid: black on yellow */
598 { LEN_STR_PAIR ("37;44") }, /* st: sticky: black on blue */
599 { LEN_STR_PAIR ("34;42") }, /* ow: other-writable: blue on green */
600 { LEN_STR_PAIR ("30;42") }, /* tw: ow w/ sticky: black on green */
601 { LEN_STR_PAIR ("30;41") }, /* ca: black on red */
602 { 0, NULL }, /* mh: disabled by default */
603 { LEN_STR_PAIR ("\033[K") }, /* cl: clear to end of line */
606 /* FIXME: comment */
607 static struct color_ext_type *color_ext_list = NULL;
609 /* Buffer for color sequences */
610 static char *color_buf;
612 /* True means to check for orphaned symbolic link, for displaying
613 colors. */
615 static bool check_symlink_color;
617 /* True means mention the inode number of each file. -i */
619 static bool print_inode;
621 /* What to do with symbolic links. Affected by -d, -F, -H, -l (and
622 other options that imply -l), and -L. */
624 static enum Dereference_symlink dereference;
626 /* True means when a directory is found, display info on its
627 contents. -R */
629 static bool recursive;
631 /* True means when an argument is a directory name, display info
632 on it itself. -d */
634 static bool immediate_dirs;
636 /* True means that directories are grouped before files. */
638 static bool directories_first;
640 /* Which files to ignore. */
642 static enum
644 /* Ignore files whose names start with '.', and files specified by
645 --hide and --ignore. */
646 IGNORE_DEFAULT,
648 /* Ignore '.', '..', and files specified by --ignore. */
649 IGNORE_DOT_AND_DOTDOT,
651 /* Ignore only files specified by --ignore. */
652 IGNORE_MINIMAL
653 } ignore_mode;
655 /* A linked list of shell-style globbing patterns. If a non-argument
656 file name matches any of these patterns, it is ignored.
657 Controlled by -I. Multiple -I options accumulate.
658 The -B option adds '*~' and '.*~' to this list. */
660 struct ignore_pattern
662 const char *pattern;
663 struct ignore_pattern *next;
666 static struct ignore_pattern *ignore_patterns;
668 /* Similar to IGNORE_PATTERNS, except that -a or -A causes this
669 variable itself to be ignored. */
670 static struct ignore_pattern *hide_patterns;
672 /* True means output nongraphic chars in file names as '?'.
673 (-q, --hide-control-chars)
674 qmark_funny_chars and the quoting style (-Q, --quoting-style=WORD) are
675 independent. The algorithm is: first, obey the quoting style to get a
676 string representing the file name; then, if qmark_funny_chars is set,
677 replace all nonprintable chars in that string with '?'. It's necessary
678 to replace nonprintable chars even in quoted strings, because we don't
679 want to mess up the terminal if control chars get sent to it, and some
680 quoting methods pass through control chars as-is. */
681 static bool qmark_funny_chars;
683 /* Quoting options for file and dir name output. */
685 static struct quoting_options *filename_quoting_options;
686 static struct quoting_options *dirname_quoting_options;
688 /* The number of chars per hardware tab stop. Setting this to zero
689 inhibits the use of TAB characters for separating columns. -T */
690 static size_t tabsize;
692 /* True means print each directory name before listing it. */
694 static bool print_dir_name;
696 /* The line length to use for breaking lines in many-per-line format.
697 Can be set with -w. */
699 static size_t line_length;
701 /* The local time zone rules, as per the TZ environment variable. */
703 static timezone_t localtz;
705 /* If true, the file listing format requires that stat be called on
706 each file. */
708 static bool format_needs_stat;
710 /* Similar to 'format_needs_stat', but set if only the file type is
711 needed. */
713 static bool format_needs_type;
715 /* An arbitrary limit on the number of bytes in a printed time stamp.
716 This is set to a relatively small value to avoid the need to worry
717 about denial-of-service attacks on servers that run "ls" on behalf
718 of remote clients. 1000 bytes should be enough for any practical
719 time stamp format. */
721 enum { TIME_STAMP_LEN_MAXIMUM = MAX (1000, INT_STRLEN_BOUND (time_t)) };
723 /* strftime formats for non-recent and recent files, respectively, in
724 -l output. */
726 static char const *long_time_format[2] =
728 /* strftime format for non-recent files (older than 6 months), in
729 -l output. This should contain the year, month and day (at
730 least), in an order that is understood by people in your
731 locale's territory. Please try to keep the number of used
732 screen columns small, because many people work in windows with
733 only 80 columns. But make this as wide as the other string
734 below, for recent files. */
735 /* TRANSLATORS: ls output needs to be aligned for ease of reading,
736 so be wary of using variable width fields from the locale.
737 Note %b is handled specially by ls and aligned correctly.
738 Note also that specifying a width as in %5b is erroneous as strftime
739 will count bytes rather than characters in multibyte locales. */
740 N_("%b %e %Y"),
741 /* strftime format for recent files (younger than 6 months), in -l
742 output. This should contain the month, day and time (at
743 least), in an order that is understood by people in your
744 locale's territory. Please try to keep the number of used
745 screen columns small, because many people work in windows with
746 only 80 columns. But make this as wide as the other string
747 above, for non-recent files. */
748 /* TRANSLATORS: ls output needs to be aligned for ease of reading,
749 so be wary of using variable width fields from the locale.
750 Note %b is handled specially by ls and aligned correctly.
751 Note also that specifying a width as in %5b is erroneous as strftime
752 will count bytes rather than characters in multibyte locales. */
753 N_("%b %e %H:%M")
756 /* The set of signals that are caught. */
758 static sigset_t caught_signals;
760 /* If nonzero, the value of the pending fatal signal. */
762 static sig_atomic_t volatile interrupt_signal;
764 /* A count of the number of pending stop signals that have been received. */
766 static sig_atomic_t volatile stop_signal_count;
768 /* Desired exit status. */
770 static int exit_status;
772 /* Exit statuses. */
773 enum
775 /* "ls" had a minor problem. E.g., while processing a directory,
776 ls obtained the name of an entry via readdir, yet was later
777 unable to stat that name. This happens when listing a directory
778 in which entries are actively being removed or renamed. */
779 LS_MINOR_PROBLEM = 1,
781 /* "ls" had more serious trouble (e.g., memory exhausted, invalid
782 option or failure to stat a command line argument. */
783 LS_FAILURE = 2
786 /* For long options that have no equivalent short option, use a
787 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
788 enum
790 AUTHOR_OPTION = CHAR_MAX + 1,
791 BLOCK_SIZE_OPTION,
792 COLOR_OPTION,
793 DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION,
794 FILE_TYPE_INDICATOR_OPTION,
795 FORMAT_OPTION,
796 FULL_TIME_OPTION,
797 GROUP_DIRECTORIES_FIRST_OPTION,
798 HIDE_OPTION,
799 INDICATOR_STYLE_OPTION,
800 QUOTING_STYLE_OPTION,
801 SHOW_CONTROL_CHARS_OPTION,
802 SI_OPTION,
803 SORT_OPTION,
804 TIME_OPTION,
805 TIME_STYLE_OPTION
808 static struct option const long_options[] =
810 {"all", no_argument, NULL, 'a'},
811 {"escape", no_argument, NULL, 'b'},
812 {"directory", no_argument, NULL, 'd'},
813 {"dired", no_argument, NULL, 'D'},
814 {"full-time", no_argument, NULL, FULL_TIME_OPTION},
815 {"group-directories-first", no_argument, NULL,
816 GROUP_DIRECTORIES_FIRST_OPTION},
817 {"human-readable", no_argument, NULL, 'h'},
818 {"inode", no_argument, NULL, 'i'},
819 {"kibibytes", no_argument, NULL, 'k'},
820 {"numeric-uid-gid", no_argument, NULL, 'n'},
821 {"no-group", no_argument, NULL, 'G'},
822 {"hide-control-chars", no_argument, NULL, 'q'},
823 {"reverse", no_argument, NULL, 'r'},
824 {"size", no_argument, NULL, 's'},
825 {"width", required_argument, NULL, 'w'},
826 {"almost-all", no_argument, NULL, 'A'},
827 {"ignore-backups", no_argument, NULL, 'B'},
828 {"classify", no_argument, NULL, 'F'},
829 {"file-type", no_argument, NULL, FILE_TYPE_INDICATOR_OPTION},
830 {"si", no_argument, NULL, SI_OPTION},
831 {"dereference-command-line", no_argument, NULL, 'H'},
832 {"dereference-command-line-symlink-to-dir", no_argument, NULL,
833 DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION},
834 {"hide", required_argument, NULL, HIDE_OPTION},
835 {"ignore", required_argument, NULL, 'I'},
836 {"indicator-style", required_argument, NULL, INDICATOR_STYLE_OPTION},
837 {"dereference", no_argument, NULL, 'L'},
838 {"literal", no_argument, NULL, 'N'},
839 {"quote-name", no_argument, NULL, 'Q'},
840 {"quoting-style", required_argument, NULL, QUOTING_STYLE_OPTION},
841 {"recursive", no_argument, NULL, 'R'},
842 {"format", required_argument, NULL, FORMAT_OPTION},
843 {"show-control-chars", no_argument, NULL, SHOW_CONTROL_CHARS_OPTION},
844 {"sort", required_argument, NULL, SORT_OPTION},
845 {"tabsize", required_argument, NULL, 'T'},
846 {"time", required_argument, NULL, TIME_OPTION},
847 {"time-style", required_argument, NULL, TIME_STYLE_OPTION},
848 {"color", optional_argument, NULL, COLOR_OPTION},
849 {"block-size", required_argument, NULL, BLOCK_SIZE_OPTION},
850 {"context", no_argument, 0, 'Z'},
851 {"author", no_argument, NULL, AUTHOR_OPTION},
852 {GETOPT_HELP_OPTION_DECL},
853 {GETOPT_VERSION_OPTION_DECL},
854 {NULL, 0, NULL, 0}
857 static char const *const format_args[] =
859 "verbose", "long", "commas", "horizontal", "across",
860 "vertical", "single-column", NULL
862 static enum format const format_types[] =
864 long_format, long_format, with_commas, horizontal, horizontal,
865 many_per_line, one_per_line
867 ARGMATCH_VERIFY (format_args, format_types);
869 static char const *const sort_args[] =
871 "none", "time", "size", "extension", "version", NULL
873 static enum sort_type const sort_types[] =
875 sort_none, sort_time, sort_size, sort_extension, sort_version
877 ARGMATCH_VERIFY (sort_args, sort_types);
879 static char const *const time_args[] =
881 "atime", "access", "use", "ctime", "status", NULL
883 static enum time_type const time_types[] =
885 time_atime, time_atime, time_atime, time_ctime, time_ctime
887 ARGMATCH_VERIFY (time_args, time_types);
889 static char const *const color_args[] =
891 /* force and none are for compatibility with another color-ls version */
892 "always", "yes", "force",
893 "never", "no", "none",
894 "auto", "tty", "if-tty", NULL
896 static enum color_type const color_types[] =
898 color_always, color_always, color_always,
899 color_never, color_never, color_never,
900 color_if_tty, color_if_tty, color_if_tty
902 ARGMATCH_VERIFY (color_args, color_types);
904 /* Information about filling a column. */
905 struct column_info
907 bool valid_len;
908 size_t line_len;
909 size_t *col_arr;
912 /* Array with information about column filledness. */
913 static struct column_info *column_info;
915 /* Maximum number of columns ever possible for this display. */
916 static size_t max_idx;
918 /* The minimum width of a column is 3: 1 character for the name and 2
919 for the separating white space. */
920 #define MIN_COLUMN_WIDTH 3
923 /* This zero-based index is used solely with the --dired option.
924 When that option is in effect, this counter is incremented for each
925 byte of output generated by this program so that the beginning
926 and ending indices (in that output) of every file name can be recorded
927 and later output themselves. */
928 static size_t dired_pos;
930 #define DIRED_PUTCHAR(c) do {putchar ((c)); ++dired_pos;} while (0)
932 /* Write S to STREAM and increment DIRED_POS by S_LEN. */
933 #define DIRED_FPUTS(s, stream, s_len) \
934 do {fputs (s, stream); dired_pos += s_len;} while (0)
936 /* Like DIRED_FPUTS, but for use when S is a literal string. */
937 #define DIRED_FPUTS_LITERAL(s, stream) \
938 do {fputs (s, stream); dired_pos += sizeof (s) - 1;} while (0)
940 #define DIRED_INDENT() \
941 do \
943 if (dired) \
944 DIRED_FPUTS_LITERAL (" ", stdout); \
946 while (0)
948 /* With --dired, store pairs of beginning and ending indices of filenames. */
949 static struct obstack dired_obstack;
951 /* With --dired, store pairs of beginning and ending indices of any
952 directory names that appear as headers (just before 'total' line)
953 for lists of directory entries. Such directory names are seen when
954 listing hierarchies using -R and when a directory is listed with at
955 least one other command line argument. */
956 static struct obstack subdired_obstack;
958 /* Save the current index on the specified obstack, OBS. */
959 #define PUSH_CURRENT_DIRED_POS(obs) \
960 do \
962 if (dired) \
963 obstack_grow (obs, &dired_pos, sizeof (dired_pos)); \
965 while (0)
967 /* With -R, this stack is used to help detect directory cycles.
968 The device/inode pairs on this stack mirror the pairs in the
969 active_dir_set hash table. */
970 static struct obstack dev_ino_obstack;
972 /* Push a pair onto the device/inode stack. */
973 static void
974 dev_ino_push (dev_t dev, ino_t ino)
976 void *vdi;
977 struct dev_ino *di;
978 int dev_ino_size = sizeof *di;
979 obstack_blank (&dev_ino_obstack, dev_ino_size);
980 vdi = obstack_next_free (&dev_ino_obstack);
981 di = vdi;
982 di--;
983 di->st_dev = dev;
984 di->st_ino = ino;
987 /* Pop a dev/ino struct off the global dev_ino_obstack
988 and return that struct. */
989 static struct dev_ino
990 dev_ino_pop (void)
992 void *vdi;
993 struct dev_ino *di;
994 int dev_ino_size = sizeof *di;
995 assert (dev_ino_size <= obstack_object_size (&dev_ino_obstack));
996 obstack_blank_fast (&dev_ino_obstack, -dev_ino_size);
997 vdi = obstack_next_free (&dev_ino_obstack);
998 di = vdi;
999 return *di;
1002 /* Note the use commented out below:
1003 #define ASSERT_MATCHING_DEV_INO(Name, Di) \
1004 do \
1006 struct stat sb; \
1007 assert (Name); \
1008 assert (0 <= stat (Name, &sb)); \
1009 assert (sb.st_dev == Di.st_dev); \
1010 assert (sb.st_ino == Di.st_ino); \
1012 while (0)
1015 /* Write to standard output PREFIX, followed by the quoting style and
1016 a space-separated list of the integers stored in OS all on one line. */
1018 static void
1019 dired_dump_obstack (const char *prefix, struct obstack *os)
1021 size_t n_pos;
1023 n_pos = obstack_object_size (os) / sizeof (dired_pos);
1024 if (n_pos > 0)
1026 size_t i;
1027 size_t *pos;
1029 pos = (size_t *) obstack_finish (os);
1030 fputs (prefix, stdout);
1031 for (i = 0; i < n_pos; i++)
1032 printf (" %lu", (unsigned long int) pos[i]);
1033 putchar ('\n');
1037 /* Read the abbreviated month names from the locale, to align them
1038 and to determine the max width of the field and to truncate names
1039 greater than our max allowed.
1040 Note even though this handles multibyte locales correctly
1041 it's not restricted to them as single byte locales can have
1042 variable width abbreviated months and also precomputing/caching
1043 the names was seen to increase the performance of ls significantly. */
1045 /* max number of display cells to use */
1046 enum { MAX_MON_WIDTH = 5 };
1047 /* In the unlikely event that the abmon[] storage is not big enough
1048 an error message will be displayed, and we revert to using
1049 unmodified abbreviated month names from the locale database. */
1050 static char abmon[12][MAX_MON_WIDTH * 2 * MB_LEN_MAX + 1];
1051 /* minimum width needed to align %b, 0 => don't use precomputed values. */
1052 static size_t required_mon_width;
1054 static size_t
1055 abmon_init (void)
1057 #ifdef HAVE_NL_LANGINFO
1058 required_mon_width = MAX_MON_WIDTH;
1059 size_t curr_max_width;
1062 curr_max_width = required_mon_width;
1063 required_mon_width = 0;
1064 for (int i = 0; i < 12; i++)
1066 size_t width = curr_max_width;
1068 size_t req = mbsalign (nl_langinfo (ABMON_1 + i),
1069 abmon[i], sizeof (abmon[i]),
1070 &width, MBS_ALIGN_LEFT, 0);
1072 if (req == (size_t) -1 || req >= sizeof (abmon[i]))
1074 required_mon_width = 0; /* ignore precomputed strings. */
1075 return required_mon_width;
1078 required_mon_width = MAX (required_mon_width, width);
1081 while (curr_max_width > required_mon_width);
1082 #endif
1084 return required_mon_width;
1087 static size_t
1088 dev_ino_hash (void const *x, size_t table_size)
1090 struct dev_ino const *p = x;
1091 return (uintmax_t) p->st_ino % table_size;
1094 static bool
1095 dev_ino_compare (void const *x, void const *y)
1097 struct dev_ino const *a = x;
1098 struct dev_ino const *b = y;
1099 return SAME_INODE (*a, *b) ? true : false;
1102 static void
1103 dev_ino_free (void *x)
1105 free (x);
1108 /* Add the device/inode pair (P->st_dev/P->st_ino) to the set of
1109 active directories. Return true if there is already a matching
1110 entry in the table. */
1112 static bool
1113 visit_dir (dev_t dev, ino_t ino)
1115 struct dev_ino *ent;
1116 struct dev_ino *ent_from_table;
1117 bool found_match;
1119 ent = xmalloc (sizeof *ent);
1120 ent->st_ino = ino;
1121 ent->st_dev = dev;
1123 /* Attempt to insert this entry into the table. */
1124 ent_from_table = hash_insert (active_dir_set, ent);
1126 if (ent_from_table == NULL)
1128 /* Insertion failed due to lack of memory. */
1129 xalloc_die ();
1132 found_match = (ent_from_table != ent);
1134 if (found_match)
1136 /* ent was not inserted, so free it. */
1137 free (ent);
1140 return found_match;
1143 static void
1144 free_pending_ent (struct pending *p)
1146 free (p->name);
1147 free (p->realname);
1148 free (p);
1151 static bool
1152 is_colored (enum indicator_no type)
1154 size_t len = color_indicator[type].len;
1155 char const *s = color_indicator[type].string;
1156 return ! (len == 0
1157 || (len == 1 && STRNCMP_LIT (s, "0") == 0)
1158 || (len == 2 && STRNCMP_LIT (s, "00") == 0));
1161 static void
1162 restore_default_color (void)
1164 put_indicator (&color_indicator[C_LEFT]);
1165 put_indicator (&color_indicator[C_RIGHT]);
1168 static void
1169 set_normal_color (void)
1171 if (print_with_color && is_colored (C_NORM))
1173 put_indicator (&color_indicator[C_LEFT]);
1174 put_indicator (&color_indicator[C_NORM]);
1175 put_indicator (&color_indicator[C_RIGHT]);
1179 /* An ordinary signal was received; arrange for the program to exit. */
1181 static void
1182 sighandler (int sig)
1184 if (! SA_NOCLDSTOP)
1185 signal (sig, SIG_IGN);
1186 if (! interrupt_signal)
1187 interrupt_signal = sig;
1190 /* A SIGTSTP was received; arrange for the program to suspend itself. */
1192 static void
1193 stophandler (int sig)
1195 if (! SA_NOCLDSTOP)
1196 signal (sig, stophandler);
1197 if (! interrupt_signal)
1198 stop_signal_count++;
1201 /* Process any pending signals. If signals are caught, this function
1202 should be called periodically. Ideally there should never be an
1203 unbounded amount of time when signals are not being processed.
1204 Signal handling can restore the default colors, so callers must
1205 immediately change colors after invoking this function. */
1207 static void
1208 process_signals (void)
1210 while (interrupt_signal || stop_signal_count)
1212 int sig;
1213 int stops;
1214 sigset_t oldset;
1216 if (used_color)
1217 restore_default_color ();
1218 fflush (stdout);
1220 sigprocmask (SIG_BLOCK, &caught_signals, &oldset);
1222 /* Reload interrupt_signal and stop_signal_count, in case a new
1223 signal was handled before sigprocmask took effect. */
1224 sig = interrupt_signal;
1225 stops = stop_signal_count;
1227 /* SIGTSTP is special, since the application can receive that signal
1228 more than once. In this case, don't set the signal handler to the
1229 default. Instead, just raise the uncatchable SIGSTOP. */
1230 if (stops)
1232 stop_signal_count = stops - 1;
1233 sig = SIGSTOP;
1235 else
1236 signal (sig, SIG_DFL);
1238 /* Exit or suspend the program. */
1239 raise (sig);
1240 sigprocmask (SIG_SETMASK, &oldset, NULL);
1242 /* If execution reaches here, then the program has been
1243 continued (after being suspended). */
1248 main (int argc, char **argv)
1250 int i;
1251 struct pending *thispend;
1252 int n_files;
1254 /* The signals that are trapped, and the number of such signals. */
1255 static int const sig[] =
1257 /* This one is handled specially. */
1258 SIGTSTP,
1260 /* The usual suspects. */
1261 SIGALRM, SIGHUP, SIGINT, SIGPIPE, SIGQUIT, SIGTERM,
1262 #ifdef SIGPOLL
1263 SIGPOLL,
1264 #endif
1265 #ifdef SIGPROF
1266 SIGPROF,
1267 #endif
1268 #ifdef SIGVTALRM
1269 SIGVTALRM,
1270 #endif
1271 #ifdef SIGXCPU
1272 SIGXCPU,
1273 #endif
1274 #ifdef SIGXFSZ
1275 SIGXFSZ,
1276 #endif
1278 enum { nsigs = ARRAY_CARDINALITY (sig) };
1280 #if ! SA_NOCLDSTOP
1281 bool caught_sig[nsigs];
1282 #endif
1284 initialize_main (&argc, &argv);
1285 set_program_name (argv[0]);
1286 setlocale (LC_ALL, "");
1287 bindtextdomain (PACKAGE, LOCALEDIR);
1288 textdomain (PACKAGE);
1290 initialize_exit_failure (LS_FAILURE);
1291 atexit (close_stdout);
1293 assert (ARRAY_CARDINALITY (color_indicator) + 1
1294 == ARRAY_CARDINALITY (indicator_name));
1296 exit_status = EXIT_SUCCESS;
1297 print_dir_name = true;
1298 pending_dirs = NULL;
1300 current_time.tv_sec = TYPE_MINIMUM (time_t);
1301 current_time.tv_nsec = -1;
1303 i = decode_switches (argc, argv);
1305 if (print_with_color)
1306 parse_ls_color ();
1308 /* Test print_with_color again, because the call to parse_ls_color
1309 may have just reset it -- e.g., if LS_COLORS is invalid. */
1310 if (print_with_color)
1312 /* Avoid following symbolic links when possible. */
1313 if (is_colored (C_ORPHAN)
1314 || (is_colored (C_EXEC) && color_symlink_as_referent)
1315 || (is_colored (C_MISSING) && format == long_format))
1316 check_symlink_color = true;
1318 /* If the standard output is a controlling terminal, watch out
1319 for signals, so that the colors can be restored to the
1320 default state if "ls" is suspended or interrupted. */
1322 if (0 <= tcgetpgrp (STDOUT_FILENO))
1324 int j;
1325 #if SA_NOCLDSTOP
1326 struct sigaction act;
1328 sigemptyset (&caught_signals);
1329 for (j = 0; j < nsigs; j++)
1331 sigaction (sig[j], NULL, &act);
1332 if (act.sa_handler != SIG_IGN)
1333 sigaddset (&caught_signals, sig[j]);
1336 act.sa_mask = caught_signals;
1337 act.sa_flags = SA_RESTART;
1339 for (j = 0; j < nsigs; j++)
1340 if (sigismember (&caught_signals, sig[j]))
1342 act.sa_handler = sig[j] == SIGTSTP ? stophandler : sighandler;
1343 sigaction (sig[j], &act, NULL);
1345 #else
1346 for (j = 0; j < nsigs; j++)
1348 caught_sig[j] = (signal (sig[j], SIG_IGN) != SIG_IGN);
1349 if (caught_sig[j])
1351 signal (sig[j], sig[j] == SIGTSTP ? stophandler : sighandler);
1352 siginterrupt (sig[j], 0);
1355 #endif
1359 if (dereference == DEREF_UNDEFINED)
1360 dereference = ((immediate_dirs
1361 || indicator_style == classify
1362 || format == long_format)
1363 ? DEREF_NEVER
1364 : DEREF_COMMAND_LINE_SYMLINK_TO_DIR);
1366 /* When using -R, initialize a data structure we'll use to
1367 detect any directory cycles. */
1368 if (recursive)
1370 active_dir_set = hash_initialize (INITIAL_TABLE_SIZE, NULL,
1371 dev_ino_hash,
1372 dev_ino_compare,
1373 dev_ino_free);
1374 if (active_dir_set == NULL)
1375 xalloc_die ();
1377 obstack_init (&dev_ino_obstack);
1380 localtz = tzalloc (getenv ("TZ"));
1382 format_needs_stat = sort_type == sort_time || sort_type == sort_size
1383 || format == long_format
1384 || print_scontext
1385 || print_block_size;
1386 format_needs_type = (! format_needs_stat
1387 && (recursive
1388 || print_with_color
1389 || indicator_style != none
1390 || directories_first));
1392 if (dired)
1394 obstack_init (&dired_obstack);
1395 obstack_init (&subdired_obstack);
1398 cwd_n_alloc = 100;
1399 cwd_file = xnmalloc (cwd_n_alloc, sizeof *cwd_file);
1400 cwd_n_used = 0;
1402 clear_files ();
1404 n_files = argc - i;
1406 if (n_files <= 0)
1408 if (immediate_dirs)
1409 gobble_file (".", directory, NOT_AN_INODE_NUMBER, true, "");
1410 else
1411 queue_directory (".", NULL, true);
1413 else
1415 gobble_file (argv[i++], unknown, NOT_AN_INODE_NUMBER, true, "");
1416 while (i < argc);
1418 if (cwd_n_used)
1420 sort_files ();
1421 if (!immediate_dirs)
1422 extract_dirs_from_files (NULL, true);
1423 /* 'cwd_n_used' might be zero now. */
1426 /* In the following if/else blocks, it is sufficient to test 'pending_dirs'
1427 (and not pending_dirs->name) because there may be no markers in the queue
1428 at this point. A marker may be enqueued when extract_dirs_from_files is
1429 called with a non-empty string or via print_dir. */
1430 if (cwd_n_used)
1432 print_current_files ();
1433 if (pending_dirs)
1434 DIRED_PUTCHAR ('\n');
1436 else if (n_files <= 1 && pending_dirs && pending_dirs->next == 0)
1437 print_dir_name = false;
1439 while (pending_dirs)
1441 thispend = pending_dirs;
1442 pending_dirs = pending_dirs->next;
1444 if (LOOP_DETECT)
1446 if (thispend->name == NULL)
1448 /* thispend->name == NULL means this is a marker entry
1449 indicating we've finished processing the directory.
1450 Use its dev/ino numbers to remove the corresponding
1451 entry from the active_dir_set hash table. */
1452 struct dev_ino di = dev_ino_pop ();
1453 struct dev_ino *found = hash_delete (active_dir_set, &di);
1454 /* ASSERT_MATCHING_DEV_INO (thispend->realname, di); */
1455 assert (found);
1456 dev_ino_free (found);
1457 free_pending_ent (thispend);
1458 continue;
1462 print_dir (thispend->name, thispend->realname,
1463 thispend->command_line_arg);
1465 free_pending_ent (thispend);
1466 print_dir_name = true;
1469 if (print_with_color)
1471 int j;
1473 if (used_color)
1475 /* Skip the restore when it would be a no-op, i.e.,
1476 when left is "\033[" and right is "m". */
1477 if (!(color_indicator[C_LEFT].len == 2
1478 && memcmp (color_indicator[C_LEFT].string, "\033[", 2) == 0
1479 && color_indicator[C_RIGHT].len == 1
1480 && color_indicator[C_RIGHT].string[0] == 'm'))
1481 restore_default_color ();
1483 fflush (stdout);
1485 /* Restore the default signal handling. */
1486 #if SA_NOCLDSTOP
1487 for (j = 0; j < nsigs; j++)
1488 if (sigismember (&caught_signals, sig[j]))
1489 signal (sig[j], SIG_DFL);
1490 #else
1491 for (j = 0; j < nsigs; j++)
1492 if (caught_sig[j])
1493 signal (sig[j], SIG_DFL);
1494 #endif
1496 /* Act on any signals that arrived before the default was restored.
1497 This can process signals out of order, but there doesn't seem to
1498 be an easy way to do them in order, and the order isn't that
1499 important anyway. */
1500 for (j = stop_signal_count; j; j--)
1501 raise (SIGSTOP);
1502 j = interrupt_signal;
1503 if (j)
1504 raise (j);
1507 if (dired)
1509 /* No need to free these since we're about to exit. */
1510 dired_dump_obstack ("//DIRED//", &dired_obstack);
1511 dired_dump_obstack ("//SUBDIRED//", &subdired_obstack);
1512 printf ("//DIRED-OPTIONS// --quoting-style=%s\n",
1513 quoting_style_args[get_quoting_style (filename_quoting_options)]);
1516 if (LOOP_DETECT)
1518 assert (hash_get_n_entries (active_dir_set) == 0);
1519 hash_free (active_dir_set);
1522 return exit_status;
1525 /* Set the line length to the value given by SPEC. Return true if
1526 successful. 0 means no limit on line length. */
1528 static bool
1529 set_line_length (char const *spec)
1531 uintmax_t val;
1533 /* Treat too-large values as if they were SIZE_MAX, which is
1534 effectively infinity. */
1535 switch (xstrtoumax (spec, NULL, 0, &val, ""))
1537 case LONGINT_OK:
1538 line_length = MIN (val, SIZE_MAX);
1539 return true;
1541 case LONGINT_OVERFLOW:
1542 line_length = SIZE_MAX;
1543 return true;
1545 default:
1546 return false;
1550 /* Set all the option flags according to the switches specified.
1551 Return the index of the first non-option argument. */
1553 static int
1554 decode_switches (int argc, char **argv)
1556 char *time_style_option = NULL;
1558 bool sort_type_specified = false;
1559 bool kibibytes_specified = false;
1561 qmark_funny_chars = false;
1563 /* initialize all switches to default settings */
1565 switch (ls_mode)
1567 case LS_MULTI_COL:
1568 /* This is for the 'dir' program. */
1569 format = many_per_line;
1570 set_quoting_style (NULL, escape_quoting_style);
1571 break;
1573 case LS_LONG_FORMAT:
1574 /* This is for the 'vdir' program. */
1575 format = long_format;
1576 set_quoting_style (NULL, escape_quoting_style);
1577 break;
1579 case LS_LS:
1580 /* This is for the 'ls' program. */
1581 if (isatty (STDOUT_FILENO))
1583 format = many_per_line;
1584 /* See description of qmark_funny_chars, above. */
1585 qmark_funny_chars = true;
1587 else
1589 format = one_per_line;
1590 qmark_funny_chars = false;
1592 break;
1594 default:
1595 abort ();
1598 time_type = time_mtime;
1599 sort_type = sort_name;
1600 sort_reverse = false;
1601 numeric_ids = false;
1602 print_block_size = false;
1603 indicator_style = none;
1604 print_inode = false;
1605 dereference = DEREF_UNDEFINED;
1606 recursive = false;
1607 immediate_dirs = false;
1608 ignore_mode = IGNORE_DEFAULT;
1609 ignore_patterns = NULL;
1610 hide_patterns = NULL;
1611 print_scontext = false;
1613 getenv_quoting_style ();
1615 line_length = 80;
1617 char const *p = getenv ("COLUMNS");
1618 if (p && *p && ! set_line_length (p))
1619 error (0, 0,
1620 _("ignoring invalid width in environment variable COLUMNS: %s"),
1621 quote (p));
1624 #ifdef TIOCGWINSZ
1626 struct winsize ws;
1628 if (ioctl (STDOUT_FILENO, TIOCGWINSZ, &ws) != -1
1629 && 0 < ws.ws_col && ws.ws_col == (size_t) ws.ws_col)
1630 line_length = ws.ws_col;
1632 #endif
1635 char const *p = getenv ("TABSIZE");
1636 tabsize = 8;
1637 if (p)
1639 unsigned long int tmp_ulong;
1640 if (xstrtoul (p, NULL, 0, &tmp_ulong, NULL) == LONGINT_OK
1641 && tmp_ulong <= SIZE_MAX)
1643 tabsize = tmp_ulong;
1645 else
1647 error (0, 0,
1648 _("ignoring invalid tab size in environment variable TABSIZE: %s"),
1649 quote (p));
1654 while (true)
1656 int oi = -1;
1657 int c = getopt_long (argc, argv,
1658 "abcdfghiklmnopqrstuvw:xABCDFGHI:LNQRST:UXZ1",
1659 long_options, &oi);
1660 if (c == -1)
1661 break;
1663 switch (c)
1665 case 'a':
1666 ignore_mode = IGNORE_MINIMAL;
1667 break;
1669 case 'b':
1670 set_quoting_style (NULL, escape_quoting_style);
1671 break;
1673 case 'c':
1674 time_type = time_ctime;
1675 break;
1677 case 'd':
1678 immediate_dirs = true;
1679 break;
1681 case 'f':
1682 /* Same as enabling -a -U and disabling -l -s. */
1683 ignore_mode = IGNORE_MINIMAL;
1684 sort_type = sort_none;
1685 sort_type_specified = true;
1686 /* disable -l */
1687 if (format == long_format)
1688 format = (isatty (STDOUT_FILENO) ? many_per_line : one_per_line);
1689 print_block_size = false; /* disable -s */
1690 print_with_color = false; /* disable --color */
1691 break;
1693 case FILE_TYPE_INDICATOR_OPTION: /* --file-type */
1694 indicator_style = file_type;
1695 break;
1697 case 'g':
1698 format = long_format;
1699 print_owner = false;
1700 break;
1702 case 'h':
1703 file_human_output_opts = human_output_opts =
1704 human_autoscale | human_SI | human_base_1024;
1705 file_output_block_size = output_block_size = 1;
1706 break;
1708 case 'i':
1709 print_inode = true;
1710 break;
1712 case 'k':
1713 kibibytes_specified = true;
1714 break;
1716 case 'l':
1717 format = long_format;
1718 break;
1720 case 'm':
1721 format = with_commas;
1722 break;
1724 case 'n':
1725 numeric_ids = true;
1726 format = long_format;
1727 break;
1729 case 'o': /* Just like -l, but don't display group info. */
1730 format = long_format;
1731 print_group = false;
1732 break;
1734 case 'p':
1735 indicator_style = slash;
1736 break;
1738 case 'q':
1739 qmark_funny_chars = true;
1740 break;
1742 case 'r':
1743 sort_reverse = true;
1744 break;
1746 case 's':
1747 print_block_size = true;
1748 break;
1750 case 't':
1751 sort_type = sort_time;
1752 sort_type_specified = true;
1753 break;
1755 case 'u':
1756 time_type = time_atime;
1757 break;
1759 case 'v':
1760 sort_type = sort_version;
1761 sort_type_specified = true;
1762 break;
1764 case 'w':
1765 if (! set_line_length (optarg))
1766 error (LS_FAILURE, 0, "%s: %s", _("invalid line width"),
1767 quote (optarg));
1768 break;
1770 case 'x':
1771 format = horizontal;
1772 break;
1774 case 'A':
1775 if (ignore_mode == IGNORE_DEFAULT)
1776 ignore_mode = IGNORE_DOT_AND_DOTDOT;
1777 break;
1779 case 'B':
1780 add_ignore_pattern ("*~");
1781 add_ignore_pattern (".*~");
1782 break;
1784 case 'C':
1785 format = many_per_line;
1786 break;
1788 case 'D':
1789 dired = true;
1790 break;
1792 case 'F':
1793 indicator_style = classify;
1794 break;
1796 case 'G': /* inhibit display of group info */
1797 print_group = false;
1798 break;
1800 case 'H':
1801 dereference = DEREF_COMMAND_LINE_ARGUMENTS;
1802 break;
1804 case DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION:
1805 dereference = DEREF_COMMAND_LINE_SYMLINK_TO_DIR;
1806 break;
1808 case 'I':
1809 add_ignore_pattern (optarg);
1810 break;
1812 case 'L':
1813 dereference = DEREF_ALWAYS;
1814 break;
1816 case 'N':
1817 set_quoting_style (NULL, literal_quoting_style);
1818 break;
1820 case 'Q':
1821 set_quoting_style (NULL, c_quoting_style);
1822 break;
1824 case 'R':
1825 recursive = true;
1826 break;
1828 case 'S':
1829 sort_type = sort_size;
1830 sort_type_specified = true;
1831 break;
1833 case 'T':
1834 tabsize = xnumtoumax (optarg, 0, 0, SIZE_MAX, "",
1835 _("invalid tab size"), LS_FAILURE);
1836 break;
1838 case 'U':
1839 sort_type = sort_none;
1840 sort_type_specified = true;
1841 break;
1843 case 'X':
1844 sort_type = sort_extension;
1845 sort_type_specified = true;
1846 break;
1848 case '1':
1849 /* -1 has no effect after -l. */
1850 if (format != long_format)
1851 format = one_per_line;
1852 break;
1854 case AUTHOR_OPTION:
1855 print_author = true;
1856 break;
1858 case HIDE_OPTION:
1860 struct ignore_pattern *hide = xmalloc (sizeof *hide);
1861 hide->pattern = optarg;
1862 hide->next = hide_patterns;
1863 hide_patterns = hide;
1865 break;
1867 case SORT_OPTION:
1868 sort_type = XARGMATCH ("--sort", optarg, sort_args, sort_types);
1869 sort_type_specified = true;
1870 break;
1872 case GROUP_DIRECTORIES_FIRST_OPTION:
1873 directories_first = true;
1874 break;
1876 case TIME_OPTION:
1877 time_type = XARGMATCH ("--time", optarg, time_args, time_types);
1878 break;
1880 case FORMAT_OPTION:
1881 format = XARGMATCH ("--format", optarg, format_args, format_types);
1882 break;
1884 case FULL_TIME_OPTION:
1885 format = long_format;
1886 time_style_option = bad_cast ("full-iso");
1887 break;
1889 case COLOR_OPTION:
1891 int i;
1892 if (optarg)
1893 i = XARGMATCH ("--color", optarg, color_args, color_types);
1894 else
1895 /* Using --color with no argument is equivalent to using
1896 --color=always. */
1897 i = color_always;
1899 print_with_color = (i == color_always
1900 || (i == color_if_tty
1901 && isatty (STDOUT_FILENO)));
1903 if (print_with_color)
1905 /* Don't use TAB characters in output. Some terminal
1906 emulators can't handle the combination of tabs and
1907 color codes on the same line. */
1908 tabsize = 0;
1910 break;
1913 case INDICATOR_STYLE_OPTION:
1914 indicator_style = XARGMATCH ("--indicator-style", optarg,
1915 indicator_style_args,
1916 indicator_style_types);
1917 break;
1919 case QUOTING_STYLE_OPTION:
1920 set_quoting_style (NULL,
1921 XARGMATCH ("--quoting-style", optarg,
1922 quoting_style_args,
1923 quoting_style_vals));
1924 break;
1926 case TIME_STYLE_OPTION:
1927 time_style_option = optarg;
1928 break;
1930 case SHOW_CONTROL_CHARS_OPTION:
1931 qmark_funny_chars = false;
1932 break;
1934 case BLOCK_SIZE_OPTION:
1936 enum strtol_error e = human_options (optarg, &human_output_opts,
1937 &output_block_size);
1938 if (e != LONGINT_OK)
1939 xstrtol_fatal (e, oi, 0, long_options, optarg);
1940 file_human_output_opts = human_output_opts;
1941 file_output_block_size = output_block_size;
1943 break;
1945 case SI_OPTION:
1946 file_human_output_opts = human_output_opts =
1947 human_autoscale | human_SI;
1948 file_output_block_size = output_block_size = 1;
1949 break;
1951 case 'Z':
1952 print_scontext = true;
1953 break;
1955 case_GETOPT_HELP_CHAR;
1957 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
1959 default:
1960 usage (LS_FAILURE);
1964 if (! output_block_size)
1966 char const *ls_block_size = getenv ("LS_BLOCK_SIZE");
1967 human_options (ls_block_size,
1968 &human_output_opts, &output_block_size);
1969 if (ls_block_size || getenv ("BLOCK_SIZE"))
1971 file_human_output_opts = human_output_opts;
1972 file_output_block_size = output_block_size;
1974 if (kibibytes_specified)
1976 human_output_opts = 0;
1977 output_block_size = 1024;
1981 /* Determine the max possible number of display columns. */
1982 max_idx = line_length / MIN_COLUMN_WIDTH;
1983 /* Account for first display column not having a separator,
1984 or line_lengths shorter than MIN_COLUMN_WIDTH. */
1985 max_idx += line_length % MIN_COLUMN_WIDTH != 0;
1987 filename_quoting_options = clone_quoting_options (NULL);
1988 if (get_quoting_style (filename_quoting_options) == escape_quoting_style)
1989 set_char_quoting (filename_quoting_options, ' ', 1);
1990 if (file_type <= indicator_style)
1992 char const *p;
1993 for (p = &"*=>@|"[indicator_style - file_type]; *p; p++)
1994 set_char_quoting (filename_quoting_options, *p, 1);
1997 dirname_quoting_options = clone_quoting_options (NULL);
1998 set_char_quoting (dirname_quoting_options, ':', 1);
2000 /* --dired is meaningful only with --format=long (-l).
2001 Otherwise, ignore it. FIXME: warn about this?
2002 Alternatively, make --dired imply --format=long? */
2003 if (dired && format != long_format)
2004 dired = false;
2006 /* If -c or -u is specified and not -l (or any other option that implies -l),
2007 and no sort-type was specified, then sort by the ctime (-c) or atime (-u).
2008 The behavior of ls when using either -c or -u but with neither -l nor -t
2009 appears to be unspecified by POSIX. So, with GNU ls, '-u' alone means
2010 sort by atime (this is the one that's not specified by the POSIX spec),
2011 -lu means show atime and sort by name, -lut means show atime and sort
2012 by atime. */
2014 if ((time_type == time_ctime || time_type == time_atime)
2015 && !sort_type_specified && format != long_format)
2017 sort_type = sort_time;
2020 if (format == long_format)
2022 char *style = time_style_option;
2023 static char const posix_prefix[] = "posix-";
2025 if (! style)
2026 if (! (style = getenv ("TIME_STYLE")))
2027 style = bad_cast ("locale");
2029 while (STREQ_LEN (style, posix_prefix, sizeof posix_prefix - 1))
2031 if (! hard_locale (LC_TIME))
2032 return optind;
2033 style += sizeof posix_prefix - 1;
2036 if (*style == '+')
2038 char *p0 = style + 1;
2039 char *p1 = strchr (p0, '\n');
2040 if (! p1)
2041 p1 = p0;
2042 else
2044 if (strchr (p1 + 1, '\n'))
2045 error (LS_FAILURE, 0, _("invalid time style format %s"),
2046 quote (p0));
2047 *p1++ = '\0';
2049 long_time_format[0] = p0;
2050 long_time_format[1] = p1;
2052 else
2054 ptrdiff_t res = argmatch (style, time_style_args,
2055 (char const *) time_style_types,
2056 sizeof (*time_style_types));
2057 if (res < 0)
2059 /* This whole block used to be a simple use of XARGMATCH.
2060 but that didn't print the "posix-"-prefixed variants or
2061 the "+"-prefixed format string option upon failure. */
2062 argmatch_invalid ("time style", style, res);
2064 /* The following is a manual expansion of argmatch_valid,
2065 but with the added "+ ..." description and the [posix-]
2066 prefixes prepended. Note that this simplification works
2067 only because all four existing time_style_types values
2068 are distinct. */
2069 fputs (_("Valid arguments are:\n"), stderr);
2070 char const *const *p = time_style_args;
2071 while (*p)
2072 fprintf (stderr, " - [posix-]%s\n", *p++);
2073 fputs (_(" - +FORMAT (e.g., +%H:%M) for a 'date'-style"
2074 " format\n"), stderr);
2075 usage (LS_FAILURE);
2077 switch (res)
2079 case full_iso_time_style:
2080 long_time_format[0] = long_time_format[1] =
2081 "%Y-%m-%d %H:%M:%S.%N %z";
2082 break;
2084 case long_iso_time_style:
2085 long_time_format[0] = long_time_format[1] = "%Y-%m-%d %H:%M";
2086 break;
2088 case iso_time_style:
2089 long_time_format[0] = "%Y-%m-%d ";
2090 long_time_format[1] = "%m-%d %H:%M";
2091 break;
2093 case locale_time_style:
2094 if (hard_locale (LC_TIME))
2096 int i;
2097 for (i = 0; i < 2; i++)
2098 long_time_format[i] =
2099 dcgettext (NULL, long_time_format[i], LC_TIME);
2104 /* Note we leave %5b etc. alone so user widths/flags are honored. */
2105 if (strstr (long_time_format[0], "%b")
2106 || strstr (long_time_format[1], "%b"))
2107 if (!abmon_init ())
2108 error (0, 0, _("error initializing month strings"));
2111 return optind;
2114 /* Parse a string as part of the LS_COLORS variable; this may involve
2115 decoding all kinds of escape characters. If equals_end is set an
2116 unescaped equal sign ends the string, otherwise only a : or \0
2117 does. Set *OUTPUT_COUNT to the number of bytes output. Return
2118 true if successful.
2120 The resulting string is *not* null-terminated, but may contain
2121 embedded nulls.
2123 Note that both dest and src are char **; on return they point to
2124 the first free byte after the array and the character that ended
2125 the input string, respectively. */
2127 static bool
2128 get_funky_string (char **dest, const char **src, bool equals_end,
2129 size_t *output_count)
2131 char num; /* For numerical codes */
2132 size_t count; /* Something to count with */
2133 enum {
2134 ST_GND, ST_BACKSLASH, ST_OCTAL, ST_HEX, ST_CARET, ST_END, ST_ERROR
2135 } state;
2136 const char *p;
2137 char *q;
2139 p = *src; /* We don't want to double-indirect */
2140 q = *dest; /* the whole darn time. */
2142 count = 0; /* No characters counted in yet. */
2143 num = 0;
2145 state = ST_GND; /* Start in ground state. */
2146 while (state < ST_END)
2148 switch (state)
2150 case ST_GND: /* Ground state (no escapes) */
2151 switch (*p)
2153 case ':':
2154 case '\0':
2155 state = ST_END; /* End of string */
2156 break;
2157 case '\\':
2158 state = ST_BACKSLASH; /* Backslash scape sequence */
2159 ++p;
2160 break;
2161 case '^':
2162 state = ST_CARET; /* Caret escape */
2163 ++p;
2164 break;
2165 case '=':
2166 if (equals_end)
2168 state = ST_END; /* End */
2169 break;
2171 /* else fall through */
2172 default:
2173 *(q++) = *(p++);
2174 ++count;
2175 break;
2177 break;
2179 case ST_BACKSLASH: /* Backslash escaped character */
2180 switch (*p)
2182 case '0':
2183 case '1':
2184 case '2':
2185 case '3':
2186 case '4':
2187 case '5':
2188 case '6':
2189 case '7':
2190 state = ST_OCTAL; /* Octal sequence */
2191 num = *p - '0';
2192 break;
2193 case 'x':
2194 case 'X':
2195 state = ST_HEX; /* Hex sequence */
2196 num = 0;
2197 break;
2198 case 'a': /* Bell */
2199 num = '\a';
2200 break;
2201 case 'b': /* Backspace */
2202 num = '\b';
2203 break;
2204 case 'e': /* Escape */
2205 num = 27;
2206 break;
2207 case 'f': /* Form feed */
2208 num = '\f';
2209 break;
2210 case 'n': /* Newline */
2211 num = '\n';
2212 break;
2213 case 'r': /* Carriage return */
2214 num = '\r';
2215 break;
2216 case 't': /* Tab */
2217 num = '\t';
2218 break;
2219 case 'v': /* Vtab */
2220 num = '\v';
2221 break;
2222 case '?': /* Delete */
2223 num = 127;
2224 break;
2225 case '_': /* Space */
2226 num = ' ';
2227 break;
2228 case '\0': /* End of string */
2229 state = ST_ERROR; /* Error! */
2230 break;
2231 default: /* Escaped character like \ ^ : = */
2232 num = *p;
2233 break;
2235 if (state == ST_BACKSLASH)
2237 *(q++) = num;
2238 ++count;
2239 state = ST_GND;
2241 ++p;
2242 break;
2244 case ST_OCTAL: /* Octal sequence */
2245 if (*p < '0' || *p > '7')
2247 *(q++) = num;
2248 ++count;
2249 state = ST_GND;
2251 else
2252 num = (num << 3) + (*(p++) - '0');
2253 break;
2255 case ST_HEX: /* Hex sequence */
2256 switch (*p)
2258 case '0':
2259 case '1':
2260 case '2':
2261 case '3':
2262 case '4':
2263 case '5':
2264 case '6':
2265 case '7':
2266 case '8':
2267 case '9':
2268 num = (num << 4) + (*(p++) - '0');
2269 break;
2270 case 'a':
2271 case 'b':
2272 case 'c':
2273 case 'd':
2274 case 'e':
2275 case 'f':
2276 num = (num << 4) + (*(p++) - 'a') + 10;
2277 break;
2278 case 'A':
2279 case 'B':
2280 case 'C':
2281 case 'D':
2282 case 'E':
2283 case 'F':
2284 num = (num << 4) + (*(p++) - 'A') + 10;
2285 break;
2286 default:
2287 *(q++) = num;
2288 ++count;
2289 state = ST_GND;
2290 break;
2292 break;
2294 case ST_CARET: /* Caret escape */
2295 state = ST_GND; /* Should be the next state... */
2296 if (*p >= '@' && *p <= '~')
2298 *(q++) = *(p++) & 037;
2299 ++count;
2301 else if (*p == '?')
2303 *(q++) = 127;
2304 ++count;
2306 else
2307 state = ST_ERROR;
2308 break;
2310 default:
2311 abort ();
2315 *dest = q;
2316 *src = p;
2317 *output_count = count;
2319 return state != ST_ERROR;
2322 enum parse_state
2324 PS_START = 1,
2325 PS_2,
2326 PS_3,
2327 PS_4,
2328 PS_DONE,
2329 PS_FAIL
2333 /* Check if the content of TERM is a valid name in dircolors. */
2335 static bool
2336 known_term_type (void)
2338 char const *term = getenv ("TERM");
2339 if (! term || ! *term)
2340 return false;
2342 char const *line = G_line;
2343 while (line - G_line < sizeof (G_line))
2345 if (STRNCMP_LIT (line, "TERM ") == 0)
2347 if (fnmatch (line + 5, term, 0) == 0)
2348 return true;
2350 line += strlen (line) + 1;
2353 return false;
2356 static void
2357 parse_ls_color (void)
2359 const char *p; /* Pointer to character being parsed */
2360 char *buf; /* color_buf buffer pointer */
2361 int ind_no; /* Indicator number */
2362 char label[3]; /* Indicator label */
2363 struct color_ext_type *ext; /* Extension we are working on */
2365 if ((p = getenv ("LS_COLORS")) == NULL || *p == '\0')
2367 /* LS_COLORS takes precedence, but if that's not set then
2368 honor the COLORTERM and TERM env variables so that
2369 we only go with the internal ANSI color codes if the
2370 former is non empty or the latter is set to a known value. */
2371 char const *colorterm = getenv ("COLORTERM");
2372 if (! (colorterm && *colorterm) && ! known_term_type ())
2373 print_with_color = false;
2374 return;
2377 ext = NULL;
2378 strcpy (label, "??");
2380 /* This is an overly conservative estimate, but any possible
2381 LS_COLORS string will *not* generate a color_buf longer than
2382 itself, so it is a safe way of allocating a buffer in
2383 advance. */
2384 buf = color_buf = xstrdup (p);
2386 enum parse_state state = PS_START;
2387 while (true)
2389 switch (state)
2391 case PS_START: /* First label character */
2392 switch (*p)
2394 case ':':
2395 ++p;
2396 break;
2398 case '*':
2399 /* Allocate new extension block and add to head of
2400 linked list (this way a later definition will
2401 override an earlier one, which can be useful for
2402 having terminal-specific defs override global). */
2404 ext = xmalloc (sizeof *ext);
2405 ext->next = color_ext_list;
2406 color_ext_list = ext;
2408 ++p;
2409 ext->ext.string = buf;
2411 state = (get_funky_string (&buf, &p, true, &ext->ext.len)
2412 ? PS_4 : PS_FAIL);
2413 break;
2415 case '\0':
2416 state = PS_DONE; /* Done! */
2417 goto done;
2419 default: /* Assume it is file type label */
2420 label[0] = *(p++);
2421 state = PS_2;
2422 break;
2424 break;
2426 case PS_2: /* Second label character */
2427 if (*p)
2429 label[1] = *(p++);
2430 state = PS_3;
2432 else
2433 state = PS_FAIL; /* Error */
2434 break;
2436 case PS_3: /* Equal sign after indicator label */
2437 state = PS_FAIL; /* Assume failure... */
2438 if (*(p++) == '=')/* It *should* be... */
2440 for (ind_no = 0; indicator_name[ind_no] != NULL; ++ind_no)
2442 if (STREQ (label, indicator_name[ind_no]))
2444 color_indicator[ind_no].string = buf;
2445 state = (get_funky_string (&buf, &p, false,
2446 &color_indicator[ind_no].len)
2447 ? PS_START : PS_FAIL);
2448 break;
2451 if (state == PS_FAIL)
2452 error (0, 0, _("unrecognized prefix: %s"), quote (label));
2454 break;
2456 case PS_4: /* Equal sign after *.ext */
2457 if (*(p++) == '=')
2459 ext->seq.string = buf;
2460 state = (get_funky_string (&buf, &p, false, &ext->seq.len)
2461 ? PS_START : PS_FAIL);
2463 else
2464 state = PS_FAIL;
2465 break;
2467 case PS_FAIL:
2468 goto done;
2470 default:
2471 abort ();
2474 done:
2476 if (state == PS_FAIL)
2478 struct color_ext_type *e;
2479 struct color_ext_type *e2;
2481 error (0, 0,
2482 _("unparsable value for LS_COLORS environment variable"));
2483 free (color_buf);
2484 for (e = color_ext_list; e != NULL; /* empty */)
2486 e2 = e;
2487 e = e->next;
2488 free (e2);
2490 print_with_color = false;
2493 if (color_indicator[C_LINK].len == 6
2494 && !STRNCMP_LIT (color_indicator[C_LINK].string, "target"))
2495 color_symlink_as_referent = true;
2498 /* Set the quoting style default if the environment variable
2499 QUOTING_STYLE is set. */
2501 static void
2502 getenv_quoting_style (void)
2504 char const *q_style = getenv ("QUOTING_STYLE");
2505 if (q_style)
2507 int i = ARGMATCH (q_style, quoting_style_args, quoting_style_vals);
2508 if (0 <= i)
2509 set_quoting_style (NULL, quoting_style_vals[i]);
2510 else
2511 error (0, 0,
2512 _("ignoring invalid value of environment variable QUOTING_STYLE: %s"),
2513 quote (q_style));
2517 /* Set the exit status to report a failure. If SERIOUS, it is a
2518 serious failure; otherwise, it is merely a minor problem. */
2520 static void
2521 set_exit_status (bool serious)
2523 if (serious)
2524 exit_status = LS_FAILURE;
2525 else if (exit_status == EXIT_SUCCESS)
2526 exit_status = LS_MINOR_PROBLEM;
2529 /* Assuming a failure is serious if SERIOUS, use the printf-style
2530 MESSAGE to report the failure to access a file named FILE. Assume
2531 errno is set appropriately for the failure. */
2533 static void
2534 file_failure (bool serious, char const *message, char const *file)
2536 error (0, errno, message, quoteaf (file));
2537 set_exit_status (serious);
2540 /* Request that the directory named NAME have its contents listed later.
2541 If REALNAME is nonzero, it will be used instead of NAME when the
2542 directory name is printed. This allows symbolic links to directories
2543 to be treated as regular directories but still be listed under their
2544 real names. NAME == NULL is used to insert a marker entry for the
2545 directory named in REALNAME.
2546 If NAME is non-NULL, we use its dev/ino information to save
2547 a call to stat -- when doing a recursive (-R) traversal.
2548 COMMAND_LINE_ARG means this directory was mentioned on the command line. */
2550 static void
2551 queue_directory (char const *name, char const *realname, bool command_line_arg)
2553 struct pending *new = xmalloc (sizeof *new);
2554 new->realname = realname ? xstrdup (realname) : NULL;
2555 new->name = name ? xstrdup (name) : NULL;
2556 new->command_line_arg = command_line_arg;
2557 new->next = pending_dirs;
2558 pending_dirs = new;
2561 /* Read directory NAME, and list the files in it.
2562 If REALNAME is nonzero, print its name instead of NAME;
2563 this is used for symbolic links to directories.
2564 COMMAND_LINE_ARG means this directory was mentioned on the command line. */
2566 static void
2567 print_dir (char const *name, char const *realname, bool command_line_arg)
2569 DIR *dirp;
2570 struct dirent *next;
2571 uintmax_t total_blocks = 0;
2572 static bool first = true;
2574 errno = 0;
2575 dirp = opendir (name);
2576 if (!dirp)
2578 file_failure (command_line_arg, _("cannot open directory %s"), name);
2579 return;
2582 if (LOOP_DETECT)
2584 struct stat dir_stat;
2585 int fd = dirfd (dirp);
2587 /* If dirfd failed, endure the overhead of using stat. */
2588 if ((0 <= fd
2589 ? fstat (fd, &dir_stat)
2590 : stat (name, &dir_stat)) < 0)
2592 file_failure (command_line_arg,
2593 _("cannot determine device and inode of %s"), name);
2594 closedir (dirp);
2595 return;
2598 /* If we've already visited this dev/inode pair, warn that
2599 we've found a loop, and do not process this directory. */
2600 if (visit_dir (dir_stat.st_dev, dir_stat.st_ino))
2602 error (0, 0, _("%s: not listing already-listed directory"),
2603 quotef (name));
2604 closedir (dirp);
2605 set_exit_status (true);
2606 return;
2609 dev_ino_push (dir_stat.st_dev, dir_stat.st_ino);
2612 if (recursive || print_dir_name)
2614 if (!first)
2615 DIRED_PUTCHAR ('\n');
2616 first = false;
2617 DIRED_INDENT ();
2618 PUSH_CURRENT_DIRED_POS (&subdired_obstack);
2619 dired_pos += quote_name (stdout, realname ? realname : name,
2620 dirname_quoting_options, NULL);
2621 PUSH_CURRENT_DIRED_POS (&subdired_obstack);
2622 DIRED_FPUTS_LITERAL (":\n", stdout);
2625 /* Read the directory entries, and insert the subfiles into the 'cwd_file'
2626 table. */
2628 clear_files ();
2630 while (1)
2632 /* Set errno to zero so we can distinguish between a readdir failure
2633 and when readdir simply finds that there are no more entries. */
2634 errno = 0;
2635 next = readdir (dirp);
2636 if (next)
2638 if (! file_ignored (next->d_name))
2640 enum filetype type = unknown;
2642 #if HAVE_STRUCT_DIRENT_D_TYPE
2643 switch (next->d_type)
2645 case DT_BLK: type = blockdev; break;
2646 case DT_CHR: type = chardev; break;
2647 case DT_DIR: type = directory; break;
2648 case DT_FIFO: type = fifo; break;
2649 case DT_LNK: type = symbolic_link; break;
2650 case DT_REG: type = normal; break;
2651 case DT_SOCK: type = sock; break;
2652 # ifdef DT_WHT
2653 case DT_WHT: type = whiteout; break;
2654 # endif
2656 #endif
2657 total_blocks += gobble_file (next->d_name, type,
2658 RELIABLE_D_INO (next),
2659 false, name);
2661 /* In this narrow case, print out each name right away, so
2662 ls uses constant memory while processing the entries of
2663 this directory. Useful when there are many (millions)
2664 of entries in a directory. */
2665 if (format == one_per_line && sort_type == sort_none
2666 && !print_block_size && !recursive)
2668 /* We must call sort_files in spite of
2669 "sort_type == sort_none" for its initialization
2670 of the sorted_file vector. */
2671 sort_files ();
2672 print_current_files ();
2673 clear_files ();
2677 else if (errno != 0)
2679 file_failure (command_line_arg, _("reading directory %s"), name);
2680 if (errno != EOVERFLOW)
2681 break;
2683 else
2684 break;
2686 /* When processing a very large directory, and since we've inhibited
2687 interrupts, this loop would take so long that ls would be annoyingly
2688 uninterruptible. This ensures that it handles signals promptly. */
2689 process_signals ();
2692 if (closedir (dirp) != 0)
2694 file_failure (command_line_arg, _("closing directory %s"), name);
2695 /* Don't return; print whatever we got. */
2698 /* Sort the directory contents. */
2699 sort_files ();
2701 /* If any member files are subdirectories, perhaps they should have their
2702 contents listed rather than being mentioned here as files. */
2704 if (recursive)
2705 extract_dirs_from_files (name, false);
2707 if (format == long_format || print_block_size)
2709 const char *p;
2710 char buf[LONGEST_HUMAN_READABLE + 1];
2712 DIRED_INDENT ();
2713 p = _("total");
2714 DIRED_FPUTS (p, stdout, strlen (p));
2715 DIRED_PUTCHAR (' ');
2716 p = human_readable (total_blocks, buf, human_output_opts,
2717 ST_NBLOCKSIZE, output_block_size);
2718 DIRED_FPUTS (p, stdout, strlen (p));
2719 DIRED_PUTCHAR ('\n');
2722 if (cwd_n_used)
2723 print_current_files ();
2726 /* Add 'pattern' to the list of patterns for which files that match are
2727 not listed. */
2729 static void
2730 add_ignore_pattern (const char *pattern)
2732 struct ignore_pattern *ignore;
2734 ignore = xmalloc (sizeof *ignore);
2735 ignore->pattern = pattern;
2736 /* Add it to the head of the linked list. */
2737 ignore->next = ignore_patterns;
2738 ignore_patterns = ignore;
2741 /* Return true if one of the PATTERNS matches FILE. */
2743 static bool
2744 patterns_match (struct ignore_pattern const *patterns, char const *file)
2746 struct ignore_pattern const *p;
2747 for (p = patterns; p; p = p->next)
2748 if (fnmatch (p->pattern, file, FNM_PERIOD) == 0)
2749 return true;
2750 return false;
2753 /* Return true if FILE should be ignored. */
2755 static bool
2756 file_ignored (char const *name)
2758 return ((ignore_mode != IGNORE_MINIMAL
2759 && name[0] == '.'
2760 && (ignore_mode == IGNORE_DEFAULT || ! name[1 + (name[1] == '.')]))
2761 || (ignore_mode == IGNORE_DEFAULT
2762 && patterns_match (hide_patterns, name))
2763 || patterns_match (ignore_patterns, name));
2766 /* POSIX requires that a file size be printed without a sign, even
2767 when negative. Assume the typical case where negative sizes are
2768 actually positive values that have wrapped around. */
2770 static uintmax_t
2771 unsigned_file_size (off_t size)
2773 return size + (size < 0) * ((uintmax_t) OFF_T_MAX - OFF_T_MIN + 1);
2776 #ifdef HAVE_CAP
2777 /* Return true if NAME has a capability (see linux/capability.h) */
2778 static bool
2779 has_capability (char const *name)
2781 char *result;
2782 bool has_cap;
2784 cap_t cap_d = cap_get_file (name);
2785 if (cap_d == NULL)
2786 return false;
2788 result = cap_to_text (cap_d, NULL);
2789 cap_free (cap_d);
2790 if (!result)
2791 return false;
2793 /* check if human-readable capability string is empty */
2794 has_cap = !!*result;
2796 cap_free (result);
2797 return has_cap;
2799 #else
2800 static bool
2801 has_capability (char const *name _GL_UNUSED)
2803 errno = ENOTSUP;
2804 return false;
2806 #endif
2808 /* Enter and remove entries in the table 'cwd_file'. */
2810 static void
2811 free_ent (struct fileinfo *f)
2813 free (f->name);
2814 free (f->linkname);
2815 if (f->scontext != UNKNOWN_SECURITY_CONTEXT)
2817 if (is_smack_enabled ())
2818 free (f->scontext);
2819 else
2820 freecon (f->scontext);
2824 /* Empty the table of files. */
2825 static void
2826 clear_files (void)
2828 size_t i;
2830 for (i = 0; i < cwd_n_used; i++)
2832 struct fileinfo *f = sorted_file[i];
2833 free_ent (f);
2836 cwd_n_used = 0;
2837 any_has_acl = false;
2838 inode_number_width = 0;
2839 block_size_width = 0;
2840 nlink_width = 0;
2841 owner_width = 0;
2842 group_width = 0;
2843 author_width = 0;
2844 scontext_width = 0;
2845 major_device_number_width = 0;
2846 minor_device_number_width = 0;
2847 file_size_width = 0;
2850 /* Return true if ERR implies lack-of-support failure by a
2851 getxattr-calling function like getfilecon or file_has_acl. */
2852 static bool
2853 errno_unsupported (int err)
2855 return (err == EINVAL || err == ENOSYS || is_ENOTSUP (err));
2858 /* Cache *getfilecon failure, when it's trivial to do so.
2859 Like getfilecon/lgetfilecon, but when F's st_dev says it's doesn't
2860 support getting the security context, fail with ENOTSUP immediately. */
2861 static int
2862 getfilecon_cache (char const *file, struct fileinfo *f, bool deref)
2864 /* st_dev of the most recently processed device for which we've
2865 found that [l]getfilecon fails indicating lack of support. */
2866 static dev_t unsupported_device;
2868 if (f->stat.st_dev == unsupported_device)
2870 errno = ENOTSUP;
2871 return -1;
2873 int r = 0;
2874 #ifdef HAVE_SMACK
2875 if (is_smack_enabled ())
2876 r = smack_new_label_from_path (file, "security.SMACK64", deref,
2877 &f->scontext);
2878 else
2879 #endif
2880 r = (deref
2881 ? getfilecon (file, &f->scontext)
2882 : lgetfilecon (file, &f->scontext));
2883 if (r < 0 && errno_unsupported (errno))
2884 unsupported_device = f->stat.st_dev;
2885 return r;
2888 /* Cache file_has_acl failure, when it's trivial to do.
2889 Like file_has_acl, but when F's st_dev says it's on a file
2890 system lacking ACL support, return 0 with ENOTSUP immediately. */
2891 static int
2892 file_has_acl_cache (char const *file, struct fileinfo *f)
2894 /* st_dev of the most recently processed device for which we've
2895 found that file_has_acl fails indicating lack of support. */
2896 static dev_t unsupported_device;
2898 if (f->stat.st_dev == unsupported_device)
2900 errno = ENOTSUP;
2901 return 0;
2904 /* Zero errno so that we can distinguish between two 0-returning cases:
2905 "has-ACL-support, but only a default ACL" and "no ACL support". */
2906 errno = 0;
2907 int n = file_has_acl (file, &f->stat);
2908 if (n <= 0 && errno_unsupported (errno))
2909 unsupported_device = f->stat.st_dev;
2910 return n;
2913 /* Cache has_capability failure, when it's trivial to do.
2914 Like has_capability, but when F's st_dev says it's on a file
2915 system lacking capability support, return 0 with ENOTSUP immediately. */
2916 static bool
2917 has_capability_cache (char const *file, struct fileinfo *f)
2919 /* st_dev of the most recently processed device for which we've
2920 found that has_capability fails indicating lack of support. */
2921 static dev_t unsupported_device;
2923 if (f->stat.st_dev == unsupported_device)
2925 errno = ENOTSUP;
2926 return 0;
2929 bool b = has_capability (file);
2930 if ( !b && errno_unsupported (errno))
2931 unsupported_device = f->stat.st_dev;
2932 return b;
2935 /* Add a file to the current table of files.
2936 Verify that the file exists, and print an error message if it does not.
2937 Return the number of blocks that the file occupies. */
2938 static uintmax_t
2939 gobble_file (char const *name, enum filetype type, ino_t inode,
2940 bool command_line_arg, char const *dirname)
2942 uintmax_t blocks = 0;
2943 struct fileinfo *f;
2945 /* An inode value prior to gobble_file necessarily came from readdir,
2946 which is not used for command line arguments. */
2947 assert (! command_line_arg || inode == NOT_AN_INODE_NUMBER);
2949 if (cwd_n_used == cwd_n_alloc)
2951 cwd_file = xnrealloc (cwd_file, cwd_n_alloc, 2 * sizeof *cwd_file);
2952 cwd_n_alloc *= 2;
2955 f = &cwd_file[cwd_n_used];
2956 memset (f, '\0', sizeof *f);
2957 f->stat.st_ino = inode;
2958 f->filetype = type;
2960 if (command_line_arg
2961 || format_needs_stat
2962 /* When coloring a directory (we may know the type from
2963 direct.d_type), we have to stat it in order to indicate
2964 sticky and/or other-writable attributes. */
2965 || (type == directory && print_with_color
2966 && (is_colored (C_OTHER_WRITABLE)
2967 || is_colored (C_STICKY)
2968 || is_colored (C_STICKY_OTHER_WRITABLE)))
2969 /* When dereferencing symlinks, the inode and type must come from
2970 stat, but readdir provides the inode and type of lstat. */
2971 || ((print_inode || format_needs_type)
2972 && (type == symbolic_link || type == unknown)
2973 && (dereference == DEREF_ALWAYS
2974 || color_symlink_as_referent || check_symlink_color))
2975 /* Command line dereferences are already taken care of by the above
2976 assertion that the inode number is not yet known. */
2977 || (print_inode && inode == NOT_AN_INODE_NUMBER)
2978 || (format_needs_type
2979 && (type == unknown || command_line_arg
2980 /* --indicator-style=classify (aka -F)
2981 requires that we stat each regular file
2982 to see if it's executable. */
2983 || (type == normal && (indicator_style == classify
2984 /* This is so that --color ends up
2985 highlighting files with these mode
2986 bits set even when options like -F are
2987 not specified. Note we do a redundant
2988 stat in the very unlikely case where
2989 C_CAP is set but not the others. */
2990 || (print_with_color
2991 && (is_colored (C_EXEC)
2992 || is_colored (C_SETUID)
2993 || is_colored (C_SETGID)
2994 || is_colored (C_CAP)))
2995 )))))
2998 /* Absolute name of this file. */
2999 char *absolute_name;
3000 bool do_deref;
3001 int err;
3003 if (name[0] == '/' || dirname[0] == 0)
3004 absolute_name = (char *) name;
3005 else
3007 absolute_name = alloca (strlen (name) + strlen (dirname) + 2);
3008 attach (absolute_name, dirname, name);
3011 switch (dereference)
3013 case DEREF_ALWAYS:
3014 err = stat (absolute_name, &f->stat);
3015 do_deref = true;
3016 break;
3018 case DEREF_COMMAND_LINE_ARGUMENTS:
3019 case DEREF_COMMAND_LINE_SYMLINK_TO_DIR:
3020 if (command_line_arg)
3022 bool need_lstat;
3023 err = stat (absolute_name, &f->stat);
3024 do_deref = true;
3026 if (dereference == DEREF_COMMAND_LINE_ARGUMENTS)
3027 break;
3029 need_lstat = (err < 0
3030 ? errno == ENOENT
3031 : ! S_ISDIR (f->stat.st_mode));
3032 if (!need_lstat)
3033 break;
3035 /* stat failed because of ENOENT, maybe indicating a dangling
3036 symlink. Or stat succeeded, ABSOLUTE_NAME does not refer to a
3037 directory, and --dereference-command-line-symlink-to-dir is
3038 in effect. Fall through so that we call lstat instead. */
3041 default: /* DEREF_NEVER */
3042 err = lstat (absolute_name, &f->stat);
3043 do_deref = false;
3044 break;
3047 if (err != 0)
3049 /* Failure to stat a command line argument leads to
3050 an exit status of 2. For other files, stat failure
3051 provokes an exit status of 1. */
3052 file_failure (command_line_arg,
3053 _("cannot access %s"), absolute_name);
3054 if (command_line_arg)
3055 return 0;
3057 f->name = xstrdup (name);
3058 cwd_n_used++;
3060 return 0;
3063 f->stat_ok = true;
3065 /* Note has_capability() adds around 30% runtime to 'ls --color' */
3066 if ((type == normal || S_ISREG (f->stat.st_mode))
3067 && print_with_color && is_colored (C_CAP))
3068 f->has_capability = has_capability_cache (absolute_name, f);
3070 if (format == long_format || print_scontext)
3072 bool have_scontext = false;
3073 bool have_acl = false;
3074 int attr_len = getfilecon_cache (absolute_name, f, do_deref);
3075 err = (attr_len < 0);
3077 if (err == 0)
3079 if (is_smack_enabled ())
3080 have_scontext = ! STREQ ("_", f->scontext);
3081 else
3082 have_scontext = ! STREQ ("unlabeled", f->scontext);
3084 else
3086 f->scontext = UNKNOWN_SECURITY_CONTEXT;
3088 /* When requesting security context information, don't make
3089 ls fail just because the file (even a command line argument)
3090 isn't on the right type of file system. I.e., a getfilecon
3091 failure isn't in the same class as a stat failure. */
3092 if (is_ENOTSUP (errno) || errno == ENODATA)
3093 err = 0;
3096 if (err == 0 && format == long_format)
3098 int n = file_has_acl_cache (absolute_name, f);
3099 err = (n < 0);
3100 have_acl = (0 < n);
3103 f->acl_type = (!have_scontext && !have_acl
3104 ? ACL_T_NONE
3105 : (have_scontext && !have_acl
3106 ? ACL_T_LSM_CONTEXT_ONLY
3107 : ACL_T_YES));
3108 any_has_acl |= f->acl_type != ACL_T_NONE;
3110 if (err)
3111 error (0, errno, "%s", quotef (absolute_name));
3114 if (S_ISLNK (f->stat.st_mode)
3115 && (format == long_format || check_symlink_color))
3117 struct stat linkstats;
3119 get_link_name (absolute_name, f, command_line_arg);
3120 char *linkname = make_link_name (absolute_name, f->linkname);
3122 /* Avoid following symbolic links when possible, ie, when
3123 they won't be traced and when no indicator is needed. */
3124 if (linkname
3125 && (file_type <= indicator_style || check_symlink_color)
3126 && stat (linkname, &linkstats) == 0)
3128 f->linkok = true;
3130 /* Symbolic links to directories that are mentioned on the
3131 command line are automatically traced if not being
3132 listed as files. */
3133 if (!command_line_arg || format == long_format
3134 || !S_ISDIR (linkstats.st_mode))
3136 /* Get the linked-to file's mode for the filetype indicator
3137 in long listings. */
3138 f->linkmode = linkstats.st_mode;
3141 free (linkname);
3144 if (S_ISLNK (f->stat.st_mode))
3145 f->filetype = symbolic_link;
3146 else if (S_ISDIR (f->stat.st_mode))
3148 if (command_line_arg && !immediate_dirs)
3149 f->filetype = arg_directory;
3150 else
3151 f->filetype = directory;
3153 else
3154 f->filetype = normal;
3156 blocks = ST_NBLOCKS (f->stat);
3157 if (format == long_format || print_block_size)
3159 char buf[LONGEST_HUMAN_READABLE + 1];
3160 int len = mbswidth (human_readable (blocks, buf, human_output_opts,
3161 ST_NBLOCKSIZE, output_block_size),
3163 if (block_size_width < len)
3164 block_size_width = len;
3167 if (format == long_format)
3169 if (print_owner)
3171 int len = format_user_width (f->stat.st_uid);
3172 if (owner_width < len)
3173 owner_width = len;
3176 if (print_group)
3178 int len = format_group_width (f->stat.st_gid);
3179 if (group_width < len)
3180 group_width = len;
3183 if (print_author)
3185 int len = format_user_width (f->stat.st_author);
3186 if (author_width < len)
3187 author_width = len;
3191 if (print_scontext)
3193 int len = strlen (f->scontext);
3194 if (scontext_width < len)
3195 scontext_width = len;
3198 if (format == long_format)
3200 char b[INT_BUFSIZE_BOUND (uintmax_t)];
3201 int b_len = strlen (umaxtostr (f->stat.st_nlink, b));
3202 if (nlink_width < b_len)
3203 nlink_width = b_len;
3205 if (S_ISCHR (f->stat.st_mode) || S_ISBLK (f->stat.st_mode))
3207 char buf[INT_BUFSIZE_BOUND (uintmax_t)];
3208 int len = strlen (umaxtostr (major (f->stat.st_rdev), buf));
3209 if (major_device_number_width < len)
3210 major_device_number_width = len;
3211 len = strlen (umaxtostr (minor (f->stat.st_rdev), buf));
3212 if (minor_device_number_width < len)
3213 minor_device_number_width = len;
3214 len = major_device_number_width + 2 + minor_device_number_width;
3215 if (file_size_width < len)
3216 file_size_width = len;
3218 else
3220 char buf[LONGEST_HUMAN_READABLE + 1];
3221 uintmax_t size = unsigned_file_size (f->stat.st_size);
3222 int len = mbswidth (human_readable (size, buf,
3223 file_human_output_opts,
3224 1, file_output_block_size),
3226 if (file_size_width < len)
3227 file_size_width = len;
3232 if (print_inode)
3234 char buf[INT_BUFSIZE_BOUND (uintmax_t)];
3235 int len = strlen (umaxtostr (f->stat.st_ino, buf));
3236 if (inode_number_width < len)
3237 inode_number_width = len;
3240 f->name = xstrdup (name);
3241 cwd_n_used++;
3243 return blocks;
3246 /* Return true if F refers to a directory. */
3247 static bool
3248 is_directory (const struct fileinfo *f)
3250 return f->filetype == directory || f->filetype == arg_directory;
3253 /* Put the name of the file that FILENAME is a symbolic link to
3254 into the LINKNAME field of 'f'. COMMAND_LINE_ARG indicates whether
3255 FILENAME is a command-line argument. */
3257 static void
3258 get_link_name (char const *filename, struct fileinfo *f, bool command_line_arg)
3260 f->linkname = areadlink_with_size (filename, f->stat.st_size);
3261 if (f->linkname == NULL)
3262 file_failure (command_line_arg, _("cannot read symbolic link %s"),
3263 filename);
3266 /* If LINKNAME is a relative name and NAME contains one or more
3267 leading directories, return LINKNAME with those directories
3268 prepended; otherwise, return a copy of LINKNAME.
3269 If LINKNAME is NULL, return NULL. */
3271 static char *
3272 make_link_name (char const *name, char const *linkname)
3274 if (!linkname)
3275 return NULL;
3277 if (IS_ABSOLUTE_FILE_NAME (linkname))
3278 return xstrdup (linkname);
3280 /* The link is to a relative name. Prepend any leading directory
3281 in 'name' to the link name. */
3282 size_t prefix_len = dir_len (name);
3283 if (prefix_len == 0)
3284 return xstrdup (linkname);
3286 char *p = xmalloc (prefix_len + 1 + strlen (linkname) + 1);
3288 /* PREFIX_LEN usually specifies a string not ending in slash.
3289 In that case, extend it by one, since the next byte *is* a slash.
3290 Otherwise, the prefix is "/", so leave the length unchanged. */
3291 if ( ! ISSLASH (name[prefix_len - 1]))
3292 ++prefix_len;
3294 stpcpy (stpncpy (p, name, prefix_len), linkname);
3295 return p;
3298 /* Return true if the last component of NAME is '.' or '..'
3299 This is so we don't try to recurse on '././././. ...' */
3301 static bool
3302 basename_is_dot_or_dotdot (const char *name)
3304 char const *base = last_component (name);
3305 return dot_or_dotdot (base);
3308 /* Remove any entries from CWD_FILE that are for directories,
3309 and queue them to be listed as directories instead.
3310 DIRNAME is the prefix to prepend to each dirname
3311 to make it correct relative to ls's working dir;
3312 if it is null, no prefix is needed and "." and ".." should not be ignored.
3313 If COMMAND_LINE_ARG is true, this directory was mentioned at the top level,
3314 This is desirable when processing directories recursively. */
3316 static void
3317 extract_dirs_from_files (char const *dirname, bool command_line_arg)
3319 size_t i;
3320 size_t j;
3321 bool ignore_dot_and_dot_dot = (dirname != NULL);
3323 if (dirname && LOOP_DETECT)
3325 /* Insert a marker entry first. When we dequeue this marker entry,
3326 we'll know that DIRNAME has been processed and may be removed
3327 from the set of active directories. */
3328 queue_directory (NULL, dirname, false);
3331 /* Queue the directories last one first, because queueing reverses the
3332 order. */
3333 for (i = cwd_n_used; i-- != 0; )
3335 struct fileinfo *f = sorted_file[i];
3337 if (is_directory (f)
3338 && (! ignore_dot_and_dot_dot
3339 || ! basename_is_dot_or_dotdot (f->name)))
3341 if (!dirname || f->name[0] == '/')
3342 queue_directory (f->name, f->linkname, command_line_arg);
3343 else
3345 char *name = file_name_concat (dirname, f->name, NULL);
3346 queue_directory (name, f->linkname, command_line_arg);
3347 free (name);
3349 if (f->filetype == arg_directory)
3350 free_ent (f);
3354 /* Now delete the directories from the table, compacting all the remaining
3355 entries. */
3357 for (i = 0, j = 0; i < cwd_n_used; i++)
3359 struct fileinfo *f = sorted_file[i];
3360 sorted_file[j] = f;
3361 j += (f->filetype != arg_directory);
3363 cwd_n_used = j;
3366 /* Use strcoll to compare strings in this locale. If an error occurs,
3367 report an error and longjmp to failed_strcoll. */
3369 static jmp_buf failed_strcoll;
3371 static int
3372 xstrcoll (char const *a, char const *b)
3374 int diff;
3375 errno = 0;
3376 diff = strcoll (a, b);
3377 if (errno)
3379 error (0, errno, _("cannot compare file names %s and %s"),
3380 quote_n (0, a), quote_n (1, b));
3381 set_exit_status (false);
3382 longjmp (failed_strcoll, 1);
3384 return diff;
3387 /* Comparison routines for sorting the files. */
3389 typedef void const *V;
3390 typedef int (*qsortFunc)(V a, V b);
3392 /* Used below in DEFINE_SORT_FUNCTIONS for _df_ sort function variants.
3393 The do { ... } while(0) makes it possible to use the macro more like
3394 a statement, without violating C89 rules: */
3395 #define DIRFIRST_CHECK(a, b) \
3396 do \
3398 bool a_is_dir = is_directory ((struct fileinfo const *) a); \
3399 bool b_is_dir = is_directory ((struct fileinfo const *) b); \
3400 if (a_is_dir && !b_is_dir) \
3401 return -1; /* a goes before b */ \
3402 if (!a_is_dir && b_is_dir) \
3403 return 1; /* b goes before a */ \
3405 while (0)
3407 /* Define the 8 different sort function variants required for each sortkey.
3408 KEY_NAME is a token describing the sort key, e.g., ctime, atime, size.
3409 KEY_CMP_FUNC is a function to compare records based on that key, e.g.,
3410 ctime_cmp, atime_cmp, size_cmp. Append KEY_NAME to the string,
3411 '[rev_][x]str{cmp|coll}[_df]_', to create each function name. */
3412 #define DEFINE_SORT_FUNCTIONS(key_name, key_cmp_func) \
3413 /* direct, non-dirfirst versions */ \
3414 static int xstrcoll_##key_name (V a, V b) \
3415 { return key_cmp_func (a, b, xstrcoll); } \
3416 static int strcmp_##key_name (V a, V b) \
3417 { return key_cmp_func (a, b, strcmp); } \
3419 /* reverse, non-dirfirst versions */ \
3420 static int rev_xstrcoll_##key_name (V a, V b) \
3421 { return key_cmp_func (b, a, xstrcoll); } \
3422 static int rev_strcmp_##key_name (V a, V b) \
3423 { return key_cmp_func (b, a, strcmp); } \
3425 /* direct, dirfirst versions */ \
3426 static int xstrcoll_df_##key_name (V a, V b) \
3427 { DIRFIRST_CHECK (a, b); return key_cmp_func (a, b, xstrcoll); } \
3428 static int strcmp_df_##key_name (V a, V b) \
3429 { DIRFIRST_CHECK (a, b); return key_cmp_func (a, b, strcmp); } \
3431 /* reverse, dirfirst versions */ \
3432 static int rev_xstrcoll_df_##key_name (V a, V b) \
3433 { DIRFIRST_CHECK (a, b); return key_cmp_func (b, a, xstrcoll); } \
3434 static int rev_strcmp_df_##key_name (V a, V b) \
3435 { DIRFIRST_CHECK (a, b); return key_cmp_func (b, a, strcmp); }
3437 static inline int
3438 cmp_ctime (struct fileinfo const *a, struct fileinfo const *b,
3439 int (*cmp) (char const *, char const *))
3441 int diff = timespec_cmp (get_stat_ctime (&b->stat),
3442 get_stat_ctime (&a->stat));
3443 return diff ? diff : cmp (a->name, b->name);
3446 static inline int
3447 cmp_mtime (struct fileinfo const *a, struct fileinfo const *b,
3448 int (*cmp) (char const *, char const *))
3450 int diff = timespec_cmp (get_stat_mtime (&b->stat),
3451 get_stat_mtime (&a->stat));
3452 return diff ? diff : cmp (a->name, b->name);
3455 static inline int
3456 cmp_atime (struct fileinfo const *a, struct fileinfo const *b,
3457 int (*cmp) (char const *, char const *))
3459 int diff = timespec_cmp (get_stat_atime (&b->stat),
3460 get_stat_atime (&a->stat));
3461 return diff ? diff : cmp (a->name, b->name);
3464 static inline int
3465 cmp_size (struct fileinfo const *a, struct fileinfo const *b,
3466 int (*cmp) (char const *, char const *))
3468 int diff = longdiff (b->stat.st_size, a->stat.st_size);
3469 return diff ? diff : cmp (a->name, b->name);
3472 static inline int
3473 cmp_name (struct fileinfo const *a, struct fileinfo const *b,
3474 int (*cmp) (char const *, char const *))
3476 return cmp (a->name, b->name);
3479 /* Compare file extensions. Files with no extension are 'smallest'.
3480 If extensions are the same, compare by filenames instead. */
3482 static inline int
3483 cmp_extension (struct fileinfo const *a, struct fileinfo const *b,
3484 int (*cmp) (char const *, char const *))
3486 char const *base1 = strrchr (a->name, '.');
3487 char const *base2 = strrchr (b->name, '.');
3488 int diff = cmp (base1 ? base1 : "", base2 ? base2 : "");
3489 return diff ? diff : cmp (a->name, b->name);
3492 DEFINE_SORT_FUNCTIONS (ctime, cmp_ctime)
3493 DEFINE_SORT_FUNCTIONS (mtime, cmp_mtime)
3494 DEFINE_SORT_FUNCTIONS (atime, cmp_atime)
3495 DEFINE_SORT_FUNCTIONS (size, cmp_size)
3496 DEFINE_SORT_FUNCTIONS (name, cmp_name)
3497 DEFINE_SORT_FUNCTIONS (extension, cmp_extension)
3499 /* Compare file versions.
3500 Unlike all other compare functions above, cmp_version depends only
3501 on filevercmp, which does not fail (even for locale reasons), and does not
3502 need a secondary sort key. See lib/filevercmp.h for function description.
3504 All the other sort options, in fact, need xstrcoll and strcmp variants,
3505 because they all use a string comparison (either as the primary or secondary
3506 sort key), and xstrcoll has the ability to do a longjmp if strcoll fails for
3507 locale reasons. Lastly, filevercmp is ALWAYS available with gnulib. */
3508 static inline int
3509 cmp_version (struct fileinfo const *a, struct fileinfo const *b)
3511 return filevercmp (a->name, b->name);
3514 static int xstrcoll_version (V a, V b)
3515 { return cmp_version (a, b); }
3516 static int rev_xstrcoll_version (V a, V b)
3517 { return cmp_version (b, a); }
3518 static int xstrcoll_df_version (V a, V b)
3519 { DIRFIRST_CHECK (a, b); return cmp_version (a, b); }
3520 static int rev_xstrcoll_df_version (V a, V b)
3521 { DIRFIRST_CHECK (a, b); return cmp_version (b, a); }
3524 /* We have 2^3 different variants for each sort-key function
3525 (for 3 independent sort modes).
3526 The function pointers stored in this array must be dereferenced as:
3528 sort_variants[sort_key][use_strcmp][reverse][dirs_first]
3530 Note that the order in which sort keys are listed in the function pointer
3531 array below is defined by the order of the elements in the time_type and
3532 sort_type enums! */
3534 #define LIST_SORTFUNCTION_VARIANTS(key_name) \
3537 { xstrcoll_##key_name, xstrcoll_df_##key_name }, \
3538 { rev_xstrcoll_##key_name, rev_xstrcoll_df_##key_name }, \
3539 }, \
3541 { strcmp_##key_name, strcmp_df_##key_name }, \
3542 { rev_strcmp_##key_name, rev_strcmp_df_##key_name }, \
3546 static qsortFunc const sort_functions[][2][2][2] =
3548 LIST_SORTFUNCTION_VARIANTS (name),
3549 LIST_SORTFUNCTION_VARIANTS (extension),
3550 LIST_SORTFUNCTION_VARIANTS (size),
3554 { xstrcoll_version, xstrcoll_df_version },
3555 { rev_xstrcoll_version, rev_xstrcoll_df_version },
3558 /* We use NULL for the strcmp variants of version comparison
3559 since as explained in cmp_version definition, version comparison
3560 does not rely on xstrcoll, so it will never longjmp, and never
3561 need to try the strcmp fallback. */
3563 { NULL, NULL },
3564 { NULL, NULL },
3568 /* last are time sort functions */
3569 LIST_SORTFUNCTION_VARIANTS (mtime),
3570 LIST_SORTFUNCTION_VARIANTS (ctime),
3571 LIST_SORTFUNCTION_VARIANTS (atime)
3574 /* The number of sort keys is calculated as the sum of
3575 the number of elements in the sort_type enum (i.e., sort_numtypes)
3576 the number of elements in the time_type enum (i.e., time_numtypes) - 1
3577 This is because when sort_type==sort_time, we have up to
3578 time_numtypes possible sort keys.
3580 This line verifies at compile-time that the array of sort functions has been
3581 initialized for all possible sort keys. */
3582 verify (ARRAY_CARDINALITY (sort_functions)
3583 == sort_numtypes + time_numtypes - 1 );
3585 /* Set up SORTED_FILE to point to the in-use entries in CWD_FILE, in order. */
3587 static void
3588 initialize_ordering_vector (void)
3590 size_t i;
3591 for (i = 0; i < cwd_n_used; i++)
3592 sorted_file[i] = &cwd_file[i];
3595 /* Sort the files now in the table. */
3597 static void
3598 sort_files (void)
3600 bool use_strcmp;
3602 if (sorted_file_alloc < cwd_n_used + cwd_n_used / 2)
3604 free (sorted_file);
3605 sorted_file = xnmalloc (cwd_n_used, 3 * sizeof *sorted_file);
3606 sorted_file_alloc = 3 * cwd_n_used;
3609 initialize_ordering_vector ();
3611 if (sort_type == sort_none)
3612 return;
3614 /* Try strcoll. If it fails, fall back on strcmp. We can't safely
3615 ignore strcoll failures, as a failing strcoll might be a
3616 comparison function that is not a total order, and if we ignored
3617 the failure this might cause qsort to dump core. */
3619 if (! setjmp (failed_strcoll))
3620 use_strcmp = false; /* strcoll() succeeded */
3621 else
3623 use_strcmp = true;
3624 assert (sort_type != sort_version);
3625 initialize_ordering_vector ();
3628 /* When sort_type == sort_time, use time_type as subindex. */
3629 mpsort ((void const **) sorted_file, cwd_n_used,
3630 sort_functions[sort_type + (sort_type == sort_time ? time_type : 0)]
3631 [use_strcmp][sort_reverse]
3632 [directories_first]);
3635 /* List all the files now in the table. */
3637 static void
3638 print_current_files (void)
3640 size_t i;
3642 switch (format)
3644 case one_per_line:
3645 for (i = 0; i < cwd_n_used; i++)
3647 print_file_name_and_frills (sorted_file[i], 0);
3648 putchar ('\n');
3650 break;
3652 case many_per_line:
3653 if (! line_length)
3654 print_with_separator (' ');
3655 else
3656 print_many_per_line ();
3657 break;
3659 case horizontal:
3660 if (! line_length)
3661 print_with_separator (' ');
3662 else
3663 print_horizontal ();
3664 break;
3666 case with_commas:
3667 print_with_separator (',');
3668 break;
3670 case long_format:
3671 for (i = 0; i < cwd_n_used; i++)
3673 set_normal_color ();
3674 print_long_format (sorted_file[i]);
3675 DIRED_PUTCHAR ('\n');
3677 break;
3681 /* Replace the first %b with precomputed aligned month names.
3682 Note on glibc-2.7 at least, this speeds up the whole 'ls -lU'
3683 process by around 17%, compared to letting strftime() handle the %b. */
3685 static size_t
3686 align_nstrftime (char *buf, size_t size, char const *fmt, struct tm const *tm,
3687 timezone_t tz, int ns)
3689 const char *nfmt = fmt;
3690 /* In the unlikely event that rpl_fmt below is not large enough,
3691 the replacement is not done. A malloc here slows ls down by 2% */
3692 char rpl_fmt[sizeof (abmon[0]) + 100];
3693 const char *pb;
3694 if (required_mon_width && (pb = strstr (fmt, "%b"))
3695 && 0 <= tm->tm_mon && tm->tm_mon <= 11)
3697 if (strlen (fmt) < (sizeof (rpl_fmt) - sizeof (abmon[0]) + 2))
3699 char *pfmt = rpl_fmt;
3700 nfmt = rpl_fmt;
3702 pfmt = mempcpy (pfmt, fmt, pb - fmt);
3703 pfmt = stpcpy (pfmt, abmon[tm->tm_mon]);
3704 strcpy (pfmt, pb + 2);
3707 size_t ret = nstrftime (buf, size, nfmt, tm, tz, ns);
3708 return ret;
3711 /* Return the expected number of columns in a long-format time stamp,
3712 or zero if it cannot be calculated. */
3714 static int
3715 long_time_expected_width (void)
3717 static int width = -1;
3719 if (width < 0)
3721 time_t epoch = 0;
3722 struct tm const *tm = localtime (&epoch);
3723 char buf[TIME_STAMP_LEN_MAXIMUM + 1];
3725 /* In case you're wondering if localtime can fail with an input time_t
3726 value of 0, let's just say it's very unlikely, but not inconceivable.
3727 The TZ environment variable would have to specify a time zone that
3728 is 2**31-1900 years or more ahead of UTC. This could happen only on
3729 a 64-bit system that blindly accepts e.g., TZ=UTC+20000000000000.
3730 However, this is not possible with Solaris 10 or glibc-2.3.5, since
3731 their implementations limit the offset to 167:59 and 24:00, resp. */
3732 if (tm)
3734 size_t len =
3735 align_nstrftime (buf, sizeof buf, long_time_format[0], tm,
3736 localtz, 0);
3737 if (len != 0)
3738 width = mbsnwidth (buf, len, 0);
3741 if (width < 0)
3742 width = 0;
3745 return width;
3748 /* Print the user or group name NAME, with numeric id ID, using a
3749 print width of WIDTH columns. */
3751 static void
3752 format_user_or_group (char const *name, unsigned long int id, int width)
3754 size_t len;
3756 if (name)
3758 int width_gap = width - mbswidth (name, 0);
3759 int pad = MAX (0, width_gap);
3760 fputs (name, stdout);
3761 len = strlen (name) + pad;
3764 putchar (' ');
3765 while (pad--);
3767 else
3769 printf ("%*lu ", width, id);
3770 len = width;
3773 dired_pos += len + 1;
3776 /* Print the name or id of the user with id U, using a print width of
3777 WIDTH. */
3779 static void
3780 format_user (uid_t u, int width, bool stat_ok)
3782 format_user_or_group (! stat_ok ? "?" :
3783 (numeric_ids ? NULL : getuser (u)), u, width);
3786 /* Likewise, for groups. */
3788 static void
3789 format_group (gid_t g, int width, bool stat_ok)
3791 format_user_or_group (! stat_ok ? "?" :
3792 (numeric_ids ? NULL : getgroup (g)), g, width);
3795 /* Return the number of columns that format_user_or_group will print. */
3797 static int
3798 format_user_or_group_width (char const *name, unsigned long int id)
3800 if (name)
3802 int len = mbswidth (name, 0);
3803 return MAX (0, len);
3805 else
3807 char buf[INT_BUFSIZE_BOUND (id)];
3808 sprintf (buf, "%lu", id);
3809 return strlen (buf);
3813 /* Return the number of columns that format_user will print. */
3815 static int
3816 format_user_width (uid_t u)
3818 return format_user_or_group_width (numeric_ids ? NULL : getuser (u), u);
3821 /* Likewise, for groups. */
3823 static int
3824 format_group_width (gid_t g)
3826 return format_user_or_group_width (numeric_ids ? NULL : getgroup (g), g);
3829 /* Return a pointer to a formatted version of F->stat.st_ino,
3830 possibly using buffer, BUF, of length BUFLEN, which must be at least
3831 INT_BUFSIZE_BOUND (uintmax_t) bytes. */
3832 static char *
3833 format_inode (char *buf, size_t buflen, const struct fileinfo *f)
3835 assert (INT_BUFSIZE_BOUND (uintmax_t) <= buflen);
3836 return (f->stat_ok && f->stat.st_ino != NOT_AN_INODE_NUMBER
3837 ? umaxtostr (f->stat.st_ino, buf)
3838 : (char *) "?");
3841 /* Print information about F in long format. */
3842 static void
3843 print_long_format (const struct fileinfo *f)
3845 char modebuf[12];
3846 char buf
3847 [LONGEST_HUMAN_READABLE + 1 /* inode */
3848 + LONGEST_HUMAN_READABLE + 1 /* size in blocks */
3849 + sizeof (modebuf) - 1 + 1 /* mode string */
3850 + INT_BUFSIZE_BOUND (uintmax_t) /* st_nlink */
3851 + LONGEST_HUMAN_READABLE + 2 /* major device number */
3852 + LONGEST_HUMAN_READABLE + 1 /* minor device number */
3853 + TIME_STAMP_LEN_MAXIMUM + 1 /* max length of time/date */
3855 size_t s;
3856 char *p;
3857 struct timespec when_timespec;
3858 struct tm *when_local;
3860 /* Compute the mode string, except remove the trailing space if no
3861 file in this directory has an ACL or security context. */
3862 if (f->stat_ok)
3863 filemodestring (&f->stat, modebuf);
3864 else
3866 modebuf[0] = filetype_letter[f->filetype];
3867 memset (modebuf + 1, '?', 10);
3868 modebuf[11] = '\0';
3870 if (! any_has_acl)
3871 modebuf[10] = '\0';
3872 else if (f->acl_type == ACL_T_LSM_CONTEXT_ONLY)
3873 modebuf[10] = '.';
3874 else if (f->acl_type == ACL_T_YES)
3875 modebuf[10] = '+';
3877 switch (time_type)
3879 case time_ctime:
3880 when_timespec = get_stat_ctime (&f->stat);
3881 break;
3882 case time_mtime:
3883 when_timespec = get_stat_mtime (&f->stat);
3884 break;
3885 case time_atime:
3886 when_timespec = get_stat_atime (&f->stat);
3887 break;
3888 default:
3889 abort ();
3892 p = buf;
3894 if (print_inode)
3896 char hbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3897 sprintf (p, "%*s ", inode_number_width,
3898 format_inode (hbuf, sizeof hbuf, f));
3899 /* Increment by strlen (p) here, rather than by inode_number_width + 1.
3900 The latter is wrong when inode_number_width is zero. */
3901 p += strlen (p);
3904 if (print_block_size)
3906 char hbuf[LONGEST_HUMAN_READABLE + 1];
3907 char const *blocks =
3908 (! f->stat_ok
3909 ? "?"
3910 : human_readable (ST_NBLOCKS (f->stat), hbuf, human_output_opts,
3911 ST_NBLOCKSIZE, output_block_size));
3912 int pad;
3913 for (pad = block_size_width - mbswidth (blocks, 0); 0 < pad; pad--)
3914 *p++ = ' ';
3915 while ((*p++ = *blocks++))
3916 continue;
3917 p[-1] = ' ';
3920 /* The last byte of the mode string is the POSIX
3921 "optional alternate access method flag". */
3923 char hbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3924 sprintf (p, "%s %*s ", modebuf, nlink_width,
3925 ! f->stat_ok ? "?" : umaxtostr (f->stat.st_nlink, hbuf));
3927 /* Increment by strlen (p) here, rather than by, e.g.,
3928 sizeof modebuf - 2 + any_has_acl + 1 + nlink_width + 1.
3929 The latter is wrong when nlink_width is zero. */
3930 p += strlen (p);
3932 DIRED_INDENT ();
3934 if (print_owner || print_group || print_author || print_scontext)
3936 DIRED_FPUTS (buf, stdout, p - buf);
3938 if (print_owner)
3939 format_user (f->stat.st_uid, owner_width, f->stat_ok);
3941 if (print_group)
3942 format_group (f->stat.st_gid, group_width, f->stat_ok);
3944 if (print_author)
3945 format_user (f->stat.st_author, author_width, f->stat_ok);
3947 if (print_scontext)
3948 format_user_or_group (f->scontext, 0, scontext_width);
3950 p = buf;
3953 if (f->stat_ok
3954 && (S_ISCHR (f->stat.st_mode) || S_ISBLK (f->stat.st_mode)))
3956 char majorbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3957 char minorbuf[INT_BUFSIZE_BOUND (uintmax_t)];
3958 int blanks_width = (file_size_width
3959 - (major_device_number_width + 2
3960 + minor_device_number_width));
3961 sprintf (p, "%*s, %*s ",
3962 major_device_number_width + MAX (0, blanks_width),
3963 umaxtostr (major (f->stat.st_rdev), majorbuf),
3964 minor_device_number_width,
3965 umaxtostr (minor (f->stat.st_rdev), minorbuf));
3966 p += file_size_width + 1;
3968 else
3970 char hbuf[LONGEST_HUMAN_READABLE + 1];
3971 char const *size =
3972 (! f->stat_ok
3973 ? "?"
3974 : human_readable (unsigned_file_size (f->stat.st_size),
3975 hbuf, file_human_output_opts, 1,
3976 file_output_block_size));
3977 int pad;
3978 for (pad = file_size_width - mbswidth (size, 0); 0 < pad; pad--)
3979 *p++ = ' ';
3980 while ((*p++ = *size++))
3981 continue;
3982 p[-1] = ' ';
3985 when_local = localtime (&when_timespec.tv_sec);
3986 s = 0;
3987 *p = '\1';
3989 if (f->stat_ok && when_local)
3991 struct timespec six_months_ago;
3992 bool recent;
3993 char const *fmt;
3995 /* If the file appears to be in the future, update the current
3996 time, in case the file happens to have been modified since
3997 the last time we checked the clock. */
3998 if (timespec_cmp (current_time, when_timespec) < 0)
4000 /* Note that gettime may call gettimeofday which, on some non-
4001 compliant systems, clobbers the buffer used for localtime's result.
4002 But it's ok here, because we use a gettimeofday wrapper that
4003 saves and restores the buffer around the gettimeofday call. */
4004 gettime (&current_time);
4007 /* Consider a time to be recent if it is within the past six months.
4008 A Gregorian year has 365.2425 * 24 * 60 * 60 == 31556952 seconds
4009 on the average. Write this value as an integer constant to
4010 avoid floating point hassles. */
4011 six_months_ago.tv_sec = current_time.tv_sec - 31556952 / 2;
4012 six_months_ago.tv_nsec = current_time.tv_nsec;
4014 recent = (timespec_cmp (six_months_ago, when_timespec) < 0
4015 && (timespec_cmp (when_timespec, current_time) < 0));
4016 fmt = long_time_format[recent];
4018 /* We assume here that all time zones are offset from UTC by a
4019 whole number of seconds. */
4020 s = align_nstrftime (p, TIME_STAMP_LEN_MAXIMUM + 1, fmt,
4021 when_local, localtz, when_timespec.tv_nsec);
4024 if (s || !*p)
4026 p += s;
4027 *p++ = ' ';
4029 /* NUL-terminate the string -- fputs (via DIRED_FPUTS) requires it. */
4030 *p = '\0';
4032 else
4034 /* The time cannot be converted using the desired format, so
4035 print it as a huge integer number of seconds. */
4036 char hbuf[INT_BUFSIZE_BOUND (intmax_t)];
4037 sprintf (p, "%*s ", long_time_expected_width (),
4038 (! f->stat_ok
4039 ? "?"
4040 : timetostr (when_timespec.tv_sec, hbuf)));
4041 /* FIXME: (maybe) We discarded when_timespec.tv_nsec. */
4042 p += strlen (p);
4045 DIRED_FPUTS (buf, stdout, p - buf);
4046 size_t w = print_name_with_quoting (f, false, &dired_obstack, p - buf);
4048 if (f->filetype == symbolic_link)
4050 if (f->linkname)
4052 DIRED_FPUTS_LITERAL (" -> ", stdout);
4053 print_name_with_quoting (f, true, NULL, (p - buf) + w + 4);
4054 if (indicator_style != none)
4055 print_type_indicator (true, f->linkmode, unknown);
4058 else if (indicator_style != none)
4059 print_type_indicator (f->stat_ok, f->stat.st_mode, f->filetype);
4062 /* Output to OUT a quoted representation of the file name NAME,
4063 using OPTIONS to control quoting. Produce no output if OUT is NULL.
4064 Store the number of screen columns occupied by NAME's quoted
4065 representation into WIDTH, if non-NULL. Return the number of bytes
4066 produced. */
4068 static size_t
4069 quote_name (FILE *out, const char *name, struct quoting_options const *options,
4070 size_t *width)
4072 char smallbuf[BUFSIZ];
4073 size_t len = quotearg_buffer (smallbuf, sizeof smallbuf, name, -1, options);
4074 char *buf;
4075 size_t displayed_width IF_LINT ( = 0);
4077 if (len < sizeof smallbuf)
4078 buf = smallbuf;
4079 else
4081 buf = alloca (len + 1);
4082 quotearg_buffer (buf, len + 1, name, -1, options);
4085 enum quoting_style qs = get_quoting_style (options);
4087 if (qmark_funny_chars
4088 && (qs == shell_quoting_style || qs == shell_always_quoting_style
4089 || qs == literal_quoting_style))
4091 if (MB_CUR_MAX > 1)
4093 char const *p = buf;
4094 char const *plimit = buf + len;
4095 char *q = buf;
4096 displayed_width = 0;
4098 while (p < plimit)
4099 switch (*p)
4101 case ' ': case '!': case '"': case '#': case '%':
4102 case '&': case '\'': case '(': case ')': case '*':
4103 case '+': case ',': case '-': case '.': case '/':
4104 case '0': case '1': case '2': case '3': case '4':
4105 case '5': case '6': case '7': case '8': case '9':
4106 case ':': case ';': case '<': case '=': case '>':
4107 case '?':
4108 case 'A': case 'B': case 'C': case 'D': case 'E':
4109 case 'F': case 'G': case 'H': case 'I': case 'J':
4110 case 'K': case 'L': case 'M': case 'N': case 'O':
4111 case 'P': case 'Q': case 'R': case 'S': case 'T':
4112 case 'U': case 'V': case 'W': case 'X': case 'Y':
4113 case 'Z':
4114 case '[': case '\\': case ']': case '^': case '_':
4115 case 'a': case 'b': case 'c': case 'd': case 'e':
4116 case 'f': case 'g': case 'h': case 'i': case 'j':
4117 case 'k': case 'l': case 'm': case 'n': case 'o':
4118 case 'p': case 'q': case 'r': case 's': case 't':
4119 case 'u': case 'v': case 'w': case 'x': case 'y':
4120 case 'z': case '{': case '|': case '}': case '~':
4121 /* These characters are printable ASCII characters. */
4122 *q++ = *p++;
4123 displayed_width += 1;
4124 break;
4125 default:
4126 /* If we have a multibyte sequence, copy it until we
4127 reach its end, replacing each non-printable multibyte
4128 character with a single question mark. */
4130 mbstate_t mbstate = { 0, };
4133 wchar_t wc;
4134 size_t bytes;
4135 int w;
4137 bytes = mbrtowc (&wc, p, plimit - p, &mbstate);
4139 if (bytes == (size_t) -1)
4141 /* An invalid multibyte sequence was
4142 encountered. Skip one input byte, and
4143 put a question mark. */
4144 p++;
4145 *q++ = '?';
4146 displayed_width += 1;
4147 break;
4150 if (bytes == (size_t) -2)
4152 /* An incomplete multibyte character
4153 at the end. Replace it entirely with
4154 a question mark. */
4155 p = plimit;
4156 *q++ = '?';
4157 displayed_width += 1;
4158 break;
4161 if (bytes == 0)
4162 /* A null wide character was encountered. */
4163 bytes = 1;
4165 w = wcwidth (wc);
4166 if (w >= 0)
4168 /* A printable multibyte character.
4169 Keep it. */
4170 for (; bytes > 0; --bytes)
4171 *q++ = *p++;
4172 displayed_width += w;
4174 else
4176 /* An unprintable multibyte character.
4177 Replace it entirely with a question
4178 mark. */
4179 p += bytes;
4180 *q++ = '?';
4181 displayed_width += 1;
4184 while (! mbsinit (&mbstate));
4186 break;
4189 /* The buffer may have shrunk. */
4190 len = q - buf;
4192 else
4194 char *p = buf;
4195 char const *plimit = buf + len;
4197 while (p < plimit)
4199 if (! isprint (to_uchar (*p)))
4200 *p = '?';
4201 p++;
4203 displayed_width = len;
4206 else if (width != NULL)
4208 if (MB_CUR_MAX > 1)
4209 displayed_width = mbsnwidth (buf, len, 0);
4210 else
4212 char const *p = buf;
4213 char const *plimit = buf + len;
4215 displayed_width = 0;
4216 while (p < plimit)
4218 if (isprint (to_uchar (*p)))
4219 displayed_width++;
4220 p++;
4225 if (out != NULL)
4226 fwrite (buf, 1, len, out);
4227 if (width != NULL)
4228 *width = displayed_width;
4229 return len;
4232 static size_t
4233 print_name_with_quoting (const struct fileinfo *f,
4234 bool symlink_target,
4235 struct obstack *stack,
4236 size_t start_col)
4238 const char* name = symlink_target ? f->linkname : f->name;
4240 bool used_color_this_time
4241 = (print_with_color
4242 && (print_color_indicator (f, symlink_target)
4243 || is_colored (C_NORM)));
4245 if (stack)
4246 PUSH_CURRENT_DIRED_POS (stack);
4248 size_t width = quote_name (stdout, name, filename_quoting_options, NULL);
4249 dired_pos += width;
4251 if (stack)
4252 PUSH_CURRENT_DIRED_POS (stack);
4254 process_signals ();
4255 if (used_color_this_time)
4257 prep_non_filename_text ();
4258 if (line_length
4259 && (start_col / line_length != (start_col + width - 1) / line_length))
4260 put_indicator (&color_indicator[C_CLR_TO_EOL]);
4263 return width;
4266 static void
4267 prep_non_filename_text (void)
4269 if (color_indicator[C_END].string != NULL)
4270 put_indicator (&color_indicator[C_END]);
4271 else
4273 put_indicator (&color_indicator[C_LEFT]);
4274 put_indicator (&color_indicator[C_RESET]);
4275 put_indicator (&color_indicator[C_RIGHT]);
4279 /* Print the file name of 'f' with appropriate quoting.
4280 Also print file size, inode number, and filetype indicator character,
4281 as requested by switches. */
4283 static size_t
4284 print_file_name_and_frills (const struct fileinfo *f, size_t start_col)
4286 char buf[MAX (LONGEST_HUMAN_READABLE + 1, INT_BUFSIZE_BOUND (uintmax_t))];
4288 set_normal_color ();
4290 if (print_inode)
4291 printf ("%*s ", format == with_commas ? 0 : inode_number_width,
4292 format_inode (buf, sizeof buf, f));
4294 if (print_block_size)
4295 printf ("%*s ", format == with_commas ? 0 : block_size_width,
4296 ! f->stat_ok ? "?"
4297 : human_readable (ST_NBLOCKS (f->stat), buf, human_output_opts,
4298 ST_NBLOCKSIZE, output_block_size));
4300 if (print_scontext)
4301 printf ("%*s ", format == with_commas ? 0 : scontext_width, f->scontext);
4303 size_t width = print_name_with_quoting (f, false, NULL, start_col);
4305 if (indicator_style != none)
4306 width += print_type_indicator (f->stat_ok, f->stat.st_mode, f->filetype);
4308 return width;
4311 /* Given these arguments describing a file, return the single-byte
4312 type indicator, or 0. */
4313 static char
4314 get_type_indicator (bool stat_ok, mode_t mode, enum filetype type)
4316 char c;
4318 if (stat_ok ? S_ISREG (mode) : type == normal)
4320 if (stat_ok && indicator_style == classify && (mode & S_IXUGO))
4321 c = '*';
4322 else
4323 c = 0;
4325 else
4327 if (stat_ok ? S_ISDIR (mode) : type == directory || type == arg_directory)
4328 c = '/';
4329 else if (indicator_style == slash)
4330 c = 0;
4331 else if (stat_ok ? S_ISLNK (mode) : type == symbolic_link)
4332 c = '@';
4333 else if (stat_ok ? S_ISFIFO (mode) : type == fifo)
4334 c = '|';
4335 else if (stat_ok ? S_ISSOCK (mode) : type == sock)
4336 c = '=';
4337 else if (stat_ok && S_ISDOOR (mode))
4338 c = '>';
4339 else
4340 c = 0;
4342 return c;
4345 static bool
4346 print_type_indicator (bool stat_ok, mode_t mode, enum filetype type)
4348 char c = get_type_indicator (stat_ok, mode, type);
4349 if (c)
4350 DIRED_PUTCHAR (c);
4351 return !!c;
4354 /* Returns whether any color sequence was printed. */
4355 static bool
4356 print_color_indicator (const struct fileinfo *f, bool symlink_target)
4358 enum indicator_no type;
4359 struct color_ext_type *ext; /* Color extension */
4360 size_t len; /* Length of name */
4362 const char* name;
4363 mode_t mode;
4364 int linkok;
4365 if (symlink_target)
4367 name = f->linkname;
4368 mode = f->linkmode;
4369 linkok = f->linkok ? 0 : -1;
4371 else
4373 name = f->name;
4374 mode = FILE_OR_LINK_MODE (f);
4375 linkok = f->linkok;
4378 /* Is this a nonexistent file? If so, linkok == -1. */
4380 if (linkok == -1 && is_colored (C_MISSING))
4381 type = C_MISSING;
4382 else if (!f->stat_ok)
4384 static enum indicator_no filetype_indicator[] = FILETYPE_INDICATORS;
4385 type = filetype_indicator[f->filetype];
4387 else
4389 if (S_ISREG (mode))
4391 type = C_FILE;
4393 if ((mode & S_ISUID) != 0 && is_colored (C_SETUID))
4394 type = C_SETUID;
4395 else if ((mode & S_ISGID) != 0 && is_colored (C_SETGID))
4396 type = C_SETGID;
4397 else if (is_colored (C_CAP) && f->has_capability)
4398 type = C_CAP;
4399 else if ((mode & S_IXUGO) != 0 && is_colored (C_EXEC))
4400 type = C_EXEC;
4401 else if ((1 < f->stat.st_nlink) && is_colored (C_MULTIHARDLINK))
4402 type = C_MULTIHARDLINK;
4404 else if (S_ISDIR (mode))
4406 type = C_DIR;
4408 if ((mode & S_ISVTX) && (mode & S_IWOTH)
4409 && is_colored (C_STICKY_OTHER_WRITABLE))
4410 type = C_STICKY_OTHER_WRITABLE;
4411 else if ((mode & S_IWOTH) != 0 && is_colored (C_OTHER_WRITABLE))
4412 type = C_OTHER_WRITABLE;
4413 else if ((mode & S_ISVTX) != 0 && is_colored (C_STICKY))
4414 type = C_STICKY;
4416 else if (S_ISLNK (mode))
4417 type = C_LINK;
4418 else if (S_ISFIFO (mode))
4419 type = C_FIFO;
4420 else if (S_ISSOCK (mode))
4421 type = C_SOCK;
4422 else if (S_ISBLK (mode))
4423 type = C_BLK;
4424 else if (S_ISCHR (mode))
4425 type = C_CHR;
4426 else if (S_ISDOOR (mode))
4427 type = C_DOOR;
4428 else
4430 /* Classify a file of some other type as C_ORPHAN. */
4431 type = C_ORPHAN;
4435 /* Check the file's suffix only if still classified as C_FILE. */
4436 ext = NULL;
4437 if (type == C_FILE)
4439 /* Test if NAME has a recognized suffix. */
4441 len = strlen (name);
4442 name += len; /* Pointer to final \0. */
4443 for (ext = color_ext_list; ext != NULL; ext = ext->next)
4445 if (ext->ext.len <= len
4446 && STREQ_LEN (name - ext->ext.len, ext->ext.string,
4447 ext->ext.len))
4448 break;
4452 /* Adjust the color for orphaned symlinks. */
4453 if (type == C_LINK && !linkok)
4455 if (color_symlink_as_referent || is_colored (C_ORPHAN))
4456 type = C_ORPHAN;
4460 const struct bin_str *const s
4461 = ext ? &(ext->seq) : &color_indicator[type];
4462 if (s->string != NULL)
4464 /* Need to reset so not dealing with attribute combinations */
4465 if (is_colored (C_NORM))
4466 restore_default_color ();
4467 put_indicator (&color_indicator[C_LEFT]);
4468 put_indicator (s);
4469 put_indicator (&color_indicator[C_RIGHT]);
4470 return true;
4472 else
4473 return false;
4477 /* Output a color indicator (which may contain nulls). */
4478 static void
4479 put_indicator (const struct bin_str *ind)
4481 if (! used_color)
4483 used_color = true;
4484 prep_non_filename_text ();
4487 fwrite (ind->string, ind->len, 1, stdout);
4490 static size_t
4491 length_of_file_name_and_frills (const struct fileinfo *f)
4493 size_t len = 0;
4494 size_t name_width;
4495 char buf[MAX (LONGEST_HUMAN_READABLE + 1, INT_BUFSIZE_BOUND (uintmax_t))];
4497 if (print_inode)
4498 len += 1 + (format == with_commas
4499 ? strlen (umaxtostr (f->stat.st_ino, buf))
4500 : inode_number_width);
4502 if (print_block_size)
4503 len += 1 + (format == with_commas
4504 ? strlen (! f->stat_ok ? "?"
4505 : human_readable (ST_NBLOCKS (f->stat), buf,
4506 human_output_opts, ST_NBLOCKSIZE,
4507 output_block_size))
4508 : block_size_width);
4510 if (print_scontext)
4511 len += 1 + (format == with_commas ? strlen (f->scontext) : scontext_width);
4513 quote_name (NULL, f->name, filename_quoting_options, &name_width);
4514 len += name_width;
4516 if (indicator_style != none)
4518 char c = get_type_indicator (f->stat_ok, f->stat.st_mode, f->filetype);
4519 len += (c != 0);
4522 return len;
4525 static void
4526 print_many_per_line (void)
4528 size_t row; /* Current row. */
4529 size_t cols = calculate_columns (true);
4530 struct column_info const *line_fmt = &column_info[cols - 1];
4532 /* Calculate the number of rows that will be in each column except possibly
4533 for a short column on the right. */
4534 size_t rows = cwd_n_used / cols + (cwd_n_used % cols != 0);
4536 for (row = 0; row < rows; row++)
4538 size_t col = 0;
4539 size_t filesno = row;
4540 size_t pos = 0;
4542 /* Print the next row. */
4543 while (1)
4545 struct fileinfo const *f = sorted_file[filesno];
4546 size_t name_length = length_of_file_name_and_frills (f);
4547 size_t max_name_length = line_fmt->col_arr[col++];
4548 print_file_name_and_frills (f, pos);
4550 filesno += rows;
4551 if (filesno >= cwd_n_used)
4552 break;
4554 indent (pos + name_length, pos + max_name_length);
4555 pos += max_name_length;
4557 putchar ('\n');
4561 static void
4562 print_horizontal (void)
4564 size_t filesno;
4565 size_t pos = 0;
4566 size_t cols = calculate_columns (false);
4567 struct column_info const *line_fmt = &column_info[cols - 1];
4568 struct fileinfo const *f = sorted_file[0];
4569 size_t name_length = length_of_file_name_and_frills (f);
4570 size_t max_name_length = line_fmt->col_arr[0];
4572 /* Print first entry. */
4573 print_file_name_and_frills (f, 0);
4575 /* Now the rest. */
4576 for (filesno = 1; filesno < cwd_n_used; ++filesno)
4578 size_t col = filesno % cols;
4580 if (col == 0)
4582 putchar ('\n');
4583 pos = 0;
4585 else
4587 indent (pos + name_length, pos + max_name_length);
4588 pos += max_name_length;
4591 f = sorted_file[filesno];
4592 print_file_name_and_frills (f, pos);
4594 name_length = length_of_file_name_and_frills (f);
4595 max_name_length = line_fmt->col_arr[col];
4597 putchar ('\n');
4600 /* Output name + SEP + ' '. */
4602 static void
4603 print_with_separator (char sep)
4605 size_t filesno;
4606 size_t pos = 0;
4608 for (filesno = 0; filesno < cwd_n_used; filesno++)
4610 struct fileinfo const *f = sorted_file[filesno];
4611 size_t len = line_length ? length_of_file_name_and_frills (f) : 0;
4613 if (filesno != 0)
4615 char separator;
4617 if (! line_length
4618 || ((pos + len + 2 < line_length)
4619 && (pos <= SIZE_MAX - len - 2)))
4621 pos += 2;
4622 separator = ' ';
4624 else
4626 pos = 0;
4627 separator = '\n';
4630 putchar (sep);
4631 putchar (separator);
4634 print_file_name_and_frills (f, pos);
4635 pos += len;
4637 putchar ('\n');
4640 /* Assuming cursor is at position FROM, indent up to position TO.
4641 Use a TAB character instead of two or more spaces whenever possible. */
4643 static void
4644 indent (size_t from, size_t to)
4646 while (from < to)
4648 if (tabsize != 0 && to / tabsize > (from + 1) / tabsize)
4650 putchar ('\t');
4651 from += tabsize - from % tabsize;
4653 else
4655 putchar (' ');
4656 from++;
4661 /* Put DIRNAME/NAME into DEST, handling '.' and '/' properly. */
4662 /* FIXME: maybe remove this function someday. See about using a
4663 non-malloc'ing version of file_name_concat. */
4665 static void
4666 attach (char *dest, const char *dirname, const char *name)
4668 const char *dirnamep = dirname;
4670 /* Copy dirname if it is not ".". */
4671 if (dirname[0] != '.' || dirname[1] != 0)
4673 while (*dirnamep)
4674 *dest++ = *dirnamep++;
4675 /* Add '/' if 'dirname' doesn't already end with it. */
4676 if (dirnamep > dirname && dirnamep[-1] != '/')
4677 *dest++ = '/';
4679 while (*name)
4680 *dest++ = *name++;
4681 *dest = 0;
4684 /* Allocate enough column info suitable for the current number of
4685 files and display columns, and initialize the info to represent the
4686 narrowest possible columns. */
4688 static void
4689 init_column_info (void)
4691 size_t i;
4692 size_t max_cols = MIN (max_idx, cwd_n_used);
4694 /* Currently allocated columns in column_info. */
4695 static size_t column_info_alloc;
4697 if (column_info_alloc < max_cols)
4699 size_t new_column_info_alloc;
4700 size_t *p;
4702 if (max_cols < max_idx / 2)
4704 /* The number of columns is far less than the display width
4705 allows. Grow the allocation, but only so that it's
4706 double the current requirements. If the display is
4707 extremely wide, this avoids allocating a lot of memory
4708 that is never needed. */
4709 column_info = xnrealloc (column_info, max_cols,
4710 2 * sizeof *column_info);
4711 new_column_info_alloc = 2 * max_cols;
4713 else
4715 column_info = xnrealloc (column_info, max_idx, sizeof *column_info);
4716 new_column_info_alloc = max_idx;
4719 /* Allocate the new size_t objects by computing the triangle
4720 formula n * (n + 1) / 2, except that we don't need to
4721 allocate the part of the triangle that we've already
4722 allocated. Check for address arithmetic overflow. */
4724 size_t column_info_growth = new_column_info_alloc - column_info_alloc;
4725 size_t s = column_info_alloc + 1 + new_column_info_alloc;
4726 size_t t = s * column_info_growth;
4727 if (s < new_column_info_alloc || t / column_info_growth != s)
4728 xalloc_die ();
4729 p = xnmalloc (t / 2, sizeof *p);
4732 /* Grow the triangle by parceling out the cells just allocated. */
4733 for (i = column_info_alloc; i < new_column_info_alloc; i++)
4735 column_info[i].col_arr = p;
4736 p += i + 1;
4739 column_info_alloc = new_column_info_alloc;
4742 for (i = 0; i < max_cols; ++i)
4744 size_t j;
4746 column_info[i].valid_len = true;
4747 column_info[i].line_len = (i + 1) * MIN_COLUMN_WIDTH;
4748 for (j = 0; j <= i; ++j)
4749 column_info[i].col_arr[j] = MIN_COLUMN_WIDTH;
4753 /* Calculate the number of columns needed to represent the current set
4754 of files in the current display width. */
4756 static size_t
4757 calculate_columns (bool by_columns)
4759 size_t filesno; /* Index into cwd_file. */
4760 size_t cols; /* Number of files across. */
4762 /* Normally the maximum number of columns is determined by the
4763 screen width. But if few files are available this might limit it
4764 as well. */
4765 size_t max_cols = MIN (max_idx, cwd_n_used);
4767 init_column_info ();
4769 /* Compute the maximum number of possible columns. */
4770 for (filesno = 0; filesno < cwd_n_used; ++filesno)
4772 struct fileinfo const *f = sorted_file[filesno];
4773 size_t name_length = length_of_file_name_and_frills (f);
4774 size_t i;
4776 for (i = 0; i < max_cols; ++i)
4778 if (column_info[i].valid_len)
4780 size_t idx = (by_columns
4781 ? filesno / ((cwd_n_used + i) / (i + 1))
4782 : filesno % (i + 1));
4783 size_t real_length = name_length + (idx == i ? 0 : 2);
4785 if (column_info[i].col_arr[idx] < real_length)
4787 column_info[i].line_len += (real_length
4788 - column_info[i].col_arr[idx]);
4789 column_info[i].col_arr[idx] = real_length;
4790 column_info[i].valid_len = (column_info[i].line_len
4791 < line_length);
4797 /* Find maximum allowed columns. */
4798 for (cols = max_cols; 1 < cols; --cols)
4800 if (column_info[cols - 1].valid_len)
4801 break;
4804 return cols;
4807 void
4808 usage (int status)
4810 if (status != EXIT_SUCCESS)
4811 emit_try_help ();
4812 else
4814 printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name);
4815 fputs (_("\
4816 List information about the FILEs (the current directory by default).\n\
4817 Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.\n\
4818 "), stdout);
4820 emit_mandatory_arg_note ();
4822 fputs (_("\
4823 -a, --all do not ignore entries starting with .\n\
4824 -A, --almost-all do not list implied . and ..\n\
4825 --author with -l, print the author of each file\n\
4826 -b, --escape print C-style escapes for nongraphic characters\n\
4827 "), stdout);
4828 fputs (_("\
4829 --block-size=SIZE scale sizes by SIZE before printing them; e.g.,\n\
4830 '--block-size=M' prints sizes in units of\n\
4831 1,048,576 bytes; see SIZE format below\n\
4832 -B, --ignore-backups do not list implied entries ending with ~\n\
4833 -c with -lt: sort by, and show, ctime (time of last\n\
4834 modification of file status information);\n\
4835 with -l: show ctime and sort by name;\n\
4836 otherwise: sort by ctime, newest first\n\
4837 "), stdout);
4838 fputs (_("\
4839 -C list entries by columns\n\
4840 --color[=WHEN] colorize the output; WHEN can be 'always' (default\
4842 if omitted), 'auto', or 'never'; more info below\
4844 -d, --directory list directories themselves, not their contents\n\
4845 -D, --dired generate output designed for Emacs' dired mode\n\
4846 "), stdout);
4847 fputs (_("\
4848 -f do not sort, enable -aU, disable -ls --color\n\
4849 -F, --classify append indicator (one of */=>@|) to entries\n\
4850 --file-type likewise, except do not append '*'\n\
4851 --format=WORD across -x, commas -m, horizontal -x, long -l,\n\
4852 single-column -1, verbose -l, vertical -C\n\
4853 --full-time like -l --time-style=full-iso\n\
4854 "), stdout);
4855 fputs (_("\
4856 -g like -l, but do not list owner\n\
4857 "), stdout);
4858 fputs (_("\
4859 --group-directories-first\n\
4860 group directories before files;\n\
4861 can be augmented with a --sort option, but any\n\
4862 use of --sort=none (-U) disables grouping\n\
4863 "), stdout);
4864 fputs (_("\
4865 -G, --no-group in a long listing, don't print group names\n\
4866 -h, --human-readable with -l and/or -s, print human readable sizes\n\
4867 (e.g., 1K 234M 2G)\n\
4868 --si likewise, but use powers of 1000 not 1024\n\
4869 "), stdout);
4870 fputs (_("\
4871 -H, --dereference-command-line\n\
4872 follow symbolic links listed on the command line\n\
4873 --dereference-command-line-symlink-to-dir\n\
4874 follow each command line symbolic link\n\
4875 that points to a directory\n\
4876 --hide=PATTERN do not list implied entries matching shell PATTERN\
4878 (overridden by -a or -A)\n\
4879 "), stdout);
4880 fputs (_("\
4881 --indicator-style=WORD append indicator with style WORD to entry names:\
4883 none (default), slash (-p),\n\
4884 file-type (--file-type), classify (-F)\n\
4885 -i, --inode print the index number of each file\n\
4886 -I, --ignore=PATTERN do not list implied entries matching shell PATTERN\
4888 -k, --kibibytes default to 1024-byte blocks for disk usage\n\
4889 "), stdout);
4890 fputs (_("\
4891 -l use a long listing format\n\
4892 -L, --dereference when showing file information for a symbolic\n\
4893 link, show information for the file the link\n\
4894 references rather than for the link itself\n\
4895 -m fill width with a comma separated list of entries\
4897 "), stdout);
4898 fputs (_("\
4899 -n, --numeric-uid-gid like -l, but list numeric user and group IDs\n\
4900 -N, --literal print raw entry names (don't treat e.g. control\n\
4901 characters specially)\n\
4902 -o like -l, but do not list group information\n\
4903 -p, --indicator-style=slash\n\
4904 append / indicator to directories\n\
4905 "), stdout);
4906 fputs (_("\
4907 -q, --hide-control-chars print ? instead of nongraphic characters\n\
4908 --show-control-chars show nongraphic characters as-is (the default,\n\
4909 unless program is 'ls' and output is a terminal)\
4911 -Q, --quote-name enclose entry names in double quotes\n\
4912 --quoting-style=WORD use quoting style WORD for entry names:\n\
4913 literal, locale, shell, shell-always,\n\
4914 shell-escape, shell-escape-always, c, escape\n\
4915 "), stdout);
4916 fputs (_("\
4917 -r, --reverse reverse order while sorting\n\
4918 -R, --recursive list subdirectories recursively\n\
4919 -s, --size print the allocated size of each file, in blocks\n\
4920 "), stdout);
4921 fputs (_("\
4922 -S sort by file size, largest first\n\
4923 --sort=WORD sort by WORD instead of name: none (-U), size (-S)\
4924 ,\n\
4925 time (-t), version (-v), extension (-X)\n\
4926 --time=WORD with -l, show time as WORD instead of default\n\
4927 modification time: atime or access or use (-u);\
4929 ctime or status (-c); also use specified time\n\
4930 as sort key if --sort=time (newest first)\n\
4931 "), stdout);
4932 fputs (_("\
4933 --time-style=STYLE with -l, show times using style STYLE:\n\
4934 full-iso, long-iso, iso, locale, or +FORMAT;\n\
4935 FORMAT is interpreted like in 'date'; if FORMAT\
4937 is FORMAT1<newline>FORMAT2, then FORMAT1 applies\
4939 to non-recent files and FORMAT2 to recent files;\
4941 if STYLE is prefixed with 'posix-', STYLE\n\
4942 takes effect only outside the POSIX locale\n\
4943 "), stdout);
4944 fputs (_("\
4945 -t sort by modification time, newest first\n\
4946 -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n\
4947 "), stdout);
4948 fputs (_("\
4949 -u with -lt: sort by, and show, access time;\n\
4950 with -l: show access time and sort by name;\n\
4951 otherwise: sort by access time, newest first\n\
4952 -U do not sort; list entries in directory order\n\
4953 -v natural sort of (version) numbers within text\n\
4954 "), stdout);
4955 fputs (_("\
4956 -w, --width=COLS set output width to COLS. 0 means no limit\n\
4957 -x list entries by lines instead of by columns\n\
4958 -X sort alphabetically by entry extension\n\
4959 -Z, --context print any security context of each file\n\
4960 -1 list one file per line. Avoid '\\n' with -q or -b\
4962 "), stdout);
4963 fputs (HELP_OPTION_DESCRIPTION, stdout);
4964 fputs (VERSION_OPTION_DESCRIPTION, stdout);
4965 emit_size_note ();
4966 fputs (_("\
4968 Using color to distinguish file types is disabled both by default and\n\
4969 with --color=never. With --color=auto, ls emits color codes only when\n\
4970 standard output is connected to a terminal. The LS_COLORS environment\n\
4971 variable can change the settings. Use the dircolors command to set it.\n\
4972 "), stdout);
4973 fputs (_("\
4975 Exit status:\n\
4976 0 if OK,\n\
4977 1 if minor problems (e.g., cannot access subdirectory),\n\
4978 2 if serious trouble (e.g., cannot access command-line argument).\n\
4979 "), stdout);
4980 emit_ancillary_info (PROGRAM_NAME);
4982 exit (status);