b1fbe3b2a487678148f387b49e0985e39244a4b2
[oweals/busybox.git] / 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  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 /*
22  * To achieve a small memory footprint, this version of 'ls' doesn't do any
23  * file sorting, and only has the most essential command line switches
24  * (i.e. the ones I couldn't live without :-) All features which involve
25  * linking in substantial chunks of libc can be disabled.
26  *
27  * Although I don't really want to add new features to this program to
28  * keep it small, I *am* interested to receive bug fixes and ways to make
29  * it more portable.
30  *
31  * KNOWN BUGS:
32  * 1. ls -l of a directory doesn't give "total <blocks>" header
33  * 2. ls of a symlink to a directory doesn't list directory contents
34  * 3. hidden files can make column width too large
35  *
36  * NON-OPTIMAL BEHAVIOUR:
37  * 1. autowidth reads directories twice
38  * 2. if you do a short directory listing without filetype characters
39  *    appended, there's no need to stat each one
40  * PORTABILITY:
41  * 1. requires lstat (BSD) - how do you do it without?
42  */
43
44 #define TERMINAL_WIDTH  80              /* use 79 if your terminal has linefold bug */
45 #define COLUMN_WIDTH    14              /* default if AUTOWIDTH not defined */
46 #define COLUMN_GAP      2                       /* includes the file type char, if present */
47
48 /************************************************************************/
49
50 #include "busybox.h"
51 #include <sys/types.h>
52 #include <sys/stat.h>
53 #include <stdio.h>
54 #include <unistd.h>
55 #include <dirent.h>
56 #include <errno.h>
57 #include <stdio.h>
58 #ifdef BB_FEATURE_LS_TIMESTAMPS
59 #include <time.h>
60 #endif
61 #include <string.h>
62
63 #ifndef NAJOR
64 #define MAJOR(dev) (((dev)>>8)&0xff)
65 #define MINOR(dev) ((dev)&0xff)
66 #endif
67
68 /* what is the overall style of the listing */
69 #define STYLE_AUTO              0
70 #define STYLE_LONG              1               /* one record per line, extended info */
71 #define STYLE_SINGLE    2               /* one record per line */
72 #define STYLE_COLUMNS   3               /* fill columns */
73
74 /* 51306 lrwxrwxrwx  1 root     root         2 May 11 01:43 /bin/view -> vi* */
75 /* what file information will be listed */
76 #define LIST_INO                (1<<0)
77 #define LIST_BLOCKS             (1<<1)
78 #define LIST_MODEBITS   (1<<2)
79 #define LIST_NLINKS             (1<<3)
80 #define LIST_ID_NAME    (1<<4)
81 #define LIST_ID_NUMERIC (1<<5)
82 #define LIST_SIZE               (1<<6)
83 #define LIST_DEV                (1<<7)
84 #define LIST_DATE_TIME  (1<<8)
85 #define LIST_FULLTIME   (1<<9)
86 #define LIST_FILENAME   (1<<10)
87 #define LIST_SYMLINK    (1<<11)
88 #define LIST_FILETYPE   (1<<12)
89 #define LIST_EXEC               (1<<13)
90
91 /* what files will be displayed */
92 #define DISP_NORMAL             (0)             /* show normal filenames */
93 #define DISP_DIRNAME    (1<<0)  /* 2 or more items? label directories */
94 #define DISP_HIDDEN             (1<<1)  /* show filenames starting with .  */
95 #define DISP_DOT                (1<<2)  /* show . and .. */
96 #define DISP_NOLIST             (1<<3)  /* show directory as itself, not contents */
97 #define DISP_RECURSIVE  (1<<4)  /* show directory and everything below it */
98 #define DISP_ROWS               (1<<5)  /* print across rows */
99
100 #ifdef BB_FEATURE_LS_SORTFILES
101 /* how will the files be sorted */
102 #define SORT_FORWARD    0               /* sort in reverse order */
103 #define SORT_REVERSE    1               /* sort in reverse order */
104 #define SORT_NAME               2               /* sort by file name */
105 #define SORT_SIZE               3               /* sort by file size */
106 #define SORT_ATIME              4               /* sort by last access time */
107 #define SORT_CTIME              5               /* sort by last change time */
108 #define SORT_MTIME              6               /* sort by last modification time */
109 #define SORT_VERSION    7               /* sort by version */
110 #define SORT_EXT                8               /* sort by file name extension */
111 #define SORT_DIR                9               /* sort by file or directory */
112 #endif
113
114 #ifdef BB_FEATURE_LS_TIMESTAMPS
115 /* which of the three times will be used */
116 #define TIME_MOD    0
117 #define TIME_CHANGE 1
118 #define TIME_ACCESS 2
119 #endif
120
121 #define LIST_SHORT              (LIST_FILENAME)
122 #define LIST_ISHORT             (LIST_INO | LIST_FILENAME)
123 #define LIST_LONG               (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | \
124                                                 LIST_SIZE | LIST_DATE_TIME | LIST_FILENAME | \
125                                                 LIST_SYMLINK)
126 #define LIST_ILONG              (LIST_INO | LIST_LONG)
127
128 #define SPLIT_DIR               0
129 #define SPLIT_FILE              1
130
131 #define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
132 #define TYPECHAR(mode)  ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
133 #ifdef BB_FEATURE_LS_FILETYPES
134 #define APPCHAR(mode)   ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
135 #endif
136
137 /*
138  * a directory entry and its stat info are stored here
139  */
140 struct dnode {                          /* the basic node */
141     char *name;                         /* the dir entry name */
142     char *fullname;                     /* the dir entry name */
143     struct stat dstat;          /* the file stat info */
144     struct dnode *next;         /* point at the next node */
145 };
146 typedef struct dnode dnode_t;
147
148 struct dnode **list_dir(char *);
149 struct dnode **dnalloc(int);
150 int list_single(struct dnode *);
151
152 static unsigned int disp_opts=  DISP_NORMAL;
153 static unsigned int style_fmt=  STYLE_AUTO ;
154 static unsigned int list_fmt=   LIST_SHORT ;
155 #ifdef BB_FEATURE_LS_SORTFILES
156 static unsigned int sort_opts=  SORT_FORWARD;
157 static unsigned int sort_order= SORT_FORWARD;
158 #endif
159 #ifdef BB_FEATURE_LS_TIMESTAMPS
160 static unsigned int time_fmt=   TIME_MOD;
161 #endif
162 #ifdef BB_FEATURE_LS_FOLLOWLINKS
163 static unsigned int follow_links=FALSE;
164 #endif
165
166 static unsigned short column = 0;
167 #ifdef BB_FEATURE_AUTOWIDTH
168 static unsigned short terminal_width = TERMINAL_WIDTH;
169 static unsigned short column_width = COLUMN_WIDTH;
170 static unsigned short tabstops = 8;
171 #else
172 #define terminal_width  TERMINAL_WIDTH
173 #define column_width    COLUMN_WIDTH
174 #endif
175
176 static int status = EXIT_SUCCESS;
177
178 static int my_stat(struct dnode *cur)
179 {
180 #ifdef BB_FEATURE_LS_FOLLOWLINKS
181         if (follow_links == TRUE) {
182                 if (stat(cur->fullname, &cur->dstat)) {
183                         errorMsg("%s: %s\n", cur->fullname, strerror(errno));
184                         status = EXIT_FAILURE;
185                         free(cur->fullname);
186                         free(cur);
187                         return -1;
188                 }
189         } else
190 #endif
191         if (lstat(cur->fullname, &cur->dstat)) {
192                 errorMsg("%s: %s\n", cur->fullname, strerror(errno));
193                 status = EXIT_FAILURE;
194                 free(cur->fullname);
195                 free(cur);
196                 return -1;
197         }
198         return 0;
199 }
200
201 static void newline(void)
202 {
203     if (column > 0) {
204         fprintf(stdout, "\n");
205         column = 0;
206     }
207 }
208
209 /*----------------------------------------------------------------------*/
210 #ifdef BB_FEATURE_LS_FILETYPES
211 static char append_char(mode_t mode)
212 {
213         if ( !(list_fmt & LIST_FILETYPE))
214                 return '\0';
215         if ((list_fmt & LIST_EXEC) && S_ISREG(mode)
216             && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
217                 return APPCHAR(mode);
218 }
219 #endif
220
221 /*----------------------------------------------------------------------*/
222 static void nexttabstop( void )
223 {
224         static short nexttab= 0;
225         int n=0;
226
227         if (column > 0) {
228                 n= nexttab - column;
229                 if (n < 1) n= 1;
230                 while (n--) {
231                         fprintf(stdout, " ");
232                         column++;
233                 }
234         }
235         nexttab= column + column_width + COLUMN_GAP ;
236 }
237
238 /*----------------------------------------------------------------------*/
239 int countdirs(struct dnode **dn, int nfiles)
240 {
241         int i, dirs;
242
243         /* count how many dirs and regular files there are */
244         if (dn==NULL || nfiles < 1) return(0);
245         dirs= 0;
246         for (i=0; i<nfiles; i++) {
247                 if (S_ISDIR(dn[i]->dstat.st_mode)) dirs++;
248         }
249         return(dirs);
250 }
251
252 int countfiles(struct dnode **dnp)
253 {
254         int nfiles;
255         struct dnode *cur;
256
257         if (dnp == NULL) return(0);
258         nfiles= 0;
259         for (cur= dnp[0];  cur->next != NULL ; cur= cur->next) nfiles++;
260         nfiles++;
261         return(nfiles);
262 }
263
264 /* get memory to hold an array of pointers */
265 struct dnode **dnalloc(int num)
266 {
267         struct dnode **p;
268
269         if (num < 1) return(NULL);
270
271         p= (struct dnode **)xcalloc((size_t)num, (size_t)(sizeof(struct dnode *)));
272         return(p);
273 }
274
275 void dfree(struct dnode **dnp)
276 {
277         struct dnode *cur, *next;
278
279         if(dnp == NULL) return;
280
281         cur=dnp[0];
282         while (cur != NULL) {
283                 if (cur->fullname != NULL) free(cur->fullname); /* free the filename */
284                 next= cur->next;
285                 free(cur);                              /* free the dnode */
286                 cur= next;
287         }
288         free(dnp);      /* free the array holding the dnode pointers */
289 }
290
291 struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
292 {
293         int dncnt, i, d;
294         struct dnode **dnp;
295
296         if (dn==NULL || nfiles < 1) return(NULL);
297
298         /* count how many dirs and regular files there are */
299         dncnt= countdirs(dn, nfiles); /* assume we are looking for dirs */
300         if (which != SPLIT_DIR)
301                 dncnt= nfiles - dncnt;  /* looking for files */
302
303         /* allocate a file array and a dir array */
304         dnp= dnalloc(dncnt);
305
306         /* copy the entrys into the file or dir array */
307         for (d= i=0; i<nfiles; i++) {
308                 if (which == SPLIT_DIR) {
309                         if (S_ISDIR(dn[i]->dstat.st_mode)) {
310                                 dnp[d++]= dn[i];
311                         }  /* else skip the file */
312                 } else {
313                         if (!(S_ISDIR(dn[i]->dstat.st_mode))) {
314                                 dnp[d++]= dn[i];
315                         }  /* else skip the dir */
316                 }
317         }
318         return(dnp);
319 }
320
321 /*----------------------------------------------------------------------*/
322 #ifdef BB_FEATURE_LS_SORTFILES
323 int sortcmp(struct dnode *d1, struct dnode *d2)
324 {
325         int cmp, dif;
326
327         cmp= 0;
328         if (sort_opts == SORT_SIZE) {
329                 dif= (int)(d1->dstat.st_size - d2->dstat.st_size);
330         } else if (sort_opts == SORT_ATIME) {
331                 dif= (int)(d1->dstat.st_atime - d2->dstat.st_atime);
332         } else if (sort_opts == SORT_CTIME) {
333                 dif= (int)(d1->dstat.st_ctime - d2->dstat.st_ctime);
334         } else if (sort_opts == SORT_MTIME) {
335                 dif= (int)(d1->dstat.st_mtime - d2->dstat.st_mtime);
336         } else if (sort_opts == SORT_DIR) {
337                 dif= S_ISDIR(d1->dstat.st_mode) - S_ISDIR(d2->dstat.st_mode);
338         /* } else if (sort_opts == SORT_VERSION) { */
339         /* } else if (sort_opts == SORT_EXT) { */
340         } else {    /* assume SORT_NAME */
341                 dif= 0;
342         }
343
344         if (dif > 0) cmp= -1;
345         if (dif < 0) cmp=  1;
346         if (dif == 0) {
347                 /* sort by name- may be a tie_breaker for time or size cmp */
348                 dif= strcmp(d1->name, d2->name);
349                 if (dif > 0) cmp=  1;
350                 if (dif < 0) cmp= -1;
351         }
352
353         if (sort_order == SORT_REVERSE) {
354                 cmp=  -1 * cmp;
355         }
356         return(cmp);
357 }
358
359 /*----------------------------------------------------------------------*/
360 void shellsort(struct dnode **dn, int size)
361 {
362         struct dnode *temp;
363         int gap, i, j;
364
365         /* shell short the array */
366         if(dn==NULL || size < 2) return;
367
368         for (gap= size/2; gap>0; gap /=2) {
369                 for (i=gap; i<size; i++) {
370                         for (j= i-gap; j>=0; j-=gap) {
371                                 if (sortcmp(dn[j], dn[j+gap]) <= 0)
372                                         break;
373                                 /* they are out of order, swap them */
374                                 temp= dn[j];
375                                 dn[j]= dn[j+gap];
376                                 dn[j+gap]= temp;
377                         }
378                 }
379         }
380 }
381 #endif
382
383 /*----------------------------------------------------------------------*/
384 void showfiles(struct dnode **dn, int nfiles)
385 {
386         int i, ncols, nrows, row, nc;
387 #ifdef BB_FEATURE_AUTOWIDTH
388         int len;
389 #endif
390
391         if(dn==NULL || nfiles < 1) return;
392
393 #ifdef BB_FEATURE_AUTOWIDTH
394         /* find the longest file name-  use that as the column width */
395         column_width= 0;
396         for (i=0; i<nfiles; i++) {
397                 len= strlen(dn[i]->name) +
398                         ((list_fmt & LIST_INO) ? 8 : 0) +
399                         ((list_fmt & LIST_BLOCKS) ? 5 : 0)
400                         ;
401                 if (column_width < len) column_width= len;
402         }
403 #endif
404         ncols= (int)(terminal_width / (column_width + COLUMN_GAP));
405         switch (style_fmt) {
406                 case STYLE_LONG:        /* one record per line, extended info */
407                 case STYLE_SINGLE:      /* one record per line */
408                         ncols= 1;
409                         break;
410         }
411
412         nrows= nfiles / ncols;
413         if ((nrows * ncols) < nfiles) nrows++; /* round up fractionals */
414
415         if (nrows > nfiles) nrows= nfiles;
416         for (row=0; row<nrows; row++) {
417                 for (nc=0; nc<ncols; nc++) {
418                         /* reach into the array based on the column and row */
419                         i= (nc * nrows) + row;          /* assume display by column */
420                         if (disp_opts & DISP_ROWS)
421                                 i= (row * ncols) + nc;  /* display across row */
422                         if (i < nfiles) {
423                                 nexttabstop();
424                                 list_single(dn[i]);
425                         }
426                 }
427                 newline();
428         }
429 }
430
431 /*----------------------------------------------------------------------*/
432 void showdirs(struct dnode **dn, int ndirs)
433 {
434         int i, nfiles;
435         struct dnode **subdnp;
436 #ifdef BB_FEATURE_LS_RECURSIVE
437         int dndirs;
438         struct dnode **dnd;
439 #endif
440
441         if (dn==NULL || ndirs < 1) return;
442
443         for (i=0; i<ndirs; i++) {
444                 if (disp_opts & (DISP_DIRNAME | DISP_RECURSIVE)) {
445                         fprintf(stdout, "\n%s:\n", dn[i]->fullname);
446                 }
447                 subdnp= list_dir(dn[i]->fullname);
448                 nfiles= countfiles(subdnp);
449                 if (nfiles > 0) {
450                         /* list all files at this level */
451 #ifdef BB_FEATURE_LS_SORTFILES
452                         shellsort(subdnp, nfiles);
453 #endif
454                         showfiles(subdnp, nfiles);
455 #ifdef BB_FEATURE_LS_RECURSIVE
456                         if (disp_opts & DISP_RECURSIVE) {
457                                 /* recursive- list the sub-dirs */
458                                 dnd= splitdnarray(subdnp, nfiles, SPLIT_DIR);
459                                 dndirs= countdirs(subdnp, nfiles);
460                                 if (dndirs > 0) {
461 #ifdef BB_FEATURE_LS_SORTFILES
462                                         shellsort(dnd, dndirs);
463 #endif
464                                         showdirs(dnd, dndirs);
465                                         free(dnd);  /* free the array of dnode pointers to the dirs */
466                                 }
467                         }
468                         dfree(subdnp);  /* free the dnodes and the fullname mem */
469 #endif
470                 }
471         }
472 }
473
474 /*----------------------------------------------------------------------*/
475 struct dnode **list_dir(char *path)
476 {
477         struct dnode *dn, *cur, **dnp;
478         struct dirent *entry;
479         DIR *dir;
480         int i, nfiles;
481
482         if (path==NULL) return(NULL);
483
484         dn= NULL;
485         nfiles= 0;
486         dir = opendir(path);
487         if (dir == NULL) {
488                 errorMsg("%s: %s\n", path, strerror(errno));
489                 status = EXIT_FAILURE;
490                 return(NULL);   /* could not open the dir */
491         }
492         while ((entry = readdir(dir)) != NULL) {
493                 /* are we going to list the file- it may be . or .. or a hidden file */
494                 if ((strcmp(entry->d_name, ".")==0) && !(disp_opts & DISP_DOT)) continue;
495                 if ((strcmp(entry->d_name, "..")==0) && !(disp_opts & DISP_DOT)) continue;
496                 if ((entry->d_name[0] ==  '.') && !(disp_opts & DISP_HIDDEN)) continue;
497                 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
498                 cur->fullname = xmalloc(strlen(path)+1+strlen(entry->d_name)+1);
499                 strcpy(cur->fullname, path);
500                 if (cur->fullname[strlen(cur->fullname)-1] != '/')
501                         strcat(cur->fullname, "/");
502                 cur->name= cur->fullname + strlen(cur->fullname);
503                 strcat(cur->fullname, entry->d_name);
504                 if (my_stat(cur))
505                         continue;
506                 cur->next= dn;
507                 dn= cur;
508                 nfiles++;
509         }
510         closedir(dir);
511
512         /* now that we know how many files there are
513         ** allocate memory for an array to hold dnode pointers
514         */
515         if (nfiles < 1) return(NULL);
516         dnp= dnalloc(nfiles);
517         for (i=0, cur=dn; i<nfiles; i++) {
518                 dnp[i]= cur;   /* save pointer to node in array */
519                 cur= cur->next;
520         }
521
522         return(dnp);
523 }
524
525 /*----------------------------------------------------------------------*/
526 int list_single(struct dnode *dn)
527 {
528         int i, len;
529         char scratch[BUFSIZ + 1];
530 #ifdef BB_FEATURE_LS_TIMESTAMPS
531         char *filetime;
532         time_t ttime, age;
533 #endif
534 #if defined (BB_FEATURE_LS_FILETYPES)
535         struct stat info;
536 #endif
537 #ifdef BB_FEATURE_LS_FILETYPES
538         char append;
539 #endif
540
541         if (dn==NULL || dn->fullname==NULL) return(0);
542
543 #ifdef BB_FEATURE_LS_TIMESTAMPS
544         ttime= dn->dstat.st_mtime;      /* the default time */
545         if (time_fmt & TIME_ACCESS) ttime= dn->dstat.st_atime;
546         if (time_fmt & TIME_CHANGE) ttime= dn->dstat.st_ctime;
547         filetime= ctime(&ttime);
548 #endif
549 #ifdef BB_FEATURE_LS_FILETYPES
550         append = append_char(dn->dstat.st_mode);
551 #endif
552
553         for (i=0; i<=31; i++) {
554                 switch (list_fmt & (1<<i)) {
555                         case LIST_INO:
556                                 fprintf(stdout, "%7ld ", dn->dstat.st_ino);
557                                 column += 8;
558                                 break;
559                         case LIST_BLOCKS:
560 #if _FILE_OFFSET_BITS == 64
561                                 fprintf(stdout, "%4lld ", dn->dstat.st_blocks>>1);
562 #else
563                                 fprintf(stdout, "%4ld ", dn->dstat.st_blocks>>1);
564 #endif
565                                 column += 5;
566                                 break;
567                         case LIST_MODEBITS:
568                                 fprintf(stdout, "%10s", (char *)modeString(dn->dstat.st_mode));
569                                 column += 10;
570                                 break;
571                         case LIST_NLINKS:
572                                 fprintf(stdout, "%4d ", dn->dstat.st_nlink);
573                                 column += 10;
574                                 break;
575                         case LIST_ID_NAME:
576 #ifdef BB_FEATURE_LS_USERNAME
577                                 memset(scratch, 0, sizeof(scratch));
578                                 my_getpwuid(scratch, dn->dstat.st_uid);
579                                 if (*scratch)
580                                         fprintf(stdout, "%-8.8s ", scratch);
581                                 else
582                                         fprintf(stdout, "%-8d ", dn->dstat.st_uid);
583                                 memset(scratch, 0, sizeof(scratch));
584                                 my_getgrgid(scratch, dn->dstat.st_gid);
585                                 if (*scratch)
586                                         fprintf(stdout, "%-8.8s", scratch);
587                                 else
588                                         fprintf(stdout, "%-8d", dn->dstat.st_gid);
589                                 column += 17;
590                                 break;
591 #endif
592                         case LIST_ID_NUMERIC:
593                                 fprintf(stdout, "%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
594                                 column += 17;
595                                 break;
596                         case LIST_SIZE:
597                         case LIST_DEV:
598                                 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
599                                         fprintf(stdout, "%4d, %3d ", (int)MAJOR(dn->dstat.st_rdev), (int)MINOR(dn->dstat.st_rdev));
600                                 } else {
601 #if _FILE_OFFSET_BITS == 64
602                                         fprintf(stdout, "%9lld ", dn->dstat.st_size);
603 #else
604                                         fprintf(stdout, "%9ld ", dn->dstat.st_size);
605 #endif
606                                 }
607                                 column += 10;
608                                 break;
609 #ifdef BB_FEATURE_LS_TIMESTAMPS
610                         case LIST_FULLTIME:
611                         case LIST_DATE_TIME:
612                                 if (list_fmt & LIST_FULLTIME) {
613                                         fprintf(stdout, "%24.24s ", filetime);
614                                         column += 25;
615                                         break;
616                                 }
617                                 age = time(NULL) - ttime;
618                                 fprintf(stdout, "%6.6s ", filetime+4);
619                                 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
620                                         /* hh:mm if less than 6 months old */
621                                         fprintf(stdout, "%5.5s ", filetime+11);
622                                 } else {
623                                         fprintf(stdout, " %4.4s ", filetime+20);
624                                 }
625                                 column += 13;
626                                 break;
627 #endif
628                         case LIST_FILENAME:
629                                 fprintf(stdout, "%s", dn->name);
630                                 column += strlen(dn->name);
631                                 break;
632                         case LIST_SYMLINK:
633                                 if (S_ISLNK(dn->dstat.st_mode)) {
634                                         len= readlink(dn->fullname, scratch, (sizeof scratch)-1);
635                                         if (len > 0) {
636                                                 scratch[len]= '\0';
637                                                 fprintf(stdout, " -> %s", scratch);
638 #ifdef BB_FEATURE_LS_FILETYPES
639                                                 if (!stat(dn->fullname, &info)) {
640                                                         append = append_char(info.st_mode);
641                                                 }
642 #endif
643                                                 column += len+4;
644                                         }
645                                 }
646                                 break;
647 #ifdef BB_FEATURE_LS_FILETYPES
648                         case LIST_FILETYPE:
649                                 if (append != '\0') {
650                                         fprintf(stdout, "%1c", append);
651                                         column++;
652                                 }
653                                 break;
654 #endif
655                 }
656         }
657
658         return(0);
659 }
660
661 /*----------------------------------------------------------------------*/
662 extern int ls_main(int argc, char **argv)
663 {
664         struct dnode **dnf, **dnd;
665         int dnfiles, dndirs;
666         struct dnode *dn, *cur, **dnp;
667         int i, nfiles;
668         int opt;
669         int oi, ac;
670         char **av;
671
672         disp_opts= DISP_NORMAL;
673         style_fmt= STYLE_AUTO;
674         list_fmt=  LIST_SHORT;
675 #ifdef BB_FEATURE_LS_SORTFILES
676         sort_opts= SORT_NAME;
677 #endif
678 #ifdef BB_FEATURE_LS_TIMESTAMPS
679         time_fmt= TIME_MOD;
680 #endif
681         nfiles=0;
682
683         /* process options */
684         while ((opt = getopt(argc, argv, "1AaCdgilnsx"
685 #ifdef BB_FEATURE_AUTOWIDTH
686 "T:w:"
687 #endif
688 #ifdef BB_FEATURE_LS_FILETYPES
689 "Fp"
690 #endif
691 #ifdef BB_FEATURE_LS_RECURSIVE
692 "R"
693 #endif
694 #ifdef BB_FEATURE_LS_SORTFILES
695 "rSvX"
696 #endif
697 #ifdef BB_FEATURE_LS_TIMESTAMPS
698 "cetu"
699 #endif
700 #ifdef BB_FEATURE_LS_FOLLOWLINKS
701 "L"
702 #endif
703         )) > 0) {
704                 switch (opt) {
705                         case '1': style_fmt = STYLE_SINGLE; break;
706                         case 'A': disp_opts |= DISP_HIDDEN; break;
707                         case 'a': disp_opts |= DISP_HIDDEN | DISP_DOT; break;
708                         case 'C': style_fmt = STYLE_COLUMNS; break;
709                         case 'd': disp_opts |= DISP_NOLIST; break;
710                         case 'g': /* ignore -- for ftp servers */ break;
711                         case 'i': list_fmt |= LIST_INO; break;
712                         case 'l': style_fmt = STYLE_LONG; list_fmt |= LIST_LONG; break;
713                         case 'n': list_fmt |= LIST_ID_NUMERIC; break;
714                         case 's': list_fmt |= LIST_BLOCKS; break;
715                         case 'x': disp_opts = DISP_ROWS; break;
716 #ifdef BB_FEATURE_LS_FILETYPES
717                         case 'F': list_fmt |= LIST_FILETYPE | LIST_EXEC; break;
718                         case 'p': list_fmt |= LIST_FILETYPE; break;
719 #endif
720 #ifdef BB_FEATURE_LS_RECURSIVE
721                         case 'R': disp_opts |= DISP_RECURSIVE; break;
722 #endif
723 #ifdef BB_FEATURE_LS_SORTFILES
724                         case 'r': sort_order |= SORT_REVERSE; break;
725                         case 'S': sort_opts= SORT_SIZE; break;
726                         case 'v': sort_opts= SORT_VERSION; break;
727                         case 'X': sort_opts= SORT_EXT; break;
728 #endif
729 #ifdef BB_FEATURE_LS_TIMESTAMPS
730                         case 'e': list_fmt |= LIST_FULLTIME; break;
731                         case 'c':
732                                 time_fmt = TIME_CHANGE;
733 #ifdef BB_FEATURE_LS_SORTFILES
734                                 sort_opts= SORT_CTIME;
735 #endif
736                                 break;
737                         case 'u':
738                                 time_fmt = TIME_ACCESS;
739 #ifdef BB_FEATURE_LS_SORTFILES
740                                 sort_opts= SORT_ATIME;
741 #endif
742                                 break;
743                         case 't':
744 #ifdef BB_FEATURE_LS_SORTFILES
745                                 sort_opts= SORT_MTIME;
746 #endif
747                                 break;
748 #endif
749 #ifdef BB_FEATURE_LS_FOLLOWLINKS
750                         case 'L': follow_links= TRUE; break;
751 #endif
752 #ifdef BB_FEATURE_AUTOWIDTH
753                         case 'T': tabstops= atoi(optarg); break;
754                         case 'w': terminal_width= atoi(optarg); break;
755 #endif
756                         default:
757                                 goto print_usage_message;
758                 }
759         }
760
761         /* sort out which command line options take precedence */
762 #ifdef BB_FEATURE_LS_RECURSIVE
763         if (disp_opts & DISP_NOLIST)
764                 disp_opts &= ~DISP_RECURSIVE;   /* no recurse if listing only dir */
765 #endif
766 #if defined (BB_FEATURE_LS_TIMESTAMPS) && defined (BB_FEATURE_LS_SORTFILES)
767         if (time_fmt & TIME_CHANGE) sort_opts= SORT_CTIME;
768         if (time_fmt & TIME_ACCESS) sort_opts= SORT_ATIME;
769 #endif
770         if (style_fmt != STYLE_LONG)
771                         list_fmt &= ~LIST_ID_NUMERIC;  /* numeric uid only for long list */
772 #ifdef BB_FEATURE_LS_USERNAME
773         if (style_fmt == STYLE_LONG && (list_fmt & LIST_ID_NUMERIC))
774                         list_fmt &= ~LIST_ID_NAME;  /* don't list names if numeric uid */
775 #endif
776
777         /* choose a display format */
778         if (style_fmt == STYLE_AUTO)
779                 style_fmt = isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE;
780
781         /*
782          * when there are no cmd line args we have to supply a default "." arg.
783          * we will create a second argv array, "av" that will hold either
784          * our created "." arg, or the real cmd line args.  The av array
785          * just holds the pointers- we don't move the date the pointers
786          * point to.
787          */
788         ac= argc - optind;   /* how many cmd line args are left */
789         if (ac < 1) {
790                 av= (char **)xcalloc((size_t)1, (size_t)(sizeof(char *)));
791                 av[0]= xstrdup(".");
792                 ac=1;
793         } else {
794                 av= (char **)xcalloc((size_t)ac, (size_t)(sizeof(char *)));
795                 for (oi=0 ; oi < ac; oi++) {
796                         av[oi]= argv[optind++];  /* copy pointer to real cmd line arg */
797                 }
798         }
799
800         /* now, everything is in the av array */
801         if (ac > 1)
802                 disp_opts |= DISP_DIRNAME;   /* 2 or more items? label directories */
803
804         /* stuff the command line file names into an dnode array */
805         dn=NULL;
806         for (oi=0 ; oi < ac; oi++) {
807                 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
808                 cur->fullname= xstrdup(av[oi]);
809                 cur->name= cur->fullname;
810                 if (my_stat(cur))
811                         continue;
812                 cur->next= dn;
813                 dn= cur;
814                 nfiles++;
815         }
816
817         /* now that we know how many files there are
818         ** allocate memory for an array to hold dnode pointers
819         */
820         dnp= dnalloc(nfiles);
821         for (i=0, cur=dn; i<nfiles; i++) {
822                 dnp[i]= cur;   /* save pointer to node in array */
823                 cur= cur->next;
824         }
825
826
827         if (disp_opts & DISP_NOLIST) {
828 #ifdef BB_FEATURE_LS_SORTFILES
829                 shellsort(dnp, nfiles);
830 #endif
831                 if (nfiles > 0) showfiles(dnp, nfiles);
832         } else {
833                 dnd= splitdnarray(dnp, nfiles, SPLIT_DIR);
834                 dnf= splitdnarray(dnp, nfiles, SPLIT_FILE);
835                 dndirs= countdirs(dnp, nfiles);
836                 dnfiles= nfiles - dndirs;
837                 if (dnfiles > 0) {
838 #ifdef BB_FEATURE_LS_SORTFILES
839                         shellsort(dnf, dnfiles);
840 #endif
841                         showfiles(dnf, dnfiles);
842                 }
843                 if (dndirs > 0) {
844 #ifdef BB_FEATURE_LS_SORTFILES
845                         shellsort(dnd, dndirs);
846 #endif
847                         showdirs(dnd, dndirs);
848                 }
849         }
850
851         return(status);
852
853   print_usage_message:
854         usage(ls_usage);
855         return(FALSE);
856 }