blob: 6245361e9ede5f42bc2d3eaa0d913a918092ddfd [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen9d3aba71999-10-06 09:04:55 +00002/*
Eric Andersencc8ed391999-10-05 16:24:54 +00003 * tiny-ls.c version 0.1.0: A minimalist 'ls'
4 * Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
Eric Andersen11c65522000-09-07 17:24:47 +00005 *
Eric Andersencc8ed391999-10-05 16:24:54 +00006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21/*
22 * To achieve a small memory footprint, this version of 'ls' doesn't do any
23 * file sorting, and only has the most essential command line switches
Eric Andersen77d92682001-05-23 20:32:09 +000024 * (i.e., the ones I couldn't live without :-) All features which involve
Eric Andersencc8ed391999-10-05 16:24:54 +000025 * linking in substantial chunks of libc can be disabled.
26 *
27 * Although I don't really want to add new features to this program to
28 * keep it small, I *am* interested to receive bug fixes and ways to make
29 * it more portable.
30 *
31 * KNOWN BUGS:
Erik Andersen9ffdaa62000-02-11 21:55:04 +000032 * 1. ls -l of a directory doesn't give "total <blocks>" header
33 * 2. ls of a symlink to a directory doesn't list directory contents
34 * 3. hidden files can make column width too large
35 *
Eric Andersencc8ed391999-10-05 16:24:54 +000036 * NON-OPTIMAL BEHAVIOUR:
37 * 1. autowidth reads directories twice
38 * 2. if you do a short directory listing without filetype characters
39 * appended, there's no need to stat each one
40 * PORTABILITY:
41 * 1. requires lstat (BSD) - how do you do it without?
42 */
43
Eric Andersene57d54b2001-01-30 18:03:11 +000044enum {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +000045 TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +000046 COLUMN_GAP = 2, /* includes the file type char */
Eric Andersene57d54b2001-01-30 18:03:11 +000047};
48
Eric Andersencc8ed391999-10-05 16:24:54 +000049/************************************************************************/
50
Eric Andersen11c65522000-09-07 17:24:47 +000051#include <sys/types.h>
52#include <sys/stat.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000053#include <stdio.h>
54#include <unistd.h>
55#include <dirent.h>
56#include <errno.h>
57#include <stdio.h>
Eric Andersen11c65522000-09-07 17:24:47 +000058#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000059#include <stdlib.h>
Eric Andersen5307eca2001-01-26 01:52:43 +000060#include <fcntl.h>
61#include <signal.h>
Eric Andersen8d79ce82001-07-22 23:00:15 +000062#include <termios.h>
Eric Andersen5307eca2001-01-26 01:52:43 +000063#include <sys/ioctl.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000064#include "busybox.h"
Eric Andersen9e480452003-07-03 10:07:04 +000065#ifdef CONFIG_SELINUX
66#include <fs_secure.h>
67#include <flask_util.h>
68#include <ss.h>
69#endif
Eric Andersen5307eca2001-01-26 01:52:43 +000070
Eric Andersenbdfd0d72001-10-24 05:00:29 +000071#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersenf1142c52001-02-20 06:16:29 +000072#include <time.h>
73#endif
74
Eric Andersen30f64c32001-01-30 19:23:46 +000075#ifndef MAJOR
Erik Andersen1ad302a2000-03-24 00:54:46 +000076#define MAJOR(dev) (((dev)>>8)&0xff)
77#define MINOR(dev) ((dev)&0xff)
78#endif
79
Eric Andersen11c65522000-09-07 17:24:47 +000080/* what is the overall style of the listing */
Manuel Novoa III cad53642003-03-19 09:13:01 +000081#define STYLE_AUTO (0)
82#define STYLE_COLUMNS (1U<<21) /* fill columns */
83#define STYLE_LONG (2U<<21) /* one record per line, extended info */
84#define STYLE_SINGLE (3U<<21) /* one record per line */
85
86#define STYLE_MASK STYLE_SINGLE
87#define STYLE_ONE_RECORD_FLAG STYLE_LONG
Eric Andersencc8ed391999-10-05 16:24:54 +000088
Eric Andersen11c65522000-09-07 17:24:47 +000089/* 51306 lrwxrwxrwx 1 root root 2 May 11 01:43 /bin/view -> vi* */
90/* what file information will be listed */
Manuel Novoa III cad53642003-03-19 09:13:01 +000091#define LIST_INO (1U<<0)
92#define LIST_BLOCKS (1U<<1)
93#define LIST_MODEBITS (1U<<2)
94#define LIST_NLINKS (1U<<3)
95#define LIST_ID_NAME (1U<<4)
96#define LIST_ID_NUMERIC (1U<<5)
Eric Andersen9e480452003-07-03 10:07:04 +000097#define LIST_CONTEXT (1U<<6)
98#define LIST_SIZE (1U<<7)
99#define LIST_DEV (1U<<8)
100#define LIST_DATE_TIME (1U<<9)
101#define LIST_FULLTIME (1U<<10)
102#define LIST_FILENAME (1U<<11)
103#define LIST_SYMLINK (1U<<12)
104#define LIST_FILETYPE (1U<<13)
105#define LIST_EXEC (1U<<14)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000106
107#define LIST_MASK ((LIST_EXEC << 1) - 1)
Eric Andersen11c65522000-09-07 17:24:47 +0000108
109/* what files will be displayed */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000110/* TODO -- We may be able to make DISP_NORMAL 0 to save a bit slot. */
111#define DISP_NORMAL (1U<<14) /* show normal filenames */
112#define DISP_DIRNAME (1U<<15) /* 2 or more items? label directories */
113#define DISP_HIDDEN (1U<<16) /* show filenames starting with . */
114#define DISP_DOT (1U<<17) /* show . and .. */
115#define DISP_NOLIST (1U<<18) /* show directory as itself, not contents */
116#define DISP_RECURSIVE (1U<<19) /* show directory and everything below it */
117#define DISP_ROWS (1U<<20) /* print across rows */
118
119#define DISP_MASK (((DISP_ROWS << 1) - 1) & ~(DISP_NORMAL - 1))
Eric Andersen11c65522000-09-07 17:24:47 +0000120
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000121#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000122/* how will the files be sorted */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000123#define SORT_ORDER_FORWARD 0 /* sort in reverse order */
124#define SORT_ORDER_REVERSE (1U<<27) /* sort in reverse order */
125
126#define SORT_NAME 0 /* sort by file name */
127#define SORT_SIZE (1U<<28) /* sort by file size */
128#define SORT_ATIME (2U<<28) /* sort by last access time */
129#define SORT_CTIME (3U<<28) /* sort by last change time */
130#define SORT_MTIME (4U<<28) /* sort by last modification time */
131#define SORT_VERSION (5U<<28) /* sort by version */
132#define SORT_EXT (6U<<28) /* sort by file name extension */
133#define SORT_DIR (7U<<28) /* sort by file or directory */
134
135#define SORT_MASK (7U<<28)
Eric Andersencc8ed391999-10-05 16:24:54 +0000136#endif
137
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000138#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000139/* which of the three times will be used */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000140#define TIME_MOD 0
141#define TIME_CHANGE (1U<<23)
142#define TIME_ACCESS (1U<<24)
143
144#define TIME_MASK (3U<<23)
145#endif
146
147#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
148#define FOLLOW_LINKS (1U<<25)
149#endif
150#ifdef CONFIG_FEATURE_HUMAN_READABLE
151#define LS_DISP_HR (1U<<26)
Eric Andersencc8ed391999-10-05 16:24:54 +0000152#endif
153
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000154#define LIST_SHORT (LIST_FILENAME)
155#define LIST_ISHORT (LIST_INO | LIST_FILENAME)
156#define LIST_LONG (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
157 LIST_DATE_TIME | LIST_FILENAME | LIST_SYMLINK)
158#define LIST_ILONG (LIST_INO | LIST_LONG)
Eric Andersencc8ed391999-10-05 16:24:54 +0000159
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160#define SPLIT_DIR 1
161#define SPLIT_FILE 0
162#define SPLIT_SUBDIR 2
Eric Andersencc8ed391999-10-05 16:24:54 +0000163
Eric Andersen11c65522000-09-07 17:24:47 +0000164#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
165#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000166
Eric Andersend598d412002-04-27 09:19:39 +0000167#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000168# define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
Eric Andersen11c65522000-09-07 17:24:47 +0000169#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000170
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000171/* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */
172#ifdef CONFIG_FEATURE_LS_COLOR
173static int show_color = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000174
175#define COLOR(mode) ("\000\043\043\043\042\000\043\043"\
176 "\000\000\044\000\043\000\000\040" [TYPEINDEX(mode)])
177#define ATTR(mode) ("\00\00\01\00\01\00\01\00"\
178 "\00\00\01\00\01\00\00\01" [TYPEINDEX(mode)])
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000179#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000180
Eric Andersen11c65522000-09-07 17:24:47 +0000181/*
182 * a directory entry and its stat info are stored here
183 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000184struct dnode { /* the basic node */
185 char *name; /* the dir entry name */
186 char *fullname; /* the dir entry name */
187 struct stat dstat; /* the file stat info */
Eric Andersen9e480452003-07-03 10:07:04 +0000188#ifdef CONFIG_SELINUX
189 security_id_t sid;
190#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000191 struct dnode *next; /* point at the next node */
Eric Andersen11c65522000-09-07 17:24:47 +0000192};
193typedef struct dnode dnode_t;
194
Glenn L McGrath4d001292003-01-06 01:11:50 +0000195static struct dnode **list_dir(const char *);
Eric Andersen3e6ff902001-03-09 21:24:12 +0000196static struct dnode **dnalloc(int);
197static int list_single(struct dnode *);
Eric Andersen11c65522000-09-07 17:24:47 +0000198
Manuel Novoa III cad53642003-03-19 09:13:01 +0000199static unsigned int all_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000200
Eric Andersen9e480452003-07-03 10:07:04 +0000201#ifdef CONFIG_SELINUX
202static int is_flask_enabled_flag;
203#endif
204
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000205#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersene57d54b2001-01-30 18:03:11 +0000206static unsigned short terminal_width = TERMINAL_WIDTH;
Eric Andersene57d54b2001-01-30 18:03:11 +0000207static unsigned short tabstops = COLUMN_GAP;
Eric Andersenf5d5e772001-01-24 23:34:48 +0000208#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000209#define tabstops COLUMN_GAP
210#define terminal_width TERMINAL_WIDTH
Eric Andersen11c65522000-09-07 17:24:47 +0000211#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000212
Matt Kraai33fdae52000-10-13 17:59:43 +0000213static int status = EXIT_SUCCESS;
214
Glenn L McGrath4d001292003-01-06 01:11:50 +0000215static struct dnode *my_stat(char *fullname, char *name)
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000216{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000217 struct stat dstat;
218 struct dnode *cur;
Eric Andersen9e480452003-07-03 10:07:04 +0000219#ifdef CONFIG_SELINUX
220 security_id_t sid;
221#endif
222 int rc;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000223
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000224#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225 if (all_fmt & FOLLOW_LINKS) {
Eric Andersen9e480452003-07-03 10:07:04 +0000226#ifdef CONFIG_SELINUX
227 if(is_flask_enabled_flag)
228 rc = stat_secure(fullname, &dstat, &sid);
229 else
230#endif
231 rc = stat(fullname, &dstat);
232 if(rc)
233 {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000234 bb_perror_msg("%s", fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000235 status = EXIT_FAILURE;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000236 return 0;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000237 }
238 } else
239#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000240 {
241#ifdef CONFIG_SELINUX
242 if(is_flask_enabled_flag)
243 rc = lstat_secure(fullname, &dstat, &sid);
244 else
245#endif
246 rc = lstat(fullname, &dstat);
247 if(rc)
248 {
249 bb_perror_msg("%s", fullname);
250 status = EXIT_FAILURE;
251 return 0;
252 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000253 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000254
255 cur = (struct dnode *) xmalloc(sizeof(struct dnode));
256 cur->fullname = fullname;
257 cur->name = name;
258 cur->dstat = dstat;
Eric Andersen9e480452003-07-03 10:07:04 +0000259#ifdef CONFIG_SELINUX
260 cur->sid = sid;
261#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000262 return cur;
Eric Andersen79565b62000-08-11 18:10:21 +0000263}
264
Eric Andersen11c65522000-09-07 17:24:47 +0000265/*----------------------------------------------------------------------*/
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000266#ifdef CONFIG_FEATURE_LS_COLOR
267static char fgcolor(mode_t mode)
268{
269 /* Check wheter the file is existing (if so, color it red!) */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000270 if (errno == ENOENT) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000271 return '\037';
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000272 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000273 if (LIST_EXEC && S_ISREG(mode)
274 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000275 return COLOR(0xF000); /* File is executable ... */
276 return COLOR(mode);
277}
278
279/*----------------------------------------------------------------------*/
280static char bgcolor(mode_t mode)
281{
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000282 if (LIST_EXEC && S_ISREG(mode)
283 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000284 return ATTR(0xF000); /* File is executable ... */
285 return ATTR(mode);
286}
287#endif
288
289/*----------------------------------------------------------------------*/
Eric Andersend598d412002-04-27 09:19:39 +0000290#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000291static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000292{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000293 if (!(all_fmt & LIST_FILETYPE))
Eric Andersen11c65522000-09-07 17:24:47 +0000294 return '\0';
Manuel Novoa III cad53642003-03-19 09:13:01 +0000295 if ((all_fmt & LIST_EXEC) && S_ISREG(mode)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000296 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
297 return '*';
298 return APPCHAR(mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000299}
300#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000301
Eric Andersen11c65522000-09-07 17:24:47 +0000302/*----------------------------------------------------------------------*/
Eric Andersencf1189f2000-11-29 21:52:06 +0000303
Manuel Novoa III cad53642003-03-19 09:13:01 +0000304#define countdirs(A,B) count_dirs((A), (B), 1)
305#define countsubdirs(A,B) count_dirs((A), (B), 0)
306
307static int count_dirs(struct dnode **dn, int nfiles, int notsubdirs)
Eric Andersen11c65522000-09-07 17:24:47 +0000308{
309 int i, dirs;
310
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000311 if (dn == NULL || nfiles < 1)
312 return (0);
313 dirs = 0;
314 for (i = 0; i < nfiles; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000315 if (S_ISDIR(dn[i]->dstat.st_mode)
316 && (notsubdirs
317 || ((dn[i]->name[0] != '.')
318 || (dn[i]->name[1]
319 && ((dn[i]->name[1] != '.')
320 || dn[i]->name[2])))))
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000321 dirs++;
Eric Andersen11c65522000-09-07 17:24:47 +0000322 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000323 return (dirs);
Eric Andersen11c65522000-09-07 17:24:47 +0000324}
325
Eric Andersen3e6ff902001-03-09 21:24:12 +0000326static int countfiles(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000327{
328 int nfiles;
329 struct dnode *cur;
330
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000331 if (dnp == NULL)
332 return (0);
333 nfiles = 0;
334 for (cur = dnp[0]; cur->next != NULL; cur = cur->next)
335 nfiles++;
Eric Andersen11c65522000-09-07 17:24:47 +0000336 nfiles++;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000337 return (nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000338}
339
340/* get memory to hold an array of pointers */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000341static struct dnode **dnalloc(int num)
Eric Andersen11c65522000-09-07 17:24:47 +0000342{
343 struct dnode **p;
344
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000345 if (num < 1)
346 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000347
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000348 p = (struct dnode **) xcalloc((size_t) num,
349 (size_t) (sizeof(struct dnode *)));
350 return (p);
Eric Andersen11c65522000-09-07 17:24:47 +0000351}
352
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000353#ifdef CONFIG_FEATURE_LS_RECURSIVE
Eric Andersen3e6ff902001-03-09 21:24:12 +0000354static void dfree(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000355{
356 struct dnode *cur, *next;
357
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000358 if (dnp == NULL)
359 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000360
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000361 cur = dnp[0];
Eric Andersen11c65522000-09-07 17:24:47 +0000362 while (cur != NULL) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000363 free(cur->fullname); /* free the filename */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000364 next = cur->next;
365 free(cur); /* free the dnode */
366 cur = next;
Eric Andersen11c65522000-09-07 17:24:47 +0000367 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000368 free(dnp); /* free the array holding the dnode pointers */
Eric Andersen11c65522000-09-07 17:24:47 +0000369}
Eric Andersen20aab262001-07-19 22:28:02 +0000370#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000371
Eric Andersen3e6ff902001-03-09 21:24:12 +0000372static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
Eric Andersen11c65522000-09-07 17:24:47 +0000373{
374 int dncnt, i, d;
375 struct dnode **dnp;
376
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000377 if (dn == NULL || nfiles < 1)
378 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000379
380 /* count how many dirs and regular files there are */
Eric Andersencf1189f2000-11-29 21:52:06 +0000381 if (which == SPLIT_SUBDIR)
382 dncnt = countsubdirs(dn, nfiles);
383 else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000384 dncnt = countdirs(dn, nfiles); /* assume we are looking for dirs */
Eric Andersencf1189f2000-11-29 21:52:06 +0000385 if (which == SPLIT_FILE)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000386 dncnt = nfiles - dncnt; /* looking for files */
Eric Andersencf1189f2000-11-29 21:52:06 +0000387 }
Eric Andersen11c65522000-09-07 17:24:47 +0000388
389 /* allocate a file array and a dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000390 dnp = dnalloc(dncnt);
Eric Andersen11c65522000-09-07 17:24:47 +0000391
392 /* copy the entrys into the file or dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000393 for (d = i = 0; i < nfiles; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000394 if (S_ISDIR(dn[i]->dstat.st_mode)) {
395 if (which & (SPLIT_DIR|SPLIT_SUBDIR)) {
396 if ((which & SPLIT_DIR)
397 || ((dn[i]->name[0] != '.')
398 || (dn[i]->name[1]
399 && ((dn[i]->name[1] != '.')
400 || dn[i]->name[2])))) {
401 dnp[d++] = dn[i];
402 }
403 }
404 } else if (!(which & (SPLIT_DIR|SPLIT_SUBDIR))) {
405 dnp[d++] = dn[i];
Eric Andersen11c65522000-09-07 17:24:47 +0000406 }
407 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000408 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000409}
410
411/*----------------------------------------------------------------------*/
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000412#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen3e6ff902001-03-09 21:24:12 +0000413static int sortcmp(struct dnode *d1, struct dnode *d2)
Eric Andersen11c65522000-09-07 17:24:47 +0000414{
Manuel Novoa III cad53642003-03-19 09:13:01 +0000415 unsigned int sort_opts = all_fmt & SORT_MASK;
416 int dif;
Eric Andersen11c65522000-09-07 17:24:47 +0000417
Manuel Novoa III cad53642003-03-19 09:13:01 +0000418 dif = 0; /* assume SORT_NAME */
Eric Andersen11c65522000-09-07 17:24:47 +0000419 if (sort_opts == SORT_SIZE) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000420 dif = (int) (d2->dstat.st_size - d1->dstat.st_size);
Eric Andersen11c65522000-09-07 17:24:47 +0000421 } else if (sort_opts == SORT_ATIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000422 dif = (int) (d2->dstat.st_atime - d1->dstat.st_atime);
Eric Andersen11c65522000-09-07 17:24:47 +0000423 } else if (sort_opts == SORT_CTIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000424 dif = (int) (d2->dstat.st_ctime - d1->dstat.st_ctime);
Eric Andersen11c65522000-09-07 17:24:47 +0000425 } else if (sort_opts == SORT_MTIME) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000426 dif = (int) (d2->dstat.st_mtime - d1->dstat.st_mtime);
Eric Andersen11c65522000-09-07 17:24:47 +0000427 } else if (sort_opts == SORT_DIR) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000428 dif = S_ISDIR(d2->dstat.st_mode) - S_ISDIR(d1->dstat.st_mode);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000429 /* } else if (sort_opts == SORT_VERSION) { */
430 /* } else if (sort_opts == SORT_EXT) { */
Eric Andersen11c65522000-09-07 17:24:47 +0000431 }
432
Eric Andersen11c65522000-09-07 17:24:47 +0000433 if (dif == 0) {
434 /* sort by name- may be a tie_breaker for time or size cmp */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000435#ifdef CONFIG_LOCALE_SUPPORT
436 dif = strcoll(d1->name, d2->name);
437#else
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000438 dif = strcmp(d1->name, d2->name);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000439#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000440 }
441
Manuel Novoa III cad53642003-03-19 09:13:01 +0000442 if (all_fmt & SORT_ORDER_REVERSE) {
443 dif = -dif;
Eric Andersen11c65522000-09-07 17:24:47 +0000444 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000445 return (dif);
Eric Andersen11c65522000-09-07 17:24:47 +0000446}
447
448/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000449static void shellsort(struct dnode **dn, int size)
Eric Andersen11c65522000-09-07 17:24:47 +0000450{
451 struct dnode *temp;
452 int gap, i, j;
453
454 /* shell short the array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000455 if (dn == NULL || size < 2)
456 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000457
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000458 for (gap = size / 2; gap > 0; gap /= 2) {
459 for (i = gap; i < size; i++) {
460 for (j = i - gap; j >= 0; j -= gap) {
461 if (sortcmp(dn[j], dn[j + gap]) <= 0)
Eric Andersen11c65522000-09-07 17:24:47 +0000462 break;
463 /* they are out of order, swap them */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000464 temp = dn[j];
465 dn[j] = dn[j + gap];
466 dn[j + gap] = temp;
Eric Andersen11c65522000-09-07 17:24:47 +0000467 }
468 }
469 }
470}
471#endif
472
473/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000474static void showfiles(struct dnode **dn, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000475{
476 int i, ncols, nrows, row, nc;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000477 int column = 0;
478 int nexttab = 0;
479 int column_width = 0; /* for STYLE_LONG and STYLE_SINGLE not used */
Eric Andersen11c65522000-09-07 17:24:47 +0000480
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000481 if (dn == NULL || nfiles < 1)
482 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000483
Manuel Novoa III cad53642003-03-19 09:13:01 +0000484 if (all_fmt & STYLE_ONE_RECORD_FLAG) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000485 ncols = 1;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000486 } else {
487 /* find the longest file name- use that as the column width */
488 for (i = 0; i < nfiles; i++) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000489 int len = strlen(dn[i]->name) +
Eric Andersen9e480452003-07-03 10:07:04 +0000490#ifdef CONFIG_SELINUX
491 ((all_fmt & LIST_CONTEXT) ? 33 : 0) +
492#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000493 ((all_fmt & LIST_INO) ? 8 : 0) +
494 ((all_fmt & LIST_BLOCKS) ? 5 : 0);
495 if (column_width < len)
496 column_width = len;
497 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000498 column_width += tabstops;
499 ncols = (int) (terminal_width / column_width);
Eric Andersen11c65522000-09-07 17:24:47 +0000500 }
501
Eric Andersene57d54b2001-01-30 18:03:11 +0000502 if (ncols > 1) {
503 nrows = nfiles / ncols;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000504 if ((nrows * ncols) < nfiles)
505 nrows++; /* round up fractionals */
Eric Andersene57d54b2001-01-30 18:03:11 +0000506 } else {
507 nrows = nfiles;
508 ncols = 1;
509 }
Eric Andersen11c65522000-09-07 17:24:47 +0000510
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000511 for (row = 0; row < nrows; row++) {
512 for (nc = 0; nc < ncols; nc++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000513 /* reach into the array based on the column and row */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000514 i = (nc * nrows) + row; /* assume display by column */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000515 if (all_fmt & DISP_ROWS)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000516 i = (row * ncols) + nc; /* display across row */
Eric Andersen11c65522000-09-07 17:24:47 +0000517 if (i < nfiles) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000518 if (column > 0) {
519 nexttab -= column;
520 while (nexttab--) {
521 putchar(' ');
522 column++;
523 }
Eric Andersen79565b62000-08-11 18:10:21 +0000524 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000525 nexttab = column + column_width;
526 column += list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000527 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000528 }
529 putchar('\n');
530 column = 0;
Eric Andersena42982e2000-06-07 17:28:53 +0000531 }
Eric Andersen11c65522000-09-07 17:24:47 +0000532}
533
534/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000535static void showdirs(struct dnode **dn, int ndirs)
Eric Andersen11c65522000-09-07 17:24:47 +0000536{
537 int i, nfiles;
538 struct dnode **subdnp;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000539
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000540#ifdef CONFIG_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000541 int dndirs;
542 struct dnode **dnd;
543#endif
544
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000545 if (dn == NULL || ndirs < 1)
546 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000547
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000548 for (i = 0; i < ndirs; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000549 if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000550 printf("\n%s:\n", dn[i]->fullname);
Eric Andersen11c65522000-09-07 17:24:47 +0000551 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000552 subdnp = list_dir(dn[i]->fullname);
553 nfiles = countfiles(subdnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000554 if (nfiles > 0) {
555 /* list all files at this level */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000556#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000557 shellsort(subdnp, nfiles);
558#endif
559 showfiles(subdnp, nfiles);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000560#ifdef CONFIG_FEATURE_LS_RECURSIVE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000561 if (all_fmt & DISP_RECURSIVE) {
Eric Andersen11c65522000-09-07 17:24:47 +0000562 /* recursive- list the sub-dirs */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000563 dnd = splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
564 dndirs = countsubdirs(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000565 if (dndirs > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000566#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000567 shellsort(dnd, dndirs);
Matt Kraaia5bd2682000-10-28 06:40:09 +0000568#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000569 showdirs(dnd, dndirs);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000570 free(dnd); /* free the array of dnode pointers to the dirs */
Eric Andersen11c65522000-09-07 17:24:47 +0000571 }
572 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000573 dfree(subdnp); /* free the dnodes and the fullname mem */
Eric Andersen11c65522000-09-07 17:24:47 +0000574#endif
575 }
576 }
577}
578
579/*----------------------------------------------------------------------*/
Glenn L McGrath4d001292003-01-06 01:11:50 +0000580static struct dnode **list_dir(const char *path)
Eric Andersen11c65522000-09-07 17:24:47 +0000581{
582 struct dnode *dn, *cur, **dnp;
583 struct dirent *entry;
584 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000585 int i, nfiles;
586
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000587 if (path == NULL)
588 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000589
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000590 dn = NULL;
591 nfiles = 0;
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000592 dir = opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000593 if (dir == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000594 bb_perror_msg("%s", path);
Matt Kraai33fdae52000-10-13 17:59:43 +0000595 status = EXIT_FAILURE;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000596 return (NULL); /* could not open the dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000597 }
598 while ((entry = readdir(dir)) != NULL) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000599 char *fullname;
600
Eric Andersen11c65522000-09-07 17:24:47 +0000601 /* are we going to list the file- it may be . or .. or a hidden file */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000602 if (entry->d_name[0] == '.') {
603 if ((entry->d_name[1] == 0 || (
604 entry->d_name[1] == '.'
605 && entry->d_name[2] == 0))
Manuel Novoa III cad53642003-03-19 09:13:01 +0000606 && !(all_fmt & DISP_DOT))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000607 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000608 if (!(all_fmt & DISP_HIDDEN))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000609 continue;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000610 }
611 fullname = concat_path_file(path, entry->d_name);
612 cur = my_stat(fullname, strrchr(fullname, '/') + 1);
613 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +0000614 continue;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000615 cur->next = dn;
616 dn = cur;
Eric Andersen11c65522000-09-07 17:24:47 +0000617 nfiles++;
618 }
619 closedir(dir);
620
621 /* now that we know how many files there are
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000622 ** allocate memory for an array to hold dnode pointers
623 */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000624 if (dn == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000625 return (NULL);
626 dnp = dnalloc(nfiles);
627 for (i = 0, cur = dn; i < nfiles; i++) {
628 dnp[i] = cur; /* save pointer to node in array */
629 cur = cur->next;
Eric Andersen11c65522000-09-07 17:24:47 +0000630 }
631
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000632 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000633}
634
635/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000636static int list_single(struct dnode *dn)
Eric Andersen11c65522000-09-07 17:24:47 +0000637{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000638 int i, column = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000639
Matt Kraaia1bbde72002-03-08 16:25:33 +0000640#ifdef CONFIG_FEATURE_LS_USERNAME
Glenn L McGrath4d001292003-01-06 01:11:50 +0000641 char scratch[16];
Matt Kraaia1bbde72002-03-08 16:25:33 +0000642#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000643#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000644 char *filetime;
645 time_t ttime, age;
646#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000647#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000648 struct stat info;
649 char append;
650#endif
651
Glenn L McGrath4d001292003-01-06 01:11:50 +0000652 if (dn->fullname == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000653 return (0);
Eric Andersen11c65522000-09-07 17:24:47 +0000654
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000655#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000656 ttime = dn->dstat.st_mtime; /* the default time */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000657 if (all_fmt & TIME_ACCESS)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000658 ttime = dn->dstat.st_atime;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000659 if (all_fmt & TIME_CHANGE)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000660 ttime = dn->dstat.st_ctime;
661 filetime = ctime(&ttime);
Eric Andersen11c65522000-09-07 17:24:47 +0000662#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000663#ifdef CONFIG_FEATURE_LS_FILETYPES
Eric Andersen11c65522000-09-07 17:24:47 +0000664 append = append_char(dn->dstat.st_mode);
665#endif
666
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000667 for (i = 0; i <= 31; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000668 switch (all_fmt & (1 << i)) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000669 case LIST_INO:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000670 column += printf("%7ld ", (long int) dn->dstat.st_ino);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000671 break;
672 case LIST_BLOCKS:
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000673#if _FILE_OFFSET_BITS == 64
Glenn L McGrath4d001292003-01-06 01:11:50 +0000674 column += printf("%4lld ", dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000675#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000676 column += printf("%4ld ", dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000677#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000678 break;
679 case LIST_MODEBITS:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000680 column += printf("%-10s ", (char *) bb_mode_string(dn->dstat.st_mode));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000681 break;
682 case LIST_NLINKS:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000683 column += printf("%4ld ", (long) dn->dstat.st_nlink);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000684 break;
685 case LIST_ID_NAME:
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000686#ifdef CONFIG_FEATURE_LS_USERNAME
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000687 my_getpwuid(scratch, dn->dstat.st_uid);
688 printf("%-8.8s ", scratch);
689 my_getgrgid(scratch, dn->dstat.st_gid);
690 printf("%-8.8s", scratch);
691 column += 17;
692 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000693#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000694 case LIST_ID_NUMERIC:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000695 column += printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000696 break;
697 case LIST_SIZE:
698 case LIST_DEV:
699 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000700 column += printf("%4d, %3d ", (int) MAJOR(dn->dstat.st_rdev),
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000701 (int) MINOR(dn->dstat.st_rdev));
702 } else {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000703#ifdef CONFIG_FEATURE_HUMAN_READABLE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000704 if (all_fmt & LS_DISP_HR) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000705 column += printf("%9s ",
706 make_human_readable_str(dn->dstat.st_size, 1, 0));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000707 } else
708#endif
709 {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000710#if _FILE_OFFSET_BITS == 64
Glenn L McGrath4d001292003-01-06 01:11:50 +0000711 column += printf("%9lld ", (long long) dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000712#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000713 column += printf("%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000714#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000715 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000716 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000717 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000718#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000719 case LIST_FULLTIME:
720 case LIST_DATE_TIME:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000721 if (all_fmt & LIST_FULLTIME) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000722 printf("%24.24s ", filetime);
723 column += 25;
Eric Andersen11c65522000-09-07 17:24:47 +0000724 break;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000725 }
726 age = time(NULL) - ttime;
727 printf("%6.6s ", filetime + 4);
728 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
729 /* hh:mm if less than 6 months old */
730 printf("%5.5s ", filetime + 11);
731 } else {
732 printf(" %4.4s ", filetime + 20);
733 }
734 column += 13;
735 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000736#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000737#ifdef CONFIG_SELINUX
738 case LIST_CONTEXT:
739 {
740 char context[64];
741 int len = sizeof(context);
742 if(security_sid_to_context(dn->sid, context, &len))
743 {
744 strcpy(context, "unknown");
745 len = 7;
746 }
747 printf("%-32s ", context);
748 column += MAX(33, len);
749 }
750 break;
751#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000752 case LIST_FILENAME:
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000753#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000754 errno = 0;
755 if (show_color && !lstat(dn->fullname, &info)) {
756 printf("\033[%d;%dm", bgcolor(info.st_mode),
757 fgcolor(info.st_mode));
758 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000759#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000760 column += printf("%s", dn->name);
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000761#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000762 if (show_color) {
763 printf("\033[0m");
764 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000765#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000766 break;
767 case LIST_SYMLINK:
768 if (S_ISLNK(dn->dstat.st_mode)) {
769 char *lpath = xreadlink(dn->fullname);
770
771 if (lpath) {
772 printf(" -> ");
773#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
774 if (!stat(dn->fullname, &info)) {
775 append = append_char(info.st_mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000776 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000777#endif
778#ifdef CONFIG_FEATURE_LS_COLOR
779 if (show_color) {
780 errno = 0;
781 printf("\033[%d;%dm", bgcolor(info.st_mode),
782 fgcolor(info.st_mode));
783 }
784#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000785 column += printf("%s", lpath) + 4;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000786#ifdef CONFIG_FEATURE_LS_COLOR
787 if (show_color) {
788 printf("\033[0m");
789 }
790#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000791 free(lpath);
Eric Andersen11c65522000-09-07 17:24:47 +0000792 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000793 }
794 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000795#ifdef CONFIG_FEATURE_LS_FILETYPES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000796 case LIST_FILETYPE:
797 if (append != '\0') {
798 printf("%1c", append);
799 column++;
800 }
801 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000802#endif
803 }
804 }
805
Glenn L McGrath4d001292003-01-06 01:11:50 +0000806 return column;
Eric Andersen11c65522000-09-07 17:24:47 +0000807}
808
809/*----------------------------------------------------------------------*/
Manuel Novoa III cad53642003-03-19 09:13:01 +0000810
811static const char ls_opts[] = "1AaCdgilnsx"
812#ifdef CONFIG_FEATURE_LS_FILETYPES
813 "Fp"
814#endif
815#ifdef CONFIG_FEATURE_LS_RECURSIVE
816 "R"
817#endif
818#ifdef CONFIG_FEATURE_LS_SORTFILES
819 "rSvX"
820#endif
821#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
822 "ecut"
823#endif
824#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
825 "L"
826#endif
827#ifdef CONFIG_FEATURE_HUMAN_READABLE
828 "h"
829#endif
830 "k"
Eric Andersen9e480452003-07-03 10:07:04 +0000831#ifdef CONFIG_SELINUX
832 "K"
833#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000834#ifdef CONFIG_FEATURE_AUTOWIDTH
835 "T:w:"
836#endif
837 ;
838
839#define LIST_MASK_TRIGGER LIST_SHORT
840#define STYLE_MASK_TRIGGER STYLE_MASK
841#define SORT_MASK_TRIGGER SORT_MASK
842#define DISP_MASK_TRIGGER DISP_ROWS
843#define TIME_MASK_TRIGGER TIME_MASK
844
845static const unsigned opt_flags[] = {
846 LIST_SHORT | STYLE_SINGLE, /* 1 */
847 DISP_HIDDEN, /* A */
848 DISP_HIDDEN | DISP_DOT, /* a */
849 LIST_SHORT | STYLE_COLUMNS, /* C */
850 DISP_NOLIST, /* d */
851 0, /* g - ingored */
852 LIST_INO, /* i */
853 LIST_LONG | STYLE_LONG, /* l - remember LS_DISP_HR in mask! */
854 LIST_ID_NUMERIC, /* n */
855 LIST_BLOCKS, /* s */
856 DISP_ROWS, /* x */
857#ifdef CONFIG_FEATURE_LS_FILETYPES
858 LIST_FILETYPE | LIST_EXEC, /* F */
859 LIST_FILETYPE, /* p */
860#endif
861#ifdef CONFIG_FEATURE_LS_RECURSIVE
862 DISP_RECURSIVE, /* R */
863#endif
864#ifdef CONFIG_FEATURE_LS_SORTFILES
865 SORT_ORDER_REVERSE, /* r */
866 SORT_SIZE, /* S */
867 SORT_VERSION, /* v */
868 SORT_EXT, /* v */
869#endif
870#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
871 LIST_FULLTIME, /* e */
872#ifdef CONFIG_FEATURE_LS_SORTFILES
873 TIME_CHANGE | SORT_CTIME, /* c */
874#else
875 TIME_CHANGE, /* c */
876#endif
877#ifdef CONFIG_FEATURE_LS_SORTFILES
878 TIME_ACCESS | SORT_ATIME, /* u */
879#else
880 TIME_ACCESS, /* u */
881#endif
882#ifdef CONFIG_FEATURE_LS_SORTFILES
883 SORT_MTIME, /* t */
884#else
885 0, /* t - ignored -- is this correct? */
886#endif
887#endif
888#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
889 FOLLOW_LINKS, /* L */
890#endif
891#ifdef CONFIG_FEATURE_HUMAN_READABLE
892LS_DISP_HR, /* h */
893#endif
Eric Andersen9e480452003-07-03 10:07:04 +0000894#ifndef CONFIG_SELINUX
Manuel Novoa III cad53642003-03-19 09:13:01 +0000895 0, /* k - ingored */
Eric Andersen9e480452003-07-03 10:07:04 +0000896#else
897 LIST_CONTEXT, /* k */
898 LIST_MODEBITS|LIST_NLINKS|LIST_CONTEXT|LIST_SIZE|LIST_DATE_TIME, /* K */
899#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000900};
901
902
903/*----------------------------------------------------------------------*/
904
Eric Andersen11c65522000-09-07 17:24:47 +0000905extern int ls_main(int argc, char **argv)
906{
907 struct dnode **dnf, **dnd;
908 int dnfiles, dndirs;
909 struct dnode *dn, *cur, **dnp;
910 int i, nfiles;
911 int opt;
912 int oi, ac;
913 char **av;
Eric Andersen9e480452003-07-03 10:07:04 +0000914#ifdef CONFIG_SELINUX
915 is_flask_enabled_flag = is_flask_enabled();
916#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000917
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000918#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersen5307eca2001-01-26 01:52:43 +0000919 struct winsize win = { 0, 0, 0, 0 };
920#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000921
Manuel Novoa III cad53642003-03-19 09:13:01 +0000922 all_fmt = LIST_SHORT | DISP_NORMAL | STYLE_AUTO
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000923#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Manuel Novoa III cad53642003-03-19 09:13:01 +0000924 | TIME_MOD
Eric Andersen11c65522000-09-07 17:24:47 +0000925#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000926#ifdef CONFIG_FEATURE_LS_SORTFILES
927 | SORT_NAME | SORT_ORDER_FORWARD
928#endif
929 ;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000930#ifdef CONFIG_FEATURE_AUTOWIDTH
Mark Whitley9b300d02001-02-01 19:39:43 +0000931 ioctl(fileno(stdout), TIOCGWINSZ, &win);
Mark Whitley9b300d02001-02-01 19:39:43 +0000932 if (win.ws_col > 0)
933 terminal_width = win.ws_col - 1;
Eric Andersen5307eca2001-01-26 01:52:43 +0000934#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000935 nfiles = 0;
Eric Andersen11c65522000-09-07 17:24:47 +0000936
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000937#ifdef CONFIG_FEATURE_LS_COLOR
938 if (isatty(fileno(stdout)))
939 show_color = 1;
940#endif
941
Eric Andersen11c65522000-09-07 17:24:47 +0000942 /* process options */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000943 while ((opt = getopt(argc, argv, ls_opts)) > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000944#ifdef CONFIG_FEATURE_AUTOWIDTH
Manuel Novoa III cad53642003-03-19 09:13:01 +0000945 if (opt == 'T') {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000946 tabstops = atoi(optarg);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000947 continue;
948 }
949 if (opt == 'w') {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000950 terminal_width = atoi(optarg);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000951 continue;
952 }
953 if (opt == ':') {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000954 goto print_usage_message;
Eric Andersen11c65522000-09-07 17:24:47 +0000955 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000956#endif
957 {
958 unsigned int flags;
959 const char *p = strchr(ls_opts, opt);
960 if (!p) { /* shouldn't be necessary */
961 goto print_usage_message;
962 }
963 flags = opt_flags[(int)(p - ls_opts)];
964 if (flags & LIST_MASK_TRIGGER) {
965 all_fmt &= ~LIST_MASK;
966 }
967 if (flags & STYLE_MASK_TRIGGER) {
968 all_fmt &= ~STYLE_MASK;
969 }
970 if (flags & SORT_MASK_TRIGGER) {
971 all_fmt &= ~SORT_MASK;
972 }
973 if (flags & DISP_MASK_TRIGGER) {
974 all_fmt &= ~DISP_MASK;
975 }
976 if (flags & TIME_MASK_TRIGGER) {
977 all_fmt &= ~TIME_MASK;
978 }
Eric Andersen9e480452003-07-03 10:07:04 +0000979 if (flags & LIST_CONTEXT) {
980 all_fmt |= STYLE_SINGLE;
981 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000982#ifdef CONFIG_FEATURE_HUMAN_READABLE
983 if (opt == 'l') {
984 all_fmt &= ~LS_DISP_HR;
985 }
986#endif
987 all_fmt |= flags;
988 }
Eric Andersen11c65522000-09-07 17:24:47 +0000989 }
990
Manuel Novoa III cad53642003-03-19 09:13:01 +0000991
Eric Andersen11c65522000-09-07 17:24:47 +0000992 /* sort out which command line options take precedence */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000993#ifdef CONFIG_FEATURE_LS_RECURSIVE
Manuel Novoa III cad53642003-03-19 09:13:01 +0000994 if (all_fmt & DISP_NOLIST)
995 all_fmt &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000996#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000997#if defined (CONFIG_FEATURE_LS_TIMESTAMPS) && defined (CONFIG_FEATURE_LS_SORTFILES)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000998 if (all_fmt & TIME_CHANGE)
999 all_fmt = (all_fmt & ~SORT_MASK) | SORT_CTIME;
1000 if (all_fmt & TIME_ACCESS)
1001 all_fmt = (all_fmt & ~SORT_MASK) | SORT_ATIME;
Eric Andersen11c65522000-09-07 17:24:47 +00001002#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +00001003 if ((all_fmt & STYLE_MASK) != STYLE_LONG) /* only for long list */
1004 all_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC);
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001005#ifdef CONFIG_FEATURE_LS_USERNAME
Manuel Novoa III cad53642003-03-19 09:13:01 +00001006 if ((all_fmt & STYLE_MASK) == STYLE_LONG && (all_fmt & LIST_ID_NUMERIC))
1007 all_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
Eric Andersen11c65522000-09-07 17:24:47 +00001008#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +00001009
Eric Andersen11c65522000-09-07 17:24:47 +00001010 /* choose a display format */
Manuel Novoa III cad53642003-03-19 09:13:01 +00001011 if ((all_fmt & STYLE_MASK) == STYLE_AUTO)
1012#if STYLE_AUTO != 0
1013 all_fmt = (all_fmt & ~STYLE_MASK)
1014 | (isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE);
1015#else
1016 all_fmt |= (isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE);
1017#endif
Eric Andersen11c65522000-09-07 17:24:47 +00001018
1019 /*
1020 * when there are no cmd line args we have to supply a default "." arg.
1021 * we will create a second argv array, "av" that will hold either
1022 * our created "." arg, or the real cmd line args. The av array
1023 * just holds the pointers- we don't move the date the pointers
1024 * point to.
1025 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001026 ac = argc - optind; /* how many cmd line args are left */
Eric Andersen11c65522000-09-07 17:24:47 +00001027 if (ac < 1) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001028 av = (char **) xcalloc((size_t) 1, (size_t) (sizeof(char *)));
Manuel Novoa III cad53642003-03-19 09:13:01 +00001029 av[0] = bb_xstrdup(".");
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001030 ac = 1;
Eric Andersen11c65522000-09-07 17:24:47 +00001031 } else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001032 av = (char **) xcalloc((size_t) ac, (size_t) (sizeof(char *)));
1033 for (oi = 0; oi < ac; oi++) {
1034 av[oi] = argv[optind++]; /* copy pointer to real cmd line arg */
Eric Andersen11c65522000-09-07 17:24:47 +00001035 }
1036 }
1037
1038 /* now, everything is in the av array */
1039 if (ac > 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001040 all_fmt |= DISP_DIRNAME; /* 2 or more items? label directories */
Eric Andersen11c65522000-09-07 17:24:47 +00001041
1042 /* stuff the command line file names into an dnode array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001043 dn = NULL;
1044 for (oi = 0; oi < ac; oi++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +00001045 char *fullname = bb_xstrdup(av[oi]);
Glenn L McGrath4d001292003-01-06 01:11:50 +00001046
1047 cur = my_stat(fullname, fullname);
1048 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +00001049 continue;
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
1064
Manuel Novoa III cad53642003-03-19 09:13:01 +00001065 if (all_fmt & DISP_NOLIST) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001066#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +00001067 shellsort(dnp, nfiles);
1068#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001069 if (nfiles > 0)
1070 showfiles(dnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +00001071 } else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001072 dnd = splitdnarray(dnp, nfiles, SPLIT_DIR);
1073 dnf = splitdnarray(dnp, nfiles, SPLIT_FILE);
1074 dndirs = countdirs(dnp, nfiles);
1075 dnfiles = nfiles - dndirs;
Eric Andersen11c65522000-09-07 17:24:47 +00001076 if (dnfiles > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001077#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +00001078 shellsort(dnf, dnfiles);
1079#endif
1080 showfiles(dnf, dnfiles);
1081 }
1082 if (dndirs > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001083#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +00001084 shellsort(dnd, dndirs);
1085#endif
1086 showdirs(dnd, dndirs);
1087 }
1088 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001089 return (status);
Eric Andersencc8ed391999-10-05 16:24:54 +00001090
Erik Andersene49d5ec2000-02-08 19:58:47 +00001091 print_usage_message:
Manuel Novoa III cad53642003-03-19 09:13:01 +00001092 bb_show_usage();
Eric Andersencc8ed391999-10-05 16:24:54 +00001093}