]> granicus.if.org Git - strace/blob - print_struct_stat.c
tests: fix expected output in strace-tt.test
[strace] / print_struct_stat.c
1 /*
2  * Copyright (c) 1999-2003 Ulrich Drepper <drepper@redhat.com>
3  * Copyright (c) 2004 David S. Miller <davem@nuts.davemloft.net>
4  * Copyright (c) 2003-2005 Roland McGrath <roland@redhat.com>
5  * Copyright (c) 2007 Jan Kratochvil <jan.kratochvil@redhat.com>
6  * Copyright (c) 2009 Denys Vlasenko <dvlasenk@redhat.com>
7  * Copyright (c) 2009-2010 Andreas Schwab <schwab@linux-m68k.org>
8  * Copyright (c) 2012 H.J. Lu <hongjiu.lu@intel.com>
9  * Copyright (c) 2005-2016 Dmitry V. Levin <ldv@altlinux.org>
10  * All rights reserved.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. The name of the author may not be used to endorse or promote products
21  *    derived from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #include "defs.h"
36 #include <sys/stat.h>
37 #include <sys/sysmacros.h>
38 #include "stat.h"
39
40 void
41 print_struct_stat(struct tcb *tcp, const struct strace_stat *const st)
42 {
43         tprints("{");
44         if (!abbrev(tcp)) {
45                 tprintf("st_dev=makedev(%u, %u), st_ino=%llu, st_mode=",
46                         (unsigned int) major(st->dev),
47                         (unsigned int) minor(st->dev),
48                         st->ino);
49                 print_symbolic_mode_t(st->mode);
50                 tprintf(", st_nlink=%llu, st_uid=%llu, st_gid=%llu",
51                         st->nlink, st->uid, st->gid);
52                 tprintf(", st_blksize=%llu", st->blksize);
53                 tprintf(", st_blocks=%llu", st->blocks);
54         } else {
55                 tprints("st_mode=");
56                 print_symbolic_mode_t(st->mode);
57         }
58
59         switch (st->mode & S_IFMT) {
60         case S_IFCHR: case S_IFBLK:
61                 tprintf(", st_rdev=makedev(%u, %u)",
62                         (unsigned int) major(st->rdev),
63                         (unsigned int) minor(st->rdev));
64                 break;
65         default:
66                 tprintf(", st_size=%llu", st->size);
67                 break;
68         }
69
70         if (!abbrev(tcp)) {
71                 tprints(", st_atime=");
72                 tprints(sprinttime(st->atime));
73                 if (st->atime_nsec)
74                         tprintf(".%09llu", st->atime_nsec);
75                 tprints(", st_mtime=");
76                 tprints(sprinttime(st->mtime));
77                 if (st->mtime_nsec)
78                         tprintf(".%09llu", st->mtime_nsec);
79                 tprints(", st_ctime=");
80                 tprints(sprinttime(st->ctime));
81                 if (st->ctime_nsec)
82                         tprintf(".%09llu", st->ctime_nsec);
83         } else {
84                 tprints(", ...");
85         }
86         tprints("}");
87 }