Ignore the usually-ignored files in git
[findutils.git] / lib / listfile.c
blob7c2308a50a3d8cb894155ffdbd39fbf040ac97c9
1 /* listfile.c -- display a long listing of a file
2 Copyright (C) 1991, 1993, 2000, 2004, 2005, 2007 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 USA.
20 #include <config.h>
22 #include <alloca.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <pwd.h>
29 #include <grp.h>
30 #include <time.h>
31 #include <errno.h>
32 #include <fcntl.h>
33 #include <string.h>
34 #include <unistd.h> /* for readlink() */
35 #include <openat.h>
37 #include "human.h"
38 #include "xalloc.h"
39 #include "pathmax.h"
40 #include "error.h"
41 #include "filemode.h"
42 #include "dircallback.h"
44 #include "listfile.h"
46 /* Since major is a function on SVR4, we can't use `ifndef major'. */
47 #ifdef MAJOR_IN_MKDEV
48 #include <sys/mkdev.h>
49 #define HAVE_MAJOR
50 #endif
51 #ifdef MAJOR_IN_SYSMACROS
52 #include <sys/sysmacros.h>
53 #define HAVE_MAJOR
54 #endif
60 #ifdef HAVE_LOCALE_H
61 #include <locale.h>
62 #endif
64 #if ENABLE_NLS
65 # include <libintl.h>
66 # define _(Text) gettext (Text)
67 #else
68 # define _(Text) Text
69 #define textdomain(Domain)
70 #define bindtextdomain(Package, Directory)
71 #endif
72 #ifdef gettext_noop
73 # define N_(String) gettext_noop (String)
74 #else
75 /* See locate.c for explanation as to why not use (String) */
76 # define N_(String) String
77 #endif
81 #ifdef STAT_MACROS_BROKEN
82 #undef S_ISCHR
83 #undef S_ISBLK
84 #undef S_ISLNK
85 #endif
87 #ifndef S_ISCHR
88 #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR)
89 #endif
90 #ifndef S_ISBLK
91 #define S_ISBLK(m) (((m) & S_IFMT) == S_IFBLK)
92 #endif
93 #if defined S_IFLNK && !defined S_ISLNK
94 #define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
95 #endif
97 /* Get or fake the disk device blocksize.
98 Usually defined by sys/param.h (if at all). */
99 #ifndef DEV_BSIZE
100 # ifdef BSIZE
101 # define DEV_BSIZE BSIZE
102 # else /* !BSIZE */
103 # define DEV_BSIZE 4096
104 # endif /* !BSIZE */
105 #endif /* !DEV_BSIZE */
107 /* Extract or fake data from a `struct stat'.
108 ST_BLKSIZE: Preferred I/O blocksize for the file, in bytes.
109 ST_NBLOCKS: Number of blocks in the file, including indirect blocks.
110 ST_NBLOCKSIZE: Size of blocks used when calculating ST_NBLOCKS. */
111 #ifndef HAVE_STRUCT_STAT_ST_BLOCKS
112 # define ST_BLKSIZE(statbuf) DEV_BSIZE
113 # if defined _POSIX_SOURCE || !defined BSIZE /* fileblocks.c uses BSIZE. */
114 # define ST_NBLOCKS(statbuf) \
115 (S_ISREG ((statbuf).st_mode) \
116 || S_ISDIR ((statbuf).st_mode) \
117 ? (statbuf).st_size / ST_NBLOCKSIZE + ((statbuf).st_size % ST_NBLOCKSIZE != 0) : 0)
118 # else /* !_POSIX_SOURCE && BSIZE */
119 # define ST_NBLOCKS(statbuf) \
120 (S_ISREG ((statbuf).st_mode) \
121 || S_ISDIR ((statbuf).st_mode) \
122 ? st_blocks ((statbuf).st_size) : 0)
123 # endif /* !_POSIX_SOURCE && BSIZE */
124 #else /* HAVE_STRUCT_STAT_ST_BLOCKS */
125 /* Some systems, like Sequents, return st_blksize of 0 on pipes. */
126 # define ST_BLKSIZE(statbuf) ((statbuf).st_blksize > 0 \
127 ? (statbuf).st_blksize : DEV_BSIZE)
128 # if defined hpux || defined __hpux__ || defined __hpux
129 /* HP-UX counts st_blocks in 1024-byte units.
130 This loses when mixing HP-UX and BSD filesystems with NFS. */
131 # define ST_NBLOCKSIZE 1024
132 # else /* !hpux */
133 # if defined _AIX && defined _I386
134 /* AIX PS/2 counts st_blocks in 4K units. */
135 # define ST_NBLOCKSIZE (4 * 1024)
136 # else /* not AIX PS/2 */
137 # if defined _CRAY
138 # define ST_NBLOCKS(statbuf) \
139 (S_ISREG ((statbuf).st_mode) \
140 || S_ISDIR ((statbuf).st_mode) \
141 ? (statbuf).st_blocks * ST_BLKSIZE(statbuf)/ST_NBLOCKSIZE : 0)
142 # endif /* _CRAY */
143 # endif /* not AIX PS/2 */
144 # endif /* !hpux */
145 #endif /* HAVE_STRUCT_STAT_ST_BLOCKS */
147 #ifndef ST_NBLOCKS
148 # define ST_NBLOCKS(statbuf) \
149 (S_ISREG ((statbuf).st_mode) \
150 || S_ISDIR ((statbuf).st_mode) \
151 ? (statbuf).st_blocks : 0)
152 #endif
154 #ifndef ST_NBLOCKSIZE
155 # define ST_NBLOCKSIZE 512
156 #endif
158 #ifdef major /* Might be defined in sys/types.h. */
159 #define HAVE_MAJOR
160 #endif
161 #ifndef HAVE_MAJOR
162 #define major(dev) (((dev) >> 8) & 0xff)
163 #define minor(dev) ((dev) & 0xff)
164 #endif
165 #undef HAVE_MAJOR
168 static void print_name (register const char *p, FILE *stream, int literal_control_chars);
170 extern char * getgroup (gid_t gid);
171 extern char * getuser (uid_t uid);
175 size_t
176 file_blocksize(const struct stat *p)
178 return ST_NBLOCKSIZE;
183 /* NAME is the name to print.
184 RELNAME is the path to access it from the current directory.
185 STATP is the results of stat or lstat on it.
186 Use CURRENT_TIME to decide whether to print yyyy or hh:mm.
187 Use OUTPUT_BLOCK_SIZE to determine how to print file block counts
188 and sizes.
189 STREAM is the stdio stream to print on. */
191 void
192 list_file (const char *name,
193 int dirfd,
194 char *relname,
195 const struct stat *statp,
196 time_t current_time,
197 int output_block_size,
198 int literal_control_chars,
199 FILE *stream)
201 char modebuf[11];
202 struct tm const *when_local;
203 char const *user_name;
204 char const *group_name;
205 char hbuf[LONGEST_HUMAN_READABLE + 1];
207 #if HAVE_ST_DM_MODE
208 /* Cray DMF: look at the file's migrated, not real, status */
209 strmode (statp->st_dm_mode, modebuf);
210 #else
211 strmode (statp->st_mode, modebuf);
212 #endif
213 modebuf[10] = '\0';
215 fprintf (stream, "%6s ",
216 human_readable ((uintmax_t) statp->st_ino, hbuf,
217 human_ceiling,
218 1, 1));
220 fprintf (stream, "%4s ",
221 human_readable ((uintmax_t) ST_NBLOCKS (*statp), hbuf,
222 human_ceiling,
223 ST_NBLOCKSIZE, output_block_size));
226 /* The space between the mode and the number of links is the POSIX
227 "optional alternate access method flag". */
228 fprintf (stream, "%s %3lu ", modebuf, (unsigned long) statp->st_nlink);
230 user_name = getuser (statp->st_uid);
231 if (user_name)
232 fprintf (stream, "%-8s ", user_name);
233 else
234 fprintf (stream, "%-8lu ", (unsigned long) statp->st_uid);
236 group_name = getgroup (statp->st_gid);
237 if (group_name)
238 fprintf (stream, "%-8s ", group_name);
239 else
240 fprintf (stream, "%-8lu ", (unsigned long) statp->st_gid);
242 if (S_ISCHR (statp->st_mode) || S_ISBLK (statp->st_mode))
243 #ifdef HAVE_ST_RDEV
244 fprintf (stream, "%3lu, %3lu ",
245 (unsigned long) major (statp->st_rdev),
246 (unsigned long) minor (statp->st_rdev));
247 #else
248 fprintf (stream, " ");
249 #endif
250 else
251 fprintf (stream, "%8s ",
252 human_readable ((uintmax_t) statp->st_size, hbuf,
253 human_ceiling,
255 output_block_size < 0 ? output_block_size : 1));
257 if ((when_local = localtime (&statp->st_mtime)))
259 char init_bigbuf[256];
260 char *buf = init_bigbuf;
261 size_t bufsize = sizeof init_bigbuf;
263 /* Use strftime rather than ctime, because the former can produce
264 locale-dependent names for the month (%b).
266 Output the year if the file is fairly old or in the future.
267 POSIX says the cutoff is 6 months old;
268 approximate this by 6*30 days.
269 Allow a 1 hour slop factor for what is considered "the future",
270 to allow for NFS server/client clock disagreement. */
271 char const *fmt =
272 ((current_time - 6 * 30 * 24 * 60 * 60 <= statp->st_mtime
273 && statp->st_mtime <= current_time + 60 * 60)
274 ? "%b %e %H:%M"
275 : "%b %e %Y");
277 while (!strftime (buf, bufsize, fmt, when_local))
278 buf = alloca (bufsize *= 2);
280 fprintf (stream, "%s ", buf);
282 else
284 /* The time cannot be represented as a local time;
285 print it as a huge integer number of seconds. */
286 int width = 12;
288 if (statp->st_mtime < 0)
290 char const *num = human_readable (- (uintmax_t) statp->st_mtime,
291 hbuf, human_ceiling, 1, 1);
292 int sign_width = width - strlen (num);
293 fprintf (stream, "%*s%s ",
294 sign_width < 0 ? 0 : sign_width, "-", num);
296 else
297 fprintf (stream, "%*s ", width,
298 human_readable ((uintmax_t) statp->st_mtime, hbuf,
299 human_ceiling,
300 1, 1));
303 print_name (name, stream, literal_control_chars);
305 #ifdef S_ISLNK
306 if (S_ISLNK (statp->st_mode))
308 char *linkname = get_link_name_at (name, dirfd, relname);
310 if (linkname)
312 fputs (" -> ", stream);
313 print_name (linkname, stream, literal_control_chars);
314 free (linkname);
317 #endif
318 putc ('\n', stream);
322 static void
323 print_name_without_quoting (const char *p, FILE *stream)
325 fprintf(stream, "%s", p);
329 static void
330 print_name_with_quoting (register const char *p, FILE *stream)
332 register unsigned char c;
334 while ((c = *p++) != '\0')
336 switch (c)
338 case '\\':
339 fprintf (stream, "\\\\");
340 break;
342 case '\n':
343 fprintf (stream, "\\n");
344 break;
346 case '\b':
347 fprintf (stream, "\\b");
348 break;
350 case '\r':
351 fprintf (stream, "\\r");
352 break;
354 case '\t':
355 fprintf (stream, "\\t");
356 break;
358 case '\f':
359 fprintf (stream, "\\f");
360 break;
362 case ' ':
363 fprintf (stream, "\\ ");
364 break;
366 case '"':
367 fprintf (stream, "\\\"");
368 break;
370 default:
371 if (c > 040 && c < 0177)
372 putc (c, stream);
373 else
374 fprintf (stream, "\\%03o", (unsigned int) c);
379 static void print_name (register const char *p, FILE *stream, int literal_control_chars)
381 if (literal_control_chars)
382 print_name_without_quoting(p, stream);
383 else
384 print_name_with_quoting(p, stream);
387 #ifdef S_ISLNK
388 static char *
389 get_link_name (const char *name, char *relname)
391 register char *linkname;
392 register int linklen;
394 /* st_size is wrong for symlinks on AIX, and on
395 mount points with some automounters.
396 So allocate a pessimistic PATH_MAX + 1 bytes. */
397 #define LINK_BUF PATH_MAX
398 linkname = xmalloc (LINK_BUF + 1);
399 linklen = readlink (relname, linkname, LINK_BUF);
400 if (linklen < 0)
402 error (0, errno, "%s", name);
403 free (linkname);
404 return 0;
406 linkname[linklen] = '\0';
407 return linkname;
410 struct link_name_args
412 const char *name;
413 char *relname;
414 char *result;
417 static int
418 get_link_name_cb(void *context)
420 struct link_name_args *args = context;
421 args->result = get_link_name(args->name, args->relname);
422 return 0;
425 char *
426 get_link_name_at (const char *name, int dirfd, char *relname)
428 struct link_name_args args;
429 args.result = NULL;
430 args.name = name;
431 args.relname = relname;
432 if (0 == run_in_dir(dirfd, get_link_name_cb, &args))
433 return args.result;
434 else
435 return NULL;
439 #endif