Adding the --fake-super option.
[rsync/rsync.git] / tls.c
CommitLineData
0f78b815
WD
1/*
2 * Trivial ls for comparing two directories after running an rsync.
f22ee865 3 *
0f78b815 4 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
ba2133d6 5 * Copyright (C) 2003-2007 Wayne Davison
f26ac1e8 6 *
ba2133d6
WD
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
f26ac1e8 10 *
f22ee865
MP
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.
f26ac1e8 15 *
e7c67065
WD
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
f22ee865
MP
19 */
20
0f78b815 21/* The problem with using the system's own ls is that some features
f22ee865
MP
22 * have little quirks that make directories look different when for
23 * our purposes they're the same -- for example, the BSD braindamage
24 * about setting the mode on symlinks based on your current umask.
25 *
4ed886ae
MP
26 * All the filenames must be given on the command line -- tls does not
27 * even read directories, let alone recurse. The typical usage is
28 * "find|sort|xargs tls".
f22ee865 29 *
4ed886ae 30 * The format is not exactly the same as any particular Unix ls(1).
f22ee865 31 *
4ed886ae
MP
32 * A key requirement for this program is that the output be "very
33 * reproducible." So we mask away information that can accidentally
0f78b815 34 * change. */
f22ee865 35
f22ee865 36#include "rsync.h"
9439c0cb 37#include "lib/sysxattrs.h"
f22ee865
MP
38
39#define PROGRAM "tls"
40
41/* These are to make syscall.o shut up. */
42int dry_run = 0;
9439c0cb 43int am_root = 0;
f22ee865
MP
44int read_only = 1;
45int list_only = 0;
522c05cf 46int preserve_perms = 0;
f22ee865 47
9439c0cb
WD
48#ifdef HAVE_LINUX_XATTRS
49#define XSTAT_ATTR "user.rsync.%stat"
50#else
51#define XSTAT_ATTR "rsync.%stat"
52#endif
53
54static int stat_xattr(const char *fname, STRUCT_STAT *fst)
55{
56 int mode, rdev_major, rdev_minor, uid, gid, len;
57 char buf[256];
58
59 if (am_root >= 0 || IS_DEVICE(fst->st_mode) || IS_SPECIAL(fst->st_mode))
60 return -1;
61
62 len = sys_lgetxattr(fname, XSTAT_ATTR, buf, sizeof buf - 1);
63 if (len >= (int)sizeof buf) {
64 len = -1;
65 errno = ERANGE;
66 }
67 if (len < 0) {
68 if (errno == ENOTSUP || errno == ENOATTR)
69 return -1;
70 if (errno == EPERM && S_ISLNK(fst->st_mode)) {
71 fst->st_uid = 0;
72 fst->st_gid = 0;
73 return 0;
74 }
75 fprintf(stderr, "failed to read xattr %s for %s: %s\n",
76 XSTAT_ATTR, fname, strerror(errno));
77 return -1;
78 }
79 buf[len] = '\0';
80
81 if (sscanf(buf, "%o %d,%d %d:%d",
82 &mode, &rdev_major, &rdev_minor, &uid, &gid) != 5) {
83 fprintf(stderr, "Corrupt %s xattr attached to %s: \"%s\"\n",
84 XSTAT_ATTR, fname, buf);
85 exit(1);
86 }
87
88 fst->st_mode = from_wire_mode(mode);
89 fst->st_rdev = MAKEDEV(rdev_major, rdev_minor);
90 fst->st_uid = uid;
91 fst->st_gid = gid;
92
93 return 0;
94}
95
630e3c40 96static void failed(char const *what, char const *where)
f22ee865 97{
630e3c40
WD
98 fprintf(stderr, PROGRAM ": %s %s: %s\n",
99 what, where, strerror(errno));
100 exit(1);
f22ee865
MP
101}
102
630e3c40 103static void list_file(const char *fname)
f22ee865 104{
d0f821ad 105 STRUCT_STAT buf;
4ed886ae
MP
106 char permbuf[PERMSTRING_SIZE];
107 struct tm *mt;
dd0700b0 108 char datebuf[50];
1336e414 109 char linkbuf[4096];
4ed886ae 110
018b2832 111 if (do_lstat(fname, &buf) < 0)
630e3c40 112 failed("stat", fname);
9439c0cb
WD
113 if (am_root < 0)
114 stat_xattr(fname, &buf);
4ed886ae 115
2d4c8e59
MP
116 /* The size of anything but a regular file is probably not
117 * worth thinking about. */
118 if (!S_ISREG(buf.st_mode))
4ed886ae 119 buf.st_size = 0;
f22ee865 120
dd0700b0
MP
121 /* On some BSD platforms the mode bits of a symlink are
122 * undefined. Also it tends not to be possible to reset a
123 * symlink's mtime, so we have to ignore it too. */
124 if (S_ISLNK(buf.st_mode)) {
0771727d 125 int len;
dd0700b0
MP
126 buf.st_mode &= ~0777;
127 buf.st_mtime = (time_t)0;
128 buf.st_uid = buf.st_gid = 0;
c9bce0b8 129 strlcpy(linkbuf, " -> ", sizeof linkbuf);
acf1af0c 130 /* const-cast required for silly UNICOS headers */
0771727d 131 len = readlink((char *) fname, linkbuf+4, sizeof(linkbuf) - 4);
f26ac1e8 132 if (len == -1)
0771727d
MP
133 failed("readlink", fname);
134 else
135 /* it's not nul-terminated */
136 linkbuf[4+len] = 0;
1336e414
MP
137 } else {
138 linkbuf[0] = 0;
dd0700b0 139 }
f22ee865 140
dd0700b0 141 permstring(permbuf, buf.st_mode);
4ed886ae 142
dd0700b0
MP
143 if (buf.st_mtime) {
144 mt = gmtime(&buf.st_mtime);
f26ac1e8 145
185aa5b0
WD
146 snprintf(datebuf, sizeof datebuf,
147 "%04d-%02d-%02d %02d:%02d:%02d",
e31058d4
WD
148 (int)mt->tm_year + 1900,
149 (int)mt->tm_mon + 1,
150 (int)mt->tm_mday,
151 (int)mt->tm_hour,
152 (int)mt->tm_min,
153 (int)mt->tm_sec);
185aa5b0 154 } else
c9bce0b8 155 strlcpy(datebuf, " ", sizeof datebuf);
f26ac1e8 156
4ed886ae 157 /* TODO: Perhaps escape special characters in fname? */
f26ac1e8
WD
158
159 printf("%s ", permbuf);
48d3ff94 160 if (S_ISCHR(buf.st_mode) || S_ISBLK(buf.st_mode)) {
0e1d98ae
WD
161 printf("%5ld,%6ld",
162 (long)major(buf.st_rdev),
163 (long)minor(buf.st_rdev));
164 } else /* NB: use double for size since it might not fit in a long. */
f26ac1e8
WD
165 printf("%12.0f", (double)buf.st_size);
166 printf(" %6ld.%-6ld %6ld %s %s%s\n",
167 (long)buf.st_uid, (long)buf.st_gid, (long)buf.st_nlink,
1336e414 168 datebuf, fname, linkbuf);
f22ee865
MP
169}
170
f69204ad
WD
171int
172main(int argc, char *argv[])
f22ee865
MP
173{
174 if (argc < 2) {
f335eb1f 175 fprintf(stderr, "usage: " PROGRAM " FILE ...\n"
630e3c40 176 "Trivial file listing program for portably checking rsync\n");
f22ee865
MP
177 return 1;
178 }
179
9439c0cb
WD
180 if (getenv("RSYNC_FAKE_SUPER"))
181 am_root = -1;
182
183 for (argv++; *argv; argv++)
630e3c40 184 list_file(*argv);
f22ee865
MP
185
186 return 0;
187}