summaryrefslogtreecommitdiff
path: root/src/stat.c
blob: cd63fe20329e537f2c67d55c11d4601e11d33836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
#include <config.h>
#include <stdio.h>
#include <sys/stat.h>
#ifdef HAVE_SYS_SYSMACROS_H
# include <sys/sysmacros.h>
#endif
#include <pwd.h>
#include <grp.h>
#include <unistd.h>
#include <time.h>
#include <sys/vfs.h>

#include <getopt.h>
#include "error.h"
#include "filemode.h"
#include "fs.h"
#include "quotearg.h"
#include "system.h"
#include "xreadlink.h"

#define PROGRAM_NAME "stat"

#define AUTHORS "Michael Meskes"

static struct option const long_options[] = {
  {"link", no_argument, 0, 'l'},
  {"filesystem", no_argument, 0, 'f'},
  {"terse", no_argument, 0, 't'},
  {GETOPT_HELP_OPTION_DECL},
  {GETOPT_VERSION_OPTION_DECL},
  {NULL, 0, NULL, 0}
};

static char *program_name;

/* stat the filesystem and print what we find */
static void
do_statfs (char const *filename, int terse)
{
  struct statfs statfsbuf;

  if (statfs (filename, &statfsbuf) == -1)
    {
      error (0, errno, "%s", quotearg_colon (filename));
      return;
    }

  if (terse != 0)
    {
#ifdef __USE_FILE_OFFSET64
# define STATFSFMT "%s %x %x %lu %lx %lld %lld %lld %ld %lld %lld\n"
#else
# define STATFSFMT "%s %x %x %d %x %ld %ld %ld %d %ld %ld\n"
#endif
      printf (STATFSFMT,
	      filename,
	      statfsbuf.f_fsid.__val[0],
	      statfsbuf.f_fsid.__val[1],
	      statfsbuf.f_namelen,
	      statfsbuf.f_type,
	      statfsbuf.f_blocks,
	      statfsbuf.f_bfree,
	      statfsbuf.f_bavail,
	      statfsbuf.f_bsize, statfsbuf.f_files, statfsbuf.f_ffree);

      return;
    }

  printf ("  File: \"%s\"\n", filename);
#ifdef __USE_FILE_OFFSET64
  printf ("    ID: %-8x %-8x Namelen: %-7ld Type: ",
	  statfsbuf.f_fsid.__val[0],
	  statfsbuf.f_fsid.__val[1], statfsbuf.f_namelen);
#else
  printf ("    ID: %-8x %-8x Namelen: %-7d Type: ",
	  statfsbuf.f_fsid.__val[0],
	  statfsbuf.f_fsid.__val[1], statfsbuf.f_namelen);
#endif

  switch (statfsbuf.f_type)
    {
    case AFFS_SUPER_MAGIC:
      printf ("AFFS\n");
      break;
    case EXT_SUPER_MAGIC:
      printf ("EXT\n");
      break;
    case EXT2_OLD_SUPER_MAGIC:
      printf ("EXT2\n");
      break;
    case EXT2_SUPER_MAGIC:
      printf ("EXT2\n");
      break;
    case HPFS_SUPER_MAGIC:
      printf ("HPFS\n");
      break;
    case ISOFS_SUPER_MAGIC:
      printf ("ISOFS\n");
      break;
    case MINIX_SUPER_MAGIC:
      printf ("MINIX\n");
    case MINIX_SUPER_MAGIC2:
      printf ("MINIX (30 char.)\n");
      break;
    case MINIX2_SUPER_MAGIC:
      printf ("MINIX V2\n");
      break;
    case MINIX2_SUPER_MAGIC2:
      printf ("MINIX V2 (30 char.)\n");
      break;
    case MSDOS_SUPER_MAGIC:
      printf ("MSDOS\n");
      break;
    case NCP_SUPER_MAGIC:
      printf ("NOVELL\n");
      break;
    case NFS_SUPER_MAGIC:
      printf ("NFS\n");
      break;
    case PROC_SUPER_MAGIC:
      printf ("PROC\n");
      break;
    case SMB_SUPER_MAGIC:
      printf ("SMB\n");
      break;
    case XENIX_SUPER_MAGIC:
      printf ("XENIX\n");
      break;
    case SYSV4_SUPER_MAGIC:
      printf ("SYSV4\n");
      break;
    case SYSV2_SUPER_MAGIC:
      printf ("SYSV2\n");
      break;
    case COH_SUPER_MAGIC:
      printf ("COH\n");
      break;
    case UFS_MAGIC:
      printf ("UFS\n");
      break;
    case _XIAFS_SUPER_MAGIC:
      printf ("XIA\n");
      break;
    case NTFS_SUPER_MAGIC:
      printf ("NTFS\n");
      break;
    case TMPFS_MAGIC:
      printf ("TMPFS\n");
      break;
    case REISERFS_MAGIC:
      printf ("TMPFS\n");
      break;
    default:
#ifdef __USE_FILE_OFFSET64
      printf ("UNKNOWN (0x%lx)\n", statfsbuf.f_type);
#else
      printf ("UNKNOWN (0x%x)\n", statfsbuf.f_type);
#endif
    }
#ifdef __USE_FILE_OFFSET64
  printf
    ("Blocks: Total: %-10lld Free: %-10lld Available: %-10lld Size:%ld \n",
     statfsbuf.f_blocks, statfsbuf.f_bfree, statfsbuf.f_bavail,
     statfsbuf.f_bsize);
  printf ("Inodes: Total: %-10lld Free: %-10lld\n", statfsbuf.f_files,
	  statfsbuf.f_ffree);
#else
  printf ("Blocks: Total: %-10ld Free: %-10ld Available: %-10ld  Size:%d\n",
	  statfsbuf.f_blocks,
	  statfsbuf.f_bfree, statfsbuf.f_bavail, statfsbuf.f_bsize);
  printf ("Inodes: Total: %-10ld Free: %-10ld\n",
	  statfsbuf.f_files, statfsbuf.f_ffree);
#endif
}

/* stat the file and print what we find */
static void
do_stat (char const *filename, int follow_links, int terse)
{
  struct stat statbuf;
  int err = (follow_links
	     ? stat (filename, &statbuf)
	     : lstat (filename, &statbuf));
  char modebuf[11];
  struct passwd *pw_ent;
  struct group *gw_ent;

  if (err == -1)
    {
      error (0, errno, "%s", quotearg_colon (filename));
      return;
    }

  if (terse != 0)
    {
      printf ("%s %u %u %x %d %d %x %d %d %x %x %d %d %d %d\n",
	      filename,
	      (unsigned int) statbuf.st_size,
	      (unsigned int) statbuf.st_blocks,
	      statbuf.st_mode,
	      statbuf.st_uid,
	      statbuf.st_gid,
	      (int) statbuf.st_dev,
	      (int) statbuf.st_ino,
	      (int) statbuf.st_nlink,
	      major (statbuf.st_rdev),
	      minor (statbuf.st_rdev),
	      (int) statbuf.st_atime,
	      (int) statbuf.st_mtime,
	      (int) statbuf.st_ctime, (int) statbuf.st_blksize);
      return;
    }

  if (S_ISLNK (statbuf.st_mode))
    {
      char *linkname = xreadlink (filename);
      if (linkname)
	printf ("  File: \"%s\" -> \"%s\"\n", filename, linkname);

      free (linkname);
      if (linkname == NULL)
	{
	  error (0, errno, _("cannot read symbolic link %s"),
		 quotearg_colon (filename));
	  return;
	}

    }
  else
    printf ("  File: \"%s\"\n", filename);

  printf ("  Size: %-10u\tBlocks: %-10u IO Block: %-6d ",
	  (unsigned int) statbuf.st_size,
	  (unsigned int) statbuf.st_blocks, (int) statbuf.st_blksize);

  switch (statbuf.st_mode & S_IFMT)
    {
    case S_IFDIR:
      printf ("Directory\n");
      break;
    case S_IFCHR:
      printf ("Character Device\n");
      break;
    case S_IFBLK:
      printf ("Block Device\n");
      break;
    case S_IFREG:
      printf ("Regular File\n");
      break;
    case S_IFLNK:
      printf ("Symbolic Link\n");
      break;
    case S_IFSOCK:
      printf ("Socket\n");
      break;
    case S_IFIFO:
      printf ("Fifo File\n");
      break;
    default:
      printf ("Unknown\n");
    }

  printf ("Device: %xh/%dd\tInode: %-10d  Links: %-5d",
	  (int) statbuf.st_dev,
	  (int) statbuf.st_dev, (int) statbuf.st_ino, (int) statbuf.st_nlink);

  if (S_ISBLK (statbuf.st_mode) || S_ISCHR (statbuf.st_mode))
    printf (" Device type: %x,%x\n",
	    major (statbuf.st_rdev), minor (statbuf.st_rdev));
  else
    printf ("\n");

  mode_string (statbuf.st_mode, modebuf);
  modebuf[10] = 0;
  printf ("Access: (%04o/%10.10s)", statbuf.st_mode & 07777, modebuf);

  setpwent ();
  setgrent ();
  pw_ent = getpwuid (statbuf.st_uid);
  gw_ent = getgrgid (statbuf.st_gid);
  printf ("  Uid: (%5d/%8s)   Gid: (%5d/%8s)\n",
	  statbuf.st_uid,
	  (pw_ent != 0L) ? pw_ent->pw_name : "UNKNOWN",
	  statbuf.st_gid, (gw_ent != 0L) ? gw_ent->gr_name : "UNKNOWN");

  printf ("Access: %s", ctime (&statbuf.st_atime));
  printf ("Modify: %s", ctime (&statbuf.st_mtime));
  printf ("Change: %s\n", ctime (&statbuf.st_ctime));
}

void
usage (int status)
{
  if (status != 0)
    fprintf (stderr, _("Try %s --help' for more information.\n"),
	     program_name);
  else
    {
      printf (_("Usage: %s [OPTION] FILE...\n"), program_name);
      fputs (_("\
Display file or filesystem status.\n\
\n\
  -l, --link		follow links\n\
  -f, --filesystem	display filesystem status instead of file status\n\
  -t, --terse		print the information in terse form\n\
"), stdout);
      fputs (HELP_OPTION_DESCRIPTION, stdout);
      fputs (VERSION_OPTION_DESCRIPTION, stdout);
      puts (_("\nReport bugs to <bug-fileutils@gnu.org>."));
    }
  exit (status);
}

int
main (int argc, char **argv)
{
  int c;
  int i;
  int follow_links = 0;
  int fs = 0;
  int terse = 0;

  program_name = argv[0];
  setlocale (LC_ALL, "");
  bindtextdomain (PACKAGE, LOCALEDIR);
  textdomain (PACKAGE);

  atexit (close_stdout);
  while ((c = getopt_long (argc, argv, "lft", long_options, NULL)) != -1)
    {
      switch (c)
	{
	case 'l':
	  follow_links = 1;
	  break;
	case 'f':
	  fs = 1;
	  break;
	case 't':
	  terse = 1;
	  break;
	  case_GETOPT_HELP_CHAR;

	  case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);

	default:
	  usage (EXIT_FAILURE);
	}
    }

  if (argc == optind)
    {
      error (0, 0, _("too few arguments"));
      usage (EXIT_FAILURE);
    }

  for (i = optind; i < argc; i++)
    {
      if (fs == 0)
	do_stat (argv[i], follow_links, terse);
      else
	do_statfs (argv[i], terse);
    }

  exit (EXIT_SUCCESS);
}