1 /* vi: set sw=4 ts=4: */
3 * tiny-ls.c version 0.1.0: A minimalist 'ls'
4 * Copyright (C) 1996 Brian Candler <B.Candler@pobox.com>
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.
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.
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.
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.
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
32 * 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
36 * 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
41 * 1. requires lstat (BSD) - how do you do it without?
44 #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 */
49 /************************************************************************/
52 #if !defined(__GLIBC__) && (__GLIBC__ >= 2) && (__GLIBC_MINOR__ >= 1)
53 # include <linux/types.h>
55 # include <sys/types.h>
63 #ifdef BB_FEATURE_LS_TIMESTAMPS
67 #define TYPEINDEX(mode) (((mode) >> 12) & 0x0f)
68 #define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)])
69 #ifdef BB_FEATURE_LS_FILETYPES
70 #define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)])
74 #define FMT_LONG 1 /* one record per line, extended info */
75 #define FMT_SINGLE 2 /* one record per line */
76 #define FMT_ROWS 3 /* print across rows */
77 #define FMT_COLUMNS 3 /* fill columns (same, since we don't sort) */
83 #define DISP_FTYPE 1 /* show character for file type */
84 #define DISP_EXEC 2 /* show '*' if regular executable file */
85 #define DISP_HIDDEN 4 /* show files starting . (except . and ..) */
86 #define DISP_DOT 8 /* show . and .. */
87 #define DISP_NUMERIC 16 /* numeric uid and gid */
88 #define DISP_FULLTIME 32 /* show extended time display */
89 #define DIR_NOLIST 64 /* show directory as itself, not contents */
90 #define DISP_DIRNAME 128 /* show directory name (for internal use) */
91 #define DIR_RECURSE 256 /* -R (not yet implemented) */
93 static unsigned char display_fmt = FMT_AUTO;
94 static unsigned short opts = 0;
95 static unsigned short column = 0;
97 #ifdef BB_FEATURE_AUTOWIDTH
98 static unsigned short terminal_width = 0;
99 static unsigned short column_width = 0;
100 static unsigned short toplevel_column_width = 0;
102 #define terminal_width TERMINAL_WIDTH
103 #define column_width COLUMN_WIDTH
106 #ifdef BB_FEATURE_LS_TIMESTAMPS
107 static unsigned char time_fmt = TIME_MOD;
110 #define wr(data,len) fwrite(data, 1, len, stdout)
112 static void writenum(long val, short minwidth)
116 char *p = scratch + sizeof(scratch);
118 short neg = (val < 0);
123 *--p = (val % 10) + '0', len++, val /= 10;
127 while (len < minwidth)
133 static void newline(void)
141 static void tab(short col)
143 static const char spaces[] = " ";
145 #define nspaces ((sizeof spaces)-1) /* null terminator! */
147 short n = col - column;
151 while (n > nspaces) {
155 /* must be 1...(sizeof spaces) left */
161 #ifdef BB_FEATURE_LS_FILETYPES
162 static char append_char(mode_t mode)
164 if (!(opts & DISP_FTYPE))
166 if ((opts & DISP_EXEC) && S_ISREG(mode)
167 && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return '*';
168 return APPCHAR(mode);
174 ** Display a file or directory as a single item
175 ** (in either long or short format)
179 static void list_single(const char *name, struct stat *info,
180 const char *fullname)
182 char scratch[PATH_MAX + 1];
183 short len = strlen(name);
185 #ifdef BB_FEATURE_LS_FILETYPES
186 char append = append_char(info->st_mode);
189 if (display_fmt == FMT_LONG) {
190 mode_t mode = info->st_mode;
193 wr(modeString(mode), 10);
195 writenum((long) info->st_nlink, (short) 5);
197 #ifdef BB_FEATURE_LS_USERNAME
198 if (!(opts & DISP_NUMERIC)) {
199 memset(scratch, 0, sizeof(scratch));
200 my_getpwuid(scratch, info->st_uid);
202 fputs(scratch, stdout);
203 if (strlen(scratch) <= 8)
204 wr(" ", 9 - strlen(scratch));
206 writenum((long) info->st_uid, (short) 8);
212 writenum((long) info->st_uid, (short) 8);
215 #ifdef BB_FEATURE_LS_USERNAME
216 if (!(opts & DISP_NUMERIC)) {
217 memset(scratch, 0, sizeof(scratch));
218 my_getgrgid(scratch, info->st_gid);
220 fputs(scratch, stdout);
221 if (strlen(scratch) <= 8)
222 wr(" ", 8 - strlen(scratch));
224 writenum((long) info->st_gid, (short) 8);
227 writenum((long) info->st_gid, (short) 8);
229 if (S_ISBLK(mode) || S_ISCHR(mode)) {
230 writenum((long) MAJOR(info->st_rdev), (short) 3);
232 writenum((long) MINOR(info->st_rdev), (short) 3);
234 writenum((long) info->st_size, (short) 8);
237 #ifdef BB_FEATURE_LS_TIMESTAMPS
244 cal = info->st_ctime;
247 cal = info->st_atime;
250 cal = info->st_mtime;
253 string = ctime(&cal);
254 if (opts & DISP_FULLTIME)
257 time_t age = time(NULL) - cal;
259 wr(string + 4, 7); /* mmm_dd_ */
260 if (age < 3600L * 24 * 365 / 2 && age > -15 * 60)
261 /* hh:mm if less than 6 months old */
264 /* _yyyy otherwise */
270 fputs("--- -- ----- ", stdout);
275 len = readlink(fullname, scratch, sizeof scratch);
277 fwrite(scratch, 1, len, stdout);
278 #ifdef BB_FEATURE_LS_FILETYPES
279 /* show type of destination */
280 if (opts & DISP_FTYPE) {
281 if (!stat(fullname, info)) {
282 append = append_char(info->st_mode);
284 fputc(append, stdout);
289 #ifdef BB_FEATURE_LS_FILETYPES
294 static short nexttab = 0;
296 /* sort out column alignment */
297 if (column == 0); /* nothing to do */
298 else if (display_fmt == FMT_SINGLE)
301 if (nexttab + column_width > terminal_width
302 #ifndef BB_FEATURE_AUTOWIDTH
303 || nexttab + len >= terminal_width
310 /* work out where next column starts */
311 #ifdef BB_FEATURE_AUTOWIDTH
312 /* we know the calculated width is big enough */
313 nexttab = column + column_width + COLUMN_GAP;
315 /* might cover more than one fixed-width column */
318 nexttab += column_width + COLUMN_GAP;
319 while (nexttab < (column + len + COLUMN_GAP));
321 /* now write the data */
323 column = column + len;
324 #ifdef BB_FEATURE_LS_FILETYPES
326 wr(&append, 1), column++;
333 ** List the given file or directory, expanding a directory
334 ** to show its contents if required
338 static int list_item(const char *name)
342 struct dirent *entry;
343 char fullname[MAXNAMLEN + 1], *fnend;
345 if (lstat(name, &info))
348 if (!S_ISDIR(info.st_mode) || (opts & DIR_NOLIST)) {
349 #ifdef BB_FEATURE_AUTOWIDTH
350 column_width = toplevel_column_width;
352 list_single(name, &info, name);
356 /* Otherwise, it's a directory we want to list the contents of */
358 if (opts & DISP_DIRNAME) { /* identify the directory */
360 wr("\n\n", 2), column = 0;
361 wr(name, strlen(name));
368 #ifdef BB_FEATURE_AUTOWIDTH
370 while ((entry = readdir(dir)) != NULL) {
371 short w = strlen(entry->d_name);
373 if (column_width < w)
386 /* List the contents */
388 strcpy(fullname, name); /* *** ignore '.' by itself */
389 fnend = fullname + strlen(fullname);
390 if (fnend[-1] != '/')
393 while ((entry = readdir(dir)) != NULL) {
394 const char *en = entry->d_name;
397 if (!en[1] || (en[1] == '.' && !en[2])) { /* . or .. */
398 if (!(opts & DISP_DOT))
400 } else if (!(opts & DISP_HIDDEN))
403 /* FIXME: avoid stat if not required */
404 strcpy(fnend, entry->d_name);
405 if (lstat(fullname, &info))
406 goto direrr; /* (shouldn't fail) */
407 list_single(entry->d_name, &info, fullname);
411 if (opts & DISP_DIRNAME) { /* separate the directory */
429 static const char ls_usage[] = "ls [-1a"
430 #ifdef BB_FEATURE_LS_TIMESTAMPS
434 #ifdef BB_FEATURE_LS_TIMESTAMPS
438 #ifdef BB_FEATURE_LS_FILETYPES
441 #ifdef BB_FEATURE_LS_TIMESTAMPS
445 #ifdef BB_FEATURE_LS_FILETYPES
448 #ifdef FEATURE_RECURSIVE
451 "] [filenames...]\n";
453 extern int ls_main(int argc, char **argv)
457 /* process options */
458 while (argi < argc && argv[argi][0] == '-') {
459 const char *p = &argv[argi][1];
462 goto print_usage_message; /* "-" by itself not allowed */
464 if (!p[1]) { /* "--" forces end of options */
468 /* it's a long option name - we don't support them */
469 goto print_usage_message;
475 display_fmt = FMT_LONG;
478 display_fmt = FMT_SINGLE;
481 display_fmt = FMT_ROWS;
484 display_fmt = FMT_COLUMNS;
486 #ifdef BB_FEATURE_LS_FILETYPES
491 opts |= DISP_FTYPE | DISP_EXEC;
498 opts |= DISP_HIDDEN | DISP_DOT;
501 opts |= DISP_NUMERIC;
506 #ifdef FEATURE_RECURSIVE
511 #ifdef BB_FEATURE_LS_TIMESTAMPS
513 time_fmt = TIME_ACCESS;
516 time_fmt = TIME_CHANGE;
519 opts |= DISP_FULLTIME;
523 goto print_usage_message;
529 /* choose a display format */
530 if (display_fmt == FMT_AUTO)
531 display_fmt = isatty(fileno(stdout)) ? FMT_COLUMNS : FMT_SINGLE;
533 opts |= DISP_DIRNAME; /* 2 or more items? label directories */
534 #ifdef BB_FEATURE_AUTOWIDTH
535 /* could add a -w option and/or TIOCGWINSZ call */
536 if (terminal_width < 1)
537 terminal_width = TERMINAL_WIDTH;
539 for (i = argi; i < argc; i++) {
540 int len = strlen(argv[i]);
542 if (toplevel_column_width < len)
543 toplevel_column_width = len;
547 /* process files specified, or current directory if none */
552 i |= list_item(argv[argi++]);