Fix some warnings in allbareconfig.
[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 #else
357 #define dfree(...)
358 #endif
359
360 static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
361 {
362         int dncnt, i, d;
363         struct dnode **dnp;
364
365         if (dn == NULL || nfiles < 1)
366                 return (NULL);
367
368         /* count how many dirs and regular files there are */
369         if (which == SPLIT_SUBDIR)
370                 dncnt = countsubdirs(dn, nfiles);
371         else {
372                 dncnt = countdirs(dn, nfiles);  /* assume we are looking for dirs */
373                 if (which == SPLIT_FILE)
374                         dncnt = nfiles - dncnt; /* looking for files */
375         }
376
377         /* allocate a file array and a dir array */
378         dnp = dnalloc(dncnt);
379
380         /* copy the entrys into the file or dir array */
381         for (d = i = 0; i < nfiles; i++) {
382                 if (S_ISDIR(dn[i]->dstat.st_mode)) {
383                         if (which & (SPLIT_DIR|SPLIT_SUBDIR)) {
384                                 if ((which & SPLIT_DIR)
385                                         || ((dn[i]->name[0] != '.')
386                                                 || (dn[i]->name[1]
387                                                         && ((dn[i]->name[1] != '.')
388                                                                 || dn[i]->name[2])))) {
389                                                                         dnp[d++] = dn[i];
390                                                                 }
391                         }
392                 } else if (!(which & (SPLIT_DIR|SPLIT_SUBDIR))) {
393                         dnp[d++] = dn[i];
394                 }
395         }
396         return (dnp);
397 }
398
399 /*----------------------------------------------------------------------*/
400 #ifdef CONFIG_FEATURE_LS_SORTFILES
401 static int sortcmp(const void *a, const void *b)
402 {
403         struct dnode *d1 = *(struct dnode **)a;
404         struct dnode *d2 = *(struct dnode **)b;
405         unsigned int sort_opts = all_fmt & SORT_MASK;
406         int dif;
407
408         dif = 0;                        /* assume SORT_NAME */
409         if (sort_opts == SORT_SIZE) {
410                 dif = (int) (d2->dstat.st_size - d1->dstat.st_size);
411         } else if (sort_opts == SORT_ATIME) {
412                 dif = (int) (d2->dstat.st_atime - d1->dstat.st_atime);
413         } else if (sort_opts == SORT_CTIME) {
414                 dif = (int) (d2->dstat.st_ctime - d1->dstat.st_ctime);
415         } else if (sort_opts == SORT_MTIME) {
416                 dif = (int) (d2->dstat.st_mtime - d1->dstat.st_mtime);
417         } else if (sort_opts == SORT_DIR) {
418                 dif = S_ISDIR(d2->dstat.st_mode) - S_ISDIR(d1->dstat.st_mode);
419                 /* } else if (sort_opts == SORT_VERSION) { */
420                 /* } else if (sort_opts == SORT_EXT) { */
421         }
422
423         if (dif == 0) {
424                 /* sort by name- may be a tie_breaker for time or size cmp */
425 #ifdef CONFIG_LOCALE_SUPPORT
426                 dif = strcoll(d1->name, d2->name);
427 #else
428                 dif = strcmp(d1->name, d2->name);
429 #endif
430         }
431
432         if (all_fmt & SORT_ORDER_REVERSE) {
433                 dif = -dif;
434         }
435         return (dif);
436 }
437
438 /*----------------------------------------------------------------------*/
439 static void dnsort(struct dnode **dn, int size)
440 {
441         qsort(dn, size, sizeof *dn, sortcmp);
442 }
443 #endif
444
445 /*----------------------------------------------------------------------*/
446 static void showfiles(struct dnode **dn, int nfiles)
447 {
448         int i, ncols, nrows, row, nc;
449         int column = 0;
450         int nexttab = 0;
451         int column_width = 0; /* for STYLE_LONG and STYLE_SINGLE not used */
452
453         if (dn == NULL || nfiles < 1)
454                 return;
455
456         if (all_fmt & STYLE_ONE_RECORD_FLAG) {
457                 ncols = 1;
458         } else {
459                 /* find the longest file name-  use that as the column width */
460                 for (i = 0; i < nfiles; i++) {
461                         int len = strlen(dn[i]->name) +
462 #ifdef CONFIG_SELINUX
463                         ((all_fmt & LIST_CONTEXT) ? 33 : 0) +
464 #endif
465                         ((all_fmt & LIST_INO) ? 8 : 0) +
466                         ((all_fmt & LIST_BLOCKS) ? 5 : 0);
467                         if (column_width < len)
468                                 column_width = len;
469                 }
470                 column_width += tabstops;
471                 ncols = (int) (terminal_width / column_width);
472         }
473
474         if (ncols > 1) {
475                 nrows = nfiles / ncols;
476                 if ((nrows * ncols) < nfiles)
477                         nrows++;                /* round up fractionals */
478         } else {
479                 nrows = nfiles;
480                 ncols = 1;
481         }
482
483         for (row = 0; row < nrows; row++) {
484                 for (nc = 0; nc < ncols; nc++) {
485                         /* reach into the array based on the column and row */
486                         i = (nc * nrows) + row; /* assume display by column */
487                         if (all_fmt & DISP_ROWS)
488                                 i = (row * ncols) + nc; /* display across row */
489                         if (i < nfiles) {
490                                 if (column > 0) {
491                                         nexttab -= column;
492                                         while (nexttab--) {
493                                                 putchar(' ');
494                                                 column++;
495                                         }
496                         }
497                                 nexttab = column + column_width;
498                                 column += list_single(dn[i]);
499                 }
500                 }
501                 putchar('\n');
502                 column = 0;
503         }
504 }
505
506 /*----------------------------------------------------------------------*/
507 static void showdirs(struct dnode **dn, int ndirs, int first)
508 {
509         int i, nfiles;
510         struct dnode **subdnp;
511
512 #ifdef CONFIG_FEATURE_LS_RECURSIVE
513         int dndirs;
514         struct dnode **dnd;
515 #endif
516
517         if (dn == NULL || ndirs < 1)
518                 return;
519
520         for (i = 0; i < ndirs; i++) {
521                 if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) {
522                         if (!first)
523                                 printf("\n");
524                         first = 0;
525                         printf("%s:\n", dn[i]->fullname);
526                 }
527                 subdnp = list_dir(dn[i]->fullname);
528                 nfiles = countfiles(subdnp);
529                 if (nfiles > 0) {
530                         /* list all files at this level */
531 #ifdef CONFIG_FEATURE_LS_SORTFILES
532                         dnsort(subdnp, nfiles);
533 #endif
534                         showfiles(subdnp, nfiles);
535 #ifdef CONFIG_FEATURE_LS_RECURSIVE
536                         if (all_fmt & DISP_RECURSIVE) {
537                                 /* recursive- list the sub-dirs */
538                                 dnd = splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
539                                 dndirs = countsubdirs(subdnp, nfiles);
540                                 if (dndirs > 0) {
541 #ifdef CONFIG_FEATURE_LS_SORTFILES
542                                         dnsort(dnd, dndirs);
543 #endif
544                                         showdirs(dnd, dndirs, 0);
545                                         free(dnd);      /* free the array of dnode pointers to the dirs */
546                                 }
547                         }
548                         dfree(subdnp, nfiles);  /* free the dnodes and the fullname mem */
549 #endif
550                 }
551         }
552 }
553
554 /*----------------------------------------------------------------------*/
555 static struct dnode **list_dir(const char *path)
556 {
557         struct dnode *dn, *cur, **dnp;
558         struct dirent *entry;
559         DIR *dir;
560         int i, nfiles;
561
562         if (path == NULL)
563                 return (NULL);
564
565         dn = NULL;
566         nfiles = 0;
567         dir = bb_opendir(path);
568         if (dir == NULL) {
569                 status = EXIT_FAILURE;
570                 return (NULL);  /* could not open the dir */
571         }
572         while ((entry = readdir(dir)) != NULL) {
573                 char *fullname;
574
575                 /* are we going to list the file- it may be . or .. or a hidden file */
576                 if (entry->d_name[0] == '.') {
577                         if ((entry->d_name[1] == 0 || (
578                                 entry->d_name[1] == '.'
579                                 && entry->d_name[2] == 0))
580                                         && !(all_fmt & DISP_DOT))
581                         continue;
582                         if (!(all_fmt & DISP_HIDDEN))
583                         continue;
584                 }
585                 fullname = concat_path_file(path, entry->d_name);
586                 cur = my_stat(fullname, strrchr(fullname, '/') + 1);
587                 if (!cur)
588                         continue;
589                 cur->allocated = 1;
590                 cur->next = dn;
591                 dn = cur;
592                 nfiles++;
593         }
594         closedir(dir);
595
596         /* now that we know how many files there are
597            ** allocate memory for an array to hold dnode pointers
598          */
599         if (dn == NULL)
600                 return (NULL);
601         dnp = dnalloc(nfiles);
602         for (i = 0, cur = dn; i < nfiles; i++) {
603                 dnp[i] = cur;   /* save pointer to node in array */
604                 cur = cur->next;
605         }
606
607         return (dnp);
608 }
609
610 /*----------------------------------------------------------------------*/
611 static int list_single(struct dnode *dn)
612 {
613         int i, column = 0;
614
615 #ifdef CONFIG_FEATURE_LS_USERNAME
616         char scratch[16];
617 #endif
618 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
619         char *filetime;
620         time_t ttime, age;
621 #endif
622 #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
623         struct stat info;
624         char append;
625 #endif
626
627         if (dn->fullname == NULL)
628                 return (0);
629
630 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
631         ttime = dn->dstat.st_mtime;     /* the default time */
632         if (all_fmt & TIME_ACCESS)
633                 ttime = dn->dstat.st_atime;
634         if (all_fmt & TIME_CHANGE)
635                 ttime = dn->dstat.st_ctime;
636         filetime = ctime(&ttime);
637 #endif
638 #ifdef CONFIG_FEATURE_LS_FILETYPES
639         append = append_char(dn->dstat.st_mode);
640 #endif
641
642         for (i = 0; i <= 31; i++) {
643                 switch (all_fmt & (1 << i)) {
644                 case LIST_INO:
645                         column += printf("%7ld ", (long int) dn->dstat.st_ino);
646                         break;
647                 case LIST_BLOCKS:
648 #if _FILE_OFFSET_BITS == 64
649                         column += printf("%4lld ", (long long)dn->dstat.st_blocks >> 1);
650 #else
651                         column += printf("%4ld ", dn->dstat.st_blocks >> 1);
652 #endif
653                         break;
654                 case LIST_MODEBITS:
655                         column += printf("%-10s ", (char *) bb_mode_string(dn->dstat.st_mode));
656                         break;
657                 case LIST_NLINKS:
658                         column += printf("%4ld ", (long) dn->dstat.st_nlink);
659                         break;
660                 case LIST_ID_NAME:
661 #ifdef CONFIG_FEATURE_LS_USERNAME
662                         bb_getpwuid(scratch, dn->dstat.st_uid, sizeof(scratch));
663                         printf("%-8.8s ", scratch);
664                         bb_getgrgid(scratch, dn->dstat.st_gid, sizeof(scratch));
665                         printf("%-8.8s", scratch);
666                         column += 17;
667                         break;
668 #endif
669                 case LIST_ID_NUMERIC:
670                         column += printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
671                         break;
672                 case LIST_SIZE:
673                 case LIST_DEV:
674                         if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
675                                 column += printf("%4d, %3d ", (int) major(dn->dstat.st_rdev),
676                                            (int) minor(dn->dstat.st_rdev));
677                         } else {
678 #ifdef CONFIG_FEATURE_HUMAN_READABLE
679                                 if (all_fmt & LS_DISP_HR) {
680                                         column += printf("%9s ",
681                                                         make_human_readable_str(dn->dstat.st_size, 1, 0));
682                                 } else
683 #endif
684                                 {
685 #if _FILE_OFFSET_BITS == 64
686                                         column += printf("%9lld ", (long long) dn->dstat.st_size);
687 #else
688                                         column += printf("%9ld ", dn->dstat.st_size);
689 #endif
690                                 }
691                         }
692                         break;
693 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
694                 case LIST_FULLTIME:
695                         printf("%24.24s ", filetime);
696                         column += 25;
697                         break;
698                 case LIST_DATE_TIME:
699                         if ((all_fmt & LIST_FULLTIME) == 0) {
700                                 age = time(NULL) - ttime;
701                                 printf("%6.6s ", filetime + 4);
702                                 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
703                                         /* hh:mm if less than 6 months old */
704                                         printf("%5.5s ", filetime + 11);
705                                 } else {
706                                         printf(" %4.4s ", filetime + 20);
707                                 }
708                                 column += 13;
709                         }
710                         break;
711 #endif
712 #ifdef CONFIG_SELINUX
713                 case LIST_CONTEXT:
714                         {
715                                 char context[80];
716                                 int len = 0;
717
718                                 if (dn->sid) {
719                                   /*  I assume sid initilized with NULL  */
720                                   len = strlen(dn->sid)+1;
721                                   safe_strncpy(context, dn->sid, len);
722                                   freecon(dn->sid);
723                                 }else {
724                                   safe_strncpy(context, "unknown", 8);
725                                 }
726                                 printf("%-32s ", context);
727                                 column += MAX(33, len);
728                         }
729                         break;
730 #endif
731                 case LIST_FILENAME:
732 #ifdef CONFIG_FEATURE_LS_COLOR
733                         errno = 0;
734                         if (show_color && !lstat(dn->fullname, &info)) {
735                                 printf("\033[%d;%dm", bgcolor(info.st_mode),
736                                            fgcolor(info.st_mode));
737                         }
738 #endif
739                         column += printf("%s", dn->name);
740 #ifdef CONFIG_FEATURE_LS_COLOR
741                         if (show_color) {
742                                 printf("\033[0m");
743                         }
744 #endif
745                         break;
746                 case LIST_SYMLINK:
747                         if (S_ISLNK(dn->dstat.st_mode)) {
748                                 char *lpath = xreadlink(dn->fullname);
749
750                                 if (lpath) {
751                                         printf(" -> ");
752 #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
753                                         if (!stat(dn->fullname, &info)) {
754                                                 append = append_char(info.st_mode);
755                                         }
756 #endif
757 #ifdef CONFIG_FEATURE_LS_COLOR
758                                         if (show_color) {
759                                                 errno = 0;
760                                                 printf("\033[%d;%dm", bgcolor(info.st_mode),
761                                                            fgcolor(info.st_mode));
762                                         }
763 #endif
764                                         column += printf("%s", lpath) + 4;
765 #ifdef CONFIG_FEATURE_LS_COLOR
766                                         if (show_color) {
767                                                 printf("\033[0m");
768                                         }
769 #endif
770                                         free(lpath);
771                                 }
772                         }
773                         break;
774 #ifdef CONFIG_FEATURE_LS_FILETYPES
775                 case LIST_FILETYPE:
776                         if (append != '\0') {
777                                 printf("%1c", append);
778                                 column++;
779                         }
780                         break;
781 #endif
782                 }
783         }
784
785         return column;
786 }
787
788 /*----------------------------------------------------------------------*/
789
790 /* "[-]Cadil1", POSIX mandated options, busybox always supports */
791 /* "[-]gnsx", POSIX non-mandated options, busybox always supports */
792 /* "[-]Ak" GNU options, busybox always supports */
793 /* "[-]FLRctur", POSIX mandated options, busybox optionally supports */
794 /* "[-]p", POSIX non-mandated options, busybox optionally supports */
795 /* "[-]SXvThw", GNU options, busybox optionally supports */
796 /* "[-]K", SELinux mandated options, busybox optionally supports */
797 /* "[-]e", I think we made this one up */
798
799 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
800 # define LS_STR_TIMESTAMPS      "cetu"
801 #else
802 # define LS_STR_TIMESTAMPS      ""
803 #endif
804
805 #ifdef CONFIG_FEATURE_LS_SORTFILES
806 # define LS_STR_SORTFILES       "SXrv"
807 #else
808 # define LS_STR_SORTFILES       ""
809 #endif
810
811 #ifdef CONFIG_FEATURE_LS_FILETYPES
812 # define LS_STR_FILETYPES       "Fp"
813 #else
814 # define LS_STR_FILETYPES       ""
815 #endif
816
817 #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
818 # define LS_STR_FOLLOW_LINKS    "L"
819 #else
820 # define LS_STR_FOLLOW_LINKS    ""
821 #endif
822
823 #ifdef CONFIG_FEATURE_LS_RECURSIVE
824 # define LS_STR_RECURSIVE       "R"
825 #else
826 # define LS_STR_RECURSIVE       ""
827 #endif
828
829 #ifdef CONFIG_FEATURE_HUMAN_READABLE
830 # define LS_STR_HUMAN_READABLE  "h"
831 #else
832 # define LS_STR_HUMAN_READABLE  ""
833 #endif
834
835 #ifdef CONFIG_SELINUX
836 # define LS_STR_SELINUX "K"
837 #else
838 # define LS_STR_SELINUX ""
839 #endif
840
841 #ifdef CONFIG_FEATURE_AUTOWIDTH
842 # define LS_STR_AUTOWIDTH       "T:w:"
843 #else
844 # define LS_STR_AUTOWIDTH       ""
845 #endif
846
847 static const char ls_options[]="Cadil1gnsxAk" \
848         LS_STR_TIMESTAMPS \
849         LS_STR_SORTFILES \
850         LS_STR_FILETYPES \
851         LS_STR_FOLLOW_LINKS \
852         LS_STR_RECURSIVE \
853         LS_STR_HUMAN_READABLE \
854         LS_STR_SELINUX \
855         LS_STR_AUTOWIDTH;
856
857 #define LIST_MASK_TRIGGER       0
858 #define STYLE_MASK_TRIGGER      STYLE_MASK
859 #define SORT_MASK_TRIGGER       SORT_MASK
860 #define DISP_MASK_TRIGGER       DISP_ROWS
861 #define TIME_MASK_TRIGGER       TIME_MASK
862
863 static const unsigned opt_flags[] = {
864         LIST_SHORT | STYLE_COLUMNS,     /* C */
865         DISP_HIDDEN | DISP_DOT,         /* a */
866         DISP_NOLIST,                            /* d */
867         LIST_INO,                                       /* i */
868         LIST_LONG | STYLE_LONG,         /* l - remember LS_DISP_HR in mask! */
869         LIST_SHORT | STYLE_SINGLE,      /* 1 */
870         0,                                                      /* g - ingored */
871         LIST_ID_NUMERIC,                        /* n */
872         LIST_BLOCKS,                            /* s */
873         DISP_ROWS,                                      /* x */
874         DISP_HIDDEN,                            /* A */
875 #ifdef CONFIG_SELINUX
876         LIST_CONTEXT,                           /* k */
877 #else
878         0,                                                      /* k - ingored */
879 #endif
880 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
881 # ifdef CONFIG_FEATURE_LS_SORTFILES
882         TIME_CHANGE | SORT_CTIME,       /* c */
883 # else
884         TIME_CHANGE,                            /* c */
885 # endif
886         LIST_FULLTIME,                          /* e */
887 # ifdef CONFIG_FEATURE_LS_SORTFILES
888         SORT_MTIME,                                     /* t */
889 # else
890         0,                                                      /* t - ignored -- is this correct? */
891 # endif
892 # ifdef CONFIG_FEATURE_LS_SORTFILES
893         TIME_ACCESS | SORT_ATIME,       /* u */
894 # else
895         TIME_ACCESS,                            /* u */
896 # endif
897 #endif
898 #ifdef CONFIG_FEATURE_LS_SORTFILES
899         SORT_SIZE,                                      /* S */
900         SORT_EXT,                                       /* X */
901         SORT_ORDER_REVERSE,                     /* r */
902         SORT_VERSION,                           /* v */
903 #endif
904 #ifdef CONFIG_FEATURE_LS_FILETYPES
905         LIST_FILETYPE | LIST_EXEC,      /* F */
906         LIST_FILETYPE,                          /* p */
907 #endif
908 #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
909         FOLLOW_LINKS,                           /* L */
910 #endif
911 #ifdef CONFIG_FEATURE_LS_RECURSIVE
912         DISP_RECURSIVE,                         /* R */
913 #endif
914 #ifdef CONFIG_FEATURE_HUMAN_READABLE
915         LS_DISP_HR,                                     /* h */
916 #endif
917 #ifdef CONFIG_SELINUX
918         LIST_MODEBITS|LIST_NLINKS|LIST_CONTEXT|LIST_SIZE|LIST_DATE_TIME, /* K */
919 #endif
920 #ifdef CONFIG_FEATURE_AUTOWIDTH
921        0, 0,                    /* T, w - ignored */
922 #endif
923         (1U<<31)
924 };
925
926
927 /*----------------------------------------------------------------------*/
928
929 int ls_main(int argc, char **argv)
930 {
931         struct dnode **dnd;
932         struct dnode **dnf;
933         struct dnode **dnp;
934         struct dnode *dn;
935         struct dnode *cur;
936         long opt;
937         int nfiles = 0;
938         int dnfiles;
939         int dndirs;
940         int oi;
941         int ac;
942         int i;
943         char **av;
944 #ifdef CONFIG_FEATURE_AUTOWIDTH
945         char *tabstops_str = NULL;
946         char *terminal_width_str = NULL;
947 #endif
948 #ifdef CONFIG_FEATURE_LS_COLOR
949         char *color_opt;
950 #endif
951
952         all_fmt = LIST_SHORT | DISP_NORMAL | STYLE_AUTO
953 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
954                 | TIME_MOD
955 #endif
956 #ifdef CONFIG_FEATURE_LS_SORTFILES
957                 | SORT_NAME | SORT_ORDER_FORWARD
958 #endif
959                 ;
960
961 #ifdef CONFIG_FEATURE_AUTOWIDTH
962         /* Obtain the terminal width.  */
963         get_terminal_width_height(STDOUT_FILENO, &terminal_width, NULL);
964         /* Go one less... */
965         terminal_width--;
966 #endif
967
968 #ifdef CONFIG_FEATURE_LS_COLOR
969         bb_applet_long_options = ls_color_opt;
970 #endif
971
972         /* process options */
973 #ifdef CONFIG_FEATURE_AUTOWIDTH
974         opt = bb_getopt_ulflags(argc, argv, ls_options, &tabstops_str, &terminal_width_str
975 #ifdef CONFIG_FEATURE_LS_COLOR
976                 , &color_opt
977 #endif
978                 );
979         if (tabstops_str) {
980                 tabstops = atoi(tabstops_str);
981         }
982         if (terminal_width_str) {
983                 terminal_width = atoi(terminal_width_str);
984         }
985 #else
986         opt = bb_getopt_ulflags(argc, argv, ls_options
987 #ifdef CONFIG_FEATURE_LS_COLOR
988                 , &color_opt
989 #endif
990                 );
991 #endif
992         for (i = 0; opt_flags[i] != (1U<<31); i++) {
993                 if (opt & (1 << i)) {
994                         unsigned int flags = opt_flags[i];
995
996                         if (flags & LIST_MASK_TRIGGER) {
997                                 all_fmt &= ~LIST_MASK;
998                         }
999                         if (flags & STYLE_MASK_TRIGGER) {
1000                                 all_fmt &= ~STYLE_MASK;
1001                         }
1002 #ifdef CONFIG_FEATURE_LS_SORTFILES
1003                         if (flags & SORT_MASK_TRIGGER) {
1004                                 all_fmt &= ~SORT_MASK;
1005                         }
1006 #endif
1007                         if (flags & DISP_MASK_TRIGGER) {
1008                                 all_fmt &= ~DISP_MASK;
1009                         }
1010 #ifdef CONFIG_FEATURE_LS_TIMESTAMPS
1011                         if (flags & TIME_MASK_TRIGGER) {
1012                                 all_fmt &= ~TIME_MASK;
1013                         }
1014 #endif
1015                         if (flags & LIST_CONTEXT) {
1016                                 all_fmt |= STYLE_SINGLE;
1017                         }
1018 #ifdef CONFIG_FEATURE_HUMAN_READABLE
1019                         if (opt == 'l') {
1020                                 all_fmt &= ~LS_DISP_HR;
1021                         }
1022 #endif
1023                         all_fmt |= flags;
1024                 }
1025         }
1026
1027 #ifdef CONFIG_FEATURE_LS_COLOR
1028         {
1029                 /* find color bit value - last position for short getopt */
1030
1031 #if CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
1032                 char *p;
1033
1034                 if ((p = getenv ("LS_COLORS")) != NULL &&
1035                         (*p == '\0' || (strcmp(p, "none") == 0))) {
1036                         ;
1037                 } else if (isatty(STDOUT_FILENO)) {
1038                         show_color = 1;
1039                 }
1040 #endif
1041
1042                 if((opt & (1 << i))) {  /* next flag after short options */
1043                         if (color_opt == NULL || strcmp("always", color_opt) == 0)
1044                                 show_color = 1;
1045                         else if (color_opt != NULL && strcmp("never", color_opt) == 0)
1046                                 show_color = 0;
1047                         else if (color_opt != NULL && strcmp("auto", color_opt) == 0 && isatty(STDOUT_FILENO))
1048                                 show_color = 1;
1049                 }
1050         }
1051 #endif
1052
1053         /* sort out which command line options take precedence */
1054 #ifdef CONFIG_FEATURE_LS_RECURSIVE
1055         if (all_fmt & DISP_NOLIST)
1056                 all_fmt &= ~DISP_RECURSIVE;     /* no recurse if listing only dir */
1057 #endif
1058 #if defined (CONFIG_FEATURE_LS_TIMESTAMPS) && defined (CONFIG_FEATURE_LS_SORTFILES)
1059         if (all_fmt & TIME_CHANGE)
1060                 all_fmt = (all_fmt & ~SORT_MASK) | SORT_CTIME;
1061         if (all_fmt & TIME_ACCESS)
1062                 all_fmt = (all_fmt & ~SORT_MASK) | SORT_ATIME;
1063 #endif
1064         if ((all_fmt & STYLE_MASK) != STYLE_LONG) /* only for long list */
1065                 all_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC);
1066 #ifdef CONFIG_FEATURE_LS_USERNAME
1067         if ((all_fmt & STYLE_MASK) == STYLE_LONG && (all_fmt & LIST_ID_NUMERIC))
1068                 all_fmt &= ~LIST_ID_NAME;       /* don't list names if numeric uid */
1069 #endif
1070
1071         /* choose a display format */
1072         if ((all_fmt & STYLE_MASK) == STYLE_AUTO)
1073 #if STYLE_AUTO != 0
1074                 all_fmt = (all_fmt & ~STYLE_MASK)
1075                                 | (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
1076 #else
1077                 all_fmt |= (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
1078 #endif
1079
1080         /*
1081          * when there are no cmd line args we have to supply a default "." arg.
1082          * we will create a second argv array, "av" that will hold either
1083          * our created "." arg, or the real cmd line args.  The av array
1084          * just holds the pointers- we don't move the date the pointers
1085          * point to.
1086          */
1087         ac = argc - optind;     /* how many cmd line args are left */
1088         if (ac < 1) {
1089                 static const char * const dotdir[] = { "." };
1090
1091                 av = (char **) dotdir;
1092                 ac = 1;
1093         } else {
1094                 av = argv + optind;
1095         }
1096
1097         /* now, everything is in the av array */
1098         if (ac > 1)
1099                 all_fmt |= DISP_DIRNAME;        /* 2 or more items? label directories */
1100
1101         /* stuff the command line file names into an dnode array */
1102         dn = NULL;
1103         for (oi = 0; oi < ac; oi++) {
1104                 cur = my_stat(av[oi], av[oi]);
1105                 if (!cur)
1106                         continue;
1107                 cur->allocated = 0;
1108                 cur->next = dn;
1109                 dn = cur;
1110                 nfiles++;
1111         }
1112
1113         /* now that we know how many files there are
1114            ** allocate memory for an array to hold dnode pointers
1115          */
1116         dnp = dnalloc(nfiles);
1117         for (i = 0, cur = dn; i < nfiles; i++) {
1118                 dnp[i] = cur;   /* save pointer to node in array */
1119                 cur = cur->next;
1120         }
1121
1122         if (all_fmt & DISP_NOLIST) {
1123 #ifdef CONFIG_FEATURE_LS_SORTFILES
1124                 dnsort(dnp, nfiles);
1125 #endif
1126                 if (nfiles > 0)
1127                         showfiles(dnp, nfiles);
1128         } else {
1129                 dnd = splitdnarray(dnp, nfiles, SPLIT_DIR);
1130                 dnf = splitdnarray(dnp, nfiles, SPLIT_FILE);
1131                 dndirs = countdirs(dnp, nfiles);
1132                 dnfiles = nfiles - dndirs;
1133                 if (dnfiles > 0) {
1134 #ifdef CONFIG_FEATURE_LS_SORTFILES
1135                         dnsort(dnf, dnfiles);
1136 #endif
1137                         showfiles(dnf, dnfiles);
1138                         if (ENABLE_FEATURE_CLEAN_UP)
1139                                 free(dnf);
1140                 }
1141                 if (dndirs > 0) {
1142 #ifdef CONFIG_FEATURE_LS_SORTFILES
1143                         dnsort(dnd, dndirs);
1144 #endif
1145                         showdirs(dnd, dndirs, dnfiles == 0);
1146                         if (ENABLE_FEATURE_CLEAN_UP)
1147                                 free(dnd);
1148                 }
1149         }
1150         if (ENABLE_FEATURE_CLEAN_UP)
1151                 dfree(dnp, nfiles);
1152         return (status);
1153 }