blob: 4b225d6f87a2cf118ad706000c16a23adee60f4f [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
Mark Whitley59ab0252001-01-23 22:30:04 +000044static const int TERMINAL_WIDTH = 80; /* use 79 if your terminal has linefold bug */
45static const int COLUMN_WIDTH = 14; /* default if AUTOWIDTH not defined */
46static const int 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 Andersen5307eca2001-01-26 01:52:43 +000063#include <fcntl.h>
64#include <signal.h>
65#include <sys/ioctl.h>
66
Eric Andersen11c65522000-09-07 17:24:47 +000067#ifndef NAJOR
Erik Andersen1ad302a2000-03-24 00:54:46 +000068#define MAJOR(dev) (((dev)>>8)&0xff)
69#define MINOR(dev) ((dev)&0xff)
70#endif
71
Eric Andersen11c65522000-09-07 17:24:47 +000072/* what is the overall style of the listing */
Mark Whitley59ab0252001-01-23 22:30:04 +000073enum {
74STYLE_AUTO = 0,
75STYLE_LONG = 1, /* one record per line, extended info */
76STYLE_SINGLE = 2, /* one record per line */
77STYLE_COLUMNS = 3 /* fill columns */
78};
Eric Andersencc8ed391999-10-05 16:24:54 +000079
Eric Andersen11c65522000-09-07 17:24:47 +000080/* 51306 lrwxrwxrwx 1 root root 2 May 11 01:43 /bin/view -> vi* */
81/* what file information will be listed */
82#define LIST_INO (1<<0)
83#define LIST_BLOCKS (1<<1)
84#define LIST_MODEBITS (1<<2)
85#define LIST_NLINKS (1<<3)
86#define LIST_ID_NAME (1<<4)
87#define LIST_ID_NUMERIC (1<<5)
88#define LIST_SIZE (1<<6)
89#define LIST_DEV (1<<7)
90#define LIST_DATE_TIME (1<<8)
91#define LIST_FULLTIME (1<<9)
92#define LIST_FILENAME (1<<10)
93#define LIST_SYMLINK (1<<11)
94#define LIST_FILETYPE (1<<12)
95#define LIST_EXEC (1<<13)
96
97/* what files will be displayed */
98#define DISP_NORMAL (0) /* show normal filenames */
99#define DISP_DIRNAME (1<<0) /* 2 or more items? label directories */
100#define DISP_HIDDEN (1<<1) /* show filenames starting with . */
101#define DISP_DOT (1<<2) /* show . and .. */
102#define DISP_NOLIST (1<<3) /* show directory as itself, not contents */
103#define DISP_RECURSIVE (1<<4) /* show directory and everything below it */
104#define DISP_ROWS (1<<5) /* print across rows */
105
106#ifdef BB_FEATURE_LS_SORTFILES
107/* how will the files be sorted */
Mark Whitley59ab0252001-01-23 22:30:04 +0000108static const int SORT_FORWARD = 0; /* sort in reverse order */
109static const int SORT_REVERSE = 1; /* sort in reverse order */
110static const int SORT_NAME = 2; /* sort by file name */
111static const int SORT_SIZE = 3; /* sort by file size */
112static const int SORT_ATIME = 4; /* sort by last access time */
113static const int SORT_CTIME = 5; /* sort by last change time */
114static const int SORT_MTIME = 6; /* sort by last modification time */
115static const int SORT_VERSION = 7; /* sort by version */
116static const int SORT_EXT = 8; /* sort by file name extension */
117static const int SORT_DIR = 9; /* sort by file or directory */
Eric Andersencc8ed391999-10-05 16:24:54 +0000118#endif
119
Eric Andersene1850dd1999-11-19 05:42:32 +0000120#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000121/* which of the three times will be used */
Mark Whitley59ab0252001-01-23 22:30:04 +0000122static const int TIME_MOD = 0;
123static const int TIME_CHANGE = 1;
124static const int TIME_ACCESS = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +0000125#endif
126
Eric Andersen11c65522000-09-07 17:24:47 +0000127#define LIST_SHORT (LIST_FILENAME)
128#define LIST_ISHORT (LIST_INO | LIST_FILENAME)
129#define LIST_LONG (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | \
130 LIST_SIZE | LIST_DATE_TIME | LIST_FILENAME | \
131 LIST_SYMLINK)
132#define LIST_ILONG (LIST_INO | LIST_LONG)
Eric Andersencc8ed391999-10-05 16:24:54 +0000133
Mark Whitley59ab0252001-01-23 22:30:04 +0000134static const int SPLIT_DIR = 0;
135static const int SPLIT_FILE = 1;
136static const int SPLIT_SUBDIR = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +0000137
Eric Andersen11c65522000-09-07 17:24:47 +0000138#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
139#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
140#ifdef BB_FEATURE_LS_FILETYPES
141#define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
142#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000143
Eric Andersen11c65522000-09-07 17:24:47 +0000144/*
145 * a directory entry and its stat info are stored here
146 */
147struct dnode { /* the basic node */
148 char *name; /* the dir entry name */
149 char *fullname; /* the dir entry name */
150 struct stat dstat; /* the file stat info */
151 struct dnode *next; /* point at the next node */
152};
153typedef struct dnode dnode_t;
154
155struct dnode **list_dir(char *);
156struct dnode **dnalloc(int);
157int list_single(struct dnode *);
158
Mark Whitley59ab0252001-01-23 22:30:04 +0000159static unsigned int disp_opts;
160static unsigned int style_fmt;
161static unsigned int list_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000162#ifdef BB_FEATURE_LS_SORTFILES
Mark Whitley59ab0252001-01-23 22:30:04 +0000163static unsigned int sort_opts;
164static unsigned int sort_order;
Eric Andersen11c65522000-09-07 17:24:47 +0000165#endif
166#ifdef BB_FEATURE_LS_TIMESTAMPS
Mark Whitley59ab0252001-01-23 22:30:04 +0000167static unsigned int time_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000168#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000169#ifdef BB_FEATURE_LS_FOLLOWLINKS
170static unsigned int follow_links=FALSE;
171#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000172
173static unsigned short column = 0;
174#ifdef BB_FEATURE_AUTOWIDTH
Mark Whitley59ab0252001-01-23 22:30:04 +0000175static unsigned short terminal_width;
176static unsigned short column_width;
177static unsigned short tabstops;
Eric Andersenf5d5e772001-01-24 23:34:48 +0000178#else
Eric Andersena528dc72001-01-26 18:30:12 +0000179static unsigned short column_width = COLUMN_WIDTH;
Eric Andersen11c65522000-09-07 17:24:47 +0000180#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000181
Matt Kraai33fdae52000-10-13 17:59:43 +0000182static int status = EXIT_SUCCESS;
183
Richard June6d0921c2001-01-22 22:35:38 +0000184#ifdef BB_FEATURE_HUMAN_READABLE
185unsigned long ls_disp_hr = KILOBYTE;
186#endif
187
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000188static int my_stat(struct dnode *cur)
189{
190#ifdef BB_FEATURE_LS_FOLLOWLINKS
191 if (follow_links == TRUE) {
192 if (stat(cur->fullname, &cur->dstat)) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000193 perror_msg("%s", cur->fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000194 status = EXIT_FAILURE;
195 free(cur->fullname);
196 free(cur);
197 return -1;
198 }
199 } else
200#endif
201 if (lstat(cur->fullname, &cur->dstat)) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000202 perror_msg("%s", cur->fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000203 status = EXIT_FAILURE;
204 free(cur->fullname);
205 free(cur);
206 return -1;
207 }
208 return 0;
209}
210
Eric Andersencc8ed391999-10-05 16:24:54 +0000211static void newline(void)
212{
Eric Andersen11c65522000-09-07 17:24:47 +0000213 if (column > 0) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000214 putchar('\n');
Eric Andersen11c65522000-09-07 17:24:47 +0000215 column = 0;
Eric Andersen79565b62000-08-11 18:10:21 +0000216 }
217}
218
Eric Andersen11c65522000-09-07 17:24:47 +0000219/*----------------------------------------------------------------------*/
220#ifdef BB_FEATURE_LS_FILETYPES
221static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000222{
Eric Andersen11c65522000-09-07 17:24:47 +0000223 if ( !(list_fmt & LIST_FILETYPE))
224 return '\0';
225 if ((list_fmt & LIST_EXEC) && S_ISREG(mode)
226 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
227 return APPCHAR(mode);
228}
229#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000230
Eric Andersen11c65522000-09-07 17:24:47 +0000231/*----------------------------------------------------------------------*/
232static void nexttabstop( void )
233{
234 static short nexttab= 0;
235 int n=0;
236
237 if (column > 0) {
238 n= nexttab - column;
239 if (n < 1) n= 1;
240 while (n--) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000241 putchar(' ');
Eric Andersen11c65522000-09-07 17:24:47 +0000242 column++;
243 }
244 }
Eric Andersenf5d5e772001-01-24 23:34:48 +0000245 nexttab= column + column_width + COLUMN_GAP;
Eric Andersen11c65522000-09-07 17:24:47 +0000246}
247
248/*----------------------------------------------------------------------*/
Eric Andersencf1189f2000-11-29 21:52:06 +0000249static int is_subdir(struct dnode *dn)
250{
251 return (S_ISDIR(dn->dstat.st_mode) && strcmp(dn->name, ".") != 0 &&
252 strcmp(dn->name, "..") != 0);
253}
254
Eric Andersen11c65522000-09-07 17:24:47 +0000255int countdirs(struct dnode **dn, int nfiles)
256{
257 int i, dirs;
258
Eric Andersen11c65522000-09-07 17:24:47 +0000259 if (dn==NULL || nfiles < 1) return(0);
260 dirs= 0;
261 for (i=0; i<nfiles; i++) {
262 if (S_ISDIR(dn[i]->dstat.st_mode)) dirs++;
263 }
264 return(dirs);
265}
266
Eric Andersencf1189f2000-11-29 21:52:06 +0000267int countsubdirs(struct dnode **dn, int nfiles)
268{
269 int i, subdirs;
270
271 if (dn == NULL || nfiles < 1) return 0;
272 subdirs = 0;
273 for (i = 0; i < nfiles; i++)
274 if (is_subdir(dn[i]))
275 subdirs++;
276 return subdirs;
277}
278
Eric Andersen11c65522000-09-07 17:24:47 +0000279int countfiles(struct dnode **dnp)
280{
281 int nfiles;
282 struct dnode *cur;
283
284 if (dnp == NULL) return(0);
285 nfiles= 0;
286 for (cur= dnp[0]; cur->next != NULL ; cur= cur->next) nfiles++;
287 nfiles++;
288 return(nfiles);
289}
290
291/* get memory to hold an array of pointers */
292struct dnode **dnalloc(int num)
293{
294 struct dnode **p;
295
296 if (num < 1) return(NULL);
297
298 p= (struct dnode **)xcalloc((size_t)num, (size_t)(sizeof(struct dnode *)));
299 return(p);
300}
301
302void dfree(struct dnode **dnp)
303{
304 struct dnode *cur, *next;
305
306 if(dnp == NULL) return;
307
308 cur=dnp[0];
309 while (cur != NULL) {
310 if (cur->fullname != NULL) free(cur->fullname); /* free the filename */
311 next= cur->next;
312 free(cur); /* free the dnode */
313 cur= next;
314 }
315 free(dnp); /* free the array holding the dnode pointers */
316}
317
318struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
319{
320 int dncnt, i, d;
321 struct dnode **dnp;
322
323 if (dn==NULL || nfiles < 1) return(NULL);
324
325 /* count how many dirs and regular files there are */
Eric Andersencf1189f2000-11-29 21:52:06 +0000326 if (which == SPLIT_SUBDIR)
327 dncnt = countsubdirs(dn, nfiles);
328 else {
329 dncnt= countdirs(dn, nfiles); /* assume we are looking for dirs */
330 if (which == SPLIT_FILE)
331 dncnt= nfiles - dncnt; /* looking for files */
332 }
Eric Andersen11c65522000-09-07 17:24:47 +0000333
334 /* allocate a file array and a dir array */
335 dnp= dnalloc(dncnt);
336
337 /* copy the entrys into the file or dir array */
338 for (d= i=0; i<nfiles; i++) {
339 if (which == SPLIT_DIR) {
340 if (S_ISDIR(dn[i]->dstat.st_mode)) {
341 dnp[d++]= dn[i];
342 } /* else skip the file */
Eric Andersencf1189f2000-11-29 21:52:06 +0000343 } else if (which == SPLIT_SUBDIR) {
344 if (is_subdir(dn[i])) {
345 dnp[d++]= dn[i];
346 } /* else skip the file or dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000347 } else {
348 if (!(S_ISDIR(dn[i]->dstat.st_mode))) {
349 dnp[d++]= dn[i];
350 } /* else skip the dir */
351 }
352 }
353 return(dnp);
354}
355
356/*----------------------------------------------------------------------*/
357#ifdef BB_FEATURE_LS_SORTFILES
358int sortcmp(struct dnode *d1, struct dnode *d2)
359{
360 int cmp, dif;
361
362 cmp= 0;
363 if (sort_opts == SORT_SIZE) {
364 dif= (int)(d1->dstat.st_size - d2->dstat.st_size);
365 } else if (sort_opts == SORT_ATIME) {
366 dif= (int)(d1->dstat.st_atime - d2->dstat.st_atime);
367 } else if (sort_opts == SORT_CTIME) {
368 dif= (int)(d1->dstat.st_ctime - d2->dstat.st_ctime);
369 } else if (sort_opts == SORT_MTIME) {
370 dif= (int)(d1->dstat.st_mtime - d2->dstat.st_mtime);
371 } else if (sort_opts == SORT_DIR) {
372 dif= S_ISDIR(d1->dstat.st_mode) - S_ISDIR(d2->dstat.st_mode);
373 /* } else if (sort_opts == SORT_VERSION) { */
374 /* } else if (sort_opts == SORT_EXT) { */
375 } else { /* assume SORT_NAME */
376 dif= 0;
377 }
378
379 if (dif > 0) cmp= -1;
380 if (dif < 0) cmp= 1;
381 if (dif == 0) {
382 /* sort by name- may be a tie_breaker for time or size cmp */
383 dif= strcmp(d1->name, d2->name);
384 if (dif > 0) cmp= 1;
385 if (dif < 0) cmp= -1;
386 }
387
388 if (sort_order == SORT_REVERSE) {
389 cmp= -1 * cmp;
390 }
391 return(cmp);
392}
393
394/*----------------------------------------------------------------------*/
395void shellsort(struct dnode **dn, int size)
396{
397 struct dnode *temp;
398 int gap, i, j;
399
400 /* shell short the array */
401 if(dn==NULL || size < 2) return;
402
403 for (gap= size/2; gap>0; gap /=2) {
404 for (i=gap; i<size; i++) {
405 for (j= i-gap; j>=0; j-=gap) {
406 if (sortcmp(dn[j], dn[j+gap]) <= 0)
407 break;
408 /* they are out of order, swap them */
409 temp= dn[j];
410 dn[j]= dn[j+gap];
411 dn[j+gap]= temp;
412 }
413 }
414 }
415}
416#endif
417
418/*----------------------------------------------------------------------*/
419void showfiles(struct dnode **dn, int nfiles)
420{
421 int i, ncols, nrows, row, nc;
422#ifdef BB_FEATURE_AUTOWIDTH
423 int len;
424#endif
425
426 if(dn==NULL || nfiles < 1) return;
427
428#ifdef BB_FEATURE_AUTOWIDTH
429 /* find the longest file name- use that as the column width */
430 column_width= 0;
431 for (i=0; i<nfiles; i++) {
432 len= strlen(dn[i]->name) +
433 ((list_fmt & LIST_INO) ? 8 : 0) +
434 ((list_fmt & LIST_BLOCKS) ? 5 : 0)
435 ;
436 if (column_width < len) column_width= len;
437 }
Eric Andersen79565b62000-08-11 18:10:21 +0000438 ncols= (int)(terminal_width / (column_width + COLUMN_GAP));
Eric Andersenf5d5e772001-01-24 23:34:48 +0000439#else
440 ncols= TERMINAL_WIDTH;
441#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000442 switch (style_fmt) {
443 case STYLE_LONG: /* one record per line, extended info */
444 case STYLE_SINGLE: /* one record per line */
445 ncols= 1;
446 break;
447 }
448
449 nrows= nfiles / ncols;
450 if ((nrows * ncols) < nfiles) nrows++; /* round up fractionals */
451
452 if (nrows > nfiles) nrows= nfiles;
453 for (row=0; row<nrows; row++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000454 for (nc=0; nc<ncols; nc++) {
455 /* reach into the array based on the column and row */
Eric Andersen11c65522000-09-07 17:24:47 +0000456 i= (nc * nrows) + row; /* assume display by column */
457 if (disp_opts & DISP_ROWS)
458 i= (row * ncols) + nc; /* display across row */
459 if (i < nfiles) {
460 nexttabstop();
461 list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000462 }
463 }
Eric Andersena42982e2000-06-07 17:28:53 +0000464 newline();
465 }
Eric Andersen11c65522000-09-07 17:24:47 +0000466}
467
468/*----------------------------------------------------------------------*/
469void showdirs(struct dnode **dn, int ndirs)
470{
471 int i, nfiles;
472 struct dnode **subdnp;
Matt Kraaib273d662000-10-28 01:21:22 +0000473#ifdef BB_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000474 int dndirs;
475 struct dnode **dnd;
476#endif
477
478 if (dn==NULL || ndirs < 1) return;
479
480 for (i=0; i<ndirs; i++) {
481 if (disp_opts & (DISP_DIRNAME | DISP_RECURSIVE)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000482 printf("\n%s:\n", dn[i]->fullname);
Eric Andersen11c65522000-09-07 17:24:47 +0000483 }
484 subdnp= list_dir(dn[i]->fullname);
485 nfiles= countfiles(subdnp);
486 if (nfiles > 0) {
487 /* list all files at this level */
488#ifdef BB_FEATURE_LS_SORTFILES
489 shellsort(subdnp, nfiles);
490#endif
491 showfiles(subdnp, nfiles);
492#ifdef BB_FEATURE_LS_RECURSIVE
493 if (disp_opts & DISP_RECURSIVE) {
494 /* recursive- list the sub-dirs */
Eric Andersencf1189f2000-11-29 21:52:06 +0000495 dnd= splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
496 dndirs= countsubdirs(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000497 if (dndirs > 0) {
Matt Kraaia5bd2682000-10-28 06:40:09 +0000498#ifdef BB_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000499 shellsort(dnd, dndirs);
Matt Kraaia5bd2682000-10-28 06:40:09 +0000500#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000501 showdirs(dnd, dndirs);
502 free(dnd); /* free the array of dnode pointers to the dirs */
503 }
504 }
505 dfree(subdnp); /* free the dnodes and the fullname mem */
506#endif
507 }
508 }
509}
510
511/*----------------------------------------------------------------------*/
512struct dnode **list_dir(char *path)
513{
514 struct dnode *dn, *cur, **dnp;
515 struct dirent *entry;
516 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000517 int i, nfiles;
518
519 if (path==NULL) return(NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000520
521 dn= NULL;
522 nfiles= 0;
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000523 dir = opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000524 if (dir == NULL) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000525 perror_msg("%s", path);
Matt Kraai33fdae52000-10-13 17:59:43 +0000526 status = EXIT_FAILURE;
Eric Andersen11c65522000-09-07 17:24:47 +0000527 return(NULL); /* could not open the dir */
528 }
529 while ((entry = readdir(dir)) != NULL) {
530 /* are we going to list the file- it may be . or .. or a hidden file */
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000531 if ((strcmp(entry->d_name, ".")==0) && !(disp_opts & DISP_DOT)) continue;
532 if ((strcmp(entry->d_name, "..")==0) && !(disp_opts & DISP_DOT)) continue;
533 if ((entry->d_name[0] == '.') && !(disp_opts & DISP_HIDDEN)) continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000534 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000535 cur->fullname = xmalloc(strlen(path)+1+strlen(entry->d_name)+1);
536 strcpy(cur->fullname, path);
537 if (cur->fullname[strlen(cur->fullname)-1] != '/')
538 strcat(cur->fullname, "/");
539 cur->name= cur->fullname + strlen(cur->fullname);
540 strcat(cur->fullname, entry->d_name);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000541 if (my_stat(cur))
Eric Andersen11c65522000-09-07 17:24:47 +0000542 continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000543 cur->next= dn;
544 dn= cur;
545 nfiles++;
546 }
547 closedir(dir);
548
549 /* now that we know how many files there are
550 ** allocate memory for an array to hold dnode pointers
551 */
552 if (nfiles < 1) return(NULL);
553 dnp= dnalloc(nfiles);
554 for (i=0, cur=dn; i<nfiles; i++) {
555 dnp[i]= cur; /* save pointer to node in array */
556 cur= cur->next;
557 }
558
559 return(dnp);
560}
561
562/*----------------------------------------------------------------------*/
563int list_single(struct dnode *dn)
564{
565 int i, len;
566 char scratch[BUFSIZ + 1];
567#ifdef BB_FEATURE_LS_TIMESTAMPS
568 char *filetime;
569 time_t ttime, age;
570#endif
Matt Kraaie93abf92000-11-18 01:08:24 +0000571#if defined (BB_FEATURE_LS_FILETYPES)
Eric Andersen11c65522000-09-07 17:24:47 +0000572 struct stat info;
Matt Kraaib273d662000-10-28 01:21:22 +0000573#endif
574#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersen11c65522000-09-07 17:24:47 +0000575 char append;
576#endif
577
578 if (dn==NULL || dn->fullname==NULL) return(0);
579
580#ifdef BB_FEATURE_LS_TIMESTAMPS
581 ttime= dn->dstat.st_mtime; /* the default time */
582 if (time_fmt & TIME_ACCESS) ttime= dn->dstat.st_atime;
583 if (time_fmt & TIME_CHANGE) ttime= dn->dstat.st_ctime;
584 filetime= ctime(&ttime);
585#endif
586#ifdef BB_FEATURE_LS_FILETYPES
587 append = append_char(dn->dstat.st_mode);
588#endif
589
590 for (i=0; i<=31; i++) {
591 switch (list_fmt & (1<<i)) {
592 case LIST_INO:
Matt Kraai12f417e2001-01-18 02:57:08 +0000593 printf("%7ld ", dn->dstat.st_ino);
Eric Andersen11c65522000-09-07 17:24:47 +0000594 column += 8;
595 break;
596 case LIST_BLOCKS:
Richard June6d0921c2001-01-22 22:35:38 +0000597#ifdef BB_FEATURE_HUMAN_READABLE
598 fprintf(stdout, "%5s ", format(dn->dstat.st_size, ls_disp_hr));
599#else
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000600#if _FILE_OFFSET_BITS == 64
Matt Kraai12f417e2001-01-18 02:57:08 +0000601 printf("%4lld ", dn->dstat.st_blocks>>1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000602#else
Matt Kraai12f417e2001-01-18 02:57:08 +0000603 printf("%4ld ", dn->dstat.st_blocks>>1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000604#endif
Richard June6d0921c2001-01-22 22:35:38 +0000605#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000606 column += 5;
607 break;
608 case LIST_MODEBITS:
Matt Kraai12f417e2001-01-18 02:57:08 +0000609 printf("%10s", (char *)mode_string(dn->dstat.st_mode));
Eric Andersen11c65522000-09-07 17:24:47 +0000610 column += 10;
611 break;
612 case LIST_NLINKS:
Matt Kraai12f417e2001-01-18 02:57:08 +0000613 printf("%4d ", dn->dstat.st_nlink);
Eric Andersen11c65522000-09-07 17:24:47 +0000614 column += 10;
615 break;
616 case LIST_ID_NAME:
617#ifdef BB_FEATURE_LS_USERNAME
Matt Kraaie93abf92000-11-18 01:08:24 +0000618 my_getpwuid(scratch, dn->dstat.st_uid);
619 if (*scratch)
Matt Kraai12f417e2001-01-18 02:57:08 +0000620 printf("%-8.8s ", scratch);
Matt Kraaie93abf92000-11-18 01:08:24 +0000621 else
Matt Kraai12f417e2001-01-18 02:57:08 +0000622 printf("%-8d ", dn->dstat.st_uid);
Matt Kraaie93abf92000-11-18 01:08:24 +0000623 my_getgrgid(scratch, dn->dstat.st_gid);
624 if (*scratch)
Matt Kraai12f417e2001-01-18 02:57:08 +0000625 printf("%-8.8s", scratch);
Matt Kraaie93abf92000-11-18 01:08:24 +0000626 else
Matt Kraai12f417e2001-01-18 02:57:08 +0000627 printf("%-8d", dn->dstat.st_gid);
Eric Andersen11c65522000-09-07 17:24:47 +0000628 column += 17;
Eric Andersen11c65522000-09-07 17:24:47 +0000629 break;
630#endif
631 case LIST_ID_NUMERIC:
Matt Kraai12f417e2001-01-18 02:57:08 +0000632 printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
Eric Andersen11c65522000-09-07 17:24:47 +0000633 column += 17;
634 break;
635 case LIST_SIZE:
636 case LIST_DEV:
637 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000638 printf("%4d, %3d ", (int)MAJOR(dn->dstat.st_rdev), (int)MINOR(dn->dstat.st_rdev));
Eric Andersen11c65522000-09-07 17:24:47 +0000639 } else {
Richard June6d0921c2001-01-22 22:35:38 +0000640#ifdef BB_FEATURE_HUMAN_READABLE
641 fprintf(stdout, "%9s ", format(dn->dstat.st_size, ls_disp_hr));
642#else
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000643#if _FILE_OFFSET_BITS == 64
Matt Kraai12f417e2001-01-18 02:57:08 +0000644 printf("%9lld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000645#else
Matt Kraai12f417e2001-01-18 02:57:08 +0000646 printf("%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000647#endif
Richard June6d0921c2001-01-22 22:35:38 +0000648#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000649 }
650 column += 10;
651 break;
652#ifdef BB_FEATURE_LS_TIMESTAMPS
653 case LIST_FULLTIME:
654 case LIST_DATE_TIME:
655 if (list_fmt & LIST_FULLTIME) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000656 printf("%24.24s ", filetime);
Eric Andersen11c65522000-09-07 17:24:47 +0000657 column += 25;
658 break;
659 }
660 age = time(NULL) - ttime;
Matt Kraai12f417e2001-01-18 02:57:08 +0000661 printf("%6.6s ", filetime+4);
Eric Andersen11c65522000-09-07 17:24:47 +0000662 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
663 /* hh:mm if less than 6 months old */
Matt Kraai12f417e2001-01-18 02:57:08 +0000664 printf("%5.5s ", filetime+11);
Eric Andersen11c65522000-09-07 17:24:47 +0000665 } else {
Matt Kraai12f417e2001-01-18 02:57:08 +0000666 printf(" %4.4s ", filetime+20);
Eric Andersen11c65522000-09-07 17:24:47 +0000667 }
668 column += 13;
669 break;
670#endif
671 case LIST_FILENAME:
Matt Kraai12f417e2001-01-18 02:57:08 +0000672 printf("%s", dn->name);
Eric Andersen11c65522000-09-07 17:24:47 +0000673 column += strlen(dn->name);
674 break;
675 case LIST_SYMLINK:
676 if (S_ISLNK(dn->dstat.st_mode)) {
677 len= readlink(dn->fullname, scratch, (sizeof scratch)-1);
678 if (len > 0) {
679 scratch[len]= '\0';
Matt Kraai12f417e2001-01-18 02:57:08 +0000680 printf(" -> %s", scratch);
Eric Andersen11c65522000-09-07 17:24:47 +0000681#ifdef BB_FEATURE_LS_FILETYPES
682 if (!stat(dn->fullname, &info)) {
683 append = append_char(info.st_mode);
684 }
685#endif
686 column += len+4;
687 }
688 }
689 break;
690#ifdef BB_FEATURE_LS_FILETYPES
691 case LIST_FILETYPE:
692 if (append != '\0') {
Matt Kraai12f417e2001-01-18 02:57:08 +0000693 printf("%1c", append);
Eric Andersen11c65522000-09-07 17:24:47 +0000694 column++;
695 }
696 break;
697#endif
698 }
699 }
700
701 return(0);
702}
703
704/*----------------------------------------------------------------------*/
705extern int ls_main(int argc, char **argv)
706{
707 struct dnode **dnf, **dnd;
708 int dnfiles, dndirs;
709 struct dnode *dn, *cur, **dnp;
710 int i, nfiles;
711 int opt;
712 int oi, ac;
713 char **av;
Eric Andersen1e4b9572001-01-26 18:09:13 +0000714#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersen5307eca2001-01-26 01:52:43 +0000715 struct winsize win = { 0, 0, 0, 0 };
716#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000717
718 disp_opts= DISP_NORMAL;
719 style_fmt= STYLE_AUTO;
720 list_fmt= LIST_SHORT;
721#ifdef BB_FEATURE_LS_SORTFILES
722 sort_opts= SORT_NAME;
Mark Whitley59ab0252001-01-23 22:30:04 +0000723 sort_order= SORT_FORWARD;
Eric Andersen11c65522000-09-07 17:24:47 +0000724#endif
725#ifdef BB_FEATURE_LS_TIMESTAMPS
726 time_fmt= TIME_MOD;
727#endif
Mark Whitley59ab0252001-01-23 22:30:04 +0000728#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersen5307eca2001-01-26 01:52:43 +0000729 ioctl(fileno(stdout), TIOCGWINSZ, &win);
730 if (win.ws_row > 4)
731 column_width = win.ws_row - 2;
732 if (win.ws_col > 0)
733 terminal_width = win.ws_col - 1;
Eric Andersen5307eca2001-01-26 01:52:43 +0000734#endif
735 tabstops = 8;
Eric Andersen11c65522000-09-07 17:24:47 +0000736 nfiles=0;
737
Eric Andersen11c65522000-09-07 17:24:47 +0000738 /* process options */
739 while ((opt = getopt(argc, argv, "1AaCdgilnsx"
740#ifdef BB_FEATURE_AUTOWIDTH
741"T:w:"
742#endif
743#ifdef BB_FEATURE_LS_FILETYPES
744"Fp"
745#endif
746#ifdef BB_FEATURE_LS_RECURSIVE
747"R"
748#endif
749#ifdef BB_FEATURE_LS_SORTFILES
750"rSvX"
751#endif
752#ifdef BB_FEATURE_LS_TIMESTAMPS
753"cetu"
754#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000755#ifdef BB_FEATURE_LS_FOLLOWLINKS
756"L"
757#endif
Richard June6d0921c2001-01-22 22:35:38 +0000758#ifdef BB_FEATURE_HUMAN_READABLE
759"h"
760#endif
761"k")) > 0) {
Eric Andersen11c65522000-09-07 17:24:47 +0000762 switch (opt) {
763 case '1': style_fmt = STYLE_SINGLE; break;
764 case 'A': disp_opts |= DISP_HIDDEN; break;
765 case 'a': disp_opts |= DISP_HIDDEN | DISP_DOT; break;
766 case 'C': style_fmt = STYLE_COLUMNS; break;
767 case 'd': disp_opts |= DISP_NOLIST; break;
Eric Andersen11c65522000-09-07 17:24:47 +0000768 case 'g': /* ignore -- for ftp servers */ break;
769 case 'i': list_fmt |= LIST_INO; break;
Richard June6d0921c2001-01-22 22:35:38 +0000770 case 'l':
771 style_fmt = STYLE_LONG;
772 list_fmt |= LIST_LONG;
773#ifdef BB_FEATURE_HUMAN_READABLE
774 ls_disp_hr = 1;
775#endif
776 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000777 case 'n': list_fmt |= LIST_ID_NUMERIC; break;
778 case 's': list_fmt |= LIST_BLOCKS; break;
779 case 'x': disp_opts = DISP_ROWS; break;
780#ifdef BB_FEATURE_LS_FILETYPES
781 case 'F': list_fmt |= LIST_FILETYPE | LIST_EXEC; break;
782 case 'p': list_fmt |= LIST_FILETYPE; break;
783#endif
784#ifdef BB_FEATURE_LS_RECURSIVE
785 case 'R': disp_opts |= DISP_RECURSIVE; break;
786#endif
787#ifdef BB_FEATURE_LS_SORTFILES
788 case 'r': sort_order |= SORT_REVERSE; break;
789 case 'S': sort_opts= SORT_SIZE; break;
790 case 'v': sort_opts= SORT_VERSION; break;
791 case 'X': sort_opts= SORT_EXT; break;
792#endif
793#ifdef BB_FEATURE_LS_TIMESTAMPS
Matt Kraaia5bd2682000-10-28 06:40:09 +0000794 case 'e': list_fmt |= LIST_FULLTIME; break;
795 case 'c':
796 time_fmt = TIME_CHANGE;
797#ifdef BB_FEATURE_LS_SORTFILES
798 sort_opts= SORT_CTIME;
799#endif
800 break;
801 case 'u':
802 time_fmt = TIME_ACCESS;
803#ifdef BB_FEATURE_LS_SORTFILES
804 sort_opts= SORT_ATIME;
805#endif
806 break;
807 case 't':
808#ifdef BB_FEATURE_LS_SORTFILES
809 sort_opts= SORT_MTIME;
810#endif
811 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000812#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000813#ifdef BB_FEATURE_LS_FOLLOWLINKS
814 case 'L': follow_links= TRUE; break;
815#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000816#ifdef BB_FEATURE_AUTOWIDTH
817 case 'T': tabstops= atoi(optarg); break;
818 case 'w': terminal_width= atoi(optarg); break;
819#endif
Richard June6d0921c2001-01-22 22:35:38 +0000820#ifdef BB_FEATURE_HUMAN_READABLE
821 case 'h': ls_disp_hr = 0; break;
822 case 'k': ls_disp_hr = KILOBYTE; break;
823#else
824 case 'k': break;
825#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000826 default:
827 goto print_usage_message;
828 }
829 }
830
831 /* sort out which command line options take precedence */
832#ifdef BB_FEATURE_LS_RECURSIVE
833 if (disp_opts & DISP_NOLIST)
834 disp_opts &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
835#endif
Matt Kraaia5bd2682000-10-28 06:40:09 +0000836#if defined (BB_FEATURE_LS_TIMESTAMPS) && defined (BB_FEATURE_LS_SORTFILES)
Eric Andersen11c65522000-09-07 17:24:47 +0000837 if (time_fmt & TIME_CHANGE) sort_opts= SORT_CTIME;
838 if (time_fmt & TIME_ACCESS) sort_opts= SORT_ATIME;
839#endif
840 if (style_fmt != STYLE_LONG)
841 list_fmt &= ~LIST_ID_NUMERIC; /* numeric uid only for long list */
842#ifdef BB_FEATURE_LS_USERNAME
843 if (style_fmt == STYLE_LONG && (list_fmt & LIST_ID_NUMERIC))
844 list_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
845#endif
846
847 /* choose a display format */
848 if (style_fmt == STYLE_AUTO)
849 style_fmt = isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE;
850
851 /*
852 * when there are no cmd line args we have to supply a default "." arg.
853 * we will create a second argv array, "av" that will hold either
854 * our created "." arg, or the real cmd line args. The av array
855 * just holds the pointers- we don't move the date the pointers
856 * point to.
857 */
858 ac= argc - optind; /* how many cmd line args are left */
859 if (ac < 1) {
860 av= (char **)xcalloc((size_t)1, (size_t)(sizeof(char *)));
861 av[0]= xstrdup(".");
862 ac=1;
863 } else {
864 av= (char **)xcalloc((size_t)ac, (size_t)(sizeof(char *)));
865 for (oi=0 ; oi < ac; oi++) {
866 av[oi]= argv[optind++]; /* copy pointer to real cmd line arg */
867 }
868 }
869
870 /* now, everything is in the av array */
871 if (ac > 1)
872 disp_opts |= DISP_DIRNAME; /* 2 or more items? label directories */
873
874 /* stuff the command line file names into an dnode array */
875 dn=NULL;
876 for (oi=0 ; oi < ac; oi++) {
877 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
878 cur->fullname= xstrdup(av[oi]);
Eric Andersen958c78f2000-10-09 17:51:25 +0000879 cur->name= cur->fullname;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000880 if (my_stat(cur))
Eric Andersen11c65522000-09-07 17:24:47 +0000881 continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000882 cur->next= dn;
883 dn= cur;
884 nfiles++;
885 }
886
887 /* now that we know how many files there are
888 ** allocate memory for an array to hold dnode pointers
889 */
890 dnp= dnalloc(nfiles);
891 for (i=0, cur=dn; i<nfiles; i++) {
892 dnp[i]= cur; /* save pointer to node in array */
893 cur= cur->next;
894 }
895
896
897 if (disp_opts & DISP_NOLIST) {
898#ifdef BB_FEATURE_LS_SORTFILES
899 shellsort(dnp, nfiles);
900#endif
901 if (nfiles > 0) showfiles(dnp, nfiles);
902 } else {
903 dnd= splitdnarray(dnp, nfiles, SPLIT_DIR);
904 dnf= splitdnarray(dnp, nfiles, SPLIT_FILE);
905 dndirs= countdirs(dnp, nfiles);
906 dnfiles= nfiles - dndirs;
907 if (dnfiles > 0) {
908#ifdef BB_FEATURE_LS_SORTFILES
909 shellsort(dnf, dnfiles);
910#endif
911 showfiles(dnf, dnfiles);
912 }
913 if (dndirs > 0) {
914#ifdef BB_FEATURE_LS_SORTFILES
915 shellsort(dnd, dndirs);
916#endif
917 showdirs(dnd, dndirs);
918 }
919 }
Matt Kraai33fdae52000-10-13 17:59:43 +0000920 return(status);
Eric Andersencc8ed391999-10-05 16:24:54 +0000921
Erik Andersene49d5ec2000-02-08 19:58:47 +0000922 print_usage_message:
923 usage(ls_usage);
Eric Andersencc8ed391999-10-05 16:24:54 +0000924}