blob: 754a6d450cf3e9f26d93fe520b38254364731b95 [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 Andersencf1189f2000-11-29 21:52:06 +0000130#define SPLIT_SUBDIR 2
Eric Andersencc8ed391999-10-05 16:24:54 +0000131
Eric Andersen11c65522000-09-07 17:24:47 +0000132#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
133#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
134#ifdef BB_FEATURE_LS_FILETYPES
135#define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
136#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137
Eric Andersen11c65522000-09-07 17:24:47 +0000138/*
139 * a directory entry and its stat info are stored here
140 */
141struct dnode { /* the basic node */
142 char *name; /* the dir entry name */
143 char *fullname; /* the dir entry name */
144 struct stat dstat; /* the file stat info */
145 struct dnode *next; /* point at the next node */
146};
147typedef struct dnode dnode_t;
148
149struct dnode **list_dir(char *);
150struct dnode **dnalloc(int);
151int list_single(struct dnode *);
152
153static unsigned int disp_opts= DISP_NORMAL;
154static unsigned int style_fmt= STYLE_AUTO ;
155static unsigned int list_fmt= LIST_SHORT ;
156#ifdef BB_FEATURE_LS_SORTFILES
157static unsigned int sort_opts= SORT_FORWARD;
158static unsigned int sort_order= SORT_FORWARD;
159#endif
160#ifdef BB_FEATURE_LS_TIMESTAMPS
161static unsigned int time_fmt= TIME_MOD;
162#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000163#ifdef BB_FEATURE_LS_FOLLOWLINKS
164static unsigned int follow_links=FALSE;
165#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000166
167static unsigned short column = 0;
168#ifdef BB_FEATURE_AUTOWIDTH
169static unsigned short terminal_width = TERMINAL_WIDTH;
170static unsigned short column_width = COLUMN_WIDTH;
171static unsigned short tabstops = 8;
172#else
173#define terminal_width TERMINAL_WIDTH
174#define column_width COLUMN_WIDTH
175#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000176
Matt Kraai33fdae52000-10-13 17:59:43 +0000177static int status = EXIT_SUCCESS;
178
Richard June6d0921c2001-01-22 22:35:38 +0000179#ifdef BB_FEATURE_HUMAN_READABLE
180unsigned long ls_disp_hr = KILOBYTE;
181#endif
182
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000183static int my_stat(struct dnode *cur)
184{
185#ifdef BB_FEATURE_LS_FOLLOWLINKS
186 if (follow_links == TRUE) {
187 if (stat(cur->fullname, &cur->dstat)) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000188 perror_msg("%s", cur->fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000189 status = EXIT_FAILURE;
190 free(cur->fullname);
191 free(cur);
192 return -1;
193 }
194 } else
195#endif
196 if (lstat(cur->fullname, &cur->dstat)) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000197 perror_msg("%s", cur->fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000198 status = EXIT_FAILURE;
199 free(cur->fullname);
200 free(cur);
201 return -1;
202 }
203 return 0;
204}
205
Eric Andersencc8ed391999-10-05 16:24:54 +0000206static void newline(void)
207{
Eric Andersen11c65522000-09-07 17:24:47 +0000208 if (column > 0) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000209 putchar('\n');
Eric Andersen11c65522000-09-07 17:24:47 +0000210 column = 0;
Eric Andersen79565b62000-08-11 18:10:21 +0000211 }
212}
213
Eric Andersen11c65522000-09-07 17:24:47 +0000214/*----------------------------------------------------------------------*/
215#ifdef BB_FEATURE_LS_FILETYPES
216static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000217{
Eric Andersen11c65522000-09-07 17:24:47 +0000218 if ( !(list_fmt & LIST_FILETYPE))
219 return '\0';
220 if ((list_fmt & LIST_EXEC) && S_ISREG(mode)
221 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
222 return APPCHAR(mode);
223}
224#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000225
Eric Andersen11c65522000-09-07 17:24:47 +0000226/*----------------------------------------------------------------------*/
227static void nexttabstop( void )
228{
229 static short nexttab= 0;
230 int n=0;
231
232 if (column > 0) {
233 n= nexttab - column;
234 if (n < 1) n= 1;
235 while (n--) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000236 putchar(' ');
Eric Andersen11c65522000-09-07 17:24:47 +0000237 column++;
238 }
239 }
240 nexttab= column + column_width + COLUMN_GAP ;
241}
242
243/*----------------------------------------------------------------------*/
Eric Andersencf1189f2000-11-29 21:52:06 +0000244static int is_subdir(struct dnode *dn)
245{
246 return (S_ISDIR(dn->dstat.st_mode) && strcmp(dn->name, ".") != 0 &&
247 strcmp(dn->name, "..") != 0);
248}
249
Eric Andersen11c65522000-09-07 17:24:47 +0000250int countdirs(struct dnode **dn, int nfiles)
251{
252 int i, dirs;
253
Eric Andersen11c65522000-09-07 17:24:47 +0000254 if (dn==NULL || nfiles < 1) return(0);
255 dirs= 0;
256 for (i=0; i<nfiles; i++) {
257 if (S_ISDIR(dn[i]->dstat.st_mode)) dirs++;
258 }
259 return(dirs);
260}
261
Eric Andersencf1189f2000-11-29 21:52:06 +0000262int countsubdirs(struct dnode **dn, int nfiles)
263{
264 int i, subdirs;
265
266 if (dn == NULL || nfiles < 1) return 0;
267 subdirs = 0;
268 for (i = 0; i < nfiles; i++)
269 if (is_subdir(dn[i]))
270 subdirs++;
271 return subdirs;
272}
273
Eric Andersen11c65522000-09-07 17:24:47 +0000274int countfiles(struct dnode **dnp)
275{
276 int nfiles;
277 struct dnode *cur;
278
279 if (dnp == NULL) return(0);
280 nfiles= 0;
281 for (cur= dnp[0]; cur->next != NULL ; cur= cur->next) nfiles++;
282 nfiles++;
283 return(nfiles);
284}
285
286/* get memory to hold an array of pointers */
287struct dnode **dnalloc(int num)
288{
289 struct dnode **p;
290
291 if (num < 1) return(NULL);
292
293 p= (struct dnode **)xcalloc((size_t)num, (size_t)(sizeof(struct dnode *)));
294 return(p);
295}
296
297void dfree(struct dnode **dnp)
298{
299 struct dnode *cur, *next;
300
301 if(dnp == NULL) return;
302
303 cur=dnp[0];
304 while (cur != NULL) {
305 if (cur->fullname != NULL) free(cur->fullname); /* free the filename */
306 next= cur->next;
307 free(cur); /* free the dnode */
308 cur= next;
309 }
310 free(dnp); /* free the array holding the dnode pointers */
311}
312
313struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
314{
315 int dncnt, i, d;
316 struct dnode **dnp;
317
318 if (dn==NULL || nfiles < 1) return(NULL);
319
320 /* count how many dirs and regular files there are */
Eric Andersencf1189f2000-11-29 21:52:06 +0000321 if (which == SPLIT_SUBDIR)
322 dncnt = countsubdirs(dn, nfiles);
323 else {
324 dncnt= countdirs(dn, nfiles); /* assume we are looking for dirs */
325 if (which == SPLIT_FILE)
326 dncnt= nfiles - dncnt; /* looking for files */
327 }
Eric Andersen11c65522000-09-07 17:24:47 +0000328
329 /* allocate a file array and a dir array */
330 dnp= dnalloc(dncnt);
331
332 /* copy the entrys into the file or dir array */
333 for (d= i=0; i<nfiles; i++) {
334 if (which == SPLIT_DIR) {
335 if (S_ISDIR(dn[i]->dstat.st_mode)) {
336 dnp[d++]= dn[i];
337 } /* else skip the file */
Eric Andersencf1189f2000-11-29 21:52:06 +0000338 } else if (which == SPLIT_SUBDIR) {
339 if (is_subdir(dn[i])) {
340 dnp[d++]= dn[i];
341 } /* else skip the file or dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000342 } else {
343 if (!(S_ISDIR(dn[i]->dstat.st_mode))) {
344 dnp[d++]= dn[i];
345 } /* else skip the dir */
346 }
347 }
348 return(dnp);
349}
350
351/*----------------------------------------------------------------------*/
352#ifdef BB_FEATURE_LS_SORTFILES
353int sortcmp(struct dnode *d1, struct dnode *d2)
354{
355 int cmp, dif;
356
357 cmp= 0;
358 if (sort_opts == SORT_SIZE) {
359 dif= (int)(d1->dstat.st_size - d2->dstat.st_size);
360 } else if (sort_opts == SORT_ATIME) {
361 dif= (int)(d1->dstat.st_atime - d2->dstat.st_atime);
362 } else if (sort_opts == SORT_CTIME) {
363 dif= (int)(d1->dstat.st_ctime - d2->dstat.st_ctime);
364 } else if (sort_opts == SORT_MTIME) {
365 dif= (int)(d1->dstat.st_mtime - d2->dstat.st_mtime);
366 } else if (sort_opts == SORT_DIR) {
367 dif= S_ISDIR(d1->dstat.st_mode) - S_ISDIR(d2->dstat.st_mode);
368 /* } else if (sort_opts == SORT_VERSION) { */
369 /* } else if (sort_opts == SORT_EXT) { */
370 } else { /* assume SORT_NAME */
371 dif= 0;
372 }
373
374 if (dif > 0) cmp= -1;
375 if (dif < 0) cmp= 1;
376 if (dif == 0) {
377 /* sort by name- may be a tie_breaker for time or size cmp */
378 dif= strcmp(d1->name, d2->name);
379 if (dif > 0) cmp= 1;
380 if (dif < 0) cmp= -1;
381 }
382
383 if (sort_order == SORT_REVERSE) {
384 cmp= -1 * cmp;
385 }
386 return(cmp);
387}
388
389/*----------------------------------------------------------------------*/
390void shellsort(struct dnode **dn, int size)
391{
392 struct dnode *temp;
393 int gap, i, j;
394
395 /* shell short the array */
396 if(dn==NULL || size < 2) return;
397
398 for (gap= size/2; gap>0; gap /=2) {
399 for (i=gap; i<size; i++) {
400 for (j= i-gap; j>=0; j-=gap) {
401 if (sortcmp(dn[j], dn[j+gap]) <= 0)
402 break;
403 /* they are out of order, swap them */
404 temp= dn[j];
405 dn[j]= dn[j+gap];
406 dn[j+gap]= temp;
407 }
408 }
409 }
410}
411#endif
412
413/*----------------------------------------------------------------------*/
414void showfiles(struct dnode **dn, int nfiles)
415{
416 int i, ncols, nrows, row, nc;
417#ifdef BB_FEATURE_AUTOWIDTH
418 int len;
419#endif
420
421 if(dn==NULL || nfiles < 1) return;
422
423#ifdef BB_FEATURE_AUTOWIDTH
424 /* find the longest file name- use that as the column width */
425 column_width= 0;
426 for (i=0; i<nfiles; i++) {
427 len= strlen(dn[i]->name) +
428 ((list_fmt & LIST_INO) ? 8 : 0) +
429 ((list_fmt & LIST_BLOCKS) ? 5 : 0)
430 ;
431 if (column_width < len) column_width= len;
432 }
433#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000434 ncols= (int)(terminal_width / (column_width + COLUMN_GAP));
Eric Andersen11c65522000-09-07 17:24:47 +0000435 switch (style_fmt) {
436 case STYLE_LONG: /* one record per line, extended info */
437 case STYLE_SINGLE: /* one record per line */
438 ncols= 1;
439 break;
440 }
441
442 nrows= nfiles / ncols;
443 if ((nrows * ncols) < nfiles) nrows++; /* round up fractionals */
444
445 if (nrows > nfiles) nrows= nfiles;
446 for (row=0; row<nrows; row++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000447 for (nc=0; nc<ncols; nc++) {
448 /* reach into the array based on the column and row */
Eric Andersen11c65522000-09-07 17:24:47 +0000449 i= (nc * nrows) + row; /* assume display by column */
450 if (disp_opts & DISP_ROWS)
451 i= (row * ncols) + nc; /* display across row */
452 if (i < nfiles) {
453 nexttabstop();
454 list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000455 }
456 }
Eric Andersena42982e2000-06-07 17:28:53 +0000457 newline();
458 }
Eric Andersen11c65522000-09-07 17:24:47 +0000459}
460
461/*----------------------------------------------------------------------*/
462void showdirs(struct dnode **dn, int ndirs)
463{
464 int i, nfiles;
465 struct dnode **subdnp;
Matt Kraaib273d662000-10-28 01:21:22 +0000466#ifdef BB_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000467 int dndirs;
468 struct dnode **dnd;
469#endif
470
471 if (dn==NULL || ndirs < 1) return;
472
473 for (i=0; i<ndirs; i++) {
474 if (disp_opts & (DISP_DIRNAME | DISP_RECURSIVE)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000475 printf("\n%s:\n", dn[i]->fullname);
Eric Andersen11c65522000-09-07 17:24:47 +0000476 }
477 subdnp= list_dir(dn[i]->fullname);
478 nfiles= countfiles(subdnp);
479 if (nfiles > 0) {
480 /* list all files at this level */
481#ifdef BB_FEATURE_LS_SORTFILES
482 shellsort(subdnp, nfiles);
483#endif
484 showfiles(subdnp, nfiles);
485#ifdef BB_FEATURE_LS_RECURSIVE
486 if (disp_opts & DISP_RECURSIVE) {
487 /* recursive- list the sub-dirs */
Eric Andersencf1189f2000-11-29 21:52:06 +0000488 dnd= splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
489 dndirs= countsubdirs(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000490 if (dndirs > 0) {
Matt Kraaia5bd2682000-10-28 06:40:09 +0000491#ifdef BB_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000492 shellsort(dnd, dndirs);
Matt Kraaia5bd2682000-10-28 06:40:09 +0000493#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000494 showdirs(dnd, dndirs);
495 free(dnd); /* free the array of dnode pointers to the dirs */
496 }
497 }
498 dfree(subdnp); /* free the dnodes and the fullname mem */
499#endif
500 }
501 }
502}
503
504/*----------------------------------------------------------------------*/
505struct dnode **list_dir(char *path)
506{
507 struct dnode *dn, *cur, **dnp;
508 struct dirent *entry;
509 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000510 int i, nfiles;
511
512 if (path==NULL) return(NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000513
514 dn= NULL;
515 nfiles= 0;
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000516 dir = opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000517 if (dir == NULL) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000518 perror_msg("%s", path);
Matt Kraai33fdae52000-10-13 17:59:43 +0000519 status = EXIT_FAILURE;
Eric Andersen11c65522000-09-07 17:24:47 +0000520 return(NULL); /* could not open the dir */
521 }
522 while ((entry = readdir(dir)) != NULL) {
523 /* are we going to list the file- it may be . or .. or a hidden file */
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000524 if ((strcmp(entry->d_name, ".")==0) && !(disp_opts & DISP_DOT)) continue;
525 if ((strcmp(entry->d_name, "..")==0) && !(disp_opts & DISP_DOT)) continue;
526 if ((entry->d_name[0] == '.') && !(disp_opts & DISP_HIDDEN)) continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000527 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000528 cur->fullname = xmalloc(strlen(path)+1+strlen(entry->d_name)+1);
529 strcpy(cur->fullname, path);
530 if (cur->fullname[strlen(cur->fullname)-1] != '/')
531 strcat(cur->fullname, "/");
532 cur->name= cur->fullname + strlen(cur->fullname);
533 strcat(cur->fullname, entry->d_name);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000534 if (my_stat(cur))
Eric Andersen11c65522000-09-07 17:24:47 +0000535 continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000536 cur->next= dn;
537 dn= cur;
538 nfiles++;
539 }
540 closedir(dir);
541
542 /* now that we know how many files there are
543 ** allocate memory for an array to hold dnode pointers
544 */
545 if (nfiles < 1) return(NULL);
546 dnp= dnalloc(nfiles);
547 for (i=0, cur=dn; i<nfiles; i++) {
548 dnp[i]= cur; /* save pointer to node in array */
549 cur= cur->next;
550 }
551
552 return(dnp);
553}
554
555/*----------------------------------------------------------------------*/
556int list_single(struct dnode *dn)
557{
558 int i, len;
559 char scratch[BUFSIZ + 1];
560#ifdef BB_FEATURE_LS_TIMESTAMPS
561 char *filetime;
562 time_t ttime, age;
563#endif
Matt Kraaie93abf92000-11-18 01:08:24 +0000564#if defined (BB_FEATURE_LS_FILETYPES)
Eric Andersen11c65522000-09-07 17:24:47 +0000565 struct stat info;
Matt Kraaib273d662000-10-28 01:21:22 +0000566#endif
567#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersen11c65522000-09-07 17:24:47 +0000568 char append;
569#endif
570
571 if (dn==NULL || dn->fullname==NULL) return(0);
572
573#ifdef BB_FEATURE_LS_TIMESTAMPS
574 ttime= dn->dstat.st_mtime; /* the default time */
575 if (time_fmt & TIME_ACCESS) ttime= dn->dstat.st_atime;
576 if (time_fmt & TIME_CHANGE) ttime= dn->dstat.st_ctime;
577 filetime= ctime(&ttime);
578#endif
579#ifdef BB_FEATURE_LS_FILETYPES
580 append = append_char(dn->dstat.st_mode);
581#endif
582
583 for (i=0; i<=31; i++) {
584 switch (list_fmt & (1<<i)) {
585 case LIST_INO:
Matt Kraai12f417e2001-01-18 02:57:08 +0000586 printf("%7ld ", dn->dstat.st_ino);
Eric Andersen11c65522000-09-07 17:24:47 +0000587 column += 8;
588 break;
589 case LIST_BLOCKS:
Richard June6d0921c2001-01-22 22:35:38 +0000590#ifdef BB_FEATURE_HUMAN_READABLE
591 fprintf(stdout, "%5s ", format(dn->dstat.st_size, ls_disp_hr));
592#else
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000593#if _FILE_OFFSET_BITS == 64
Matt Kraai12f417e2001-01-18 02:57:08 +0000594 printf("%4lld ", dn->dstat.st_blocks>>1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000595#else
Matt Kraai12f417e2001-01-18 02:57:08 +0000596 printf("%4ld ", dn->dstat.st_blocks>>1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000597#endif
Richard June6d0921c2001-01-22 22:35:38 +0000598#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000599 column += 5;
600 break;
601 case LIST_MODEBITS:
Matt Kraai12f417e2001-01-18 02:57:08 +0000602 printf("%10s", (char *)mode_string(dn->dstat.st_mode));
Eric Andersen11c65522000-09-07 17:24:47 +0000603 column += 10;
604 break;
605 case LIST_NLINKS:
Matt Kraai12f417e2001-01-18 02:57:08 +0000606 printf("%4d ", dn->dstat.st_nlink);
Eric Andersen11c65522000-09-07 17:24:47 +0000607 column += 10;
608 break;
609 case LIST_ID_NAME:
610#ifdef BB_FEATURE_LS_USERNAME
Matt Kraaie93abf92000-11-18 01:08:24 +0000611 my_getpwuid(scratch, dn->dstat.st_uid);
612 if (*scratch)
Matt Kraai12f417e2001-01-18 02:57:08 +0000613 printf("%-8.8s ", scratch);
Matt Kraaie93abf92000-11-18 01:08:24 +0000614 else
Matt Kraai12f417e2001-01-18 02:57:08 +0000615 printf("%-8d ", dn->dstat.st_uid);
Matt Kraaie93abf92000-11-18 01:08:24 +0000616 my_getgrgid(scratch, dn->dstat.st_gid);
617 if (*scratch)
Matt Kraai12f417e2001-01-18 02:57:08 +0000618 printf("%-8.8s", scratch);
Matt Kraaie93abf92000-11-18 01:08:24 +0000619 else
Matt Kraai12f417e2001-01-18 02:57:08 +0000620 printf("%-8d", dn->dstat.st_gid);
Eric Andersen11c65522000-09-07 17:24:47 +0000621 column += 17;
Eric Andersen11c65522000-09-07 17:24:47 +0000622 break;
623#endif
624 case LIST_ID_NUMERIC:
Matt Kraai12f417e2001-01-18 02:57:08 +0000625 printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
Eric Andersen11c65522000-09-07 17:24:47 +0000626 column += 17;
627 break;
628 case LIST_SIZE:
629 case LIST_DEV:
630 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000631 printf("%4d, %3d ", (int)MAJOR(dn->dstat.st_rdev), (int)MINOR(dn->dstat.st_rdev));
Eric Andersen11c65522000-09-07 17:24:47 +0000632 } else {
Richard June6d0921c2001-01-22 22:35:38 +0000633#ifdef BB_FEATURE_HUMAN_READABLE
634 fprintf(stdout, "%9s ", format(dn->dstat.st_size, ls_disp_hr));
635#else
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000636#if _FILE_OFFSET_BITS == 64
Matt Kraai12f417e2001-01-18 02:57:08 +0000637 printf("%9lld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000638#else
Matt Kraai12f417e2001-01-18 02:57:08 +0000639 printf("%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000640#endif
Richard June6d0921c2001-01-22 22:35:38 +0000641#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000642 }
643 column += 10;
644 break;
645#ifdef BB_FEATURE_LS_TIMESTAMPS
646 case LIST_FULLTIME:
647 case LIST_DATE_TIME:
648 if (list_fmt & LIST_FULLTIME) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000649 printf("%24.24s ", filetime);
Eric Andersen11c65522000-09-07 17:24:47 +0000650 column += 25;
651 break;
652 }
653 age = time(NULL) - ttime;
Matt Kraai12f417e2001-01-18 02:57:08 +0000654 printf("%6.6s ", filetime+4);
Eric Andersen11c65522000-09-07 17:24:47 +0000655 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
656 /* hh:mm if less than 6 months old */
Matt Kraai12f417e2001-01-18 02:57:08 +0000657 printf("%5.5s ", filetime+11);
Eric Andersen11c65522000-09-07 17:24:47 +0000658 } else {
Matt Kraai12f417e2001-01-18 02:57:08 +0000659 printf(" %4.4s ", filetime+20);
Eric Andersen11c65522000-09-07 17:24:47 +0000660 }
661 column += 13;
662 break;
663#endif
664 case LIST_FILENAME:
Matt Kraai12f417e2001-01-18 02:57:08 +0000665 printf("%s", dn->name);
Eric Andersen11c65522000-09-07 17:24:47 +0000666 column += strlen(dn->name);
667 break;
668 case LIST_SYMLINK:
669 if (S_ISLNK(dn->dstat.st_mode)) {
670 len= readlink(dn->fullname, scratch, (sizeof scratch)-1);
671 if (len > 0) {
672 scratch[len]= '\0';
Matt Kraai12f417e2001-01-18 02:57:08 +0000673 printf(" -> %s", scratch);
Eric Andersen11c65522000-09-07 17:24:47 +0000674#ifdef BB_FEATURE_LS_FILETYPES
675 if (!stat(dn->fullname, &info)) {
676 append = append_char(info.st_mode);
677 }
678#endif
679 column += len+4;
680 }
681 }
682 break;
683#ifdef BB_FEATURE_LS_FILETYPES
684 case LIST_FILETYPE:
685 if (append != '\0') {
Matt Kraai12f417e2001-01-18 02:57:08 +0000686 printf("%1c", append);
Eric Andersen11c65522000-09-07 17:24:47 +0000687 column++;
688 }
689 break;
690#endif
691 }
692 }
693
694 return(0);
695}
696
697/*----------------------------------------------------------------------*/
698extern int ls_main(int argc, char **argv)
699{
700 struct dnode **dnf, **dnd;
701 int dnfiles, dndirs;
702 struct dnode *dn, *cur, **dnp;
703 int i, nfiles;
704 int opt;
705 int oi, ac;
706 char **av;
707
708 disp_opts= DISP_NORMAL;
709 style_fmt= STYLE_AUTO;
710 list_fmt= LIST_SHORT;
711#ifdef BB_FEATURE_LS_SORTFILES
712 sort_opts= SORT_NAME;
713#endif
714#ifdef BB_FEATURE_LS_TIMESTAMPS
715 time_fmt= TIME_MOD;
716#endif
717 nfiles=0;
718
Eric Andersen11c65522000-09-07 17:24:47 +0000719 /* process options */
720 while ((opt = getopt(argc, argv, "1AaCdgilnsx"
721#ifdef BB_FEATURE_AUTOWIDTH
722"T:w:"
723#endif
724#ifdef BB_FEATURE_LS_FILETYPES
725"Fp"
726#endif
727#ifdef BB_FEATURE_LS_RECURSIVE
728"R"
729#endif
730#ifdef BB_FEATURE_LS_SORTFILES
731"rSvX"
732#endif
733#ifdef BB_FEATURE_LS_TIMESTAMPS
734"cetu"
735#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000736#ifdef BB_FEATURE_LS_FOLLOWLINKS
737"L"
738#endif
Richard June6d0921c2001-01-22 22:35:38 +0000739#ifdef BB_FEATURE_HUMAN_READABLE
740"h"
741#endif
742"k")) > 0) {
Eric Andersen11c65522000-09-07 17:24:47 +0000743 switch (opt) {
744 case '1': style_fmt = STYLE_SINGLE; break;
745 case 'A': disp_opts |= DISP_HIDDEN; break;
746 case 'a': disp_opts |= DISP_HIDDEN | DISP_DOT; break;
747 case 'C': style_fmt = STYLE_COLUMNS; break;
748 case 'd': disp_opts |= DISP_NOLIST; break;
Eric Andersen11c65522000-09-07 17:24:47 +0000749 case 'g': /* ignore -- for ftp servers */ break;
750 case 'i': list_fmt |= LIST_INO; break;
Richard June6d0921c2001-01-22 22:35:38 +0000751 case 'l':
752 style_fmt = STYLE_LONG;
753 list_fmt |= LIST_LONG;
754#ifdef BB_FEATURE_HUMAN_READABLE
755 ls_disp_hr = 1;
756#endif
757 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000758 case 'n': list_fmt |= LIST_ID_NUMERIC; break;
759 case 's': list_fmt |= LIST_BLOCKS; break;
760 case 'x': disp_opts = DISP_ROWS; break;
761#ifdef BB_FEATURE_LS_FILETYPES
762 case 'F': list_fmt |= LIST_FILETYPE | LIST_EXEC; break;
763 case 'p': list_fmt |= LIST_FILETYPE; break;
764#endif
765#ifdef BB_FEATURE_LS_RECURSIVE
766 case 'R': disp_opts |= DISP_RECURSIVE; break;
767#endif
768#ifdef BB_FEATURE_LS_SORTFILES
769 case 'r': sort_order |= SORT_REVERSE; break;
770 case 'S': sort_opts= SORT_SIZE; break;
771 case 'v': sort_opts= SORT_VERSION; break;
772 case 'X': sort_opts= SORT_EXT; break;
773#endif
774#ifdef BB_FEATURE_LS_TIMESTAMPS
Matt Kraaia5bd2682000-10-28 06:40:09 +0000775 case 'e': list_fmt |= LIST_FULLTIME; break;
776 case 'c':
777 time_fmt = TIME_CHANGE;
778#ifdef BB_FEATURE_LS_SORTFILES
779 sort_opts= SORT_CTIME;
780#endif
781 break;
782 case 'u':
783 time_fmt = TIME_ACCESS;
784#ifdef BB_FEATURE_LS_SORTFILES
785 sort_opts= SORT_ATIME;
786#endif
787 break;
788 case 't':
789#ifdef BB_FEATURE_LS_SORTFILES
790 sort_opts= SORT_MTIME;
791#endif
792 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000793#endif
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000794#ifdef BB_FEATURE_LS_FOLLOWLINKS
795 case 'L': follow_links= TRUE; break;
796#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000797#ifdef BB_FEATURE_AUTOWIDTH
798 case 'T': tabstops= atoi(optarg); break;
799 case 'w': terminal_width= atoi(optarg); break;
800#endif
Richard June6d0921c2001-01-22 22:35:38 +0000801#ifdef BB_FEATURE_HUMAN_READABLE
802 case 'h': ls_disp_hr = 0; break;
803 case 'k': ls_disp_hr = KILOBYTE; break;
804#else
805 case 'k': break;
806#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000807 default:
808 goto print_usage_message;
809 }
810 }
811
812 /* sort out which command line options take precedence */
813#ifdef BB_FEATURE_LS_RECURSIVE
814 if (disp_opts & DISP_NOLIST)
815 disp_opts &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
816#endif
Matt Kraaia5bd2682000-10-28 06:40:09 +0000817#if defined (BB_FEATURE_LS_TIMESTAMPS) && defined (BB_FEATURE_LS_SORTFILES)
Eric Andersen11c65522000-09-07 17:24:47 +0000818 if (time_fmt & TIME_CHANGE) sort_opts= SORT_CTIME;
819 if (time_fmt & TIME_ACCESS) sort_opts= SORT_ATIME;
820#endif
821 if (style_fmt != STYLE_LONG)
822 list_fmt &= ~LIST_ID_NUMERIC; /* numeric uid only for long list */
823#ifdef BB_FEATURE_LS_USERNAME
824 if (style_fmt == STYLE_LONG && (list_fmt & LIST_ID_NUMERIC))
825 list_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
826#endif
827
828 /* choose a display format */
829 if (style_fmt == STYLE_AUTO)
830 style_fmt = isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE;
831
832 /*
833 * when there are no cmd line args we have to supply a default "." arg.
834 * we will create a second argv array, "av" that will hold either
835 * our created "." arg, or the real cmd line args. The av array
836 * just holds the pointers- we don't move the date the pointers
837 * point to.
838 */
839 ac= argc - optind; /* how many cmd line args are left */
840 if (ac < 1) {
841 av= (char **)xcalloc((size_t)1, (size_t)(sizeof(char *)));
842 av[0]= xstrdup(".");
843 ac=1;
844 } else {
845 av= (char **)xcalloc((size_t)ac, (size_t)(sizeof(char *)));
846 for (oi=0 ; oi < ac; oi++) {
847 av[oi]= argv[optind++]; /* copy pointer to real cmd line arg */
848 }
849 }
850
851 /* now, everything is in the av array */
852 if (ac > 1)
853 disp_opts |= DISP_DIRNAME; /* 2 or more items? label directories */
854
855 /* stuff the command line file names into an dnode array */
856 dn=NULL;
857 for (oi=0 ; oi < ac; oi++) {
858 cur= (struct dnode *)xmalloc(sizeof(struct dnode));
859 cur->fullname= xstrdup(av[oi]);
Eric Andersen958c78f2000-10-09 17:51:25 +0000860 cur->name= cur->fullname;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000861 if (my_stat(cur))
Eric Andersen11c65522000-09-07 17:24:47 +0000862 continue;
Eric Andersen11c65522000-09-07 17:24:47 +0000863 cur->next= dn;
864 dn= cur;
865 nfiles++;
866 }
867
868 /* now that we know how many files there are
869 ** allocate memory for an array to hold dnode pointers
870 */
871 dnp= dnalloc(nfiles);
872 for (i=0, cur=dn; i<nfiles; i++) {
873 dnp[i]= cur; /* save pointer to node in array */
874 cur= cur->next;
875 }
876
877
878 if (disp_opts & DISP_NOLIST) {
879#ifdef BB_FEATURE_LS_SORTFILES
880 shellsort(dnp, nfiles);
881#endif
882 if (nfiles > 0) showfiles(dnp, nfiles);
883 } else {
884 dnd= splitdnarray(dnp, nfiles, SPLIT_DIR);
885 dnf= splitdnarray(dnp, nfiles, SPLIT_FILE);
886 dndirs= countdirs(dnp, nfiles);
887 dnfiles= nfiles - dndirs;
888 if (dnfiles > 0) {
889#ifdef BB_FEATURE_LS_SORTFILES
890 shellsort(dnf, dnfiles);
891#endif
892 showfiles(dnf, dnfiles);
893 }
894 if (dndirs > 0) {
895#ifdef BB_FEATURE_LS_SORTFILES
896 shellsort(dnd, dndirs);
897#endif
898 showdirs(dnd, dndirs);
899 }
900 }
901
Matt Kraai33fdae52000-10-13 17:59:43 +0000902 return(status);
Eric Andersencc8ed391999-10-05 16:24:54 +0000903
Erik Andersene49d5ec2000-02-08 19:58:47 +0000904 print_usage_message:
905 usage(ls_usage);
Eric Andersencc8ed391999-10-05 16:24:54 +0000906}