blob: a35070f209ab305155d319584fdb38a6435b354f [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen9d3aba71999-10-06 09:04:55 +00002/*
Eric Andersencc8ed391999-10-05 16:24:54 +00003 * tiny-ls.c version 0.1.0: A minimalist 'ls'
4 * Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
Eric Andersen11c65522000-09-07 17:24:47 +00005 *
Eric Andersencc8ed391999-10-05 16:24:54 +00006 * 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:
Erik Andersen9ffdaa62000-02-11 21:55:04 +000032 * 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 *
Eric Andersencc8ed391999-10-05 16:24:54 +000036 * 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
Erik Andersene49d5ec2000-02-08 19:58:47 +000044#define TERMINAL_WIDTH 80 /* use 79 if your terminal has linefold bug */
Eric Andersen11c65522000-09-07 17:24:47 +000045#define COLUMN_WIDTH 14 /* default if AUTOWIDTH not defined */
Erik Andersene49d5ec2000-02-08 19:58:47 +000046#define COLUMN_GAP 2 /* includes the file type char, if present */
Eric Andersencc8ed391999-10-05 16:24:54 +000047
48/************************************************************************/
49
Eric Andersen3570a342000-09-25 21:45:58 +000050#include "busybox.h"
Eric Andersen11c65522000-09-07 17:24:47 +000051#include <sys/types.h>
52#include <sys/stat.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000053#include <stdio.h>
54#include <unistd.h>
55#include <dirent.h>
56#include <errno.h>
57#include <stdio.h>
Eric Andersene1850dd1999-11-19 05:42:32 +000058#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +000059#include <time.h>
60#endif
Eric Andersen11c65522000-09-07 17:24:47 +000061#include <string.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000062
Eric Andersen11c65522000-09-07 17:24:47 +000063#ifndef NAJOR
Erik Andersen1ad302a2000-03-24 00:54:46 +000064#define MAJOR(dev) (((dev)>>8)&0xff)
65#define MINOR(dev) ((dev)&0xff)
66#endif
67
Eric Andersen11c65522000-09-07 17:24:47 +000068/* 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 */
Eric Andersencc8ed391999-10-05 16:24:54 +000073
Eric Andersen11c65522000-09-07 17:24:47 +000074/* 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 */
Eric Andersencc8ed391999-10-05 16:24:54 +0000112#endif
113
Eric Andersene1850dd1999-11-19 05:42:32 +0000114#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000115/* which of the three times will be used */
116#define TIME_MOD 0
117#define TIME_CHANGE 1
118#define TIME_ACCESS 2
Eric Andersencc8ed391999-10-05 16:24:54 +0000119#endif
120
Eric Andersen11c65522000-09-07 17:24:47 +0000121#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)
Eric Andersencc8ed391999-10-05 16:24:54 +0000127
Eric Andersen11c65522000-09-07 17:24:47 +0000128#define SPLIT_DIR 0
129#define SPLIT_FILE 1
Eric Andersencc8ed391999-10-05 16:24:54 +0000130
Eric Andersen11c65522000-09-07 17:24:47 +0000131#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
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136
Eric Andersen11c65522000-09-07 17:24:47 +0000137/*
138 * a directory entry and its stat info are stored here
139 */
140struct 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};
146typedef struct dnode dnode_t;
147
148struct dnode **list_dir(char *);
149struct dnode **dnalloc(int);
150int list_single(struct dnode *);
151
152static unsigned int disp_opts= DISP_NORMAL;
153static unsigned int style_fmt= STYLE_AUTO ;
154static unsigned int list_fmt= LIST_SHORT ;
155#ifdef BB_FEATURE_LS_SORTFILES
156static unsigned int sort_opts= SORT_FORWARD;
157static unsigned int sort_order= SORT_FORWARD;
158#endif
159#ifdef BB_FEATURE_LS_TIMESTAMPS
160static unsigned int time_fmt= TIME_MOD;
161#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000162#ifdef BB_FEATURE_LS_FOLLOWLINKS
163static unsigned int follow_links=FALSE;
164#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000165
166static unsigned short column = 0;
167#ifdef BB_FEATURE_AUTOWIDTH
168static unsigned short terminal_width = TERMINAL_WIDTH;
169static unsigned short column_width = COLUMN_WIDTH;
170static unsigned short tabstops = 8;
171#else
172#define terminal_width TERMINAL_WIDTH
173#define column_width COLUMN_WIDTH
174#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000175
176static void newline(void)
177{
Eric Andersen11c65522000-09-07 17:24:47 +0000178 if (column > 0) {
179 fprintf(stdout, "\n");
180 column = 0;
Eric Andersen79565b62000-08-11 18:10:21 +0000181 }
182}
183
Eric Andersen11c65522000-09-07 17:24:47 +0000184/*----------------------------------------------------------------------*/
185#ifdef BB_FEATURE_LS_FILETYPES
186static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000187{
Eric Andersen11c65522000-09-07 17:24:47 +0000188 if ( !(list_fmt & LIST_FILETYPE))
189 return '\0';
190 if ((list_fmt & LIST_EXEC) && S_ISREG(mode)
191 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
192 return APPCHAR(mode);
193}
194#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000195
Eric Andersen11c65522000-09-07 17:24:47 +0000196/*----------------------------------------------------------------------*/
197static void nexttabstop( void )
198{
199 static short nexttab= 0;
200 int n=0;
201
202 if (column > 0) {
203 n= nexttab - column;
204 if (n < 1) n= 1;
205 while (n--) {
206 fprintf(stdout, " ");
207 column++;
208 }
209 }
210 nexttab= column + column_width + COLUMN_GAP ;
211}
212
213/*----------------------------------------------------------------------*/
214int countdirs(struct dnode **dn, int nfiles)
215{
216 int i, dirs;
217
218 /* count how many dirs and regular files there are */
219 if (dn==NULL || nfiles < 1) return(0);
220 dirs= 0;
221 for (i=0; i<nfiles; i++) {
222 if (S_ISDIR(dn[i]->dstat.st_mode)) dirs++;
223 }
224 return(dirs);
225}
226
227int countfiles(struct dnode **dnp)
228{
229 int nfiles;
230 struct dnode *cur;
231
232 if (dnp == NULL) return(0);
233 nfiles= 0;
234 for (cur= dnp[0]; cur->next != NULL ; cur= cur->next) nfiles++;
235 nfiles++;
236 return(nfiles);
237}
238
239/* get memory to hold an array of pointers */
240struct dnode **dnalloc(int num)
241{
242 struct dnode **p;
243
244 if (num < 1) return(NULL);
245
246 p= (struct dnode **)xcalloc((size_t)num, (size_t)(sizeof(struct dnode *)));
247 return(p);
248}
249
250void dfree(struct dnode **dnp)
251{
252 struct dnode *cur, *next;
253
254 if(dnp == NULL) return;
255
256 cur=dnp[0];
257 while (cur != NULL) {
258 if (cur->fullname != NULL) free(cur->fullname); /* free the filename */
259 next= cur->next;
260 free(cur); /* free the dnode */
261 cur= next;
262 }
263 free(dnp); /* free the array holding the dnode pointers */
264}
265
266struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
267{
268 int dncnt, i, d;
269 struct dnode **dnp;
270
271 if (dn==NULL || nfiles < 1) return(NULL);
272
273 /* count how many dirs and regular files there are */
274 dncnt= countdirs(dn, nfiles); /* assume we are looking for dirs */
275 if (which != SPLIT_DIR)
276 dncnt= nfiles - dncnt; /* looking for files */
277
278 /* allocate a file array and a dir array */
279 dnp= dnalloc(dncnt);
280
281 /* copy the entrys into the file or dir array */
282 for (d= i=0; i<nfiles; i++) {
283 if (which == SPLIT_DIR) {
284 if (S_ISDIR(dn[i]->dstat.st_mode)) {
285 dnp[d++]= dn[i];
286 } /* else skip the file */
287 } else {
288 if (!(S_ISDIR(dn[i]->dstat.st_mode))) {
289 dnp[d++]= dn[i];
290 } /* else skip the dir */
291 }
292 }
293 return(dnp);
294}
295
296/*----------------------------------------------------------------------*/
297#ifdef BB_FEATURE_LS_SORTFILES
298int sortcmp(struct dnode *d1, struct dnode *d2)
299{
300 int cmp, dif;
301
302 cmp= 0;
303 if (sort_opts == SORT_SIZE) {
304 dif= (int)(d1->dstat.st_size - d2->dstat.st_size);
305 } else if (sort_opts == SORT_ATIME) {
306 dif= (int)(d1->dstat.st_atime - d2->dstat.st_atime);
307 } else if (sort_opts == SORT_CTIME) {
308 dif= (int)(d1->dstat.st_ctime - d2->dstat.st_ctime);
309 } else if (sort_opts == SORT_MTIME) {
310 dif= (int)(d1->dstat.st_mtime - d2->dstat.st_mtime);
311 } else if (sort_opts == SORT_DIR) {
312 dif= S_ISDIR(d1->dstat.st_mode) - S_ISDIR(d2->dstat.st_mode);
313 /* } else if (sort_opts == SORT_VERSION) { */
314 /* } else if (sort_opts == SORT_EXT) { */
315 } else { /* assume SORT_NAME */
316 dif= 0;
317 }
318
319 if (dif > 0) cmp= -1;
320 if (dif < 0) cmp= 1;
321 if (dif == 0) {
322 /* sort by name- may be a tie_breaker for time or size cmp */
323 dif= strcmp(d1->name, d2->name);
324 if (dif > 0) cmp= 1;
325 if (dif < 0) cmp= -1;
326 }
327
328 if (sort_order == SORT_REVERSE) {
329 cmp= -1 * cmp;
330 }
331 return(cmp);
332}
333
334/*----------------------------------------------------------------------*/
335void shellsort(struct dnode **dn, int size)
336{
337 struct dnode *temp;
338 int gap, i, j;
339
340 /* shell short the array */
341 if(dn==NULL || size < 2) return;
342
343 for (gap= size/2; gap>0; gap /=2) {
344 for (i=gap; i<size; i++) {
345 for (j= i-gap; j>=0; j-=gap) {
346 if (sortcmp(dn[j], dn[j+gap]) <= 0)
347 break;
348 /* they are out of order, swap them */
349 temp= dn[j];
350 dn[j]= dn[j+gap];
351 dn[j+gap]= temp;
352 }
353 }
354 }
355}
356#endif
357
358/*----------------------------------------------------------------------*/
359void showfiles(struct dnode **dn, int nfiles)
360{
361 int i, ncols, nrows, row, nc;
362#ifdef BB_FEATURE_AUTOWIDTH
363 int len;
364#endif
365
366 if(dn==NULL || nfiles < 1) return;
367
368#ifdef BB_FEATURE_AUTOWIDTH
369 /* find the longest file name- use that as the column width */
370 column_width= 0;
371 for (i=0; i<nfiles; i++) {
372 len= strlen(dn[i]->name) +
373 ((list_fmt & LIST_INO) ? 8 : 0) +
374 ((list_fmt & LIST_BLOCKS) ? 5 : 0)
375 ;
376 if (column_width < len) column_width= len;
377 }
378#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000379 ncols= (int)(terminal_width / (column_width + COLUMN_GAP));
Eric Andersen11c65522000-09-07 17:24:47 +0000380 switch (style_fmt) {
381 case STYLE_LONG: /* one record per line, extended info */
382 case STYLE_SINGLE: /* one record per line */
383 ncols= 1;
384 break;
385 }
386
387 nrows= nfiles / ncols;
388 if ((nrows * ncols) < nfiles) nrows++; /* round up fractionals */
389
390 if (nrows > nfiles) nrows= nfiles;
391 for (row=0; row<nrows; row++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000392 for (nc=0; nc<ncols; nc++) {
393 /* reach into the array based on the column and row */
Eric Andersen11c65522000-09-07 17:24:47 +0000394 i= (nc * nrows) + row; /* assume display by column */
395 if (disp_opts & DISP_ROWS)
396 i= (row * ncols) + nc; /* display across row */
397 if (i < nfiles) {
398 nexttabstop();
399 list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000400 }
401 }
Eric Andersena42982e2000-06-07 17:28:53 +0000402 newline();
403 }
Eric Andersen11c65522000-09-07 17:24:47 +0000404}
405
406/*----------------------------------------------------------------------*/
407void showdirs(struct dnode **dn, int ndirs)
408{
409 int i, nfiles;
410 struct dnode **subdnp;
411#ifdef BB_FEATURE_LS_SORTFILES
412 int dndirs;
413 struct dnode **dnd;
414#endif
415
416 if (dn==NULL || ndirs < 1) return;
417
418 for (i=0; i<ndirs; i++) {
419 if (disp_opts & (DISP_DIRNAME | DISP_RECURSIVE)) {
420 fprintf(stdout, "\n%s:\n", dn[i]->fullname);
421 }
422 subdnp= list_dir(dn[i]->fullname);
423 nfiles= countfiles(subdnp);
424 if (nfiles > 0) {
425 /* list all files at this level */
426#ifdef BB_FEATURE_LS_SORTFILES
427 shellsort(subdnp, nfiles);
428#endif
429 showfiles(subdnp, nfiles);
430#ifdef BB_FEATURE_LS_RECURSIVE
431 if (disp_opts & DISP_RECURSIVE) {
432 /* recursive- list the sub-dirs */
433 dnd= splitdnarray(subdnp, nfiles, SPLIT_DIR);
434 dndirs= countdirs(subdnp, nfiles);
435 if (dndirs > 0) {
436 shellsort(dnd, dndirs);
437 showdirs(dnd, dndirs);
438 free(dnd); /* free the array of dnode pointers to the dirs */
439 }
440 }
441 dfree(subdnp); /* free the dnodes and the fullname mem */
442#endif
443 }
444 }
445}
446
447/*----------------------------------------------------------------------*/
448struct dnode **list_dir(char *path)
449{
450 struct dnode *dn, *cur, **dnp;
451 struct dirent *entry;
452 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000453 int i, nfiles;
454
455 if (path==NULL) return(NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000456
457 dn= NULL;
458 nfiles= 0;
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000459 dir = opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000460 if (dir == NULL) {
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000461 errorMsg("%s: %s\n", path, strerror(errno));
Eric Andersen11c65522000-09-07 17:24:47 +0000462 return(NULL); /* could not open the dir */
463 }
464 while ((entry = readdir(dir)) != NULL) {
465 /* are we going to list the file- it may be . or .. or a hidden file */
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000466 if ((strcmp(entry->d_name, ".")==0) && !(disp_opts & DISP_DOT)) continue;
467 if ((strcmp(entry->d_name, "..")==0) && !(disp_opts & DISP_DOT)) continue;
468 if ((entry->d_name[0] == '.') && !(disp_opts & DISP_HIDDEN)) continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000469 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000470 cur->fullname = xmalloc(strlen(path)+1+strlen(entry->d_name)+1);
471 strcpy(cur->fullname, path);
472 if (cur->fullname[strlen(cur->fullname)-1] != '/')
473 strcat(cur->fullname, "/");
474 cur->name= cur->fullname + strlen(cur->fullname);
475 strcat(cur->fullname, entry->d_name);
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000476#ifdef BB_FEATURE_LS_FOLLOWLINKS
477 if (follow_links == TRUE) {
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000478 if (stat(cur->fullname, &cur->dstat)) {
479 errorMsg("%s: %s\n", cur->fullname, strerror(errno));
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000480 free(cur->fullname);
481 free(cur);
482 continue;
483 }
484 } else
485#endif
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000486 if (lstat(cur->fullname, &cur->dstat)) { /* get file stat info into node */
487 errorMsg("%s: %s\n", cur->fullname, strerror(errno));
Eric Andersen11c65522000-09-07 17:24:47 +0000488 free(cur->fullname);
489 free(cur);
490 continue;
491 }
492 cur->next= dn;
493 dn= cur;
494 nfiles++;
495 }
496 closedir(dir);
497
498 /* now that we know how many files there are
499 ** allocate memory for an array to hold dnode pointers
500 */
501 if (nfiles < 1) return(NULL);
502 dnp= dnalloc(nfiles);
503 for (i=0, cur=dn; i<nfiles; i++) {
504 dnp[i]= cur; /* save pointer to node in array */
505 cur= cur->next;
506 }
507
508 return(dnp);
509}
510
511/*----------------------------------------------------------------------*/
512int list_single(struct dnode *dn)
513{
514 int i, len;
515 char scratch[BUFSIZ + 1];
516#ifdef BB_FEATURE_LS_TIMESTAMPS
517 char *filetime;
518 time_t ttime, age;
519#endif
520#ifdef BB_FEATURE_LS_FILETYPES
521 struct stat info;
522 char append;
523#endif
524
525 if (dn==NULL || dn->fullname==NULL) return(0);
526
527#ifdef BB_FEATURE_LS_TIMESTAMPS
528 ttime= dn->dstat.st_mtime; /* the default time */
529 if (time_fmt & TIME_ACCESS) ttime= dn->dstat.st_atime;
530 if (time_fmt & TIME_CHANGE) ttime= dn->dstat.st_ctime;
531 filetime= ctime(&ttime);
532#endif
533#ifdef BB_FEATURE_LS_FILETYPES
534 append = append_char(dn->dstat.st_mode);
535#endif
536
537 for (i=0; i<=31; i++) {
538 switch (list_fmt & (1<<i)) {
539 case LIST_INO:
540 fprintf(stdout, "%7ld ", dn->dstat.st_ino);
541 column += 8;
542 break;
543 case LIST_BLOCKS:
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000544#if _FILE_OFFSET_BITS == 64
545 fprintf(stdout, "%4lld ", dn->dstat.st_blocks>>1);
546#else
Eric Andersen11c65522000-09-07 17:24:47 +0000547 fprintf(stdout, "%4ld ", dn->dstat.st_blocks>>1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000548#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000549 column += 5;
550 break;
551 case LIST_MODEBITS:
552 fprintf(stdout, "%10s", (char *)modeString(dn->dstat.st_mode));
553 column += 10;
554 break;
555 case LIST_NLINKS:
556 fprintf(stdout, "%4d ", dn->dstat.st_nlink);
557 column += 10;
558 break;
559 case LIST_ID_NAME:
560#ifdef BB_FEATURE_LS_USERNAME
561 {
562 memset(&info, 0, sizeof(struct stat));
563 memset(scratch, 0, sizeof(scratch));
564 if (!stat(dn->fullname, &info)) {
565 my_getpwuid(scratch, info.st_uid);
566 }
567 if (*scratch) {
568 fprintf(stdout, "%-8.8s ", scratch);
569 } else {
570 fprintf(stdout, "%-8d ", dn->dstat.st_uid);
571 }
572 memset(scratch, 0, sizeof(scratch));
573 if (info.st_ctime != 0) {
574 my_getgrgid(scratch, info.st_gid);
575 }
576 if (*scratch) {
577 fprintf(stdout, "%-8.8s", scratch);
578 } else {
579 fprintf(stdout, "%-8d", dn->dstat.st_gid);
580 }
581 column += 17;
582 }
583 break;
584#endif
585 case LIST_ID_NUMERIC:
586 fprintf(stdout, "%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
587 column += 17;
588 break;
589 case LIST_SIZE:
590 case LIST_DEV:
591 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
592 fprintf(stdout, "%4d, %3d ", (int)MAJOR(dn->dstat.st_rdev), (int)MINOR(dn->dstat.st_rdev));
593 } else {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000594#if _FILE_OFFSET_BITS == 64
595 fprintf(stdout, "%9lld ", dn->dstat.st_size);
596#else
Eric Andersen11c65522000-09-07 17:24:47 +0000597 fprintf(stdout, "%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000598#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000599 }
600 column += 10;
601 break;
602#ifdef BB_FEATURE_LS_TIMESTAMPS
603 case LIST_FULLTIME:
604 case LIST_DATE_TIME:
605 if (list_fmt & LIST_FULLTIME) {
606 fprintf(stdout, "%24.24s ", filetime);
607 column += 25;
608 break;
609 }
610 age = time(NULL) - ttime;
611 fprintf(stdout, "%6.6s ", filetime+4);
612 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
613 /* hh:mm if less than 6 months old */
614 fprintf(stdout, "%5.5s ", filetime+11);
615 } else {
616 fprintf(stdout, " %4.4s ", filetime+20);
617 }
618 column += 13;
619 break;
620#endif
621 case LIST_FILENAME:
622 fprintf(stdout, "%s", dn->name);
623 column += strlen(dn->name);
624 break;
625 case LIST_SYMLINK:
626 if (S_ISLNK(dn->dstat.st_mode)) {
627 len= readlink(dn->fullname, scratch, (sizeof scratch)-1);
628 if (len > 0) {
629 scratch[len]= '\0';
630 fprintf(stdout, " -> %s", scratch);
631#ifdef BB_FEATURE_LS_FILETYPES
632 if (!stat(dn->fullname, &info)) {
633 append = append_char(info.st_mode);
634 }
635#endif
636 column += len+4;
637 }
638 }
639 break;
640#ifdef BB_FEATURE_LS_FILETYPES
641 case LIST_FILETYPE:
642 if (append != '\0') {
643 fprintf(stdout, "%1c", append);
644 column++;
645 }
646 break;
647#endif
648 }
649 }
650
651 return(0);
652}
653
654/*----------------------------------------------------------------------*/
655extern int ls_main(int argc, char **argv)
656{
657 struct dnode **dnf, **dnd;
658 int dnfiles, dndirs;
659 struct dnode *dn, *cur, **dnp;
660 int i, nfiles;
661 int opt;
662 int oi, ac;
663 char **av;
664
665 disp_opts= DISP_NORMAL;
666 style_fmt= STYLE_AUTO;
667 list_fmt= LIST_SHORT;
668#ifdef BB_FEATURE_LS_SORTFILES
669 sort_opts= SORT_NAME;
670#endif
671#ifdef BB_FEATURE_LS_TIMESTAMPS
672 time_fmt= TIME_MOD;
673#endif
674 nfiles=0;
675
676 applet_name= argv[0];
677 /* process options */
678 while ((opt = getopt(argc, argv, "1AaCdgilnsx"
679#ifdef BB_FEATURE_AUTOWIDTH
680"T:w:"
681#endif
682#ifdef BB_FEATURE_LS_FILETYPES
683"Fp"
684#endif
685#ifdef BB_FEATURE_LS_RECURSIVE
686"R"
687#endif
688#ifdef BB_FEATURE_LS_SORTFILES
689"rSvX"
690#endif
691#ifdef BB_FEATURE_LS_TIMESTAMPS
692"cetu"
693#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000694#ifdef BB_FEATURE_LS_FOLLOWLINKS
695"L"
696#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000697 )) > 0) {
698 switch (opt) {
699 case '1': style_fmt = STYLE_SINGLE; break;
700 case 'A': disp_opts |= DISP_HIDDEN; break;
701 case 'a': disp_opts |= DISP_HIDDEN | DISP_DOT; break;
702 case 'C': style_fmt = STYLE_COLUMNS; break;
703 case 'd': disp_opts |= DISP_NOLIST; break;
704 case 'e': list_fmt |= LIST_FULLTIME; break;
705 case 'g': /* ignore -- for ftp servers */ break;
706 case 'i': list_fmt |= LIST_INO; break;
707 case 'l': style_fmt = STYLE_LONG; list_fmt |= LIST_LONG; break;
708 case 'n': list_fmt |= LIST_ID_NUMERIC; break;
709 case 's': list_fmt |= LIST_BLOCKS; break;
710 case 'x': disp_opts = DISP_ROWS; break;
711#ifdef BB_FEATURE_LS_FILETYPES
712 case 'F': list_fmt |= LIST_FILETYPE | LIST_EXEC; break;
713 case 'p': list_fmt |= LIST_FILETYPE; break;
714#endif
715#ifdef BB_FEATURE_LS_RECURSIVE
716 case 'R': disp_opts |= DISP_RECURSIVE; break;
717#endif
718#ifdef BB_FEATURE_LS_SORTFILES
719 case 'r': sort_order |= SORT_REVERSE; break;
720 case 'S': sort_opts= SORT_SIZE; break;
721 case 'v': sort_opts= SORT_VERSION; break;
722 case 'X': sort_opts= SORT_EXT; break;
723#endif
724#ifdef BB_FEATURE_LS_TIMESTAMPS
725 case 'c': time_fmt = TIME_CHANGE; sort_opts= SORT_CTIME; break;
726 case 't': sort_opts= SORT_MTIME; break;
727 case 'u': time_fmt = TIME_ACCESS; sort_opts= SORT_ATIME; break;
728#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000729#ifdef BB_FEATURE_LS_FOLLOWLINKS
730 case 'L': follow_links= TRUE; break;
731#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000732#ifdef BB_FEATURE_AUTOWIDTH
733 case 'T': tabstops= atoi(optarg); break;
734 case 'w': terminal_width= atoi(optarg); break;
735#endif
736 default:
737 goto print_usage_message;
738 }
739 }
740
741 /* sort out which command line options take precedence */
742#ifdef BB_FEATURE_LS_RECURSIVE
743 if (disp_opts & DISP_NOLIST)
744 disp_opts &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
745#endif
746#ifdef BB_FEATURE_LS_TIMESTAMPS
747 if (time_fmt & TIME_CHANGE) sort_opts= SORT_CTIME;
748 if (time_fmt & TIME_ACCESS) sort_opts= SORT_ATIME;
749#endif
750 if (style_fmt != STYLE_LONG)
751 list_fmt &= ~LIST_ID_NUMERIC; /* numeric uid only for long list */
752#ifdef BB_FEATURE_LS_USERNAME
753 if (style_fmt == STYLE_LONG && (list_fmt & LIST_ID_NUMERIC))
754 list_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
755#endif
756
757 /* choose a display format */
758 if (style_fmt == STYLE_AUTO)
759 style_fmt = isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE;
760
761 /*
762 * when there are no cmd line args we have to supply a default "." arg.
763 * we will create a second argv array, "av" that will hold either
764 * our created "." arg, or the real cmd line args. The av array
765 * just holds the pointers- we don't move the date the pointers
766 * point to.
767 */
768 ac= argc - optind; /* how many cmd line args are left */
769 if (ac < 1) {
770 av= (char **)xcalloc((size_t)1, (size_t)(sizeof(char *)));
771 av[0]= xstrdup(".");
772 ac=1;
773 } else {
774 av= (char **)xcalloc((size_t)ac, (size_t)(sizeof(char *)));
775 for (oi=0 ; oi < ac; oi++) {
776 av[oi]= argv[optind++]; /* copy pointer to real cmd line arg */
777 }
778 }
779
780 /* now, everything is in the av array */
781 if (ac > 1)
782 disp_opts |= DISP_DIRNAME; /* 2 or more items? label directories */
783
784 /* stuff the command line file names into an dnode array */
785 dn=NULL;
786 for (oi=0 ; oi < ac; oi++) {
787 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
788 cur->fullname= xstrdup(av[oi]);
Eric Andersen958c78f2000-10-09 17:51:25 +0000789 cur->name= cur->fullname;
790#ifdef BB_FEATURE_LS_FOLLOWLINKS
791 if (follow_links == TRUE) {
792 if (stat(av[oi], &cur->dstat)) {
793 errorMsg("%s: %s\n", av[oi], strerror(errno));
794 free(cur->fullname);
795 free(cur);
796 continue;
797 }
798 } else
799#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000800 if (lstat(av[oi], &cur->dstat)) { /* get file info into node */
801 errorMsg("%s: %s\n", av[oi], strerror(errno));
802 free(cur->fullname);
803 free(cur);
804 continue;
805 }
806 cur->next= dn;
807 dn= cur;
808 nfiles++;
809 }
810
811 /* now that we know how many files there are
812 ** allocate memory for an array to hold dnode pointers
813 */
814 dnp= dnalloc(nfiles);
815 for (i=0, cur=dn; i<nfiles; i++) {
816 dnp[i]= cur; /* save pointer to node in array */
817 cur= cur->next;
818 }
819
820
821 if (disp_opts & DISP_NOLIST) {
822#ifdef BB_FEATURE_LS_SORTFILES
823 shellsort(dnp, nfiles);
824#endif
825 if (nfiles > 0) showfiles(dnp, nfiles);
826 } else {
827 dnd= splitdnarray(dnp, nfiles, SPLIT_DIR);
828 dnf= splitdnarray(dnp, nfiles, SPLIT_FILE);
829 dndirs= countdirs(dnp, nfiles);
830 dnfiles= nfiles - dndirs;
831 if (dnfiles > 0) {
832#ifdef BB_FEATURE_LS_SORTFILES
833 shellsort(dnf, dnfiles);
834#endif
835 showfiles(dnf, dnfiles);
836 }
837 if (dndirs > 0) {
838#ifdef BB_FEATURE_LS_SORTFILES
839 shellsort(dnd, dndirs);
840#endif
841 showdirs(dnd, dndirs);
842 }
843 }
844
845 return(0);
Eric Andersencc8ed391999-10-05 16:24:54 +0000846
Erik Andersene49d5ec2000-02-08 19:58:47 +0000847 print_usage_message:
848 usage(ls_usage);
Eric Andersen11c65522000-09-07 17:24:47 +0000849 return(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000850}