1 /* `dir', `vdir' and `ls' directory listing programs for GNU.
2 Copyright (C) 1985, 1988, 1990-1991, 1995-2011 Free Software Foundation,
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 /* If ls_mode is LS_MULTI_COL,
19 the multi-column format is the default regardless
20 of the type of output device.
21 This is for the `dir' program.
23 If ls_mode is LS_LONG_FORMAT,
24 the long format is the default regardless of the
25 type of output device.
26 This is for the `vdir' program.
29 the output format depends on whether the output
31 This is for the `ls' program. */
33 /* Written by Richard Stallman and David MacKenzie. */
35 /* Color support by Peter Anvin <Peter.Anvin@linux.org> and Dennis
36 Flaherty <dennisf@denix.elk.miles.com> based on original patches by
37 Greg Lee <lee@uhunix.uhcc.hawaii.edu>. */
40 #include <sys/types.h>
46 #include <sys/ioctl.h>
48 #ifdef WINSIZE_IN_PTEM
49 # include <sys/stream.h>
50 # include <sys/ptem.h>
60 #include <selinux/selinux.h>
63 #if HAVE_LANGINFO_CODESET
64 # include <langinfo.h>
67 /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is
70 # define SA_NOCLDSTOP 0
71 # define sigprocmask(How, Set, Oset) /* empty */
73 # if ! HAVE_SIGINTERRUPT
74 # define siginterrupt(sig, flag) /* empty */
85 #include "filenamecat.h"
86 #include "hard-locale.h"
90 #include "filevercmp.h"
99 #include "stat-time.h"
100 #include "strftime.h"
102 #include "areadlink.h"
103 #include "mbsalign.h"
105 /* Include <sys/capability.h> last to avoid a clash of <sys/types.h>
106 include guards with some premature versions of libcap.
107 For more details, see <http://bugzilla.redhat.com/483548>. */
109 # include <sys/capability.h>
112 #define PROGRAM_NAME (ls_mode == LS_LS ? "ls" \
113 : (ls_mode == LS_MULTI_COL \
117 proper_name ("Richard M. Stallman"), \
118 proper_name ("David MacKenzie")
120 #define obstack_chunk_alloc malloc
121 #define obstack_chunk_free free
123 /* Return an int indicating the result of comparing two integers.
124 Subtracting doesn't always work, due to overflow. */
125 #define longdiff(a, b) ((a) < (b) ? -1 : (a) > (b))
127 /* Unix-based readdir implementations have historically returned a dirent.d_ino
128 value that is sometimes not equal to the stat-obtained st_ino value for
129 that same entry. This error occurs for a readdir entry that refers
130 to a mount point. readdir's error is to return the inode number of
131 the underlying directory -- one that typically cannot be stat'ed, as
132 long as a file system is mounted on that directory. RELIABLE_D_INO
133 encapsulates whether we can use the more efficient approach of relying
134 on readdir-supplied d_ino values, or whether we must incur the cost of
135 calling stat or lstat to obtain each guaranteed-valid inode number. */
137 #ifndef READDIR_LIES_ABOUT_MOUNTPOINT_D_INO
138 # define READDIR_LIES_ABOUT_MOUNTPOINT_D_INO 1
141 #if READDIR_LIES_ABOUT_MOUNTPOINT_D_INO
142 # define RELIABLE_D_INO(dp) NOT_AN_INODE_NUMBER
144 # define RELIABLE_D_INO(dp) D_INO (dp)
147 #if ! HAVE_STRUCT_STAT_ST_AUTHOR
148 # define st_author st_uid
165 /* Display letters and indicators for each filetype.
166 Keep these in sync with enum filetype. */
167 static char const filetype_letter
[] = "?pcdb-lswd";
169 /* Ensure that filetype and filetype_letter have the same
170 number of elements. */
171 verify (sizeof filetype_letter
- 1 == arg_directory
+ 1);
173 #define FILETYPE_INDICATORS \
175 C_ORPHAN, C_FIFO, C_CHR, C_DIR, C_BLK, C_FILE, \
176 C_LINK, C_SOCK, C_FILE, C_DIR \
191 /* For symbolic link, name of the file linked to, otherwise zero. */
196 enum filetype filetype
;
198 /* For symbolic link and long listing, st_mode of file linked to, otherwise
202 /* SELinux security context. */
203 security_context_t scontext
;
207 /* For symbolic link and color printing, true if linked-to file
208 exists, otherwise false. */
211 /* For long listings, true if the file has an access control list,
212 or an SELinux security context. */
213 enum acl_type acl_type
;
215 /* For color listings, true if a regular file has capability info. */
219 #define LEN_STR_PAIR(s) sizeof (s) - 1, s
221 /* Null is a valid character in a color indicator (think about Epson
222 printers, for example) so we have to use a length/buffer string
227 size_t len
; /* Number of bytes */
228 const char *string
; /* Pointer to the same */
232 # define tcgetpgrp(Fd) 0
235 static size_t quote_name (FILE *out
, const char *name
,
236 struct quoting_options
const *options
,
238 static char *make_link_name (char const *name
, char const *linkname
);
239 static int decode_switches (int argc
, char **argv
);
240 static bool file_ignored (char const *name
);
241 static uintmax_t gobble_file (char const *name
, enum filetype type
,
242 ino_t inode
, bool command_line_arg
,
243 char const *dirname
);
244 static bool print_color_indicator (const struct fileinfo
*f
,
245 bool symlink_target
);
246 static void put_indicator (const struct bin_str
*ind
);
247 static void add_ignore_pattern (const char *pattern
);
248 static void attach (char *dest
, const char *dirname
, const char *name
);
249 static void clear_files (void);
250 static void extract_dirs_from_files (char const *dirname
,
251 bool command_line_arg
);
252 static void get_link_name (char const *filename
, struct fileinfo
*f
,
253 bool command_line_arg
);
254 static void indent (size_t from
, size_t to
);
255 static size_t calculate_columns (bool by_columns
);
256 static void print_current_files (void);
257 static void print_dir (char const *name
, char const *realname
,
258 bool command_line_arg
);
259 static size_t print_file_name_and_frills (const struct fileinfo
*f
,
261 static void print_horizontal (void);
262 static int format_user_width (uid_t u
);
263 static int format_group_width (gid_t g
);
264 static void print_long_format (const struct fileinfo
*f
);
265 static void print_many_per_line (void);
266 static size_t print_name_with_quoting (const struct fileinfo
*f
,
268 struct obstack
*stack
,
270 static void prep_non_filename_text (void);
271 static bool print_type_indicator (bool stat_ok
, mode_t mode
,
273 static void print_with_commas (void);
274 static void queue_directory (char const *name
, char const *realname
,
275 bool command_line_arg
);
276 static void sort_files (void);
277 static void parse_ls_color (void);
278 void usage (int status
);
280 /* Initial size of hash table.
281 Most hierarchies are likely to be shallower than this. */
282 #define INITIAL_TABLE_SIZE 30
284 /* The set of `active' directories, from the current command-line argument
285 to the level in the hierarchy at which files are being listed.
286 A directory is represented by its device and inode numbers (struct dev_ino).
287 A directory is added to this set when ls begins listing it or its
288 entries, and it is removed from the set just after ls has finished
289 processing it. This set is used solely to detect loops, e.g., with
290 mkdir loop; cd loop; ln -s ../loop sub; ls -RL */
291 static Hash_table
*active_dir_set
;
293 #define LOOP_DETECT (!!active_dir_set)
295 /* The table of files in the current directory:
297 `cwd_file' points to a vector of `struct fileinfo', one per file.
298 `cwd_n_alloc' is the number of elements space has been allocated for.
299 `cwd_n_used' is the number actually in use. */
301 /* Address of block containing the files that are described. */
302 static struct fileinfo
*cwd_file
;
304 /* Length of block that `cwd_file' points to, measured in files. */
305 static size_t cwd_n_alloc
;
307 /* Index of first unused slot in `cwd_file'. */
308 static size_t cwd_n_used
;
310 /* Vector of pointers to files, in proper sorted order, and the number
311 of entries allocated for it. */
312 static void **sorted_file
;
313 static size_t sorted_file_alloc
;
315 /* When true, in a color listing, color each symlink name according to the
316 type of file it points to. Otherwise, color them according to the `ln'
317 directive in LS_COLORS. Dangling (orphan) symlinks are treated specially,
318 regardless. This is set when `ln=target' appears in LS_COLORS. */
320 static bool color_symlink_as_referent
;
322 /* mode of appropriate file for colorization */
323 #define FILE_OR_LINK_MODE(File) \
324 ((color_symlink_as_referent && (File)->linkok) \
325 ? (File)->linkmode : (File)->stat.st_mode)
328 /* Record of one pending directory waiting to be listed. */
333 /* If the directory is actually the file pointed to by a symbolic link we
334 were told to list, `realname' will contain the name of the symbolic
335 link, otherwise zero. */
337 bool command_line_arg
;
338 struct pending
*next
;
341 static struct pending
*pending_dirs
;
343 /* Current time in seconds and nanoseconds since 1970, updated as
344 needed when deciding whether a file is recent. */
346 static struct timespec current_time
;
348 static bool print_scontext
;
349 static char UNKNOWN_SECURITY_CONTEXT
[] = "?";
351 /* Whether any of the files has an ACL. This affects the width of the
354 static bool any_has_acl
;
356 /* The number of columns to use for columns containing inode numbers,
357 block sizes, link counts, owners, groups, authors, major device
358 numbers, minor device numbers, and file sizes, respectively. */
360 static int inode_number_width
;
361 static int block_size_width
;
362 static int nlink_width
;
363 static int scontext_width
;
364 static int owner_width
;
365 static int group_width
;
366 static int author_width
;
367 static int major_device_number_width
;
368 static int minor_device_number_width
;
369 static int file_size_width
;
373 /* long_format for lots of info, one per line.
374 one_per_line for just names, one per line.
375 many_per_line for just names, many per line, sorted vertically.
376 horizontal for just names, many per line, sorted horizontally.
377 with_commas for just names, many per line, separated by commas.
379 -l (and other options that imply -l), -1, -C, -x and -m control
384 long_format
, /* -l and other options that imply -l */
385 one_per_line
, /* -1 */
386 many_per_line
, /* -C */
391 static enum format format
;
393 /* `full-iso' uses full ISO-style dates and times. `long-iso' uses longer
394 ISO-style time stamps, though shorter than `full-iso'. `iso' uses shorter
395 ISO-style time stamps. `locale' uses locale-dependent time stamps. */
398 full_iso_time_style
, /* --time-style=full-iso */
399 long_iso_time_style
, /* --time-style=long-iso */
400 iso_time_style
, /* --time-style=iso */
401 locale_time_style
/* --time-style=locale */
404 static char const *const time_style_args
[] =
406 "full-iso", "long-iso", "iso", "locale", NULL
408 static enum time_style
const time_style_types
[] =
410 full_iso_time_style
, long_iso_time_style
, iso_time_style
,
413 ARGMATCH_VERIFY (time_style_args
, time_style_types
);
415 /* Type of time to print or sort by. Controlled by -c and -u.
416 The values of each item of this enum are important since they are
417 used as indices in the sort functions array (see sort_files()). */
421 time_mtime
, /* default */
424 time_numtypes
/* the number of elements of this enum */
427 static enum time_type time_type
;
429 /* The file characteristic to sort by. Controlled by -t, -S, -U, -X, -v.
430 The values of each item of this enum are important since they are
431 used as indices in the sort functions array (see sort_files()). */
435 sort_none
= -1, /* -U */
436 sort_name
, /* default */
437 sort_extension
, /* -X */
439 sort_version
, /* -v */
441 sort_numtypes
/* the number of elements of this enum */
444 static enum sort_type sort_type
;
446 /* Direction of sort.
447 false means highest first if numeric,
448 lowest first if alphabetic;
449 these are the defaults.
450 true means the opposite order in each case. -r */
452 static bool sort_reverse
;
454 /* True means to display owner information. -g turns this off. */
456 static bool print_owner
= true;
458 /* True means to display author information. */
460 static bool print_author
;
462 /* True means to display group information. -G and -o turn this off. */
464 static bool print_group
= true;
466 /* True means print the user and group id's as numbers rather
469 static bool numeric_ids
;
471 /* True means mention the size in blocks of each file. -s */
473 static bool print_block_size
;
475 /* Human-readable options for output. */
476 static int human_output_opts
;
478 /* The units to use when printing sizes other than file sizes. */
479 static uintmax_t output_block_size
;
481 /* Likewise, but for file sizes. */
482 static uintmax_t file_output_block_size
= 1;
484 /* Follow the output with a special string. Using this format,
485 Emacs' dired mode starts up twice as fast, and can handle all
486 strange characters in file names. */
489 /* `none' means don't mention the type of files.
490 `slash' means mention directories only, with a '/'.
491 `file_type' means mention file types.
492 `classify' means mention file types and mark executables.
494 Controlled by -F, -p, and --indicator-style. */
498 none
, /* --indicator-style=none */
499 slash
, /* -p, --indicator-style=slash */
500 file_type
, /* --indicator-style=file-type */
501 classify
/* -F, --indicator-style=classify */
504 static enum indicator_style indicator_style
;
506 /* Names of indicator styles. */
507 static char const *const indicator_style_args
[] =
509 "none", "slash", "file-type", "classify", NULL
511 static enum indicator_style
const indicator_style_types
[] =
513 none
, slash
, file_type
, classify
515 ARGMATCH_VERIFY (indicator_style_args
, indicator_style_types
);
517 /* True means use colors to mark types. Also define the different
518 colors as well as the stuff for the LS_COLORS environment variable.
519 The LS_COLORS variable is now in a termcap-like format. */
521 static bool print_with_color
;
523 /* Whether we used any colors in the output so far. If so, we will
524 need to restore the default color later. If not, we will need to
525 call prep_non_filename_text before using color for the first time. */
527 static bool used_color
= false;
531 color_never
, /* 0: default or --color=never */
532 color_always
, /* 1: --color=always */
533 color_if_tty
/* 2: --color=tty */
536 enum Dereference_symlink
540 DEREF_COMMAND_LINE_ARGUMENTS
, /* -H */
541 DEREF_COMMAND_LINE_SYMLINK_TO_DIR
, /* the default, in certain cases */
542 DEREF_ALWAYS
/* -L */
547 C_LEFT
, C_RIGHT
, C_END
, C_RESET
, C_NORM
, C_FILE
, C_DIR
, C_LINK
,
549 C_BLK
, C_CHR
, C_MISSING
, C_ORPHAN
, C_EXEC
, C_DOOR
, C_SETUID
, C_SETGID
,
550 C_STICKY
, C_OTHER_WRITABLE
, C_STICKY_OTHER_WRITABLE
, C_CAP
, C_MULTIHARDLINK
,
554 static const char *const indicator_name
[]=
556 "lc", "rc", "ec", "rs", "no", "fi", "di", "ln", "pi", "so",
557 "bd", "cd", "mi", "or", "ex", "do", "su", "sg", "st",
558 "ow", "tw", "ca", "mh", "cl", NULL
561 struct color_ext_type
563 struct bin_str ext
; /* The extension we're looking for */
564 struct bin_str seq
; /* The sequence to output when we do */
565 struct color_ext_type
*next
; /* Next in list */
568 static struct bin_str color_indicator
[] =
570 { LEN_STR_PAIR ("\033[") }, /* lc: Left of color sequence */
571 { LEN_STR_PAIR ("m") }, /* rc: Right of color sequence */
572 { 0, NULL
}, /* ec: End color (replaces lc+no+rc) */
573 { LEN_STR_PAIR ("0") }, /* rs: Reset to ordinary colors */
574 { 0, NULL
}, /* no: Normal */
575 { 0, NULL
}, /* fi: File: default */
576 { LEN_STR_PAIR ("01;34") }, /* di: Directory: bright blue */
577 { LEN_STR_PAIR ("01;36") }, /* ln: Symlink: bright cyan */
578 { LEN_STR_PAIR ("33") }, /* pi: Pipe: yellow/brown */
579 { LEN_STR_PAIR ("01;35") }, /* so: Socket: bright magenta */
580 { LEN_STR_PAIR ("01;33") }, /* bd: Block device: bright yellow */
581 { LEN_STR_PAIR ("01;33") }, /* cd: Char device: bright yellow */
582 { 0, NULL
}, /* mi: Missing file: undefined */
583 { 0, NULL
}, /* or: Orphaned symlink: undefined */
584 { LEN_STR_PAIR ("01;32") }, /* ex: Executable: bright green */
585 { LEN_STR_PAIR ("01;35") }, /* do: Door: bright magenta */
586 { LEN_STR_PAIR ("37;41") }, /* su: setuid: white on red */
587 { LEN_STR_PAIR ("30;43") }, /* sg: setgid: black on yellow */
588 { LEN_STR_PAIR ("37;44") }, /* st: sticky: black on blue */
589 { LEN_STR_PAIR ("34;42") }, /* ow: other-writable: blue on green */
590 { LEN_STR_PAIR ("30;42") }, /* tw: ow w/ sticky: black on green */
591 { LEN_STR_PAIR ("30;41") }, /* ca: black on red */
592 { 0, NULL
}, /* mh: disabled by default */
593 { LEN_STR_PAIR ("\033[K") }, /* cl: clear to end of line */
597 static struct color_ext_type
*color_ext_list
= NULL
;
599 /* Buffer for color sequences */
600 static char *color_buf
;
602 /* True means to check for orphaned symbolic link, for displaying
605 static bool check_symlink_color
;
607 /* True means mention the inode number of each file. -i */
609 static bool print_inode
;
611 /* What to do with symbolic links. Affected by -d, -F, -H, -l (and
612 other options that imply -l), and -L. */
614 static enum Dereference_symlink dereference
;
616 /* True means when a directory is found, display info on its
619 static bool recursive
;
621 /* True means when an argument is a directory name, display info
624 static bool immediate_dirs
;
626 /* True means that directories are grouped before files. */
628 static bool directories_first
;
630 /* Which files to ignore. */
634 /* Ignore files whose names start with `.', and files specified by
635 --hide and --ignore. */
638 /* Ignore `.', `..', and files specified by --ignore. */
639 IGNORE_DOT_AND_DOTDOT
,
641 /* Ignore only files specified by --ignore. */
645 /* A linked list of shell-style globbing patterns. If a non-argument
646 file name matches any of these patterns, it is ignored.
647 Controlled by -I. Multiple -I options accumulate.
648 The -B option adds `*~' and `.*~' to this list. */
650 struct ignore_pattern
653 struct ignore_pattern
*next
;
656 static struct ignore_pattern
*ignore_patterns
;
658 /* Similar to IGNORE_PATTERNS, except that -a or -A causes this
659 variable itself to be ignored. */
660 static struct ignore_pattern
*hide_patterns
;
662 /* True means output nongraphic chars in file names as `?'.
663 (-q, --hide-control-chars)
664 qmark_funny_chars and the quoting style (-Q, --quoting-style=WORD) are
665 independent. The algorithm is: first, obey the quoting style to get a
666 string representing the file name; then, if qmark_funny_chars is set,
667 replace all nonprintable chars in that string with `?'. It's necessary
668 to replace nonprintable chars even in quoted strings, because we don't
669 want to mess up the terminal if control chars get sent to it, and some
670 quoting methods pass through control chars as-is. */
671 static bool qmark_funny_chars
;
673 /* Quoting options for file and dir name output. */
675 static struct quoting_options
*filename_quoting_options
;
676 static struct quoting_options
*dirname_quoting_options
;
678 /* The number of chars per hardware tab stop. Setting this to zero
679 inhibits the use of TAB characters for separating columns. -T */
680 static size_t tabsize
;
682 /* True means print each directory name before listing it. */
684 static bool print_dir_name
;
686 /* The line length to use for breaking lines in many-per-line format.
687 Can be set with -w. */
689 static size_t line_length
;
691 /* If true, the file listing format requires that stat be called on
694 static bool format_needs_stat
;
696 /* Similar to `format_needs_stat', but set if only the file type is
699 static bool format_needs_type
;
701 /* An arbitrary limit on the number of bytes in a printed time stamp.
702 This is set to a relatively small value to avoid the need to worry
703 about denial-of-service attacks on servers that run "ls" on behalf
704 of remote clients. 1000 bytes should be enough for any practical
705 time stamp format. */
707 enum { TIME_STAMP_LEN_MAXIMUM
= MAX (1000, INT_STRLEN_BOUND (time_t)) };
709 /* strftime formats for non-recent and recent files, respectively, in
712 static char const *long_time_format
[2] =
714 /* strftime format for non-recent files (older than 6 months), in
715 -l output. This should contain the year, month and day (at
716 least), in an order that is understood by people in your
717 locale's territory. Please try to keep the number of used
718 screen columns small, because many people work in windows with
719 only 80 columns. But make this as wide as the other string
720 below, for recent files. */
721 /* TRANSLATORS: ls output needs to be aligned for ease of reading,
722 so be wary of using variable width fields from the locale.
723 Note %b is handled specially by ls and aligned correctly.
724 Note also that specifying a width as in %5b is erroneous as strftime
725 will count bytes rather than characters in multibyte locales. */
727 /* strftime format for recent files (younger than 6 months), in -l
728 output. This should contain the month, day and time (at
729 least), in an order that is understood by people in your
730 locale's territory. Please try to keep the number of used
731 screen columns small, because many people work in windows with
732 only 80 columns. But make this as wide as the other string
733 above, for non-recent files. */
734 /* TRANSLATORS: ls output needs to be aligned for ease of reading,
735 so be wary of using variable width fields from the locale.
736 Note %b is handled specially by ls and aligned correctly.
737 Note also that specifying a width as in %5b is erroneous as strftime
738 will count bytes rather than characters in multibyte locales. */
742 /* The set of signals that are caught. */
744 static sigset_t caught_signals
;
746 /* If nonzero, the value of the pending fatal signal. */
748 static sig_atomic_t volatile interrupt_signal
;
750 /* A count of the number of pending stop signals that have been received. */
752 static sig_atomic_t volatile stop_signal_count
;
754 /* Desired exit status. */
756 static int exit_status
;
761 /* "ls" had a minor problem. E.g., while processing a directory,
762 ls obtained the name of an entry via readdir, yet was later
763 unable to stat that name. This happens when listing a directory
764 in which entries are actively being removed or renamed. */
765 LS_MINOR_PROBLEM
= 1,
767 /* "ls" had more serious trouble (e.g., memory exhausted, invalid
768 option or failure to stat a command line argument. */
772 /* For long options that have no equivalent short option, use a
773 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
776 AUTHOR_OPTION
= CHAR_MAX
+ 1,
779 DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION
,
780 FILE_TYPE_INDICATOR_OPTION
,
783 GROUP_DIRECTORIES_FIRST_OPTION
,
785 INDICATOR_STYLE_OPTION
,
786 QUOTING_STYLE_OPTION
,
787 SHOW_CONTROL_CHARS_OPTION
,
794 static struct option
const long_options
[] =
796 {"all", no_argument
, NULL
, 'a'},
797 {"escape", no_argument
, NULL
, 'b'},
798 {"directory", no_argument
, NULL
, 'd'},
799 {"dired", no_argument
, NULL
, 'D'},
800 {"full-time", no_argument
, NULL
, FULL_TIME_OPTION
},
801 {"group-directories-first", no_argument
, NULL
,
802 GROUP_DIRECTORIES_FIRST_OPTION
},
803 {"human-readable", no_argument
, NULL
, 'h'},
804 {"inode", no_argument
, NULL
, 'i'},
805 {"numeric-uid-gid", no_argument
, NULL
, 'n'},
806 {"no-group", no_argument
, NULL
, 'G'},
807 {"hide-control-chars", no_argument
, NULL
, 'q'},
808 {"reverse", no_argument
, NULL
, 'r'},
809 {"size", no_argument
, NULL
, 's'},
810 {"width", required_argument
, NULL
, 'w'},
811 {"almost-all", no_argument
, NULL
, 'A'},
812 {"ignore-backups", no_argument
, NULL
, 'B'},
813 {"classify", no_argument
, NULL
, 'F'},
814 {"file-type", no_argument
, NULL
, FILE_TYPE_INDICATOR_OPTION
},
815 {"si", no_argument
, NULL
, SI_OPTION
},
816 {"dereference-command-line", no_argument
, NULL
, 'H'},
817 {"dereference-command-line-symlink-to-dir", no_argument
, NULL
,
818 DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION
},
819 {"hide", required_argument
, NULL
, HIDE_OPTION
},
820 {"ignore", required_argument
, NULL
, 'I'},
821 {"indicator-style", required_argument
, NULL
, INDICATOR_STYLE_OPTION
},
822 {"dereference", no_argument
, NULL
, 'L'},
823 {"literal", no_argument
, NULL
, 'N'},
824 {"quote-name", no_argument
, NULL
, 'Q'},
825 {"quoting-style", required_argument
, NULL
, QUOTING_STYLE_OPTION
},
826 {"recursive", no_argument
, NULL
, 'R'},
827 {"format", required_argument
, NULL
, FORMAT_OPTION
},
828 {"show-control-chars", no_argument
, NULL
, SHOW_CONTROL_CHARS_OPTION
},
829 {"sort", required_argument
, NULL
, SORT_OPTION
},
830 {"tabsize", required_argument
, NULL
, 'T'},
831 {"time", required_argument
, NULL
, TIME_OPTION
},
832 {"time-style", required_argument
, NULL
, TIME_STYLE_OPTION
},
833 {"color", optional_argument
, NULL
, COLOR_OPTION
},
834 {"block-size", required_argument
, NULL
, BLOCK_SIZE_OPTION
},
835 {"context", no_argument
, 0, 'Z'},
836 {"author", no_argument
, NULL
, AUTHOR_OPTION
},
837 {GETOPT_HELP_OPTION_DECL
},
838 {GETOPT_VERSION_OPTION_DECL
},
842 static char const *const format_args
[] =
844 "verbose", "long", "commas", "horizontal", "across",
845 "vertical", "single-column", NULL
847 static enum format
const format_types
[] =
849 long_format
, long_format
, with_commas
, horizontal
, horizontal
,
850 many_per_line
, one_per_line
852 ARGMATCH_VERIFY (format_args
, format_types
);
854 static char const *const sort_args
[] =
856 "none", "time", "size", "extension", "version", NULL
858 static enum sort_type
const sort_types
[] =
860 sort_none
, sort_time
, sort_size
, sort_extension
, sort_version
862 ARGMATCH_VERIFY (sort_args
, sort_types
);
864 static char const *const time_args
[] =
866 "atime", "access", "use", "ctime", "status", NULL
868 static enum time_type
const time_types
[] =
870 time_atime
, time_atime
, time_atime
, time_ctime
, time_ctime
872 ARGMATCH_VERIFY (time_args
, time_types
);
874 static char const *const color_args
[] =
876 /* force and none are for compatibility with another color-ls version */
877 "always", "yes", "force",
878 "never", "no", "none",
879 "auto", "tty", "if-tty", NULL
881 static enum color_type
const color_types
[] =
883 color_always
, color_always
, color_always
,
884 color_never
, color_never
, color_never
,
885 color_if_tty
, color_if_tty
, color_if_tty
887 ARGMATCH_VERIFY (color_args
, color_types
);
889 /* Information about filling a column. */
897 /* Array with information about column filledness. */
898 static struct column_info
*column_info
;
900 /* Maximum number of columns ever possible for this display. */
901 static size_t max_idx
;
903 /* The minimum width of a column is 3: 1 character for the name and 2
904 for the separating white space. */
905 #define MIN_COLUMN_WIDTH 3
908 /* This zero-based index is used solely with the --dired option.
909 When that option is in effect, this counter is incremented for each
910 byte of output generated by this program so that the beginning
911 and ending indices (in that output) of every file name can be recorded
912 and later output themselves. */
913 static size_t dired_pos
;
915 #define DIRED_PUTCHAR(c) do {putchar ((c)); ++dired_pos;} while (0)
917 /* Write S to STREAM and increment DIRED_POS by S_LEN. */
918 #define DIRED_FPUTS(s, stream, s_len) \
919 do {fputs (s, stream); dired_pos += s_len;} while (0)
921 /* Like DIRED_FPUTS, but for use when S is a literal string. */
922 #define DIRED_FPUTS_LITERAL(s, stream) \
923 do {fputs (s, stream); dired_pos += sizeof (s) - 1;} while (0)
925 #define DIRED_INDENT() \
929 DIRED_FPUTS_LITERAL (" ", stdout); \
933 /* With --dired, store pairs of beginning and ending indices of filenames. */
934 static struct obstack dired_obstack
;
936 /* With --dired, store pairs of beginning and ending indices of any
937 directory names that appear as headers (just before `total' line)
938 for lists of directory entries. Such directory names are seen when
939 listing hierarchies using -R and when a directory is listed with at
940 least one other command line argument. */
941 static struct obstack subdired_obstack
;
943 /* Save the current index on the specified obstack, OBS. */
944 #define PUSH_CURRENT_DIRED_POS(obs) \
948 obstack_grow (obs, &dired_pos, sizeof (dired_pos)); \
952 /* With -R, this stack is used to help detect directory cycles.
953 The device/inode pairs on this stack mirror the pairs in the
954 active_dir_set hash table. */
955 static struct obstack dev_ino_obstack
;
957 /* Push a pair onto the device/inode stack. */
958 #define DEV_INO_PUSH(Dev, Ino) \
961 struct dev_ino *di; \
962 obstack_blank (&dev_ino_obstack, sizeof (struct dev_ino)); \
963 di = -1 + (struct dev_ino *) obstack_next_free (&dev_ino_obstack); \
964 di->st_dev = (Dev); \
965 di->st_ino = (Ino); \
969 /* Pop a dev/ino struct off the global dev_ino_obstack
970 and return that struct. */
971 static struct dev_ino
974 assert (sizeof (struct dev_ino
) <= obstack_object_size (&dev_ino_obstack
));
975 obstack_blank (&dev_ino_obstack
, -(int) (sizeof (struct dev_ino
)));
976 return *(struct dev_ino
*) obstack_next_free (&dev_ino_obstack
);
979 /* Note the use commented out below:
980 #define ASSERT_MATCHING_DEV_INO(Name, Di) \
985 assert (0 <= stat (Name, &sb)); \
986 assert (sb.st_dev == Di.st_dev); \
987 assert (sb.st_ino == Di.st_ino); \
992 /* Write to standard output PREFIX, followed by the quoting style and
993 a space-separated list of the integers stored in OS all on one line. */
996 dired_dump_obstack (const char *prefix
, struct obstack
*os
)
1000 n_pos
= obstack_object_size (os
) / sizeof (dired_pos
);
1006 pos
= (size_t *) obstack_finish (os
);
1007 fputs (prefix
, stdout
);
1008 for (i
= 0; i
< n_pos
; i
++)
1009 printf (" %lu", (unsigned long int) pos
[i
]);
1014 /* Read the abbreviated month names from the locale, to align them
1015 and to determine the max width of the field and to truncate names
1016 greater than our max allowed.
1017 Note even though this handles multibyte locales correctly
1018 it's not restricted to them as single byte locales can have
1019 variable width abbreviated months and also precomputing/caching
1020 the names was seen to increase the performance of ls significantly. */
1022 /* max number of display cells to use */
1023 enum { MAX_MON_WIDTH
= 5 };
1024 /* In the unlikely event that the abmon[] storage is not big enough
1025 an error message will be displayed, and we revert to using
1026 unmodified abbreviated month names from the locale database. */
1027 static char abmon
[12][MAX_MON_WIDTH
* 2 * MB_LEN_MAX
+ 1];
1028 /* minimum width needed to align %b, 0 => don't use precomputed values. */
1029 static size_t required_mon_width
;
1034 #ifdef HAVE_NL_LANGINFO
1035 required_mon_width
= MAX_MON_WIDTH
;
1036 size_t curr_max_width
;
1039 curr_max_width
= required_mon_width
;
1040 required_mon_width
= 0;
1041 for (int i
= 0; i
< 12; i
++)
1043 size_t width
= curr_max_width
;
1045 size_t req
= mbsalign (nl_langinfo (ABMON_1
+ i
),
1046 abmon
[i
], sizeof (abmon
[i
]),
1047 &width
, MBS_ALIGN_LEFT
, 0);
1049 if (req
== (size_t) -1 || req
>= sizeof (abmon
[i
]))
1051 required_mon_width
= 0; /* ignore precomputed strings. */
1052 return required_mon_width
;
1055 required_mon_width
= MAX (required_mon_width
, width
);
1058 while (curr_max_width
> required_mon_width
);
1061 return required_mon_width
;
1065 dev_ino_hash (void const *x
, size_t table_size
)
1067 struct dev_ino
const *p
= x
;
1068 return (uintmax_t) p
->st_ino
% table_size
;
1072 dev_ino_compare (void const *x
, void const *y
)
1074 struct dev_ino
const *a
= x
;
1075 struct dev_ino
const *b
= y
;
1076 return SAME_INODE (*a
, *b
) ? true : false;
1080 dev_ino_free (void *x
)
1085 /* Add the device/inode pair (P->st_dev/P->st_ino) to the set of
1086 active directories. Return true if there is already a matching
1087 entry in the table. */
1090 visit_dir (dev_t dev
, ino_t ino
)
1092 struct dev_ino
*ent
;
1093 struct dev_ino
*ent_from_table
;
1096 ent
= xmalloc (sizeof *ent
);
1100 /* Attempt to insert this entry into the table. */
1101 ent_from_table
= hash_insert (active_dir_set
, ent
);
1103 if (ent_from_table
== NULL
)
1105 /* Insertion failed due to lack of memory. */
1109 found_match
= (ent_from_table
!= ent
);
1113 /* ent was not inserted, so free it. */
1121 free_pending_ent (struct pending
*p
)
1129 is_colored (enum indicator_no type
)
1131 size_t len
= color_indicator
[type
].len
;
1132 char const *s
= color_indicator
[type
].string
;
1134 || (len
== 1 && strncmp (s
, "0", 1) == 0)
1135 || (len
== 2 && strncmp (s
, "00", 2) == 0));
1139 restore_default_color (void)
1141 put_indicator (&color_indicator
[C_LEFT
]);
1142 put_indicator (&color_indicator
[C_RIGHT
]);
1146 set_normal_color (void)
1148 if (print_with_color
&& is_colored (C_NORM
))
1150 put_indicator (&color_indicator
[C_LEFT
]);
1151 put_indicator (&color_indicator
[C_NORM
]);
1152 put_indicator (&color_indicator
[C_RIGHT
]);
1156 /* An ordinary signal was received; arrange for the program to exit. */
1159 sighandler (int sig
)
1162 signal (sig
, SIG_IGN
);
1163 if (! interrupt_signal
)
1164 interrupt_signal
= sig
;
1167 /* A SIGTSTP was received; arrange for the program to suspend itself. */
1170 stophandler (int sig
)
1173 signal (sig
, stophandler
);
1174 if (! interrupt_signal
)
1175 stop_signal_count
++;
1178 /* Process any pending signals. If signals are caught, this function
1179 should be called periodically. Ideally there should never be an
1180 unbounded amount of time when signals are not being processed.
1181 Signal handling can restore the default colors, so callers must
1182 immediately change colors after invoking this function. */
1185 process_signals (void)
1187 while (interrupt_signal
|| stop_signal_count
)
1194 restore_default_color ();
1197 sigprocmask (SIG_BLOCK
, &caught_signals
, &oldset
);
1199 /* Reload interrupt_signal and stop_signal_count, in case a new
1200 signal was handled before sigprocmask took effect. */
1201 sig
= interrupt_signal
;
1202 stops
= stop_signal_count
;
1204 /* SIGTSTP is special, since the application can receive that signal
1205 more than once. In this case, don't set the signal handler to the
1206 default. Instead, just raise the uncatchable SIGSTOP. */
1209 stop_signal_count
= stops
- 1;
1213 signal (sig
, SIG_DFL
);
1215 /* Exit or suspend the program. */
1217 sigprocmask (SIG_SETMASK
, &oldset
, NULL
);
1219 /* If execution reaches here, then the program has been
1220 continued (after being suspended). */
1225 main (int argc
, char **argv
)
1228 struct pending
*thispend
;
1231 /* The signals that are trapped, and the number of such signals. */
1232 static int const sig
[] =
1234 /* This one is handled specially. */
1237 /* The usual suspects. */
1238 SIGALRM
, SIGHUP
, SIGINT
, SIGPIPE
, SIGQUIT
, SIGTERM
,
1255 enum { nsigs
= ARRAY_CARDINALITY (sig
) };
1258 bool caught_sig
[nsigs
];
1261 initialize_main (&argc
, &argv
);
1262 set_program_name (argv
[0]);
1263 setlocale (LC_ALL
, "");
1264 bindtextdomain (PACKAGE
, LOCALEDIR
);
1265 textdomain (PACKAGE
);
1267 initialize_exit_failure (LS_FAILURE
);
1268 atexit (close_stdout
);
1270 assert (ARRAY_CARDINALITY (color_indicator
) + 1
1271 == ARRAY_CARDINALITY (indicator_name
));
1273 exit_status
= EXIT_SUCCESS
;
1274 print_dir_name
= true;
1275 pending_dirs
= NULL
;
1277 current_time
.tv_sec
= TYPE_MINIMUM (time_t);
1278 current_time
.tv_nsec
= -1;
1280 i
= decode_switches (argc
, argv
);
1282 if (print_with_color
)
1285 /* Test print_with_color again, because the call to parse_ls_color
1286 may have just reset it -- e.g., if LS_COLORS is invalid. */
1287 if (print_with_color
)
1289 /* Avoid following symbolic links when possible. */
1290 if (is_colored (C_ORPHAN
)
1291 || (is_colored (C_EXEC
) && color_symlink_as_referent
)
1292 || (is_colored (C_MISSING
) && format
== long_format
))
1293 check_symlink_color
= true;
1295 /* If the standard output is a controlling terminal, watch out
1296 for signals, so that the colors can be restored to the
1297 default state if "ls" is suspended or interrupted. */
1299 if (0 <= tcgetpgrp (STDOUT_FILENO
))
1303 struct sigaction act
;
1305 sigemptyset (&caught_signals
);
1306 for (j
= 0; j
< nsigs
; j
++)
1308 sigaction (sig
[j
], NULL
, &act
);
1309 if (act
.sa_handler
!= SIG_IGN
)
1310 sigaddset (&caught_signals
, sig
[j
]);
1313 act
.sa_mask
= caught_signals
;
1314 act
.sa_flags
= SA_RESTART
;
1316 for (j
= 0; j
< nsigs
; j
++)
1317 if (sigismember (&caught_signals
, sig
[j
]))
1319 act
.sa_handler
= sig
[j
] == SIGTSTP
? stophandler
: sighandler
;
1320 sigaction (sig
[j
], &act
, NULL
);
1323 for (j
= 0; j
< nsigs
; j
++)
1325 caught_sig
[j
] = (signal (sig
[j
], SIG_IGN
) != SIG_IGN
);
1328 signal (sig
[j
], sig
[j
] == SIGTSTP
? stophandler
: sighandler
);
1329 siginterrupt (sig
[j
], 0);
1336 if (dereference
== DEREF_UNDEFINED
)
1337 dereference
= ((immediate_dirs
1338 || indicator_style
== classify
1339 || format
== long_format
)
1341 : DEREF_COMMAND_LINE_SYMLINK_TO_DIR
);
1343 /* When using -R, initialize a data structure we'll use to
1344 detect any directory cycles. */
1347 active_dir_set
= hash_initialize (INITIAL_TABLE_SIZE
, NULL
,
1351 if (active_dir_set
== NULL
)
1354 obstack_init (&dev_ino_obstack
);
1357 format_needs_stat
= sort_type
== sort_time
|| sort_type
== sort_size
1358 || format
== long_format
1360 || print_block_size
;
1361 format_needs_type
= (! format_needs_stat
1364 || indicator_style
!= none
1365 || directories_first
));
1369 obstack_init (&dired_obstack
);
1370 obstack_init (&subdired_obstack
);
1374 cwd_file
= xnmalloc (cwd_n_alloc
, sizeof *cwd_file
);
1384 gobble_file (".", directory
, NOT_AN_INODE_NUMBER
, true, "");
1386 queue_directory (".", NULL
, true);
1390 gobble_file (argv
[i
++], unknown
, NOT_AN_INODE_NUMBER
, true, "");
1396 if (!immediate_dirs
)
1397 extract_dirs_from_files (NULL
, true);
1398 /* `cwd_n_used' might be zero now. */
1401 /* In the following if/else blocks, it is sufficient to test `pending_dirs'
1402 (and not pending_dirs->name) because there may be no markers in the queue
1403 at this point. A marker may be enqueued when extract_dirs_from_files is
1404 called with a non-empty string or via print_dir. */
1407 print_current_files ();
1409 DIRED_PUTCHAR ('\n');
1411 else if (n_files
<= 1 && pending_dirs
&& pending_dirs
->next
== 0)
1412 print_dir_name
= false;
1414 while (pending_dirs
)
1416 thispend
= pending_dirs
;
1417 pending_dirs
= pending_dirs
->next
;
1421 if (thispend
->name
== NULL
)
1423 /* thispend->name == NULL means this is a marker entry
1424 indicating we've finished processing the directory.
1425 Use its dev/ino numbers to remove the corresponding
1426 entry from the active_dir_set hash table. */
1427 struct dev_ino di
= dev_ino_pop ();
1428 struct dev_ino
*found
= hash_delete (active_dir_set
, &di
);
1429 /* ASSERT_MATCHING_DEV_INO (thispend->realname, di); */
1431 dev_ino_free (found
);
1432 free_pending_ent (thispend
);
1437 print_dir (thispend
->name
, thispend
->realname
,
1438 thispend
->command_line_arg
);
1440 free_pending_ent (thispend
);
1441 print_dir_name
= true;
1444 if (print_with_color
)
1450 /* Skip the restore when it would be a no-op, i.e.,
1451 when left is "\033[" and right is "m". */
1452 if (!(color_indicator
[C_LEFT
].len
== 2
1453 && memcmp (color_indicator
[C_LEFT
].string
, "\033[", 2) == 0
1454 && color_indicator
[C_RIGHT
].len
== 1
1455 && color_indicator
[C_RIGHT
].string
[0] == 'm'))
1456 restore_default_color ();
1460 /* Restore the default signal handling. */
1462 for (j
= 0; j
< nsigs
; j
++)
1463 if (sigismember (&caught_signals
, sig
[j
]))
1464 signal (sig
[j
], SIG_DFL
);
1466 for (j
= 0; j
< nsigs
; j
++)
1468 signal (sig
[j
], SIG_DFL
);
1471 /* Act on any signals that arrived before the default was restored.
1472 This can process signals out of order, but there doesn't seem to
1473 be an easy way to do them in order, and the order isn't that
1474 important anyway. */
1475 for (j
= stop_signal_count
; j
; j
--)
1477 j
= interrupt_signal
;
1484 /* No need to free these since we're about to exit. */
1485 dired_dump_obstack ("//DIRED//", &dired_obstack
);
1486 dired_dump_obstack ("//SUBDIRED//", &subdired_obstack
);
1487 printf ("//DIRED-OPTIONS// --quoting-style=%s\n",
1488 quoting_style_args
[get_quoting_style (filename_quoting_options
)]);
1493 assert (hash_get_n_entries (active_dir_set
) == 0);
1494 hash_free (active_dir_set
);
1500 /* Set all the option flags according to the switches specified.
1501 Return the index of the first non-option argument. */
1504 decode_switches (int argc
, char **argv
)
1506 char *time_style_option
= NULL
;
1508 /* Record whether there is an option specifying sort type. */
1509 bool sort_type_specified
= false;
1511 qmark_funny_chars
= false;
1513 /* initialize all switches to default settings */
1518 /* This is for the `dir' program. */
1519 format
= many_per_line
;
1520 set_quoting_style (NULL
, escape_quoting_style
);
1523 case LS_LONG_FORMAT
:
1524 /* This is for the `vdir' program. */
1525 format
= long_format
;
1526 set_quoting_style (NULL
, escape_quoting_style
);
1530 /* This is for the `ls' program. */
1531 if (isatty (STDOUT_FILENO
))
1533 format
= many_per_line
;
1534 /* See description of qmark_funny_chars, above. */
1535 qmark_funny_chars
= true;
1539 format
= one_per_line
;
1540 qmark_funny_chars
= false;
1548 time_type
= time_mtime
;
1549 sort_type
= sort_name
;
1550 sort_reverse
= false;
1551 numeric_ids
= false;
1552 print_block_size
= false;
1553 indicator_style
= none
;
1554 print_inode
= false;
1555 dereference
= DEREF_UNDEFINED
;
1557 immediate_dirs
= false;
1558 ignore_mode
= IGNORE_DEFAULT
;
1559 ignore_patterns
= NULL
;
1560 hide_patterns
= NULL
;
1561 print_scontext
= false;
1563 /* FIXME: put this in a function. */
1565 char const *q_style
= getenv ("QUOTING_STYLE");
1568 int i
= ARGMATCH (q_style
, quoting_style_args
, quoting_style_vals
);
1570 set_quoting_style (NULL
, quoting_style_vals
[i
]);
1573 _("ignoring invalid value of environment variable QUOTING_STYLE: %s"),
1574 quotearg (q_style
));
1579 char const *ls_block_size
= getenv ("LS_BLOCK_SIZE");
1580 human_options (ls_block_size
,
1581 &human_output_opts
, &output_block_size
);
1582 if (ls_block_size
|| getenv ("BLOCK_SIZE"))
1583 file_output_block_size
= output_block_size
;
1588 char const *p
= getenv ("COLUMNS");
1591 unsigned long int tmp_ulong
;
1592 if (xstrtoul (p
, NULL
, 0, &tmp_ulong
, NULL
) == LONGINT_OK
1593 && 0 < tmp_ulong
&& tmp_ulong
<= SIZE_MAX
)
1595 line_length
= tmp_ulong
;
1600 _("ignoring invalid width in environment variable COLUMNS: %s"),
1610 if (ioctl (STDOUT_FILENO
, TIOCGWINSZ
, &ws
) != -1
1611 && 0 < ws
.ws_col
&& ws
.ws_col
== (size_t) ws
.ws_col
)
1612 line_length
= ws
.ws_col
;
1617 char const *p
= getenv ("TABSIZE");
1621 unsigned long int tmp_ulong
;
1622 if (xstrtoul (p
, NULL
, 0, &tmp_ulong
, NULL
) == LONGINT_OK
1623 && tmp_ulong
<= SIZE_MAX
)
1625 tabsize
= tmp_ulong
;
1630 _("ignoring invalid tab size in environment variable TABSIZE: %s"),
1639 int c
= getopt_long (argc
, argv
,
1640 "abcdfghiklmnopqrstuvw:xABCDFGHI:LNQRST:UXZ1",
1648 ignore_mode
= IGNORE_MINIMAL
;
1652 set_quoting_style (NULL
, escape_quoting_style
);
1656 time_type
= time_ctime
;
1660 immediate_dirs
= true;
1664 /* Same as enabling -a -U and disabling -l -s. */
1665 ignore_mode
= IGNORE_MINIMAL
;
1666 sort_type
= sort_none
;
1667 sort_type_specified
= true;
1669 if (format
== long_format
)
1670 format
= (isatty (STDOUT_FILENO
) ? many_per_line
: one_per_line
);
1671 print_block_size
= false; /* disable -s */
1672 print_with_color
= false; /* disable --color */
1675 case FILE_TYPE_INDICATOR_OPTION
: /* --file-type */
1676 indicator_style
= file_type
;
1680 format
= long_format
;
1681 print_owner
= false;
1685 human_output_opts
= human_autoscale
| human_SI
| human_base_1024
;
1686 file_output_block_size
= output_block_size
= 1;
1694 human_output_opts
= 0;
1695 file_output_block_size
= output_block_size
= 1024;
1699 format
= long_format
;
1703 format
= with_commas
;
1708 format
= long_format
;
1711 case 'o': /* Just like -l, but don't display group info. */
1712 format
= long_format
;
1713 print_group
= false;
1717 indicator_style
= slash
;
1721 qmark_funny_chars
= true;
1725 sort_reverse
= true;
1729 print_block_size
= true;
1733 sort_type
= sort_time
;
1734 sort_type_specified
= true;
1738 time_type
= time_atime
;
1742 sort_type
= sort_version
;
1743 sort_type_specified
= true;
1748 unsigned long int tmp_ulong
;
1749 if (xstrtoul (optarg
, NULL
, 0, &tmp_ulong
, NULL
) != LONGINT_OK
1750 || ! (0 < tmp_ulong
&& tmp_ulong
<= SIZE_MAX
))
1751 error (LS_FAILURE
, 0, _("invalid line width: %s"),
1753 line_length
= tmp_ulong
;
1758 format
= horizontal
;
1762 if (ignore_mode
== IGNORE_DEFAULT
)
1763 ignore_mode
= IGNORE_DOT_AND_DOTDOT
;
1767 add_ignore_pattern ("*~");
1768 add_ignore_pattern (".*~");
1772 format
= many_per_line
;
1780 indicator_style
= classify
;
1783 case 'G': /* inhibit display of group info */
1784 print_group
= false;
1788 dereference
= DEREF_COMMAND_LINE_ARGUMENTS
;
1791 case DEREFERENCE_COMMAND_LINE_SYMLINK_TO_DIR_OPTION
:
1792 dereference
= DEREF_COMMAND_LINE_SYMLINK_TO_DIR
;
1796 add_ignore_pattern (optarg
);
1800 dereference
= DEREF_ALWAYS
;
1804 set_quoting_style (NULL
, literal_quoting_style
);
1808 set_quoting_style (NULL
, c_quoting_style
);
1816 sort_type
= sort_size
;
1817 sort_type_specified
= true;
1822 unsigned long int tmp_ulong
;
1823 if (xstrtoul (optarg
, NULL
, 0, &tmp_ulong
, NULL
) != LONGINT_OK
1824 || SIZE_MAX
< tmp_ulong
)
1825 error (LS_FAILURE
, 0, _("invalid tab size: %s"),
1827 tabsize
= tmp_ulong
;
1832 sort_type
= sort_none
;
1833 sort_type_specified
= true;
1837 sort_type
= sort_extension
;
1838 sort_type_specified
= true;
1842 /* -1 has no effect after -l. */
1843 if (format
!= long_format
)
1844 format
= one_per_line
;
1848 print_author
= true;
1853 struct ignore_pattern
*hide
= xmalloc (sizeof *hide
);
1854 hide
->pattern
= optarg
;
1855 hide
->next
= hide_patterns
;
1856 hide_patterns
= hide
;
1861 sort_type
= XARGMATCH ("--sort", optarg
, sort_args
, sort_types
);
1862 sort_type_specified
= true;
1865 case GROUP_DIRECTORIES_FIRST_OPTION
:
1866 directories_first
= true;
1870 time_type
= XARGMATCH ("--time", optarg
, time_args
, time_types
);
1874 format
= XARGMATCH ("--format", optarg
, format_args
, format_types
);
1877 case FULL_TIME_OPTION
:
1878 format
= long_format
;
1879 time_style_option
= bad_cast ("full-iso");
1886 i
= XARGMATCH ("--color", optarg
, color_args
, color_types
);
1888 /* Using --color with no argument is equivalent to using
1892 print_with_color
= (i
== color_always
1893 || (i
== color_if_tty
1894 && isatty (STDOUT_FILENO
)));
1896 if (print_with_color
)
1898 /* Don't use TAB characters in output. Some terminal
1899 emulators can't handle the combination of tabs and
1900 color codes on the same line. */
1906 case INDICATOR_STYLE_OPTION
:
1907 indicator_style
= XARGMATCH ("--indicator-style", optarg
,
1908 indicator_style_args
,
1909 indicator_style_types
);
1912 case QUOTING_STYLE_OPTION
:
1913 set_quoting_style (NULL
,
1914 XARGMATCH ("--quoting-style", optarg
,
1916 quoting_style_vals
));
1919 case TIME_STYLE_OPTION
:
1920 time_style_option
= optarg
;
1923 case SHOW_CONTROL_CHARS_OPTION
:
1924 qmark_funny_chars
= false;
1927 case BLOCK_SIZE_OPTION
:
1929 enum strtol_error e
= human_options (optarg
, &human_output_opts
,
1930 &output_block_size
);
1931 if (e
!= LONGINT_OK
)
1932 xstrtol_fatal (e
, oi
, 0, long_options
, optarg
);
1933 file_output_block_size
= output_block_size
;
1938 human_output_opts
= human_autoscale
| human_SI
;
1939 file_output_block_size
= output_block_size
= 1;
1943 print_scontext
= true;
1946 case_GETOPT_HELP_CHAR
;
1948 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
1955 max_idx
= MAX (1, line_length
/ MIN_COLUMN_WIDTH
);
1957 filename_quoting_options
= clone_quoting_options (NULL
);
1958 if (get_quoting_style (filename_quoting_options
) == escape_quoting_style
)
1959 set_char_quoting (filename_quoting_options
, ' ', 1);
1960 if (file_type
<= indicator_style
)
1963 for (p
= "*=>@|" + indicator_style
- file_type
; *p
; p
++)
1964 set_char_quoting (filename_quoting_options
, *p
, 1);
1967 dirname_quoting_options
= clone_quoting_options (NULL
);
1968 set_char_quoting (dirname_quoting_options
, ':', 1);
1970 /* --dired is meaningful only with --format=long (-l).
1971 Otherwise, ignore it. FIXME: warn about this?
1972 Alternatively, make --dired imply --format=long? */
1973 if (dired
&& format
!= long_format
)
1976 /* If -c or -u is specified and not -l (or any other option that implies -l),
1977 and no sort-type was specified, then sort by the ctime (-c) or atime (-u).
1978 The behavior of ls when using either -c or -u but with neither -l nor -t
1979 appears to be unspecified by POSIX. So, with GNU ls, `-u' alone means
1980 sort by atime (this is the one that's not specified by the POSIX spec),
1981 -lu means show atime and sort by name, -lut means show atime and sort
1984 if ((time_type
== time_ctime
|| time_type
== time_atime
)
1985 && !sort_type_specified
&& format
!= long_format
)
1987 sort_type
= sort_time
;
1990 if (format
== long_format
)
1992 char *style
= time_style_option
;
1993 static char const posix_prefix
[] = "posix-";
1996 if (! (style
= getenv ("TIME_STYLE")))
1997 style
= bad_cast ("locale");
1999 while (strncmp (style
, posix_prefix
, sizeof posix_prefix
- 1) == 0)
2001 if (! hard_locale (LC_TIME
))
2003 style
+= sizeof posix_prefix
- 1;
2008 char *p0
= style
+ 1;
2009 char *p1
= strchr (p0
, '\n');
2014 if (strchr (p1
+ 1, '\n'))
2015 error (LS_FAILURE
, 0, _("invalid time style format %s"),
2019 long_time_format
[0] = p0
;
2020 long_time_format
[1] = p1
;
2023 switch (XARGMATCH ("time style", style
,
2027 case full_iso_time_style
:
2028 long_time_format
[0] = long_time_format
[1] =
2029 "%Y-%m-%d %H:%M:%S.%N %z";
2032 case long_iso_time_style
:
2033 long_time_format
[0] = long_time_format
[1] = "%Y-%m-%d %H:%M";
2036 case iso_time_style
:
2037 long_time_format
[0] = "%Y-%m-%d ";
2038 long_time_format
[1] = "%m-%d %H:%M";
2041 case locale_time_style
:
2042 if (hard_locale (LC_TIME
))
2045 for (i
= 0; i
< 2; i
++)
2046 long_time_format
[i
] =
2047 dcgettext (NULL
, long_time_format
[i
], LC_TIME
);
2050 /* Note we leave %5b etc. alone so user widths/flags are honored. */
2051 if (strstr (long_time_format
[0], "%b")
2052 || strstr (long_time_format
[1], "%b"))
2054 error (0, 0, _("error initializing month strings"));
2060 /* Parse a string as part of the LS_COLORS variable; this may involve
2061 decoding all kinds of escape characters. If equals_end is set an
2062 unescaped equal sign ends the string, otherwise only a : or \0
2063 does. Set *OUTPUT_COUNT to the number of bytes output. Return
2066 The resulting string is *not* null-terminated, but may contain
2069 Note that both dest and src are char **; on return they point to
2070 the first free byte after the array and the character that ended
2071 the input string, respectively. */
2074 get_funky_string (char **dest
, const char **src
, bool equals_end
,
2075 size_t *output_count
)
2077 char num
; /* For numerical codes */
2078 size_t count
; /* Something to count with */
2080 ST_GND
, ST_BACKSLASH
, ST_OCTAL
, ST_HEX
, ST_CARET
, ST_END
, ST_ERROR
2085 p
= *src
; /* We don't want to double-indirect */
2086 q
= *dest
; /* the whole darn time. */
2088 count
= 0; /* No characters counted in yet. */
2091 state
= ST_GND
; /* Start in ground state. */
2092 while (state
< ST_END
)
2096 case ST_GND
: /* Ground state (no escapes) */
2101 state
= ST_END
; /* End of string */
2104 state
= ST_BACKSLASH
; /* Backslash scape sequence */
2108 state
= ST_CARET
; /* Caret escape */
2114 state
= ST_END
; /* End */
2117 /* else fall through */
2125 case ST_BACKSLASH
: /* Backslash escaped character */
2136 state
= ST_OCTAL
; /* Octal sequence */
2141 state
= ST_HEX
; /* Hex sequence */
2144 case 'a': /* Bell */
2147 case 'b': /* Backspace */
2150 case 'e': /* Escape */
2153 case 'f': /* Form feed */
2156 case 'n': /* Newline */
2159 case 'r': /* Carriage return */
2165 case 'v': /* Vtab */
2168 case '?': /* Delete */
2171 case '_': /* Space */
2174 case '\0': /* End of string */
2175 state
= ST_ERROR
; /* Error! */
2177 default: /* Escaped character like \ ^ : = */
2181 if (state
== ST_BACKSLASH
)
2190 case ST_OCTAL
: /* Octal sequence */
2191 if (*p
< '0' || *p
> '7')
2198 num
= (num
<< 3) + (*(p
++) - '0');
2201 case ST_HEX
: /* Hex sequence */
2214 num
= (num
<< 4) + (*(p
++) - '0');
2222 num
= (num
<< 4) + (*(p
++) - 'a') + 10;
2230 num
= (num
<< 4) + (*(p
++) - 'A') + 10;
2240 case ST_CARET
: /* Caret escape */
2241 state
= ST_GND
; /* Should be the next state... */
2242 if (*p
>= '@' && *p
<= '~')
2244 *(q
++) = *(p
++) & 037;
2263 *output_count
= count
;
2265 return state
!= ST_ERROR
;
2269 parse_ls_color (void)
2271 const char *p
; /* Pointer to character being parsed */
2272 char *buf
; /* color_buf buffer pointer */
2273 int state
; /* State of parser */
2274 int ind_no
; /* Indicator number */
2275 char label
[3]; /* Indicator label */
2276 struct color_ext_type
*ext
; /* Extension we are working on */
2278 if ((p
= getenv ("LS_COLORS")) == NULL
|| *p
== '\0')
2282 strcpy (label
, "??");
2284 /* This is an overly conservative estimate, but any possible
2285 LS_COLORS string will *not* generate a color_buf longer than
2286 itself, so it is a safe way of allocating a buffer in
2288 buf
= color_buf
= xstrdup (p
);
2295 case 1: /* First label character */
2303 /* Allocate new extension block and add to head of
2304 linked list (this way a later definition will
2305 override an earlier one, which can be useful for
2306 having terminal-specific defs override global). */
2308 ext
= xmalloc (sizeof *ext
);
2309 ext
->next
= color_ext_list
;
2310 color_ext_list
= ext
;
2313 ext
->ext
.string
= buf
;
2315 state
= (get_funky_string (&buf
, &p
, true, &ext
->ext
.len
)
2320 state
= 0; /* Done! */
2323 default: /* Assume it is file type label */
2330 case 2: /* Second label character */
2337 state
= -1; /* Error */
2340 case 3: /* Equal sign after indicator label */
2341 state
= -1; /* Assume failure... */
2342 if (*(p
++) == '=')/* It *should* be... */
2344 for (ind_no
= 0; indicator_name
[ind_no
] != NULL
; ++ind_no
)
2346 if (STREQ (label
, indicator_name
[ind_no
]))
2348 color_indicator
[ind_no
].string
= buf
;
2349 state
= (get_funky_string (&buf
, &p
, false,
2350 &color_indicator
[ind_no
].len
)
2356 error (0, 0, _("unrecognized prefix: %s"), quotearg (label
));
2360 case 4: /* Equal sign after *.ext */
2363 ext
->seq
.string
= buf
;
2364 state
= (get_funky_string (&buf
, &p
, false, &ext
->seq
.len
)
2375 struct color_ext_type
*e
;
2376 struct color_ext_type
*e2
;
2379 _("unparsable value for LS_COLORS environment variable"));
2381 for (e
= color_ext_list
; e
!= NULL
; /* empty */)
2387 print_with_color
= false;
2390 if (color_indicator
[C_LINK
].len
== 6
2391 && !strncmp (color_indicator
[C_LINK
].string
, "target", 6))
2392 color_symlink_as_referent
= true;
2395 /* Set the exit status to report a failure. If SERIOUS, it is a
2396 serious failure; otherwise, it is merely a minor problem. */
2399 set_exit_status (bool serious
)
2402 exit_status
= LS_FAILURE
;
2403 else if (exit_status
== EXIT_SUCCESS
)
2404 exit_status
= LS_MINOR_PROBLEM
;
2407 /* Assuming a failure is serious if SERIOUS, use the printf-style
2408 MESSAGE to report the failure to access a file named FILE. Assume
2409 errno is set appropriately for the failure. */
2412 file_failure (bool serious
, char const *message
, char const *file
)
2414 error (0, errno
, message
, quotearg_colon (file
));
2415 set_exit_status (serious
);
2418 /* Request that the directory named NAME have its contents listed later.
2419 If REALNAME is nonzero, it will be used instead of NAME when the
2420 directory name is printed. This allows symbolic links to directories
2421 to be treated as regular directories but still be listed under their
2422 real names. NAME == NULL is used to insert a marker entry for the
2423 directory named in REALNAME.
2424 If NAME is non-NULL, we use its dev/ino information to save
2425 a call to stat -- when doing a recursive (-R) traversal.
2426 COMMAND_LINE_ARG means this directory was mentioned on the command line. */
2429 queue_directory (char const *name
, char const *realname
, bool command_line_arg
)
2431 struct pending
*new = xmalloc (sizeof *new);
2432 new->realname
= realname
? xstrdup (realname
) : NULL
;
2433 new->name
= name
? xstrdup (name
) : NULL
;
2434 new->command_line_arg
= command_line_arg
;
2435 new->next
= pending_dirs
;
2439 /* Read directory NAME, and list the files in it.
2440 If REALNAME is nonzero, print its name instead of NAME;
2441 this is used for symbolic links to directories.
2442 COMMAND_LINE_ARG means this directory was mentioned on the command line. */
2445 print_dir (char const *name
, char const *realname
, bool command_line_arg
)
2448 struct dirent
*next
;
2449 uintmax_t total_blocks
= 0;
2450 static bool first
= true;
2453 dirp
= opendir (name
);
2456 file_failure (command_line_arg
, _("cannot open directory %s"), name
);
2462 struct stat dir_stat
;
2463 int fd
= dirfd (dirp
);
2465 /* If dirfd failed, endure the overhead of using stat. */
2467 ? fstat (fd
, &dir_stat
)
2468 : stat (name
, &dir_stat
)) < 0)
2470 file_failure (command_line_arg
,
2471 _("cannot determine device and inode of %s"), name
);
2476 /* If we've already visited this dev/inode pair, warn that
2477 we've found a loop, and do not process this directory. */
2478 if (visit_dir (dir_stat
.st_dev
, dir_stat
.st_ino
))
2480 error (0, 0, _("%s: not listing already-listed directory"),
2481 quotearg_colon (name
));
2483 set_exit_status (true);
2487 DEV_INO_PUSH (dir_stat
.st_dev
, dir_stat
.st_ino
);
2490 if (recursive
|| print_dir_name
)
2493 DIRED_PUTCHAR ('\n');
2496 PUSH_CURRENT_DIRED_POS (&subdired_obstack
);
2497 dired_pos
+= quote_name (stdout
, realname
? realname
: name
,
2498 dirname_quoting_options
, NULL
);
2499 PUSH_CURRENT_DIRED_POS (&subdired_obstack
);
2500 DIRED_FPUTS_LITERAL (":\n", stdout
);
2503 /* Read the directory entries, and insert the subfiles into the `cwd_file'
2510 /* Set errno to zero so we can distinguish between a readdir failure
2511 and when readdir simply finds that there are no more entries. */
2513 next
= readdir (dirp
);
2516 if (! file_ignored (next
->d_name
))
2518 enum filetype type
= unknown
;
2520 #if HAVE_STRUCT_DIRENT_D_TYPE
2521 switch (next
->d_type
)
2523 case DT_BLK
: type
= blockdev
; break;
2524 case DT_CHR
: type
= chardev
; break;
2525 case DT_DIR
: type
= directory
; break;
2526 case DT_FIFO
: type
= fifo
; break;
2527 case DT_LNK
: type
= symbolic_link
; break;
2528 case DT_REG
: type
= normal
; break;
2529 case DT_SOCK
: type
= sock
; break;
2531 case DT_WHT
: type
= whiteout
; break;
2535 total_blocks
+= gobble_file (next
->d_name
, type
,
2536 RELIABLE_D_INO (next
),
2539 /* In this narrow case, print out each name right away, so
2540 ls uses constant memory while processing the entries of
2541 this directory. Useful when there are many (millions)
2542 of entries in a directory. */
2543 if (format
== one_per_line
&& sort_type
== sort_none
2544 && !print_block_size
&& !recursive
)
2546 /* We must call sort_files in spite of
2547 "sort_type == sort_none" for its initialization
2548 of the sorted_file vector. */
2550 print_current_files ();
2555 else if (errno
!= 0)
2557 file_failure (command_line_arg
, _("reading directory %s"), name
);
2558 if (errno
!= EOVERFLOW
)
2565 if (closedir (dirp
) != 0)
2567 file_failure (command_line_arg
, _("closing directory %s"), name
);
2568 /* Don't return; print whatever we got. */
2571 /* Sort the directory contents. */
2574 /* If any member files are subdirectories, perhaps they should have their
2575 contents listed rather than being mentioned here as files. */
2578 extract_dirs_from_files (name
, command_line_arg
);
2580 if (format
== long_format
|| print_block_size
)
2583 char buf
[LONGEST_HUMAN_READABLE
+ 1];
2587 DIRED_FPUTS (p
, stdout
, strlen (p
));
2588 DIRED_PUTCHAR (' ');
2589 p
= human_readable (total_blocks
, buf
, human_output_opts
,
2590 ST_NBLOCKSIZE
, output_block_size
);
2591 DIRED_FPUTS (p
, stdout
, strlen (p
));
2592 DIRED_PUTCHAR ('\n');
2596 print_current_files ();
2599 /* Add `pattern' to the list of patterns for which files that match are
2603 add_ignore_pattern (const char *pattern
)
2605 struct ignore_pattern
*ignore
;
2607 ignore
= xmalloc (sizeof *ignore
);
2608 ignore
->pattern
= pattern
;
2609 /* Add it to the head of the linked list. */
2610 ignore
->next
= ignore_patterns
;
2611 ignore_patterns
= ignore
;
2614 /* Return true if one of the PATTERNS matches FILE. */
2617 patterns_match (struct ignore_pattern
const *patterns
, char const *file
)
2619 struct ignore_pattern
const *p
;
2620 for (p
= patterns
; p
; p
= p
->next
)
2621 if (fnmatch (p
->pattern
, file
, FNM_PERIOD
) == 0)
2626 /* Return true if FILE should be ignored. */
2629 file_ignored (char const *name
)
2631 return ((ignore_mode
!= IGNORE_MINIMAL
2633 && (ignore_mode
== IGNORE_DEFAULT
|| ! name
[1 + (name
[1] == '.')]))
2634 || (ignore_mode
== IGNORE_DEFAULT
2635 && patterns_match (hide_patterns
, name
))
2636 || patterns_match (ignore_patterns
, name
));
2639 /* POSIX requires that a file size be printed without a sign, even
2640 when negative. Assume the typical case where negative sizes are
2641 actually positive values that have wrapped around. */
2644 unsigned_file_size (off_t size
)
2646 return size
+ (size
< 0) * ((uintmax_t) OFF_T_MAX
- OFF_T_MIN
+ 1);
2650 /* Return true if NAME has a capability (see linux/capability.h) */
2652 has_capability (char const *name
)
2657 cap_t cap_d
= cap_get_file (name
);
2661 result
= cap_to_text (cap_d
, NULL
);
2666 /* check if human-readable capability string is empty */
2667 has_cap
= !!*result
;
2674 has_capability (char const *name ATTRIBUTE_UNUSED
)
2680 /* Enter and remove entries in the table `cwd_file'. */
2682 /* Empty the table of files. */
2689 for (i
= 0; i
< cwd_n_used
; i
++)
2691 struct fileinfo
*f
= sorted_file
[i
];
2694 if (f
->scontext
!= UNKNOWN_SECURITY_CONTEXT
)
2695 freecon (f
->scontext
);
2699 any_has_acl
= false;
2700 inode_number_width
= 0;
2701 block_size_width
= 0;
2707 major_device_number_width
= 0;
2708 minor_device_number_width
= 0;
2709 file_size_width
= 0;
2712 /* Add a file to the current table of files.
2713 Verify that the file exists, and print an error message if it does not.
2714 Return the number of blocks that the file occupies. */
2717 gobble_file (char const *name
, enum filetype type
, ino_t inode
,
2718 bool command_line_arg
, char const *dirname
)
2720 uintmax_t blocks
= 0;
2723 /* An inode value prior to gobble_file necessarily came from readdir,
2724 which is not used for command line arguments. */
2725 assert (! command_line_arg
|| inode
== NOT_AN_INODE_NUMBER
);
2727 if (cwd_n_used
== cwd_n_alloc
)
2729 cwd_file
= xnrealloc (cwd_file
, cwd_n_alloc
, 2 * sizeof *cwd_file
);
2733 f
= &cwd_file
[cwd_n_used
];
2734 memset (f
, '\0', sizeof *f
);
2735 f
->stat
.st_ino
= inode
;
2738 if (command_line_arg
2739 || format_needs_stat
2740 /* When coloring a directory (we may know the type from
2741 direct.d_type), we have to stat it in order to indicate
2742 sticky and/or other-writable attributes. */
2743 || (type
== directory
&& print_with_color
)
2744 /* When dereferencing symlinks, the inode and type must come from
2745 stat, but readdir provides the inode and type of lstat. */
2746 || ((print_inode
|| format_needs_type
)
2747 && (type
== symbolic_link
|| type
== unknown
)
2748 && (dereference
== DEREF_ALWAYS
2749 || (command_line_arg
&& dereference
!= DEREF_NEVER
)
2750 || color_symlink_as_referent
|| check_symlink_color
))
2751 /* Command line dereferences are already taken care of by the above
2752 assertion that the inode number is not yet known. */
2753 || (print_inode
&& inode
== NOT_AN_INODE_NUMBER
)
2754 || (format_needs_type
2755 && (type
== unknown
|| command_line_arg
2756 /* --indicator-style=classify (aka -F)
2757 requires that we stat each regular file
2758 to see if it's executable. */
2759 || (type
== normal
&& (indicator_style
== classify
2760 /* This is so that --color ends up
2761 highlighting files with these mode
2762 bits set even when options like -F are
2763 not specified. Note we do a redundant
2764 stat in the very unlikely case where
2765 C_CAP is set but not the others. */
2766 || (print_with_color
2767 && (is_colored (C_EXEC
)
2768 || is_colored (C_SETUID
)
2769 || is_colored (C_SETGID
)
2770 || is_colored (C_CAP
)))
2774 /* Absolute name of this file. */
2775 char *absolute_name
;
2779 if (name
[0] == '/' || dirname
[0] == 0)
2780 absolute_name
= (char *) name
;
2783 absolute_name
= alloca (strlen (name
) + strlen (dirname
) + 2);
2784 attach (absolute_name
, dirname
, name
);
2787 switch (dereference
)
2790 err
= stat (absolute_name
, &f
->stat
);
2794 case DEREF_COMMAND_LINE_ARGUMENTS
:
2795 case DEREF_COMMAND_LINE_SYMLINK_TO_DIR
:
2796 if (command_line_arg
)
2799 err
= stat (absolute_name
, &f
->stat
);
2802 if (dereference
== DEREF_COMMAND_LINE_ARGUMENTS
)
2805 need_lstat
= (err
< 0
2807 : ! S_ISDIR (f
->stat
.st_mode
));
2811 /* stat failed because of ENOENT, maybe indicating a dangling
2812 symlink. Or stat succeeded, ABSOLUTE_NAME does not refer to a
2813 directory, and --dereference-command-line-symlink-to-dir is
2814 in effect. Fall through so that we call lstat instead. */
2817 default: /* DEREF_NEVER */
2818 err
= lstat (absolute_name
, &f
->stat
);
2825 /* Failure to stat a command line argument leads to
2826 an exit status of 2. For other files, stat failure
2827 provokes an exit status of 1. */
2828 file_failure (command_line_arg
,
2829 _("cannot access %s"), absolute_name
);
2830 if (command_line_arg
)
2833 f
->name
= xstrdup (name
);
2841 /* Note has_capability() adds around 30% runtime to `ls --color` */
2842 if ((type
== normal
|| S_ISREG (f
->stat
.st_mode
))
2843 && print_with_color
&& is_colored (C_CAP
))
2844 f
->has_capability
= has_capability (absolute_name
);
2846 if (format
== long_format
|| print_scontext
)
2848 bool have_selinux
= false;
2849 bool have_acl
= false;
2850 int attr_len
= (do_deref
2851 ? getfilecon (absolute_name
, &f
->scontext
)
2852 : lgetfilecon (absolute_name
, &f
->scontext
));
2853 err
= (attr_len
< 0);
2856 have_selinux
= ! STREQ ("unlabeled", f
->scontext
);
2859 f
->scontext
= UNKNOWN_SECURITY_CONTEXT
;
2861 /* When requesting security context information, don't make
2862 ls fail just because the file (even a command line argument)
2863 isn't on the right type of file system. I.e., a getfilecon
2864 failure isn't in the same class as a stat failure. */
2865 if (errno
== ENOTSUP
|| errno
== EOPNOTSUPP
|| errno
== ENODATA
)
2869 if (err
== 0 && format
== long_format
)
2871 int n
= file_has_acl (absolute_name
, &f
->stat
);
2876 f
->acl_type
= (!have_selinux
&& !have_acl
2878 : (have_selinux
&& !have_acl
2879 ? ACL_T_SELINUX_ONLY
2881 any_has_acl
|= f
->acl_type
!= ACL_T_NONE
;
2884 error (0, errno
, "%s", quotearg_colon (absolute_name
));
2887 if (S_ISLNK (f
->stat
.st_mode
)
2888 && (format
== long_format
|| check_symlink_color
))
2891 struct stat linkstats
;
2893 get_link_name (absolute_name
, f
, command_line_arg
);
2894 linkname
= make_link_name (absolute_name
, f
->linkname
);
2896 /* Avoid following symbolic links when possible, ie, when
2897 they won't be traced and when no indicator is needed. */
2899 && (file_type
<= indicator_style
|| check_symlink_color
)
2900 && stat (linkname
, &linkstats
) == 0)
2904 /* Symbolic links to directories that are mentioned on the
2905 command line are automatically traced if not being
2907 if (!command_line_arg
|| format
== long_format
2908 || !S_ISDIR (linkstats
.st_mode
))
2910 /* Get the linked-to file's mode for the filetype indicator
2911 in long listings. */
2912 f
->linkmode
= linkstats
.st_mode
;
2918 /* When not distinguishing types of symlinks, pretend we know that
2919 it is stat'able, so that it will be colored as a regular symlink,
2920 and not as an orphan. */
2921 if (S_ISLNK (f
->stat
.st_mode
) && !check_symlink_color
)
2924 if (S_ISLNK (f
->stat
.st_mode
))
2925 f
->filetype
= symbolic_link
;
2926 else if (S_ISDIR (f
->stat
.st_mode
))
2928 if (command_line_arg
&& !immediate_dirs
)
2929 f
->filetype
= arg_directory
;
2931 f
->filetype
= directory
;
2934 f
->filetype
= normal
;
2936 blocks
= ST_NBLOCKS (f
->stat
);
2937 if (format
== long_format
|| print_block_size
)
2939 char buf
[LONGEST_HUMAN_READABLE
+ 1];
2940 int len
= mbswidth (human_readable (blocks
, buf
, human_output_opts
,
2941 ST_NBLOCKSIZE
, output_block_size
),
2943 if (block_size_width
< len
)
2944 block_size_width
= len
;
2947 if (format
== long_format
)
2951 int len
= format_user_width (f
->stat
.st_uid
);
2952 if (owner_width
< len
)
2958 int len
= format_group_width (f
->stat
.st_gid
);
2959 if (group_width
< len
)
2965 int len
= format_user_width (f
->stat
.st_author
);
2966 if (author_width
< len
)
2973 int len
= strlen (f
->scontext
);
2974 if (scontext_width
< len
)
2975 scontext_width
= len
;
2978 if (format
== long_format
)
2980 char b
[INT_BUFSIZE_BOUND (uintmax_t)];
2981 int b_len
= strlen (umaxtostr (f
->stat
.st_nlink
, b
));
2982 if (nlink_width
< b_len
)
2983 nlink_width
= b_len
;
2985 if (S_ISCHR (f
->stat
.st_mode
) || S_ISBLK (f
->stat
.st_mode
))
2987 char buf
[INT_BUFSIZE_BOUND (uintmax_t)];
2988 int len
= strlen (umaxtostr (major (f
->stat
.st_rdev
), buf
));
2989 if (major_device_number_width
< len
)
2990 major_device_number_width
= len
;
2991 len
= strlen (umaxtostr (minor (f
->stat
.st_rdev
), buf
));
2992 if (minor_device_number_width
< len
)
2993 minor_device_number_width
= len
;
2994 len
= major_device_number_width
+ 2 + minor_device_number_width
;
2995 if (file_size_width
< len
)
2996 file_size_width
= len
;
3000 char buf
[LONGEST_HUMAN_READABLE
+ 1];
3001 uintmax_t size
= unsigned_file_size (f
->stat
.st_size
);
3002 int len
= mbswidth (human_readable (size
, buf
, human_output_opts
,
3003 1, file_output_block_size
),
3005 if (file_size_width
< len
)
3006 file_size_width
= len
;
3013 char buf
[INT_BUFSIZE_BOUND (uintmax_t)];
3014 int len
= strlen (umaxtostr (f
->stat
.st_ino
, buf
));
3015 if (inode_number_width
< len
)
3016 inode_number_width
= len
;
3019 f
->name
= xstrdup (name
);
3025 /* Return true if F refers to a directory. */
3027 is_directory (const struct fileinfo
*f
)
3029 return f
->filetype
== directory
|| f
->filetype
== arg_directory
;
3032 /* Put the name of the file that FILENAME is a symbolic link to
3033 into the LINKNAME field of `f'. COMMAND_LINE_ARG indicates whether
3034 FILENAME is a command-line argument. */
3037 get_link_name (char const *filename
, struct fileinfo
*f
, bool command_line_arg
)
3039 f
->linkname
= areadlink_with_size (filename
, f
->stat
.st_size
);
3040 if (f
->linkname
== NULL
)
3041 file_failure (command_line_arg
, _("cannot read symbolic link %s"),
3045 /* If `linkname' is a relative name and `name' contains one or more
3046 leading directories, return `linkname' with those directories
3047 prepended; otherwise, return a copy of `linkname'.
3048 If `linkname' is zero, return zero. */
3051 make_link_name (char const *name
, char const *linkname
)
3059 if (*linkname
== '/')
3060 return xstrdup (linkname
);
3062 /* The link is to a relative name. Prepend any leading directory
3063 in `name' to the link name. */
3064 linkbuf
= strrchr (name
, '/');
3066 return xstrdup (linkname
);
3068 bufsiz
= linkbuf
- name
+ 1;
3069 linkbuf
= xmalloc (bufsiz
+ strlen (linkname
) + 1);
3070 strncpy (linkbuf
, name
, bufsiz
);
3071 strcpy (linkbuf
+ bufsiz
, linkname
);
3075 /* Return true if the last component of NAME is `.' or `..'
3076 This is so we don't try to recurse on `././././. ...' */
3079 basename_is_dot_or_dotdot (const char *name
)
3081 char const *base
= last_component (name
);
3082 return dot_or_dotdot (base
);
3085 /* Remove any entries from CWD_FILE that are for directories,
3086 and queue them to be listed as directories instead.
3087 DIRNAME is the prefix to prepend to each dirname
3088 to make it correct relative to ls's working dir;
3089 if it is null, no prefix is needed and "." and ".." should not be ignored.
3090 If COMMAND_LINE_ARG is true, this directory was mentioned at the top level,
3091 This is desirable when processing directories recursively. */
3094 extract_dirs_from_files (char const *dirname
, bool command_line_arg
)
3098 bool ignore_dot_and_dot_dot
= (dirname
!= NULL
);
3100 if (dirname
&& LOOP_DETECT
)
3102 /* Insert a marker entry first. When we dequeue this marker entry,
3103 we'll know that DIRNAME has been processed and may be removed
3104 from the set of active directories. */
3105 queue_directory (NULL
, dirname
, false);
3108 /* Queue the directories last one first, because queueing reverses the
3110 for (i
= cwd_n_used
; i
-- != 0; )
3112 struct fileinfo
*f
= sorted_file
[i
];
3114 if (is_directory (f
)
3115 && (! ignore_dot_and_dot_dot
3116 || ! basename_is_dot_or_dotdot (f
->name
)))
3118 if (!dirname
|| f
->name
[0] == '/')
3119 queue_directory (f
->name
, f
->linkname
, command_line_arg
);
3122 char *name
= file_name_concat (dirname
, f
->name
, NULL
);
3123 queue_directory (name
, f
->linkname
, command_line_arg
);
3126 if (f
->filetype
== arg_directory
)
3131 /* Now delete the directories from the table, compacting all the remaining
3134 for (i
= 0, j
= 0; i
< cwd_n_used
; i
++)
3136 struct fileinfo
*f
= sorted_file
[i
];
3138 j
+= (f
->filetype
!= arg_directory
);
3143 /* Use strcoll to compare strings in this locale. If an error occurs,
3144 report an error and longjmp to failed_strcoll. */
3146 static jmp_buf failed_strcoll
;
3149 xstrcoll (char const *a
, char const *b
)
3153 diff
= strcoll (a
, b
);
3156 error (0, errno
, _("cannot compare file names %s and %s"),
3157 quote_n (0, a
), quote_n (1, b
));
3158 set_exit_status (false);
3159 longjmp (failed_strcoll
, 1);
3164 /* Comparison routines for sorting the files. */
3166 typedef void const *V
;
3167 typedef int (*qsortFunc
)(V a
, V b
);
3169 /* Used below in DEFINE_SORT_FUNCTIONS for _df_ sort function variants.
3170 The do { ... } while(0) makes it possible to use the macro more like
3171 a statement, without violating C89 rules: */
3172 #define DIRFIRST_CHECK(a, b) \
3175 bool a_is_dir = is_directory ((struct fileinfo const *) a); \
3176 bool b_is_dir = is_directory ((struct fileinfo const *) b); \
3177 if (a_is_dir && !b_is_dir) \
3178 return -1; /* a goes before b */ \
3179 if (!a_is_dir && b_is_dir) \
3180 return 1; /* b goes before a */ \
3184 /* Define the 8 different sort function variants required for each sortkey.
3185 KEY_NAME is a token describing the sort key, e.g., ctime, atime, size.
3186 KEY_CMP_FUNC is a function to compare records based on that key, e.g.,
3187 ctime_cmp, atime_cmp, size_cmp. Append KEY_NAME to the string,
3188 '[rev_][x]str{cmp|coll}[_df]_', to create each function name. */
3189 #define DEFINE_SORT_FUNCTIONS(key_name, key_cmp_func) \
3190 /* direct, non-dirfirst versions */ \
3191 static int xstrcoll_##key_name (V a, V b) \
3192 { return key_cmp_func (a, b, xstrcoll); } \
3193 static int strcmp_##key_name (V a, V b) \
3194 { return key_cmp_func (a, b, strcmp); } \
3196 /* reverse, non-dirfirst versions */ \
3197 static int rev_xstrcoll_##key_name (V a, V b) \
3198 { return key_cmp_func (b, a, xstrcoll); } \
3199 static int rev_strcmp_##key_name (V a, V b) \
3200 { return key_cmp_func (b, a, strcmp); } \
3202 /* direct, dirfirst versions */ \
3203 static int xstrcoll_df_##key_name (V a, V b) \
3204 { DIRFIRST_CHECK (a, b); return key_cmp_func (a, b, xstrcoll); } \
3205 static int strcmp_df_##key_name (V a, V b) \
3206 { DIRFIRST_CHECK (a, b); return key_cmp_func (a, b, strcmp); } \
3208 /* reverse, dirfirst versions */ \
3209 static int rev_xstrcoll_df_##key_name (V a, V b) \
3210 { DIRFIRST_CHECK (a, b); return key_cmp_func (b, a, xstrcoll); } \
3211 static int rev_strcmp_df_##key_name (V a, V b) \
3212 { DIRFIRST_CHECK (a, b); return key_cmp_func (b, a, strcmp); }
3215 cmp_ctime (struct fileinfo
const *a
, struct fileinfo
const *b
,
3216 int (*cmp
) (char const *, char const *))
3218 int diff
= timespec_cmp (get_stat_ctime (&b
->stat
),
3219 get_stat_ctime (&a
->stat
));
3220 return diff
? diff
: cmp (a
->name
, b
->name
);
3224 cmp_mtime (struct fileinfo
const *a
, struct fileinfo
const *b
,
3225 int (*cmp
) (char const *, char const *))
3227 int diff
= timespec_cmp (get_stat_mtime (&b
->stat
),
3228 get_stat_mtime (&a
->stat
));
3229 return diff
? diff
: cmp (a
->name
, b
->name
);
3233 cmp_atime (struct fileinfo
const *a
, struct fileinfo
const *b
,
3234 int (*cmp
) (char const *, char const *))
3236 int diff
= timespec_cmp (get_stat_atime (&b
->stat
),
3237 get_stat_atime (&a
->stat
));
3238 return diff
? diff
: cmp (a
->name
, b
->name
);
3242 cmp_size (struct fileinfo
const *a
, struct fileinfo
const *b
,
3243 int (*cmp
) (char const *, char const *))
3245 int diff
= longdiff (b
->stat
.st_size
, a
->stat
.st_size
);
3246 return diff
? diff
: cmp (a
->name
, b
->name
);
3250 cmp_name (struct fileinfo
const *a
, struct fileinfo
const *b
,
3251 int (*cmp
) (char const *, char const *))
3253 return cmp (a
->name
, b
->name
);
3256 /* Compare file extensions. Files with no extension are `smallest'.
3257 If extensions are the same, compare by filenames instead. */
3260 cmp_extension (struct fileinfo
const *a
, struct fileinfo
const *b
,
3261 int (*cmp
) (char const *, char const *))
3263 char const *base1
= strrchr (a
->name
, '.');
3264 char const *base2
= strrchr (b
->name
, '.');
3265 int diff
= cmp (base1
? base1
: "", base2
? base2
: "");
3266 return diff
? diff
: cmp (a
->name
, b
->name
);
3269 DEFINE_SORT_FUNCTIONS (ctime
, cmp_ctime
)
3270 DEFINE_SORT_FUNCTIONS (mtime
, cmp_mtime
)
3271 DEFINE_SORT_FUNCTIONS (atime
, cmp_atime
)
3272 DEFINE_SORT_FUNCTIONS (size
, cmp_size
)
3273 DEFINE_SORT_FUNCTIONS (name
, cmp_name
)
3274 DEFINE_SORT_FUNCTIONS (extension
, cmp_extension
)
3276 /* Compare file versions.
3277 Unlike all other compare functions above, cmp_version depends only
3278 on filevercmp, which does not fail (even for locale reasons), and does not
3279 need a secondary sort key. See lib/filevercmp.h for function description.
3281 All the other sort options, in fact, need xstrcoll and strcmp variants,
3282 because they all use a string comparison (either as the primary or secondary
3283 sort key), and xstrcoll has the ability to do a longjmp if strcoll fails for
3284 locale reasons. Lastly, filevercmp is ALWAYS available with gnulib. */
3286 cmp_version (struct fileinfo
const *a
, struct fileinfo
const *b
)
3288 return filevercmp (a
->name
, b
->name
);
3291 static int xstrcoll_version (V a
, V b
)
3292 { return cmp_version (a
, b
); }
3293 static int rev_xstrcoll_version (V a
, V b
)
3294 { return cmp_version (b
, a
); }
3295 static int xstrcoll_df_version (V a
, V b
)
3296 { DIRFIRST_CHECK (a
, b
); return cmp_version (a
, b
); }
3297 static int rev_xstrcoll_df_version (V a
, V b
)
3298 { DIRFIRST_CHECK (a
, b
); return cmp_version (b
, a
); }
3301 /* We have 2^3 different variants for each sortkey function
3302 (for 3 independent sort modes).
3303 The function pointers stored in this array must be dereferenced as:
3305 sort_variants[sort_key][use_strcmp][reverse][dirs_first]
3307 Note that the order in which sortkeys are listed in the function pointer
3308 array below is defined by the order of the elements in the time_type and
3311 #define LIST_SORTFUNCTION_VARIANTS(key_name) \
3314 { xstrcoll_##key_name, xstrcoll_df_##key_name }, \
3315 { rev_xstrcoll_##key_name, rev_xstrcoll_df_##key_name }, \
3318 { strcmp_##key_name, strcmp_df_##key_name }, \
3319 { rev_strcmp_##key_name, rev_strcmp_df_##key_name }, \
3323 static qsortFunc
const sort_functions
[][2][2][2] =
3325 LIST_SORTFUNCTION_VARIANTS (name
),
3326 LIST_SORTFUNCTION_VARIANTS (extension
),
3327 LIST_SORTFUNCTION_VARIANTS (size
),
3331 { xstrcoll_version
, xstrcoll_df_version
},
3332 { rev_xstrcoll_version
, rev_xstrcoll_df_version
},
3335 /* We use NULL for the strcmp variants of version comparison
3336 since as explained in cmp_version definition, version comparison
3337 does not rely on xstrcoll, so it will never longjmp, and never
3338 need to try the strcmp fallback. */
3345 /* last are time sort functions */
3346 LIST_SORTFUNCTION_VARIANTS (mtime
),
3347 LIST_SORTFUNCTION_VARIANTS (ctime
),
3348 LIST_SORTFUNCTION_VARIANTS (atime
)
3351 /* The number of sortkeys is calculated as
3352 the number of elements in the sort_type enum (i.e. sort_numtypes) +
3353 the number of elements in the time_type enum (i.e. time_numtypes) - 1
3354 This is because when sort_type==sort_time, we have up to
3355 time_numtypes possible sortkeys.
3357 This line verifies at compile-time that the array of sort functions has been
3358 initialized for all possible sortkeys. */
3359 verify (ARRAY_CARDINALITY (sort_functions
)
3360 == sort_numtypes
+ time_numtypes
- 1 );
3362 /* Set up SORTED_FILE to point to the in-use entries in CWD_FILE, in order. */
3365 initialize_ordering_vector (void)
3368 for (i
= 0; i
< cwd_n_used
; i
++)
3369 sorted_file
[i
] = &cwd_file
[i
];
3372 /* Sort the files now in the table. */
3379 if (sorted_file_alloc
< cwd_n_used
+ cwd_n_used
/ 2)
3382 sorted_file
= xnmalloc (cwd_n_used
, 3 * sizeof *sorted_file
);
3383 sorted_file_alloc
= 3 * cwd_n_used
;
3386 initialize_ordering_vector ();
3388 if (sort_type
== sort_none
)
3391 /* Try strcoll. If it fails, fall back on strcmp. We can't safely
3392 ignore strcoll failures, as a failing strcoll might be a
3393 comparison function that is not a total order, and if we ignored
3394 the failure this might cause qsort to dump core. */
3396 if (! setjmp (failed_strcoll
))
3397 use_strcmp
= false; /* strcoll() succeeded */
3401 assert (sort_type
!= sort_version
);
3402 initialize_ordering_vector ();
3405 /* When sort_type == sort_time, use time_type as subindex. */
3406 mpsort ((void const **) sorted_file
, cwd_n_used
,
3407 sort_functions
[sort_type
+ (sort_type
== sort_time
? time_type
: 0)]
3408 [use_strcmp
][sort_reverse
]
3409 [directories_first
]);
3412 /* List all the files now in the table. */
3415 print_current_files (void)
3422 for (i
= 0; i
< cwd_n_used
; i
++)
3424 print_file_name_and_frills (sorted_file
[i
], 0);
3430 print_many_per_line ();
3434 print_horizontal ();
3438 print_with_commas ();
3442 for (i
= 0; i
< cwd_n_used
; i
++)
3444 set_normal_color ();
3445 print_long_format (sorted_file
[i
]);
3446 DIRED_PUTCHAR ('\n');
3452 /* Replace the first %b with precomputed aligned month names.
3453 Note on glibc-2.7 at least, this speeds up the whole `ls -lU`
3454 process by around 17%, compared to letting strftime() handle the %b. */
3457 align_nstrftime (char *buf
, size_t size
, char const *fmt
, struct tm
const *tm
,
3458 int __utc
, int __ns
)
3460 const char *nfmt
= fmt
;
3461 /* In the unlikely event that rpl_fmt below is not large enough,
3462 the replacement is not done. A malloc here slows ls down by 2% */
3463 char rpl_fmt
[sizeof (abmon
[0]) + 100];
3465 if (required_mon_width
&& (pb
= strstr (fmt
, "%b")))
3467 if (strlen (fmt
) < (sizeof (rpl_fmt
) - sizeof (abmon
[0]) + 2))
3469 char *pfmt
= rpl_fmt
;
3472 pfmt
= mempcpy (pfmt
, fmt
, pb
- fmt
);
3473 pfmt
= stpcpy (pfmt
, abmon
[tm
->tm_mon
]);
3474 strcpy (pfmt
, pb
+ 2);
3477 size_t ret
= nstrftime (buf
, size
, nfmt
, tm
, __utc
, __ns
);
3481 /* Return the expected number of columns in a long-format time stamp,
3482 or zero if it cannot be calculated. */
3485 long_time_expected_width (void)
3487 static int width
= -1;
3492 struct tm
const *tm
= localtime (&epoch
);
3493 char buf
[TIME_STAMP_LEN_MAXIMUM
+ 1];
3495 /* In case you're wondering if localtime can fail with an input time_t
3496 value of 0, let's just say it's very unlikely, but not inconceivable.
3497 The TZ environment variable would have to specify a time zone that
3498 is 2**31-1900 years or more ahead of UTC. This could happen only on
3499 a 64-bit system that blindly accepts e.g., TZ=UTC+20000000000000.
3500 However, this is not possible with Solaris 10 or glibc-2.3.5, since
3501 their implementations limit the offset to 167:59 and 24:00, resp. */
3505 align_nstrftime (buf
, sizeof buf
, long_time_format
[0], tm
, 0, 0);
3507 width
= mbsnwidth (buf
, len
, 0);
3517 /* Print the user or group name NAME, with numeric id ID, using a
3518 print width of WIDTH columns. */
3521 format_user_or_group (char const *name
, unsigned long int id
, int width
)
3527 int width_gap
= width
- mbswidth (name
, 0);
3528 int pad
= MAX (0, width_gap
);
3529 fputs (name
, stdout
);
3530 len
= strlen (name
) + pad
;
3538 printf ("%*lu ", width
, id
);
3542 dired_pos
+= len
+ 1;
3545 /* Print the name or id of the user with id U, using a print width of
3549 format_user (uid_t u
, int width
, bool stat_ok
)
3551 format_user_or_group (! stat_ok
? "?" :
3552 (numeric_ids
? NULL
: getuser (u
)), u
, width
);
3555 /* Likewise, for groups. */
3558 format_group (gid_t g
, int width
, bool stat_ok
)
3560 format_user_or_group (! stat_ok
? "?" :
3561 (numeric_ids
? NULL
: getgroup (g
)), g
, width
);
3564 /* Return the number of columns that format_user_or_group will print. */
3567 format_user_or_group_width (char const *name
, unsigned long int id
)
3571 int len
= mbswidth (name
, 0);
3572 return MAX (0, len
);
3576 char buf
[INT_BUFSIZE_BOUND (id
)];
3577 sprintf (buf
, "%lu", id
);
3578 return strlen (buf
);
3582 /* Return the number of columns that format_user will print. */
3585 format_user_width (uid_t u
)
3587 return format_user_or_group_width (numeric_ids
? NULL
: getuser (u
), u
);
3590 /* Likewise, for groups. */
3593 format_group_width (gid_t g
)
3595 return format_user_or_group_width (numeric_ids
? NULL
: getgroup (g
), g
);
3598 /* Return a pointer to a formatted version of F->stat.st_ino,
3599 possibly using buffer, BUF, of length BUFLEN, which must be at least
3600 INT_BUFSIZE_BOUND (uintmax_t) bytes. */
3602 format_inode (char *buf
, size_t buflen
, const struct fileinfo
*f
)
3604 assert (INT_BUFSIZE_BOUND (uintmax_t) <= buflen
);
3605 return (f
->stat_ok
&& f
->stat
.st_ino
!= NOT_AN_INODE_NUMBER
3606 ? umaxtostr (f
->stat
.st_ino
, buf
)
3610 /* Print information about F in long format. */
3612 print_long_format (const struct fileinfo
*f
)
3616 [LONGEST_HUMAN_READABLE
+ 1 /* inode */
3617 + LONGEST_HUMAN_READABLE
+ 1 /* size in blocks */
3618 + sizeof (modebuf
) - 1 + 1 /* mode string */
3619 + INT_BUFSIZE_BOUND (uintmax_t) /* st_nlink */
3620 + LONGEST_HUMAN_READABLE
+ 2 /* major device number */
3621 + LONGEST_HUMAN_READABLE
+ 1 /* minor device number */
3622 + TIME_STAMP_LEN_MAXIMUM
+ 1 /* max length of time/date */
3626 struct timespec when_timespec
;
3627 struct tm
*when_local
;
3629 /* Compute the mode string, except remove the trailing space if no
3630 file in this directory has an ACL or SELinux security context. */
3632 filemodestring (&f
->stat
, modebuf
);
3635 modebuf
[0] = filetype_letter
[f
->filetype
];
3636 memset (modebuf
+ 1, '?', 10);
3641 else if (f
->acl_type
== ACL_T_SELINUX_ONLY
)
3643 else if (f
->acl_type
== ACL_T_YES
)
3649 when_timespec
= get_stat_ctime (&f
->stat
);
3652 when_timespec
= get_stat_mtime (&f
->stat
);
3655 when_timespec
= get_stat_atime (&f
->stat
);
3665 char hbuf
[INT_BUFSIZE_BOUND (uintmax_t)];
3666 sprintf (p
, "%*s ", inode_number_width
,
3667 format_inode (hbuf
, sizeof hbuf
, f
));
3668 /* Increment by strlen (p) here, rather than by inode_number_width + 1.
3669 The latter is wrong when inode_number_width is zero. */
3673 if (print_block_size
)
3675 char hbuf
[LONGEST_HUMAN_READABLE
+ 1];
3676 char const *blocks
=
3679 : human_readable (ST_NBLOCKS (f
->stat
), hbuf
, human_output_opts
,
3680 ST_NBLOCKSIZE
, output_block_size
));
3682 for (pad
= block_size_width
- mbswidth (blocks
, 0); 0 < pad
; pad
--)
3684 while ((*p
++ = *blocks
++))
3689 /* The last byte of the mode string is the POSIX
3690 "optional alternate access method flag". */
3692 char hbuf
[INT_BUFSIZE_BOUND (uintmax_t)];
3693 sprintf (p
, "%s %*s ", modebuf
, nlink_width
,
3694 ! f
->stat_ok
? "?" : umaxtostr (f
->stat
.st_nlink
, hbuf
));
3696 /* Increment by strlen (p) here, rather than by, e.g.,
3697 sizeof modebuf - 2 + any_has_acl + 1 + nlink_width + 1.
3698 The latter is wrong when nlink_width is zero. */
3703 if (print_owner
|| print_group
|| print_author
|| print_scontext
)
3705 DIRED_FPUTS (buf
, stdout
, p
- buf
);
3708 format_user (f
->stat
.st_uid
, owner_width
, f
->stat_ok
);
3711 format_group (f
->stat
.st_gid
, group_width
, f
->stat_ok
);
3714 format_user (f
->stat
.st_author
, author_width
, f
->stat_ok
);
3717 format_user_or_group (f
->scontext
, 0, scontext_width
);
3723 && (S_ISCHR (f
->stat
.st_mode
) || S_ISBLK (f
->stat
.st_mode
)))
3725 char majorbuf
[INT_BUFSIZE_BOUND (uintmax_t)];
3726 char minorbuf
[INT_BUFSIZE_BOUND (uintmax_t)];
3727 int blanks_width
= (file_size_width
3728 - (major_device_number_width
+ 2
3729 + minor_device_number_width
));
3730 sprintf (p
, "%*s, %*s ",
3731 major_device_number_width
+ MAX (0, blanks_width
),
3732 umaxtostr (major (f
->stat
.st_rdev
), majorbuf
),
3733 minor_device_number_width
,
3734 umaxtostr (minor (f
->stat
.st_rdev
), minorbuf
));
3735 p
+= file_size_width
+ 1;
3739 char hbuf
[LONGEST_HUMAN_READABLE
+ 1];
3743 : human_readable (unsigned_file_size (f
->stat
.st_size
),
3744 hbuf
, human_output_opts
, 1, file_output_block_size
));
3746 for (pad
= file_size_width
- mbswidth (size
, 0); 0 < pad
; pad
--)
3748 while ((*p
++ = *size
++))
3753 when_local
= localtime (&when_timespec
.tv_sec
);
3757 if (f
->stat_ok
&& when_local
)
3759 struct timespec six_months_ago
;
3763 /* If the file appears to be in the future, update the current
3764 time, in case the file happens to have been modified since
3765 the last time we checked the clock. */
3766 if (timespec_cmp (current_time
, when_timespec
) < 0)
3768 /* Note that gettime may call gettimeofday which, on some non-
3769 compliant systems, clobbers the buffer used for localtime's result.
3770 But it's ok here, because we use a gettimeofday wrapper that
3771 saves and restores the buffer around the gettimeofday call. */
3772 gettime (¤t_time
);
3775 /* Consider a time to be recent if it is within the past six
3776 months. A Gregorian year has 365.2425 * 24 * 60 * 60 ==
3777 31556952 seconds on the average. Write this value as an
3778 integer constant to avoid floating point hassles. */
3779 six_months_ago
.tv_sec
= current_time
.tv_sec
- 31556952 / 2;
3780 six_months_ago
.tv_nsec
= current_time
.tv_nsec
;
3782 recent
= (timespec_cmp (six_months_ago
, when_timespec
) < 0
3783 && (timespec_cmp (when_timespec
, current_time
) < 0));
3784 fmt
= long_time_format
[recent
];
3786 /* We assume here that all time zones are offset from UTC by a
3787 whole number of seconds. */
3788 s
= align_nstrftime (p
, TIME_STAMP_LEN_MAXIMUM
+ 1, fmt
,
3789 when_local
, 0, when_timespec
.tv_nsec
);
3797 /* NUL-terminate the string -- fputs (via DIRED_FPUTS) requires it. */
3802 /* The time cannot be converted using the desired format, so
3803 print it as a huge integer number of seconds. */
3804 char hbuf
[INT_BUFSIZE_BOUND (intmax_t)];
3805 sprintf (p
, "%*s ", long_time_expected_width (),
3808 : timetostr (when_timespec
.tv_sec
, hbuf
)));
3809 /* FIXME: (maybe) We discarded when_timespec.tv_nsec. */
3813 DIRED_FPUTS (buf
, stdout
, p
- buf
);
3814 size_t w
= print_name_with_quoting (f
, false, &dired_obstack
, p
- buf
);
3816 if (f
->filetype
== symbolic_link
)
3820 DIRED_FPUTS_LITERAL (" -> ", stdout
);
3821 print_name_with_quoting (f
, true, NULL
, (p
- buf
) + w
+ 4);
3822 if (indicator_style
!= none
)
3823 print_type_indicator (true, f
->linkmode
, unknown
);
3826 else if (indicator_style
!= none
)
3827 print_type_indicator (f
->stat_ok
, f
->stat
.st_mode
, f
->filetype
);
3830 /* Output to OUT a quoted representation of the file name NAME,
3831 using OPTIONS to control quoting. Produce no output if OUT is NULL.
3832 Store the number of screen columns occupied by NAME's quoted
3833 representation into WIDTH, if non-NULL. Return the number of bytes
3837 quote_name (FILE *out
, const char *name
, struct quoting_options
const *options
,
3840 char smallbuf
[BUFSIZ
];
3841 size_t len
= quotearg_buffer (smallbuf
, sizeof smallbuf
, name
, -1, options
);
3843 size_t displayed_width
IF_LINT ( = 0);
3845 if (len
< sizeof smallbuf
)
3849 buf
= alloca (len
+ 1);
3850 quotearg_buffer (buf
, len
+ 1, name
, -1, options
);
3853 if (qmark_funny_chars
)
3857 char const *p
= buf
;
3858 char const *plimit
= buf
+ len
;
3860 displayed_width
= 0;
3865 case ' ': case '!': case '"': case '#': case '%':
3866 case '&': case '\'': case '(': case ')': case '*':
3867 case '+': case ',': case '-': case '.': case '/':
3868 case '0': case '1': case '2': case '3': case '4':
3869 case '5': case '6': case '7': case '8': case '9':
3870 case ':': case ';': case '<': case '=': case '>':
3872 case 'A': case 'B': case 'C': case 'D': case 'E':
3873 case 'F': case 'G': case 'H': case 'I': case 'J':
3874 case 'K': case 'L': case 'M': case 'N': case 'O':
3875 case 'P': case 'Q': case 'R': case 'S': case 'T':
3876 case 'U': case 'V': case 'W': case 'X': case 'Y':
3878 case '[': case '\\': case ']': case '^': case '_':
3879 case 'a': case 'b': case 'c': case 'd': case 'e':
3880 case 'f': case 'g': case 'h': case 'i': case 'j':
3881 case 'k': case 'l': case 'm': case 'n': case 'o':
3882 case 'p': case 'q': case 'r': case 's': case 't':
3883 case 'u': case 'v': case 'w': case 'x': case 'y':
3884 case 'z': case '{': case '|': case '}': case '~':
3885 /* These characters are printable ASCII characters. */
3887 displayed_width
+= 1;
3890 /* If we have a multibyte sequence, copy it until we
3891 reach its end, replacing each non-printable multibyte
3892 character with a single question mark. */
3894 DECLARE_ZEROED_AGGREGATE (mbstate_t, mbstate
);
3901 bytes
= mbrtowc (&wc
, p
, plimit
- p
, &mbstate
);
3903 if (bytes
== (size_t) -1)
3905 /* An invalid multibyte sequence was
3906 encountered. Skip one input byte, and
3907 put a question mark. */
3910 displayed_width
+= 1;
3914 if (bytes
== (size_t) -2)
3916 /* An incomplete multibyte character
3917 at the end. Replace it entirely with
3921 displayed_width
+= 1;
3926 /* A null wide character was encountered. */
3932 /* A printable multibyte character.
3934 for (; bytes
> 0; --bytes
)
3936 displayed_width
+= w
;
3940 /* An unprintable multibyte character.
3941 Replace it entirely with a question
3945 displayed_width
+= 1;
3948 while (! mbsinit (&mbstate
));
3953 /* The buffer may have shrunk. */
3959 char const *plimit
= buf
+ len
;
3963 if (! isprint (to_uchar (*p
)))
3967 displayed_width
= len
;
3970 else if (width
!= NULL
)
3973 displayed_width
= mbsnwidth (buf
, len
, 0);
3976 char const *p
= buf
;
3977 char const *plimit
= buf
+ len
;
3979 displayed_width
= 0;
3982 if (isprint (to_uchar (*p
)))
3990 fwrite (buf
, 1, len
, out
);
3992 *width
= displayed_width
;
3997 print_name_with_quoting (const struct fileinfo
*f
,
3998 bool symlink_target
,
3999 struct obstack
*stack
,
4002 const char* name
= symlink_target
? f
->linkname
: f
->name
;
4004 bool used_color_this_time
4006 && (print_color_indicator (f
, symlink_target
)
4007 || is_colored (C_NORM
)));
4010 PUSH_CURRENT_DIRED_POS (stack
);
4012 size_t width
= quote_name (stdout
, name
, filename_quoting_options
, NULL
);
4016 PUSH_CURRENT_DIRED_POS (stack
);
4018 if (used_color_this_time
)
4021 prep_non_filename_text ();
4022 if (start_col
/ line_length
!= (start_col
+ width
- 1) / line_length
)
4023 put_indicator (&color_indicator
[C_CLR_TO_EOL
]);
4030 prep_non_filename_text (void)
4032 if (color_indicator
[C_END
].string
!= NULL
)
4033 put_indicator (&color_indicator
[C_END
]);
4036 put_indicator (&color_indicator
[C_LEFT
]);
4037 put_indicator (&color_indicator
[C_RESET
]);
4038 put_indicator (&color_indicator
[C_RIGHT
]);
4042 /* Print the file name of `f' with appropriate quoting.
4043 Also print file size, inode number, and filetype indicator character,
4044 as requested by switches. */
4047 print_file_name_and_frills (const struct fileinfo
*f
, size_t start_col
)
4049 char buf
[MAX (LONGEST_HUMAN_READABLE
+ 1, INT_BUFSIZE_BOUND (uintmax_t))];
4051 set_normal_color ();
4054 printf ("%*s ", format
== with_commas
? 0 : inode_number_width
,
4055 format_inode (buf
, sizeof buf
, f
));
4057 if (print_block_size
)
4058 printf ("%*s ", format
== with_commas
? 0 : block_size_width
,
4060 : human_readable (ST_NBLOCKS (f
->stat
), buf
, human_output_opts
,
4061 ST_NBLOCKSIZE
, output_block_size
));
4064 printf ("%*s ", format
== with_commas
? 0 : scontext_width
, f
->scontext
);
4066 size_t width
= print_name_with_quoting (f
, false, NULL
, start_col
);
4068 if (indicator_style
!= none
)
4069 width
+= print_type_indicator (f
->stat_ok
, f
->stat
.st_mode
, f
->filetype
);
4074 /* Given these arguments describing a file, return the single-byte
4075 type indicator, or 0. */
4077 get_type_indicator (bool stat_ok
, mode_t mode
, enum filetype type
)
4081 if (stat_ok
? S_ISREG (mode
) : type
== normal
)
4083 if (stat_ok
&& indicator_style
== classify
&& (mode
& S_IXUGO
))
4090 if (stat_ok
? S_ISDIR (mode
) : type
== directory
|| type
== arg_directory
)
4092 else if (indicator_style
== slash
)
4094 else if (stat_ok
? S_ISLNK (mode
) : type
== symbolic_link
)
4096 else if (stat_ok
? S_ISFIFO (mode
) : type
== fifo
)
4098 else if (stat_ok
? S_ISSOCK (mode
) : type
== sock
)
4100 else if (stat_ok
&& S_ISDOOR (mode
))
4109 print_type_indicator (bool stat_ok
, mode_t mode
, enum filetype type
)
4111 char c
= get_type_indicator (stat_ok
, mode
, type
);
4117 /* Returns whether any color sequence was printed. */
4119 print_color_indicator (const struct fileinfo
*f
, bool symlink_target
)
4121 enum indicator_no type
;
4122 struct color_ext_type
*ext
; /* Color extension */
4123 size_t len
; /* Length of name */
4132 linkok
= f
->linkok
- 1;
4137 mode
= FILE_OR_LINK_MODE (f
);
4141 /* Is this a nonexistent file? If so, linkok == -1. */
4143 if (linkok
== -1 && color_indicator
[C_MISSING
].string
!= NULL
)
4145 else if (!f
->stat_ok
)
4147 static enum indicator_no filetype_indicator
[] = FILETYPE_INDICATORS
;
4148 type
= filetype_indicator
[f
->filetype
];
4156 if ((mode
& S_ISUID
) != 0 && is_colored (C_SETUID
))
4158 else if ((mode
& S_ISGID
) != 0 && is_colored (C_SETGID
))
4160 else if (is_colored (C_CAP
) && f
->has_capability
)
4162 else if ((mode
& S_IXUGO
) != 0 && is_colored (C_EXEC
))
4164 else if ((1 < f
->stat
.st_nlink
) && is_colored (C_MULTIHARDLINK
))
4165 type
= C_MULTIHARDLINK
;
4167 else if (S_ISDIR (mode
))
4171 if ((mode
& S_ISVTX
) && (mode
& S_IWOTH
)
4172 && is_colored (C_STICKY_OTHER_WRITABLE
))
4173 type
= C_STICKY_OTHER_WRITABLE
;
4174 else if ((mode
& S_IWOTH
) != 0 && is_colored (C_OTHER_WRITABLE
))
4175 type
= C_OTHER_WRITABLE
;
4176 else if ((mode
& S_ISVTX
) != 0 && is_colored (C_STICKY
))
4179 else if (S_ISLNK (mode
))
4181 && (!strncmp (color_indicator
[C_LINK
].string
, "target", 6)
4182 || color_indicator
[C_ORPHAN
].string
))
4183 ? C_ORPHAN
: C_LINK
);
4184 else if (S_ISFIFO (mode
))
4186 else if (S_ISSOCK (mode
))
4188 else if (S_ISBLK (mode
))
4190 else if (S_ISCHR (mode
))
4192 else if (S_ISDOOR (mode
))
4196 /* Classify a file of some other type as C_ORPHAN. */
4201 /* Check the file's suffix only if still classified as C_FILE. */
4205 /* Test if NAME has a recognized suffix. */
4207 len
= strlen (name
);
4208 name
+= len
; /* Pointer to final \0. */
4209 for (ext
= color_ext_list
; ext
!= NULL
; ext
= ext
->next
)
4211 if (ext
->ext
.len
<= len
4212 && strncmp (name
- ext
->ext
.len
, ext
->ext
.string
,
4219 const struct bin_str
*const s
4220 = ext
? &(ext
->seq
) : &color_indicator
[type
];
4221 if (s
->string
!= NULL
)
4223 /* Need to reset so not dealing with attribute combinations */
4224 if (is_colored (C_NORM
))
4225 restore_default_color ();
4226 put_indicator (&color_indicator
[C_LEFT
]);
4228 put_indicator (&color_indicator
[C_RIGHT
]);
4236 /* Output a color indicator (which may contain nulls). */
4238 put_indicator (const struct bin_str
*ind
)
4243 prep_non_filename_text ();
4246 fwrite (ind
->string
, ind
->len
, 1, stdout
);
4250 length_of_file_name_and_frills (const struct fileinfo
*f
)
4254 char buf
[MAX (LONGEST_HUMAN_READABLE
+ 1, INT_BUFSIZE_BOUND (uintmax_t))];
4257 len
+= 1 + (format
== with_commas
4258 ? strlen (umaxtostr (f
->stat
.st_ino
, buf
))
4259 : inode_number_width
);
4261 if (print_block_size
)
4262 len
+= 1 + (format
== with_commas
4263 ? strlen (! f
->stat_ok
? "?"
4264 : human_readable (ST_NBLOCKS (f
->stat
), buf
,
4265 human_output_opts
, ST_NBLOCKSIZE
,
4267 : block_size_width
);
4270 len
+= 1 + (format
== with_commas
? strlen (f
->scontext
) : scontext_width
);
4272 quote_name (NULL
, f
->name
, filename_quoting_options
, &name_width
);
4275 if (indicator_style
!= none
)
4277 char c
= get_type_indicator (f
->stat_ok
, f
->stat
.st_mode
, f
->filetype
);
4285 print_many_per_line (void)
4287 size_t row
; /* Current row. */
4288 size_t cols
= calculate_columns (true);
4289 struct column_info
const *line_fmt
= &column_info
[cols
- 1];
4291 /* Calculate the number of rows that will be in each column except possibly
4292 for a short column on the right. */
4293 size_t rows
= cwd_n_used
/ cols
+ (cwd_n_used
% cols
!= 0);
4295 for (row
= 0; row
< rows
; row
++)
4298 size_t filesno
= row
;
4301 /* Print the next row. */
4304 struct fileinfo
const *f
= sorted_file
[filesno
];
4305 size_t name_length
= length_of_file_name_and_frills (f
);
4306 size_t max_name_length
= line_fmt
->col_arr
[col
++];
4307 print_file_name_and_frills (f
, pos
);
4310 if (filesno
>= cwd_n_used
)
4313 indent (pos
+ name_length
, pos
+ max_name_length
);
4314 pos
+= max_name_length
;
4321 print_horizontal (void)
4325 size_t cols
= calculate_columns (false);
4326 struct column_info
const *line_fmt
= &column_info
[cols
- 1];
4327 struct fileinfo
const *f
= sorted_file
[0];
4328 size_t name_length
= length_of_file_name_and_frills (f
);
4329 size_t max_name_length
= line_fmt
->col_arr
[0];
4331 /* Print first entry. */
4332 print_file_name_and_frills (f
, 0);
4335 for (filesno
= 1; filesno
< cwd_n_used
; ++filesno
)
4337 size_t col
= filesno
% cols
;
4346 indent (pos
+ name_length
, pos
+ max_name_length
);
4347 pos
+= max_name_length
;
4350 f
= sorted_file
[filesno
];
4351 print_file_name_and_frills (f
, pos
);
4353 name_length
= length_of_file_name_and_frills (f
);
4354 max_name_length
= line_fmt
->col_arr
[col
];
4360 print_with_commas (void)
4365 for (filesno
= 0; filesno
< cwd_n_used
; filesno
++)
4367 struct fileinfo
const *f
= sorted_file
[filesno
];
4368 size_t len
= length_of_file_name_and_frills (f
);
4374 if (pos
+ len
+ 2 < line_length
)
4386 putchar (separator
);
4389 print_file_name_and_frills (f
, pos
);
4395 /* Assuming cursor is at position FROM, indent up to position TO.
4396 Use a TAB character instead of two or more spaces whenever possible. */
4399 indent (size_t from
, size_t to
)
4403 if (tabsize
!= 0 && to
/ tabsize
> (from
+ 1) / tabsize
)
4406 from
+= tabsize
- from
% tabsize
;
4416 /* Put DIRNAME/NAME into DEST, handling `.' and `/' properly. */
4417 /* FIXME: maybe remove this function someday. See about using a
4418 non-malloc'ing version of file_name_concat. */
4421 attach (char *dest
, const char *dirname
, const char *name
)
4423 const char *dirnamep
= dirname
;
4425 /* Copy dirname if it is not ".". */
4426 if (dirname
[0] != '.' || dirname
[1] != 0)
4429 *dest
++ = *dirnamep
++;
4430 /* Add '/' if `dirname' doesn't already end with it. */
4431 if (dirnamep
> dirname
&& dirnamep
[-1] != '/')
4439 /* Allocate enough column info suitable for the current number of
4440 files and display columns, and initialize the info to represent the
4441 narrowest possible columns. */
4444 init_column_info (void)
4447 size_t max_cols
= MIN (max_idx
, cwd_n_used
);
4449 /* Currently allocated columns in column_info. */
4450 static size_t column_info_alloc
;
4452 if (column_info_alloc
< max_cols
)
4454 size_t new_column_info_alloc
;
4457 if (max_cols
< max_idx
/ 2)
4459 /* The number of columns is far less than the display width
4460 allows. Grow the allocation, but only so that it's
4461 double the current requirements. If the display is
4462 extremely wide, this avoids allocating a lot of memory
4463 that is never needed. */
4464 column_info
= xnrealloc (column_info
, max_cols
,
4465 2 * sizeof *column_info
);
4466 new_column_info_alloc
= 2 * max_cols
;
4470 column_info
= xnrealloc (column_info
, max_idx
, sizeof *column_info
);
4471 new_column_info_alloc
= max_idx
;
4474 /* Allocate the new size_t objects by computing the triangle
4475 formula n * (n + 1) / 2, except that we don't need to
4476 allocate the part of the triangle that we've already
4477 allocated. Check for address arithmetic overflow. */
4479 size_t column_info_growth
= new_column_info_alloc
- column_info_alloc
;
4480 size_t s
= column_info_alloc
+ 1 + new_column_info_alloc
;
4481 size_t t
= s
* column_info_growth
;
4482 if (s
< new_column_info_alloc
|| t
/ column_info_growth
!= s
)
4484 p
= xnmalloc (t
/ 2, sizeof *p
);
4487 /* Grow the triangle by parceling out the cells just allocated. */
4488 for (i
= column_info_alloc
; i
< new_column_info_alloc
; i
++)
4490 column_info
[i
].col_arr
= p
;
4494 column_info_alloc
= new_column_info_alloc
;
4497 for (i
= 0; i
< max_cols
; ++i
)
4501 column_info
[i
].valid_len
= true;
4502 column_info
[i
].line_len
= (i
+ 1) * MIN_COLUMN_WIDTH
;
4503 for (j
= 0; j
<= i
; ++j
)
4504 column_info
[i
].col_arr
[j
] = MIN_COLUMN_WIDTH
;
4508 /* Calculate the number of columns needed to represent the current set
4509 of files in the current display width. */
4512 calculate_columns (bool by_columns
)
4514 size_t filesno
; /* Index into cwd_file. */
4515 size_t cols
; /* Number of files across. */
4517 /* Normally the maximum number of columns is determined by the
4518 screen width. But if few files are available this might limit it
4520 size_t max_cols
= MIN (max_idx
, cwd_n_used
);
4522 init_column_info ();
4524 /* Compute the maximum number of possible columns. */
4525 for (filesno
= 0; filesno
< cwd_n_used
; ++filesno
)
4527 struct fileinfo
const *f
= sorted_file
[filesno
];
4528 size_t name_length
= length_of_file_name_and_frills (f
);
4531 for (i
= 0; i
< max_cols
; ++i
)
4533 if (column_info
[i
].valid_len
)
4535 size_t idx
= (by_columns
4536 ? filesno
/ ((cwd_n_used
+ i
) / (i
+ 1))
4537 : filesno
% (i
+ 1));
4538 size_t real_length
= name_length
+ (idx
== i
? 0 : 2);
4540 if (column_info
[i
].col_arr
[idx
] < real_length
)
4542 column_info
[i
].line_len
+= (real_length
4543 - column_info
[i
].col_arr
[idx
]);
4544 column_info
[i
].col_arr
[idx
] = real_length
;
4545 column_info
[i
].valid_len
= (column_info
[i
].line_len
4552 /* Find maximum allowed columns. */
4553 for (cols
= max_cols
; 1 < cols
; --cols
)
4555 if (column_info
[cols
- 1].valid_len
)
4565 if (status
!= EXIT_SUCCESS
)
4566 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
4570 printf (_("Usage: %s [OPTION]... [FILE]...\n"), program_name
);
4572 List information about the FILEs (the current directory by default).\n\
4573 Sort entries alphabetically if none of -cftuvSUX nor --sort.\n\
4577 Mandatory arguments to long options are mandatory for short options too.\n\
4580 -a, --all do not ignore entries starting with .\n\
4581 -A, --almost-all do not list implied . and ..\n\
4582 --author with -l, print the author of each file\n\
4583 -b, --escape print C-style escapes for nongraphic characters\n\
4586 --block-size=SIZE scale sizes by SIZE before printing them. E.g.,\n\
4587 `--block-size=M' prints sizes in units of\n\
4588 1,048,576 bytes. See SIZE format below.\n\
4589 -B, --ignore-backups do not list implied entries ending with ~\n\
4590 -c with -lt: sort by, and show, ctime (time of last\n\
4591 modification of file status information)\n\
4592 with -l: show ctime and sort by name\n\
4593 otherwise: sort by ctime\n\
4596 -C list entries by columns\n\
4597 --color[=WHEN] colorize the output. WHEN defaults to `always'\n\
4598 or can be `never' or `auto'. More info below\n\
4599 -d, --directory list directory entries instead of contents,\n\
4600 and do not dereference symbolic links\n\
4601 -D, --dired generate output designed for Emacs' dired mode\n\
4604 -f do not sort, enable -aU, disable -ls --color\n\
4605 -F, --classify append indicator (one of */=>@|) to entries\n\
4606 --file-type likewise, except do not append `*'\n\
4607 --format=WORD across -x, commas -m, horizontal -x, long -l,\n\
4608 single-column -1, verbose -l, vertical -C\n\
4609 --full-time like -l --time-style=full-iso\n\
4612 -g like -l, but do not list owner\n\
4615 --group-directories-first\n\
4616 group directories before files.\n\
4617 augment with a --sort option, but any\n\
4618 use of --sort=none (-U) disables grouping\n\
4621 -G, --no-group in a long listing, don't print group names\n\
4622 -h, --human-readable with -l, print sizes in human readable format\n\
4623 (e.g., 1K 234M 2G)\n\
4624 --si likewise, but use powers of 1000 not 1024\n\
4627 -H, --dereference-command-line\n\
4628 follow symbolic links listed on the command line\n\
4629 --dereference-command-line-symlink-to-dir\n\
4630 follow each command line symbolic link\n\
4631 that points to a directory\n\
4632 --hide=PATTERN do not list implied entries matching shell PATTERN\
4634 (overridden by -a or -A)\n\
4637 --indicator-style=WORD append indicator with style WORD to entry names:\
4639 none (default), slash (-p),\n\
4640 file-type (--file-type), classify (-F)\n\
4641 -i, --inode print the index number of each file\n\
4642 -I, --ignore=PATTERN do not list implied entries matching shell PATTERN\
4644 -k like --block-size=1K\n\
4647 -l use a long listing format\n\
4648 -L, --dereference when showing file information for a symbolic\n\
4649 link, show information for the file the link\n\
4650 references rather than for the link itself\n\
4651 -m fill width with a comma separated list of entries\
4655 -n, --numeric-uid-gid like -l, but list numeric user and group IDs\n\
4656 -N, --literal print raw entry names (don't treat e.g. control\n\
4657 characters specially)\n\
4658 -o like -l, but do not list group information\n\
4659 -p, --indicator-style=slash\n\
4660 append / indicator to directories\n\
4663 -q, --hide-control-chars print ? instead of non graphic characters\n\
4664 --show-control-chars show non graphic characters as-is (default\n\
4665 unless program is `ls' and output is a terminal)\n\
4666 -Q, --quote-name enclose entry names in double quotes\n\
4667 --quoting-style=WORD use quoting style WORD for entry names:\n\
4668 literal, locale, shell, shell-always, c, escape\
4672 -r, --reverse reverse order while sorting\n\
4673 -R, --recursive list subdirectories recursively\n\
4674 -s, --size print the allocated size of each file, in blocks\n\
4677 -S sort by file size\n\
4678 --sort=WORD sort by WORD instead of name: none -U,\n\
4679 extension -X, size -S, time -t, version -v\n\
4680 --time=WORD with -l, show time as WORD instead of modification\
4682 time: atime -u, access -u, use -u, ctime -c,\n\
4683 or status -c; use specified time as sort key\n\
4687 --time-style=STYLE with -l, show times using style STYLE:\n\
4688 full-iso, long-iso, iso, locale, +FORMAT.\n\
4689 FORMAT is interpreted like `date'; if FORMAT is\n\
4690 FORMAT1<newline>FORMAT2, FORMAT1 applies to\n\
4691 non-recent files and FORMAT2 to recent files;\n\
4692 if STYLE is prefixed with `posix-', STYLE\n\
4693 takes effect only outside the POSIX locale\n\
4696 -t sort by modification time\n\
4697 -T, --tabsize=COLS assume tab stops at each COLS instead of 8\n\
4700 -u with -lt: sort by, and show, access time\n\
4701 with -l: show access time and sort by name\n\
4702 otherwise: sort by access time\n\
4703 -U do not sort; list entries in directory order\n\
4704 -v natural sort of (version) numbers within text\n\
4707 -w, --width=COLS assume screen width instead of current value\n\
4708 -x list entries by lines instead of by columns\n\
4709 -X sort alphabetically by entry extension\n\
4710 -Z, --context print any SELinux security context of each file\n\
4711 -1 list one file per line\n\
4713 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
4714 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
4718 Using color to distinguish file types is disabled both by default and\n\
4719 with --color=never. With --color=auto, ls emits color codes only when\n\
4720 standard output is connected to a terminal. The LS_COLORS environment\n\
4721 variable can change the settings. Use the dircolors command to set it.\n\
4727 1 if minor problems (e.g., cannot access subdirectory),\n\
4728 2 if serious trouble (e.g., cannot access command-line argument).\n\
4730 emit_ancillary_info ();