blob: 64ec0fee69db3f23012a86009a01e25030c07fcb [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 Andersen5307eca2001-01-26 01:52:43 +000065
Eric Andersenbdfd0d72001-10-24 05:00:29 +000066#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersenf1142c52001-02-20 06:16:29 +000067#include <time.h>
68#endif
69
Eric Andersen30f64c32001-01-30 19:23:46 +000070#ifndef MAJOR
Erik Andersen1ad302a2000-03-24 00:54:46 +000071#define MAJOR(dev) (((dev)>>8)&0xff)
72#define MINOR(dev) ((dev)&0xff)
73#endif
74
Eric Andersen11c65522000-09-07 17:24:47 +000075/* what is the overall style of the listing */
Mark Whitley59ab0252001-01-23 22:30:04 +000076enum {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +000077 STYLE_AUTO = 0,
78 STYLE_LONG = 1, /* one record per line, extended info */
79 STYLE_SINGLE = 2, /* one record per line */
80 STYLE_COLUMNS = 3 /* fill columns */
Mark Whitley59ab0252001-01-23 22:30:04 +000081};
Eric Andersencc8ed391999-10-05 16:24:54 +000082
Eric Andersen11c65522000-09-07 17:24:47 +000083/* 51306 lrwxrwxrwx 1 root root 2 May 11 01:43 /bin/view -> vi* */
84/* what file information will be listed */
85#define LIST_INO (1<<0)
86#define LIST_BLOCKS (1<<1)
87#define LIST_MODEBITS (1<<2)
88#define LIST_NLINKS (1<<3)
89#define LIST_ID_NAME (1<<4)
90#define LIST_ID_NUMERIC (1<<5)
91#define LIST_SIZE (1<<6)
92#define LIST_DEV (1<<7)
93#define LIST_DATE_TIME (1<<8)
94#define LIST_FULLTIME (1<<9)
95#define LIST_FILENAME (1<<10)
96#define LIST_SYMLINK (1<<11)
97#define LIST_FILETYPE (1<<12)
98#define LIST_EXEC (1<<13)
99
100/* what files will be displayed */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000101#define DISP_NORMAL (0) /* show normal filenames */
Eric Andersen11c65522000-09-07 17:24:47 +0000102#define DISP_DIRNAME (1<<0) /* 2 or more items? label directories */
103#define DISP_HIDDEN (1<<1) /* show filenames starting with . */
104#define DISP_DOT (1<<2) /* show . and .. */
105#define DISP_NOLIST (1<<3) /* show directory as itself, not contents */
106#define DISP_RECURSIVE (1<<4) /* show directory and everything below it */
107#define DISP_ROWS (1<<5) /* print across rows */
108
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000109#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000110/* how will the files be sorted */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000111static const int SORT_FORWARD = 0; /* sort in reverse order */
112static const int SORT_REVERSE = 1; /* sort in reverse order */
113static const int SORT_NAME = 2; /* sort by file name */
114static const int SORT_SIZE = 3; /* sort by file size */
115static const int SORT_ATIME = 4; /* sort by last access time */
116static const int SORT_CTIME = 5; /* sort by last change time */
117static const int SORT_MTIME = 6; /* sort by last modification time */
118static const int SORT_VERSION = 7; /* sort by version */
119static const int SORT_EXT = 8; /* sort by file name extension */
120static const int SORT_DIR = 9; /* sort by file or directory */
Eric Andersencc8ed391999-10-05 16:24:54 +0000121#endif
122
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000123#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000124/* which of the three times will be used */
Mark Whitley59ab0252001-01-23 22:30:04 +0000125static const int TIME_MOD = 0;
126static const int TIME_CHANGE = 1;
127static const int TIME_ACCESS = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +0000128#endif
129
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000130#define LIST_SHORT (LIST_FILENAME)
131#define LIST_ISHORT (LIST_INO | LIST_FILENAME)
132#define LIST_LONG (LIST_MODEBITS | LIST_NLINKS | LIST_ID_NAME | LIST_SIZE | \
133 LIST_DATE_TIME | LIST_FILENAME | LIST_SYMLINK)
134#define LIST_ILONG (LIST_INO | LIST_LONG)
Eric Andersencc8ed391999-10-05 16:24:54 +0000135
Mark Whitley59ab0252001-01-23 22:30:04 +0000136static const int SPLIT_DIR = 0;
137static const int SPLIT_FILE = 1;
138static const int SPLIT_SUBDIR = 2;
Eric Andersencc8ed391999-10-05 16:24:54 +0000139
Eric Andersen11c65522000-09-07 17:24:47 +0000140#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
141#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000142
Eric Andersend598d412002-04-27 09:19:39 +0000143#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000144# define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
Eric Andersen11c65522000-09-07 17:24:47 +0000145#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000146
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000147/* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */
148#ifdef CONFIG_FEATURE_LS_COLOR
149static int show_color = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000150
151#define COLOR(mode) ("\000\043\043\043\042\000\043\043"\
152 "\000\000\044\000\043\000\000\040" [TYPEINDEX(mode)])
153#define ATTR(mode) ("\00\00\01\00\01\00\01\00"\
154 "\00\00\01\00\01\00\00\01" [TYPEINDEX(mode)])
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000155#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156
Eric Andersen11c65522000-09-07 17:24:47 +0000157/*
158 * a directory entry and its stat info are stored here
159 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000160struct dnode { /* the basic node */
161 char *name; /* the dir entry name */
162 char *fullname; /* the dir entry name */
163 struct stat dstat; /* the file stat info */
164 struct dnode *next; /* point at the next node */
Eric Andersen11c65522000-09-07 17:24:47 +0000165};
166typedef struct dnode dnode_t;
167
Glenn L McGrath4d001292003-01-06 01:11:50 +0000168static struct dnode **list_dir(const char *);
Eric Andersen3e6ff902001-03-09 21:24:12 +0000169static struct dnode **dnalloc(int);
170static int list_single(struct dnode *);
Eric Andersen11c65522000-09-07 17:24:47 +0000171
Mark Whitley59ab0252001-01-23 22:30:04 +0000172static unsigned int disp_opts;
173static unsigned int style_fmt;
174static unsigned int list_fmt;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000175
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000176#ifdef CONFIG_FEATURE_LS_SORTFILES
Mark Whitley59ab0252001-01-23 22:30:04 +0000177static unsigned int sort_opts;
178static unsigned int sort_order;
Eric Andersen11c65522000-09-07 17:24:47 +0000179#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000180#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Mark Whitley59ab0252001-01-23 22:30:04 +0000181static unsigned int time_fmt;
Eric Andersen11c65522000-09-07 17:24:47 +0000182#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000183#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000184static unsigned int follow_links = FALSE;
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000185#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000186
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000187#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersene57d54b2001-01-30 18:03:11 +0000188static unsigned short terminal_width = TERMINAL_WIDTH;
Eric Andersene57d54b2001-01-30 18:03:11 +0000189static unsigned short tabstops = COLUMN_GAP;
Eric Andersenf5d5e772001-01-24 23:34:48 +0000190#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000191#define tabstops COLUMN_GAP
192#define terminal_width TERMINAL_WIDTH
Eric Andersen11c65522000-09-07 17:24:47 +0000193#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000194
Matt Kraai33fdae52000-10-13 17:59:43 +0000195static int status = EXIT_SUCCESS;
196
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000197#ifdef CONFIG_FEATURE_HUMAN_READABLE
Eric Andersen3e6ff902001-03-09 21:24:12 +0000198static unsigned long ls_disp_hr = 0;
Richard June6d0921c2001-01-22 22:35:38 +0000199#endif
200
Glenn L McGrath4d001292003-01-06 01:11:50 +0000201static struct dnode *my_stat(char *fullname, char *name)
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000202{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000203 struct stat dstat;
204 struct dnode *cur;
205
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000206#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Matt Kraai1f0c4362001-12-20 23:13:26 +0000207 if (follow_links) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000208 if (stat(fullname, &dstat)) {
209 perror_msg("%s", fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000210 status = EXIT_FAILURE;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000211 return 0;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000212 }
213 } else
214#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000215 if (lstat(fullname, &dstat)) {
216 perror_msg("%s", fullname);
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000217 status = EXIT_FAILURE;
Matt Kraai9a6e67c2000-10-13 18:03:21 +0000218 return 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000219 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000220
221 cur = (struct dnode *) xmalloc(sizeof(struct dnode));
222 cur->fullname = fullname;
223 cur->name = name;
224 cur->dstat = dstat;
225 return cur;
Eric Andersen79565b62000-08-11 18:10:21 +0000226}
227
Eric Andersen11c65522000-09-07 17:24:47 +0000228/*----------------------------------------------------------------------*/
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000229#ifdef CONFIG_FEATURE_LS_COLOR
230static char fgcolor(mode_t mode)
231{
232 /* Check wheter the file is existing (if so, color it red!) */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000233 if (errno == ENOENT) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000234 return '\037';
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000235 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000236 if (LIST_EXEC && S_ISREG(mode)
237 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000238 return COLOR(0xF000); /* File is executable ... */
239 return COLOR(mode);
240}
241
242/*----------------------------------------------------------------------*/
243static char bgcolor(mode_t mode)
244{
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000245 if (LIST_EXEC && S_ISREG(mode)
246 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000247 return ATTR(0xF000); /* File is executable ... */
248 return ATTR(mode);
249}
250#endif
251
252/*----------------------------------------------------------------------*/
Eric Andersend598d412002-04-27 09:19:39 +0000253#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000254static char append_char(mode_t mode)
Eric Andersen79565b62000-08-11 18:10:21 +0000255{
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000256 if (!(list_fmt & LIST_FILETYPE))
Eric Andersen11c65522000-09-07 17:24:47 +0000257 return '\0';
258 if ((list_fmt & LIST_EXEC) && S_ISREG(mode)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000259 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH)))
260 return '*';
261 return APPCHAR(mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000262}
263#endif
Eric Andersen79565b62000-08-11 18:10:21 +0000264
Eric Andersen11c65522000-09-07 17:24:47 +0000265/*----------------------------------------------------------------------*/
Eric Andersencf1189f2000-11-29 21:52:06 +0000266static int is_subdir(struct dnode *dn)
267{
268 return (S_ISDIR(dn->dstat.st_mode) && strcmp(dn->name, ".") != 0 &&
269 strcmp(dn->name, "..") != 0);
270}
271
Eric Andersen3e6ff902001-03-09 21:24:12 +0000272static int countdirs(struct dnode **dn, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000273{
274 int i, dirs;
275
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000276 if (dn == NULL || nfiles < 1)
277 return (0);
278 dirs = 0;
279 for (i = 0; i < nfiles; i++) {
280 if (S_ISDIR(dn[i]->dstat.st_mode))
281 dirs++;
Eric Andersen11c65522000-09-07 17:24:47 +0000282 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000283 return (dirs);
Eric Andersen11c65522000-09-07 17:24:47 +0000284}
285
Eric Andersen3e6ff902001-03-09 21:24:12 +0000286static int countsubdirs(struct dnode **dn, int nfiles)
Eric Andersencf1189f2000-11-29 21:52:06 +0000287{
288 int i, subdirs;
289
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000290 if (dn == NULL || nfiles < 1)
291 return 0;
Eric Andersencf1189f2000-11-29 21:52:06 +0000292 subdirs = 0;
293 for (i = 0; i < nfiles; i++)
294 if (is_subdir(dn[i]))
295 subdirs++;
296 return subdirs;
297}
298
Eric Andersen3e6ff902001-03-09 21:24:12 +0000299static int countfiles(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000300{
301 int nfiles;
302 struct dnode *cur;
303
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000304 if (dnp == NULL)
305 return (0);
306 nfiles = 0;
307 for (cur = dnp[0]; cur->next != NULL; cur = cur->next)
308 nfiles++;
Eric Andersen11c65522000-09-07 17:24:47 +0000309 nfiles++;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000310 return (nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000311}
312
313/* get memory to hold an array of pointers */
Eric Andersen3e6ff902001-03-09 21:24:12 +0000314static struct dnode **dnalloc(int num)
Eric Andersen11c65522000-09-07 17:24:47 +0000315{
316 struct dnode **p;
317
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000318 if (num < 1)
319 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000320
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000321 p = (struct dnode **) xcalloc((size_t) num,
322 (size_t) (sizeof(struct dnode *)));
323 return (p);
Eric Andersen11c65522000-09-07 17:24:47 +0000324}
325
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000326#ifdef CONFIG_FEATURE_LS_RECURSIVE
Eric Andersen3e6ff902001-03-09 21:24:12 +0000327static void dfree(struct dnode **dnp)
Eric Andersen11c65522000-09-07 17:24:47 +0000328{
329 struct dnode *cur, *next;
330
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000331 if (dnp == NULL)
332 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000333
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000334 cur = dnp[0];
Eric Andersen11c65522000-09-07 17:24:47 +0000335 while (cur != NULL) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000336 free(cur->fullname); /* free the filename */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000337 next = cur->next;
338 free(cur); /* free the dnode */
339 cur = next;
Eric Andersen11c65522000-09-07 17:24:47 +0000340 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000341 free(dnp); /* free the array holding the dnode pointers */
Eric Andersen11c65522000-09-07 17:24:47 +0000342}
Eric Andersen20aab262001-07-19 22:28:02 +0000343#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000344
Eric Andersen3e6ff902001-03-09 21:24:12 +0000345static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which)
Eric Andersen11c65522000-09-07 17:24:47 +0000346{
347 int dncnt, i, d;
348 struct dnode **dnp;
349
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000350 if (dn == NULL || nfiles < 1)
351 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000352
353 /* count how many dirs and regular files there are */
Eric Andersencf1189f2000-11-29 21:52:06 +0000354 if (which == SPLIT_SUBDIR)
355 dncnt = countsubdirs(dn, nfiles);
356 else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000357 dncnt = countdirs(dn, nfiles); /* assume we are looking for dirs */
Eric Andersencf1189f2000-11-29 21:52:06 +0000358 if (which == SPLIT_FILE)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000359 dncnt = nfiles - dncnt; /* looking for files */
Eric Andersencf1189f2000-11-29 21:52:06 +0000360 }
Eric Andersen11c65522000-09-07 17:24:47 +0000361
362 /* allocate a file array and a dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000363 dnp = dnalloc(dncnt);
Eric Andersen11c65522000-09-07 17:24:47 +0000364
365 /* copy the entrys into the file or dir array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000366 for (d = i = 0; i < nfiles; i++) {
Eric Andersen11c65522000-09-07 17:24:47 +0000367 if (which == SPLIT_DIR) {
368 if (S_ISDIR(dn[i]->dstat.st_mode)) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000369 dnp[d++] = dn[i];
370 } /* else skip the file */
Eric Andersencf1189f2000-11-29 21:52:06 +0000371 } else if (which == SPLIT_SUBDIR) {
372 if (is_subdir(dn[i])) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000373 dnp[d++] = dn[i];
374 } /* else skip the file or dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000375 } else {
376 if (!(S_ISDIR(dn[i]->dstat.st_mode))) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000377 dnp[d++] = dn[i];
378 } /* else skip the dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000379 }
380 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000381 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000382}
383
384/*----------------------------------------------------------------------*/
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000385#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen3e6ff902001-03-09 21:24:12 +0000386static int sortcmp(struct dnode *d1, struct dnode *d2)
Eric Andersen11c65522000-09-07 17:24:47 +0000387{
388 int cmp, dif;
389
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000390 cmp = 0;
Eric Andersen11c65522000-09-07 17:24:47 +0000391 if (sort_opts == SORT_SIZE) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000392 dif = (int) (d1->dstat.st_size - d2->dstat.st_size);
Eric Andersen11c65522000-09-07 17:24:47 +0000393 } else if (sort_opts == SORT_ATIME) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000394 dif = (int) (d1->dstat.st_atime - d2->dstat.st_atime);
Eric Andersen11c65522000-09-07 17:24:47 +0000395 } else if (sort_opts == SORT_CTIME) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000396 dif = (int) (d1->dstat.st_ctime - d2->dstat.st_ctime);
Eric Andersen11c65522000-09-07 17:24:47 +0000397 } else if (sort_opts == SORT_MTIME) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000398 dif = (int) (d1->dstat.st_mtime - d2->dstat.st_mtime);
Eric Andersen11c65522000-09-07 17:24:47 +0000399 } else if (sort_opts == SORT_DIR) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000400 dif = S_ISDIR(d1->dstat.st_mode) - S_ISDIR(d2->dstat.st_mode);
401 /* } else if (sort_opts == SORT_VERSION) { */
402 /* } else if (sort_opts == SORT_EXT) { */
403 } else { /* assume SORT_NAME */
404 dif = 0;
Eric Andersen11c65522000-09-07 17:24:47 +0000405 }
406
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000407 if (dif > 0)
408 cmp = -1;
409 if (dif < 0)
410 cmp = 1;
Eric Andersen11c65522000-09-07 17:24:47 +0000411 if (dif == 0) {
412 /* sort by name- may be a tie_breaker for time or size cmp */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000413#ifdef CONFIG_LOCALE_SUPPORT
414 dif = strcoll(d1->name, d2->name);
415#else
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000416 dif = strcmp(d1->name, d2->name);
Glenn L McGrath4d001292003-01-06 01:11:50 +0000417#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000418 if (dif > 0)
419 cmp = 1;
420 if (dif < 0)
421 cmp = -1;
Eric Andersen11c65522000-09-07 17:24:47 +0000422 }
423
424 if (sort_order == SORT_REVERSE) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000425 cmp = -1 * cmp;
Eric Andersen11c65522000-09-07 17:24:47 +0000426 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000427 return (cmp);
Eric Andersen11c65522000-09-07 17:24:47 +0000428}
429
430/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000431static void shellsort(struct dnode **dn, int size)
Eric Andersen11c65522000-09-07 17:24:47 +0000432{
433 struct dnode *temp;
434 int gap, i, j;
435
436 /* shell short the array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000437 if (dn == NULL || size < 2)
438 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000439
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000440 for (gap = size / 2; gap > 0; gap /= 2) {
441 for (i = gap; i < size; i++) {
442 for (j = i - gap; j >= 0; j -= gap) {
443 if (sortcmp(dn[j], dn[j + gap]) <= 0)
Eric Andersen11c65522000-09-07 17:24:47 +0000444 break;
445 /* they are out of order, swap them */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000446 temp = dn[j];
447 dn[j] = dn[j + gap];
448 dn[j + gap] = temp;
Eric Andersen11c65522000-09-07 17:24:47 +0000449 }
450 }
451 }
452}
453#endif
454
455/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000456static void showfiles(struct dnode **dn, int nfiles)
Eric Andersen11c65522000-09-07 17:24:47 +0000457{
458 int i, ncols, nrows, row, nc;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000459 int column = 0;
460 int nexttab = 0;
461 int column_width = 0; /* for STYLE_LONG and STYLE_SINGLE not used */
Eric Andersen11c65522000-09-07 17:24:47 +0000462
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000463 if (dn == NULL || nfiles < 1)
464 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000465
Glenn L McGrath4d001292003-01-06 01:11:50 +0000466 switch (style_fmt) {
467 case STYLE_LONG: /* one record per line, extended info */
468 case STYLE_SINGLE: /* one record per line */
469 ncols = 1;
470 break;
471 default:
Eric Andersen11c65522000-09-07 17:24:47 +0000472 /* find the longest file name- use that as the column width */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000473 for (i = 0; i < nfiles; i++) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000474 int len = strlen(dn[i]->name) +
Eric Andersen11c65522000-09-07 17:24:47 +0000475 ((list_fmt & LIST_INO) ? 8 : 0) +
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000476 ((list_fmt & LIST_BLOCKS) ? 5 : 0);
477 if (column_width < len)
478 column_width = len;
Eric Andersen11c65522000-09-07 17:24:47 +0000479 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000480 column_width += tabstops;
481 ncols = (int) (terminal_width / column_width);
Eric Andersen11c65522000-09-07 17:24:47 +0000482 }
483
Eric Andersene57d54b2001-01-30 18:03:11 +0000484 if (ncols > 1) {
485 nrows = nfiles / ncols;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000486 if ((nrows * ncols) < nfiles)
487 nrows++; /* round up fractionals */
Eric Andersene57d54b2001-01-30 18:03:11 +0000488 } else {
489 nrows = nfiles;
490 ncols = 1;
491 }
Eric Andersen11c65522000-09-07 17:24:47 +0000492
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000493 for (row = 0; row < nrows; row++) {
494 for (nc = 0; nc < ncols; nc++) {
Eric Andersen79565b62000-08-11 18:10:21 +0000495 /* reach into the array based on the column and row */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000496 i = (nc * nrows) + row; /* assume display by column */
Eric Andersen11c65522000-09-07 17:24:47 +0000497 if (disp_opts & DISP_ROWS)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000498 i = (row * ncols) + nc; /* display across row */
Eric Andersen11c65522000-09-07 17:24:47 +0000499 if (i < nfiles) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000500 if (column > 0) {
501 nexttab -= column;
502 while (nexttab--) {
503 putchar(' ');
504 column++;
505 }
Eric Andersen79565b62000-08-11 18:10:21 +0000506 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000507 nexttab = column + column_width;
508 column += list_single(dn[i]);
Eric Andersen79565b62000-08-11 18:10:21 +0000509 }
Glenn L McGrath4d001292003-01-06 01:11:50 +0000510 }
511 putchar('\n');
512 column = 0;
Eric Andersena42982e2000-06-07 17:28:53 +0000513 }
Eric Andersen11c65522000-09-07 17:24:47 +0000514}
515
516/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000517static void showdirs(struct dnode **dn, int ndirs)
Eric Andersen11c65522000-09-07 17:24:47 +0000518{
519 int i, nfiles;
520 struct dnode **subdnp;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000521
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000522#ifdef CONFIG_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000523 int dndirs;
524 struct dnode **dnd;
525#endif
526
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000527 if (dn == NULL || ndirs < 1)
528 return;
Eric Andersen11c65522000-09-07 17:24:47 +0000529
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000530 for (i = 0; i < ndirs; i++) {
Eric Andersen11c65522000-09-07 17:24:47 +0000531 if (disp_opts & (DISP_DIRNAME | DISP_RECURSIVE)) {
Matt Kraai12f417e2001-01-18 02:57:08 +0000532 printf("\n%s:\n", dn[i]->fullname);
Eric Andersen11c65522000-09-07 17:24:47 +0000533 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000534 subdnp = list_dir(dn[i]->fullname);
535 nfiles = countfiles(subdnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000536 if (nfiles > 0) {
537 /* list all files at this level */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000538#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000539 shellsort(subdnp, nfiles);
540#endif
541 showfiles(subdnp, nfiles);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000542#ifdef CONFIG_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000543 if (disp_opts & DISP_RECURSIVE) {
544 /* recursive- list the sub-dirs */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000545 dnd = splitdnarray(subdnp, nfiles, SPLIT_SUBDIR);
546 dndirs = countsubdirs(subdnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +0000547 if (dndirs > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000548#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +0000549 shellsort(dnd, dndirs);
Matt Kraaia5bd2682000-10-28 06:40:09 +0000550#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000551 showdirs(dnd, dndirs);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000552 free(dnd); /* free the array of dnode pointers to the dirs */
Eric Andersen11c65522000-09-07 17:24:47 +0000553 }
554 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000555 dfree(subdnp); /* free the dnodes and the fullname mem */
Eric Andersen11c65522000-09-07 17:24:47 +0000556#endif
557 }
558 }
559}
560
561/*----------------------------------------------------------------------*/
Glenn L McGrath4d001292003-01-06 01:11:50 +0000562static struct dnode **list_dir(const char *path)
Eric Andersen11c65522000-09-07 17:24:47 +0000563{
564 struct dnode *dn, *cur, **dnp;
565 struct dirent *entry;
566 DIR *dir;
Eric Andersen11c65522000-09-07 17:24:47 +0000567 int i, nfiles;
568
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000569 if (path == NULL)
570 return (NULL);
Eric Andersen11c65522000-09-07 17:24:47 +0000571
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000572 dn = NULL;
573 nfiles = 0;
Eric Andersene7e1e2d2000-10-12 22:40:14 +0000574 dir = opendir(path);
Eric Andersen11c65522000-09-07 17:24:47 +0000575 if (dir == NULL) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000576 perror_msg("%s", path);
Matt Kraai33fdae52000-10-13 17:59:43 +0000577 status = EXIT_FAILURE;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000578 return (NULL); /* could not open the dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000579 }
580 while ((entry = readdir(dir)) != NULL) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000581 char *fullname;
582
Eric Andersen11c65522000-09-07 17:24:47 +0000583 /* are we going to list the file- it may be . or .. or a hidden file */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000584 if (entry->d_name[0] == '.') {
585 if ((entry->d_name[1] == 0 || (
586 entry->d_name[1] == '.'
587 && entry->d_name[2] == 0))
588 && !(disp_opts & DISP_DOT))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000589 continue;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000590 if (!(disp_opts & DISP_HIDDEN))
Matt Kraai782ab3c2001-04-23 01:07:00 +0000591 continue;
Glenn L McGrath4d001292003-01-06 01:11:50 +0000592 }
593 fullname = concat_path_file(path, entry->d_name);
594 cur = my_stat(fullname, strrchr(fullname, '/') + 1);
595 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +0000596 continue;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000597 cur->next = dn;
598 dn = cur;
Eric Andersen11c65522000-09-07 17:24:47 +0000599 nfiles++;
600 }
601 closedir(dir);
602
603 /* now that we know how many files there are
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000604 ** allocate memory for an array to hold dnode pointers
605 */
Glenn L McGrath4d001292003-01-06 01:11:50 +0000606 if (dn == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000607 return (NULL);
608 dnp = dnalloc(nfiles);
609 for (i = 0, cur = dn; i < nfiles; i++) {
610 dnp[i] = cur; /* save pointer to node in array */
611 cur = cur->next;
Eric Andersen11c65522000-09-07 17:24:47 +0000612 }
613
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000614 return (dnp);
Eric Andersen11c65522000-09-07 17:24:47 +0000615}
616
617/*----------------------------------------------------------------------*/
Eric Andersen3e6ff902001-03-09 21:24:12 +0000618static int list_single(struct dnode *dn)
Eric Andersen11c65522000-09-07 17:24:47 +0000619{
Glenn L McGrath4d001292003-01-06 01:11:50 +0000620 int i, column = 0;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000621
Matt Kraaia1bbde72002-03-08 16:25:33 +0000622#ifdef CONFIG_FEATURE_LS_USERNAME
Glenn L McGrath4d001292003-01-06 01:11:50 +0000623 char scratch[16];
Matt Kraaia1bbde72002-03-08 16:25:33 +0000624#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000625#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Eric Andersen11c65522000-09-07 17:24:47 +0000626 char *filetime;
627 time_t ttime, age;
628#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000629#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
Eric Andersen11c65522000-09-07 17:24:47 +0000630 struct stat info;
631 char append;
632#endif
633
Glenn L McGrath4d001292003-01-06 01:11:50 +0000634 if (dn->fullname == NULL)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000635 return (0);
Eric Andersen11c65522000-09-07 17:24:47 +0000636
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000637#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000638 ttime = dn->dstat.st_mtime; /* the default time */
639 if (time_fmt & TIME_ACCESS)
640 ttime = dn->dstat.st_atime;
641 if (time_fmt & TIME_CHANGE)
642 ttime = dn->dstat.st_ctime;
643 filetime = ctime(&ttime);
Eric Andersen11c65522000-09-07 17:24:47 +0000644#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000645#ifdef CONFIG_FEATURE_LS_FILETYPES
Eric Andersen11c65522000-09-07 17:24:47 +0000646 append = append_char(dn->dstat.st_mode);
647#endif
648
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000649 for (i = 0; i <= 31; i++) {
650 switch (list_fmt & (1 << i)) {
651 case LIST_INO:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000652 column += printf("%7ld ", (long int) dn->dstat.st_ino);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000653 break;
654 case LIST_BLOCKS:
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000655#if _FILE_OFFSET_BITS == 64
Glenn L McGrath4d001292003-01-06 01:11:50 +0000656 column += printf("%4lld ", dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000657#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000658 column += printf("%4ld ", dn->dstat.st_blocks >> 1);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000659#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000660 break;
661 case LIST_MODEBITS:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000662 column += printf("%-10s ", (char *) mode_string(dn->dstat.st_mode));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000663 break;
664 case LIST_NLINKS:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000665 column += printf("%4ld ", (long) dn->dstat.st_nlink);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000666 break;
667 case LIST_ID_NAME:
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000668#ifdef CONFIG_FEATURE_LS_USERNAME
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000669 my_getpwuid(scratch, dn->dstat.st_uid);
670 printf("%-8.8s ", scratch);
671 my_getgrgid(scratch, dn->dstat.st_gid);
672 printf("%-8.8s", scratch);
673 column += 17;
674 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000675#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000676 case LIST_ID_NUMERIC:
Glenn L McGrath4d001292003-01-06 01:11:50 +0000677 column += printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid);
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000678 break;
679 case LIST_SIZE:
680 case LIST_DEV:
681 if (S_ISBLK(dn->dstat.st_mode) || S_ISCHR(dn->dstat.st_mode)) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000682 column += printf("%4d, %3d ", (int) MAJOR(dn->dstat.st_rdev),
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000683 (int) MINOR(dn->dstat.st_rdev));
684 } else {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000685#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000686 if (ls_disp_hr == TRUE) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000687 column += printf("%9s ",
688 make_human_readable_str(dn->dstat.st_size, 1, 0));
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000689 } else
690#endif
691 {
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000692#if _FILE_OFFSET_BITS == 64
Glenn L McGrath4d001292003-01-06 01:11:50 +0000693 column += printf("%9lld ", (long long) dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000694#else
Glenn L McGrath4d001292003-01-06 01:11:50 +0000695 column += printf("%9ld ", dn->dstat.st_size);
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000696#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000697 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000698 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000699 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000700#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000701 case LIST_FULLTIME:
702 case LIST_DATE_TIME:
703 if (list_fmt & LIST_FULLTIME) {
704 printf("%24.24s ", filetime);
705 column += 25;
Eric Andersen11c65522000-09-07 17:24:47 +0000706 break;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000707 }
708 age = time(NULL) - ttime;
709 printf("%6.6s ", filetime + 4);
710 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) {
711 /* hh:mm if less than 6 months old */
712 printf("%5.5s ", filetime + 11);
713 } else {
714 printf(" %4.4s ", filetime + 20);
715 }
716 column += 13;
717 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000718#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000719 case LIST_FILENAME:
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000720#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000721 errno = 0;
722 if (show_color && !lstat(dn->fullname, &info)) {
723 printf("\033[%d;%dm", bgcolor(info.st_mode),
724 fgcolor(info.st_mode));
725 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000726#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000727 column += printf("%s", dn->name);
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000728#ifdef CONFIG_FEATURE_LS_COLOR
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000729 if (show_color) {
730 printf("\033[0m");
731 }
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000732#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000733 break;
734 case LIST_SYMLINK:
735 if (S_ISLNK(dn->dstat.st_mode)) {
736 char *lpath = xreadlink(dn->fullname);
737
738 if (lpath) {
739 printf(" -> ");
740#if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR)
741 if (!stat(dn->fullname, &info)) {
742 append = append_char(info.st_mode);
Eric Andersen11c65522000-09-07 17:24:47 +0000743 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000744#endif
745#ifdef CONFIG_FEATURE_LS_COLOR
746 if (show_color) {
747 errno = 0;
748 printf("\033[%d;%dm", bgcolor(info.st_mode),
749 fgcolor(info.st_mode));
750 }
751#endif
Glenn L McGrath4d001292003-01-06 01:11:50 +0000752 column += printf("%s", lpath) + 4;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000753#ifdef CONFIG_FEATURE_LS_COLOR
754 if (show_color) {
755 printf("\033[0m");
756 }
757#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000758 free(lpath);
Eric Andersen11c65522000-09-07 17:24:47 +0000759 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000760 }
761 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000762#ifdef CONFIG_FEATURE_LS_FILETYPES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000763 case LIST_FILETYPE:
764 if (append != '\0') {
765 printf("%1c", append);
766 column++;
767 }
768 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000769#endif
770 }
771 }
772
Glenn L McGrath4d001292003-01-06 01:11:50 +0000773 return column;
Eric Andersen11c65522000-09-07 17:24:47 +0000774}
775
776/*----------------------------------------------------------------------*/
777extern int ls_main(int argc, char **argv)
778{
779 struct dnode **dnf, **dnd;
780 int dnfiles, dndirs;
781 struct dnode *dn, *cur, **dnp;
782 int i, nfiles;
783 int opt;
784 int oi, ac;
785 char **av;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000786
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000787#ifdef CONFIG_FEATURE_AUTOWIDTH
Eric Andersen5307eca2001-01-26 01:52:43 +0000788 struct winsize win = { 0, 0, 0, 0 };
789#endif
Eric Andersen11c65522000-09-07 17:24:47 +0000790
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000791 disp_opts = DISP_NORMAL;
792 style_fmt = STYLE_AUTO;
793 list_fmt = LIST_SHORT;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000794#ifdef CONFIG_FEATURE_LS_SORTFILES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000795 sort_opts = SORT_NAME;
796 sort_order = SORT_FORWARD;
Eric Andersen11c65522000-09-07 17:24:47 +0000797#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000798#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000799 time_fmt = TIME_MOD;
Eric Andersen11c65522000-09-07 17:24:47 +0000800#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000801#ifdef CONFIG_FEATURE_AUTOWIDTH
Mark Whitley9b300d02001-02-01 19:39:43 +0000802 ioctl(fileno(stdout), TIOCGWINSZ, &win);
Mark Whitley9b300d02001-02-01 19:39:43 +0000803 if (win.ws_col > 0)
804 terminal_width = win.ws_col - 1;
Eric Andersen5307eca2001-01-26 01:52:43 +0000805#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000806 nfiles = 0;
Eric Andersen11c65522000-09-07 17:24:47 +0000807
Eric Andersen3ad0bd92002-03-20 09:13:48 +0000808#ifdef CONFIG_FEATURE_LS_COLOR
809 if (isatty(fileno(stdout)))
810 show_color = 1;
811#endif
812
Eric Andersen11c65522000-09-07 17:24:47 +0000813 /* process options */
814 while ((opt = getopt(argc, argv, "1AaCdgilnsx"
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000815#ifdef CONFIG_FEATURE_AUTOWIDTH
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000816 "T:w:"
Eric Andersen11c65522000-09-07 17:24:47 +0000817#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000818#ifdef CONFIG_FEATURE_LS_FILETYPES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000819 "Fp"
Eric Andersen11c65522000-09-07 17:24:47 +0000820#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000821#ifdef CONFIG_FEATURE_LS_RECURSIVE
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000822 "R"
Eric Andersen11c65522000-09-07 17:24:47 +0000823#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000824#ifdef CONFIG_FEATURE_LS_SORTFILES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000825 "rSvX"
Eric Andersen11c65522000-09-07 17:24:47 +0000826#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000827#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000828 "cetu"
Eric Andersen11c65522000-09-07 17:24:47 +0000829#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000830#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000831 "L"
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000832#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000833#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000834 "h"
Richard June6d0921c2001-01-22 22:35:38 +0000835#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000836 "k")) > 0) {
Eric Andersen11c65522000-09-07 17:24:47 +0000837 switch (opt) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000838 case '1':
839 style_fmt = STYLE_SINGLE;
Eric Andersenfc4a0fd2003-01-14 18:13:13 +0000840 list_fmt = LIST_SHORT;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000841 break;
842 case 'A':
843 disp_opts |= DISP_HIDDEN;
844 break;
845 case 'a':
846 disp_opts |= DISP_HIDDEN | DISP_DOT;
847 break;
848 case 'C':
849 style_fmt = STYLE_COLUMNS;
Eric Andersenfc4a0fd2003-01-14 18:13:13 +0000850 list_fmt = LIST_SHORT;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000851 break;
852 case 'd':
853 disp_opts |= DISP_NOLIST;
854 break;
855 case 'g': /* ignore -- for ftp servers */
856 break;
857 case 'i':
858 list_fmt |= LIST_INO;
859 break;
860 case 'l':
861 style_fmt = STYLE_LONG;
862 list_fmt |= LIST_LONG;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000863#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000864 ls_disp_hr = FALSE;
Richard June6d0921c2001-01-22 22:35:38 +0000865#endif
866 break;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000867 case 'n':
868 list_fmt |= LIST_ID_NUMERIC;
869 break;
870 case 's':
871 list_fmt |= LIST_BLOCKS;
872 break;
873 case 'x':
874 disp_opts = DISP_ROWS;
875 break;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000876#ifdef CONFIG_FEATURE_LS_FILETYPES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000877 case 'F':
878 list_fmt |= LIST_FILETYPE | LIST_EXEC;
879 break;
880 case 'p':
881 list_fmt |= LIST_FILETYPE;
882 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000883#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000884#ifdef CONFIG_FEATURE_LS_RECURSIVE
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000885 case 'R':
886 disp_opts |= DISP_RECURSIVE;
887 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000888#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000889#ifdef CONFIG_FEATURE_LS_SORTFILES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000890 case 'r':
891 sort_order |= SORT_REVERSE;
892 break;
893 case 'S':
894 sort_opts = SORT_SIZE;
895 break;
896 case 'v':
897 sort_opts = SORT_VERSION;
898 break;
899 case 'X':
900 sort_opts = SORT_EXT;
901 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000902#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000903#ifdef CONFIG_FEATURE_LS_TIMESTAMPS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000904 case 'e':
905 list_fmt |= LIST_FULLTIME;
906 break;
907 case 'c':
908 time_fmt = TIME_CHANGE;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000909#ifdef CONFIG_FEATURE_LS_SORTFILES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000910 sort_opts = SORT_CTIME;
Matt Kraaia5bd2682000-10-28 06:40:09 +0000911#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000912 break;
913 case 'u':
914 time_fmt = TIME_ACCESS;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000915#ifdef CONFIG_FEATURE_LS_SORTFILES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000916 sort_opts = SORT_ATIME;
Matt Kraaia5bd2682000-10-28 06:40:09 +0000917#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000918 break;
919 case 't':
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000920#ifdef CONFIG_FEATURE_LS_SORTFILES
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000921 sort_opts = SORT_MTIME;
Matt Kraaia5bd2682000-10-28 06:40:09 +0000922#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000923 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000924#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000925#ifdef CONFIG_FEATURE_LS_FOLLOWLINKS
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000926 case 'L':
927 follow_links = TRUE;
928 break;
Matt Kraaia2f2a8f2000-09-22 03:11:47 +0000929#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000930#ifdef CONFIG_FEATURE_AUTOWIDTH
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000931 case 'T':
932 tabstops = atoi(optarg);
933 break;
934 case 'w':
935 terminal_width = atoi(optarg);
936 break;
Eric Andersen11c65522000-09-07 17:24:47 +0000937#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000938#ifdef CONFIG_FEATURE_HUMAN_READABLE
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000939 case 'h':
940 ls_disp_hr = TRUE;
941 break;
Richard June6d0921c2001-01-22 22:35:38 +0000942#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000943 case 'k':
944 break;
945 default:
946 goto print_usage_message;
Eric Andersen11c65522000-09-07 17:24:47 +0000947 }
948 }
949
950 /* sort out which command line options take precedence */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000951#ifdef CONFIG_FEATURE_LS_RECURSIVE
Eric Andersen11c65522000-09-07 17:24:47 +0000952 if (disp_opts & DISP_NOLIST)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000953 disp_opts &= ~DISP_RECURSIVE; /* no recurse if listing only dir */
Eric Andersen11c65522000-09-07 17:24:47 +0000954#endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000955#if defined (CONFIG_FEATURE_LS_TIMESTAMPS) && defined (CONFIG_FEATURE_LS_SORTFILES)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000956 if (time_fmt & TIME_CHANGE)
957 sort_opts = SORT_CTIME;
958 if (time_fmt & TIME_ACCESS)
959 sort_opts = SORT_ATIME;
Eric Andersen11c65522000-09-07 17:24:47 +0000960#endif
Eric Andersenfc4a0fd2003-01-14 18:13:13 +0000961 if (style_fmt != STYLE_LONG) /* only for long list */
962 list_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000963#ifdef CONFIG_FEATURE_LS_USERNAME
Eric Andersen11c65522000-09-07 17:24:47 +0000964 if (style_fmt == STYLE_LONG && (list_fmt & LIST_ID_NUMERIC))
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000965 list_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */
Eric Andersen11c65522000-09-07 17:24:47 +0000966#endif
967
968 /* choose a display format */
969 if (style_fmt == STYLE_AUTO)
970 style_fmt = isatty(fileno(stdout)) ? STYLE_COLUMNS : STYLE_SINGLE;
971
972 /*
973 * when there are no cmd line args we have to supply a default "." arg.
974 * we will create a second argv array, "av" that will hold either
975 * our created "." arg, or the real cmd line args. The av array
976 * just holds the pointers- we don't move the date the pointers
977 * point to.
978 */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000979 ac = argc - optind; /* how many cmd line args are left */
Eric Andersen11c65522000-09-07 17:24:47 +0000980 if (ac < 1) {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000981 av = (char **) xcalloc((size_t) 1, (size_t) (sizeof(char *)));
982 av[0] = xstrdup(".");
983 ac = 1;
Eric Andersen11c65522000-09-07 17:24:47 +0000984 } else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000985 av = (char **) xcalloc((size_t) ac, (size_t) (sizeof(char *)));
986 for (oi = 0; oi < ac; oi++) {
987 av[oi] = argv[optind++]; /* copy pointer to real cmd line arg */
Eric Andersen11c65522000-09-07 17:24:47 +0000988 }
989 }
990
991 /* now, everything is in the av array */
992 if (ac > 1)
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000993 disp_opts |= DISP_DIRNAME; /* 2 or more items? label directories */
Eric Andersen11c65522000-09-07 17:24:47 +0000994
995 /* stuff the command line file names into an dnode array */
Glenn L McGrathe3906fc2002-08-22 18:13:54 +0000996 dn = NULL;
997 for (oi = 0; oi < ac; oi++) {
Glenn L McGrath4d001292003-01-06 01:11:50 +0000998 char *fullname = xstrdup(av[oi]);
999
1000 cur = my_stat(fullname, fullname);
1001 if (!cur)
Eric Andersen11c65522000-09-07 17:24:47 +00001002 continue;
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001003 cur->next = dn;
1004 dn = cur;
Eric Andersen11c65522000-09-07 17:24:47 +00001005 nfiles++;
1006 }
1007
1008 /* now that we know how many files there are
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001009 ** allocate memory for an array to hold dnode pointers
1010 */
1011 dnp = dnalloc(nfiles);
1012 for (i = 0, cur = dn; i < nfiles; i++) {
1013 dnp[i] = cur; /* save pointer to node in array */
1014 cur = cur->next;
Eric Andersen11c65522000-09-07 17:24:47 +00001015 }
1016
1017
1018 if (disp_opts & DISP_NOLIST) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001019#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +00001020 shellsort(dnp, nfiles);
1021#endif
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001022 if (nfiles > 0)
1023 showfiles(dnp, nfiles);
Eric Andersen11c65522000-09-07 17:24:47 +00001024 } else {
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001025 dnd = splitdnarray(dnp, nfiles, SPLIT_DIR);
1026 dnf = splitdnarray(dnp, nfiles, SPLIT_FILE);
1027 dndirs = countdirs(dnp, nfiles);
1028 dnfiles = nfiles - dndirs;
Eric Andersen11c65522000-09-07 17:24:47 +00001029 if (dnfiles > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001030#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +00001031 shellsort(dnf, dnfiles);
1032#endif
1033 showfiles(dnf, dnfiles);
1034 }
1035 if (dndirs > 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +00001036#ifdef CONFIG_FEATURE_LS_SORTFILES
Eric Andersen11c65522000-09-07 17:24:47 +00001037 shellsort(dnd, dndirs);
1038#endif
1039 showdirs(dnd, dndirs);
1040 }
1041 }
Glenn L McGrathe3906fc2002-08-22 18:13:54 +00001042 return (status);
Eric Andersencc8ed391999-10-05 16:24:54 +00001043
Erik Andersene49d5ec2000-02-08 19:58:47 +00001044 print_usage_message:
Eric Andersen67991cf2001-02-14 21:23:06 +00001045 show_usage();
Eric Andersencc8ed391999-10-05 16:24:54 +00001046}