blob: 882eab8e7fa70f419f404b0ab98b9e039538a772 [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
Eric Andersen11c65522000-09-07 17:24:47 +000039#include <sys/types.h>
40#include <sys/stat.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000041#include <stdio.h>
42#include <unistd.h>
43#include <dirent.h>
44#include <errno.h>
45#include <stdio.h>
Eric Andersen11c65522000-09-07 17:24:47 +000046#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000047#include <stdlib.h>
Eric Andersen5307eca2001-01-26 01:52:43 +000048#include <fcntl.h>
49#include <signal.h>
Eric Andersen8d79ce82001-07-22 23:00:15 +000050#include <termios.h>
Rob Landleyb7128c62005-09-11 01:05:30 +000051#include <getopt.h> /* struct option */
Eric Andersen5307eca2001-01-26 01:52:43 +000052#include <sys/ioctl.h>
Eric Andersen4f807a82004-07-26 09:11:12 +000053#include <sys/sysmacros.h> /* major() and minor() */
Eric Andersencbe31da2001-02-20 06:14:08 +000054#include "busybox.h"
Eric Andersen9e480452003-07-03 10:07:04 +000055#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +000056#include <selinux/selinux.h> /* for is_selinux_enabled() */
Eric Andersen9e480452003-07-03 10:07:04 +000057#endif
Eric Andersen5307eca2001-01-26 01:52:43 +000058
Eric Andersenbdfd0d72001-10-24 05:00:29 +000059#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersenf1142c52001-02-20 06:16:29 +000060#include <time.h>
61#endif
62
Eric Andersen11c65522000-09-07 17:24:47 +000063/* what is the overall style of the listing */
Manuel Novoa III cad53642003-03-19 09:13:01 +000064#define STYLE_AUTO (0)
65#define STYLE_COLUMNS (1U<<21) /* fill columns */
66#define STYLE_LONG (2U<<21) /* one record per line, extended info */
67#define STYLE_SINGLE (3U<<21) /* one record per line */
68
69#define STYLE_MASK STYLE_SINGLE
70#define STYLE_ONE_RECORD_FLAG STYLE_LONG
Eric Andersencc8ed391999-10-05 16:24:54 +000071
Eric Andersen11c65522000-09-07 17:24:47 +000072/* 51306 lrwxrwxrwx 1 root root 2 May 11 01:43 /bin/view -> vi* */
73/* what file information will be listed */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000074#define LIST_INO (1U<<0)
75#define LIST_BLOCKS (1U<<1)
Manuel Novoa III cad53642003-03-19 09:13:01 +000076#define LIST_MODEBITS (1U<<2)
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000077#define LIST_NLINKS (1U<<3)
Manuel Novoa III cad53642003-03-19 09:13:01 +000078#define LIST_ID_NAME (1U<<4)
79#define LIST_ID_NUMERIC (1U<<5)
Eric Andersen9e480452003-07-03 10:07:04 +000080#define LIST_CONTEXT (1U<<6)
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000081#define LIST_SIZE (1U<<7)
82#define LIST_DEV (1U<<8)
Eric Andersen9e480452003-07-03 10:07:04 +000083#define LIST_DATE_TIME (1U<<9)
84#define LIST_FULLTIME (1U<<10)
85#define LIST_FILENAME (1U<<11)
86#define LIST_SYMLINK (1U<<12)
87#define LIST_FILETYPE (1U<<13)
88#define LIST_EXEC (1U<<14)
Manuel Novoa III cad53642003-03-19 09:13:01 +000089
90#define LIST_MASK ((LIST_EXEC << 1) - 1)
Eric Andersen11c65522000-09-07 17:24:47 +000091
92/* what files will be displayed */
Manuel Novoa III cad53642003-03-19 09:13:01 +000093/* TODO -- We may be able to make DISP_NORMAL 0 to save a bit slot. */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000094#define DISP_NORMAL (1U<<14) /* show normal filenames */
Manuel Novoa III cad53642003-03-19 09:13:01 +000095#define DISP_DIRNAME (1U<<15) /* 2 or more items? label directories */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +000096#define DISP_HIDDEN (1U<<16) /* show filenames starting with . */
97#define DISP_DOT (1U<<17) /* show . and .. */
98#define DISP_NOLIST (1U<<18) /* show directory as itself, not contents */
Manuel Novoa III cad53642003-03-19 09:13:01 +000099#define DISP_RECURSIVE (1U<<19) /* show directory and everything below it */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000100#define DISP_ROWS (1U<<20) /* print across rows */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000101
102#define DISP_MASK (((DISP_ROWS << 1) - 1) & ~(DISP_NORMAL - 1))
Eric Andersen11c65522000-09-07 17:24:47 +0000103
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000104#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000105/* how will the files be sorted */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000106#define SORT_ORDER_FORWARD 0 /* sort in reverse order */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000107#define SORT_ORDER_REVERSE (1U<<27) /* sort in reverse order */
108
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000109#define SORT_NAME 0 /* sort by file name */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000110#define SORT_SIZE (1U<<28) /* sort by file size */
111#define SORT_ATIME (2U<<28) /* sort by last access time */
112#define SORT_CTIME (3U<<28) /* sort by last change time */
113#define SORT_MTIME (4U<<28) /* sort by last modification time */
114#define SORT_VERSION (5U<<28) /* sort by version */
115#define SORT_EXT (6U<<28) /* sort by file name extension */
116#define SORT_DIR (7U<<28) /* sort by file or directory */
117
118#define SORT_MASK (7U<<28)
Eric Andersencc8ed391999-10-05 16:24:54 +0000119#endif
120
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000121#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000122/* which of the three times will be used */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000123#define TIME_MOD 0
124#define TIME_CHANGE (1U<<23)
125#define TIME_ACCESS (1U<<24)
126
127#define TIME_MASK (3U<<23)
128#endif
129
130#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
131#define FOLLOW_LINKS (1U<<25)
132#endif
133#ifdef CONFIG_FEATURE_HUMAN_READABLE
134#define LS_DISP_HR (1U<<26)
Eric Andersencc8ed391999-10-05 16:24:54 +0000135#endif
136
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000137#define LIST_SHORT (LIST_FILENAME)
138#define LIST_ISHORT (LIST_INO | LIST_FILENAME)
139#define LIST_LONG (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
140 LIST_DATE_TIME | LIST_FILENAME | LIST_SYMLINK)
141#define LIST_ILONG (LIST_INO | LIST_LONG)
Eric Andersencc8ed391999-10-05 16:24:54 +0000142
Manuel Novoa III cad53642003-03-19 09:13:01 +0000143#define SPLIT_DIR 1
144#define SPLIT_FILE 0
145#define SPLIT_SUBDIR 2
Eric Andersencc8ed391999-10-05 16:24:54 +0000146
Eric Andersen11c65522000-09-07 17:24:47 +0000147#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
148#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000149
Eric Andersend598d412002-04-27 09:19:39 +0000150#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000151# define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
Eric Andersen11c65522000-09-07 17:24:47 +0000152#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000153
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000154/* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */
155#ifdef CONFIG_FEATURE_LS_COLOR
Paul Fox156dc412005-08-01 19:33:30 +0000156
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000157static int show_color = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000158
Paul Fox156dc412005-08-01 19:33:30 +0000159/* long option entry used only for --color, which has no short option
160 * equivalent. */
"Vladimir N. Oleynik"1f0262b2005-10-20 11:17:48 +0000161static const struct option ls_color_opt[] =
Paul Fox156dc412005-08-01 19:33:30 +0000162{
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000163 {"color", optional_argument, NULL, 1},
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000164 {NULL, 0, NULL, 0}
Paul Fox156dc412005-08-01 19:33:30 +0000165};
166
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000167#define COLOR(mode) ("\000\043\043\043\042\000\043\043"\
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000168 "\000\000\044\000\043\000\000\040" [TYPEINDEX(mode)])
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000169#define ATTR(mode) ("\00\00\01\00\01\00\01\00"\
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000170 "\00\00\01\00\01\00\00\01" [TYPEINDEX(mode)])
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000171#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172
Eric Andersen11c65522000-09-07 17:24:47 +0000173/*
174 * a directory entry and its stat info are stored here
175 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000176struct dnode { /* the basic node */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000177 char *name; /* the dir entry name */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000178 char *fullname; /* the dir entry name */
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000179 int allocated;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000180 struct stat dstat; /* the file stat info */
Eric Andersen9e480452003-07-03 10:07:04 +0000181#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +0000182 security_context_t sid;
Eric Andersen9e480452003-07-03 10:07:04 +0000183#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000184 struct dnode *next; /* point at the next node */
Eric Andersen11c65522000-09-07 17:24:47 +0000185};
186typedef struct dnode dnode_t;
187
Glenn L McGrath4d001292003-01-06 01:11:50 +0000188static struct dnode **list_dir(const char *);
Eric Andersen3e6ff902001-03-09 21:24:12 +0000189static struct dnode **dnalloc(int);
190static int list_single(struct dnode *);
Eric Andersen11c65522000-09-07 17:24:47 +0000191
Manuel Novoa III cad53642003-03-19 09:13:01 +0000192static unsigned int all_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000193
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000194#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersen8efe9672003-09-15 08:33:45 +0000195static int terminal_width = TERMINAL_WIDTH;
Eric Andersene57d54b2001-01-30 18:03:11 +0000196static unsigned short tabstops = COLUMN_GAP;
Eric Andersenf5d5e772001-01-24 23:34:48 +0000197#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000198#define tabstops COLUMN_GAP
199#define terminal_width TERMINAL_WIDTH
Eric Andersen11c65522000-09-07 17:24:47 +0000200#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000201
Matt Kraai33fdae52000-10-13 17:59:43 +0000202static int status = EXIT_SUCCESS;
203
Glenn L McGrath4d001292003-01-06 01:11:50 +0000204static struct dnode *my_stat(char *fullname, char *name)
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000205{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000206 struct stat dstat;
207 struct dnode *cur;
Eric Andersen9e480452003-07-03 10:07:04 +0000208#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +0000209 security_context_t sid=NULL;
Eric Andersen9e480452003-07-03 10:07:04 +0000210#endif
211 int rc;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000212
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000213#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Manuel Novoa III cad53642003-03-19 09:13:01 +0000214 if (all_fmt & FOLLOW_LINKS) {
Eric Andersen9e480452003-07-03 10:07:04 +0000215#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +0000216 if (is_selinux_enabled()) {
217 rc=0; /* Set the number which means success before hand. */
218 rc = getfilecon(fullname,&sid);
219 }
Eric Andersen9e480452003-07-03 10:07:04 +0000220#endif
Rob Landleyc5b1d4d2006-03-13 15:45:16 +0000221 rc = stat(fullname, &dstat);
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000222 if(rc) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000223 bb_perror_msg("%s", fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000224 status = EXIT_FAILURE;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000225 return 0;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000226 }
227 } else
228#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000229 {
230#ifdef CONFIG_SELINUX
Rob Landley60158cb2005-05-03 06:25:50 +0000231 if (is_selinux_enabled()) {
232 rc=0; /* Set the number which means success before hand. */
233 rc = lgetfilecon(fullname,&sid);
234 }
Eric Andersen9e480452003-07-03 10:07:04 +0000235#endif
Rob Landley60158cb2005-05-03 06:25:50 +0000236 rc = lstat(fullname, &dstat);
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000237 if(rc) {
Eric Andersen9e480452003-07-03 10:07:04 +0000238 bb_perror_msg("%s", fullname);
239 status = EXIT_FAILURE;
240 return 0;
241 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000242 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000243
244 cur = (struct dnode *) xmalloc(sizeof(struct dnode));
245 cur->fullname = fullname;
246 cur->name = name;
247 cur->dstat = dstat;
Eric Andersen9e480452003-07-03 10:07:04 +0000248#ifdef CONFIG_SELINUX
249 cur->sid = sid;
250#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000251 return cur;
Eric Andersen79565b62000-08-11 18:10:21 +0000252}
253
Eric Andersen11c65522000-09-07 17:24:47 +0000254/*----------------------------------------------------------------------*/
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000255#ifdef CONFIG_FEATURE_LS_COLOR
256static char fgcolor(mode_t mode)
257{
258 /* Check wheter the file is existing (if so, color it red!) */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000259 if (errno == ENOENT) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000260 return '\037';
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000261 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000262 if (LIST_EXEC && S_ISREG(mode)
263 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000264 return COLOR(0xF000); /* File is executable ... */
265 return COLOR(mode);
266}
267
268/*----------------------------------------------------------------------*/
269static char bgcolor(mode_t mode)
270{
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000271 if (LIST_EXEC && S_ISREG(mode)
272 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000273 return ATTR(0xF000); /* File is executable ... */
274 return ATTR(mode);
275}
276#endif
277
278/*----------------------------------------------------------------------*/
Eric Andersend598d412002-04-27 09:19:39 +0000279#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000280static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000281{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000282 if (!(all_fmt & LIST_FILETYPE))
Eric Andersen11c65522000-09-07 17:24:47 +0000283 return '\0';
Manuel Novoa III cad53642003-03-19 09:13:01 +0000284 if ((all_fmt & LIST_EXEC) && S_ISREG(mode)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000285 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
286 return '*';
287 return APPCHAR(mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000288}
289#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000290
Eric Andersen11c65522000-09-07 17:24:47 +0000291/*----------------------------------------------------------------------*/
Eric Andersencf1189f2000-11-29 21:52:06 +0000292
Manuel Novoa III cad53642003-03-19 09:13:01 +0000293#define countdirs(A,B) count_dirs((A), (B), 1)
294#define countsubdirs(A,B) count_dirs((A), (B), 0)
295
296static int count_dirs(struct dnode **dn, int nfiles, int notsubdirs)
Eric Andersen11c65522000-09-07 17:24:47 +0000297{
298 int i, dirs;
299
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000300 if (dn == NULL || nfiles < 1)
301 return (0);
302 dirs = 0;
303 for (i = 0; i < nfiles; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000304 if (S_ISDIR(dn[i]->dstat.st_mode)
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000305 && (notsubdirs ||
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000306 ((dn[i]->name[0] != '.') || (dn[i]->name[1]
Manuel Novoa III cad53642003-03-19 09:13:01 +0000307 && ((dn[i]->name[1] != '.')
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000308 || dn[i]->name[2])))))
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000309 dirs++;
Eric Andersen11c65522000-09-07 17:24:47 +0000310 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000311 return (dirs);
Eric Andersen11c65522000-09-07 17:24:47 +0000312}
313
Eric Andersen3e6ff902001-03-09 21:24:12 +0000314static int countfiles(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000315{
316 int nfiles;
317 struct dnode *cur;
318
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000319 if (dnp == NULL)
320 return (0);
321 nfiles = 0;
322 for (cur = dnp[0]; cur->next != NULL; cur = cur->next)
323 nfiles++;
Eric Andersen11c65522000-09-07 17:24:47 +0000324 nfiles++;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000325 return (nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000326}
327
328/* get memory to hold an array of pointers */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000329static struct dnode **dnalloc(int num)
Eric Andersen11c65522000-09-07 17:24:47 +0000330{
331 struct dnode **p;
332
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000333 if (num < 1)
334 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000335
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000336 p = (struct dnode **) xcalloc((size_t) num, (size_t) (sizeof(struct dnode *)));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000337 return (p);
Eric Andersen11c65522000-09-07 17:24:47 +0000338}
339
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000340#ifdef CONFIG_FEATURE_LS_RECURSIVE
Rob Landley26314862006-05-02 19:46:52 +0000341static void dfree(struct dnode **dnp, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000342{
Rob Landley26314862006-05-02 19:46:52 +0000343 int i;
Eric Andersen11c65522000-09-07 17:24:47 +0000344
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000345 if (dnp == NULL)
346 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000347
Rob Landley26314862006-05-02 19:46:52 +0000348 for (i = 0; i < nfiles; i++) {
349 struct dnode *cur = dnp[i];
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000350 if(cur->allocated)
351 free(cur->fullname); /* free the filename */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000352 free(cur); /* free the dnode */
Eric Andersen11c65522000-09-07 17:24:47 +0000353 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000354 free(dnp); /* free the array holding the dnode pointers */
Eric Andersen11c65522000-09-07 17:24:47 +0000355}
Eric Andersen20aab262001-07-19 22:28:02 +0000356#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000357
Eric Andersen3e6ff902001-03-09 21:24:12 +0000358static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
Eric Andersen11c65522000-09-07 17:24:47 +0000359{
360 int dncnt, i, d;
361 struct dnode **dnp;
362
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000363 if (dn == NULL || nfiles < 1)
364 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000365
366 /* count how many dirs and regular files there are */
Eric Andersencf1189f2000-11-29 21:52:06 +0000367 if (which == SPLIT_SUBDIR)
368 dncnt = countsubdirs(dn, nfiles);
369 else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000370 dncnt = countdirs(dn, nfiles); /* assume we are looking for dirs */
Eric Andersencf1189f2000-11-29 21:52:06 +0000371 if (which == SPLIT_FILE)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000372 dncnt = nfiles - dncnt; /* looking for files */
Eric Andersencf1189f2000-11-29 21:52:06 +0000373 }
Eric Andersen11c65522000-09-07 17:24:47 +0000374
375 /* allocate a file array and a dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000376 dnp = dnalloc(dncnt);
Eric Andersen11c65522000-09-07 17:24:47 +0000377
378 /* copy the entrys into the file or dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000379 for (d = i = 0; i < nfiles; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000380 if (S_ISDIR(dn[i]->dstat.st_mode)) {
381 if (which & (SPLIT_DIR|SPLIT_SUBDIR)) {
382 if ((which & SPLIT_DIR)
383 || ((dn[i]->name[0] != '.')
384 || (dn[i]->name[1]
385 && ((dn[i]->name[1] != '.')
386 || dn[i]->name[2])))) {
387 dnp[d++] = dn[i];
388 }
389 }
390 } else if (!(which & (SPLIT_DIR|SPLIT_SUBDIR))) {
391 dnp[d++] = dn[i];
Eric Andersen11c65522000-09-07 17:24:47 +0000392 }
393 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000394 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000395}
396
397/*----------------------------------------------------------------------*/
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000398#ifdef CONFIG_FEATURE_LS_SORTFILES
Rob Landley425e7582006-05-03 20:22:03 +0000399static int sortcmp(const void *a, const void *b)
Eric Andersen11c65522000-09-07 17:24:47 +0000400{
Rob Landley425e7582006-05-03 20:22:03 +0000401 struct dnode *d1 = *(struct dnode **)a;
402 struct dnode *d2 = *(struct dnode **)b;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000403 unsigned int sort_opts = all_fmt & SORT_MASK;
404 int dif;
Eric Andersen11c65522000-09-07 17:24:47 +0000405
Manuel Novoa III cad53642003-03-19 09:13:01 +0000406 dif = 0; /* assume SORT_NAME */
Eric Andersen11c65522000-09-07 17:24:47 +0000407 if (sort_opts == SORT_SIZE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000408 dif = (int) (d2->dstat.st_size - d1->dstat.st_size);
Eric Andersen11c65522000-09-07 17:24:47 +0000409 } else if (sort_opts == SORT_ATIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000410 dif = (int) (d2->dstat.st_atime - d1->dstat.st_atime);
Eric Andersen11c65522000-09-07 17:24:47 +0000411 } else if (sort_opts == SORT_CTIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000412 dif = (int) (d2->dstat.st_ctime - d1->dstat.st_ctime);
Eric Andersen11c65522000-09-07 17:24:47 +0000413 } else if (sort_opts == SORT_MTIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000414 dif = (int) (d2->dstat.st_mtime - d1->dstat.st_mtime);
Eric Andersen11c65522000-09-07 17:24:47 +0000415 } else if (sort_opts == SORT_DIR) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000416 dif = S_ISDIR(d2->dstat.st_mode) - S_ISDIR(d1->dstat.st_mode);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000417 /* } else if (sort_opts == SORT_VERSION) { */
418 /* } else if (sort_opts == SORT_EXT) { */
Eric Andersen11c65522000-09-07 17:24:47 +0000419 }
420
Eric Andersen11c65522000-09-07 17:24:47 +0000421 if (dif == 0) {
422 /* sort by name- may be a tie_breaker for time or size cmp */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000423#ifdef CONFIG_LOCALE_SUPPORT
424 dif = strcoll(d1->name, d2->name);
425#else
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000426 dif = strcmp(d1->name, d2->name);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000427#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000428 }
429
Manuel Novoa III cad53642003-03-19 09:13:01 +0000430 if (all_fmt & SORT_ORDER_REVERSE) {
431 dif = -dif;
Eric Andersen11c65522000-09-07 17:24:47 +0000432 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000433 return (dif);
Eric Andersen11c65522000-09-07 17:24:47 +0000434}
435
436/*----------------------------------------------------------------------*/
Rob Landley425e7582006-05-03 20:22:03 +0000437static void dnsort(struct dnode **dn, int size)
Eric Andersen11c65522000-09-07 17:24:47 +0000438{
Rob Landley425e7582006-05-03 20:22:03 +0000439 qsort(dn, size, sizeof *dn, sortcmp);
Eric Andersen11c65522000-09-07 17:24:47 +0000440}
441#endif
442
443/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000444static void showfiles(struct dnode **dn, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000445{
446 int i, ncols, nrows, row, nc;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000447 int column = 0;
448 int nexttab = 0;
449 int column_width = 0; /* for STYLE_LONG and STYLE_SINGLE not used */
Eric Andersen11c65522000-09-07 17:24:47 +0000450
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000451 if (dn == NULL || nfiles < 1)
452 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000453
Manuel Novoa III cad53642003-03-19 09:13:01 +0000454 if (all_fmt & STYLE_ONE_RECORD_FLAG) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000455 ncols = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000456 } else {
457 /* find the longest file name- use that as the column width */
458 for (i = 0; i < nfiles; i++) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000459 int len = strlen(dn[i]->name) +
Eric Andersen9e480452003-07-03 10:07:04 +0000460#ifdef CONFIG_SELINUX
461 ((all_fmt & LIST_CONTEXT) ? 33 : 0) +
462#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000463 ((all_fmt & LIST_INO) ? 8 : 0) +
464 ((all_fmt & LIST_BLOCKS) ? 5 : 0);
465 if (column_width < len)
466 column_width = len;
467 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000468 column_width += tabstops;
469 ncols = (int) (terminal_width / column_width);
Eric Andersen11c65522000-09-07 17:24:47 +0000470 }
471
Eric Andersene57d54b2001-01-30 18:03:11 +0000472 if (ncols > 1) {
473 nrows = nfiles / ncols;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000474 if ((nrows * ncols) < nfiles)
475 nrows++; /* round up fractionals */
Eric Andersene57d54b2001-01-30 18:03:11 +0000476 } else {
477 nrows = nfiles;
478 ncols = 1;
479 }
Eric Andersen11c65522000-09-07 17:24:47 +0000480
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000481 for (row = 0; row < nrows; row++) {
482 for (nc = 0; nc < ncols; nc++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000483 /* reach into the array based on the column and row */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000484 i = (nc * nrows) + row; /* assume display by column */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000485 if (all_fmt & DISP_ROWS)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000486 i = (row * ncols) + nc; /* display across row */
Eric Andersen11c65522000-09-07 17:24:47 +0000487 if (i < nfiles) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000488 if (column > 0) {
489 nexttab -= column;
490 while (nexttab--) {
491 putchar(' ');
492 column++;
493 }
Eric Andersen79565b62000-08-11 18:10:21 +0000494 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000495 nexttab = column + column_width;
496 column += list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000497 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000498 }
499 putchar('\n');
500 column = 0;
Eric Andersena42982e2000-06-07 17:28:53 +0000501 }
Eric Andersen11c65522000-09-07 17:24:47 +0000502}
503
504/*----------------------------------------------------------------------*/
Glenn L McGrathc4db0832004-03-06 09:12:55 +0000505static void showdirs(struct dnode **dn, int ndirs, int first)
Eric Andersen11c65522000-09-07 17:24:47 +0000506{
507 int i, nfiles;
508 struct dnode **subdnp;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000509
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000510#ifdef CONFIG_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000511 int dndirs;
512 struct dnode **dnd;
513#endif
514
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000515 if (dn == NULL || ndirs < 1)
516 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000517
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000518 for (i = 0; i < ndirs; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000519 if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) {
Glenn L McGrathc4db0832004-03-06 09:12:55 +0000520 if (!first)
521 printf("\n");
522 first = 0;
523 printf("%s:\n", dn[i]->fullname);
Eric Andersen11c65522000-09-07 17:24:47 +0000524 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000525 subdnp = list_dir(dn[i]->fullname);
526 nfiles = countfiles(subdnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000527 if (nfiles > 0) {
528 /* list all files at this level */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000529#ifdef CONFIG_FEATURE_LS_SORTFILES
Rob Landley425e7582006-05-03 20:22:03 +0000530 dnsort(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000531#endif
532 showfiles(subdnp, nfiles);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000533#ifdef CONFIG_FEATURE_LS_RECURSIVE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000534 if (all_fmt & DISP_RECURSIVE) {
Eric Andersen11c65522000-09-07 17:24:47 +0000535 /* recursive- list the sub-dirs */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000536 dnd = splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
537 dndirs = countsubdirs(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000538 if (dndirs > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000539#ifdef CONFIG_FEATURE_LS_SORTFILES
Rob Landley425e7582006-05-03 20:22:03 +0000540 dnsort(dnd, dndirs);
Matt Kraaia5bd2682000-10-28 06:40:09 +0000541#endif
Glenn L McGrathc4db0832004-03-06 09:12:55 +0000542 showdirs(dnd, dndirs, 0);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000543 free(dnd); /* free the array of dnode pointers to the dirs */
Eric Andersen11c65522000-09-07 17:24:47 +0000544 }
545 }
Rob Landley26314862006-05-02 19:46:52 +0000546 dfree(subdnp, nfiles); /* free the dnodes and the fullname mem */
Eric Andersen11c65522000-09-07 17:24:47 +0000547#endif
548 }
549 }
550}
551
552/*----------------------------------------------------------------------*/
Glenn L McGrath4d001292003-01-06 01:11:50 +0000553static struct dnode **list_dir(const char *path)
Eric Andersen11c65522000-09-07 17:24:47 +0000554{
555 struct dnode *dn, *cur, **dnp;
556 struct dirent *entry;
557 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000558 int i, nfiles;
559
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000560 if (path == NULL)
561 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000562
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000563 dn = NULL;
564 nfiles = 0;
Bernhard Reutner-Fischercb448162006-04-12 07:35:12 +0000565 dir = bb_opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000566 if (dir == NULL) {
Matt Kraai33fdae52000-10-13 17:59:43 +0000567 status = EXIT_FAILURE;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000568 return (NULL); /* could not open the dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000569 }
570 while ((entry = readdir(dir)) != NULL) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000571 char *fullname;
572
Eric Andersen11c65522000-09-07 17:24:47 +0000573 /* are we going to list the file- it may be . or .. or a hidden file */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000574 if (entry->d_name[0] == '.') {
575 if ((entry->d_name[1] == 0 || (
576 entry->d_name[1] == '.'
577 && entry->d_name[2] == 0))
Manuel Novoa III cad53642003-03-19 09:13:01 +0000578 && !(all_fmt & DISP_DOT))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000579 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000580 if (!(all_fmt & DISP_HIDDEN))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000581 continue;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000582 }
583 fullname = concat_path_file(path, entry->d_name);
584 cur = my_stat(fullname, strrchr(fullname, '/') + 1);
585 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +0000586 continue;
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000587 cur->allocated = 1;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000588 cur->next = dn;
589 dn = cur;
Eric Andersen11c65522000-09-07 17:24:47 +0000590 nfiles++;
591 }
592 closedir(dir);
593
594 /* now that we know how many files there are
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000595 ** allocate memory for an array to hold dnode pointers
596 */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000597 if (dn == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000598 return (NULL);
599 dnp = dnalloc(nfiles);
600 for (i = 0, cur = dn; i < nfiles; i++) {
601 dnp[i] = cur; /* save pointer to node in array */
602 cur = cur->next;
Eric Andersen11c65522000-09-07 17:24:47 +0000603 }
604
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000605 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000606}
607
608/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000609static int list_single(struct dnode *dn)
Eric Andersen11c65522000-09-07 17:24:47 +0000610{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000611 int i, column = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000612
Matt Kraaia1bbde72002-03-08 16:25:33 +0000613#ifdef CONFIG_FEATURE_LS_USERNAME
Glenn L McGrath4d001292003-01-06 01:11:50 +0000614 char scratch[16];
Matt Kraaia1bbde72002-03-08 16:25:33 +0000615#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000616#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000617 char *filetime;
618 time_t ttime, age;
619#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000620#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000621 struct stat info;
622 char append;
623#endif
624
Glenn L McGrath4d001292003-01-06 01:11:50 +0000625 if (dn->fullname == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000626 return (0);
Eric Andersen11c65522000-09-07 17:24:47 +0000627
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000628#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000629 ttime = dn->dstat.st_mtime; /* the default time */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000630 if (all_fmt & TIME_ACCESS)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000631 ttime = dn->dstat.st_atime;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000632 if (all_fmt & TIME_CHANGE)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000633 ttime = dn->dstat.st_ctime;
634 filetime = ctime(&ttime);
Eric Andersen11c65522000-09-07 17:24:47 +0000635#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000636#ifdef CONFIG_FEATURE_LS_FILETYPES
Eric Andersen11c65522000-09-07 17:24:47 +0000637 append = append_char(dn->dstat.st_mode);
638#endif
639
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000640 for (i = 0; i <= 31; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000641 switch (all_fmt & (1 << i)) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000642 case LIST_INO:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000643 column += printf("%7ld ", (long int) dn->dstat.st_ino);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000644 break;
645 case LIST_BLOCKS:
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000646#if _FILE_OFFSET_BITS == 64
Eric Andersen5e678872006-01-30 19:48:23 +0000647 column += printf("%4lld ", (long long)dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000648#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000649 column += printf("%4ld ", dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000650#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000651 break;
652 case LIST_MODEBITS:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000653 column += printf("%-10s ", (char *) bb_mode_string(dn->dstat.st_mode));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000654 break;
655 case LIST_NLINKS:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000656 column += printf("%4ld ", (long) dn->dstat.st_nlink);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000657 break;
658 case LIST_ID_NAME:
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000659#ifdef CONFIG_FEATURE_LS_USERNAME
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +0000660 bb_getpwuid(scratch, dn->dstat.st_uid, sizeof(scratch));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000661 printf("%-8.8s ", scratch);
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +0000662 bb_getgrgid(scratch, dn->dstat.st_gid, sizeof(scratch));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000663 printf("%-8.8s", scratch);
664 column += 17;
665 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000666#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000667 case LIST_ID_NUMERIC:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000668 column += printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000669 break;
670 case LIST_SIZE:
671 case LIST_DEV:
672 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
Eric Andersen4f807a82004-07-26 09:11:12 +0000673 column += printf("%4d, %3d ", (int) major(dn->dstat.st_rdev),
674 (int) minor(dn->dstat.st_rdev));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000675 } else {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000676#ifdef CONFIG_FEATURE_HUMAN_READABLE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000677 if (all_fmt & LS_DISP_HR) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000678 column += printf("%9s ",
679 make_human_readable_str(dn->dstat.st_size, 1, 0));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000680 } else
681#endif
682 {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000683#if _FILE_OFFSET_BITS == 64
Glenn L McGrath4d001292003-01-06 01:11:50 +0000684 column += printf("%9lld ", (long long) dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000685#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000686 column += printf("%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000687#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000688 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000689 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000690 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000691#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000692 case LIST_FULLTIME:
Glenn L McGrath65b6d8b2004-01-18 05:41:30 +0000693 printf("%24.24s ", filetime);
694 column += 25;
695 break;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000696 case LIST_DATE_TIME:
Glenn L McGrath65b6d8b2004-01-18 05:41:30 +0000697 if ((all_fmt & LIST_FULLTIME) == 0) {
698 age = time(NULL) - ttime;
699 printf("%6.6s ", filetime + 4);
700 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
701 /* hh:mm if less than 6 months old */
702 printf("%5.5s ", filetime + 11);
703 } else {
704 printf(" %4.4s ", filetime + 20);
705 }
706 column += 13;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000707 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000708 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000709#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000710#ifdef CONFIG_SELINUX
711 case LIST_CONTEXT:
712 {
Rob Landley60158cb2005-05-03 06:25:50 +0000713 char context[80];
Rob Landley08abe642006-03-01 20:48:44 +0000714 int len = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000715
Rob Landley60158cb2005-05-03 06:25:50 +0000716 if (dn->sid) {
717 /* I assume sid initilized with NULL */
718 len = strlen(dn->sid)+1;
719 safe_strncpy(context, dn->sid, len);
720 freecon(dn->sid);
721 }else {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000722 safe_strncpy(context, "unknown", 8);
Eric Andersen9e480452003-07-03 10:07:04 +0000723 }
724 printf("%-32s ", context);
725 column += MAX(33, len);
726 }
727 break;
728#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000729 case LIST_FILENAME:
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000730#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000731 errno = 0;
732 if (show_color && !lstat(dn->fullname, &info)) {
733 printf("\033[%d;%dm", bgcolor(info.st_mode),
734 fgcolor(info.st_mode));
735 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000736#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000737 column += printf("%s", dn->name);
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000738#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000739 if (show_color) {
740 printf("\033[0m");
741 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000742#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000743 break;
744 case LIST_SYMLINK:
745 if (S_ISLNK(dn->dstat.st_mode)) {
746 char *lpath = xreadlink(dn->fullname);
747
748 if (lpath) {
749 printf(" -> ");
750#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
751 if (!stat(dn->fullname, &info)) {
752 append = append_char(info.st_mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000753 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000754#endif
755#ifdef CONFIG_FEATURE_LS_COLOR
756 if (show_color) {
757 errno = 0;
758 printf("\033[%d;%dm", bgcolor(info.st_mode),
759 fgcolor(info.st_mode));
760 }
761#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000762 column += printf("%s", lpath) + 4;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000763#ifdef CONFIG_FEATURE_LS_COLOR
764 if (show_color) {
765 printf("\033[0m");
766 }
767#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000768 free(lpath);
Eric Andersen11c65522000-09-07 17:24:47 +0000769 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000770 }
771 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000772#ifdef CONFIG_FEATURE_LS_FILETYPES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000773 case LIST_FILETYPE:
774 if (append != '\0') {
775 printf("%1c", append);
776 column++;
777 }
778 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000779#endif
780 }
781 }
782
Glenn L McGrath4d001292003-01-06 01:11:50 +0000783 return column;
Eric Andersen11c65522000-09-07 17:24:47 +0000784}
785
786/*----------------------------------------------------------------------*/
Manuel Novoa III cad53642003-03-19 09:13:01 +0000787
Glenn L McGrath792cae52004-01-18 05:15:16 +0000788/* "[-]Cadil1", POSIX mandated options, busybox always supports */
789/* "[-]gnsx", POSIX non-mandated options, busybox always supports */
790/* "[-]Ak" GNU options, busybox always supports */
791/* "[-]FLRctur", POSIX mandated options, busybox optionally supports */
792/* "[-]p", POSIX non-mandated options, busybox optionally supports */
793/* "[-]SXvThw", GNU options, busybox optionally supports */
794/* "[-]K", SELinux mandated options, busybox optionally supports */
795/* "[-]e", I think we made this one up */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000796
Glenn L McGrath792cae52004-01-18 05:15:16 +0000797#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
798# define LS_STR_TIMESTAMPS "cetu"
799#else
800# define LS_STR_TIMESTAMPS ""
801#endif
802
803#ifdef CONFIG_FEATURE_LS_SORTFILES
804# define LS_STR_SORTFILES "SXrv"
805#else
806# define LS_STR_SORTFILES ""
807#endif
808
809#ifdef CONFIG_FEATURE_LS_FILETYPES
810# define LS_STR_FILETYPES "Fp"
811#else
812# define LS_STR_FILETYPES ""
813#endif
814
815#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
816# define LS_STR_FOLLOW_LINKS "L"
817#else
818# define LS_STR_FOLLOW_LINKS ""
819#endif
820
821#ifdef CONFIG_FEATURE_LS_RECURSIVE
822# define LS_STR_RECURSIVE "R"
823#else
824# define LS_STR_RECURSIVE ""
825#endif
826
827#ifdef CONFIG_FEATURE_HUMAN_READABLE
828# define LS_STR_HUMAN_READABLE "h"
829#else
830# define LS_STR_HUMAN_READABLE ""
831#endif
832
833#ifdef CONFIG_SELINUX
834# define LS_STR_SELINUX "K"
835#else
836# define LS_STR_SELINUX ""
837#endif
838
839#ifdef CONFIG_FEATURE_AUTOWIDTH
840# define LS_STR_AUTOWIDTH "T:w:"
841#else
842# define LS_STR_AUTOWIDTH ""
843#endif
844
845static const char ls_options[]="Cadil1gnsxAk" \
846 LS_STR_TIMESTAMPS \
847 LS_STR_SORTFILES \
848 LS_STR_FILETYPES \
849 LS_STR_FOLLOW_LINKS \
850 LS_STR_RECURSIVE \
851 LS_STR_HUMAN_READABLE \
852 LS_STR_SELINUX \
853 LS_STR_AUTOWIDTH;
854
Glenn L McGrathafc9ab82004-09-24 02:04:13 +0000855#define LIST_MASK_TRIGGER 0
Glenn L McGrath792cae52004-01-18 05:15:16 +0000856#define STYLE_MASK_TRIGGER STYLE_MASK
857#define SORT_MASK_TRIGGER SORT_MASK
858#define DISP_MASK_TRIGGER DISP_ROWS
859#define TIME_MASK_TRIGGER TIME_MASK
Manuel Novoa III cad53642003-03-19 09:13:01 +0000860
861static const unsigned opt_flags[] = {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000862 LIST_SHORT | STYLE_COLUMNS, /* C */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000863 DISP_HIDDEN | DISP_DOT, /* a */
864 DISP_NOLIST, /* d */
865 LIST_INO, /* i */
866 LIST_LONG | STYLE_LONG, /* l - remember LS_DISP_HR in mask! */
867 LIST_SHORT | STYLE_SINGLE, /* 1 */
868 0, /* g - ingored */
869 LIST_ID_NUMERIC, /* n */
870 LIST_BLOCKS, /* s */
871 DISP_ROWS, /* x */
872 DISP_HIDDEN, /* A */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000873#ifdef CONFIG_SELINUX
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000874 LIST_CONTEXT, /* k */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000875#else
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000876 0, /* k - ingored */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000877#endif
878#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrath792cae52004-01-18 05:15:16 +0000879# ifdef CONFIG_FEATURE_LS_SORTFILES
Manuel Novoa III cad53642003-03-19 09:13:01 +0000880 TIME_CHANGE | SORT_CTIME, /* c */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000881# else
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000882 TIME_CHANGE, /* c */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000883# endif
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000884 LIST_FULLTIME, /* e */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000885# ifdef CONFIG_FEATURE_LS_SORTFILES
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000886 SORT_MTIME, /* t */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000887# else
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000888 0, /* t - ignored -- is this correct? */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000889# endif
890# ifdef CONFIG_FEATURE_LS_SORTFILES
Manuel Novoa III cad53642003-03-19 09:13:01 +0000891 TIME_ACCESS | SORT_ATIME, /* u */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000892# else
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000893 TIME_ACCESS, /* u */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000894# endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000895#endif
896#ifdef CONFIG_FEATURE_LS_SORTFILES
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000897 SORT_SIZE, /* S */
898 SORT_EXT, /* X */
899 SORT_ORDER_REVERSE, /* r */
900 SORT_VERSION, /* v */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000901#endif
Glenn L McGrath792cae52004-01-18 05:15:16 +0000902#ifdef CONFIG_FEATURE_LS_FILETYPES
903 LIST_FILETYPE | LIST_EXEC, /* F */
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000904 LIST_FILETYPE, /* p */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000905#endif
906#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000907 FOLLOW_LINKS, /* L */
Glenn L McGrath792cae52004-01-18 05:15:16 +0000908#endif
909#ifdef CONFIG_FEATURE_LS_RECURSIVE
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000910 DISP_RECURSIVE, /* R */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000911#endif
912#ifdef CONFIG_FEATURE_HUMAN_READABLE
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000913 LS_DISP_HR, /* h */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000914#endif
Glenn L McGrath792cae52004-01-18 05:15:16 +0000915#ifdef CONFIG_SELINUX
Eric Andersen9e480452003-07-03 10:07:04 +0000916 LIST_MODEBITS|LIST_NLINKS|LIST_CONTEXT|LIST_SIZE|LIST_DATE_TIME, /* K */
917#endif
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000918#ifdef CONFIG_FEATURE_AUTOWIDTH
919 0, 0, /* T, w - ignored */
920#endif
Eric Andersend07cf592004-02-05 13:52:03 +0000921 (1U<<31)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000922};
923
924
925/*----------------------------------------------------------------------*/
926
Rob Landleydfba7412006-03-06 20:47:33 +0000927int ls_main(int argc, char **argv)
Eric Andersen11c65522000-09-07 17:24:47 +0000928{
Glenn L McGrath792cae52004-01-18 05:15:16 +0000929 struct dnode **dnd;
930 struct dnode **dnf;
931 struct dnode **dnp;
932 struct dnode *dn;
933 struct dnode *cur;
934 long opt;
935 int nfiles = 0;
936 int dnfiles;
937 int dndirs;
938 int oi;
939 int ac;
940 int i;
Eric Andersen11c65522000-09-07 17:24:47 +0000941 char **av;
Glenn L McGrath792cae52004-01-18 05:15:16 +0000942#ifdef CONFIG_FEATURE_AUTOWIDTH
943 char *tabstops_str = NULL;
944 char *terminal_width_str = NULL;
945#endif
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000946#ifdef CONFIG_FEATURE_LS_COLOR
947 char *color_opt;
948#endif
Glenn L McGrath792cae52004-01-18 05:15:16 +0000949
Manuel Novoa III cad53642003-03-19 09:13:01 +0000950 all_fmt = LIST_SHORT | DISP_NORMAL | STYLE_AUTO
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000951#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Manuel Novoa III cad53642003-03-19 09:13:01 +0000952 | TIME_MOD
Eric Andersen11c65522000-09-07 17:24:47 +0000953#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000954#ifdef CONFIG_FEATURE_LS_SORTFILES
955 | SORT_NAME | SORT_ORDER_FORWARD
956#endif
957 ;
Glenn L McGrath792cae52004-01-18 05:15:16 +0000958
Eric Andersen6d687812003-11-04 23:16:48 +0000959#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersen8efe9672003-09-15 08:33:45 +0000960 /* Obtain the terminal width. */
Eric Andersen70060d22004-03-27 10:02:48 +0000961 get_terminal_width_height(STDOUT_FILENO, &terminal_width, NULL);
Eric Andersen8efe9672003-09-15 08:33:45 +0000962 /* Go one less... */
963 terminal_width--;
Eric Andersen6d687812003-11-04 23:16:48 +0000964#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000965
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000966#ifdef CONFIG_FEATURE_LS_COLOR
Paul Fox156dc412005-08-01 19:33:30 +0000967 bb_applet_long_options = ls_color_opt;
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000968#endif
969
Eric Andersen11c65522000-09-07 17:24:47 +0000970 /* process options */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000971#ifdef CONFIG_FEATURE_AUTOWIDTH
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000972 opt = bb_getopt_ulflags(argc, argv, ls_options, &tabstops_str, &terminal_width_str
973#ifdef CONFIG_FEATURE_LS_COLOR
974 , &color_opt
975#endif
976 );
Glenn L McGrath792cae52004-01-18 05:15:16 +0000977 if (tabstops_str) {
978 tabstops = atoi(tabstops_str);
979 }
980 if (terminal_width_str) {
981 terminal_width = atoi(terminal_width_str);
982 }
983#else
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +0000984 opt = bb_getopt_ulflags(argc, argv, ls_options
985#ifdef CONFIG_FEATURE_LS_COLOR
986 , &color_opt
987#endif
988 );
Manuel Novoa III cad53642003-03-19 09:13:01 +0000989#endif
Eric Andersend07cf592004-02-05 13:52:03 +0000990 for (i = 0; opt_flags[i] != (1U<<31); i++) {
Glenn L McGrath792cae52004-01-18 05:15:16 +0000991 if (opt & (1 << i)) {
992 unsigned int flags = opt_flags[i];
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000993
Manuel Novoa III cad53642003-03-19 09:13:01 +0000994 if (flags & LIST_MASK_TRIGGER) {
995 all_fmt &= ~LIST_MASK;
996 }
997 if (flags & STYLE_MASK_TRIGGER) {
998 all_fmt &= ~STYLE_MASK;
999 }
Eric Andersenb7ebc612003-07-14 19:20:46 +00001000#ifdef CONFIG_FEATURE_LS_SORTFILES
Manuel Novoa III cad53642003-03-19 09:13:01 +00001001 if (flags & SORT_MASK_TRIGGER) {
1002 all_fmt &= ~SORT_MASK;
1003 }
Eric Andersenb7ebc612003-07-14 19:20:46 +00001004#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +00001005 if (flags & DISP_MASK_TRIGGER) {
1006 all_fmt &= ~DISP_MASK;
1007 }
Eric Andersenb7ebc612003-07-14 19:20:46 +00001008#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Manuel Novoa III cad53642003-03-19 09:13:01 +00001009 if (flags & TIME_MASK_TRIGGER) {
1010 all_fmt &= ~TIME_MASK;
1011 }
Eric Andersenb7ebc612003-07-14 19:20:46 +00001012#endif
Eric Andersen9e480452003-07-03 10:07:04 +00001013 if (flags & LIST_CONTEXT) {
1014 all_fmt |= STYLE_SINGLE;
1015 }
Manuel Novoa III cad53642003-03-19 09:13:01 +00001016#ifdef CONFIG_FEATURE_HUMAN_READABLE
1017 if (opt == 'l') {
1018 all_fmt &= ~LS_DISP_HR;
1019 }
1020#endif
1021 all_fmt |= flags;
1022 }
Eric Andersen11c65522000-09-07 17:24:47 +00001023 }
1024
Paul Fox156dc412005-08-01 19:33:30 +00001025#ifdef CONFIG_FEATURE_LS_COLOR
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001026 {
1027 /* find color bit value - last position for short getopt */
Paul Fox156dc412005-08-01 19:33:30 +00001028
Paul Fox156dc412005-08-01 19:33:30 +00001029#if CONFIG_FEATURE_LS_COLOR_IS_DEFAULT
Paul Fox156dc412005-08-01 19:33:30 +00001030 char *p;
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001031
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001032 if ((p = getenv ("LS_COLORS")) != NULL &&
Paul Fox156dc412005-08-01 19:33:30 +00001033 (*p == '\0' || (strcmp(p, "none") == 0))) {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001034 ;
Paul Fox156dc412005-08-01 19:33:30 +00001035 } else if (isatty(STDOUT_FILENO)) {
Tim Rikerc1ef7bd2006-01-25 00:08:53 +00001036 show_color = 1;
Paul Fox156dc412005-08-01 19:33:30 +00001037 }
1038#endif
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001039
1040 if((opt & (1 << i))) { /* next flag after short options */
1041 if (color_opt == NULL || strcmp("always", color_opt) == 0)
1042 show_color = 1;
1043 else if (color_opt != NULL && strcmp("never", color_opt) == 0)
1044 show_color = 0;
1045 else if (color_opt != NULL && strcmp("auto", color_opt) == 0 && isatty(STDOUT_FILENO))
1046 show_color = 1;
1047 }
Paul Fox156dc412005-08-01 19:33:30 +00001048 }
1049#endif
1050
Eric Andersen11c65522000-09-07 17:24:47 +00001051 /* sort out which command line options take precedence */
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001052#ifdef CONFIG_FEATURE_LS_RECURSIVE
Manuel Novoa III cad53642003-03-19 09:13:01 +00001053 if (all_fmt & DISP_NOLIST)
1054 all_fmt &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
Eric Andersen11c65522000-09-07 17:24:47 +00001055#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001056#if defined (CONFIG_FEATURE_LS_TIMESTAMPS) && defined (CONFIG_FEATURE_LS_SORTFILES)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001057 if (all_fmt & TIME_CHANGE)
1058 all_fmt = (all_fmt & ~SORT_MASK) | SORT_CTIME;
1059 if (all_fmt & TIME_ACCESS)
1060 all_fmt = (all_fmt & ~SORT_MASK) | SORT_ATIME;
Eric Andersen11c65522000-09-07 17:24:47 +00001061#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +00001062 if ((all_fmt & STYLE_MASK) != STYLE_LONG) /* only for long list */
1063 all_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC);
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001064#ifdef CONFIG_FEATURE_LS_USERNAME
Manuel Novoa III cad53642003-03-19 09:13:01 +00001065 if ((all_fmt & STYLE_MASK) == STYLE_LONG && (all_fmt & LIST_ID_NUMERIC))
1066 all_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
Eric Andersen11c65522000-09-07 17:24:47 +00001067#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +00001068
Eric Andersen11c65522000-09-07 17:24:47 +00001069 /* choose a display format */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001070 if ((all_fmt & STYLE_MASK) == STYLE_AUTO)
1071#if STYLE_AUTO != 0
1072 all_fmt = (all_fmt & ~STYLE_MASK)
Eric Andersen70060d22004-03-27 10:02:48 +00001073 | (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
Manuel Novoa III cad53642003-03-19 09:13:01 +00001074#else
Eric Andersen70060d22004-03-27 10:02:48 +00001075 all_fmt |= (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
Manuel Novoa III cad53642003-03-19 09:13:01 +00001076#endif
Eric Andersen11c65522000-09-07 17:24:47 +00001077
1078 /*
1079 * when there are no cmd line args we have to supply a default "." arg.
1080 * we will create a second argv array, "av" that will hold either
1081 * our created "." arg, or the real cmd line args. The av array
1082 * just holds the pointers- we don't move the date the pointers
1083 * point to.
1084 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001085 ac = argc - optind; /* how many cmd line args are left */
Eric Andersen11c65522000-09-07 17:24:47 +00001086 if (ac < 1) {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001087 static const char * const dotdir[] = { "." };
1088
1089 av = (char **) dotdir;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001090 ac = 1;
Eric Andersen11c65522000-09-07 17:24:47 +00001091 } else {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001092 av = argv + optind;
Eric Andersen11c65522000-09-07 17:24:47 +00001093 }
1094
1095 /* now, everything is in the av array */
1096 if (ac > 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001097 all_fmt |= DISP_DIRNAME; /* 2 or more items? label directories */
Eric Andersen11c65522000-09-07 17:24:47 +00001098
1099 /* stuff the command line file names into an dnode array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001100 dn = NULL;
1101 for (oi = 0; oi < ac; oi++) {
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001102 cur = my_stat(av[oi], av[oi]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001103 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +00001104 continue;
"Vladimir N. Oleynik"a8c23aa2005-09-05 15:06:57 +00001105 cur->allocated = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001106 cur->next = dn;
1107 dn = cur;
Eric Andersen11c65522000-09-07 17:24:47 +00001108 nfiles++;
1109 }
1110
1111 /* now that we know how many files there are
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001112 ** allocate memory for an array to hold dnode pointers
1113 */
1114 dnp = dnalloc(nfiles);
1115 for (i = 0, cur = dn; i < nfiles; i++) {
1116 dnp[i] = cur; /* save pointer to node in array */
1117 cur = cur->next;
Eric Andersen11c65522000-09-07 17:24:47 +00001118 }
1119
Manuel Novoa III cad53642003-03-19 09:13:01 +00001120 if (all_fmt & DISP_NOLIST) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001121#ifdef CONFIG_FEATURE_LS_SORTFILES
Rob Landley425e7582006-05-03 20:22:03 +00001122 dnsort(dnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +00001123#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001124 if (nfiles > 0)
1125 showfiles(dnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +00001126 } else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001127 dnd = splitdnarray(dnp, nfiles, SPLIT_DIR);
1128 dnf = splitdnarray(dnp, nfiles, SPLIT_FILE);
1129 dndirs = countdirs(dnp, nfiles);
1130 dnfiles = nfiles - dndirs;
Eric Andersen11c65522000-09-07 17:24:47 +00001131 if (dnfiles > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001132#ifdef CONFIG_FEATURE_LS_SORTFILES
Rob Landley425e7582006-05-03 20:22:03 +00001133 dnsort(dnf, dnfiles);
Eric Andersen11c65522000-09-07 17:24:47 +00001134#endif
1135 showfiles(dnf, dnfiles);
Rob Landley26314862006-05-02 19:46:52 +00001136 if (ENABLE_FEATURE_CLEAN_UP)
1137 free(dnf);
Eric Andersen11c65522000-09-07 17:24:47 +00001138 }
1139 if (dndirs > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001140#ifdef CONFIG_FEATURE_LS_SORTFILES
Rob Landley425e7582006-05-03 20:22:03 +00001141 dnsort(dnd, dndirs);
Eric Andersen11c65522000-09-07 17:24:47 +00001142#endif
Glenn L McGrathc4db0832004-03-06 09:12:55 +00001143 showdirs(dnd, dndirs, dnfiles == 0);
Rob Landley26314862006-05-02 19:46:52 +00001144 if (ENABLE_FEATURE_CLEAN_UP)
1145 free(dnd);
Eric Andersen11c65522000-09-07 17:24:47 +00001146 }
1147 }
Rob Landley26314862006-05-02 19:46:52 +00001148 if (ENABLE_FEATURE_CLEAN_UP)
1149 dfree(dnp, nfiles);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001150 return (status);
Eric Andersencc8ed391999-10-05 16:24:54 +00001151}