2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * @(#) Copyright (c) 1989, 1993, 1994 The Regents of the University of California. All rights reserved.
33 * @(#)ls.c 8.5 (Berkeley) 4/2/94
34 * $FreeBSD: src/bin/ls/ls.c,v 1.78 2004/06/08 09:30:10 das Exp $
37 #include <sys/types.h>
39 #include <sys/ioctl.h>
63 * Upward approximation of the maximum number of characters needed to
64 * represent a value of integral type t as a string, excluding the
65 * NUL terminator, with provision for a sign.
67 #define STRBUF_SIZEOF(t) (1 + CHAR_BIT * sizeof(t) / 3 + 1)
70 * MAKENINES(n) turns n into (10**n)-1. This is useful for converting a width
71 * into a number that wide in decimal.
72 * XXX: Overflows are not considered.
74 #define MAKENINES(n) \
78 /* Use a loop as all values of n are small. */ \
79 for (i = 1; n > 0; i *= 10) \
84 static void display(const FTSENT
*, FTSENT
*);
85 static int mastercmp(const FTSENT
* const *, const FTSENT
* const *);
86 static void traverse(int, char **, int);
88 static void (*printfcn
)(const DISPLAY
*);
89 static int (*sortfcn
)(const FTSENT
*, const FTSENT
*);
91 long blocksize
; /* block size units */
92 int termwidth
= 80; /* default terminal width */
95 int f_accesstime
; /* use time of last access */
96 int f_flags
; /* show flags associated with a file */
97 int f_fsmid
; /* show FSMID associated with a file */
98 int f_humanval
; /* show human-readable file sizes */
99 int f_inode
; /* print inode */
100 static int f_kblocks
; /* print size in kilobytes */
101 static int f_listdir
; /* list actual directory, not contents */
102 static int f_listdot
; /* list files beginning with . */
103 int f_longform
; /* long listing format */
104 int f_nanotime
; /* include nanotime in long format */
105 int f_nonprint
; /* show unprintables as ? */
106 static int f_nosort
; /* don't sort output */
107 int f_notabs
; /* don't use tab-separated multi-col output */
108 static int f_numericonly
; /* don't convert uid/gid to name */
109 int f_octal
; /* show unprintables as \xxx */
110 int f_octal_escape
; /* like f_octal but use C escapes if possible */
111 static int f_recursive
; /* ls subdirectories also */
112 static int f_reversesort
; /* reverse whatever sort is used */
113 int f_sectime
; /* print the real time for all files */
114 static int f_singlecol
; /* use single column output */
115 int f_size
; /* list size in short listing */
116 int f_slash
; /* similar to f_type, but only for dirs */
117 int f_sizesort
; /* Sort by size */
118 int f_sortacross
; /* sort across rows, not down columns */
119 int f_statustime
; /* use time of last mode change */
120 static int f_stream
; /* stream the output, separate with commas */
121 const char *f_timeformat
; /* user-specified time format */
122 static int f_timesort
; /* sort by time vice name */
123 int f_type
; /* add type character for non-regular files */
124 static int f_whiteout
; /* show whiteout entries */
126 int f_color
; /* add type in color for non-regular files */
128 char *ansi_bgcol
; /* ANSI sequence to set background colour */
129 char *ansi_fgcol
; /* ANSI sequence to set foreground colour */
130 char *ansi_coloff
; /* ANSI sequence to reset colours */
131 char *attrs_off
; /* ANSI sequence to turn off attributes */
132 char *enter_bold
; /* ANSI sequence to set color to bold mode */
138 main(int argc
, char *argv
[])
140 static char dot
[] = ".", *dotav
[] = {dot
, NULL
};
142 int ch
, fts_options
, notused
;
144 const char nanotime_format
[] = "%Y-%m-%d %H:%M:%S";
146 char termcapbuf
[1024]; /* termcap definition buffer */
147 char tcapbuf
[512]; /* capability buffer */
151 setlocale(LC_ALL
, "");
153 /* Terminal defaults to -Cq, non-terminal defaults to -1. */
154 if (isatty(STDOUT_FILENO
)) {
156 if ((p
= getenv("COLUMNS")) != NULL
&& *p
!= '\0')
158 else if (ioctl(STDOUT_FILENO
, TIOCGWINSZ
, &win
) != -1 &&
160 termwidth
= win
.ws_col
;
164 /* retrieve environment variable, in case of explicit -C */
165 p
= getenv("COLUMNS");
171 * Root is -A automatically. Turn off if -I specified.
176 fts_options
= FTS_PHYSICAL
;
177 while ((ch
= getopt(argc
, argv
,
178 "1ABCD:FGHILPRSTW_abcdfghiklmnopqrstuwxy")) != -1) {
181 * The -1, -C, -x and -l options all override each other so
182 * shell aliasing works right.
195 f_sortacross
= f_longform
= f_singlecol
= 0;
208 #ifdef _ST_FSMID_PRESENT_
212 /* The -c and -u options override each other. */
222 f_timeformat
= optarg
;
229 fts_options
|= FTS_COMFOLLOW
;
235 if (setenv("CLICOLOR", "", 1) != 0)
236 warn("setenv: cannot set CLICOLOR");
239 fts_options
&= ~FTS_PHYSICAL
;
240 fts_options
|= FTS_LOGICAL
;
243 fts_options
&= ~FTS_COMFOLLOW
;
244 fts_options
&= ~FTS_LOGICAL
;
245 fts_options
|= FTS_PHYSICAL
;
250 /* The -t and -S options override each other. */
263 fts_options
|= FTS_SEEDOT
;
268 /* The -d option turns off the -R option. */
273 case 'g': /* Compatibility with 4.3BSD. */
329 f_timeformat
= nanotime_format
;
339 /* Enabling of colours is conditional on the environment. */
340 if (getenv("CLICOLOR") &&
341 (isatty(STDOUT_FILENO
) || getenv("CLICOLOR_FORCE")))
343 if (tgetent(termcapbuf
, getenv("TERM")) == 1) {
344 ansi_fgcol
= tgetstr("AF", &bp
);
345 ansi_bgcol
= tgetstr("AB", &bp
);
346 attrs_off
= tgetstr("me", &bp
);
347 enter_bold
= tgetstr("md", &bp
);
349 /* To switch colours off use 'op' if
350 * available, otherwise use 'oc', or
351 * don't do colours at all. */
352 ansi_coloff
= tgetstr("op", &bp
);
354 ansi_coloff
= tgetstr("oc", &bp
);
355 if (ansi_fgcol
&& ansi_bgcol
&& ansi_coloff
)
359 fprintf(stderr
, "Color support not compiled in.\n");
365 * We can't put tabs and color sequences together:
366 * column number will be incremented incorrectly
367 * for "stty oxtabs" mode.
370 signal(SIGINT
, colorquit
);
371 signal(SIGQUIT
, colorquit
);
372 parsecolors(getenv("LSCOLORS"));
377 * If not -F, -i, -l, -s, -S or -t options, don't require stat
378 * information, unless in color mode in which case we do
379 * need this to determine which colors to display.
381 if (!f_inode
&& !f_longform
&& !f_size
&& !f_timesort
&&
382 !f_sizesort
&& !f_type
387 fts_options
|= FTS_NOSTAT
;
390 * If not -F, -d or -l options, follow any symbolic links listed on
393 if (!f_longform
&& !f_listdir
&& !f_type
)
394 fts_options
|= FTS_COMFOLLOW
;
397 * If -W, show whiteout entries
401 fts_options
|= FTS_WHITEOUT
;
404 /* If -l or -s, figure out block size. */
405 if (f_longform
|| f_size
) {
409 getbsize(¬used
, &blocksize
);
413 /* Select a sort function. */
415 if (!f_timesort
&& !f_sizesort
)
416 sortfcn
= revnamecmp
;
418 sortfcn
= revsizecmp
;
419 else if (f_accesstime
)
421 else if (f_statustime
)
422 sortfcn
= revstatcmp
;
423 else /* Use modification time. */
426 if (!f_timesort
&& !f_sizesort
)
430 else if (f_accesstime
)
432 else if (f_statustime
)
434 else /* Use modification time. */
438 /* Select a print function. */
440 printfcn
= printscol
;
442 printfcn
= printlong
;
444 printfcn
= printstream
;
449 traverse(argc
, argv
, fts_options
);
451 traverse(1, dotav
, fts_options
);
455 static int output
; /* If anything output. */
458 * Traverse() walks the logical directory structure specified by the argv list
459 * in the order specified by the mastercmp() comparison function. During the
460 * traversal it passes linked lists of structures to display() which represent
461 * a superset (may be exact set) of the files to be displayed.
464 traverse(int argc
, char *argv
[], int options
)
468 int ch_options
, error
;
471 fts_open(argv
, options
, f_nosort
? NULL
: mastercmp
)) == NULL
)
475 * We ignore errors from fts_children here since they will be
476 * replicated and signalled on the next call to fts_read() below.
478 chp
= fts_children(ftsp
, 0);
487 * If not recursing down this tree and don't need stat info, just get
490 ch_options
= !f_recursive
&& options
& FTS_NOSTAT
? FTS_NAMEONLY
: 0;
492 while ((p
= fts_read(ftsp
)) != NULL
)
493 switch (p
->fts_info
) {
495 warnx("%s: directory causes a cycle", p
->fts_name
);
499 warnx("%s: %s", p
->fts_name
, strerror(p
->fts_errno
));
503 if (p
->fts_level
!= FTS_ROOTLEVEL
&&
504 p
->fts_name
[0] == '.' && !f_listdot
)
508 * If already output something, put out a newline as
509 * a separator. If multiple arguments, precede each
510 * directory with its name.
514 printname(p
->fts_path
);
516 } else if (argc
> 1) {
517 printname(p
->fts_path
);
521 chp
= fts_children(ftsp
, ch_options
);
524 if (!f_recursive
&& chp
!= NULL
)
525 fts_set(ftsp
, p
, FTS_SKIP
);
538 * Display() takes a linked list of FTSENT structures and passes the list
539 * along with any other necessary information to the print function. P
540 * points to the parent directory of the display list.
543 display(const FTSENT
*p
, FTSENT
*list
)
550 u_long btotal
, maxlen
;
554 int bcfile
, maxflags
;
557 size_t fsmidlen
, flen
, ulen
, glen
;
559 int entries
, needstats
;
560 const char *user
, *group
;
562 #ifdef _ST_FSMID_PRESENT_
565 char buf
[STRBUF_SIZEOF(u_quad_t
) + 1];
566 char ngroup
[STRBUF_SIZEOF(uid_t
) + 1];
567 char nuser
[STRBUF_SIZEOF(gid_t
) + 1];
569 needstats
= f_inode
|| f_longform
|| f_size
;
571 initmax
= getenv("LS_COLWIDTHS");
572 /* Fields match -lios order. New ones should be added at the end. */
573 maxblock
= maxinode
= maxlen
= maxnlink
=
574 maxuser
= maxgroup
= maxflags
= maxsize
= 0;
575 if (initmax
!= NULL
&& *initmax
!= '\0') {
576 char *initmax2
, *jinitmax
;
579 /* Fill-in "::" as "0:0:0" for the sake of scanf. */
580 jinitmax
= malloc(strlen(initmax
) * 2 + 2);
581 if (jinitmax
== NULL
)
585 strcpy(initmax2
, "0:"), initmax2
+= 2;
587 *initmax2
++ = *initmax
, *initmax2
= '\0';
588 for (initmax
++; *initmax
!= '\0'; initmax
++) {
589 if (initmax
[-1] == ':' && initmax
[0] == ':') {
591 *initmax2
++ = initmax
[0];
594 *initmax2
++ = initmax
[0];
598 if (initmax2
[-1] == ':')
599 strcpy(initmax2
, "0");
601 ninitmax
= sscanf(jinitmax
,
602 " %ju : %jd : %u : %i : %i : %i : %jd : %lu ",
603 &maxinode
, &maxblock
, &maxnlink
, &maxuser
,
604 &maxgroup
, &maxflags
, &maxsize
, &maxlen
);
647 for (cur
= list
, entries
= 0; cur
; cur
= cur
->fts_link
) {
648 if (cur
->fts_info
== FTS_ERR
|| cur
->fts_info
== FTS_NS
) {
650 cur
->fts_name
, strerror(cur
->fts_errno
));
651 cur
->fts_number
= NO_PRINT
;
656 * P is NULL if list is the argv list, to which different rules
660 /* Directories will be displayed later. */
661 if (cur
->fts_info
== FTS_D
&& !f_listdir
) {
662 cur
->fts_number
= NO_PRINT
;
666 /* Only display dot file if -a/-A set. */
667 if (cur
->fts_name
[0] == '.' && !f_listdot
) {
668 cur
->fts_number
= NO_PRINT
;
672 if (cur
->fts_namelen
> maxlen
)
673 maxlen
= cur
->fts_namelen
;
674 if (f_octal
|| f_octal_escape
) {
675 u_long t
= len_octal(cur
->fts_name
, cur
->fts_namelen
);
682 if (sp
->st_blocks
> maxblock
)
683 maxblock
= sp
->st_blocks
;
684 if (sp
->st_ino
> maxinode
)
685 maxinode
= sp
->st_ino
;
686 if (sp
->st_nlink
> maxnlink
)
687 maxnlink
= sp
->st_nlink
;
688 if (sp
->st_size
> maxsize
)
689 maxsize
= sp
->st_size
;
691 btotal
+= sp
->st_blocks
;
694 snprintf(nuser
, sizeof(nuser
),
696 snprintf(ngroup
, sizeof(ngroup
),
701 user
= user_from_uid(sp
->st_uid
, 0);
702 group
= group_from_gid(sp
->st_gid
, 0);
704 if ((ulen
= strlen(user
)) > maxuser
)
706 if ((glen
= strlen(group
)) > maxgroup
)
709 flags
= fflagstostr(sp
->st_flags
);
710 if (flags
!= NULL
&& *flags
== '\0') {
715 err(1, "flagstostr");
716 flen
= strlen(flags
);
717 if (flen
> (size_t)maxflags
)
722 #ifdef _ST_FSMID_PRESENT_
724 fsmid
= sp
->st_fsmid
;
734 if ((np
= malloc(sizeof(NAMES
) +
735 ulen
+ glen
+ flen
+ fsmidlen
+ 4)) == NULL
)
738 np
->user
= &np
->data
[0];
739 strcpy(np
->user
, user
);
740 np
->group
= &np
->data
[ulen
+ 1];
741 strcpy(np
->group
, group
);
743 if (S_ISCHR(sp
->st_mode
) ||
744 S_ISBLK(sp
->st_mode
))
748 np
->flags
= &np
->data
[ulen
+ glen
+ 2];
749 strcpy(np
->flags
, flags
);
752 #ifdef _ST_FSMID_PRESENT_
754 np
->fsmid
= np
->data
+ ulen
+ glen
+ flen
+ 3;
755 snprintf(np
->fsmid
, fsmidlen
+ 1,
756 "%016jx", (intmax_t)fsmid
);
759 cur
->fts_pointer
= np
;
766 * If there are no entries to display, we normally stop right
767 * here. However, we must continue if we have to display the
768 * total block count. In this case, we display the total only
769 * on the second (p != NULL) pass.
771 if (!entries
&& (!(f_longform
|| f_size
) || p
== NULL
))
780 snprintf(buf
, sizeof(buf
), "%ji", (intmax_t)maxblock
);
781 d
.s_block
= strlen(buf
);
782 d
.s_flags
= maxflags
;
783 d
.s_group
= maxgroup
;
784 snprintf(buf
, sizeof(buf
), "%ju", (uintmax_t)maxinode
);
785 d
.s_inode
= strlen(buf
);
786 snprintf(buf
, sizeof(buf
), "%u", maxnlink
);
787 d
.s_nlink
= strlen(buf
);
788 snprintf(buf
, sizeof(buf
), "%jd", (intmax_t)maxsize
);
789 d
.s_size
= strlen(buf
);
796 for (cur
= list
; cur
; cur
= cur
->fts_link
)
797 free(cur
->fts_pointer
);
801 * Ordering for mastercmp:
802 * If ordering the argv (fts_level = FTS_ROOTLEVEL) return non-directories
803 * as larger than directories. Within either group, use the sort function.
804 * All other levels use the sort function. Error entries remain unsorted.
807 mastercmp(const FTSENT
* const *a
, const FTSENT
* const *b
)
811 a_info
= (*a
)->fts_info
;
812 if (a_info
== FTS_ERR
)
814 b_info
= (*b
)->fts_info
;
815 if (b_info
== FTS_ERR
)
818 if (a_info
== FTS_NS
|| b_info
== FTS_NS
)
819 return (namecmp(*a
, *b
));
821 if (a_info
!= b_info
&&
822 (*a
)->fts_level
== FTS_ROOTLEVEL
&& !f_listdir
) {
828 return (sortfcn(*a
, *b
));