implement -print0 for find
[oweals/busybox.git] / coreutils / ls.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * tiny-ls.c version 0.1.0: A minimalist 'ls'
4  * Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
5  *
6  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
7  */
8
9 /*
10  * To achieve a small memory footprint, this version of 'ls' doesn't do any
11  * file sorting, and only has the most essential command line switches
12  * (i.e., the ones I couldn't live without :-) All features which involve
13  * linking in substantial chunks of libc can be disabled.
14  *
15  * Although I don't really want to add new features to this program to
16  * keep it small, I *am* interested to receive bug fixes and ways to make
17  * it more portable.
18  *
19  * KNOWN BUGS:
20  * 1. ls -l of a directory doesn't give "total <blocks>" header
21  * 2. ls of a symlink to a directory doesn't list directory contents
22  * 3. hidden files can make column width too large
23  *
24  * NON-OPTIMAL BEHAVIOUR:
25  * 1. autowidth reads directories twice
26  * 2. if you do a short directory listing without filetype characters
27  *    appended, there's no need to stat each one
28  * PORTABILITY:
29  * 1. requires lstat (BSD) - how do you do it without?
30  */
31
32 enum {
33         TERMINAL_WIDTH = 80,    /* use 79 if terminal has linefold bug */
34         COLUMN_GAP = 2,         /* includes the file type char */
35 };
36
37 /************************************************************************/
38
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #include <stdio.h>
42 #include <unistd.h>
43 #include <dirent.h>
44 #include <errno.h>
45 #include <stdio.h>
46 #include <string.h>
47 #include <stdlib.h>
48 #include <fcntl.h>
49 #include <signal.h>
50 #include <termios.h>
51 #include <getopt.h> /* struct option */
52 #include <sys/ioctl.h>
53 #include <sys/sysmacros.h>     /* major() and minor() */
54 #include "busybox.h"
55 #ifdef CONFIG_SELINUX
56 #include <selinux/selinux.h>   /* for is_selinux_enabled() */
57 #endif
58
59 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
60 #include <time.h>
61 #endif
62
63 /* what is the overall style of the listing */
64 #define STYLE_AUTO      (0)
65 #define STYLE_COLUMNS   (1U<<21)        /* fill columns */
66 #define STYLE_LONG      (2U<<21)        /* one record per line, extended info */
67 #define STYLE_SINGLE    (3U<<21)        /* one record per line */
68
69 #define STYLE_MASK                 STYLE_SINGLE
70 #define STYLE_ONE_RECORD_FLAG      STYLE_LONG
71
72 /* 51306 lrwxrwxrwx  1 root     root         2 May 11 01:43 /bin/view -> vi* */
73 /* what file information will be listed */
74 #define LIST_INO        (1U<<0)
75 #define LIST_BLOCKS     (1U<<1)
76 #define LIST_MODEBITS   (1U<<2)
77 #define LIST_NLINKS     (1U<<3)
78 #define LIST_ID_NAME    (1U<<4)
79 #define LIST_ID_NUMERIC (1U<<5)
80 #define LIST_CONTEXT    (1U<<6)
81 #define LIST_SIZE       (1U<<7)
82 #define LIST_DEV        (1U<<8)
83 #define LIST_DATE_TIME  (1U<<9)
84 #define LIST_FULLTIME   (1U<<10)
85 #define LIST_FILENAME   (1U<<11)
86 #define LIST_SYMLINK    (1U<<12)
87 #define LIST_FILETYPE   (1U<<13)
88 #define LIST_EXEC       (1U<<14)
89
90 #define LIST_MASK       ((LIST_EXEC << 1) - 1)
91
92 /* what files will be displayed */
93 /* TODO -- We may be able to make DISP_NORMAL 0 to save a bit slot. */
94 #define DISP_NORMAL     (1U<<14)        /* show normal filenames */
95 #define DISP_DIRNAME    (1U<<15)        /* 2 or more items? label directories */
96 #define DISP_HIDDEN     (1U<<16)        /* show filenames starting with .  */
97 #define DISP_DOT        (1U<<17)        /* show . and .. */
98 #define DISP_NOLIST     (1U<<18)        /* show directory as itself, not contents */
99 #define DISP_RECURSIVE  (1U<<19)        /* show directory and everything below it */
100 #define DISP_ROWS       (1U<<20)        /* print across rows */
101
102 #define DISP_MASK       (((DISP_ROWS << 1) - 1) & ~(DISP_NORMAL - 1))
103
104 #ifdef CONFIG_FEATURE_LS_SORTFILES
105 /* how will the files be sorted */
106 #define SORT_ORDER_FORWARD   0          /* sort in reverse order */
107 #define SORT_ORDER_REVERSE   (1U<<27)   /* sort in reverse order */
108
109 #define SORT_NAME      0                /* sort by file name */
110 #define SORT_SIZE      (1U<<28)         /* sort by file size */
111 #define SORT_ATIME     (2U<<28)         /* sort by last access time */
112 #define SORT_CTIME     (3U<<28)         /* sort by last change time */
113 #define SORT_MTIME     (4U<<28)         /* sort by last modification time */
114 #define SORT_VERSION   (5U<<28)         /* sort by version */
115 #define SORT_EXT       (6U<<28)         /* sort by file name extension */
116 #define SORT_DIR       (7U<<28)         /* sort by file or directory */
117
118 #define SORT_MASK      (7U<<28)
119 #endif
120
121 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
122 /* which of the three times will be used */
123 #define TIME_MOD       0
124 #define TIME_CHANGE    (1U<<23)
125 #define TIME_ACCESS    (1U<<24)
126
127 #define TIME_MASK      (3U<<23)
128 #endif
129
130 #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
131 #define FOLLOW_LINKS   (1U<<25)
132 #endif
133 #ifdef CONFIG_FEATURE_HUMAN_READABLE
134 #define LS_DISP_HR     (1U<<26)
135 #endif
136
137 #define LIST_SHORT      (LIST_FILENAME)
138 #define LIST_ISHORT     (LIST_INO | LIST_FILENAME)
139 #define LIST_LONG       (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
140                                                 LIST_DATE_TIME | LIST_FILENAME | LIST_SYMLINK)
141 #define LIST_ILONG      (LIST_INO | LIST_LONG)
142
143 #define SPLIT_DIR      1
144 #define SPLIT_FILE     0
145 #define SPLIT_SUBDIR   2
146
147 #define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
148 #define TYPECHAR(mode)  ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
149
150 #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
151 # define APPCHAR(mode)   ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
152 #endif
153
154 /* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */
155 #ifdef CONFIG_FEATURE_LS_COLOR
156
157 static int show_color = 0;
158
159 /* long option entry used only for --color, which has no short option
160  * equivalent.  */
161 static const struct option ls_color_opt[] =
162 {
163         {"color", optional_argument, NULL, 1},
164         {NULL, 0, NULL, 0}
165 };
166
167 #define COLOR(mode)     ("\000\043\043\043\042\000\043\043"\
168                          "\000\000\044\000\043\000\000\040" [TYPEINDEX(mode)])
169 #define ATTR(mode)      ("\00\00\01\00\01\00\01\00"\
170                          "\00\00\01\00\01\00\00\01" [TYPEINDEX(mode)])
171 #endif
172
173 /*
174  * a directory entry and its stat info are stored here
175  */
176 struct dnode {                  /* the basic node */
177         char *name;             /* the dir entry name */
178         char *fullname;         /* the dir entry name */
179         int   allocated;
180         struct stat dstat;      /* the file stat info */
181 #ifdef CONFIG_SELINUX
182         security_context_t sid;
183 #endif
184         struct dnode *next;     /* point at the next node */
185 };
186 typedef struct dnode dnode_t;
187
188 static struct dnode **list_dir(const char *);
189 static struct dnode **dnalloc(int);
190 static int list_single(struct dnode *);
191
192 static unsigned int all_fmt;
193
194 #ifdef CONFIG_FEATURE_AUTOWIDTH
195 static int terminal_width = TERMINAL_WIDTH;
196 static unsigned short tabstops = COLUMN_GAP;
197 #else
198 #define tabstops COLUMN_GAP
199 #define terminal_width TERMINAL_WIDTH
200 #endif
201
202 static int status = EXIT_SUCCESS;
203
204 static struct dnode *my_stat(char *fullname, char *name)
205 {
206         struct stat dstat;
207         struct dnode *cur;
208 #ifdef CONFIG_SELINUX
209         security_context_t sid=NULL;
210 #endif
211         int rc;
212
213 #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
214         if (all_fmt & FOLLOW_LINKS) {
215 #ifdef CONFIG_SELINUX
216                 if (is_selinux_enabled())  {
217                   rc=0; /*  Set the number which means success before hand.  */
218                   rc = getfilecon(fullname,&sid);
219                 }
220 #endif
221                 rc = stat(fullname, &dstat);
222                 if(rc) {
223                         bb_perror_msg("%s", fullname);
224                         status = EXIT_FAILURE;
225                         return 0;
226                 }
227         } else
228 #endif
229         {
230 #ifdef CONFIG_SELINUX
231                 if  (is_selinux_enabled())  {
232                   rc=0; /*  Set the number which means success before hand.  */
233                   rc = lgetfilecon(fullname,&sid);
234                 }
235 #endif
236                 rc = lstat(fullname, &dstat);
237                 if(rc) {
238                         bb_perror_msg("%s", fullname);
239                         status = EXIT_FAILURE;
240                         return 0;
241                 }
242         }
243
244         cur = (struct dnode *) xmalloc(sizeof(struct dnode));
245         cur->fullname = fullname;
246         cur->name = name;
247         cur->dstat = dstat;
248 #ifdef CONFIG_SELINUX
249         cur->sid = sid;
250 #endif
251         return cur;
252 }
253
254 /*----------------------------------------------------------------------*/
255 #ifdef CONFIG_FEATURE_LS_COLOR
256 static char fgcolor(mode_t mode)
257 {
258         /* Check wheter the file is existing (if so, color it red!) */
259         if (errno == ENOENT) {
260                 return '\037';
261         }
262         if (LIST_EXEC && S_ISREG(mode)
263                 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
264                 return COLOR(0xF000);   /* File is executable ... */
265         return COLOR(mode);
266 }
267
268 /*----------------------------------------------------------------------*/
269 static char bgcolor(mode_t mode)
270 {
271         if (LIST_EXEC && S_ISREG(mode)
272                 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
273                 return ATTR(0xF000);    /* File is executable ... */
274         return ATTR(mode);
275 }
276 #endif
277
278 /*----------------------------------------------------------------------*/
279 #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
280 static char append_char(mode_t mode)
281 {
282         if (!(all_fmt & LIST_FILETYPE))
283                 return '\0';
284         if ((all_fmt & LIST_EXEC) && S_ISREG(mode)
285                 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
286                 return '*';
287         return APPCHAR(mode);
288 }
289 #endif
290
291 /*----------------------------------------------------------------------*/
292
293 #define countdirs(A,B) count_dirs((A), (B), 1)
294 #define countsubdirs(A,B) count_dirs((A), (B), 0)
295
296 static int count_dirs(struct dnode **dn, int nfiles, int notsubdirs)
297 {
298         int i, dirs;
299
300         if (dn == NULL || nfiles < 1)
301                 return (0);
302         dirs = 0;
303         for (i = 0; i < nfiles; i++) {
304                 if (S_ISDIR(dn[i]->dstat.st_mode)
305                         && (notsubdirs ||
306                         ((dn[i]->name[0] != '.') || (dn[i]->name[1]
307                                                 && ((dn[i]->name[1] != '.')
308                                                 || dn[i]->name[2])))))
309                         dirs++;
310         }
311         return (dirs);
312 }
313
314 static int countfiles(struct dnode **dnp)
315 {
316         int nfiles;
317         struct dnode *cur;
318
319         if (dnp == NULL)
320                 return (0);
321         nfiles = 0;
322         for (cur = dnp[0]; cur->next != NULL; cur = cur->next)
323                 nfiles++;
324         nfiles++;
325         return (nfiles);
326 }
327
328 /* get memory to hold an array of pointers */
329 static struct dnode **dnalloc(int num)
330 {
331         struct dnode **p;
332
333         if (num < 1)
334                 return (NULL);
335
336         p = (struct dnode **) xcalloc((size_t) num, (size_t) (sizeof(struct dnode *)));
337         return (p);
338 }
339
340 #ifdef CONFIG_FEATURE_LS_RECURSIVE
341 static void dfree(struct dnode **dnp, int nfiles)
342 {
343         int i;
344
345         if (dnp == NULL)
346                 return;
347
348         for (i = 0; i < nfiles; i++) {
349                 struct dnode *cur = dnp[i];
350                 if(cur->allocated)
351                         free(cur->fullname);    /* free the filename */
352                 free(cur);              /* free the dnode */
353         }
354         free(dnp);                      /* free the array holding the dnode pointers */
355 }
356 #endif
357
358 static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
359 {
360         int dncnt, i, d;
361         struct dnode **dnp;
362
363         if (dn == NULL || nfiles < 1)
364                 return (NULL);
365
366         /* count how many dirs and regular files there are */
367         if (which == SPLIT_SUBDIR)
368                 dncnt = countsubdirs(dn, nfiles);
369         else {
370                 dncnt = countdirs(dn, nfiles);  /* assume we are looking for dirs */
371                 if (which == SPLIT_FILE)
372                         dncnt = nfiles - dncnt; /* looking for files */
373         }
374
375         /* allocate a file array and a dir array */
376         dnp = dnalloc(dncnt);
377
378         /* copy the entrys into the file or dir array */
379         for (d = i = 0; i < nfiles; i++) {
380                 if (S_ISDIR(dn[i]->dstat.st_mode)) {
381                         if (which & (SPLIT_DIR|SPLIT_SUBDIR)) {
382                                 if ((which & SPLIT_DIR)
383                                         || ((dn[i]->name[0] != '.')
384                                                 || (dn[i]->name[1]
385                                                         && ((dn[i]->name[1] != '.')
386                                                                 || dn[i]->name[2])))) {
387                                                                         dnp[d++] = dn[i];
388                                                                 }
389                         }
390                 } else if (!(which & (SPLIT_DIR|SPLIT_SUBDIR))) {
391                         dnp[d++] = dn[i];
392                 }
393         }
394         return (dnp);
395 }
396
397 /*----------------------------------------------------------------------*/
398 #ifdef CONFIG_FEATURE_LS_SORTFILES
399 static int sortcmp(const void *a, const void *b)
400 {
401         struct dnode *d1 = *(struct dnode **)a;
402         struct dnode *d2 = *(struct dnode **)b;
403         unsigned int sort_opts = all_fmt & SORT_MASK;
404         int dif;
405
406         dif = 0;                        /* assume SORT_NAME */
407         if (sort_opts == SORT_SIZE) {
408                 dif = (int) (d2->dstat.st_size - d1->dstat.st_size);
409         } else if (sort_opts == SORT_ATIME) {
410                 dif = (int) (d2->dstat.st_atime - d1->dstat.st_atime);
411         } else if (sort_opts == SORT_CTIME) {
412                 dif = (int) (d2->dstat.st_ctime - d1->dstat.st_ctime);
413         } else if (sort_opts == SORT_MTIME) {
414                 dif = (int) (d2->dstat.st_mtime - d1->dstat.st_mtime);
415         } else if (sort_opts == SORT_DIR) {
416                 dif = S_ISDIR(d2->dstat.st_mode) - S_ISDIR(d1->dstat.st_mode);
417                 /* } else if (sort_opts == SORT_VERSION) { */
418                 /* } else if (sort_opts == SORT_EXT) { */
419         }
420
421         if (dif == 0) {
422                 /* sort by name- may be a tie_breaker for time or size cmp */
423 #ifdef CONFIG_LOCALE_SUPPORT
424                 dif = strcoll(d1->name, d2->name);
425 #else
426                 dif = strcmp(d1->name, d2->name);
427 #endif
428         }
429
430         if (all_fmt & SORT_ORDER_REVERSE) {
431                 dif = -dif;
432         }
433         return (dif);
434 }
435
436 /*----------------------------------------------------------------------*/
437 static void dnsort(struct dnode **dn, int size)
438 {
439         qsort(dn, size, sizeof *dn, sortcmp);
440 }
441 #endif
442
443 /*----------------------------------------------------------------------*/
444 static void showfiles(struct dnode **dn, int nfiles)
445 {
446         int i, ncols, nrows, row, nc;
447         int column = 0;
448         int nexttab = 0;
449         int column_width = 0; /* for STYLE_LONG and STYLE_SINGLE not used */
450
451         if (dn == NULL || nfiles < 1)
452                 return;
453
454         if (all_fmt & STYLE_ONE_RECORD_FLAG) {
455                 ncols = 1;
456         } else {
457                 /* find the longest file name-  use that as the column width */
458                 for (i = 0; i < nfiles; i++) {
459                         int len = strlen(dn[i]->name) +
460 #ifdef CONFIG_SELINUX
461                         ((all_fmt & LIST_CONTEXT) ? 33 : 0) +
462 #endif
463                         ((all_fmt & LIST_INO) ? 8 : 0) +
464                         ((all_fmt & LIST_BLOCKS) ? 5 : 0);
465                         if (column_width < len)
466                                 column_width = len;
467                 }
468                 column_width += tabstops;
469                 ncols = (int) (terminal_width / column_width);
470         }
471
472         if (ncols > 1) {
473                 nrows = nfiles / ncols;
474                 if ((nrows * ncols) < nfiles)
475                         nrows++;                /* round up fractionals */
476         } else {
477                 nrows = nfiles;
478                 ncols = 1;
479         }
480
481         for (row = 0; row < nrows; row++) {
482                 for (nc = 0; nc < ncols; nc++) {
483                         /* reach into the array based on the column and row */
484                         i = (nc * nrows) + row; /* assume display by column */
485                         if (all_fmt & DISP_ROWS)
486                                 i = (row * ncols) + nc; /* display across row */
487                         if (i < nfiles) {
488                                 if (column > 0) {
489                                         nexttab -= column;
490                                         while (nexttab--) {
491                                                 putchar(' ');
492                                                 column++;
493                                         }
494                         }
495                                 nexttab = column + column_width;
496                                 column += list_single(dn[i]);
497                 }
498                 }
499                 putchar('\n');
500                 column = 0;
501         }
502 }
503
504 /*----------------------------------------------------------------------*/
505 static void showdirs(struct dnode **dn, int ndirs, int first)
506 {
507         int i, nfiles;
508         struct dnode **subdnp;
509
510 #ifdef CONFIG_FEATURE_LS_RECURSIVE
511         int dndirs;
512         struct dnode **dnd;
513 #endif
514
515         if (dn == NULL || ndirs < 1)
516                 return;
517
518         for (i = 0; i < ndirs; i++) {
519                 if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) {
520                         if (!first)
521                                 printf("\n");
522                         first = 0;
523                         printf("%s:\n", dn[i]->fullname);
524                 }
525                 subdnp = list_dir(dn[i]->fullname);
526                 nfiles = countfiles(subdnp);
527                 if (nfiles > 0) {
528                         /* list all files at this level */
529 #ifdef CONFIG_FEATURE_LS_SORTFILES
530                         dnsort(subdnp, nfiles);
531 #endif
532                         showfiles(subdnp, nfiles);
533 #ifdef CONFIG_FEATURE_LS_RECURSIVE
534                         if (all_fmt & DISP_RECURSIVE) {
535                                 /* recursive- list the sub-dirs */
536                                 dnd = splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
537                                 dndirs = countsubdirs(subdnp, nfiles);
538                                 if (dndirs > 0) {
539 #ifdef CONFIG_FEATURE_LS_SORTFILES
540                                         dnsort(dnd, dndirs);
541 #endif
542                                         showdirs(dnd, dndirs, 0);
543                                         free(dnd);      /* free the array of dnode pointers to the dirs */
544                                 }
545                         }
546                         dfree(subdnp, nfiles);  /* free the dnodes and the fullname mem */
547 #endif
548                 }
549         }
550 }
551
552 /*----------------------------------------------------------------------*/
553 static struct dnode **list_dir(const char *path)
554 {
555         struct dnode *dn, *cur, **dnp;
556         struct dirent *entry;
557         DIR *dir;
558         int i, nfiles;
559
560         if (path == NULL)
561                 return (NULL);
562
563         dn = NULL;
564         nfiles = 0;
565         dir = bb_opendir(path);
566         if (dir == NULL) {
567                 status = EXIT_FAILURE;
568                 return (NULL);  /* could not open the dir */
569         }
570         while ((entry = readdir(dir)) != NULL) {
571                 char *fullname;
572
573                 /* are we going to list the file- it may be . or .. or a hidden file */
574                 if (entry->d_name[0] == '.') {
575                         if ((entry->d_name[1] == 0 || (
576                                 entry->d_name[1] == '.'
577                                 && entry->d_name[2] == 0))
578                                         && !(all_fmt & DISP_DOT))
579                         continue;
580                         if (!(all_fmt & DISP_HIDDEN))
581                         continue;
582                 }
583                 fullname = concat_path_file(path, entry->d_name);
584                 cur = my_stat(fullname, strrchr(fullname, '/') + 1);
585                 if (!cur)
586                         continue;
587                 cur->allocated = 1;
588                 cur->next = dn;
589                 dn = cur;
590                 nfiles++;
591         }
592         closedir(dir);
593
594         /* now that we know how many files there are
595            ** allocate memory for an array to hold dnode pointers
596          */
597         if (dn == NULL)
598                 return (NULL);
599         dnp = dnalloc(nfiles);
600         for (i = 0, cur = dn; i < nfiles; i++) {
601                 dnp[i] = cur;   /* save pointer to node in array */
602                 cur = cur->next;
603         }
604
605         return (dnp);
606 }
607
608 /*----------------------------------------------------------------------*/
609 static int list_single(struct dnode *dn)
610 {
611         int i, column = 0;
612
613 #ifdef CONFIG_FEATURE_LS_USERNAME
614         char scratch[16];
615 #endif
616 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
617         char *filetime;
618         time_t ttime, age;
619 #endif
620 #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
621         struct stat info;
622         char append;
623 #endif
624
625         if (dn->fullname == NULL)
626                 return (0);
627
628 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
629         ttime = dn->dstat.st_mtime;     /* the default time */
630         if (all_fmt & TIME_ACCESS)
631                 ttime = dn->dstat.st_atime;
632         if (all_fmt & TIME_CHANGE)
633                 ttime = dn->dstat.st_ctime;
634         filetime = ctime(&ttime);
635 #endif
636 #ifdef CONFIG_FEATURE_LS_FILETYPES
637         append = append_char(dn->dstat.st_mode);
638 #endif
639
640         for (i = 0; i <= 31; i++) {
641                 switch (all_fmt & (1 << i)) {
642                 case LIST_INO:
643                         column += printf("%7ld ", (long int) dn->dstat.st_ino);
644                         break;
645                 case LIST_BLOCKS:
646 #if _FILE_OFFSET_BITS == 64
647                         column += printf("%4lld ", (long long)dn->dstat.st_blocks >> 1);
648 #else
649                         column += printf("%4ld ", dn->dstat.st_blocks >> 1);
650 #endif
651                         break;
652                 case LIST_MODEBITS:
653                         column += printf("%-10s ", (char *) bb_mode_string(dn->dstat.st_mode));
654                         break;
655                 case LIST_NLINKS:
656                         column += printf("%4ld ", (long) dn->dstat.st_nlink);
657                         break;
658                 case LIST_ID_NAME:
659 #ifdef CONFIG_FEATURE_LS_USERNAME
660                         bb_getpwuid(scratch, dn->dstat.st_uid, sizeof(scratch));
661                         printf("%-8.8s ", scratch);
662                         bb_getgrgid(scratch, dn->dstat.st_gid, sizeof(scratch));
663                         printf("%-8.8s", scratch);
664                         column += 17;
665                         break;
666 #endif
667                 case LIST_ID_NUMERIC:
668                         column += printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
669                         break;
670                 case LIST_SIZE:
671                 case LIST_DEV:
672                         if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
673                                 column += printf("%4d, %3d ", (int) major(dn->dstat.st_rdev),
674                                            (int) minor(dn->dstat.st_rdev));
675                         } else {
676 #ifdef CONFIG_FEATURE_HUMAN_READABLE
677                                 if (all_fmt & LS_DISP_HR) {
678                                         column += printf("%9s ",
679                                                         make_human_readable_str(dn->dstat.st_size, 1, 0));
680                                 } else
681 #endif
682                                 {
683 #if _FILE_OFFSET_BITS == 64
684                                         column += printf("%9lld ", (long long) dn->dstat.st_size);
685 #else
686                                         column += printf("%9ld ", dn->dstat.st_size);
687 #endif
688                                 }
689                         }
690                         break;
691 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
692                 case LIST_FULLTIME:
693                         printf("%24.24s ", filetime);
694                         column += 25;
695                         break;
696                 case LIST_DATE_TIME:
697                         if ((all_fmt & LIST_FULLTIME) == 0) {
698                                 age = time(NULL) - ttime;
699                                 printf("%6.6s ", filetime + 4);
700                                 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
701                                         /* hh:mm if less than 6 months old */
702                                         printf("%5.5s ", filetime + 11);
703                                 } else {
704                                         printf(" %4.4s ", filetime + 20);
705                                 }
706                                 column += 13;
707                         }
708                         break;
709 #endif
710 #ifdef CONFIG_SELINUX
711                 case LIST_CONTEXT:
712                         {
713                                 char context[80];
714                                 int len = 0;
715
716                                 if (dn->sid) {
717                                   /*  I assume sid initilized with NULL  */
718                                   len = strlen(dn->sid)+1;
719                                   safe_strncpy(context, dn->sid, len);
720                                   freecon(dn->sid);
721                                 }else {
722                                   safe_strncpy(context, "unknown", 8);
723                                 }
724                                 printf("%-32s ", context);
725                                 column += MAX(33, len);
726                         }
727                         break;
728 #endif
729                 case LIST_FILENAME:
730 #ifdef CONFIG_FEATURE_LS_COLOR
731                         errno = 0;
732                         if (show_color && !lstat(dn->fullname, &info)) {
733                                 printf("\033[%d;%dm", bgcolor(info.st_mode),
734                                            fgcolor(info.st_mode));
735                         }
736 #endif
737                         column += printf("%s", dn->name);
738 #ifdef CONFIG_FEATURE_LS_COLOR
739                         if (show_color) {
740                                 printf("\033[0m");
741                         }
742 #endif
743                         break;
744                 case LIST_SYMLINK:
745                         if (S_ISLNK(dn->dstat.st_mode)) {
746                                 char *lpath = xreadlink(dn->fullname);
747
748                                 if (lpath) {
749                                         printf(" -> ");
750 #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
751                                         if (!stat(dn->fullname, &info)) {
752                                                 append = append_char(info.st_mode);
753                                         }
754 #endif
755 #ifdef CONFIG_FEATURE_LS_COLOR
756                                         if (show_color) {
757                                                 errno = 0;
758                                                 printf("\033[%d;%dm", bgcolor(info.st_mode),
759                                                            fgcolor(info.st_mode));
760                                         }
761 #endif
762                                         column += printf("%s", lpath) + 4;
763 #ifdef CONFIG_FEATURE_LS_COLOR
764                                         if (show_color) {
765                                                 printf("\033[0m");
766                                         }
767 #endif
768                                         free(lpath);
769                                 }
770                         }
771                         break;
772 #ifdef CONFIG_FEATURE_LS_FILETYPES
773                 case LIST_FILETYPE:
774                         if (append != '\0') {
775                                 printf("%1c", append);
776                                 column++;
777                         }
778                         break;
779 #endif
780                 }
781         }
782
783         return column;
784 }
785
786 /*----------------------------------------------------------------------*/
787
788 /* "[-]Cadil1", POSIX mandated options, busybox always supports */
789 /* "[-]gnsx", POSIX non-mandated options, busybox always supports */
790 /* "[-]Ak" GNU options, busybox always supports */
791 /* "[-]FLRctur", POSIX mandated options, busybox optionally supports */
792 /* "[-]p", POSIX non-mandated options, busybox optionally supports */
793 /* "[-]SXvThw", GNU options, busybox optionally supports */
794 /* "[-]K", SELinux mandated options, busybox optionally supports */
795 /* "[-]e", I think we made this one up */
796
797 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
798 # define LS_STR_TIMESTAMPS      "cetu"
799 #else
800 # define LS_STR_TIMESTAMPS      ""
801 #endif
802
803 #ifdef CONFIG_FEATURE_LS_SORTFILES
804 # define LS_STR_SORTFILES       "SXrv"
805 #else
806 # define LS_STR_SORTFILES       ""
807 #endif
808
809 #ifdef CONFIG_FEATURE_LS_FILETYPES
810 # define LS_STR_FILETYPES       "Fp"
811 #else
812 # define LS_STR_FILETYPES       ""
813 #endif
814
815 #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
816 # define LS_STR_FOLLOW_LINKS    "L"
817 #else
818 # define LS_STR_FOLLOW_LINKS    ""
819 #endif
820
821 #ifdef CONFIG_FEATURE_LS_RECURSIVE
822 # define LS_STR_RECURSIVE       "R"
823 #else
824 # define LS_STR_RECURSIVE       ""
825 #endif
826
827 #ifdef CONFIG_FEATURE_HUMAN_READABLE
828 # define LS_STR_HUMAN_READABLE  "h"
829 #else
830 # define LS_STR_HUMAN_READABLE  ""
831 #endif
832
833 #ifdef CONFIG_SELINUX
834 # define LS_STR_SELINUX "K"
835 #else
836 # define LS_STR_SELINUX ""
837 #endif
838
839 #ifdef CONFIG_FEATURE_AUTOWIDTH
840 # define LS_STR_AUTOWIDTH       "T:w:"
841 #else
842 # define LS_STR_AUTOWIDTH       ""
843 #endif
844
845 static const char ls_options[]="Cadil1gnsxAk" \
846         LS_STR_TIMESTAMPS \
847         LS_STR_SORTFILES \
848         LS_STR_FILETYPES \
849         LS_STR_FOLLOW_LINKS \
850         LS_STR_RECURSIVE \
851         LS_STR_HUMAN_READABLE \
852         LS_STR_SELINUX \
853         LS_STR_AUTOWIDTH;
854
855 #define LIST_MASK_TRIGGER       0
856 #define STYLE_MASK_TRIGGER      STYLE_MASK
857 #define SORT_MASK_TRIGGER       SORT_MASK
858 #define DISP_MASK_TRIGGER       DISP_ROWS
859 #define TIME_MASK_TRIGGER       TIME_MASK
860
861 static const unsigned opt_flags[] = {
862         LIST_SHORT | STYLE_COLUMNS,     /* C */
863         DISP_HIDDEN | DISP_DOT,         /* a */
864         DISP_NOLIST,                            /* d */
865         LIST_INO,                                       /* i */
866         LIST_LONG | STYLE_LONG,         /* l - remember LS_DISP_HR in mask! */
867         LIST_SHORT | STYLE_SINGLE,      /* 1 */
868         0,                                                      /* g - ingored */
869         LIST_ID_NUMERIC,                        /* n */
870         LIST_BLOCKS,                            /* s */
871         DISP_ROWS,                                      /* x */
872         DISP_HIDDEN,                            /* A */
873 #ifdef CONFIG_SELINUX
874         LIST_CONTEXT,                           /* k */
875 #else
876         0,                                                      /* k - ingored */
877 #endif
878 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
879 # ifdef CONFIG_FEATURE_LS_SORTFILES
880         TIME_CHANGE | SORT_CTIME,       /* c */
881 # else
882         TIME_CHANGE,                            /* c */
883 # endif
884         LIST_FULLTIME,                          /* e */
885 # ifdef CONFIG_FEATURE_LS_SORTFILES
886         SORT_MTIME,                                     /* t */
887 # else
888         0,                                                      /* t - ignored -- is this correct? */
889 # endif
890 # ifdef CONFIG_FEATURE_LS_SORTFILES
891         TIME_ACCESS | SORT_ATIME,       /* u */
892 # else
893         TIME_ACCESS,                            /* u */
894 # endif
895 #endif
896 #ifdef CONFIG_FEATURE_LS_SORTFILES
897         SORT_SIZE,                                      /* S */
898         SORT_EXT,                                       /* X */
899         SORT_ORDER_REVERSE,                     /* r */
900         SORT_VERSION,                           /* v */
901 #endif
902 #ifdef CONFIG_FEATURE_LS_FILETYPES
903         LIST_FILETYPE | LIST_EXEC,      /* F */
904         LIST_FILETYPE,                          /* p */
905 #endif
906 #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
907         FOLLOW_LINKS,                           /* L */
908 #endif
909 #ifdef CONFIG_FEATURE_LS_RECURSIVE
910         DISP_RECURSIVE,                         /* R */
911 #endif
912 #ifdef CONFIG_FEATURE_HUMAN_READABLE
913         LS_DISP_HR,                                     /* h */
914 #endif
915 #ifdef CONFIG_SELINUX
916         LIST_MODEBITS|LIST_NLINKS|LIST_CONTEXT|LIST_SIZE|LIST_DATE_TIME, /* K */
917 #endif
918 #ifdef CONFIG_FEATURE_AUTOWIDTH
919        0, 0,                    /* T, w - ignored */
920 #endif
921         (1U<<31)
922 };
923
924
925 /*----------------------------------------------------------------------*/
926
927 int ls_main(int argc, char **argv)
928 {
929         struct dnode **dnd;
930         struct dnode **dnf;
931         struct dnode **dnp;
932         struct dnode *dn;
933         struct dnode *cur;
934         long opt;
935         int nfiles = 0;
936         int dnfiles;
937         int dndirs;
938         int oi;
939         int ac;
940         int i;
941         char **av;
942 #ifdef CONFIG_FEATURE_AUTOWIDTH
943         char *tabstops_str = NULL;
944         char *terminal_width_str = NULL;
945 #endif
946 #ifdef CONFIG_FEATURE_LS_COLOR
947         char *color_opt;
948 #endif
949
950         all_fmt = LIST_SHORT | DISP_NORMAL | STYLE_AUTO
951 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
952                 | TIME_MOD
953 #endif
954 #ifdef CONFIG_FEATURE_LS_SORTFILES
955                 | SORT_NAME | SORT_ORDER_FORWARD
956 #endif
957                 ;
958
959 #ifdef CONFIG_FEATURE_AUTOWIDTH
960         /* Obtain the terminal width.  */
961         get_terminal_width_height(STDOUT_FILENO, &terminal_width, NULL);
962         /* Go one less... */
963         terminal_width--;
964 #endif
965
966 #ifdef CONFIG_FEATURE_LS_COLOR
967         bb_applet_long_options = ls_color_opt;
968 #endif
969
970         /* process options */
971 #ifdef CONFIG_FEATURE_AUTOWIDTH
972         opt = bb_getopt_ulflags(argc, argv, ls_options, &tabstops_str, &terminal_width_str
973 #ifdef CONFIG_FEATURE_LS_COLOR
974                 , &color_opt
975 #endif
976                 );
977         if (tabstops_str) {
978                 tabstops = atoi(tabstops_str);
979         }
980         if (terminal_width_str) {
981                 terminal_width = atoi(terminal_width_str);
982         }
983 #else
984         opt = bb_getopt_ulflags(argc, argv, ls_options
985 #ifdef CONFIG_FEATURE_LS_COLOR
986                 , &color_opt
987 #endif
988                 );
989 #endif
990         for (i = 0; opt_flags[i] != (1U<<31); i++) {
991                 if (opt & (1 << i)) {
992                         unsigned int flags = opt_flags[i];
993
994                         if (flags & LIST_MASK_TRIGGER) {
995                                 all_fmt &= ~LIST_MASK;
996                         }
997                         if (flags & STYLE_MASK_TRIGGER) {
998                                 all_fmt &= ~STYLE_MASK;
999                         }
1000 #ifdef CONFIG_FEATURE_LS_SORTFILES
1001                         if (flags & SORT_MASK_TRIGGER) {
1002                                 all_fmt &= ~SORT_MASK;
1003                         }
1004 #endif
1005                         if (flags & DISP_MASK_TRIGGER) {
1006                                 all_fmt &= ~DISP_MASK;
1007                         }
1008 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
1009                         if (flags & TIME_MASK_TRIGGER) {
1010                                 all_fmt &= ~TIME_MASK;
1011                         }
1012 #endif
1013                         if (flags & LIST_CONTEXT) {
1014                                 all_fmt |= STYLE_SINGLE;
1015                         }
1016 #ifdef CONFIG_FEATURE_HUMAN_READABLE
1017                         if (opt == 'l') {
1018                                 all_fmt &= ~LS_DISP_HR;
1019                         }
1020 #endif
1021                         all_fmt |= flags;
1022                 }
1023         }
1024
1025 #ifdef CONFIG_FEATURE_LS_COLOR
1026         {
1027                 /* find color bit value - last position for short getopt */
1028
1029 #if CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
1030                 char *p;
1031
1032                 if ((p = getenv ("LS_COLORS")) != NULL &&
1033                         (*p == '\0' || (strcmp(p, "none") == 0))) {
1034                         ;
1035                 } else if (isatty(STDOUT_FILENO)) {
1036                         show_color = 1;
1037                 }
1038 #endif
1039
1040                 if((opt & (1 << i))) {  /* next flag after short options */
1041                         if (color_opt == NULL || strcmp("always", color_opt) == 0)
1042                                 show_color = 1;
1043                         else if (color_opt != NULL && strcmp("never", color_opt) == 0)
1044                                 show_color = 0;
1045                         else if (color_opt != NULL && strcmp("auto", color_opt) == 0 && isatty(STDOUT_FILENO))
1046                                 show_color = 1;
1047                 }
1048         }
1049 #endif
1050
1051         /* sort out which command line options take precedence */
1052 #ifdef CONFIG_FEATURE_LS_RECURSIVE
1053         if (all_fmt & DISP_NOLIST)
1054                 all_fmt &= ~DISP_RECURSIVE;     /* no recurse if listing only dir */
1055 #endif
1056 #if defined (CONFIG_FEATURE_LS_TIMESTAMPS) && defined (CONFIG_FEATURE_LS_SORTFILES)
1057         if (all_fmt & TIME_CHANGE)
1058                 all_fmt = (all_fmt & ~SORT_MASK) | SORT_CTIME;
1059         if (all_fmt & TIME_ACCESS)
1060                 all_fmt = (all_fmt & ~SORT_MASK) | SORT_ATIME;
1061 #endif
1062         if ((all_fmt & STYLE_MASK) != STYLE_LONG) /* only for long list */
1063                 all_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC);
1064 #ifdef CONFIG_FEATURE_LS_USERNAME
1065         if ((all_fmt & STYLE_MASK) == STYLE_LONG && (all_fmt & LIST_ID_NUMERIC))
1066                 all_fmt &= ~LIST_ID_NAME;       /* don't list names if numeric uid */
1067 #endif
1068
1069         /* choose a display format */
1070         if ((all_fmt & STYLE_MASK) == STYLE_AUTO)
1071 #if STYLE_AUTO != 0
1072                 all_fmt = (all_fmt & ~STYLE_MASK)
1073                                 | (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
1074 #else
1075                 all_fmt |= (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
1076 #endif
1077
1078         /*
1079          * when there are no cmd line args we have to supply a default "." arg.
1080          * we will create a second argv array, "av" that will hold either
1081          * our created "." arg, or the real cmd line args.  The av array
1082          * just holds the pointers- we don't move the date the pointers
1083          * point to.
1084          */
1085         ac = argc - optind;     /* how many cmd line args are left */
1086         if (ac < 1) {
1087                 static const char * const dotdir[] = { "." };
1088
1089                 av = (char **) dotdir;
1090                 ac = 1;
1091         } else {
1092                 av = argv + optind;
1093         }
1094
1095         /* now, everything is in the av array */
1096         if (ac > 1)
1097                 all_fmt |= DISP_DIRNAME;        /* 2 or more items? label directories */
1098
1099         /* stuff the command line file names into an dnode array */
1100         dn = NULL;
1101         for (oi = 0; oi < ac; oi++) {
1102                 cur = my_stat(av[oi], av[oi]);
1103                 if (!cur)
1104                         continue;
1105                 cur->allocated = 0;
1106                 cur->next = dn;
1107                 dn = cur;
1108                 nfiles++;
1109         }
1110
1111         /* now that we know how many files there are
1112            ** allocate memory for an array to hold dnode pointers
1113          */
1114         dnp = dnalloc(nfiles);
1115         for (i = 0, cur = dn; i < nfiles; i++) {
1116                 dnp[i] = cur;   /* save pointer to node in array */
1117                 cur = cur->next;
1118         }
1119
1120         if (all_fmt & DISP_NOLIST) {
1121 #ifdef CONFIG_FEATURE_LS_SORTFILES
1122                 dnsort(dnp, nfiles);
1123 #endif
1124                 if (nfiles > 0)
1125                         showfiles(dnp, nfiles);
1126         } else {
1127                 dnd = splitdnarray(dnp, nfiles, SPLIT_DIR);
1128                 dnf = splitdnarray(dnp, nfiles, SPLIT_FILE);
1129                 dndirs = countdirs(dnp, nfiles);
1130                 dnfiles = nfiles - dndirs;
1131                 if (dnfiles > 0) {
1132 #ifdef CONFIG_FEATURE_LS_SORTFILES
1133                         dnsort(dnf, dnfiles);
1134 #endif
1135                         showfiles(dnf, dnfiles);
1136                         if (ENABLE_FEATURE_CLEAN_UP)
1137                                 free(dnf);
1138                 }
1139                 if (dndirs > 0) {
1140 #ifdef CONFIG_FEATURE_LS_SORTFILES
1141                         dnsort(dnd, dndirs);
1142 #endif
1143                         showdirs(dnd, dndirs, dnfiles == 0);
1144                         if (ENABLE_FEATURE_CLEAN_UP)
1145                                 free(dnd);
1146                 }
1147         }
1148         if (ENABLE_FEATURE_CLEAN_UP)
1149                 dfree(dnp, nfiles);
1150         return (status);
1151 }