blob: 0644cde877e7e4eb777a039a7a1afba61c5fcd6a [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>
5 *
6 * 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
24 * (i.e. the ones I couldn't live without :-) All features which involve
25 * 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
Erik Andersene49d5ec2000-02-08 19:58:47 +000044#define TERMINAL_WIDTH 80 /* use 79 if your terminal has linefold bug */
45#define COLUMN_WIDTH 14 /* default if AUTOWIDTH not defined */
46#define COLUMN_GAP 2 /* includes the file type char, if present */
Eric Andersen3c163821999-10-14 22:16:57 +000047#define HAS_REWINDDIR
Eric Andersencc8ed391999-10-05 16:24:54 +000048
49/************************************************************************/
50
Eric Andersene77ae3a1999-10-19 20:03:34 +000051#include "internal.h"
Erik Andersene49d5ec2000-02-08 19:58:47 +000052# include <sys/types.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000053#include <sys/stat.h>
54#include <stdio.h>
55#include <unistd.h>
56#include <dirent.h>
57#include <errno.h>
58#include <stdio.h>
Eric Andersene1850dd1999-11-19 05:42:32 +000059#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +000060#include <time.h>
61#endif
62
63#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
64#define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
Eric Andersene1850dd1999-11-19 05:42:32 +000065#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +000066#define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
67#endif
68
Eric Andersencc8ed391999-10-05 16:24:54 +000069#define FMT_AUTO 0
Erik Andersene49d5ec2000-02-08 19:58:47 +000070#define FMT_LONG 1 /* one record per line, extended info */
71#define FMT_SINGLE 2 /* one record per line */
72#define FMT_ROWS 3 /* print across rows */
73#define FMT_COLUMNS 3 /* fill columns (same, since we don't sort) */
Eric Andersencc8ed391999-10-05 16:24:54 +000074
75#define TIME_MOD 0
76#define TIME_CHANGE 1
77#define TIME_ACCESS 2
78
Erik Andersene49d5ec2000-02-08 19:58:47 +000079#define DISP_FTYPE 1 /* show character for file type */
80#define DISP_EXEC 2 /* show '*' if regular executable file */
81#define DISP_HIDDEN 4 /* show files starting . (except . and ..) */
82#define DISP_DOT 8 /* show . and .. */
83#define DISP_NUMERIC 16 /* numeric uid and gid */
84#define DISP_FULLTIME 32 /* show extended time display */
Eric Andersena42982e2000-06-07 17:28:53 +000085#define DIR_NOLIST 64 /* show directory as itself, not contents */
Erik Andersene49d5ec2000-02-08 19:58:47 +000086#define DISP_DIRNAME 128 /* show directory name (for internal use) */
Eric Andersena42982e2000-06-07 17:28:53 +000087#define DISP_RECURSIVE 256 /* Do a recursive listing */
Eric Andersencc8ed391999-10-05 16:24:54 +000088
Erik Andersen1ad302a2000-03-24 00:54:46 +000089#ifndef MAJOR
90#define MAJOR(dev) (((dev)>>8)&0xff)
91#define MINOR(dev) ((dev)&0xff)
92#endif
93
Erik Andersene49d5ec2000-02-08 19:58:47 +000094static unsigned char display_fmt = FMT_AUTO;
95static unsigned short opts = 0;
96static unsigned short column = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +000097
Eric Andersene1850dd1999-11-19 05:42:32 +000098#ifdef BB_FEATURE_AUTOWIDTH
Erik Andersen9ffdaa62000-02-11 21:55:04 +000099static unsigned short terminal_width = 0;
100static unsigned short column_width = 0;
101static unsigned short toplevel_column_width = 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000102#else
103#define terminal_width TERMINAL_WIDTH
104#define column_width COLUMN_WIDTH
105#endif
106
Eric Andersene1850dd1999-11-19 05:42:32 +0000107#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +0000108static unsigned char time_fmt = TIME_MOD;
109#endif
110
111#define wr(data,len) fwrite(data, 1, len, stdout)
112
113static void writenum(long val, short minwidth)
114{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115 char scratch[128];
Eric Andersencc8ed391999-10-05 16:24:54 +0000116
117 char *p = scratch + sizeof(scratch);
118 short len = 0;
119 short neg = (val < 0);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120
121 if (neg)
122 val = -val;
Eric Andersencc8ed391999-10-05 16:24:54 +0000123 do
124 *--p = (val % 10) + '0', len++, val /= 10;
125 while (val);
126 if (neg)
127 *--p = '-', len++;
128 while (len < minwidth)
129 *--p = ' ', len++;
130 wr(p, len);
131 column += len;
132}
133
134static void newline(void)
135{
136 if (column > 0) {
137 wr("\n", 1);
138 column = 0;
139 }
140}
141
142static void tab(short col)
143{
144 static const char spaces[] = " ";
Erik Andersene49d5ec2000-02-08 19:58:47 +0000145
146#define nspaces ((sizeof spaces)-1) /* null terminator! */
147
Eric Andersencc8ed391999-10-05 16:24:54 +0000148 short n = col - column;
149
150 if (n > 0) {
151 column = col;
152 while (n > nspaces) {
153 wr(spaces, nspaces);
154 n -= nspaces;
155 }
156 /* must be 1...(sizeof spaces) left */
157 wr(spaces, n);
158 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000159#undef nspaces
Eric Andersencc8ed391999-10-05 16:24:54 +0000160}
161
Eric Andersene1850dd1999-11-19 05:42:32 +0000162#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersene77ae3a1999-10-19 20:03:34 +0000163static char append_char(mode_t mode)
Eric Andersencc8ed391999-10-05 16:24:54 +0000164{
165 if (!(opts & DISP_FTYPE))
166 return '\0';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000167 if ((opts & DISP_EXEC) && S_ISREG(mode)
168 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
Eric Andersencc8ed391999-10-05 16:24:54 +0000169 return APPCHAR(mode);
170}
171#endif
172
173/**
174 **
175 ** Display a file or directory as a single item
176 ** (in either long or short format)
177 **
178 **/
179
Erik Andersene49d5ec2000-02-08 19:58:47 +0000180static void list_single(const char *name, struct stat *info,
181 const char *fullname)
Eric Andersencc8ed391999-10-05 16:24:54 +0000182{
Erik Andersen4f3f7572000-04-28 00:18:56 +0000183 char scratch[BUFSIZ + 1];
Eric Andersencc8ed391999-10-05 16:24:54 +0000184 short len = strlen(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000185
Eric Andersene1850dd1999-11-19 05:42:32 +0000186#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000187 char append = append_char(info->st_mode);
188#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189
Eric Andersencc8ed391999-10-05 16:24:54 +0000190 if (display_fmt == FMT_LONG) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191 mode_t mode = info->st_mode;
192
Eric Andersencc8ed391999-10-05 16:24:54 +0000193 newline();
Eric Andersen50d63601999-11-09 01:47:36 +0000194 wr(modeString(mode), 10);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000195 column = 10;
196 writenum((long) info->st_nlink, (short) 5);
Eric Andersencc8ed391999-10-05 16:24:54 +0000197 fputs(" ", stdout);
Eric Andersene1850dd1999-11-19 05:42:32 +0000198#ifdef BB_FEATURE_LS_USERNAME
Eric Andersencc8ed391999-10-05 16:24:54 +0000199 if (!(opts & DISP_NUMERIC)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 memset(scratch, 0, sizeof(scratch));
201 my_getpwuid(scratch, info->st_uid);
Erik Andersen1266a131999-12-29 22:19:46 +0000202 if (*scratch) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 fputs(scratch, stdout);
204 if (strlen(scratch) <= 8)
205 wr(" ", 9 - strlen(scratch));
206 } else {
207 writenum((long) info->st_uid, (short) 8);
Eric Andersen394f7641999-11-23 21:38:12 +0000208 fputs(" ", stdout);
209 }
Eric Andersencc8ed391999-10-05 16:24:54 +0000210 } else
211#endif
Eric Andersen394f7641999-11-23 21:38:12 +0000212 {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213 writenum((long) info->st_uid, (short) 8);
214 fputs(" ", stdout);
Eric Andersen394f7641999-11-23 21:38:12 +0000215 }
Eric Andersene1850dd1999-11-19 05:42:32 +0000216#ifdef BB_FEATURE_LS_USERNAME
Eric Andersencc8ed391999-10-05 16:24:54 +0000217 if (!(opts & DISP_NUMERIC)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218 memset(scratch, 0, sizeof(scratch));
219 my_getgrgid(scratch, info->st_gid);
Erik Andersen1266a131999-12-29 22:19:46 +0000220 if (*scratch) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000221 fputs(scratch, stdout);
222 if (strlen(scratch) <= 8)
223 wr(" ", 8 - strlen(scratch));
224 } else
225 writenum((long) info->st_gid, (short) 8);
Eric Andersencc8ed391999-10-05 16:24:54 +0000226 } else
227#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228 writenum((long) info->st_gid, (short) 8);
Erik Andersen1266a131999-12-29 22:19:46 +0000229 //tab(26);
Eric Andersencc8ed391999-10-05 16:24:54 +0000230 if (S_ISBLK(mode) || S_ISCHR(mode)) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000231 writenum((long) MAJOR(info->st_rdev), (short) 3);
Eric Andersencc8ed391999-10-05 16:24:54 +0000232 fputs(", ", stdout);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000233 writenum((long) MINOR(info->st_rdev), (short) 3);
234 } else
235 writenum((long) info->st_size, (short) 8);
Eric Andersencc8ed391999-10-05 16:24:54 +0000236 fputs(" ", stdout);
Erik Andersen1266a131999-12-29 22:19:46 +0000237 //tab(32);
Eric Andersene1850dd1999-11-19 05:42:32 +0000238#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +0000239 {
240 time_t cal;
241 char *string;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000242
243 switch (time_fmt) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000244 case TIME_CHANGE:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000245 cal = info->st_ctime;
246 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000247 case TIME_ACCESS:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000248 cal = info->st_atime;
249 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000250 default:
Erik Andersene49d5ec2000-02-08 19:58:47 +0000251 cal = info->st_mtime;
252 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000253 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254 string = ctime(&cal);
Eric Andersencc8ed391999-10-05 16:24:54 +0000255 if (opts & DISP_FULLTIME)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000256 wr(string, 24);
Eric Andersencc8ed391999-10-05 16:24:54 +0000257 else {
258 time_t age = time(NULL) - cal;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000259
260 wr(string + 4, 7); /* mmm_dd_ */
261 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60)
Eric Andersencc8ed391999-10-05 16:24:54 +0000262 /* hh:mm if less than 6 months old */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263 wr(string + 11, 5);
Eric Andersencc8ed391999-10-05 16:24:54 +0000264 else
265 /* _yyyy otherwise */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000266 wr(string + 19, 5);
Eric Andersencc8ed391999-10-05 16:24:54 +0000267 }
268 wr(" ", 1);
269 }
270#else
271 fputs("--- -- ----- ", stdout);
272#endif
273 wr(name, len);
274 if (S_ISLNK(mode)) {
275 wr(" -> ", 4);
Eric Andersen07e52971999-11-07 07:38:08 +0000276 len = readlink(fullname, scratch, sizeof scratch);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000277 if (len > 0)
278 fwrite(scratch, 1, len, stdout);
Eric Andersene1850dd1999-11-19 05:42:32 +0000279#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000280 /* show type of destination */
281 if (opts & DISP_FTYPE) {
Eric Andersen07e52971999-11-07 07:38:08 +0000282 if (!stat(fullname, info)) {
Eric Andersencc8ed391999-10-05 16:24:54 +0000283 append = append_char(info->st_mode);
284 if (append)
285 fputc(append, stdout);
286 }
287 }
288#endif
289 }
Eric Andersene1850dd1999-11-19 05:42:32 +0000290#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000291 else if (append)
292 wr(&append, 1);
293#endif
294 } else {
295 static short nexttab = 0;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000296
Eric Andersencc8ed391999-10-05 16:24:54 +0000297 /* sort out column alignment */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000298 if (column == 0); /* nothing to do */
Eric Andersencc8ed391999-10-05 16:24:54 +0000299 else if (display_fmt == FMT_SINGLE)
300 newline();
301 else {
302 if (nexttab + column_width > terminal_width
Eric Andersene1850dd1999-11-19 05:42:32 +0000303#ifndef BB_FEATURE_AUTOWIDTH
Erik Andersene49d5ec2000-02-08 19:58:47 +0000304 || nexttab + len >= terminal_width
Eric Andersencc8ed391999-10-05 16:24:54 +0000305#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000306 )
Eric Andersencc8ed391999-10-05 16:24:54 +0000307 newline();
308 else
309 tab(nexttab);
310 }
311 /* work out where next column starts */
Eric Andersene1850dd1999-11-19 05:42:32 +0000312#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersencc8ed391999-10-05 16:24:54 +0000313 /* we know the calculated width is big enough */
314 nexttab = column + column_width + COLUMN_GAP;
315#else
316 /* might cover more than one fixed-width column */
317 nexttab = column;
318 do
319 nexttab += column_width + COLUMN_GAP;
320 while (nexttab < (column + len + COLUMN_GAP));
321#endif
322 /* now write the data */
323 wr(name, len);
324 column = column + len;
Eric Andersene1850dd1999-11-19 05:42:32 +0000325#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000326 if (append)
327 wr(&append, 1), column++;
328#endif
329 }
330}
331
332/**
333 **
334 ** List the given file or directory, expanding a directory
335 ** to show its contents if required
336 **
337 **/
338
339static int list_item(const char *name)
340{
341 struct stat info;
342 DIR *dir;
343 struct dirent *entry;
Eric Andersen5d893b62000-07-06 01:57:20 +0000344 char fullname[BUFSIZ + 1], *fnend;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000345
Eric Andersencc8ed391999-10-05 16:24:54 +0000346 if (lstat(name, &info))
347 goto listerr;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000348
349 if (!S_ISDIR(info.st_mode) || (opts & DIR_NOLIST)) {
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000350#ifdef BB_FEATURE_AUTOWIDTH
351 column_width = toplevel_column_width;
352#endif
Eric Andersen07e52971999-11-07 07:38:08 +0000353 list_single(name, &info, name);
Eric Andersencc8ed391999-10-05 16:24:54 +0000354 return 0;
355 }
356
357 /* Otherwise, it's a directory we want to list the contents of */
358
Erik Andersene49d5ec2000-02-08 19:58:47 +0000359 if (opts & DISP_DIRNAME) { /* identify the directory */
Eric Andersencc8ed391999-10-05 16:24:54 +0000360 if (column)
361 wr("\n\n", 2), column = 0;
362 wr(name, strlen(name));
363 wr(":\n", 2);
364 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000365
Eric Andersencc8ed391999-10-05 16:24:54 +0000366 dir = opendir(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000367 if (!dir)
368 goto listerr;
Eric Andersene1850dd1999-11-19 05:42:32 +0000369#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersencc8ed391999-10-05 16:24:54 +0000370 column_width = 0;
371 while ((entry = readdir(dir)) != NULL) {
372 short w = strlen(entry->d_name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000373
Eric Andersencc8ed391999-10-05 16:24:54 +0000374 if (column_width < w)
375 column_width = w;
376 }
377#ifdef HAS_REWINDDIR
378 rewinddir(dir);
379#else
380 closedir(dir);
381 dir = opendir(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000382 if (!dir)
383 goto listerr;
Eric Andersencc8ed391999-10-05 16:24:54 +0000384#endif
385#endif
386
387 /* List the contents */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000388
389 strcpy(fullname, name); /* *** ignore '.' by itself */
390 fnend = fullname + strlen(fullname);
Eric Andersencc8ed391999-10-05 16:24:54 +0000391 if (fnend[-1] != '/')
392 *fnend++ = '/';
Erik Andersene49d5ec2000-02-08 19:58:47 +0000393
Eric Andersencc8ed391999-10-05 16:24:54 +0000394 while ((entry = readdir(dir)) != NULL) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000395 const char *en = entry->d_name;
396
Eric Andersencc8ed391999-10-05 16:24:54 +0000397 if (en[0] == '.') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000398 if (!en[1] || (en[1] == '.' && !en[2])) { /* . or .. */
Eric Andersencc8ed391999-10-05 16:24:54 +0000399 if (!(opts & DISP_DOT))
400 continue;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000401 } else if (!(opts & DISP_HIDDEN))
Eric Andersencc8ed391999-10-05 16:24:54 +0000402 continue;
403 }
404 /* FIXME: avoid stat if not required */
405 strcpy(fnend, entry->d_name);
406 if (lstat(fullname, &info))
Erik Andersene49d5ec2000-02-08 19:58:47 +0000407 goto direrr; /* (shouldn't fail) */
Eric Andersen07e52971999-11-07 07:38:08 +0000408 list_single(entry->d_name, &info, fullname);
Eric Andersencc8ed391999-10-05 16:24:54 +0000409 }
410 closedir(dir);
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000411
412 if (opts & DISP_DIRNAME) { /* separate the directory */
413 if (column) {
414 wr("\n", 1);
415 }
416 wr("\n", 1);
417 column = 0;
418 }
419
Eric Andersencc8ed391999-10-05 16:24:54 +0000420 return 0;
421
Erik Andersene49d5ec2000-02-08 19:58:47 +0000422 direrr:
423 closedir(dir);
424 listerr:
Eric Andersencc8ed391999-10-05 16:24:54 +0000425 newline();
Eric Andersen9d3aba71999-10-06 09:04:55 +0000426 perror(name);
Eric Andersencc8ed391999-10-05 16:24:54 +0000427 return 1;
428}
429
Eric Andersenf5a38381999-10-19 22:26:25 +0000430static const char ls_usage[] = "ls [-1a"
Eric Andersene1850dd1999-11-19 05:42:32 +0000431#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +0000432 "c"
433#endif
434 "d"
Eric Andersene1850dd1999-11-19 05:42:32 +0000435#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +0000436 "e"
437#endif
438 "ln"
Eric Andersene1850dd1999-11-19 05:42:32 +0000439#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000440 "p"
441#endif
Eric Andersene1850dd1999-11-19 05:42:32 +0000442#ifdef BB_FEATURE_LS_TIMESTAMPS
Eric Andersencc8ed391999-10-05 16:24:54 +0000443 "u"
444#endif
445 "xAC"
Eric Andersene1850dd1999-11-19 05:42:32 +0000446#ifdef BB_FEATURE_LS_FILETYPES
Eric Andersencc8ed391999-10-05 16:24:54 +0000447 "F"
448#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000449#ifdef BB_FEATURE_LS_RECURSIVE
450 "R"
451#endif
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000452 "] [filenames...]\n"
453#ifndef BB_FEATURE_TRIVIAL_HELP
454 "\nList directory contents\n\n"
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000455 "Options:\n"
456 "\t-a\tdo not hide entries starting with .\n"
457#ifdef BB_FEATURE_LS_TIMESTAMPS
458 "\t-c\twith -l: show ctime (the time of last\n"
459 "\t\tmodification of file status information)\n"
Eric Andersencc8ed391999-10-05 16:24:54 +0000460#endif
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000461 "\t-d\tlist directory entries instead of contents\n"
462#ifdef BB_FEATURE_LS_TIMESTAMPS
463 "\t-e\tlist both full date and full time\n"
464#endif
465 "\t-l\tuse a long listing format\n"
466 "\t-n\tlist numeric UIDs and GIDs instead of names\n"
467#ifdef BB_FEATURE_LS_FILETYPES
468 "\t-p\tappend indicator (one of /=@|) to entries\n"
469#endif
470#ifdef BB_FEATURE_LS_TIMESTAMPS
471 "\t-u\twith -l: show access time (the time of last\n"
472 "\t\taccess of the file)\n"
473#endif
474 "\t-x\tlist entries by lines instead of by columns\n"
475 "\t-A\tdo not list implied . and ..\n"
476 "\t-C\tlist entries by columns\n"
477#ifdef BB_FEATURE_LS_FILETYPES
478 "\t-F\tappend indicator (one of */=@|) to entries\n"
479#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000480#ifdef BB_FEATURE_LS_RECURSIVE
481 "\t-R\tlist subdirectories recursively\n"
482#endif
Erik Andersen7ab9c7e2000-05-12 19:41:47 +0000483#endif
Erik Andersen9cf3bfa2000-04-13 18:49:43 +0000484 ;
Eric Andersencc8ed391999-10-05 16:24:54 +0000485
Eric Andersena42982e2000-06-07 17:28:53 +0000486
487#ifdef BB_FEATURE_LS_RECURSIVE
488static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
489{
490 int i;
491 fprintf(stdout, "\n%s:\n", fileName);
492 i = list_item(fileName);
493 newline();
494 return (i);
495}
496#endif
497
Erik Andersene49d5ec2000-02-08 19:58:47 +0000498extern int ls_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000499{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000500 int argi = 1, i;
501
Eric Andersencc8ed391999-10-05 16:24:54 +0000502 /* process options */
503 while (argi < argc && argv[argi][0] == '-') {
504 const char *p = &argv[argi][1];
Erik Andersene49d5ec2000-02-08 19:58:47 +0000505
506 if (!*p)
507 goto print_usage_message; /* "-" by itself not allowed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000508 if (*p == '-') {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000509 if (!p[1]) { /* "--" forces end of options */
Eric Andersencc8ed391999-10-05 16:24:54 +0000510 argi++;
511 break;
512 }
513 /* it's a long option name - we don't support them */
514 goto print_usage_message;
515 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000516
Eric Andersencc8ed391999-10-05 16:24:54 +0000517 while (*p)
518 switch (*p++) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000519 case 'l':
520 display_fmt = FMT_LONG;
521 break;
522 case '1':
523 display_fmt = FMT_SINGLE;
524 break;
525 case 'x':
526 display_fmt = FMT_ROWS;
527 break;
528 case 'C':
529 display_fmt = FMT_COLUMNS;
530 break;
Eric Andersene1850dd1999-11-19 05:42:32 +0000531#ifdef BB_FEATURE_LS_FILETYPES
Erik Andersene49d5ec2000-02-08 19:58:47 +0000532 case 'p':
533 opts |= DISP_FTYPE;
534 break;
535 case 'F':
536 opts |= DISP_FTYPE | DISP_EXEC;
537 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000538#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +0000539 case 'A':
540 opts |= DISP_HIDDEN;
541 break;
542 case 'a':
543 opts |= DISP_HIDDEN | DISP_DOT;
544 break;
545 case 'n':
546 opts |= DISP_NUMERIC;
547 break;
548 case 'd':
549 opts |= DIR_NOLIST;
550 break;
Eric Andersene1850dd1999-11-19 05:42:32 +0000551#ifdef BB_FEATURE_LS_TIMESTAMPS
Erik Andersene49d5ec2000-02-08 19:58:47 +0000552 case 'u':
553 time_fmt = TIME_ACCESS;
554 break;
555 case 'c':
556 time_fmt = TIME_CHANGE;
557 break;
558 case 'e':
559 opts |= DISP_FULLTIME;
560 break;
Eric Andersencc8ed391999-10-05 16:24:54 +0000561#endif
Eric Andersena42982e2000-06-07 17:28:53 +0000562#ifdef BB_FEATURE_LS_RECURSIVE
563 case 'R':
564 opts |= DISP_RECURSIVE;
565 break;
566#endif
Eric Andersen7c31ea42000-07-03 14:55:49 +0000567 case 'g': /* ignore -- for ftp servers */
568 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000569 default:
570 goto print_usage_message;
Eric Andersencc8ed391999-10-05 16:24:54 +0000571 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000572
Eric Andersencc8ed391999-10-05 16:24:54 +0000573 argi++;
574 }
575
576 /* choose a display format */
577 if (display_fmt == FMT_AUTO)
Eric Andersen08b10341999-11-19 02:38:58 +0000578 display_fmt = isatty(fileno(stdout)) ? FMT_COLUMNS : FMT_SINGLE;
Eric Andersencc8ed391999-10-05 16:24:54 +0000579 if (argi < argc - 1)
Erik Andersene49d5ec2000-02-08 19:58:47 +0000580 opts |= DISP_DIRNAME; /* 2 or more items? label directories */
Eric Andersene1850dd1999-11-19 05:42:32 +0000581#ifdef BB_FEATURE_AUTOWIDTH
Eric Andersencc8ed391999-10-05 16:24:54 +0000582 /* could add a -w option and/or TIOCGWINSZ call */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000583 if (terminal_width < 1)
584 terminal_width = TERMINAL_WIDTH;
585
Eric Andersencc8ed391999-10-05 16:24:54 +0000586 for (i = argi; i < argc; i++) {
587 int len = strlen(argv[i]);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000588
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000589 if (toplevel_column_width < len)
590 toplevel_column_width = len;
Eric Andersencc8ed391999-10-05 16:24:54 +0000591 }
592#endif
593
594 /* process files specified, or current directory if none */
Eric Andersena42982e2000-06-07 17:28:53 +0000595#ifdef BB_FEATURE_LS_RECURSIVE
596 if (opts & DISP_RECURSIVE) {
597 i = 0;
598 if (argi == argc) {
599 i = recursiveAction(".", TRUE, FALSE, FALSE, NULL, dirAction, NULL);
600 }
601 while (argi < argc) {
602 i |= recursiveAction(argv[argi++], TRUE, FALSE, FALSE, NULL, dirAction, NULL);
603 }
604 } else
605#endif
606 {
607 i = 0;
608 if (argi == argc)
609 i = list_item(".");
610 while (argi < argc)
611 i |= list_item(argv[argi++]);
612 newline();
613 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000614 exit(i);
Eric Andersencc8ed391999-10-05 16:24:54 +0000615
Erik Andersene49d5ec2000-02-08 19:58:47 +0000616 print_usage_message:
617 usage(ls_usage);
618 exit(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +0000619}