use err/warn(3) from C library, cast size arguments to printf
[unix-history] / usr / src / bin / ls / ls.c
CommitLineData
bcf1365c 1/*
9ffe97fe
KB
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Michael Fischbein.
7 *
ae14fb92 8 * %sccs.include.redist.c%
bcf1365c 9 */
9ffe97fe
KB
10
11#ifndef lint
3952e42c 12static char copyright[] =
9ffe97fe
KB
13"@(#) Copyright (c) 1989 The Regents of the University of California.\n\
14 All rights reserved.\n";
15#endif /* not lint */
16
17#ifndef lint
de637784 18static char sccsid[] = "@(#)ls.c 5.74 (Berkeley) %G%";
9ffe97fe
KB
19#endif /* not lint */
20
abe0683d 21#include <sys/types.h>
9ffe97fe 22#include <sys/stat.h>
4847d483 23#include <sys/ioctl.h>
f59807e9 24#include <dirent.h>
0ce0ae04 25#include <unistd.h>
f0a884e9 26#include <fts.h>
0ce0ae04 27#include <stdlib.h>
6ebcb998 28#include <string.h>
9ffe97fe
KB
29#include <errno.h>
30#include <stdio.h>
b3f77fd1 31#include "ls.h"
0ce0ae04 32#include "extern.h"
2fd18a0a 33
de637784 34char *getbsize __P((int *, long *));
f0a884e9 35
abe0683d 36static void display __P((FTSENT *, FTSENT *));
abe0683d
EA
37static int mastercmp __P((const FTSENT **, const FTSENT **));
38static void traverse __P((int, char **, int));
39
40static void (*printfcn) __P((DISPLAY *));
f0a884e9 41static int (*sortfcn) __P((const FTSENT *, const FTSENT *));
bcf1365c 42
abe0683d 43long blocksize; /* block size units */
fb29be9b
KB
44int termwidth = 80; /* default terminal width */
45
9ffe97fe 46/* flags */
9ffe97fe 47int f_accesstime; /* use time of last access */
4845c19f 48int f_column; /* columnated format */
32980675 49int f_flags; /* show flags associated with a file */
9ffe97fe 50int f_inode; /* print inode */
38eeee6d
KB
51int f_listdir; /* list actual directory, not contents */
52int f_listdot; /* list files beginning with . */
9ffe97fe 53int f_longform; /* long listing format */
4dfe4db2 54int f_newline; /* if precede with newline */
9ffe97fe 55int f_nonprint; /* show unprintables as ? */
9d5fbfa8 56int f_nosort; /* don't sort output */
9ffe97fe 57int f_recursive; /* ls subdirectories also */
38eeee6d 58int f_reversesort; /* reverse whatever sort is used */
926d5d7d 59int f_sectime; /* print the real time for all files */
38eeee6d 60int f_singlecol; /* use single column output */
9ffe97fe 61int f_size; /* list size in short listing */
38eeee6d 62int f_statustime; /* use time of last mode change */
4dfe4db2 63int f_dirname; /* if precede with directory name */
9ffe97fe 64int f_timesort; /* sort by time vice name */
38eeee6d 65int f_type; /* add type character for non-regular files */
2fd18a0a 66
4db4a32d 67int
9ffe97fe
KB
68main(argc, argv)
69 int argc;
f0a884e9 70 char *argv[];
547b0031 71{
f59807e9 72 static char dot[] = ".", *dotav[] = { dot, NULL };
4847d483 73 struct winsize win;
4933888a 74 int ch, fts_options, notused;
0ce0ae04 75 char *p;
2fd18a0a 76
f0a884e9 77 /* Terminal defaults to -Cq, non-terminal defaults to -1. */
f59807e9
KB
78 if (isatty(STDOUT_FILENO)) {
79 if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &win) == -1 ||
80 !win.ws_col) {
fb29be9b
KB
81 if (p = getenv("COLUMNS"))
82 termwidth = atoi(p);
83 }
4847d483
KB
84 else
85 termwidth = win.ws_col;
f59807e9 86 f_column = f_nonprint = 1;
9ffe97fe
KB
87 } else
88 f_singlecol = 1;
2fd18a0a 89
f0a884e9 90 /* Root is -A automatically. */
9ffe97fe 91 if (!getuid())
b3f77fd1 92 f_listdot = 1;
9ffe97fe 93
4db4a32d 94 fts_options = FTS_PHYSICAL;
c58b1817 95 while ((ch = getopt(argc, argv, "1ACFLRTacdfgiloqrstu")) != EOF) {
9ffe97fe 96 switch (ch) {
38eeee6d 97 /*
f0a884e9
EA
98 * The -1, -C and -l options all override each other so shell
99 * aliasing works right.
38eeee6d 100 */
9ffe97fe
KB
101 case '1':
102 f_singlecol = 1;
4845c19f 103 f_column = f_longform = 0;
2fd18a0a 104 break;
9ffe97fe 105 case 'C':
4845c19f 106 f_column = 1;
38eeee6d
KB
107 f_longform = f_singlecol = 0;
108 break;
109 case 'l':
110 f_longform = 1;
4845c19f 111 f_column = f_singlecol = 0;
9ffe97fe 112 break;
f59807e9 113 /* The -c and -u options override each other. */
38eeee6d
KB
114 case 'c':
115 f_statustime = 1;
116 f_accesstime = 0;
117 break;
118 case 'u':
119 f_accesstime = 1;
120 f_statustime = 0;
121 break;
9ffe97fe
KB
122 case 'F':
123 f_type = 1;
124 break;
125 case 'L':
4db4a32d
KB
126 fts_options &= ~FTS_PHYSICAL;
127 fts_options |= FTS_LOGICAL;
9ffe97fe
KB
128 break;
129 case 'R':
130 f_recursive = 1;
9ffe97fe
KB
131 break;
132 case 'a':
f0a884e9 133 fts_options |= FTS_SEEDOT;
9ffe97fe 134 /* FALLTHROUGH */
2fd18a0a 135 case 'A':
b3f77fd1 136 f_listdot = 1;
2fd18a0a 137 break;
f59807e9 138 /* The -d option turns off the -R option. */
1c52c7b1
JB
139 case 'S':
140 Sflg++; /* fall into... */
547b0031 141 case 'd':
9ffe97fe 142 f_listdir = 1;
f59807e9 143 f_recursive = 0;
2fd18a0a 144 break;
9d5fbfa8
KB
145 case 'f':
146 f_nosort = 1;
147 break;
abe0683d 148 case 'g': /* Compatibility with 4.3BSD. */
2fd18a0a 149 break;
ec0c22c1 150 case 'i':
9ffe97fe 151 f_inode = 1;
2fd18a0a 152 break;
32980675
KM
153 case 'o':
154 f_flags = 1;
155 break;
ec0c22c1 156 case 'q':
9ffe97fe 157 f_nonprint = 1;
2fd18a0a 158 break;
547b0031 159 case 'r':
9ffe97fe 160 f_reversesort = 1;
2fd18a0a 161 break;
ec0c22c1 162 case 's':
9ffe97fe 163 f_size = 1;
2fd18a0a 164 break;
926d5d7d
KB
165 case 'T':
166 f_sectime = 1;
167 break;
547b0031 168 case 't':
9ffe97fe 169 f_timesort = 1;
2fd18a0a 170 break;
ec0c22c1 171 default:
2fd18a0a 172 case '?':
9ffe97fe 173 usage();
2955376b 174 }
9ffe97fe 175 }
b3f77fd1
KB
176 argc -= optind;
177 argv += optind;
9ffe97fe 178
65c9f129
KB
179 /*
180 * If not -F, -i, -l, -s or -t options, don't require stat
a86fb882
EA
181 * information.
182 */
65c9f129 183 if (!f_inode && !f_longform && !f_size && !f_timesort && !f_type)
f0a884e9 184 fts_options |= FTS_NOSTAT;
b3f77fd1 185
91d39f6b
KB
186 /*
187 * If not -F, -d or -l options, follow any symbolic links listed on
188 * the command line.
189 */
190 if (!f_longform && !f_listdir && !f_type)
191 fts_options |= FTS_COMFOLLOW;
192
4933888a
KB
193 /* If -l or -s, figure out block size. */
194 if (f_longform || f_size) {
de637784 195 (void)getbsize(&notused, &blocksize);
4933888a
KB
196 blocksize /= 512;
197 }
198
f0a884e9 199 /* Select a sort function. */
9ffe97fe
KB
200 if (f_reversesort) {
201 if (!f_timesort)
202 sortfcn = revnamecmp;
203 else if (f_accesstime)
204 sortfcn = revacccmp;
9ffe97fe
KB
205 else if (f_statustime)
206 sortfcn = revstatcmp;
f0a884e9 207 else /* Use modification time. */
38eeee6d 208 sortfcn = revmodcmp;
2fd18a0a 209 } else {
9ffe97fe
KB
210 if (!f_timesort)
211 sortfcn = namecmp;
212 else if (f_accesstime)
213 sortfcn = acccmp;
9ffe97fe
KB
214 else if (f_statustime)
215 sortfcn = statcmp;
f0a884e9 216 else /* Use modification time. */
38eeee6d 217 sortfcn = modcmp;
9ffe97fe
KB
218 }
219
f0a884e9 220 /* Select a print function. */
4847d483
KB
221 if (f_singlecol)
222 printfcn = printscol;
223 else if (f_longform)
224 printfcn = printlong;
b3f77fd1 225 else
4e9923b0 226 printfcn = printcol;
9ffe97fe 227
0a3501e4 228 if (argc)
f0a884e9 229 traverse(argc, argv, fts_options);
f59807e9 230 else
f0a884e9 231 traverse(1, dotav, fts_options);
4e9923b0 232 exit(0);
2fd18a0a
KB
233}
234
f59807e9
KB
235static int output; /* If anything output. */
236
f0a884e9
EA
237/*
238 * Traverse() walks the logical directory structure specified by the argv list
239 * in the order specified by the mastercmp() comparison function. During the
240 * traversal it passes linked lists of structures to display() which represent
241 * a superset (may be exact set) of the files to be displayed.
242 */
abe0683d 243static void
f0a884e9
EA
244traverse(argc, argv, options)
245 int argc, options;
246 char *argv[];
247{
248 register FTS *ftsp;
f5eca7a8 249 register FTSENT *p, *chp;
f59807e9 250 int ch_options;
abe0683d 251
f0a884e9
EA
252 if ((ftsp =
253 fts_open(argv, options, f_nosort ? NULL : mastercmp)) == NULL)
38f75f3b 254 err(1, "%s", strerror(errno));
91d39f6b 255
f59807e9 256 display(NULL, fts_children(ftsp, 0));
f0a884e9
EA
257 if (f_listdir)
258 return;
f59807e9 259
db658853
KB
260 /*
261 * If not recursing down this tree and don't need stat info, just get
262 * the names.
263 */
f59807e9 264 ch_options = !f_recursive && options & FTS_NOSTAT ? FTS_NAMEONLY : 0;
db658853 265
f0a884e9
EA
266 while (p = fts_read(ftsp))
267 switch(p->fts_info) {
268 case FTS_DC:
269 err(0, "%s: directory causes a cycle", p->fts_name);
270 break;
271 case FTS_DNR:
272 case FTS_ERR:
273 err(0, "%s: %s",
274 p->fts_name, strerror(p->fts_errno));
275 break;
276 case FTS_D:
4db4a32d
KB
277 if (p->fts_level != FTS_ROOTLEVEL &&
278 p->fts_name[0] == '.' && !f_listdot)
279 break;
f59807e9
KB
280
281 /*
282 * If already output something, put out a newline as
283 * a separator. If multiple arguments, precede each
284 * directory with its name.
285 */
286 if (output)
287 (void)printf("\n%s:\n", p->fts_path);
288 else if (argc > 1) {
289 (void)printf("%s:\n", p->fts_path);
290 output = 1;
291 }
292
f5eca7a8
EA
293 chp = fts_children(ftsp, ch_options);
294 display(p, chp);
f59807e9 295
f5eca7a8 296 if (!f_recursive && chp != NULL)
4db4a32d 297 (void)fts_set(ftsp, p, FTS_SKIP);
f0a884e9
EA
298 break;
299 }
300 (void)fts_close(ftsp);
301}
be4f2604 302
f0a884e9 303/*
09cf81e2
KB
304 * Display() takes a linked list of FTSENT structures and passes the list
305 * along with any other necessary information to the print function. P
306 * points to the parent directory of the display list.
f0a884e9 307 */
abe0683d 308static void
f59807e9 309display(p, list)
f0a884e9
EA
310 register FTSENT *p;
311 FTSENT *list;
2fd18a0a 312{
f0a884e9 313 register FTSENT *cur;
abe0683d
EA
314 struct stat *sp;
315 DISPLAY d;
316 NAMES *np;
0e3001c9
KB
317 u_long btotal, maxblock, maxinode, maxlen, maxnlink;
318 u_quad_t maxsize;
09cf81e2 319 int bcfile, flen, glen, ulen, maxflags, maxgroup, maxuser;
abe0683d
EA
320 int entries, needstats;
321 char *user, *group, *flags, buf[20]; /* 32 bits == 10 digits */
322
f0a884e9
EA
323 /*
324 * If list is NULL there are two possibilities: that the parent
325 * directory p has no children, or that fts_children() returned an
91d39f6b 326 * error. We ignore the error case since it will be replicated
f0a884e9
EA
327 * on the next call to fts_read() on the post-order visit to the
328 * directory p, and will be signalled in traverse().
329 */
f59807e9 330 if (list == NULL)
f0a884e9 331 return;
b3f77fd1 332
abe0683d
EA
333 needstats = f_inode || f_longform || f_size;
334 flen = 0;
0e3001c9 335 btotal = maxblock = maxinode = maxlen = maxnlink = 0;
09cf81e2 336 bcfile = 0;
abe0683d 337 maxuser = maxgroup = maxflags = 0;
0e3001c9 338 maxsize = 0;
f59807e9
KB
339 for (cur = list, entries = 0; cur; cur = cur->fts_link) {
340 if (cur->fts_info == FTS_ERR || cur->fts_info == FTS_NS) {
341 err(0, "%s: %s",
342 cur->fts_name, strerror(cur->fts_errno));
343 cur->fts_number = NO_PRINT;
344 continue;
9ffe97fe 345 }
f59807e9
KB
346
347 /*
abe0683d
EA
348 * P is NULL if list is the argv list, to which different rules
349 * apply.
f59807e9
KB
350 */
351 if (p == NULL) {
352 /* Directories will be displayed later. */
353 if (cur->fts_info == FTS_D && !f_listdir) {
f0a884e9 354 cur->fts_number = NO_PRINT;
b3f77fd1 355 continue;
f0a884e9 356 }
f59807e9
KB
357 } else {
358 /* Only display dot file if -a/-A set. */
f0a884e9
EA
359 if (cur->fts_name[0] == '.' && !f_listdot) {
360 cur->fts_number = NO_PRINT;
b3f77fd1 361 continue;
f0a884e9 362 }
b3f77fd1 363 }
f59807e9
KB
364 if (f_nonprint)
365 prcopy(cur->fts_name, cur->fts_name, cur->fts_namelen);
abe0683d 366 if (cur->fts_namelen > maxlen)
f59807e9 367 maxlen = cur->fts_namelen;
abe0683d
EA
368 if (needstats) {
369 sp = cur->fts_statp;
370 if (sp->st_blocks > maxblock)
371 maxblock = sp->st_blocks;
372 if (sp->st_ino > maxinode)
373 maxinode = sp->st_ino;
374 if (sp->st_nlink > maxnlink)
375 maxnlink = sp->st_nlink;
376 if (sp->st_size > maxsize)
377 maxsize = sp->st_size;
378
379 btotal += sp->st_blocks;
380 if (f_longform) {
381 user = user_from_uid(sp->st_uid, 0);
382 if ((ulen = strlen(user)) > maxuser)
383 maxuser = ulen;
384 group = group_from_gid(sp->st_gid, 0);
385 if ((glen = strlen(group)) > maxgroup)
386 maxgroup = glen;
387 if (f_flags) {
9cc3702b
KB
388 flags =
389 flags_to_string(sp->st_flags, "-");
abe0683d
EA
390 if ((flen = strlen(flags)) > maxflags)
391 maxflags = flen;
392 } else
393 flen = 0;
394
395 if ((np = malloc(sizeof(NAMES) +
396 ulen + glen + flen + 3)) == NULL)
397 err(1, "%s", strerror(errno));
398
399 np->user = &np->data[0];
400 (void)strcpy(np->user, user);
401 np->group = &np->data[ulen + 1];
402 (void)strcpy(np->group, group);
403
09cf81e2
KB
404 if (S_ISCHR(sp->st_mode) ||
405 S_ISBLK(sp->st_mode))
406 bcfile = 1;
407
abe0683d
EA
408 if (f_flags) {
409 np->flags = &np->data[ulen + glen + 2];
410 (void)strcpy(np->flags, flags);
411 }
412 cur->fts_pointer = np;
413 }
414 }
f59807e9 415 ++entries;
be4f2604 416 }
547b0031 417
abe0683d
EA
418 if (!entries)
419 return;
420
421 d.list = list;
422 d.entries = entries;
423 d.maxlen = maxlen;
424 if (needstats) {
09cf81e2 425 d.bcfile = bcfile;
abe0683d 426 d.btotal = btotal;
2dbdf5a9
KB
427 (void)snprintf(buf, sizeof(buf), "%lu", maxblock);
428 d.s_block = strlen(buf);
abe0683d
EA
429 d.s_flags = maxflags;
430 d.s_group = maxgroup;
2dbdf5a9
KB
431 (void)snprintf(buf, sizeof(buf), "%lu", maxinode);
432 d.s_inode = strlen(buf);
433 (void)snprintf(buf, sizeof(buf), "%lu", maxnlink);
434 d.s_nlink = strlen(buf);
435 (void)snprintf(buf, sizeof(buf), "%qu", maxsize);
436 d.s_size = strlen(buf);
abe0683d 437 d.s_user = maxuser;
f59807e9 438 }
abe0683d
EA
439
440 printfcn(&d);
441 output = 1;
442
443 if (f_longform)
444 for (cur = list; cur; cur = cur->fts_link)
445 free(cur->fts_pointer);
547b0031
BJ
446}
447
f0a884e9
EA
448/*
449 * Ordering for mastercmp:
450 * If ordering the argv (fts_level = FTS_ROOTLEVEL) return non-directories
451 * as larger than directories. Within either group, use the sort function.
452 * All other levels use the sort function. Error entries remain unsorted.
453 */
abe0683d 454static int
f0a884e9
EA
455mastercmp(a, b)
456 const FTSENT **a, **b;
547b0031 457{
f0a884e9 458 register int a_info, b_info;
547b0031 459
f0a884e9
EA
460 a_info = (*a)->fts_info;
461 if (a_info == FTS_ERR)
0ce0ae04 462 return (0);
f0a884e9
EA
463 b_info = (*b)->fts_info;
464 if (b_info == FTS_ERR)
465 return (0);
4db4a32d
KB
466
467 if (a_info == FTS_NS || b_info == FTS_NS)
f0a884e9 468 return (namecmp(*a, *b));
4845c19f 469
abe0683d 470 if (a_info == b_info)
f0a884e9 471 return (sortfcn(*a, *b));
c7f12bd6 472
f0a884e9 473 if ((*a)->fts_level == FTS_ROOTLEVEL)
abe0683d 474 if (a_info == FTS_D)
f0a884e9
EA
475 return (1);
476 else if (b_info == FTS_D)
477 return (-1);
478 else
479 return (sortfcn(*a, *b));
480 else
481 return (sortfcn(*a, *b));
547b0031 482}