2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 21:54:54 +05:30
|
|
|
/*
|
|
|
|
* tiny-ls.c version 0.1.0: A minimalist 'ls'
|
|
|
|
* Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
|
2000-09-07 22:54:47 +05:30
|
|
|
*
|
2006-04-12 13:05:12 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-10-05 21:54:54 +05:30
|
|
|
*/
|
|
|
|
|
2009-03-09 05:16:48 +05:30
|
|
|
/* [date unknown. Perhaps before year 2000]
|
1999-10-05 21:54:54 +05:30
|
|
|
* To achieve a small memory footprint, this version of 'ls' doesn't do any
|
|
|
|
* file sorting, and only has the most essential command line switches
|
2001-05-24 02:02:09 +05:30
|
|
|
* (i.e., the ones I couldn't live without :-) All features which involve
|
1999-10-05 21:54:54 +05:30
|
|
|
* linking in substantial chunks of libc can be disabled.
|
|
|
|
*
|
|
|
|
* Although I don't really want to add new features to this program to
|
|
|
|
* keep it small, I *am* interested to receive bug fixes and ways to make
|
|
|
|
* it more portable.
|
|
|
|
*
|
|
|
|
* KNOWN BUGS:
|
2009-10-03 04:44:15 +05:30
|
|
|
* 1. hidden files can make column width too large
|
2000-02-12 03:25:04 +05:30
|
|
|
*
|
1999-10-05 21:54:54 +05:30
|
|
|
* NON-OPTIMAL BEHAVIOUR:
|
|
|
|
* 1. autowidth reads directories twice
|
|
|
|
* 2. if you do a short directory listing without filetype characters
|
|
|
|
* appended, there's no need to stat each one
|
|
|
|
* PORTABILITY:
|
|
|
|
* 1. requires lstat (BSD) - how do you do it without?
|
2009-03-09 05:16:48 +05:30
|
|
|
*
|
|
|
|
* [2009-03]
|
|
|
|
* ls sorts listing now, and supports almost all options.
|
1999-10-05 21:54:54 +05:30
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2009-07-12 01:06:13 +05:30
|
|
|
#include "unicode.h"
|
2007-04-10 21:13:37 +05:30
|
|
|
|
2008-06-13 16:46:09 +05:30
|
|
|
|
2007-04-10 21:13:37 +05:30
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
2001-02-20 11:46:29 +05:30
|
|
|
|
2009-03-10 04:07:23 +05:30
|
|
|
#if ENABLE_FTPD
|
|
|
|
/* ftpd uses ls, and without timestamps Mozilla won't understand
|
|
|
|
* ftpd's LIST output.
|
|
|
|
*/
|
|
|
|
# undef CONFIG_FEATURE_LS_TIMESTAMPS
|
|
|
|
# undef ENABLE_FEATURE_LS_TIMESTAMPS
|
2009-04-21 16:39:40 +05:30
|
|
|
# undef IF_FEATURE_LS_TIMESTAMPS
|
|
|
|
# undef IF_NOT_FEATURE_LS_TIMESTAMPS
|
2009-03-10 04:07:23 +05:30
|
|
|
# define CONFIG_FEATURE_LS_TIMESTAMPS 1
|
|
|
|
# define ENABLE_FEATURE_LS_TIMESTAMPS 1
|
2009-04-21 16:39:40 +05:30
|
|
|
# define IF_FEATURE_LS_TIMESTAMPS(...) __VA_ARGS__
|
|
|
|
# define IF_NOT_FEATURE_LS_TIMESTAMPS(...)
|
2009-03-10 04:07:23 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
enum {
|
|
|
|
|
|
|
|
TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */
|
|
|
|
COLUMN_GAP = 2, /* includes the file type char */
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
/* what is the overall style of the listing */
|
|
|
|
STYLE_COLUMNS = 1 << 21, /* fill columns */
|
|
|
|
STYLE_LONG = 2 << 21, /* one record per line, extended info */
|
|
|
|
STYLE_SINGLE = 3 << 21, /* one record per line */
|
|
|
|
STYLE_MASK = STYLE_SINGLE,
|
2000-09-07 22:54:47 +05:30
|
|
|
|
|
|
|
/* 51306 lrwxrwxrwx 1 root root 2 May 11 01:43 /bin/view -> vi* */
|
|
|
|
/* what file information will be listed */
|
2006-10-28 18:07:51 +05:30
|
|
|
LIST_INO = 1 << 0,
|
|
|
|
LIST_BLOCKS = 1 << 1,
|
|
|
|
LIST_MODEBITS = 1 << 2,
|
|
|
|
LIST_NLINKS = 1 << 3,
|
|
|
|
LIST_ID_NAME = 1 << 4,
|
|
|
|
LIST_ID_NUMERIC = 1 << 5,
|
|
|
|
LIST_CONTEXT = 1 << 6,
|
|
|
|
LIST_SIZE = 1 << 7,
|
2009-03-22 00:41:23 +05:30
|
|
|
//LIST_DEV = 1 << 8, - unused, synonym to LIST_SIZE
|
2006-10-28 18:07:51 +05:30
|
|
|
LIST_DATE_TIME = 1 << 9,
|
|
|
|
LIST_FULLTIME = 1 << 10,
|
|
|
|
LIST_FILENAME = 1 << 11,
|
|
|
|
LIST_SYMLINK = 1 << 12,
|
|
|
|
LIST_FILETYPE = 1 << 13,
|
|
|
|
LIST_EXEC = 1 << 14,
|
|
|
|
LIST_MASK = (LIST_EXEC << 1) - 1,
|
2000-09-07 22:54:47 +05:30
|
|
|
|
|
|
|
/* what files will be displayed */
|
2006-10-28 18:07:51 +05:30
|
|
|
DISP_DIRNAME = 1 << 15, /* 2 or more items? label directories */
|
2006-10-28 18:32:55 +05:30
|
|
|
DISP_HIDDEN = 1 << 16, /* show filenames starting with . */
|
2006-10-28 18:07:51 +05:30
|
|
|
DISP_DOT = 1 << 17, /* show . and .. */
|
|
|
|
DISP_NOLIST = 1 << 18, /* show directory as itself, not contents */
|
|
|
|
DISP_RECURSIVE = 1 << 19, /* show directory and everything below it */
|
|
|
|
DISP_ROWS = 1 << 20, /* print across rows */
|
|
|
|
DISP_MASK = ((DISP_ROWS << 1) - 1) & ~(DISP_DIRNAME - 1),
|
|
|
|
|
|
|
|
/* how will the files be sorted (CONFIG_FEATURE_LS_SORTFILES) */
|
|
|
|
SORT_FORWARD = 0, /* sort in reverse order */
|
|
|
|
SORT_REVERSE = 1 << 27, /* sort in reverse order */
|
|
|
|
|
|
|
|
SORT_NAME = 0, /* sort by file name */
|
|
|
|
SORT_SIZE = 1 << 28, /* sort by file size */
|
|
|
|
SORT_ATIME = 2 << 28, /* sort by last access time */
|
|
|
|
SORT_CTIME = 3 << 28, /* sort by last change time */
|
|
|
|
SORT_MTIME = 4 << 28, /* sort by last modification time */
|
|
|
|
SORT_VERSION = 5 << 28, /* sort by version */
|
|
|
|
SORT_EXT = 6 << 28, /* sort by file name extension */
|
|
|
|
SORT_DIR = 7 << 28, /* sort by file or directory */
|
|
|
|
SORT_MASK = (7 << 28) * ENABLE_FEATURE_LS_SORTFILES,
|
2000-09-07 22:54:47 +05:30
|
|
|
|
|
|
|
/* which of the three times will be used */
|
2006-10-28 18:07:51 +05:30
|
|
|
TIME_CHANGE = (1 << 23) * ENABLE_FEATURE_LS_TIMESTAMPS,
|
|
|
|
TIME_ACCESS = (1 << 24) * ENABLE_FEATURE_LS_TIMESTAMPS,
|
|
|
|
TIME_MASK = (3 << 23) * ENABLE_FEATURE_LS_TIMESTAMPS,
|
2003-03-19 14:43:01 +05:30
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
FOLLOW_LINKS = (1 << 25) * ENABLE_FEATURE_LS_FOLLOWLINKS,
|
|
|
|
|
|
|
|
LS_DISP_HR = (1 << 26) * ENABLE_FEATURE_HUMAN_READABLE,
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
LIST_SHORT = LIST_FILENAME,
|
|
|
|
LIST_LONG = LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
|
|
|
|
LIST_DATE_TIME | LIST_FILENAME | LIST_SYMLINK,
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
SPLIT_DIR = 1,
|
|
|
|
SPLIT_FILE = 0,
|
|
|
|
SPLIT_SUBDIR = 2,
|
|
|
|
|
|
|
|
};
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2009-03-03 19:39:04 +05:30
|
|
|
/* "[-]Cadil1", POSIX mandated options, busybox always supports */
|
|
|
|
/* "[-]gnsx", POSIX non-mandated options, busybox always supports */
|
|
|
|
/* "[-]Q" GNU option? busybox always supports */
|
|
|
|
/* "[-]Ak" GNU options, busybox always supports */
|
|
|
|
/* "[-]FLRctur", POSIX mandated options, busybox optionally supports */
|
|
|
|
/* "[-]p", POSIX non-mandated options, busybox optionally supports */
|
|
|
|
/* "[-]SXvThw", GNU options, busybox optionally supports */
|
|
|
|
/* "[-]K", SELinux mandated options, busybox optionally supports */
|
|
|
|
/* "[-]e", I think we made this one up */
|
|
|
|
static const char ls_options[] ALIGN1 =
|
|
|
|
"Cadil1gnsxQAk" /* 13 opts, total 13 */
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_FEATURE_LS_TIMESTAMPS("cetu") /* 4, 17 */
|
|
|
|
IF_FEATURE_LS_SORTFILES("SXrv") /* 4, 21 */
|
|
|
|
IF_FEATURE_LS_FILETYPES("Fp") /* 2, 23 */
|
|
|
|
IF_FEATURE_LS_FOLLOWLINKS("L") /* 1, 24 */
|
|
|
|
IF_FEATURE_LS_RECURSIVE("R") /* 1, 25 */
|
|
|
|
IF_FEATURE_HUMAN_READABLE("h") /* 1, 26 */
|
2009-07-02 17:55:51 +05:30
|
|
|
IF_SELINUX("KZ") /* 2, 28 */
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_FEATURE_AUTOWIDTH("T:w:") /* 2, 30 */
|
2009-03-03 19:39:04 +05:30
|
|
|
;
|
|
|
|
enum {
|
|
|
|
//OPT_C = (1 << 0),
|
|
|
|
//OPT_a = (1 << 1),
|
|
|
|
//OPT_d = (1 << 2),
|
|
|
|
//OPT_i = (1 << 3),
|
|
|
|
//OPT_l = (1 << 4),
|
|
|
|
//OPT_1 = (1 << 5),
|
|
|
|
OPT_g = (1 << 6),
|
|
|
|
//OPT_n = (1 << 7),
|
|
|
|
//OPT_s = (1 << 8),
|
|
|
|
//OPT_x = (1 << 9),
|
|
|
|
OPT_Q = (1 << 10),
|
|
|
|
//OPT_A = (1 << 11),
|
|
|
|
//OPT_k = (1 << 12),
|
2009-07-02 17:55:51 +05:30
|
|
|
OPTBIT_color = 13
|
|
|
|
+ 4 * ENABLE_FEATURE_LS_TIMESTAMPS
|
|
|
|
+ 4 * ENABLE_FEATURE_LS_SORTFILES
|
|
|
|
+ 2 * ENABLE_FEATURE_LS_FILETYPES
|
|
|
|
+ 1 * ENABLE_FEATURE_LS_FOLLOWLINKS
|
|
|
|
+ 1 * ENABLE_FEATURE_LS_RECURSIVE
|
|
|
|
+ 1 * ENABLE_FEATURE_HUMAN_READABLE
|
|
|
|
+ 2 * ENABLE_SELINUX
|
|
|
|
+ 2 * ENABLE_FEATURE_AUTOWIDTH,
|
|
|
|
OPT_color = 1 << OPTBIT_color,
|
2009-03-03 19:39:04 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
LIST_MASK_TRIGGER = 0,
|
|
|
|
STYLE_MASK_TRIGGER = STYLE_MASK,
|
|
|
|
DISP_MASK_TRIGGER = DISP_ROWS,
|
|
|
|
SORT_MASK_TRIGGER = SORT_MASK,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* TODO: simple toggles may be stored as OPT_xxx bits instead */
|
|
|
|
static const unsigned opt_flags[] = {
|
|
|
|
LIST_SHORT | STYLE_COLUMNS, /* C */
|
|
|
|
DISP_HIDDEN | DISP_DOT, /* a */
|
|
|
|
DISP_NOLIST, /* d */
|
|
|
|
LIST_INO, /* i */
|
|
|
|
LIST_LONG | STYLE_LONG, /* l - remember LS_DISP_HR in mask! */
|
|
|
|
LIST_SHORT | STYLE_SINGLE, /* 1 */
|
|
|
|
0, /* g (don't show group) - handled via OPT_g */
|
|
|
|
LIST_ID_NUMERIC, /* n */
|
|
|
|
LIST_BLOCKS, /* s */
|
|
|
|
DISP_ROWS, /* x */
|
|
|
|
0, /* Q (quote filename) - handled via OPT_Q */
|
|
|
|
DISP_HIDDEN, /* A */
|
|
|
|
ENABLE_SELINUX * LIST_CONTEXT, /* k (ignored if !SELINUX) */
|
|
|
|
#if ENABLE_FEATURE_LS_TIMESTAMPS
|
|
|
|
TIME_CHANGE | (ENABLE_FEATURE_LS_SORTFILES * SORT_CTIME), /* c */
|
|
|
|
LIST_FULLTIME, /* e */
|
|
|
|
ENABLE_FEATURE_LS_SORTFILES * SORT_MTIME, /* t */
|
|
|
|
TIME_ACCESS | (ENABLE_FEATURE_LS_SORTFILES * SORT_ATIME), /* u */
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_LS_SORTFILES
|
|
|
|
SORT_SIZE, /* S */
|
|
|
|
SORT_EXT, /* X */
|
|
|
|
SORT_REVERSE, /* r */
|
|
|
|
SORT_VERSION, /* v */
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_LS_FILETYPES
|
|
|
|
LIST_FILETYPE | LIST_EXEC, /* F */
|
|
|
|
LIST_FILETYPE, /* p */
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_LS_FOLLOWLINKS
|
|
|
|
FOLLOW_LINKS, /* L */
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_LS_RECURSIVE
|
|
|
|
DISP_RECURSIVE, /* R */
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_HUMAN_READABLE
|
|
|
|
LS_DISP_HR, /* h */
|
|
|
|
#endif
|
|
|
|
#if ENABLE_SELINUX
|
|
|
|
LIST_MODEBITS|LIST_NLINKS|LIST_CONTEXT|LIST_SIZE|LIST_DATE_TIME, /* K */
|
|
|
|
#endif
|
|
|
|
#if ENABLE_SELINUX
|
|
|
|
LIST_MODEBITS|LIST_ID_NAME|LIST_CONTEXT, /* Z */
|
|
|
|
#endif
|
|
|
|
(1U<<31)
|
|
|
|
/* options after Z are not processed through opt_flags:
|
|
|
|
* T, w - ignored
|
|
|
|
*/
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-09-07 22:54:47 +05:30
|
|
|
/*
|
|
|
|
* a directory entry and its stat info are stored here
|
|
|
|
*/
|
2009-10-03 04:45:47 +05:30
|
|
|
struct dnode {
|
|
|
|
const char *name; /* the dir entry name */
|
|
|
|
const char *fullname; /* the dir entry name */
|
|
|
|
struct dnode *next; /* point at the next node */
|
|
|
|
smallint fname_allocated;
|
2006-10-28 18:07:51 +05:30
|
|
|
struct stat dstat; /* the file stat info */
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_SELINUX(security_context_t sid;)
|
2000-08-11 23:40:21 +05:30
|
|
|
};
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2008-06-13 16:46:09 +05:30
|
|
|
struct globals {
|
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
|
|
|
smallint show_color;
|
|
|
|
#endif
|
2008-06-18 22:08:22 +05:30
|
|
|
smallint exit_code;
|
2008-06-13 16:46:09 +05:30
|
|
|
unsigned all_fmt;
|
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
|
|
|
unsigned tabstops; // = COLUMN_GAP;
|
|
|
|
unsigned terminal_width; // = TERMINAL_WIDTH;
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_LS_TIMESTAMPS
|
|
|
|
/* Do time() just once. Saves one syscall per file for "ls -l" */
|
|
|
|
time_t current_time_t;
|
|
|
|
#endif
|
2010-02-04 19:30:15 +05:30
|
|
|
} FIX_ALIASING;
|
2008-06-13 16:46:09 +05:30
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
2009-09-30 06:09:57 +05:30
|
|
|
# define show_color (G.show_color )
|
2008-06-13 16:46:09 +05:30
|
|
|
#else
|
|
|
|
enum { show_color = 0 };
|
|
|
|
#endif
|
2009-09-30 06:09:57 +05:30
|
|
|
#define exit_code (G.exit_code )
|
|
|
|
#define all_fmt (G.all_fmt )
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
2009-09-30 06:09:57 +05:30
|
|
|
# define tabstops (G.tabstops )
|
|
|
|
# define terminal_width (G.terminal_width)
|
2001-01-25 05:04:48 +05:30
|
|
|
#else
|
2006-10-28 18:07:16 +05:30
|
|
|
enum {
|
|
|
|
tabstops = COLUMN_GAP,
|
|
|
|
terminal_width = TERMINAL_WIDTH,
|
|
|
|
};
|
2000-09-07 22:54:47 +05:30
|
|
|
#endif
|
2008-06-13 16:46:09 +05:30
|
|
|
#define current_time_t (G.current_time_t)
|
2008-06-25 15:23:17 +05:30
|
|
|
#define INIT_G() do { \
|
2009-09-30 06:09:57 +05:30
|
|
|
/* we have to zero it out because of NOEXEC */ \
|
2008-06-13 16:46:09 +05:30
|
|
|
memset(&G, 0, sizeof(G)); \
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_FEATURE_AUTOWIDTH(tabstops = COLUMN_GAP;) \
|
|
|
|
IF_FEATURE_AUTOWIDTH(terminal_width = TERMINAL_WIDTH;) \
|
|
|
|
IF_FEATURE_LS_TIMESTAMPS(time(¤t_time_t);) \
|
2008-06-25 15:23:17 +05:30
|
|
|
} while (0)
|
2008-06-13 16:46:09 +05:30
|
|
|
|
|
|
|
|
2007-06-30 13:34:05 +05:30
|
|
|
static struct dnode *my_stat(const char *fullname, const char *name, int force_follow)
|
2000-10-13 23:33:21 +05:30
|
|
|
{
|
2003-01-06 06:41:50 +05:30
|
|
|
struct stat dstat;
|
|
|
|
struct dnode *cur;
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_SELINUX(security_context_t sid = NULL;)
|
2003-01-06 06:41:50 +05:30
|
|
|
|
2007-03-01 04:44:06 +05:30
|
|
|
if ((all_fmt & FOLLOW_LINKS) || force_follow) {
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_SELINUX
|
2006-05-29 17:40:23 +05:30
|
|
|
if (is_selinux_enabled()) {
|
2006-10-28 18:07:16 +05:30
|
|
|
getfilecon(fullname, &sid);
|
2005-05-03 11:55:50 +05:30
|
|
|
}
|
2003-07-03 15:37:04 +05:30
|
|
|
#endif
|
2006-05-29 17:40:23 +05:30
|
|
|
if (stat(fullname, &dstat)) {
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg(fullname);
|
2008-06-18 22:08:22 +05:30
|
|
|
exit_code = EXIT_FAILURE;
|
2003-01-06 06:41:50 +05:30
|
|
|
return 0;
|
2000-10-13 23:33:21 +05:30
|
|
|
}
|
2006-10-28 18:07:16 +05:30
|
|
|
} else {
|
|
|
|
#if ENABLE_SELINUX
|
|
|
|
if (is_selinux_enabled()) {
|
2007-03-01 04:44:06 +05:30
|
|
|
lgetfilecon(fullname, &sid);
|
2005-05-03 11:55:50 +05:30
|
|
|
}
|
2003-07-03 15:37:04 +05:30
|
|
|
#endif
|
2006-05-29 17:40:23 +05:30
|
|
|
if (lstat(fullname, &dstat)) {
|
2007-10-01 17:28:38 +05:30
|
|
|
bb_simple_perror_msg(fullname);
|
2008-06-18 22:08:22 +05:30
|
|
|
exit_code = EXIT_FAILURE;
|
2003-07-03 15:37:04 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2002-08-22 23:43:54 +05:30
|
|
|
}
|
2003-01-06 06:41:50 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
cur = xmalloc(sizeof(*cur));
|
2003-01-06 06:41:50 +05:30
|
|
|
cur->fullname = fullname;
|
|
|
|
cur->name = name;
|
|
|
|
cur->dstat = dstat;
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_SELINUX(cur->sid = sid;)
|
2003-01-06 06:41:50 +05:30
|
|
|
return cur;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2009-03-19 04:09:34 +05:30
|
|
|
/* FYI type values: 1:fifo 2:char 4:dir 6:blk 8:file 10:link 12:socket
|
|
|
|
* (various wacky OSes: 13:Sun door 14:BSD whiteout 5:XENIX named file
|
|
|
|
* 3/7:multiplexed char/block device)
|
|
|
|
* and we use 0 for unknown and 15 for executables (see below) */
|
|
|
|
#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
|
|
|
|
#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
|
|
|
|
#define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
|
|
|
|
/* 036 black foreground 050 black background
|
|
|
|
037 red foreground 051 red background
|
|
|
|
040 green foreground 052 green background
|
|
|
|
041 brown foreground 053 brown background
|
|
|
|
042 blue foreground 054 blue background
|
|
|
|
043 magenta (purple) foreground 055 magenta background
|
|
|
|
044 cyan (light blue) foreground 056 cyan background
|
|
|
|
045 gray foreground 057 white background
|
|
|
|
*/
|
|
|
|
#define COLOR(mode) ( \
|
|
|
|
/*un fi chr dir blk file link sock exe */ \
|
|
|
|
"\037\043\043\045\042\045\043\043\000\045\044\045\043\045\045\040" \
|
|
|
|
[TYPEINDEX(mode)])
|
|
|
|
/* Select normal (0) [actually "reset all"] or bold (1)
|
|
|
|
* (other attributes are 2:dim 4:underline 5:blink 7:reverse,
|
|
|
|
* let's use 7 for "impossible" types, just for fun)
|
|
|
|
* Note: coreutils 6.9 uses inverted red for setuid binaries.
|
|
|
|
*/
|
|
|
|
#define ATTR(mode) ( \
|
|
|
|
/*un fi chr dir blk file link sock exe */ \
|
|
|
|
"\01\00\01\07\01\07\01\07\00\07\01\07\01\07\07\01" \
|
|
|
|
[TYPEINDEX(mode)])
|
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
2009-03-19 04:09:34 +05:30
|
|
|
/* mode of zero is interpreted as "unknown" (stat failed) */
|
2002-03-20 14:43:48 +05:30
|
|
|
static char fgcolor(mode_t mode)
|
|
|
|
{
|
2006-06-16 03:41:10 +05:30
|
|
|
if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
|
2002-03-20 14:43:48 +05:30
|
|
|
return COLOR(0xF000); /* File is executable ... */
|
|
|
|
return COLOR(mode);
|
|
|
|
}
|
2009-03-19 04:09:34 +05:30
|
|
|
static char bold(mode_t mode)
|
2002-03-20 14:43:48 +05:30
|
|
|
{
|
2006-06-16 03:41:10 +05:30
|
|
|
if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
|
2002-03-20 14:43:48 +05:30
|
|
|
return ATTR(0xF000); /* File is executable ... */
|
|
|
|
return ATTR(mode);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_LS_FILETYPES || ENABLE_FEATURE_LS_COLOR
|
2000-09-07 22:54:47 +05:30
|
|
|
static char append_char(mode_t mode)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2003-03-19 14:43:01 +05:30
|
|
|
if (!(all_fmt & LIST_FILETYPE))
|
2000-09-07 22:54:47 +05:30
|
|
|
return '\0';
|
2006-06-16 03:41:10 +05:30
|
|
|
if (S_ISDIR(mode))
|
|
|
|
return '/';
|
|
|
|
if (!(all_fmt & LIST_EXEC))
|
|
|
|
return '\0';
|
|
|
|
if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
|
2002-08-22 23:43:54 +05:30
|
|
|
return '*';
|
|
|
|
return APPCHAR(mode);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-09-07 22:54:47 +05:30
|
|
|
#endif
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
static unsigned count_dirs(struct dnode **dn, int which)
|
2000-09-07 22:54:47 +05:30
|
|
|
{
|
2009-10-03 15:13:48 +05:30
|
|
|
unsigned dirs, all;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
if (!dn)
|
|
|
|
return 0;
|
2009-10-03 15:13:48 +05:30
|
|
|
|
|
|
|
dirs = all = 0;
|
|
|
|
for (; *dn; dn++) {
|
2007-06-30 13:34:05 +05:30
|
|
|
const char *name;
|
2009-10-03 15:13:48 +05:30
|
|
|
|
|
|
|
all++;
|
|
|
|
if (!S_ISDIR((*dn)->dstat.st_mode))
|
2006-10-28 18:07:16 +05:30
|
|
|
continue;
|
2009-10-03 15:13:48 +05:30
|
|
|
name = (*dn)->name;
|
|
|
|
if (which != SPLIT_SUBDIR /* if not requested to skip . / .. */
|
|
|
|
/* or if it's not . or .. */
|
2009-10-03 04:45:47 +05:30
|
|
|
|| name[0] != '.' || (name[1] && (name[1] != '.' || name[2]))
|
2006-10-28 18:07:16 +05:30
|
|
|
) {
|
2002-08-22 23:43:54 +05:30
|
|
|
dirs++;
|
2006-10-28 18:07:16 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2009-10-03 15:13:48 +05:30
|
|
|
return which != SPLIT_FILE ? dirs : all - dirs;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2000-09-07 22:54:47 +05:30
|
|
|
/* get memory to hold an array of pointers */
|
2009-10-03 04:45:47 +05:30
|
|
|
static struct dnode **dnalloc(unsigned num)
|
2000-09-07 22:54:47 +05:30
|
|
|
{
|
2002-08-22 23:43:54 +05:30
|
|
|
if (num < 1)
|
2006-10-28 18:07:16 +05:30
|
|
|
return NULL;
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
num++; /* so that we have terminating NULL */
|
2006-10-28 18:07:16 +05:30
|
|
|
return xzalloc(num * sizeof(struct dnode *));
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_LS_RECURSIVE
|
2009-10-03 15:13:48 +05:30
|
|
|
static void dfree(struct dnode **dnp)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2009-10-03 04:45:47 +05:30
|
|
|
unsigned i;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2002-08-22 23:43:54 +05:30
|
|
|
if (dnp == NULL)
|
|
|
|
return;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
for (i = 0; dnp[i]; i++) {
|
2006-05-03 01:16:52 +05:30
|
|
|
struct dnode *cur = dnp[i];
|
2009-10-03 04:45:47 +05:30
|
|
|
if (cur->fname_allocated)
|
2009-10-03 15:12:33 +05:30
|
|
|
free((char*)cur->fullname);
|
|
|
|
free(cur);
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
2009-10-03 15:12:33 +05:30
|
|
|
free(dnp);
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
2006-05-28 06:49:06 +05:30
|
|
|
#else
|
2007-01-20 02:54:17 +05:30
|
|
|
#define dfree(...) ((void)0)
|
2001-07-20 03:58:02 +05:30
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
/* Returns NULL-terminated malloced vector of pointers (or NULL) */
|
|
|
|
static struct dnode **splitdnarray(struct dnode **dn, int which)
|
2000-09-07 22:54:47 +05:30
|
|
|
{
|
2009-10-03 15:13:48 +05:30
|
|
|
unsigned dncnt, d;
|
2000-09-07 22:54:47 +05:30
|
|
|
struct dnode **dnp;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
if (dn == NULL)
|
2006-10-28 18:07:16 +05:30
|
|
|
return NULL;
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
/* count how many dirs or files there are */
|
|
|
|
dncnt = count_dirs(dn, which);
|
2000-09-07 22:54:47 +05:30
|
|
|
|
|
|
|
/* allocate a file array and a dir array */
|
2002-08-22 23:43:54 +05:30
|
|
|
dnp = dnalloc(dncnt);
|
2000-09-07 22:54:47 +05:30
|
|
|
|
|
|
|
/* copy the entrys into the file or dir array */
|
2009-10-03 15:13:48 +05:30
|
|
|
for (d = 0; *dn; dn++) {
|
|
|
|
if (S_ISDIR((*dn)->dstat.st_mode)) {
|
2007-06-30 13:34:05 +05:30
|
|
|
const char *name;
|
2009-10-03 15:13:48 +05:30
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
if (!(which & (SPLIT_DIR|SPLIT_SUBDIR)))
|
|
|
|
continue;
|
2009-10-03 15:13:48 +05:30
|
|
|
name = (*dn)->name;
|
2006-10-28 18:07:16 +05:30
|
|
|
if ((which & SPLIT_DIR)
|
|
|
|
|| name[0]!='.' || (name[1] && (name[1]!='.' || name[2]))
|
|
|
|
) {
|
2009-10-03 15:13:48 +05:30
|
|
|
dnp[d++] = *dn;
|
2003-03-19 14:43:01 +05:30
|
|
|
}
|
|
|
|
} else if (!(which & (SPLIT_DIR|SPLIT_SUBDIR))) {
|
2009-10-03 15:13:48 +05:30
|
|
|
dnp[d++] = *dn;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
}
|
2006-10-28 18:07:16 +05:30
|
|
|
return dnp;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_LS_SORTFILES
|
2006-05-04 01:52:03 +05:30
|
|
|
static int sortcmp(const void *a, const void *b)
|
2000-08-11 23:40:21 +05:30
|
|
|
{
|
2006-05-04 01:52:03 +05:30
|
|
|
struct dnode *d1 = *(struct dnode **)a;
|
|
|
|
struct dnode *d2 = *(struct dnode **)b;
|
2006-10-28 18:07:16 +05:30
|
|
|
unsigned sort_opts = all_fmt & SORT_MASK;
|
2010-01-18 17:32:27 +05:30
|
|
|
off_t dif;
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
dif = 0; /* assume SORT_NAME */
|
|
|
|
// TODO: use pre-initialized function pointer
|
|
|
|
// instead of branch forest
|
2000-09-07 22:54:47 +05:30
|
|
|
if (sort_opts == SORT_SIZE) {
|
2010-01-18 17:32:27 +05:30
|
|
|
dif = (d2->dstat.st_size - d1->dstat.st_size);
|
2000-09-07 22:54:47 +05:30
|
|
|
} else if (sort_opts == SORT_ATIME) {
|
2010-01-18 17:32:27 +05:30
|
|
|
dif = (d2->dstat.st_atime - d1->dstat.st_atime);
|
2000-09-07 22:54:47 +05:30
|
|
|
} else if (sort_opts == SORT_CTIME) {
|
2010-01-18 17:32:27 +05:30
|
|
|
dif = (d2->dstat.st_ctime - d1->dstat.st_ctime);
|
2000-09-07 22:54:47 +05:30
|
|
|
} else if (sort_opts == SORT_MTIME) {
|
2010-01-18 17:32:27 +05:30
|
|
|
dif = (d2->dstat.st_mtime - d1->dstat.st_mtime);
|
2000-09-07 22:54:47 +05:30
|
|
|
} else if (sort_opts == SORT_DIR) {
|
2003-03-19 14:43:01 +05:30
|
|
|
dif = S_ISDIR(d2->dstat.st_mode) - S_ISDIR(d1->dstat.st_mode);
|
2002-08-22 23:43:54 +05:30
|
|
|
/* } else if (sort_opts == SORT_VERSION) { */
|
|
|
|
/* } else if (sort_opts == SORT_EXT) { */
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
|
|
|
if (dif == 0) {
|
2010-01-18 17:32:27 +05:30
|
|
|
/* sort by name, or tie_breaker for other sorts */
|
|
|
|
if (ENABLE_LOCALE_SUPPORT)
|
|
|
|
dif = strcoll(d1->name, d2->name);
|
|
|
|
else
|
|
|
|
dif = strcmp(d1->name, d2->name);
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
|
|
|
|
2010-01-18 17:32:27 +05:30
|
|
|
/* Make dif fit into an int */
|
|
|
|
if (sizeof(dif) > sizeof(int)) {
|
2010-01-25 03:22:21 +05:30
|
|
|
enum { BITS_TO_SHIFT = 8 * (sizeof(dif) - sizeof(int)) };
|
|
|
|
/* shift leaving only "int" worth of bits */
|
|
|
|
if (dif != 0) {
|
|
|
|
dif = 1 | (int)((uoff_t)dif >> BITS_TO_SHIFT);
|
2010-01-18 17:32:27 +05:30
|
|
|
}
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
2010-01-18 17:32:27 +05:30
|
|
|
|
|
|
|
return (all_fmt & SORT_REVERSE) ? -(int)dif : (int)dif;
|
2000-08-11 23:40:21 +05:30
|
|
|
}
|
|
|
|
|
2006-05-04 01:52:03 +05:30
|
|
|
static void dnsort(struct dnode **dn, int size)
|
2000-08-11 23:40:21 +05:30
|
|
|
{
|
2006-10-28 18:07:51 +05:30
|
|
|
qsort(dn, size, sizeof(*dn), sortcmp);
|
2000-08-11 23:40:21 +05:30
|
|
|
}
|
2006-06-19 01:50:07 +05:30
|
|
|
#else
|
2007-01-20 02:54:17 +05:30
|
|
|
#define dnsort(dn, size) ((void)0)
|
2000-08-11 23:40:21 +05:30
|
|
|
#endif
|
|
|
|
|
2006-06-19 01:50:07 +05:30
|
|
|
|
2010-01-31 09:45:38 +05:30
|
|
|
static unsigned calc_name_len(const char *name)
|
|
|
|
{
|
|
|
|
unsigned len;
|
|
|
|
uni_stat_t uni_stat;
|
|
|
|
|
|
|
|
// TODO: quote tab as \t, etc, if -Q
|
|
|
|
name = printable_string(&uni_stat, name);
|
|
|
|
|
|
|
|
if (!(option_mask32 & OPT_Q)) {
|
|
|
|
return uni_stat.unicode_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = 2 + uni_stat.unicode_width;
|
|
|
|
while (*name) {
|
|
|
|
if (*name == '"' || *name == '\\') {
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
name++;
|
|
|
|
}
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Return the number of used columns.
|
|
|
|
* Note that only STYLE_COLUMNS uses return value.
|
|
|
|
* STYLE_SINGLE and STYLE_LONG don't care.
|
|
|
|
* coreutils 7.2 also supports:
|
|
|
|
* ls -b (--escape) = octal escapes (although it doesn't look like working)
|
|
|
|
* ls -N (--literal) = not escape at all
|
|
|
|
*/
|
|
|
|
static unsigned print_name(const char *name)
|
|
|
|
{
|
|
|
|
unsigned len;
|
|
|
|
uni_stat_t uni_stat;
|
|
|
|
|
|
|
|
// TODO: quote tab as \t, etc, if -Q
|
|
|
|
name = printable_string(&uni_stat, name);
|
|
|
|
|
|
|
|
if (!(option_mask32 & OPT_Q)) {
|
|
|
|
fputs(name, stdout);
|
|
|
|
return uni_stat.unicode_width;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = 2 + uni_stat.unicode_width;
|
|
|
|
putchar('"');
|
|
|
|
while (*name) {
|
|
|
|
if (*name == '"' || *name == '\\') {
|
|
|
|
putchar('\\');
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
putchar(*name++);
|
|
|
|
}
|
|
|
|
putchar('"');
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the number of used columns.
|
|
|
|
* Note that only STYLE_COLUMNS uses return value,
|
|
|
|
* STYLE_SINGLE and STYLE_LONG don't care.
|
|
|
|
*/
|
|
|
|
static NOINLINE unsigned list_single(const struct dnode *dn)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2009-10-03 04:45:47 +05:30
|
|
|
unsigned column = 0;
|
2010-01-31 09:45:38 +05:30
|
|
|
char *lpath = lpath; /* for compiler */
|
|
|
|
#if ENABLE_FEATURE_LS_FILETYPES || ENABLE_FEATURE_LS_COLOR
|
|
|
|
struct stat info;
|
|
|
|
char append;
|
|
|
|
#endif
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
/* Never happens:
|
2010-01-31 09:45:38 +05:30
|
|
|
if (dn->fullname == NULL)
|
|
|
|
return 0;
|
2009-10-03 04:45:47 +05:30
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2010-01-31 09:45:38 +05:30
|
|
|
#if ENABLE_FEATURE_LS_FILETYPES
|
|
|
|
append = append_char(dn->dstat.st_mode);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Do readlink early, so that if it fails, error message
|
|
|
|
* does not appear *inside* the "ls -l" line */
|
|
|
|
if (all_fmt & LIST_SYMLINK)
|
|
|
|
if (S_ISLNK(dn->dstat.st_mode))
|
|
|
|
lpath = xmalloc_readlink_or_warn(dn->fullname);
|
|
|
|
|
|
|
|
if (all_fmt & LIST_INO)
|
|
|
|
column += printf("%7llu ", (long long) dn->dstat.st_ino);
|
|
|
|
if (all_fmt & LIST_BLOCKS)
|
|
|
|
column += printf("%4"OFF_FMT"u ", (off_t) (dn->dstat.st_blocks >> 1));
|
|
|
|
if (all_fmt & LIST_MODEBITS)
|
|
|
|
column += printf("%-10s ", (char *) bb_mode_string(dn->dstat.st_mode));
|
|
|
|
if (all_fmt & LIST_NLINKS)
|
|
|
|
column += printf("%4lu ", (long) dn->dstat.st_nlink);
|
|
|
|
#if ENABLE_FEATURE_LS_USERNAME
|
|
|
|
if (all_fmt & LIST_ID_NAME) {
|
|
|
|
if (option_mask32 & OPT_g) {
|
|
|
|
column += printf("%-8.8s ",
|
|
|
|
get_cached_username(dn->dstat.st_uid));
|
|
|
|
} else {
|
|
|
|
column += printf("%-8.8s %-8.8s ",
|
|
|
|
get_cached_username(dn->dstat.st_uid),
|
|
|
|
get_cached_groupname(dn->dstat.st_gid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (all_fmt & LIST_ID_NUMERIC) {
|
|
|
|
if (option_mask32 & OPT_g)
|
|
|
|
column += printf("%-8u ", (int) dn->dstat.st_uid);
|
|
|
|
else
|
|
|
|
column += printf("%-8u %-8u ",
|
|
|
|
(int) dn->dstat.st_uid,
|
|
|
|
(int) dn->dstat.st_gid);
|
|
|
|
}
|
|
|
|
if (all_fmt & (LIST_SIZE /*|LIST_DEV*/ )) {
|
|
|
|
if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
|
|
|
|
column += printf("%4u, %3u ",
|
|
|
|
(int) major(dn->dstat.st_rdev),
|
|
|
|
(int) minor(dn->dstat.st_rdev));
|
|
|
|
} else {
|
|
|
|
if (all_fmt & LS_DISP_HR) {
|
|
|
|
column += printf("%"HUMAN_READABLE_MAX_WIDTH_STR"s ",
|
|
|
|
/* print st_size, show one fractional, use suffixes */
|
|
|
|
make_human_readable_str(dn->dstat.st_size, 1, 0)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
column += printf("%9"OFF_FMT"u ", (off_t) dn->dstat.st_size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if ENABLE_FEATURE_LS_TIMESTAMPS
|
|
|
|
if (all_fmt & (LIST_FULLTIME|LIST_DATE_TIME)) {
|
|
|
|
char *filetime;
|
|
|
|
time_t ttime = dn->dstat.st_mtime;
|
|
|
|
if (all_fmt & TIME_ACCESS)
|
|
|
|
ttime = dn->dstat.st_atime;
|
|
|
|
if (all_fmt & TIME_CHANGE)
|
|
|
|
ttime = dn->dstat.st_ctime;
|
|
|
|
filetime = ctime(&ttime);
|
|
|
|
/* filetime's format: "Wed Jun 30 21:49:08 1993\n" */
|
|
|
|
if (all_fmt & LIST_FULLTIME)
|
|
|
|
column += printf("%.24s ", filetime);
|
|
|
|
else { /* LIST_DATE_TIME */
|
|
|
|
/* current_time_t ~== time(NULL) */
|
|
|
|
time_t age = current_time_t - ttime;
|
|
|
|
printf("%.6s ", filetime + 4); /* "Jun 30" */
|
|
|
|
if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
|
|
|
|
/* hh:mm if less than 6 months old */
|
|
|
|
printf("%.5s ", filetime + 11);
|
|
|
|
} else { /* year. buggy if year > 9999 ;) */
|
|
|
|
printf(" %.4s ", filetime + 20);
|
|
|
|
}
|
|
|
|
column += 13;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if ENABLE_SELINUX
|
|
|
|
if (all_fmt & LIST_CONTEXT) {
|
|
|
|
column += printf("%-32s ", dn->sid ? dn->sid : "unknown");
|
|
|
|
freecon(dn->sid);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (all_fmt & LIST_FILENAME) {
|
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
|
|
|
if (show_color) {
|
|
|
|
info.st_mode = 0; /* for fgcolor() */
|
|
|
|
lstat(dn->fullname, &info);
|
|
|
|
printf("\033[%u;%um", bold(info.st_mode),
|
|
|
|
fgcolor(info.st_mode));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
column += print_name(dn->name);
|
|
|
|
if (show_color) {
|
|
|
|
printf("\033[0m");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (all_fmt & LIST_SYMLINK) {
|
|
|
|
if (S_ISLNK(dn->dstat.st_mode) && lpath) {
|
|
|
|
printf(" -> ");
|
|
|
|
#if ENABLE_FEATURE_LS_FILETYPES || ENABLE_FEATURE_LS_COLOR
|
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
|
|
|
info.st_mode = 0; /* for fgcolor() */
|
|
|
|
#endif
|
|
|
|
if (stat(dn->fullname, &info) == 0) {
|
|
|
|
append = append_char(info.st_mode);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
|
|
|
if (show_color) {
|
|
|
|
printf("\033[%u;%um", bold(info.st_mode),
|
|
|
|
fgcolor(info.st_mode));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
column += print_name(lpath) + 4;
|
|
|
|
if (show_color) {
|
|
|
|
printf("\033[0m");
|
|
|
|
}
|
|
|
|
free(lpath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#if ENABLE_FEATURE_LS_FILETYPES
|
|
|
|
if (all_fmt & LIST_FILETYPE) {
|
|
|
|
if (append) {
|
|
|
|
putchar(append);
|
|
|
|
column++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return column;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void showfiles(struct dnode **dn, unsigned nfiles)
|
|
|
|
{
|
|
|
|
unsigned i, ncols, nrows, row, nc;
|
|
|
|
unsigned column = 0;
|
|
|
|
unsigned nexttab = 0;
|
|
|
|
unsigned column_width = 0; /* used only by STYLE_COLUMNS */
|
|
|
|
|
|
|
|
if (all_fmt & STYLE_LONG) { /* STYLE_LONG or STYLE_SINGLE */
|
2003-01-06 06:41:50 +05:30
|
|
|
ncols = 1;
|
2003-03-19 14:43:01 +05:30
|
|
|
} else {
|
2006-10-28 18:07:51 +05:30
|
|
|
/* find the longest file name, use that as the column width */
|
2009-10-03 15:13:48 +05:30
|
|
|
for (i = 0; dn[i]; i++) {
|
2010-01-31 09:45:38 +05:30
|
|
|
int len = calc_name_len(dn[i]->name);
|
2003-03-19 14:43:01 +05:30
|
|
|
if (column_width < len)
|
|
|
|
column_width = len;
|
|
|
|
}
|
2006-10-28 18:07:51 +05:30
|
|
|
column_width += tabstops +
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_SELINUX( ((all_fmt & LIST_CONTEXT) ? 33 : 0) + )
|
2010-01-31 09:45:38 +05:30
|
|
|
((all_fmt & LIST_INO) ? 8 : 0) +
|
|
|
|
((all_fmt & LIST_BLOCKS) ? 5 : 0);
|
2003-01-06 06:41:50 +05:30
|
|
|
ncols = (int) (terminal_width / column_width);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2001-01-30 23:33:11 +05:30
|
|
|
if (ncols > 1) {
|
|
|
|
nrows = nfiles / ncols;
|
2006-10-28 18:07:51 +05:30
|
|
|
if (nrows * ncols < nfiles)
|
2003-01-06 06:41:50 +05:30
|
|
|
nrows++; /* round up fractionals */
|
2001-01-30 23:33:11 +05:30
|
|
|
} else {
|
|
|
|
nrows = nfiles;
|
|
|
|
ncols = 1;
|
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2002-08-22 23:43:54 +05:30
|
|
|
for (row = 0; row < nrows; row++) {
|
|
|
|
for (nc = 0; nc < ncols; nc++) {
|
2000-09-07 22:54:47 +05:30
|
|
|
/* reach into the array based on the column and row */
|
2003-03-19 14:43:01 +05:30
|
|
|
if (all_fmt & DISP_ROWS)
|
2002-08-22 23:43:54 +05:30
|
|
|
i = (row * ncols) + nc; /* display across row */
|
2009-10-03 15:12:33 +05:30
|
|
|
else
|
|
|
|
i = (nc * nrows) + row; /* display by column */
|
2000-09-07 22:54:47 +05:30
|
|
|
if (i < nfiles) {
|
2003-01-06 06:41:50 +05:30
|
|
|
if (column > 0) {
|
|
|
|
nexttab -= column;
|
2006-10-28 18:07:16 +05:30
|
|
|
printf("%*s", nexttab, "");
|
|
|
|
column += nexttab;
|
|
|
|
}
|
2003-01-06 06:41:50 +05:30
|
|
|
nexttab = column + column_width;
|
|
|
|
column += list_single(dn[i]);
|
2006-10-28 18:07:16 +05:30
|
|
|
}
|
2003-01-06 06:41:50 +05:30
|
|
|
}
|
|
|
|
putchar('\n');
|
|
|
|
column = 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
|
2009-10-03 04:44:15 +05:30
|
|
|
#if ENABLE_DESKTOP
|
2009-10-03 14:23:36 +05:30
|
|
|
/* http://www.opengroup.org/onlinepubs/9699919799/utilities/ls.html
|
|
|
|
* If any of the -l, -n, -s options is specified, each list
|
|
|
|
* of files within the directory shall be preceded by a
|
|
|
|
* status line indicating the number of file system blocks
|
|
|
|
* occupied by files in the directory in 512-byte units if
|
|
|
|
* the -k option is not specified, or 1024-byte units if the
|
|
|
|
* -k option is specified, rounded up to the next integral
|
|
|
|
* number of units.
|
|
|
|
*/
|
|
|
|
/* by Jorgen Overgaard (jorgen AT antistaten.se) */
|
2009-10-03 15:15:07 +05:30
|
|
|
static off_t calculate_blocks(struct dnode **dn)
|
2009-10-03 04:44:15 +05:30
|
|
|
{
|
|
|
|
uoff_t blocks = 1;
|
2009-10-03 15:15:07 +05:30
|
|
|
if (dn) {
|
|
|
|
while (*dn) {
|
|
|
|
/* st_blocks is in 512 byte blocks */
|
|
|
|
blocks += (*dn)->dstat.st_blocks;
|
|
|
|
dn++;
|
|
|
|
}
|
2009-10-03 04:44:15 +05:30
|
|
|
}
|
|
|
|
|
2009-10-03 14:23:36 +05:30
|
|
|
/* Even though standard says use 512 byte blocks, coreutils use 1k */
|
2009-10-03 04:44:15 +05:30
|
|
|
/* Actually, we round up by calculating (blocks + 1) / 2,
|
|
|
|
* "+ 1" was done when we initialized blocks to 1 */
|
|
|
|
return blocks >> 1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2010-01-31 09:45:38 +05:30
|
|
|
static struct dnode **list_dir(const char *, unsigned *);
|
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
static void showdirs(struct dnode **dn, int first)
|
2000-09-07 22:54:47 +05:30
|
|
|
{
|
2009-10-03 15:13:48 +05:30
|
|
|
unsigned nfiles;
|
2009-10-03 04:45:47 +05:30
|
|
|
unsigned dndirs;
|
2009-10-03 15:13:48 +05:30
|
|
|
struct dnode **subdnp;
|
2000-09-07 22:54:47 +05:30
|
|
|
struct dnode **dnd;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
/* Never happens:
|
|
|
|
if (dn == NULL || ndirs < 1) {
|
2002-08-22 23:43:54 +05:30
|
|
|
return;
|
2009-10-03 04:45:47 +05:30
|
|
|
}
|
|
|
|
*/
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
for (; *dn; dn++) {
|
2003-03-19 14:43:01 +05:30
|
|
|
if (all_fmt & (DISP_DIRNAME | DISP_RECURSIVE)) {
|
2004-03-06 14:42:55 +05:30
|
|
|
if (!first)
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('\n');
|
2004-03-06 14:42:55 +05:30
|
|
|
first = 0;
|
2009-10-03 15:13:48 +05:30
|
|
|
printf("%s:\n", (*dn)->fullname);
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
2009-10-03 15:13:48 +05:30
|
|
|
subdnp = list_dir((*dn)->fullname, &nfiles);
|
2009-10-03 04:44:15 +05:30
|
|
|
#if ENABLE_DESKTOP
|
2009-10-23 19:52:25 +05:30
|
|
|
if ((all_fmt & STYLE_MASK) == STYLE_LONG)
|
2009-10-03 15:13:48 +05:30
|
|
|
printf("total %"OFF_FMT"u\n", calculate_blocks(subdnp));
|
2009-10-03 04:44:15 +05:30
|
|
|
#endif
|
2000-09-07 22:54:47 +05:30
|
|
|
if (nfiles > 0) {
|
|
|
|
/* list all files at this level */
|
2006-10-28 18:07:51 +05:30
|
|
|
dnsort(subdnp, nfiles);
|
2000-09-07 22:54:47 +05:30
|
|
|
showfiles(subdnp, nfiles);
|
2009-10-03 15:12:33 +05:30
|
|
|
if (ENABLE_FEATURE_LS_RECURSIVE
|
|
|
|
&& (all_fmt & DISP_RECURSIVE)
|
|
|
|
) {
|
|
|
|
/* recursive - list the sub-dirs */
|
2009-10-03 15:13:48 +05:30
|
|
|
dnd = splitdnarray(subdnp, SPLIT_SUBDIR);
|
|
|
|
dndirs = count_dirs(subdnp, SPLIT_SUBDIR);
|
2009-10-03 15:12:33 +05:30
|
|
|
if (dndirs > 0) {
|
|
|
|
dnsort(dnd, dndirs);
|
2009-10-03 15:13:48 +05:30
|
|
|
showdirs(dnd, 0);
|
2009-10-03 15:12:33 +05:30
|
|
|
/* free the array of dnode pointers to the dirs */
|
|
|
|
free(dnd);
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
|
|
|
}
|
2009-10-03 15:12:33 +05:30
|
|
|
/* free the dnodes and the fullname mem */
|
2009-10-03 15:13:48 +05:30
|
|
|
dfree(subdnp);
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
|
2009-10-03 15:13:48 +05:30
|
|
|
/* Returns NULL-terminated malloced vector of pointers (or NULL) */
|
2009-10-03 04:45:47 +05:30
|
|
|
static struct dnode **list_dir(const char *path, unsigned *nfiles_p)
|
2000-09-07 22:54:47 +05:30
|
|
|
{
|
|
|
|
struct dnode *dn, *cur, **dnp;
|
|
|
|
struct dirent *entry;
|
|
|
|
DIR *dir;
|
2009-10-03 04:45:47 +05:30
|
|
|
unsigned i, nfiles;
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
/* Never happens:
|
2002-08-22 23:43:54 +05:30
|
|
|
if (path == NULL)
|
2006-10-28 18:07:16 +05:30
|
|
|
return NULL;
|
2009-10-03 04:45:47 +05:30
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
*nfiles_p = 0;
|
2006-08-03 21:11:12 +05:30
|
|
|
dir = warn_opendir(path);
|
2000-09-07 22:54:47 +05:30
|
|
|
if (dir == NULL) {
|
2008-06-18 22:08:22 +05:30
|
|
|
exit_code = EXIT_FAILURE;
|
2006-10-28 18:07:16 +05:30
|
|
|
return NULL; /* could not open the dir */
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
2009-10-03 04:45:47 +05:30
|
|
|
dn = NULL;
|
|
|
|
nfiles = 0;
|
1999-10-05 21:54:54 +05:30
|
|
|
while ((entry = readdir(dir)) != NULL) {
|
2003-01-06 06:41:50 +05:30
|
|
|
char *fullname;
|
|
|
|
|
2000-09-07 22:54:47 +05:30
|
|
|
/* are we going to list the file- it may be . or .. or a hidden file */
|
2003-01-06 06:41:50 +05:30
|
|
|
if (entry->d_name[0] == '.') {
|
2007-04-14 05:29:52 +05:30
|
|
|
if ((!entry->d_name[1] || (entry->d_name[1] == '.' && !entry->d_name[2]))
|
|
|
|
&& !(all_fmt & DISP_DOT)
|
|
|
|
) {
|
2006-10-28 18:07:51 +05:30
|
|
|
continue;
|
2007-04-14 05:29:52 +05:30
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
if (!(all_fmt & DISP_HIDDEN))
|
2006-10-28 18:07:51 +05:30
|
|
|
continue;
|
2003-01-06 06:41:50 +05:30
|
|
|
}
|
|
|
|
fullname = concat_path_file(path, entry->d_name);
|
2007-06-30 13:34:05 +05:30
|
|
|
cur = my_stat(fullname, bb_basename(fullname), 0);
|
2006-10-28 18:07:16 +05:30
|
|
|
if (!cur) {
|
2006-10-28 18:07:51 +05:30
|
|
|
free(fullname);
|
2000-09-07 22:54:47 +05:30
|
|
|
continue;
|
2006-10-28 18:07:16 +05:30
|
|
|
}
|
2009-10-03 04:45:47 +05:30
|
|
|
cur->fname_allocated = 1;
|
2002-08-22 23:43:54 +05:30
|
|
|
cur->next = dn;
|
|
|
|
dn = cur;
|
2000-09-07 22:54:47 +05:30
|
|
|
nfiles++;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
closedir(dir);
|
2000-02-12 03:25:04 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
if (dn == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2000-09-07 22:54:47 +05:30
|
|
|
/* now that we know how many files there are
|
2006-10-28 18:32:55 +05:30
|
|
|
* allocate memory for an array to hold dnode pointers
|
2002-08-22 23:43:54 +05:30
|
|
|
*/
|
2009-10-03 04:45:47 +05:30
|
|
|
*nfiles_p = nfiles;
|
2002-08-22 23:43:54 +05:30
|
|
|
dnp = dnalloc(nfiles);
|
2009-10-03 04:45:47 +05:30
|
|
|
for (i = 0; /* i < nfiles - detected via !dn below */; i++) {
|
|
|
|
dnp[i] = dn; /* save pointer to node in array */
|
|
|
|
dn = dn->next;
|
|
|
|
if (!dn)
|
|
|
|
break;
|
2000-02-12 03:25:04 +05:30
|
|
|
}
|
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
return dnp;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2006-10-28 18:07:51 +05:30
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
int ls_main(int argc UNUSED_PARAM, char **argv)
|
2003-03-19 14:43:01 +05:30
|
|
|
{
|
2004-01-18 10:45:16 +05:30
|
|
|
struct dnode **dnd;
|
|
|
|
struct dnode **dnf;
|
|
|
|
struct dnode **dnp;
|
|
|
|
struct dnode *dn;
|
|
|
|
struct dnode *cur;
|
2006-10-04 02:30:06 +05:30
|
|
|
unsigned opt;
|
2009-10-03 04:45:47 +05:30
|
|
|
unsigned nfiles;
|
|
|
|
unsigned dnfiles;
|
|
|
|
unsigned dndirs;
|
|
|
|
unsigned i;
|
2009-07-03 15:52:19 +05:30
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
|
|
|
/* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */
|
|
|
|
/* coreutils 6.10:
|
|
|
|
* # ls --color=BOGUS
|
|
|
|
* ls: invalid argument 'BOGUS' for '--color'
|
|
|
|
* Valid arguments are:
|
|
|
|
* 'always', 'yes', 'force'
|
|
|
|
* 'never', 'no', 'none'
|
|
|
|
* 'auto', 'tty', 'if-tty'
|
|
|
|
* (and substrings: "--color=alwa" work too)
|
|
|
|
*/
|
|
|
|
static const char ls_longopts[] ALIGN1 =
|
|
|
|
"color\0" Optional_argument "\xff"; /* no short equivalent */
|
|
|
|
static const char color_str[] ALIGN1 =
|
|
|
|
"always\0""yes\0""force\0"
|
|
|
|
"auto\0""tty\0""if-tty\0";
|
2008-07-15 10:51:47 +05:30
|
|
|
/* need to initialize since --color has _an optional_ argument */
|
2009-07-03 15:52:19 +05:30
|
|
|
const char *color_opt = color_str; /* "always" */
|
|
|
|
#endif
|
2004-01-18 10:45:16 +05:30
|
|
|
|
2008-06-13 16:46:09 +05:30
|
|
|
INIT_G();
|
2007-01-20 03:33:06 +05:30
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
init_unicode();
|
2009-07-12 01:06:13 +05:30
|
|
|
|
2006-06-20 23:13:01 +05:30
|
|
|
all_fmt = LIST_SHORT |
|
2006-10-28 18:07:51 +05:30
|
|
|
(ENABLE_FEATURE_LS_SORTFILES * (SORT_NAME | SORT_FORWARD));
|
2004-01-18 10:45:16 +05:30
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
2009-07-03 15:52:19 +05:30
|
|
|
/* obtain the terminal width */
|
2007-08-09 13:57:24 +05:30
|
|
|
get_terminal_width_height(STDIN_FILENO, &terminal_width, NULL);
|
2009-07-03 15:52:19 +05:30
|
|
|
/* go one less... */
|
2003-09-15 14:03:45 +05:30
|
|
|
terminal_width--;
|
2003-11-05 04:46:48 +05:30
|
|
|
#endif
|
2003-03-19 14:43:01 +05:30
|
|
|
|
|
|
|
/* process options */
|
2009-07-03 15:52:19 +05:30
|
|
|
IF_FEATURE_LS_COLOR(applet_long_options = ls_longopts;)
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_AUTOWIDTH
|
2008-03-17 14:39:09 +05:30
|
|
|
opt_complementary = "T+:w+"; /* -T N, -w N */
|
|
|
|
opt = getopt32(argv, ls_options, &tabstops, &terminal_width
|
2009-04-21 16:39:40 +05:30
|
|
|
IF_FEATURE_LS_COLOR(, &color_opt));
|
2004-01-18 10:45:16 +05:30
|
|
|
#else
|
2009-04-21 16:39:40 +05:30
|
|
|
opt = getopt32(argv, ls_options IF_FEATURE_LS_COLOR(, &color_opt));
|
2001-01-23 04:05:38 +05:30
|
|
|
#endif
|
2004-02-05 19:22:03 +05:30
|
|
|
for (i = 0; opt_flags[i] != (1U<<31); i++) {
|
2004-01-18 10:45:16 +05:30
|
|
|
if (opt & (1 << i)) {
|
2006-10-28 18:07:16 +05:30
|
|
|
unsigned flags = opt_flags[i];
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
if (flags & LIST_MASK_TRIGGER)
|
2003-03-19 14:43:01 +05:30
|
|
|
all_fmt &= ~LIST_MASK;
|
2006-10-28 18:07:16 +05:30
|
|
|
if (flags & STYLE_MASK_TRIGGER)
|
2003-03-19 14:43:01 +05:30
|
|
|
all_fmt &= ~STYLE_MASK;
|
2006-10-28 18:07:51 +05:30
|
|
|
if (flags & SORT_MASK_TRIGGER)
|
2003-03-19 14:43:01 +05:30
|
|
|
all_fmt &= ~SORT_MASK;
|
2006-10-28 18:07:16 +05:30
|
|
|
if (flags & DISP_MASK_TRIGGER)
|
2003-03-19 14:43:01 +05:30
|
|
|
all_fmt &= ~DISP_MASK;
|
2006-10-28 18:07:16 +05:30
|
|
|
if (flags & TIME_MASK)
|
2003-03-19 14:43:01 +05:30
|
|
|
all_fmt &= ~TIME_MASK;
|
2006-10-28 18:07:16 +05:30
|
|
|
if (flags & LIST_CONTEXT)
|
2003-07-03 15:37:04 +05:30
|
|
|
all_fmt |= STYLE_SINGLE;
|
2007-03-01 04:44:06 +05:30
|
|
|
/* huh?? opt cannot be 'l' */
|
|
|
|
//if (LS_DISP_HR && opt == 'l')
|
|
|
|
// all_fmt &= ~LS_DISP_HR;
|
2003-03-19 14:43:01 +05:30
|
|
|
all_fmt |= flags;
|
2000-09-07 22:54:47 +05:30
|
|
|
}
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
#if ENABLE_FEATURE_LS_COLOR
|
|
|
|
/* find color bit value - last position for short getopt */
|
|
|
|
if (ENABLE_FEATURE_LS_COLOR_IS_DEFAULT && isatty(STDOUT_FILENO)) {
|
|
|
|
char *p = getenv("LS_COLORS");
|
|
|
|
/* LS_COLORS is unset, or (not empty && not "none") ? */
|
2008-07-15 10:51:47 +05:30
|
|
|
if (!p || (p[0] && strcmp(p, "none") != 0))
|
2006-10-28 18:07:16 +05:30
|
|
|
show_color = 1;
|
|
|
|
}
|
2009-07-03 15:52:19 +05:30
|
|
|
if (opt & OPT_color) {
|
|
|
|
if (color_opt[0] == 'n')
|
2006-10-28 18:07:16 +05:30
|
|
|
show_color = 0;
|
2009-07-03 15:52:19 +05:30
|
|
|
else switch (index_in_substrings(color_str, color_opt)) {
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
case 5:
|
|
|
|
if (isatty(STDOUT_FILENO)) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
show_color = 1;
|
|
|
|
}
|
|
|
|
}
|
2005-08-02 01:03:30 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-09-07 22:54:47 +05:30
|
|
|
/* sort out which command line options take precedence */
|
2006-10-28 18:07:16 +05:30
|
|
|
if (ENABLE_FEATURE_LS_RECURSIVE && (all_fmt & DISP_NOLIST))
|
2003-03-19 14:43:01 +05:30
|
|
|
all_fmt &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
|
2006-06-19 01:50:07 +05:30
|
|
|
if (ENABLE_FEATURE_LS_TIMESTAMPS && ENABLE_FEATURE_LS_SORTFILES) {
|
|
|
|
if (all_fmt & TIME_CHANGE)
|
|
|
|
all_fmt = (all_fmt & ~SORT_MASK) | SORT_CTIME;
|
|
|
|
if (all_fmt & TIME_ACCESS)
|
|
|
|
all_fmt = (all_fmt & ~SORT_MASK) | SORT_ATIME;
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
if ((all_fmt & STYLE_MASK) != STYLE_LONG) /* only for long list */
|
|
|
|
all_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC);
|
2006-10-28 18:07:16 +05:30
|
|
|
if (ENABLE_FEATURE_LS_USERNAME)
|
|
|
|
if ((all_fmt & STYLE_MASK) == STYLE_LONG && (all_fmt & LIST_ID_NUMERIC))
|
|
|
|
all_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
|
2004-03-15 13:59:22 +05:30
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
/* choose a display format */
|
2006-06-19 01:50:07 +05:30
|
|
|
if (!(all_fmt & STYLE_MASK))
|
2004-03-27 15:32:48 +05:30
|
|
|
all_fmt |= (isatty(STDOUT_FILENO) ? STYLE_COLUMNS : STYLE_SINGLE);
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2008-06-13 16:46:09 +05:30
|
|
|
argv += optind;
|
|
|
|
if (!argv[0])
|
|
|
|
*--argv = (char*)".";
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2008-06-13 16:46:09 +05:30
|
|
|
if (argv[1])
|
|
|
|
all_fmt |= DISP_DIRNAME; /* 2 or more items? label directories */
|
2000-09-07 22:54:47 +05:30
|
|
|
|
2006-10-28 18:07:16 +05:30
|
|
|
/* stuff the command line file names into a dnode array */
|
2002-08-22 23:43:54 +05:30
|
|
|
dn = NULL;
|
2008-06-13 16:46:09 +05:30
|
|
|
nfiles = 0;
|
|
|
|
do {
|
2009-03-03 18:50:22 +05:30
|
|
|
/* NB: follow links on command line unless -l or -s */
|
|
|
|
cur = my_stat(*argv, *argv, !(all_fmt & (STYLE_LONG|LIST_BLOCKS)));
|
2008-06-13 16:46:09 +05:30
|
|
|
argv++;
|
2003-01-06 06:41:50 +05:30
|
|
|
if (!cur)
|
2000-09-07 22:54:47 +05:30
|
|
|
continue;
|
2009-10-03 04:45:47 +05:30
|
|
|
cur->fname_allocated = 0;
|
2002-08-22 23:43:54 +05:30
|
|
|
cur->next = dn;
|
|
|
|
dn = cur;
|
2000-09-07 22:54:47 +05:30
|
|
|
nfiles++;
|
2008-06-13 16:46:09 +05:30
|
|
|
} while (*argv);
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2009-10-03 04:45:47 +05:30
|
|
|
/* nfiles _may_ be 0 here - try "ls doesnt_exist" */
|
|
|
|
if (nfiles == 0)
|
|
|
|
return exit_code;
|
|
|
|
|
2000-09-07 22:54:47 +05:30
|
|
|
/* now that we know how many files there are
|
2006-10-28 18:32:55 +05:30
|
|
|
* allocate memory for an array to hold dnode pointers
|
|
|
|
*/
|
2002-08-22 23:43:54 +05:30
|
|
|
dnp = dnalloc(nfiles);
|
2009-10-03 04:45:47 +05:30
|
|
|
for (i = 0; /* i < nfiles - detected via !dn below */; i++) {
|
|
|
|
dnp[i] = dn; /* save pointer to node in array */
|
|
|
|
dn = dn->next;
|
|
|
|
if (!dn)
|
|
|
|
break;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
if (all_fmt & DISP_NOLIST) {
|
2006-10-28 18:07:51 +05:30
|
|
|
dnsort(dnp, nfiles);
|
2009-10-03 04:45:47 +05:30
|
|
|
showfiles(dnp, nfiles);
|
2000-09-07 22:54:47 +05:30
|
|
|
} else {
|
2009-10-03 15:13:48 +05:30
|
|
|
dnd = splitdnarray(dnp, SPLIT_DIR);
|
|
|
|
dnf = splitdnarray(dnp, SPLIT_FILE);
|
|
|
|
dndirs = count_dirs(dnp, SPLIT_DIR);
|
2002-08-22 23:43:54 +05:30
|
|
|
dnfiles = nfiles - dndirs;
|
2000-09-07 22:54:47 +05:30
|
|
|
if (dnfiles > 0) {
|
2006-10-28 18:07:51 +05:30
|
|
|
dnsort(dnf, dnfiles);
|
2000-09-07 22:54:47 +05:30
|
|
|
showfiles(dnf, dnfiles);
|
2006-05-03 01:16:52 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(dnf);
|
2000-06-07 22:58:53 +05:30
|
|
|
}
|
2000-09-07 22:54:47 +05:30
|
|
|
if (dndirs > 0) {
|
2006-10-28 18:07:51 +05:30
|
|
|
dnsort(dnd, dndirs);
|
2009-10-03 15:13:48 +05:30
|
|
|
showdirs(dnd, dnfiles == 0);
|
2006-05-03 01:16:52 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(dnd);
|
2000-06-07 22:58:53 +05:30
|
|
|
}
|
|
|
|
}
|
2006-05-03 01:16:52 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2009-10-03 15:13:48 +05:30
|
|
|
dfree(dnp);
|
2008-06-18 22:08:22 +05:30
|
|
|
return exit_code;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|