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