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 * 4. 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.65 2002/08/25 13:01:45 charnier Exp $
35 * $DragonFly: src/bin/ls/ls.c,v 1.13 2005/09/18 16:59:54 asmodai Exp $
38 #include <sys/types.h>
40 #include <sys/ioctl.h>
64 * Upward approximation of the maximum number of characters needed to
65 * represent a value of integral type t as a string, excluding the
66 * NUL terminator, with provision for a sign.
68 #define STRBUF_SIZEOF(t) (1 + CHAR_BIT * sizeof(t) / 3 + 1)
71 * MAKENINES(n) turns n into (10**n)-1. This is useful for converting a width
72 * into a number that wide in decimal.
73 * XXX: Overflows are not considered.
75 #define MAKENINES(n) \
79 /* Use a loop as all values of n are small. */ \
80 for (i = 1; n > 0; i *= 10) \
85 static void display(const FTSENT *, FTSENT *);
86 static int mastercmp(const FTSENT **, const FTSENT **);
87 static void traverse(int, char **, int);
89 static void (*printfcn)(DISPLAY *);
90 static int (*sortfcn)(const FTSENT *, const FTSENT *);
92 long blocksize; /* block size units */
93 int termwidth = 80; /* default terminal width */
96 int f_accesstime; /* use time of last access */
97 int f_flags; /* show flags associated with a file */
98 int f_fsmid; /* show FSMID associated with a file */
99 int f_humanval; /* show human-readable file sizes */
100 int f_inode; /* print inode */
101 static int f_kblocks; /* print size in kilobytes */
102 static int f_listdir; /* list actual directory, not contents */
103 static int f_listdot; /* list files beginning with . */
104 int f_longform; /* long listing 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_sortacross; /* sort across rows, not down columns */
118 int f_statustime; /* use time of last mode change */
119 static int f_stream; /* stream the output, separate with commas */
120 static int f_timesort; /* sort by time vice name */
121 int f_type; /* add type character for non-regular files */
122 static int f_whiteout; /* show whiteout entries */
124 int f_color; /* add type in color for non-regular files */
126 char *ansi_bgcol; /* ANSI sequence to set background colour */
127 char *ansi_fgcol; /* ANSI sequence to set foreground colour */
128 char *ansi_coloff; /* ANSI sequence to reset colours */
129 char *attrs_off; /* ANSI sequence to turn off attributes */
130 char *enter_bold; /* ANSI sequence to set color to bold mode */
136 main(int argc, char *argv[])
138 static char dot[] = ".", *dotav[] = {dot, NULL};
140 int ch, fts_options, notused;
143 char termcapbuf[1024]; /* termcap definition buffer */
144 char tcapbuf[512]; /* capability buffer */
148 setlocale(LC_ALL, "");
150 /* Terminal defaults to -Cq, non-terminal defaults to -1. */
151 if (isatty(STDOUT_FILENO)) {
153 if ((p = getenv("COLUMNS")) != NULL && *p != '\0')
155 else if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &win) != -1 &&
157 termwidth = win.ws_col;
161 /* retrieve environment variable, in case of explicit -C */
162 p = getenv("COLUMNS");
167 /* Root is -A automatically. */
171 fts_options = FTS_PHYSICAL;
172 while ((ch = getopt(argc, argv, "1ABCFGHLPRTWabcdfghiklmnopqrstuwxy"))
176 * The -1, -C, -x and -l options all override each other so
177 * shell aliasing works right.
190 f_sortacross = f_longform = f_singlecol = 0;
203 #ifdef _ST_FSMID_PRESENT_
207 /* The -c and -u options override each other. */
221 fts_options |= FTS_COMFOLLOW;
224 setenv("CLICOLOR", "", 1);
227 fts_options &= ~FTS_PHYSICAL;
228 fts_options |= FTS_LOGICAL;
231 fts_options &= ~FTS_COMFOLLOW;
232 fts_options &= ~FTS_LOGICAL;
233 fts_options |= FTS_PHYSICAL;
239 fts_options |= FTS_SEEDOT;
244 /* The -d option turns off the -R option. */
252 case 'g': /* Compatibility with 4.3BSD. */
316 /* Enabling of colours is conditional on the environment. */
317 if (getenv("CLICOLOR") &&
318 (isatty(STDOUT_FILENO) || getenv("CLICOLOR_FORCE")))
320 if (tgetent(termcapbuf, getenv("TERM")) == 1) {
321 ansi_fgcol = tgetstr("AF", &bp);
322 ansi_bgcol = tgetstr("AB", &bp);
323 attrs_off = tgetstr("me", &bp);
324 enter_bold = tgetstr("md", &bp);
326 /* To switch colours off use 'op' if
327 * available, otherwise use 'oc', or
328 * don't do colours at all. */
329 ansi_coloff = tgetstr("op", &bp);
331 ansi_coloff = tgetstr("oc", &bp);
332 if (ansi_fgcol && ansi_bgcol && ansi_coloff)
336 fprintf(stderr, "Color support not compiled in.\n");
342 * We can't put tabs and color sequences together:
343 * column number will be incremented incorrectly
344 * for "stty oxtabs" mode.
347 signal(SIGINT, colorquit);
348 signal(SIGQUIT, colorquit);
349 parsecolors(getenv("LSCOLORS"));
354 * If not -F, -i, -l, -s or -t options, don't require stat
355 * information, unless in color mode in which case we do
356 * need this to determine which colors to display.
358 if (!f_inode && !f_longform && !f_size && !f_timesort && !f_type
363 fts_options |= FTS_NOSTAT;
366 * If not -F, -d or -l options, follow any symbolic links listed on
369 if (!f_longform && !f_listdir && !f_type)
370 fts_options |= FTS_COMFOLLOW;
373 * If -W, show whiteout entries
377 fts_options |= FTS_WHITEOUT;
380 /* If -l or -s, figure out block size. */
381 if (f_longform || f_size) {
385 getbsize(¬used, &blocksize);
389 /* Select a sort function. */
392 sortfcn = revnamecmp;
393 else if (f_accesstime)
395 else if (f_statustime)
396 sortfcn = revstatcmp;
397 else /* Use modification time. */
402 else if (f_accesstime)
404 else if (f_statustime)
406 else /* Use modification time. */
410 /* Select a print function. */
412 printfcn = printscol;
414 printfcn = printlong;
416 printfcn = printstream;
421 traverse(argc, argv, fts_options);
423 traverse(1, dotav, fts_options);
427 static int output; /* If anything output. */
430 * Traverse() walks the logical directory structure specified by the argv list
431 * in the order specified by the mastercmp() comparison function. During the
432 * traversal it passes linked lists of structures to display() which represent
433 * a superset (may be exact set) of the files to be displayed.
436 traverse(int argc, char *argv[], int options)
443 fts_open(argv, options, f_nosort ? NULL : mastercmp)) == NULL)
446 display(NULL, fts_children(ftsp, 0));
451 * If not recursing down this tree and don't need stat info, just get
454 ch_options = !f_recursive && options & FTS_NOSTAT ? FTS_NAMEONLY : 0;
456 while ((p = fts_read(ftsp)) != NULL)
457 switch (p->fts_info) {
459 warnx("%s: directory causes a cycle", p->fts_name);
463 warnx("%s: %s", p->fts_name, strerror(p->fts_errno));
467 if (p->fts_level != FTS_ROOTLEVEL &&
468 p->fts_name[0] == '.' && !f_listdot)
472 * If already output something, put out a newline as
473 * a separator. If multiple arguments, precede each
474 * directory with its name.
478 printname(p->fts_path);
480 } else if (argc > 1) {
481 printname(p->fts_path);
485 chp = fts_children(ftsp, ch_options);
488 if (!f_recursive && chp != NULL)
489 fts_set(ftsp, p, FTS_SKIP);
499 * Display() takes a linked list of FTSENT structures and passes the list
500 * along with any other necessary information to the print function. P
501 * points to the parent directory of the display list.
504 display(const FTSENT *p, FTSENT *list)
511 u_long btotal, maxlen;
515 int bcfile, maxflags;
518 size_t fsmidlen, flen, ulen, glen;
520 int entries, needstats;
521 const char *user, *group;
524 char buf[STRBUF_SIZEOF(u_quad_t) + 1];
525 char ngroup[STRBUF_SIZEOF(uid_t) + 1];
526 char nuser[STRBUF_SIZEOF(gid_t) + 1];
529 * If list is NULL there are two possibilities: that the parent
530 * directory p has no children, or that fts_children() returned an
531 * error. We ignore the error case since it will be replicated
532 * on the next call to fts_read() on the post-order visit to the
533 * directory p, and will be signaled in traverse().
538 needstats = f_inode || f_longform || f_size;
541 initmax = getenv("LS_COLWIDTHS");
542 /* Fields match -lios order. New ones should be added at the end. */
543 maxblock = maxinode = maxlen = maxnlink =
544 maxuser = maxgroup = maxflags = maxsize = 0;
545 if (initmax != NULL && *initmax != '\0') {
546 char *initmax2, *jinitmax;
549 /* Fill-in "::" as "0:0:0" for the sake of scanf. */
550 jinitmax = malloc(strlen(initmax) * 2 + 2);
551 if (jinitmax == NULL)
555 strcpy(initmax2, "0:"), initmax2 += 2;
557 *initmax2++ = *initmax, *initmax2 = '\0';
558 for (initmax++; *initmax != '\0'; initmax++) {
559 if (initmax[-1] == ':' && initmax[0] == ':') {
561 *initmax2++ = initmax[0];
564 *initmax2++ = initmax[0];
568 if (initmax2[-1] == ':')
569 strcpy(initmax2, "0");
571 ninitmax = sscanf(jinitmax,
572 " %llu : %lli : %u : %i : %i : %i : %llu : %lu ",
573 &maxinode, &maxblock, &maxnlink, &maxuser,
574 &maxgroup, &maxflags, &maxsize, &maxlen);
617 for (cur = list, entries = 0; cur; cur = cur->fts_link) {
618 if (cur->fts_info == FTS_ERR || cur->fts_info == FTS_NS) {
620 cur->fts_name, strerror(cur->fts_errno));
621 cur->fts_number = NO_PRINT;
626 * P is NULL if list is the argv list, to which different rules
630 /* Directories will be displayed later. */
631 if (cur->fts_info == FTS_D && !f_listdir) {
632 cur->fts_number = NO_PRINT;
636 /* Only display dot file if -a/-A set. */
637 if (cur->fts_name[0] == '.' && !f_listdot) {
638 cur->fts_number = NO_PRINT;
642 if (cur->fts_namelen > maxlen)
643 maxlen = cur->fts_namelen;
644 if (f_octal || f_octal_escape) {
645 u_long t = len_octal(cur->fts_name, cur->fts_namelen);
652 if (sp->st_blocks > maxblock)
653 maxblock = sp->st_blocks;
654 if (sp->st_ino > maxinode)
655 maxinode = sp->st_ino;
656 if (sp->st_nlink > maxnlink)
657 maxnlink = sp->st_nlink;
658 if (sp->st_size > maxsize)
659 maxsize = sp->st_size;
661 btotal += sp->st_blocks;
664 snprintf(nuser, sizeof(nuser),
666 snprintf(ngroup, sizeof(ngroup),
671 user = user_from_uid(sp->st_uid, 0);
672 group = group_from_gid(sp->st_gid, 0);
674 if ((ulen = strlen(user)) > maxuser)
676 if ((glen = strlen(group)) > maxgroup)
679 flags = fflagstostr(sp->st_flags);
680 if (flags != NULL && *flags == '\0') {
685 err(1, "flagstostr");
686 flen = strlen(flags);
687 if (flen > (size_t)maxflags)
692 #ifdef _ST_FSMID_PRESENT_
694 fsmid = sp->st_fsmid;
704 if ((np = malloc(sizeof(NAMES) +
705 ulen + glen + flen + fsmidlen + 4)) == NULL)
708 np->user = &np->data[0];
709 strcpy(np->user, user);
710 np->group = &np->data[ulen + 1];
711 strcpy(np->group, group);
713 if (S_ISCHR(sp->st_mode) ||
714 S_ISBLK(sp->st_mode))
718 np->flags = &np->data[ulen + glen + 2];
719 strcpy(np->flags, flags);
722 #ifdef _ST_FSMID_PRESENT_
724 np->fsmid = np->data + ulen + glen + flen + 3;
725 snprintf(np->fsmid, fsmidlen + 1,
729 cur->fts_pointer = np;
744 snprintf(buf, sizeof(buf), "%lli", maxblock);
745 d.s_block = strlen(buf);
746 d.s_flags = maxflags;
747 d.s_group = maxgroup;
748 snprintf(buf, sizeof(buf), "%llu", maxinode);
749 d.s_inode = strlen(buf);
750 snprintf(buf, sizeof(buf), "%u", maxnlink);
751 d.s_nlink = strlen(buf);
752 snprintf(buf, sizeof(buf), "%llu", maxsize);
753 d.s_size = strlen(buf);
760 for (cur = list; cur; cur = cur->fts_link)
761 free(cur->fts_pointer);
765 * Ordering for mastercmp:
766 * If ordering the argv (fts_level = FTS_ROOTLEVEL) return non-directories
767 * as larger than directories. Within either group, use the sort function.
768 * All other levels use the sort function. Error entries remain unsorted.
771 mastercmp(const FTSENT **a, const FTSENT **b)
775 a_info = (*a)->fts_info;
776 if (a_info == FTS_ERR)
778 b_info = (*b)->fts_info;
779 if (b_info == FTS_ERR)
782 if (a_info == FTS_NS || b_info == FTS_NS)
783 return (namecmp(*a, *b));
785 if (a_info != b_info &&
786 (*a)->fts_level == FTS_ROOTLEVEL && !f_listdir) {
792 return (sortfcn(*a, *b));