Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 9d3aba7 | 1999-10-06 09:04:55 +0000 | [diff] [blame] | 2 | /* |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 3 | * tiny-ls.c version 0.1.0: A minimalist 'ls' |
| 4 | * Copyright (C) 1996 Brian Candler <B.Candler@pobox.com> |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 5 | * |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 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 |
Eric Andersen | 77d9268 | 2001-05-23 20:32:09 +0000 | [diff] [blame] | 24 | * (i.e., the ones I couldn't live without :-) All features which involve |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 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 Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 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 |
| 35 | * |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 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 |
| 40 | * PORTABILITY: |
| 41 | * 1. requires lstat (BSD) - how do you do it without? |
| 42 | */ |
| 43 | |
Eric Andersen | e57d54b | 2001-01-30 18:03:11 +0000 | [diff] [blame] | 44 | enum { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 45 | TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 46 | COLUMN_GAP = 2, /* includes the file type char */ |
Eric Andersen | e57d54b | 2001-01-30 18:03:11 +0000 | [diff] [blame] | 47 | }; |
| 48 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 49 | /************************************************************************/ |
| 50 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 51 | #include <sys/types.h> |
| 52 | #include <sys/stat.h> |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 53 | #include <stdio.h> |
| 54 | #include <unistd.h> |
| 55 | #include <dirent.h> |
| 56 | #include <errno.h> |
| 57 | #include <stdio.h> |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 58 | #include <string.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 59 | #include <stdlib.h> |
Eric Andersen | 5307eca | 2001-01-26 01:52:43 +0000 | [diff] [blame] | 60 | #include <fcntl.h> |
| 61 | #include <signal.h> |
Eric Andersen | 8d79ce8 | 2001-07-22 23:00:15 +0000 | [diff] [blame] | 62 | #include <termios.h> |
Eric Andersen | 5307eca | 2001-01-26 01:52:43 +0000 | [diff] [blame] | 63 | #include <sys/ioctl.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 64 | #include "busybox.h" |
Eric Andersen | 5307eca | 2001-01-26 01:52:43 +0000 | [diff] [blame] | 65 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 66 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Eric Andersen | f1142c5 | 2001-02-20 06:16:29 +0000 | [diff] [blame] | 67 | #include <time.h> |
| 68 | #endif |
| 69 | |
Eric Andersen | 30f64c3 | 2001-01-30 19:23:46 +0000 | [diff] [blame] | 70 | #ifndef MAJOR |
Erik Andersen | 1ad302a | 2000-03-24 00:54:46 +0000 | [diff] [blame] | 71 | #define MAJOR(dev) (((dev)>>8)&0xff) |
| 72 | #define MINOR(dev) ((dev)&0xff) |
| 73 | #endif |
| 74 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 75 | /* what is the overall style of the listing */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 76 | enum { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 77 | 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 Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 81 | }; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 82 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 83 | /* 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 McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 101 | #define DISP_NORMAL (0) /* show normal filenames */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 102 | #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 Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 109 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 110 | /* how will the files be sorted */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 111 | static const int SORT_FORWARD = 0; /* sort in reverse order */ |
| 112 | static const int SORT_REVERSE = 1; /* sort in reverse order */ |
| 113 | static const int SORT_NAME = 2; /* sort by file name */ |
| 114 | static const int SORT_SIZE = 3; /* sort by file size */ |
| 115 | static const int SORT_ATIME = 4; /* sort by last access time */ |
| 116 | static const int SORT_CTIME = 5; /* sort by last change time */ |
| 117 | static const int SORT_MTIME = 6; /* sort by last modification time */ |
| 118 | static const int SORT_VERSION = 7; /* sort by version */ |
| 119 | static const int SORT_EXT = 8; /* sort by file name extension */ |
| 120 | static const int SORT_DIR = 9; /* sort by file or directory */ |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 121 | #endif |
| 122 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 123 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 124 | /* which of the three times will be used */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 125 | static const int TIME_MOD = 0; |
| 126 | static const int TIME_CHANGE = 1; |
| 127 | static const int TIME_ACCESS = 2; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 128 | #endif |
| 129 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 130 | #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 Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 135 | |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 136 | static const int SPLIT_DIR = 0; |
| 137 | static const int SPLIT_FILE = 1; |
| 138 | static const int SPLIT_SUBDIR = 2; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 139 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 140 | #define TYPEINDEX(mode) (((mode) >> 12) & 0x0f) |
| 141 | #define TYPECHAR(mode) ("0pcCd?bB-?l?s???" [TYPEINDEX(mode)]) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 142 | |
Eric Andersen | d598d41 | 2002-04-27 09:19:39 +0000 | [diff] [blame] | 143 | #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 144 | # define APPCHAR(mode) ("\0|\0\0/\0\0\0\0\0@\0=\0\0\0" [TYPEINDEX(mode)]) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 145 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 146 | |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 147 | /* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */ |
| 148 | #ifdef CONFIG_FEATURE_LS_COLOR |
| 149 | static int show_color = 0; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 150 | |
| 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 Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 155 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 156 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 157 | /* |
| 158 | * a directory entry and its stat info are stored here |
| 159 | */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 160 | struct 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 165 | }; |
| 166 | typedef struct dnode dnode_t; |
| 167 | |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 168 | static struct dnode **list_dir(const char *); |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 169 | static struct dnode **dnalloc(int); |
| 170 | static int list_single(struct dnode *); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 171 | |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 172 | static unsigned int disp_opts; |
| 173 | static unsigned int style_fmt; |
| 174 | static unsigned int list_fmt; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 175 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 176 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 177 | static unsigned int sort_opts; |
| 178 | static unsigned int sort_order; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 179 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 180 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 181 | static unsigned int time_fmt; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 182 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 183 | #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 184 | static unsigned int follow_links = FALSE; |
Matt Kraai | a2f2a8f | 2000-09-22 03:11:47 +0000 | [diff] [blame] | 185 | #endif |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 186 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 187 | #ifdef CONFIG_FEATURE_AUTOWIDTH |
Eric Andersen | e57d54b | 2001-01-30 18:03:11 +0000 | [diff] [blame] | 188 | static unsigned short terminal_width = TERMINAL_WIDTH; |
Eric Andersen | e57d54b | 2001-01-30 18:03:11 +0000 | [diff] [blame] | 189 | static unsigned short tabstops = COLUMN_GAP; |
Eric Andersen | f5d5e77 | 2001-01-24 23:34:48 +0000 | [diff] [blame] | 190 | #else |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 191 | #define tabstops COLUMN_GAP |
| 192 | #define terminal_width TERMINAL_WIDTH |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 193 | #endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 194 | |
Matt Kraai | 33fdae5 | 2000-10-13 17:59:43 +0000 | [diff] [blame] | 195 | static int status = EXIT_SUCCESS; |
| 196 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 197 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 198 | static unsigned long ls_disp_hr = 0; |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 199 | #endif |
| 200 | |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 201 | static struct dnode *my_stat(char *fullname, char *name) |
Matt Kraai | 9a6e67c | 2000-10-13 18:03:21 +0000 | [diff] [blame] | 202 | { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 203 | struct stat dstat; |
| 204 | struct dnode *cur; |
| 205 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 206 | #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS |
Matt Kraai | 1f0c436 | 2001-12-20 23:13:26 +0000 | [diff] [blame] | 207 | if (follow_links) { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 208 | if (stat(fullname, &dstat)) { |
| 209 | perror_msg("%s", fullname); |
Matt Kraai | 9a6e67c | 2000-10-13 18:03:21 +0000 | [diff] [blame] | 210 | status = EXIT_FAILURE; |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 211 | return 0; |
Matt Kraai | 9a6e67c | 2000-10-13 18:03:21 +0000 | [diff] [blame] | 212 | } |
| 213 | } else |
| 214 | #endif |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 215 | if (lstat(fullname, &dstat)) { |
| 216 | perror_msg("%s", fullname); |
Matt Kraai | 9a6e67c | 2000-10-13 18:03:21 +0000 | [diff] [blame] | 217 | status = EXIT_FAILURE; |
Matt Kraai | 9a6e67c | 2000-10-13 18:03:21 +0000 | [diff] [blame] | 218 | return 0; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 219 | } |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 220 | |
| 221 | cur = (struct dnode *) xmalloc(sizeof(struct dnode)); |
| 222 | cur->fullname = fullname; |
| 223 | cur->name = name; |
| 224 | cur->dstat = dstat; |
| 225 | return cur; |
Eric Andersen | 79565b6 | 2000-08-11 18:10:21 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 228 | /*----------------------------------------------------------------------*/ |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 229 | #ifdef CONFIG_FEATURE_LS_COLOR |
| 230 | static char fgcolor(mode_t mode) |
| 231 | { |
| 232 | /* Check wheter the file is existing (if so, color it red!) */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 233 | if (errno == ENOENT) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 234 | return '\037'; |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 235 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 236 | if (LIST_EXEC && S_ISREG(mode) |
| 237 | && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 238 | return COLOR(0xF000); /* File is executable ... */ |
| 239 | return COLOR(mode); |
| 240 | } |
| 241 | |
| 242 | /*----------------------------------------------------------------------*/ |
| 243 | static char bgcolor(mode_t mode) |
| 244 | { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 245 | if (LIST_EXEC && S_ISREG(mode) |
| 246 | && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 247 | return ATTR(0xF000); /* File is executable ... */ |
| 248 | return ATTR(mode); |
| 249 | } |
| 250 | #endif |
| 251 | |
| 252 | /*----------------------------------------------------------------------*/ |
Eric Andersen | d598d41 | 2002-04-27 09:19:39 +0000 | [diff] [blame] | 253 | #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined(CONFIG_FEATURE_LS_COLOR) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 254 | static char append_char(mode_t mode) |
Eric Andersen | 79565b6 | 2000-08-11 18:10:21 +0000 | [diff] [blame] | 255 | { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 256 | if (!(list_fmt & LIST_FILETYPE)) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 257 | return '\0'; |
| 258 | if ((list_fmt & LIST_EXEC) && S_ISREG(mode) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 259 | && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) |
| 260 | return '*'; |
| 261 | return APPCHAR(mode); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 262 | } |
| 263 | #endif |
Eric Andersen | 79565b6 | 2000-08-11 18:10:21 +0000 | [diff] [blame] | 264 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 265 | /*----------------------------------------------------------------------*/ |
Eric Andersen | cf1189f | 2000-11-29 21:52:06 +0000 | [diff] [blame] | 266 | static 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 Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 272 | static int countdirs(struct dnode **dn, int nfiles) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 273 | { |
| 274 | int i, dirs; |
| 275 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 276 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 282 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 283 | return (dirs); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 284 | } |
| 285 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 286 | static int countsubdirs(struct dnode **dn, int nfiles) |
Eric Andersen | cf1189f | 2000-11-29 21:52:06 +0000 | [diff] [blame] | 287 | { |
| 288 | int i, subdirs; |
| 289 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 290 | if (dn == NULL || nfiles < 1) |
| 291 | return 0; |
Eric Andersen | cf1189f | 2000-11-29 21:52:06 +0000 | [diff] [blame] | 292 | subdirs = 0; |
| 293 | for (i = 0; i < nfiles; i++) |
| 294 | if (is_subdir(dn[i])) |
| 295 | subdirs++; |
| 296 | return subdirs; |
| 297 | } |
| 298 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 299 | static int countfiles(struct dnode **dnp) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 300 | { |
| 301 | int nfiles; |
| 302 | struct dnode *cur; |
| 303 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 304 | if (dnp == NULL) |
| 305 | return (0); |
| 306 | nfiles = 0; |
| 307 | for (cur = dnp[0]; cur->next != NULL; cur = cur->next) |
| 308 | nfiles++; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 309 | nfiles++; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 310 | return (nfiles); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | /* get memory to hold an array of pointers */ |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 314 | static struct dnode **dnalloc(int num) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 315 | { |
| 316 | struct dnode **p; |
| 317 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 318 | if (num < 1) |
| 319 | return (NULL); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 320 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 321 | p = (struct dnode **) xcalloc((size_t) num, |
| 322 | (size_t) (sizeof(struct dnode *))); |
| 323 | return (p); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 324 | } |
| 325 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 326 | #ifdef CONFIG_FEATURE_LS_RECURSIVE |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 327 | static void dfree(struct dnode **dnp) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 328 | { |
| 329 | struct dnode *cur, *next; |
| 330 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 331 | if (dnp == NULL) |
| 332 | return; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 333 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 334 | cur = dnp[0]; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 335 | while (cur != NULL) { |
Aaron Lehmann | a170e1c | 2002-11-28 11:27:31 +0000 | [diff] [blame] | 336 | free(cur->fullname); /* free the filename */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 337 | next = cur->next; |
| 338 | free(cur); /* free the dnode */ |
| 339 | cur = next; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 340 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 341 | free(dnp); /* free the array holding the dnode pointers */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 342 | } |
Eric Andersen | 20aab26 | 2001-07-19 22:28:02 +0000 | [diff] [blame] | 343 | #endif |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 344 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 345 | static struct dnode **splitdnarray(struct dnode **dn, int nfiles, int which) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 346 | { |
| 347 | int dncnt, i, d; |
| 348 | struct dnode **dnp; |
| 349 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 350 | if (dn == NULL || nfiles < 1) |
| 351 | return (NULL); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 352 | |
| 353 | /* count how many dirs and regular files there are */ |
Eric Andersen | cf1189f | 2000-11-29 21:52:06 +0000 | [diff] [blame] | 354 | if (which == SPLIT_SUBDIR) |
| 355 | dncnt = countsubdirs(dn, nfiles); |
| 356 | else { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 357 | dncnt = countdirs(dn, nfiles); /* assume we are looking for dirs */ |
Eric Andersen | cf1189f | 2000-11-29 21:52:06 +0000 | [diff] [blame] | 358 | if (which == SPLIT_FILE) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 359 | dncnt = nfiles - dncnt; /* looking for files */ |
Eric Andersen | cf1189f | 2000-11-29 21:52:06 +0000 | [diff] [blame] | 360 | } |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 361 | |
| 362 | /* allocate a file array and a dir array */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 363 | dnp = dnalloc(dncnt); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 364 | |
| 365 | /* copy the entrys into the file or dir array */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 366 | for (d = i = 0; i < nfiles; i++) { |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 367 | if (which == SPLIT_DIR) { |
| 368 | if (S_ISDIR(dn[i]->dstat.st_mode)) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 369 | dnp[d++] = dn[i]; |
| 370 | } /* else skip the file */ |
Eric Andersen | cf1189f | 2000-11-29 21:52:06 +0000 | [diff] [blame] | 371 | } else if (which == SPLIT_SUBDIR) { |
| 372 | if (is_subdir(dn[i])) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 373 | dnp[d++] = dn[i]; |
| 374 | } /* else skip the file or dir */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 375 | } else { |
| 376 | if (!(S_ISDIR(dn[i]->dstat.st_mode))) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 377 | dnp[d++] = dn[i]; |
| 378 | } /* else skip the dir */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 379 | } |
| 380 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 381 | return (dnp); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | /*----------------------------------------------------------------------*/ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 385 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 386 | static int sortcmp(struct dnode *d1, struct dnode *d2) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 387 | { |
| 388 | int cmp, dif; |
| 389 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 390 | cmp = 0; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 391 | if (sort_opts == SORT_SIZE) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 392 | dif = (int) (d1->dstat.st_size - d2->dstat.st_size); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 393 | } else if (sort_opts == SORT_ATIME) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 394 | dif = (int) (d1->dstat.st_atime - d2->dstat.st_atime); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 395 | } else if (sort_opts == SORT_CTIME) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 396 | dif = (int) (d1->dstat.st_ctime - d2->dstat.st_ctime); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 397 | } else if (sort_opts == SORT_MTIME) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 398 | dif = (int) (d1->dstat.st_mtime - d2->dstat.st_mtime); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 399 | } else if (sort_opts == SORT_DIR) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 400 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 405 | } |
| 406 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 407 | if (dif > 0) |
| 408 | cmp = -1; |
| 409 | if (dif < 0) |
| 410 | cmp = 1; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 411 | if (dif == 0) { |
| 412 | /* sort by name- may be a tie_breaker for time or size cmp */ |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 413 | #ifdef CONFIG_LOCALE_SUPPORT |
| 414 | dif = strcoll(d1->name, d2->name); |
| 415 | #else |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 416 | dif = strcmp(d1->name, d2->name); |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 417 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 418 | if (dif > 0) |
| 419 | cmp = 1; |
| 420 | if (dif < 0) |
| 421 | cmp = -1; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | if (sort_order == SORT_REVERSE) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 425 | cmp = -1 * cmp; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 426 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 427 | return (cmp); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | /*----------------------------------------------------------------------*/ |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 431 | static void shellsort(struct dnode **dn, int size) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 432 | { |
| 433 | struct dnode *temp; |
| 434 | int gap, i, j; |
| 435 | |
| 436 | /* shell short the array */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 437 | if (dn == NULL || size < 2) |
| 438 | return; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 439 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 440 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 444 | break; |
| 445 | /* they are out of order, swap them */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 446 | temp = dn[j]; |
| 447 | dn[j] = dn[j + gap]; |
| 448 | dn[j + gap] = temp; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 449 | } |
| 450 | } |
| 451 | } |
| 452 | } |
| 453 | #endif |
| 454 | |
| 455 | /*----------------------------------------------------------------------*/ |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 456 | static void showfiles(struct dnode **dn, int nfiles) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 457 | { |
| 458 | int i, ncols, nrows, row, nc; |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 459 | int column = 0; |
| 460 | int nexttab = 0; |
| 461 | int column_width = 0; /* for STYLE_LONG and STYLE_SINGLE not used */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 462 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 463 | if (dn == NULL || nfiles < 1) |
| 464 | return; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 465 | |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 466 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 472 | /* find the longest file name- use that as the column width */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 473 | for (i = 0; i < nfiles; i++) { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 474 | int len = strlen(dn[i]->name) + |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 475 | ((list_fmt & LIST_INO) ? 8 : 0) + |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 476 | ((list_fmt & LIST_BLOCKS) ? 5 : 0); |
| 477 | if (column_width < len) |
| 478 | column_width = len; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 479 | } |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 480 | column_width += tabstops; |
| 481 | ncols = (int) (terminal_width / column_width); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Eric Andersen | e57d54b | 2001-01-30 18:03:11 +0000 | [diff] [blame] | 484 | if (ncols > 1) { |
| 485 | nrows = nfiles / ncols; |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 486 | if ((nrows * ncols) < nfiles) |
| 487 | nrows++; /* round up fractionals */ |
Eric Andersen | e57d54b | 2001-01-30 18:03:11 +0000 | [diff] [blame] | 488 | } else { |
| 489 | nrows = nfiles; |
| 490 | ncols = 1; |
| 491 | } |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 492 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 493 | for (row = 0; row < nrows; row++) { |
| 494 | for (nc = 0; nc < ncols; nc++) { |
Eric Andersen | 79565b6 | 2000-08-11 18:10:21 +0000 | [diff] [blame] | 495 | /* reach into the array based on the column and row */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 496 | i = (nc * nrows) + row; /* assume display by column */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 497 | if (disp_opts & DISP_ROWS) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 498 | i = (row * ncols) + nc; /* display across row */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 499 | if (i < nfiles) { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 500 | if (column > 0) { |
| 501 | nexttab -= column; |
| 502 | while (nexttab--) { |
| 503 | putchar(' '); |
| 504 | column++; |
| 505 | } |
Eric Andersen | 79565b6 | 2000-08-11 18:10:21 +0000 | [diff] [blame] | 506 | } |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 507 | nexttab = column + column_width; |
| 508 | column += list_single(dn[i]); |
Eric Andersen | 79565b6 | 2000-08-11 18:10:21 +0000 | [diff] [blame] | 509 | } |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 510 | } |
| 511 | putchar('\n'); |
| 512 | column = 0; |
Eric Andersen | a42982e | 2000-06-07 17:28:53 +0000 | [diff] [blame] | 513 | } |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | /*----------------------------------------------------------------------*/ |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 517 | static void showdirs(struct dnode **dn, int ndirs) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 518 | { |
| 519 | int i, nfiles; |
| 520 | struct dnode **subdnp; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 521 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 522 | #ifdef CONFIG_FEATURE_LS_RECURSIVE |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 523 | int dndirs; |
| 524 | struct dnode **dnd; |
| 525 | #endif |
| 526 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 527 | if (dn == NULL || ndirs < 1) |
| 528 | return; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 529 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 530 | for (i = 0; i < ndirs; i++) { |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 531 | if (disp_opts & (DISP_DIRNAME | DISP_RECURSIVE)) { |
Matt Kraai | 12f417e | 2001-01-18 02:57:08 +0000 | [diff] [blame] | 532 | printf("\n%s:\n", dn[i]->fullname); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 533 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 534 | subdnp = list_dir(dn[i]->fullname); |
| 535 | nfiles = countfiles(subdnp); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 536 | if (nfiles > 0) { |
| 537 | /* list all files at this level */ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 538 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 539 | shellsort(subdnp, nfiles); |
| 540 | #endif |
| 541 | showfiles(subdnp, nfiles); |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 542 | #ifdef CONFIG_FEATURE_LS_RECURSIVE |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 543 | if (disp_opts & DISP_RECURSIVE) { |
| 544 | /* recursive- list the sub-dirs */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 545 | dnd = splitdnarray(subdnp, nfiles, SPLIT_SUBDIR); |
| 546 | dndirs = countsubdirs(subdnp, nfiles); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 547 | if (dndirs > 0) { |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 548 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 549 | shellsort(dnd, dndirs); |
Matt Kraai | a5bd268 | 2000-10-28 06:40:09 +0000 | [diff] [blame] | 550 | #endif |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 551 | showdirs(dnd, dndirs); |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 552 | free(dnd); /* free the array of dnode pointers to the dirs */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 553 | } |
| 554 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 555 | dfree(subdnp); /* free the dnodes and the fullname mem */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 556 | #endif |
| 557 | } |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | /*----------------------------------------------------------------------*/ |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 562 | static struct dnode **list_dir(const char *path) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 563 | { |
| 564 | struct dnode *dn, *cur, **dnp; |
| 565 | struct dirent *entry; |
| 566 | DIR *dir; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 567 | int i, nfiles; |
| 568 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 569 | if (path == NULL) |
| 570 | return (NULL); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 571 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 572 | dn = NULL; |
| 573 | nfiles = 0; |
Eric Andersen | e7e1e2d | 2000-10-12 22:40:14 +0000 | [diff] [blame] | 574 | dir = opendir(path); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 575 | if (dir == NULL) { |
Matt Kraai | 1fa1ade | 2000-12-18 03:57:16 +0000 | [diff] [blame] | 576 | perror_msg("%s", path); |
Matt Kraai | 33fdae5 | 2000-10-13 17:59:43 +0000 | [diff] [blame] | 577 | status = EXIT_FAILURE; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 578 | return (NULL); /* could not open the dir */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 579 | } |
| 580 | while ((entry = readdir(dir)) != NULL) { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 581 | char *fullname; |
| 582 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 583 | /* are we going to list the file- it may be . or .. or a hidden file */ |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 584 | 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 Kraai | 782ab3c | 2001-04-23 01:07:00 +0000 | [diff] [blame] | 589 | continue; |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 590 | if (!(disp_opts & DISP_HIDDEN)) |
Matt Kraai | 782ab3c | 2001-04-23 01:07:00 +0000 | [diff] [blame] | 591 | continue; |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 592 | } |
| 593 | fullname = concat_path_file(path, entry->d_name); |
| 594 | cur = my_stat(fullname, strrchr(fullname, '/') + 1); |
| 595 | if (!cur) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 596 | continue; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 597 | cur->next = dn; |
| 598 | dn = cur; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 599 | nfiles++; |
| 600 | } |
| 601 | closedir(dir); |
| 602 | |
| 603 | /* now that we know how many files there are |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 604 | ** allocate memory for an array to hold dnode pointers |
| 605 | */ |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 606 | if (dn == NULL) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 607 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 612 | } |
| 613 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 614 | return (dnp); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | /*----------------------------------------------------------------------*/ |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 618 | static int list_single(struct dnode *dn) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 619 | { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 620 | int i, column = 0; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 621 | |
Matt Kraai | a1bbde7 | 2002-03-08 16:25:33 +0000 | [diff] [blame] | 622 | #ifdef CONFIG_FEATURE_LS_USERNAME |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 623 | char scratch[16]; |
Matt Kraai | a1bbde7 | 2002-03-08 16:25:33 +0000 | [diff] [blame] | 624 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 625 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 626 | char *filetime; |
| 627 | time_t ttime, age; |
| 628 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 629 | #if defined(CONFIG_FEATURE_LS_FILETYPES) || defined (CONFIG_FEATURE_LS_COLOR) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 630 | struct stat info; |
| 631 | char append; |
| 632 | #endif |
| 633 | |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 634 | if (dn->fullname == NULL) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 635 | return (0); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 636 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 637 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 638 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 644 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 645 | #ifdef CONFIG_FEATURE_LS_FILETYPES |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 646 | append = append_char(dn->dstat.st_mode); |
| 647 | #endif |
| 648 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 649 | for (i = 0; i <= 31; i++) { |
| 650 | switch (list_fmt & (1 << i)) { |
| 651 | case LIST_INO: |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 652 | column += printf("%7ld ", (long int) dn->dstat.st_ino); |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 653 | break; |
| 654 | case LIST_BLOCKS: |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 655 | #if _FILE_OFFSET_BITS == 64 |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 656 | column += printf("%4lld ", dn->dstat.st_blocks >> 1); |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 657 | #else |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 658 | column += printf("%4ld ", dn->dstat.st_blocks >> 1); |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 659 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 660 | break; |
| 661 | case LIST_MODEBITS: |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 662 | column += printf("%-10s ", (char *) mode_string(dn->dstat.st_mode)); |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 663 | break; |
| 664 | case LIST_NLINKS: |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 665 | column += printf("%4ld ", (long) dn->dstat.st_nlink); |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 666 | break; |
| 667 | case LIST_ID_NAME: |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 668 | #ifdef CONFIG_FEATURE_LS_USERNAME |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 669 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 675 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 676 | case LIST_ID_NUMERIC: |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 677 | column += printf("%-8d %-8d", dn->dstat.st_uid, dn->dstat.st_gid); |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 678 | 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 McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 682 | column += printf("%4d, %3d ", (int) MAJOR(dn->dstat.st_rdev), |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 683 | (int) MINOR(dn->dstat.st_rdev)); |
| 684 | } else { |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 685 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 686 | if (ls_disp_hr == TRUE) { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 687 | column += printf("%9s ", |
| 688 | make_human_readable_str(dn->dstat.st_size, 1, 0)); |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 689 | } else |
| 690 | #endif |
| 691 | { |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 692 | #if _FILE_OFFSET_BITS == 64 |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 693 | column += printf("%9lld ", (long long) dn->dstat.st_size); |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 694 | #else |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 695 | column += printf("%9ld ", dn->dstat.st_size); |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 696 | #endif |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 697 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 698 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 699 | break; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 700 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 701 | case LIST_FULLTIME: |
| 702 | case LIST_DATE_TIME: |
| 703 | if (list_fmt & LIST_FULLTIME) { |
| 704 | printf("%24.24s ", filetime); |
| 705 | column += 25; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 706 | break; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 707 | } |
| 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 718 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 719 | case LIST_FILENAME: |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 720 | #ifdef CONFIG_FEATURE_LS_COLOR |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 721 | 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 Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 726 | #endif |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 727 | column += printf("%s", dn->name); |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 728 | #ifdef CONFIG_FEATURE_LS_COLOR |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 729 | if (show_color) { |
| 730 | printf("\033[0m"); |
| 731 | } |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 732 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 733 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 743 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 744 | #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 McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 752 | column += printf("%s", lpath) + 4; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 753 | #ifdef CONFIG_FEATURE_LS_COLOR |
| 754 | if (show_color) { |
| 755 | printf("\033[0m"); |
| 756 | } |
| 757 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 758 | free(lpath); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 759 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 760 | } |
| 761 | break; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 762 | #ifdef CONFIG_FEATURE_LS_FILETYPES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 763 | case LIST_FILETYPE: |
| 764 | if (append != '\0') { |
| 765 | printf("%1c", append); |
| 766 | column++; |
| 767 | } |
| 768 | break; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 769 | #endif |
| 770 | } |
| 771 | } |
| 772 | |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 773 | return column; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 774 | } |
| 775 | |
| 776 | /*----------------------------------------------------------------------*/ |
| 777 | extern 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 McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 786 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 787 | #ifdef CONFIG_FEATURE_AUTOWIDTH |
Eric Andersen | 5307eca | 2001-01-26 01:52:43 +0000 | [diff] [blame] | 788 | struct winsize win = { 0, 0, 0, 0 }; |
| 789 | #endif |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 790 | |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 791 | disp_opts = DISP_NORMAL; |
| 792 | style_fmt = STYLE_AUTO; |
| 793 | list_fmt = LIST_SHORT; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 794 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 795 | sort_opts = SORT_NAME; |
| 796 | sort_order = SORT_FORWARD; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 797 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 798 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 799 | time_fmt = TIME_MOD; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 800 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 801 | #ifdef CONFIG_FEATURE_AUTOWIDTH |
Mark Whitley | 9b300d0 | 2001-02-01 19:39:43 +0000 | [diff] [blame] | 802 | ioctl(fileno(stdout), TIOCGWINSZ, &win); |
Mark Whitley | 9b300d0 | 2001-02-01 19:39:43 +0000 | [diff] [blame] | 803 | if (win.ws_col > 0) |
| 804 | terminal_width = win.ws_col - 1; |
Eric Andersen | 5307eca | 2001-01-26 01:52:43 +0000 | [diff] [blame] | 805 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 806 | nfiles = 0; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 807 | |
Eric Andersen | 3ad0bd9 | 2002-03-20 09:13:48 +0000 | [diff] [blame] | 808 | #ifdef CONFIG_FEATURE_LS_COLOR |
| 809 | if (isatty(fileno(stdout))) |
| 810 | show_color = 1; |
| 811 | #endif |
| 812 | |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 813 | /* process options */ |
| 814 | while ((opt = getopt(argc, argv, "1AaCdgilnsx" |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 815 | #ifdef CONFIG_FEATURE_AUTOWIDTH |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 816 | "T:w:" |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 817 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 818 | #ifdef CONFIG_FEATURE_LS_FILETYPES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 819 | "Fp" |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 820 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 821 | #ifdef CONFIG_FEATURE_LS_RECURSIVE |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 822 | "R" |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 823 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 824 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 825 | "rSvX" |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 826 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 827 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 828 | "cetu" |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 829 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 830 | #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 831 | "L" |
Matt Kraai | a2f2a8f | 2000-09-22 03:11:47 +0000 | [diff] [blame] | 832 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 833 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 834 | "h" |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 835 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 836 | "k")) > 0) { |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 837 | switch (opt) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 838 | case '1': |
| 839 | style_fmt = STYLE_SINGLE; |
Eric Andersen | fc4a0fd | 2003-01-14 18:13:13 +0000 | [diff] [blame] | 840 | list_fmt = LIST_SHORT; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 841 | 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 Andersen | fc4a0fd | 2003-01-14 18:13:13 +0000 | [diff] [blame] | 850 | list_fmt = LIST_SHORT; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 851 | 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 Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 863 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 864 | ls_disp_hr = FALSE; |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 865 | #endif |
| 866 | break; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 867 | 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 Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 876 | #ifdef CONFIG_FEATURE_LS_FILETYPES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 877 | case 'F': |
| 878 | list_fmt |= LIST_FILETYPE | LIST_EXEC; |
| 879 | break; |
| 880 | case 'p': |
| 881 | list_fmt |= LIST_FILETYPE; |
| 882 | break; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 883 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 884 | #ifdef CONFIG_FEATURE_LS_RECURSIVE |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 885 | case 'R': |
| 886 | disp_opts |= DISP_RECURSIVE; |
| 887 | break; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 888 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 889 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 890 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 902 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 903 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 904 | case 'e': |
| 905 | list_fmt |= LIST_FULLTIME; |
| 906 | break; |
| 907 | case 'c': |
| 908 | time_fmt = TIME_CHANGE; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 909 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 910 | sort_opts = SORT_CTIME; |
Matt Kraai | a5bd268 | 2000-10-28 06:40:09 +0000 | [diff] [blame] | 911 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 912 | break; |
| 913 | case 'u': |
| 914 | time_fmt = TIME_ACCESS; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 915 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 916 | sort_opts = SORT_ATIME; |
Matt Kraai | a5bd268 | 2000-10-28 06:40:09 +0000 | [diff] [blame] | 917 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 918 | break; |
| 919 | case 't': |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 920 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 921 | sort_opts = SORT_MTIME; |
Matt Kraai | a5bd268 | 2000-10-28 06:40:09 +0000 | [diff] [blame] | 922 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 923 | break; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 924 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 925 | #ifdef CONFIG_FEATURE_LS_FOLLOWLINKS |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 926 | case 'L': |
| 927 | follow_links = TRUE; |
| 928 | break; |
Matt Kraai | a2f2a8f | 2000-09-22 03:11:47 +0000 | [diff] [blame] | 929 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 930 | #ifdef CONFIG_FEATURE_AUTOWIDTH |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 931 | case 'T': |
| 932 | tabstops = atoi(optarg); |
| 933 | break; |
| 934 | case 'w': |
| 935 | terminal_width = atoi(optarg); |
| 936 | break; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 937 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 938 | #ifdef CONFIG_FEATURE_HUMAN_READABLE |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 939 | case 'h': |
| 940 | ls_disp_hr = TRUE; |
| 941 | break; |
Richard June | 6d0921c | 2001-01-22 22:35:38 +0000 | [diff] [blame] | 942 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 943 | case 'k': |
| 944 | break; |
| 945 | default: |
| 946 | goto print_usage_message; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 947 | } |
| 948 | } |
| 949 | |
| 950 | /* sort out which command line options take precedence */ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 951 | #ifdef CONFIG_FEATURE_LS_RECURSIVE |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 952 | if (disp_opts & DISP_NOLIST) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 953 | disp_opts &= ~DISP_RECURSIVE; /* no recurse if listing only dir */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 954 | #endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 955 | #if defined (CONFIG_FEATURE_LS_TIMESTAMPS) && defined (CONFIG_FEATURE_LS_SORTFILES) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 956 | if (time_fmt & TIME_CHANGE) |
| 957 | sort_opts = SORT_CTIME; |
| 958 | if (time_fmt & TIME_ACCESS) |
| 959 | sort_opts = SORT_ATIME; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 960 | #endif |
Eric Andersen | fc4a0fd | 2003-01-14 18:13:13 +0000 | [diff] [blame] | 961 | if (style_fmt != STYLE_LONG) /* only for long list */ |
| 962 | list_fmt &= ~(LIST_ID_NUMERIC|LIST_FULLTIME|LIST_ID_NAME|LIST_ID_NUMERIC); |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 963 | #ifdef CONFIG_FEATURE_LS_USERNAME |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 964 | if (style_fmt == STYLE_LONG && (list_fmt & LIST_ID_NUMERIC)) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 965 | list_fmt &= ~LIST_ID_NAME; /* don't list names if numeric uid */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 966 | #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 McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 979 | ac = argc - optind; /* how many cmd line args are left */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 980 | if (ac < 1) { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 981 | av = (char **) xcalloc((size_t) 1, (size_t) (sizeof(char *))); |
| 982 | av[0] = xstrdup("."); |
| 983 | ac = 1; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 984 | } else { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 985 | 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 988 | } |
| 989 | } |
| 990 | |
| 991 | /* now, everything is in the av array */ |
| 992 | if (ac > 1) |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 993 | disp_opts |= DISP_DIRNAME; /* 2 or more items? label directories */ |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 994 | |
| 995 | /* stuff the command line file names into an dnode array */ |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 996 | dn = NULL; |
| 997 | for (oi = 0; oi < ac; oi++) { |
Glenn L McGrath | 4d00129 | 2003-01-06 01:11:50 +0000 | [diff] [blame] | 998 | char *fullname = xstrdup(av[oi]); |
| 999 | |
| 1000 | cur = my_stat(fullname, fullname); |
| 1001 | if (!cur) |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1002 | continue; |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 1003 | cur->next = dn; |
| 1004 | dn = cur; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1005 | nfiles++; |
| 1006 | } |
| 1007 | |
| 1008 | /* now that we know how many files there are |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 1009 | ** 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 Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1015 | } |
| 1016 | |
| 1017 | |
| 1018 | if (disp_opts & DISP_NOLIST) { |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 1019 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1020 | shellsort(dnp, nfiles); |
| 1021 | #endif |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 1022 | if (nfiles > 0) |
| 1023 | showfiles(dnp, nfiles); |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1024 | } else { |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 1025 | dnd = splitdnarray(dnp, nfiles, SPLIT_DIR); |
| 1026 | dnf = splitdnarray(dnp, nfiles, SPLIT_FILE); |
| 1027 | dndirs = countdirs(dnp, nfiles); |
| 1028 | dnfiles = nfiles - dndirs; |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1029 | if (dnfiles > 0) { |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 1030 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1031 | shellsort(dnf, dnfiles); |
| 1032 | #endif |
| 1033 | showfiles(dnf, dnfiles); |
| 1034 | } |
| 1035 | if (dndirs > 0) { |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 1036 | #ifdef CONFIG_FEATURE_LS_SORTFILES |
Eric Andersen | 11c6552 | 2000-09-07 17:24:47 +0000 | [diff] [blame] | 1037 | shellsort(dnd, dndirs); |
| 1038 | #endif |
| 1039 | showdirs(dnd, dndirs); |
| 1040 | } |
| 1041 | } |
Glenn L McGrath | e3906fc | 2002-08-22 18:13:54 +0000 | [diff] [blame] | 1042 | return (status); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1043 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1044 | print_usage_message: |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 1045 | show_usage(); |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1046 | } |