blob: 4a20b3396684c46a760e6f59cbb02c4b8b6cf387 [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 *
Bernhard Reutner-Fischercb448162006-04-12 07:35:12 +00006 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersencc8ed391999-10-05 16:24:54 +00007 */
8
9/*
10 * To achieve a small memory footprint, this version of 'ls' doesn't do any
11 * file sorting, and only has the most essential command line switches
Eric Andersen77d92682001-05-23 20:32:09 +000012 * (i.e., the ones I couldn't live without :-) All features which involve
Eric Andersencc8ed391999-10-05 16:24:54 +000013 * linking in substantial chunks of libc can be disabled.
14 *
15 * Although I don't really want to add new features to this program to
16 * keep it small, I *am* interested to receive bug fixes and ways to make
17 * it more portable.
18 *
19 * KNOWN BUGS:
Erik Andersen9ffdaa62000-02-11 21:55:04 +000020 * 1. ls -l of a directory doesn't give "total <blocks>" header
21 * 2. ls of a symlink to a directory doesn't list directory contents
22 * 3. hidden files can make column width too large
23 *
Eric Andersencc8ed391999-10-05 16:24:54 +000024 * NON-OPTIMAL BEHAVIOUR:
25 * 1. autowidth reads directories twice
26 * 2. if you do a short directory listing without filetype characters
27 * appended, there's no need to stat each one
28 * PORTABILITY:
29 * 1. requires lstat (BSD) - how do you do it without?
30 */
31
Eric Andersene57d54b2001-01-30 18:03:11 +000032enum {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +000033 TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +000034 COLUMN_GAP = 2, /* includes the file type char */
Eric Andersene57d54b2001-01-30 18:03:11 +000035};
36
Eric Andersencc8ed391999-10-05 16:24:54 +000037/************************************************************************/
38
Rob Landleyea224be2006-06-18 20:20:07 +000039#include "busybox.h"
Eric Andersencc8ed391999-10-05 16:24:54 +000040#include <unistd.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000041#include <errno.h>
Eric Andersen11c65522000-09-07 17:24:47 +000042#include <string.h>
Eric Andersen5307eca2001-01-26 01:52:43 +000043#include <fcntl.h>
44#include <signal.h>
Rob Landleyb7128c62005-09-11 01:05:30 +000045#include <getopt.h> /* struct option */
Eric Andersen5307eca2001-01-26 01:52:43 +000046#include <sys/ioctl.h>
Eric Andersen4f807a82004-07-26 09:11:12 +000047#include <sys/sysmacros.h> /* major() and minor() */
Eric Andersenf1142c52001-02-20 06:16:29 +000048#include <time.h>
Eric Andersenf1142c52001-02-20 06:16:29 +000049
Eric Andersen11c65522000-09-07 17:24:47 +000050/* what is the overall style of the listing */
Manuel Novoa III cad53642003-03-19 09:13:01 +000051#define STYLE_COLUMNS (1U<<21) /* fill columns */
52#define STYLE_LONG (2U<<21) /* one record per line, extended info */
53#define STYLE_SINGLE (3U<<21) /* one record per line */
54
55#define STYLE_MASK STYLE_SINGLE
56#define STYLE_ONE_RECORD_FLAG STYLE_LONG
Eric Andersencc8ed391999-10-05 16:24:54 +000057
Eric Andersen11c65522000-09-07 17:24:47 +000058/* 51306 lrwxrwxrwx 1 root root 2 May 11 01:43 /bin/view -> vi* */
59/* what file information will be listed */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000060#define LIST_INO (1U<<0)
61#define LIST_BLOCKS (1U<<1)
Manuel Novoa III cad53642003-03-19 09:13:01 +000062#define LIST_MODEBITS (1U<<2)
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000063#define LIST_NLINKS (1U<<3)
Manuel Novoa III cad53642003-03-19 09:13:01 +000064#define LIST_ID_NAME (1U<<4)
65#define LIST_ID_NUMERIC (1U<<5)
Eric Andersen9e480452003-07-03 10:07:04 +000066#define LIST_CONTEXT (1U<<6)
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000067#define LIST_SIZE (1U<<7)
68#define LIST_DEV (1U<<8)
Eric Andersen9e480452003-07-03 10:07:04 +000069#define LIST_DATE_TIME (1U<<9)
70#define LIST_FULLTIME (1U<<10)
71#define LIST_FILENAME (1U<<11)
72#define LIST_SYMLINK (1U<<12)
73#define LIST_FILETYPE (1U<<13)
74#define LIST_EXEC (1U<<14)
Manuel Novoa III cad53642003-03-19 09:13:01 +000075
76#define LIST_MASK ((LIST_EXEC << 1) - 1)
Eric Andersen11c65522000-09-07 17:24:47 +000077
78/* what files will be displayed */
Manuel Novoa III cad53642003-03-19 09:13:01 +000079#define DISP_DIRNAME (1U<<15) /* 2 or more items? label directories */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000080#define DISP_HIDDEN (1U<<16) /* show filenames starting with . */
81#define DISP_DOT (1U<<17) /* show . and .. */
82#define DISP_NOLIST (1U<<18) /* show directory as itself, not contents */
Manuel Novoa III cad53642003-03-19 09:13:01 +000083#define DISP_RECURSIVE (1U<<19) /* show directory and everything below it */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000084#define DISP_ROWS (1U<<20) /* print across rows */
Manuel Novoa III cad53642003-03-19 09:13:01 +000085
Rob Landley9947a242006-06-15 22:11:10 +000086#define DISP_MASK (((DISP_ROWS << 1) - 1) & ~(DISP_DIRNAME - 1))
Eric Andersen11c65522000-09-07 17:24:47 +000087
Rob Landleyea224be2006-06-18 20:20:07 +000088// CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +000089/* how will the files be sorted */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000090#define SORT_ORDER_FORWARD 0 /* sort in reverse order */
Manuel Novoa III cad53642003-03-19 09:13:01 +000091#define SORT_ORDER_REVERSE (1U<<27) /* sort in reverse order */
92
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000093#define SORT_NAME 0 /* sort by file name */
Manuel Novoa III cad53642003-03-19 09:13:01 +000094#define SORT_SIZE (1U<<28) /* sort by file size */
95#define SORT_ATIME (2U<<28) /* sort by last access time */
96#define SORT_CTIME (3U<<28) /* sort by last change time */
97#define SORT_MTIME (4U<<28) /* sort by last modification time */
98#define SORT_VERSION (5U<<28) /* sort by version */
99#define SORT_EXT (6U<<28) /* sort by file name extension */
100#define SORT_DIR (7U<<28) /* sort by file or directory */
101
102#define SORT_MASK (7U<<28)
Eric Andersencc8ed391999-10-05 16:24:54 +0000103
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000104#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000105/* which of the three times will be used */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000106#define TIME_MOD 0
107#define TIME_CHANGE (1U<<23)
108#define TIME_ACCESS (1U<<24)
109
110#define TIME_MASK (3U<<23)
111#endif
112
113#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
114#define FOLLOW_LINKS (1U<<25)
115#endif
116#ifdef CONFIG_FEATURE_HUMAN_READABLE
117#define LS_DISP_HR (1U<<26)
Eric Andersencc8ed391999-10-05 16:24:54 +0000118#endif
119
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000120#define LIST_SHORT (LIST_FILENAME)
121#define LIST_ISHORT (LIST_INO | LIST_FILENAME)
122#define LIST_LONG (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
123 LIST_DATE_TIME | LIST_FILENAME | LIST_SYMLINK)
124#define LIST_ILONG (LIST_INO | LIST_LONG)
Eric Andersencc8ed391999-10-05 16:24:54 +0000125
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126#define SPLIT_DIR 1
127#define SPLIT_FILE 0
128#define SPLIT_SUBDIR 2
Eric Andersencc8ed391999-10-05 16:24:54 +0000129
Eric Andersen11c65522000-09-07 17:24:47 +0000130#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
131#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000132
Eric Andersend598d412002-04-27 09:19:39 +0000133#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000134# define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
Eric Andersen11c65522000-09-07 17:24:47 +0000135#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000136
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000137/* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */
138#ifdef CONFIG_FEATURE_LS_COLOR
Paul Fox156dc412005-08-01 19:33:30 +0000139
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000140static int show_color = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000141
Paul Fox156dc412005-08-01 19:33:30 +0000142/* long option entry used only for --color, which has no short option
143 * equivalent. */
"Vladimir N. Oleynik"1f0262b2005-10-20 11:17:48 +0000144static const struct option ls_color_opt[] =
Paul Fox156dc412005-08-01 19:33:30 +0000145{
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000146 {"color", optional_argument, NULL, 1},
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000147 {NULL, 0, NULL, 0}
Paul Fox156dc412005-08-01 19:33:30 +0000148};
149
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000150#define COLOR(mode) ("\000\043\043\043\042\000\043\043"\
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000151 "\000\000\044\000\043\000\000\040" [TYPEINDEX(mode)])
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000152#define ATTR(mode) ("\00\00\01\00\01\00\01\00"\
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000153 "\00\00\01\00\01\00\00\01" [TYPEINDEX(mode)])
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000154#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000155
Eric Andersen11c65522000-09-07 17:24:47 +0000156/*
157 * a directory entry and its stat info are stored here
158 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000159struct dnode { /* the basic node */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000160 char *name; /* the dir entry name */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000161 char *fullname; /* the dir entry name */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000162 int allocated;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000163 struct stat dstat; /* the file stat info */
Eric Andersen9e480452003-07-03 10:07:04 +0000164#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +0000165 security_context_t sid;
Eric Andersen9e480452003-07-03 10:07:04 +0000166#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000167 struct dnode *next; /* point at the next node */
Eric Andersen11c65522000-09-07 17:24:47 +0000168};
169typedef struct dnode dnode_t;
170
Glenn L McGrath4d001292003-01-06 01:11:50 +0000171static struct dnode **list_dir(const char *);
Eric Andersen3e6ff902001-03-09 21:24:12 +0000172static struct dnode **dnalloc(int);
173static int list_single(struct dnode *);
Eric Andersen11c65522000-09-07 17:24:47 +0000174
Manuel Novoa III cad53642003-03-19 09:13:01 +0000175static unsigned int all_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000176
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000177#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersen8efe9672003-09-15 08:33:45 +0000178static int terminal_width = TERMINAL_WIDTH;
Eric Andersene57d54b2001-01-30 18:03:11 +0000179static unsigned short tabstops = COLUMN_GAP;
Eric Andersenf5d5e772001-01-24 23:34:48 +0000180#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000181#define tabstops COLUMN_GAP
182#define terminal_width TERMINAL_WIDTH
Eric Andersen11c65522000-09-07 17:24:47 +0000183#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000184
Matt Kraai33fdae52000-10-13 17:59:43 +0000185static int status = EXIT_SUCCESS;
186
Glenn L McGrath4d001292003-01-06 01:11:50 +0000187static struct dnode *my_stat(char *fullname, char *name)
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000188{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000189 struct stat dstat;
190 struct dnode *cur;
Eric Andersen9e480452003-07-03 10:07:04 +0000191#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +0000192 security_context_t sid=NULL;
Eric Andersen9e480452003-07-03 10:07:04 +0000193#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000194
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000195#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Manuel Novoa III cad53642003-03-19 09:13:01 +0000196 if (all_fmt & FOLLOW_LINKS) {
Eric Andersen9e480452003-07-03 10:07:04 +0000197#ifdef CONFIG_SELINUX
Bernhard Reutner-Fischerd2c306e2006-05-29 12:10:23 +0000198 if (is_selinux_enabled()) {
199 getfilecon(fullname,&sid);
Rob Landley60158cb2005-05-03 06:25:50 +0000200 }
Eric Andersen9e480452003-07-03 10:07:04 +0000201#endif
Bernhard Reutner-Fischerd2c306e2006-05-29 12:10:23 +0000202 if (stat(fullname, &dstat)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000203 bb_perror_msg("%s", fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000204 status = EXIT_FAILURE;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000205 return 0;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000206 }
207 } else
208#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000209 {
210#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +0000211 if (is_selinux_enabled()) {
Bernhard Reutner-Fischerd2c306e2006-05-29 12:10:23 +0000212 lgetfilecon(fullname,&sid);
Rob Landley60158cb2005-05-03 06:25:50 +0000213 }
Eric Andersen9e480452003-07-03 10:07:04 +0000214#endif
Bernhard Reutner-Fischerd2c306e2006-05-29 12:10:23 +0000215 if (lstat(fullname, &dstat)) {
Eric Andersen9e480452003-07-03 10:07:04 +0000216 bb_perror_msg("%s", fullname);
217 status = EXIT_FAILURE;
218 return 0;
219 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000220 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000221
222 cur = (struct dnode *) xmalloc(sizeof(struct dnode));
223 cur->fullname = fullname;
224 cur->name = name;
225 cur->dstat = dstat;
Eric Andersen9e480452003-07-03 10:07:04 +0000226#ifdef CONFIG_SELINUX
227 cur->sid = sid;
228#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000229 return cur;
Eric Andersen79565b62000-08-11 18:10:21 +0000230}
231
Eric Andersen11c65522000-09-07 17:24:47 +0000232/*----------------------------------------------------------------------*/
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000233#ifdef CONFIG_FEATURE_LS_COLOR
234static char fgcolor(mode_t mode)
235{
236 /* Check wheter the file is existing (if so, color it red!) */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000237 if (errno == ENOENT) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000238 return '\037';
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000239 }
Rob Landley9947a242006-06-15 22:11:10 +0000240 if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000241 return COLOR(0xF000); /* File is executable ... */
242 return COLOR(mode);
243}
244
245/*----------------------------------------------------------------------*/
246static char bgcolor(mode_t mode)
247{
Rob Landley9947a242006-06-15 22:11:10 +0000248 if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000249 return ATTR(0xF000); /* File is executable ... */
250 return ATTR(mode);
251}
252#endif
253
254/*----------------------------------------------------------------------*/
Eric Andersend598d412002-04-27 09:19:39 +0000255#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000256static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000257{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000258 if (!(all_fmt & LIST_FILETYPE))
Eric Andersen11c65522000-09-07 17:24:47 +0000259 return '\0';
Rob Landley9947a242006-06-15 22:11:10 +0000260 if (S_ISDIR(mode))
261 return '/';
262 if (!(all_fmt & LIST_EXEC))
263 return '\0';
264 if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000265 return '*';
266 return APPCHAR(mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000267}
268#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000269
Eric Andersen11c65522000-09-07 17:24:47 +0000270/*----------------------------------------------------------------------*/
Eric Andersencf1189f2000-11-29 21:52:06 +0000271
Manuel Novoa III cad53642003-03-19 09:13:01 +0000272#define countdirs(A,B) count_dirs((A), (B), 1)
273#define countsubdirs(A,B) count_dirs((A), (B), 0)
274
275static int count_dirs(struct dnode **dn, int nfiles, int notsubdirs)
Eric Andersen11c65522000-09-07 17:24:47 +0000276{
277 int i, dirs;
278
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000279 if (dn == NULL || nfiles < 1)
280 return (0);
281 dirs = 0;
282 for (i = 0; i < nfiles; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000283 if (S_ISDIR(dn[i]->dstat.st_mode)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000284 && (notsubdirs ||
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000285 ((dn[i]->name[0] != '.') || (dn[i]->name[1]
Manuel Novoa III cad53642003-03-19 09:13:01 +0000286 && ((dn[i]->name[1] != '.')
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000287 || dn[i]->name[2])))))
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000288 dirs++;
Eric Andersen11c65522000-09-07 17:24:47 +0000289 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000290 return (dirs);
Eric Andersen11c65522000-09-07 17:24:47 +0000291}
292
Eric Andersen3e6ff902001-03-09 21:24:12 +0000293static int countfiles(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000294{
295 int nfiles;
296 struct dnode *cur;
297
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000298 if (dnp == NULL)
299 return (0);
300 nfiles = 0;
301 for (cur = dnp[0]; cur->next != NULL; cur = cur->next)
302 nfiles++;
Eric Andersen11c65522000-09-07 17:24:47 +0000303 nfiles++;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000304 return (nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000305}
306
307/* get memory to hold an array of pointers */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000308static struct dnode **dnalloc(int num)
Eric Andersen11c65522000-09-07 17:24:47 +0000309{
310 struct dnode **p;
311
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000312 if (num < 1)
313 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000314
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000315 p = (struct dnode **) xcalloc((size_t) num, (size_t) (sizeof(struct dnode *)));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000316 return (p);
Eric Andersen11c65522000-09-07 17:24:47 +0000317}
318
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000319#ifdef CONFIG_FEATURE_LS_RECURSIVE
Rob Landley26314862006-05-02 19:46:52 +0000320static void dfree(struct dnode **dnp, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000321{
Rob Landley26314862006-05-02 19:46:52 +0000322 int i;
Eric Andersen11c65522000-09-07 17:24:47 +0000323
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000324 if (dnp == NULL)
325 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000326
Rob Landley26314862006-05-02 19:46:52 +0000327 for (i = 0; i < nfiles; i++) {
328 struct dnode *cur = dnp[i];
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000329 if(cur->allocated)
330 free(cur->fullname); /* free the filename */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000331 free(cur); /* free the dnode */
Eric Andersen11c65522000-09-07 17:24:47 +0000332 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000333 free(dnp); /* free the array holding the dnode pointers */
Eric Andersen11c65522000-09-07 17:24:47 +0000334}
Rob Landleyc44bc982006-05-28 01:19:06 +0000335#else
336#define dfree(...)
Eric Andersen20aab262001-07-19 22:28:02 +0000337#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000338
Eric Andersen3e6ff902001-03-09 21:24:12 +0000339static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
Eric Andersen11c65522000-09-07 17:24:47 +0000340{
341 int dncnt, i, d;
342 struct dnode **dnp;
343
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000344 if (dn == NULL || nfiles < 1)
345 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000346
347 /* count how many dirs and regular files there are */
Eric Andersencf1189f2000-11-29 21:52:06 +0000348 if (which == SPLIT_SUBDIR)
349 dncnt = countsubdirs(dn, nfiles);
350 else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000351 dncnt = countdirs(dn, nfiles); /* assume we are looking for dirs */
Eric Andersencf1189f2000-11-29 21:52:06 +0000352 if (which == SPLIT_FILE)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000353 dncnt = nfiles - dncnt; /* looking for files */
Eric Andersencf1189f2000-11-29 21:52:06 +0000354 }
Eric Andersen11c65522000-09-07 17:24:47 +0000355
356 /* allocate a file array and a dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000357 dnp = dnalloc(dncnt);
Eric Andersen11c65522000-09-07 17:24:47 +0000358
359 /* copy the entrys into the file or dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000360 for (d = i = 0; i < nfiles; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000361 if (S_ISDIR(dn[i]->dstat.st_mode)) {
362 if (which & (SPLIT_DIR|SPLIT_SUBDIR)) {
363 if ((which & SPLIT_DIR)
364 || ((dn[i]->name[0] != '.')
365 || (dn[i]->name[1]
366 && ((dn[i]->name[1] != '.')
367 || dn[i]->name[2])))) {
368 dnp[d++] = dn[i];
369 }
370 }
371 } else if (!(which & (SPLIT_DIR|SPLIT_SUBDIR))) {
372 dnp[d++] = dn[i];
Eric Andersen11c65522000-09-07 17:24:47 +0000373 }
374 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000375 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000376}
377
378/*----------------------------------------------------------------------*/
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000379#ifdef CONFIG_FEATURE_LS_SORTFILES
Rob Landley425e7582006-05-03 20:22:03 +0000380static int sortcmp(const void *a, const void *b)
Eric Andersen11c65522000-09-07 17:24:47 +0000381{
Rob Landley425e7582006-05-03 20:22:03 +0000382 struct dnode *d1 = *(struct dnode **)a;
383 struct dnode *d2 = *(struct dnode **)b;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000384 unsigned int sort_opts = all_fmt & SORT_MASK;
385 int dif;
Eric Andersen11c65522000-09-07 17:24:47 +0000386
Manuel Novoa III cad53642003-03-19 09:13:01 +0000387 dif = 0; /* assume SORT_NAME */
Eric Andersen11c65522000-09-07 17:24:47 +0000388 if (sort_opts == SORT_SIZE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000389 dif = (int) (d2->dstat.st_size - d1->dstat.st_size);
Eric Andersen11c65522000-09-07 17:24:47 +0000390 } else if (sort_opts == SORT_ATIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000391 dif = (int) (d2->dstat.st_atime - d1->dstat.st_atime);
Eric Andersen11c65522000-09-07 17:24:47 +0000392 } else if (sort_opts == SORT_CTIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000393 dif = (int) (d2->dstat.st_ctime - d1->dstat.st_ctime);
Eric Andersen11c65522000-09-07 17:24:47 +0000394 } else if (sort_opts == SORT_MTIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000395 dif = (int) (d2->dstat.st_mtime - d1->dstat.st_mtime);
Eric Andersen11c65522000-09-07 17:24:47 +0000396 } else if (sort_opts == SORT_DIR) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000397 dif = S_ISDIR(d2->dstat.st_mode) - S_ISDIR(d1->dstat.st_mode);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000398 /* } else if (sort_opts == SORT_VERSION) { */
399 /* } else if (sort_opts == SORT_EXT) { */
Eric Andersen11c65522000-09-07 17:24:47 +0000400 }
401
Eric Andersen11c65522000-09-07 17:24:47 +0000402 if (dif == 0) {
403 /* sort by name- may be a tie_breaker for time or size cmp */
Rob Landleyea224be2006-06-18 20:20:07 +0000404 if (ENABLE_LOCALE_SUPPORT) dif = strcoll(d1->name, d2->name);
405 else dif = strcmp(d1->name, d2->name);
Eric Andersen11c65522000-09-07 17:24:47 +0000406 }
407
Manuel Novoa III cad53642003-03-19 09:13:01 +0000408 if (all_fmt & SORT_ORDER_REVERSE) {
409 dif = -dif;
Eric Andersen11c65522000-09-07 17:24:47 +0000410 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000411 return (dif);
Eric Andersen11c65522000-09-07 17:24:47 +0000412}
413
414/*----------------------------------------------------------------------*/
Rob Landley425e7582006-05-03 20:22:03 +0000415static void dnsort(struct dnode **dn, int size)
Eric Andersen11c65522000-09-07 17:24:47 +0000416{
Rob Landley425e7582006-05-03 20:22:03 +0000417 qsort(dn, size, sizeof *dn, sortcmp);
Eric Andersen11c65522000-09-07 17:24:47 +0000418}
Rob Landleyea224be2006-06-18 20:20:07 +0000419#else
420#define sortcmp(a, b) 0
421#define dnsort(dn, size)
Eric Andersen11c65522000-09-07 17:24:47 +0000422#endif
423
Rob Landleyea224be2006-06-18 20:20:07 +0000424
Eric Andersen11c65522000-09-07 17:24:47 +0000425/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000426static void showfiles(struct dnode **dn, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000427{
428 int i, ncols, nrows, row, nc;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000429 int column = 0;
430 int nexttab = 0;
431 int column_width = 0; /* for STYLE_LONG and STYLE_SINGLE not used */
Eric Andersen11c65522000-09-07 17:24:47 +0000432
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000433 if (dn == NULL || nfiles < 1)
434 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000435
Manuel Novoa III cad53642003-03-19 09:13:01 +0000436 if (all_fmt & STYLE_ONE_RECORD_FLAG) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000437 ncols = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000438 } else {
439 /* find the longest file name- use that as the column width */
440 for (i = 0; i < nfiles; i++) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000441 int len = strlen(dn[i]->name) +
Eric Andersen9e480452003-07-03 10:07:04 +0000442#ifdef CONFIG_SELINUX
443 ((all_fmt & LIST_CONTEXT) ? 33 : 0) +
444#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000445 ((all_fmt & LIST_INO) ? 8 : 0) +
446 ((all_fmt & LIST_BLOCKS) ? 5 : 0);
447 if (column_width < len)
448 column_width = len;
449 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000450 column_width += tabstops;
451 ncols = (int) (terminal_width / column_width);
Eric Andersen11c65522000-09-07 17:24:47 +0000452 }
453
Eric Andersene57d54b2001-01-30 18:03:11 +0000454 if (ncols > 1) {
455 nrows = nfiles / ncols;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000456 if ((nrows * ncols) < nfiles)
457 nrows++; /* round up fractionals */
Eric Andersene57d54b2001-01-30 18:03:11 +0000458 } else {
459 nrows = nfiles;
460 ncols = 1;
461 }
Eric Andersen11c65522000-09-07 17:24:47 +0000462
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000463 for (row = 0; row < nrows; row++) {
464 for (nc = 0; nc < ncols; nc++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000465 /* reach into the array based on the column and row */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000466 i = (nc * nrows) + row; /* assume display by column */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000467 if (all_fmt & DISP_ROWS)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000468 i = (row * ncols) + nc; /* display across row */
Eric Andersen11c65522000-09-07 17:24:47 +0000469 if (i < nfiles) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000470 if (column > 0) {
471 nexttab -= column;
472 while (nexttab--) {
473 putchar(' ');
474 column++;
475 }
Eric Andersen79565b62000-08-11 18:10:21 +0000476 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000477 nexttab = column + column_width;
478 column += list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000479 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000480 }
481 putchar('\n');
482 column = 0;
Eric Andersena42982e2000-06-07 17:28:53 +0000483 }
Eric Andersen11c65522000-09-07 17:24:47 +0000484}
485
486/*----------------------------------------------------------------------*/
Glenn L McGrathc4db0832004-03-06 09:12:55 +0000487static void showdirs(struct dnode **dn, int ndirs, int first)
Eric Andersen11c65522000-09-07 17:24:47 +0000488{
489 int i, nfiles;
490 struct dnode **subdnp;
Eric Andersen11c65522000-09-07 17:24:47 +0000491 int dndirs;
492 struct dnode **dnd;
Eric Andersen11c65522000-09-07 17:24:47 +0000493
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000494 if (dn == NULL || ndirs < 1)
495 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000496
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000497 for (i = 0; i < ndirs; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000498 if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) {
Glenn L McGrathc4db0832004-03-06 09:12:55 +0000499 if (!first)
500 printf("\n");
501 first = 0;
502 printf("%s:\n", dn[i]->fullname);
Eric Andersen11c65522000-09-07 17:24:47 +0000503 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000504 subdnp = list_dir(dn[i]->fullname);
505 nfiles = countfiles(subdnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000506 if (nfiles > 0) {
507 /* list all files at this level */
Rob Landleyea224be2006-06-18 20:20:07 +0000508 if (ENABLE_FEATURE_LS_SORTFILES) dnsort(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000509 showfiles(subdnp, nfiles);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000510#ifdef CONFIG_FEATURE_LS_RECURSIVE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000511 if (all_fmt & DISP_RECURSIVE) {
Eric Andersen11c65522000-09-07 17:24:47 +0000512 /* recursive- list the sub-dirs */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000513 dnd = splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
514 dndirs = countsubdirs(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000515 if (dndirs > 0) {
Rob Landleyea224be2006-06-18 20:20:07 +0000516 if (ENABLE_FEATURE_LS_SORTFILES) dnsort(dnd, dndirs);
Glenn L McGrathc4db0832004-03-06 09:12:55 +0000517 showdirs(dnd, dndirs, 0);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000518 free(dnd); /* free the array of dnode pointers to the dirs */
Eric Andersen11c65522000-09-07 17:24:47 +0000519 }
520 }
Rob Landley26314862006-05-02 19:46:52 +0000521 dfree(subdnp, nfiles); /* free the dnodes and the fullname mem */
Eric Andersen11c65522000-09-07 17:24:47 +0000522#endif
523 }
524 }
525}
526
527/*----------------------------------------------------------------------*/
Glenn L McGrath4d001292003-01-06 01:11:50 +0000528static struct dnode **list_dir(const char *path)
Eric Andersen11c65522000-09-07 17:24:47 +0000529{
530 struct dnode *dn, *cur, **dnp;
531 struct dirent *entry;
532 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000533 int i, nfiles;
534
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000535 if (path == NULL)
536 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000537
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000538 dn = NULL;
539 nfiles = 0;
Bernhard Reutner-Fischercb448162006-04-12 07:35:12 +0000540 dir = bb_opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000541 if (dir == NULL) {
Matt Kraai33fdae52000-10-13 17:59:43 +0000542 status = EXIT_FAILURE;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000543 return (NULL); /* could not open the dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000544 }
545 while ((entry = readdir(dir)) != NULL) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000546 char *fullname;
547
Eric Andersen11c65522000-09-07 17:24:47 +0000548 /* are we going to list the file- it may be . or .. or a hidden file */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000549 if (entry->d_name[0] == '.') {
550 if ((entry->d_name[1] == 0 || (
551 entry->d_name[1] == '.'
552 && entry->d_name[2] == 0))
Manuel Novoa III cad53642003-03-19 09:13:01 +0000553 && !(all_fmt & DISP_DOT))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000554 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000555 if (!(all_fmt & DISP_HIDDEN))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000556 continue;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000557 }
558 fullname = concat_path_file(path, entry->d_name);
559 cur = my_stat(fullname, strrchr(fullname, '/') + 1);
560 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +0000561 continue;
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000562 cur->allocated = 1;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000563 cur->next = dn;
564 dn = cur;
Eric Andersen11c65522000-09-07 17:24:47 +0000565 nfiles++;
566 }
567 closedir(dir);
568
569 /* now that we know how many files there are
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000570 ** allocate memory for an array to hold dnode pointers
571 */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000572 if (dn == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000573 return (NULL);
574 dnp = dnalloc(nfiles);
575 for (i = 0, cur = dn; i < nfiles; i++) {
576 dnp[i] = cur; /* save pointer to node in array */
577 cur = cur->next;
Eric Andersen11c65522000-09-07 17:24:47 +0000578 }
579
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000580 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000581}
582
583/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000584static int list_single(struct dnode *dn)
Eric Andersen11c65522000-09-07 17:24:47 +0000585{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000586 int i, column = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000587
Matt Kraaia1bbde72002-03-08 16:25:33 +0000588#ifdef CONFIG_FEATURE_LS_USERNAME
Glenn L McGrath4d001292003-01-06 01:11:50 +0000589 char scratch[16];
Matt Kraaia1bbde72002-03-08 16:25:33 +0000590#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000591#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000592 char *filetime;
593 time_t ttime, age;
594#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000595#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000596 struct stat info;
597 char append;
598#endif
599
Glenn L McGrath4d001292003-01-06 01:11:50 +0000600 if (dn->fullname == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000601 return (0);
Eric Andersen11c65522000-09-07 17:24:47 +0000602
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000603#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000604 ttime = dn->dstat.st_mtime; /* the default time */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000605 if (all_fmt & TIME_ACCESS)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000606 ttime = dn->dstat.st_atime;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000607 if (all_fmt & TIME_CHANGE)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000608 ttime = dn->dstat.st_ctime;
609 filetime = ctime(&ttime);
Eric Andersen11c65522000-09-07 17:24:47 +0000610#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000611#ifdef CONFIG_FEATURE_LS_FILETYPES
Eric Andersen11c65522000-09-07 17:24:47 +0000612 append = append_char(dn->dstat.st_mode);
613#endif
614
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000615 for (i = 0; i <= 31; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000616 switch (all_fmt & (1 << i)) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000617 case LIST_INO:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000618 column += printf("%7ld ", (long int) dn->dstat.st_ino);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000619 break;
620 case LIST_BLOCKS:
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000621#if _FILE_OFFSET_BITS == 64
Eric Andersen5e678872006-01-30 19:48:23 +0000622 column += printf("%4lld ", (long long)dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000623#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000624 column += printf("%4ld ", dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000625#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000626 break;
627 case LIST_MODEBITS:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000628 column += printf("%-10s ", (char *) bb_mode_string(dn->dstat.st_mode));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000629 break;
630 case LIST_NLINKS:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000631 column += printf("%4ld ", (long) dn->dstat.st_nlink);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000632 break;
633 case LIST_ID_NAME:
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000634#ifdef CONFIG_FEATURE_LS_USERNAME
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +0000635 bb_getpwuid(scratch, dn->dstat.st_uid, sizeof(scratch));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000636 printf("%-8.8s ", scratch);
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +0000637 bb_getgrgid(scratch, dn->dstat.st_gid, sizeof(scratch));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000638 printf("%-8.8s", scratch);
639 column += 17;
640 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000641#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000642 case LIST_ID_NUMERIC:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000643 column += printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000644 break;
645 case LIST_SIZE:
646 case LIST_DEV:
647 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
Eric Andersen4f807a82004-07-26 09:11:12 +0000648 column += printf("%4d, %3d ", (int) major(dn->dstat.st_rdev),
649 (int) minor(dn->dstat.st_rdev));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000650 } else {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000651#ifdef CONFIG_FEATURE_HUMAN_READABLE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000652 if (all_fmt & LS_DISP_HR) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000653 column += printf("%9s ",
654 make_human_readable_str(dn->dstat.st_size, 1, 0));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000655 } else
656#endif
657 {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000658#if _FILE_OFFSET_BITS == 64
Glenn L McGrath4d001292003-01-06 01:11:50 +0000659 column += printf("%9lld ", (long long) dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000660#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000661 column += printf("%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000662#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000663 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000664 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000665 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000666#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000667 case LIST_FULLTIME:
Glenn L McGrath65b6d8b2004-01-18 05:41:30 +0000668 printf("%24.24s ", filetime);
669 column += 25;
670 break;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000671 case LIST_DATE_TIME:
Glenn L McGrath65b6d8b2004-01-18 05:41:30 +0000672 if ((all_fmt & LIST_FULLTIME) == 0) {
673 age = time(NULL) - ttime;
674 printf("%6.6s ", filetime + 4);
675 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
676 /* hh:mm if less than 6 months old */
677 printf("%5.5s ", filetime + 11);
678 } else {
679 printf(" %4.4s ", filetime + 20);
680 }
681 column += 13;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000682 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000683 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000684#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000685#ifdef CONFIG_SELINUX
686 case LIST_CONTEXT:
687 {
Rob Landley60158cb2005-05-03 06:25:50 +0000688 char context[80];
Rob Landley08abe642006-03-01 20:48:44 +0000689 int len = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000690
Rob Landley60158cb2005-05-03 06:25:50 +0000691 if (dn->sid) {
692 /* I assume sid initilized with NULL */
693 len = strlen(dn->sid)+1;
694 safe_strncpy(context, dn->sid, len);
695 freecon(dn->sid);
696 }else {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000697 safe_strncpy(context, "unknown", 8);
Eric Andersen9e480452003-07-03 10:07:04 +0000698 }
699 printf("%-32s ", context);
700 column += MAX(33, len);
701 }
702 break;
703#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000704 case LIST_FILENAME:
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000705#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000706 errno = 0;
707 if (show_color && !lstat(dn->fullname, &info)) {
708 printf("\033[%d;%dm", bgcolor(info.st_mode),
709 fgcolor(info.st_mode));
710 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000711#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000712 column += printf("%s", dn->name);
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000713#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000714 if (show_color) {
715 printf("\033[0m");
716 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000717#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000718 break;
719 case LIST_SYMLINK:
720 if (S_ISLNK(dn->dstat.st_mode)) {
721 char *lpath = xreadlink(dn->fullname);
722
723 if (lpath) {
724 printf(" -> ");
725#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
726 if (!stat(dn->fullname, &info)) {
727 append = append_char(info.st_mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000728 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000729#endif
730#ifdef CONFIG_FEATURE_LS_COLOR
731 if (show_color) {
732 errno = 0;
733 printf("\033[%d;%dm", bgcolor(info.st_mode),
734 fgcolor(info.st_mode));
735 }
736#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000737 column += printf("%s", lpath) + 4;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000738#ifdef CONFIG_FEATURE_LS_COLOR
739 if (show_color) {
740 printf("\033[0m");
741 }
742#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000743 free(lpath);
Eric Andersen11c65522000-09-07 17:24:47 +0000744 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000745 }
746 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000747#ifdef CONFIG_FEATURE_LS_FILETYPES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000748 case LIST_FILETYPE:
749 if (append != '\0') {
750 printf("%1c", append);
751 column++;
752 }
753 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000754#endif
755 }
756 }
757
Glenn L McGrath4d001292003-01-06 01:11:50 +0000758 return column;
Eric Andersen11c65522000-09-07 17:24:47 +0000759}
760
761/*----------------------------------------------------------------------*/
Manuel Novoa III cad53642003-03-19 09:13:01 +0000762
Glenn L McGrath792cae52004-01-18 05:15:16 +0000763/* "[-]Cadil1", POSIX mandated options, busybox always supports */
764/* "[-]gnsx", POSIX non-mandated options, busybox always supports */
765/* "[-]Ak" GNU options, busybox always supports */
766/* "[-]FLRctur", POSIX mandated options, busybox optionally supports */
767/* "[-]p", POSIX non-mandated options, busybox optionally supports */
768/* "[-]SXvThw", GNU options, busybox optionally supports */
769/* "[-]K", SELinux mandated options, busybox optionally supports */
770/* "[-]e", I think we made this one up */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000771
Glenn L McGrath792cae52004-01-18 05:15:16 +0000772#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
773# define LS_STR_TIMESTAMPS "cetu"
774#else
775# define LS_STR_TIMESTAMPS ""
776#endif
777
Glenn L McGrath792cae52004-01-18 05:15:16 +0000778#ifdef CONFIG_FEATURE_LS_FILETYPES
779# define LS_STR_FILETYPES "Fp"
780#else
781# define LS_STR_FILETYPES ""
782#endif
783
784#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
785# define LS_STR_FOLLOW_LINKS "L"
786#else
787# define LS_STR_FOLLOW_LINKS ""
788#endif
789
790#ifdef CONFIG_FEATURE_LS_RECURSIVE
791# define LS_STR_RECURSIVE "R"
792#else
793# define LS_STR_RECURSIVE ""
794#endif
795
796#ifdef CONFIG_FEATURE_HUMAN_READABLE
797# define LS_STR_HUMAN_READABLE "h"
798#else
799# define LS_STR_HUMAN_READABLE ""
800#endif
801
802#ifdef CONFIG_SELINUX
803# define LS_STR_SELINUX "K"
804#else
805# define LS_STR_SELINUX ""
806#endif
807
808#ifdef CONFIG_FEATURE_AUTOWIDTH
809# define LS_STR_AUTOWIDTH "T:w:"
810#else
811# define LS_STR_AUTOWIDTH ""
812#endif
813
814static const char ls_options[]="Cadil1gnsxAk" \
815 LS_STR_TIMESTAMPS \
Rob Landleyea224be2006-06-18 20:20:07 +0000816 USE_FEATURE_LS_SORTFILES("SXrv") \
Glenn L McGrath792cae52004-01-18 05:15:16 +0000817 LS_STR_FILETYPES \
818 LS_STR_FOLLOW_LINKS \
819 LS_STR_RECURSIVE \
820 LS_STR_HUMAN_READABLE \
821 LS_STR_SELINUX \
822 LS_STR_AUTOWIDTH;
823
Glenn L McGrathafc9ab82004-09-24 02:04:13 +0000824#define LIST_MASK_TRIGGER 0
Glenn L McGrath792cae52004-01-18 05:15:16 +0000825#define STYLE_MASK_TRIGGER STYLE_MASK
826#define SORT_MASK_TRIGGER SORT_MASK
827#define DISP_MASK_TRIGGER DISP_ROWS
828#define TIME_MASK_TRIGGER TIME_MASK
Manuel Novoa III cad53642003-03-19 09:13:01 +0000829
830static const unsigned opt_flags[] = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000831 LIST_SHORT | STYLE_COLUMNS, /* C */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000832 DISP_HIDDEN | DISP_DOT, /* a */
833 DISP_NOLIST, /* d */
834 LIST_INO, /* i */
835 LIST_LONG | STYLE_LONG, /* l - remember LS_DISP_HR in mask! */
836 LIST_SHORT | STYLE_SINGLE, /* 1 */
837 0, /* g - ingored */
838 LIST_ID_NUMERIC, /* n */
839 LIST_BLOCKS, /* s */
840 DISP_ROWS, /* x */
841 DISP_HIDDEN, /* A */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000842#ifdef CONFIG_SELINUX
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000843 LIST_CONTEXT, /* k */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000844#else
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000845 0, /* k - ingored */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000846#endif
847#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Rob Landleyea224be2006-06-18 20:20:07 +0000848 TIME_CHANGE | (ENABLE_FEATURE_LS_SORTFILES * SORT_CTIME), /* c */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000849 LIST_FULLTIME, /* e */
Rob Landleyea224be2006-06-18 20:20:07 +0000850 ENABLE_FEATURE_LS_SORTFILES * SORT_MTIME, /* t */
851 TIME_ACCESS | (ENABLE_FEATURE_LS_SORTFILES * SORT_ATIME), /* u */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000852#endif
853#ifdef CONFIG_FEATURE_LS_SORTFILES
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000854 SORT_SIZE, /* S */
855 SORT_EXT, /* X */
856 SORT_ORDER_REVERSE, /* r */
857 SORT_VERSION, /* v */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000858#endif
Glenn L McGrath792cae52004-01-18 05:15:16 +0000859#ifdef CONFIG_FEATURE_LS_FILETYPES
860 LIST_FILETYPE | LIST_EXEC, /* F */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000861 LIST_FILETYPE, /* p */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000862#endif
863#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000864 FOLLOW_LINKS, /* L */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000865#endif
866#ifdef CONFIG_FEATURE_LS_RECURSIVE
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000867 DISP_RECURSIVE, /* R */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000868#endif
869#ifdef CONFIG_FEATURE_HUMAN_READABLE
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000870 LS_DISP_HR, /* h */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000871#endif
Glenn L McGrath792cae52004-01-18 05:15:16 +0000872#ifdef CONFIG_SELINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000873 LIST_MODEBITS|LIST_NLINKS|LIST_CONTEXT|LIST_SIZE|LIST_DATE_TIME, /* K */
874#endif
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000875#ifdef CONFIG_FEATURE_AUTOWIDTH
876 0, 0, /* T, w - ignored */
877#endif
Eric Andersend07cf592004-02-05 13:52:03 +0000878 (1U<<31)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000879};
880
881
882/*----------------------------------------------------------------------*/
883
Rob Landleydfba7412006-03-06 20:47:33 +0000884int ls_main(int argc, char **argv)
Eric Andersen11c65522000-09-07 17:24:47 +0000885{
Glenn L McGrath792cae52004-01-18 05:15:16 +0000886 struct dnode **dnd;
887 struct dnode **dnf;
888 struct dnode **dnp;
889 struct dnode *dn;
890 struct dnode *cur;
891 long opt;
892 int nfiles = 0;
893 int dnfiles;
894 int dndirs;
895 int oi;
896 int ac;
897 int i;
Eric Andersen11c65522000-09-07 17:24:47 +0000898 char **av;
Glenn L McGrath792cae52004-01-18 05:15:16 +0000899#ifdef CONFIG_FEATURE_AUTOWIDTH
900 char *tabstops_str = NULL;
901 char *terminal_width_str = NULL;
902#endif
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000903#ifdef CONFIG_FEATURE_LS_COLOR
904 char *color_opt;
905#endif
Glenn L McGrath792cae52004-01-18 05:15:16 +0000906
Rob Landleyea224be2006-06-18 20:20:07 +0000907 all_fmt = LIST_SHORT | (ENABLE_FEATURE_LS_TIMESTAMPS * TIME_MOD) |
908 (ENABLE_FEATURE_LS_SORTFILES * (SORT_NAME | SORT_ORDER_FORWARD));
Glenn L McGrath792cae52004-01-18 05:15:16 +0000909
Eric Andersen6d687812003-11-04 23:16:48 +0000910#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersen8efe9672003-09-15 08:33:45 +0000911 /* Obtain the terminal width. */
Eric Andersen70060d22004-03-27 10:02:48 +0000912 get_terminal_width_height(STDOUT_FILENO, &terminal_width, NULL);
Eric Andersen8efe9672003-09-15 08:33:45 +0000913 /* Go one less... */
914 terminal_width--;
Eric Andersen6d687812003-11-04 23:16:48 +0000915#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000916
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000917#ifdef CONFIG_FEATURE_LS_COLOR
Paul Fox156dc412005-08-01 19:33:30 +0000918 bb_applet_long_options = ls_color_opt;
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000919#endif
920
Eric Andersen11c65522000-09-07 17:24:47 +0000921 /* process options */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000922#ifdef CONFIG_FEATURE_AUTOWIDTH
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000923 opt = bb_getopt_ulflags(argc, argv, ls_options, &tabstops_str, &terminal_width_str
924#ifdef CONFIG_FEATURE_LS_COLOR
925 , &color_opt
926#endif
927 );
Glenn L McGrath792cae52004-01-18 05:15:16 +0000928 if (tabstops_str) {
929 tabstops = atoi(tabstops_str);
930 }
931 if (terminal_width_str) {
932 terminal_width = atoi(terminal_width_str);
933 }
934#else
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000935 opt = bb_getopt_ulflags(argc, argv, ls_options
936#ifdef CONFIG_FEATURE_LS_COLOR
937 , &color_opt
938#endif
939 );
Manuel Novoa III cad53642003-03-19 09:13:01 +0000940#endif
Eric Andersend07cf592004-02-05 13:52:03 +0000941 for (i = 0; opt_flags[i] != (1U<<31); i++) {
Glenn L McGrath792cae52004-01-18 05:15:16 +0000942 if (opt & (1 << i)) {
943 unsigned int flags = opt_flags[i];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000944
Manuel Novoa III cad53642003-03-19 09:13:01 +0000945 if (flags & LIST_MASK_TRIGGER) {
946 all_fmt &= ~LIST_MASK;
947 }
948 if (flags & STYLE_MASK_TRIGGER) {
949 all_fmt &= ~STYLE_MASK;
950 }
Rob Landleyea224be2006-06-18 20:20:07 +0000951 if (ENABLE_FEATURE_LS_SORTFILES && (flags & SORT_MASK_TRIGGER)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000952 all_fmt &= ~SORT_MASK;
953 }
954 if (flags & DISP_MASK_TRIGGER) {
955 all_fmt &= ~DISP_MASK;
956 }
Eric Andersenb7ebc612003-07-14 19:20:46 +0000957#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Manuel Novoa III cad53642003-03-19 09:13:01 +0000958 if (flags & TIME_MASK_TRIGGER) {
959 all_fmt &= ~TIME_MASK;
960 }
Eric Andersenb7ebc612003-07-14 19:20:46 +0000961#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000962 if (flags & LIST_CONTEXT) {
963 all_fmt |= STYLE_SINGLE;
964 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000965#ifdef CONFIG_FEATURE_HUMAN_READABLE
966 if (opt == 'l') {
967 all_fmt &= ~LS_DISP_HR;
968 }
969#endif
970 all_fmt |= flags;
971 }
Eric Andersen11c65522000-09-07 17:24:47 +0000972 }
973
Paul Fox156dc412005-08-01 19:33:30 +0000974#ifdef CONFIG_FEATURE_LS_COLOR
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000975 {
976 /* find color bit value - last position for short getopt */
Paul Fox156dc412005-08-01 19:33:30 +0000977
Paul Fox156dc412005-08-01 19:33:30 +0000978#if CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
Paul Fox156dc412005-08-01 19:33:30 +0000979 char *p;
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000980
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000981 if ((p = getenv ("LS_COLORS")) != NULL &&
Paul Fox156dc412005-08-01 19:33:30 +0000982 (*p == '\0' || (strcmp(p, "none") == 0))) {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000983 ;
Paul Fox156dc412005-08-01 19:33:30 +0000984 } else if (isatty(STDOUT_FILENO)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000985 show_color = 1;
Paul Fox156dc412005-08-01 19:33:30 +0000986 }
987#endif
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000988
989 if((opt & (1 << i))) { /* next flag after short options */
990 if (color_opt == NULL || strcmp("always", color_opt) == 0)
991 show_color = 1;
992 else if (color_opt != NULL && strcmp("never", color_opt) == 0)
993 show_color = 0;
994 else if (color_opt != NULL && strcmp("auto", color_opt) == 0 && isatty(STDOUT_FILENO))
995 show_color = 1;
996 }
Paul Fox156dc412005-08-01 19:33:30 +0000997 }
998#endif
999
Eric Andersen11c65522000-09-07 17:24:47 +00001000 /* sort out which command line options take precedence */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001001#ifdef CONFIG_FEATURE_LS_RECURSIVE
Manuel Novoa III cad53642003-03-19 09:13:01 +00001002 if (all_fmt & DISP_NOLIST)
1003 all_fmt &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
Eric Andersen11c65522000-09-07 17:24:47 +00001004#endif
Rob Landleyea224be2006-06-18 20:20:07 +00001005 if (ENABLE_FEATURE_LS_TIMESTAMPS && ENABLE_FEATURE_LS_SORTFILES) {
1006 if (all_fmt & TIME_CHANGE)
1007 all_fmt = (all_fmt & ~SORT_MASK) | SORT_CTIME;
1008 if (all_fmt & TIME_ACCESS)
1009 all_fmt = (all_fmt & ~SORT_MASK) | SORT_ATIME;
1010 }
Manuel Novoa III cad53642003-03-19 09:13:01 +00001011 if ((all_fmt & STYLE_MASK) != STYLE_LONG) /* only for long list */
1012 all_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC);
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001013#ifdef CONFIG_FEATURE_LS_USERNAME
Manuel Novoa III cad53642003-03-19 09:13:01 +00001014 if ((all_fmt & STYLE_MASK) == STYLE_LONG && (all_fmt & LIST_ID_NUMERIC))
1015 all_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
Eric Andersen11c65522000-09-07 17:24:47 +00001016#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001017
Eric Andersen11c65522000-09-07 17:24:47 +00001018 /* choose a display format */
Rob Landleyea224be2006-06-18 20:20:07 +00001019 if (!(all_fmt & STYLE_MASK))
Eric Andersen70060d22004-03-27 10:02:48 +00001020 all_fmt |= (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
Eric Andersen11c65522000-09-07 17:24:47 +00001021
1022 /*
1023 * when there are no cmd line args we have to supply a default "." arg.
1024 * we will create a second argv array, "av" that will hold either
1025 * our created "." arg, or the real cmd line args. The av array
1026 * just holds the pointers- we don't move the date the pointers
1027 * point to.
1028 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001029 ac = argc - optind; /* how many cmd line args are left */
Eric Andersen11c65522000-09-07 17:24:47 +00001030 if (ac < 1) {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001031 static const char * const dotdir[] = { "." };
1032
1033 av = (char **) dotdir;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001034 ac = 1;
Eric Andersen11c65522000-09-07 17:24:47 +00001035 } else {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001036 av = argv + optind;
Eric Andersen11c65522000-09-07 17:24:47 +00001037 }
1038
1039 /* now, everything is in the av array */
1040 if (ac > 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001041 all_fmt |= DISP_DIRNAME; /* 2 or more items? label directories */
Eric Andersen11c65522000-09-07 17:24:47 +00001042
1043 /* stuff the command line file names into an dnode array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001044 dn = NULL;
1045 for (oi = 0; oi < ac; oi++) {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001046 cur = my_stat(av[oi], av[oi]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001047 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +00001048 continue;
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001049 cur->allocated = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001050 cur->next = dn;
1051 dn = cur;
Eric Andersen11c65522000-09-07 17:24:47 +00001052 nfiles++;
1053 }
1054
1055 /* now that we know how many files there are
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001056 ** allocate memory for an array to hold dnode pointers
1057 */
1058 dnp = dnalloc(nfiles);
1059 for (i = 0, cur = dn; i < nfiles; i++) {
1060 dnp[i] = cur; /* save pointer to node in array */
1061 cur = cur->next;
Eric Andersen11c65522000-09-07 17:24:47 +00001062 }
1063
Manuel Novoa III cad53642003-03-19 09:13:01 +00001064 if (all_fmt & DISP_NOLIST) {
Rob Landleyea224be2006-06-18 20:20:07 +00001065 if (ENABLE_FEATURE_LS_SORTFILES) dnsort(dnp, nfiles);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001066 if (nfiles > 0)
1067 showfiles(dnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +00001068 } else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001069 dnd = splitdnarray(dnp, nfiles, SPLIT_DIR);
1070 dnf = splitdnarray(dnp, nfiles, SPLIT_FILE);
1071 dndirs = countdirs(dnp, nfiles);
1072 dnfiles = nfiles - dndirs;
Eric Andersen11c65522000-09-07 17:24:47 +00001073 if (dnfiles > 0) {
Rob Landleyea224be2006-06-18 20:20:07 +00001074 if (ENABLE_FEATURE_LS_SORTFILES) dnsort(dnf, dnfiles);
Eric Andersen11c65522000-09-07 17:24:47 +00001075 showfiles(dnf, dnfiles);
Rob Landley26314862006-05-02 19:46:52 +00001076 if (ENABLE_FEATURE_CLEAN_UP)
1077 free(dnf);
Eric Andersen11c65522000-09-07 17:24:47 +00001078 }
1079 if (dndirs > 0) {
Rob Landleyea224be2006-06-18 20:20:07 +00001080 if (ENABLE_FEATURE_LS_SORTFILES) dnsort(dnd, dndirs);
Glenn L McGrathc4db0832004-03-06 09:12:55 +00001081 showdirs(dnd, dndirs, dnfiles == 0);
Rob Landley26314862006-05-02 19:46:52 +00001082 if (ENABLE_FEATURE_CLEAN_UP)
1083 free(dnd);
Eric Andersen11c65522000-09-07 17:24:47 +00001084 }
1085 }
Rob Landley26314862006-05-02 19:46:52 +00001086 if (ENABLE_FEATURE_CLEAN_UP)
1087 dfree(dnp, nfiles);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001088 return (status);
Eric Andersencc8ed391999-10-05 16:24:54 +00001089}