Check daemon filter against fnamecmp in recv_files().
[rsync.git] / tls.c
1 /*
2  * Trivial ls for comparing two directories after running an rsync.
3  *
4  * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
5  * Copyright (C) 2003-2015 Wayne Davison
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
20  */
21
22 /* The problem with using the system's own ls is that some features
23  * have little quirks that make directories look different when for
24  * our purposes they're the same -- for example, the BSD braindamage
25  * about setting the mode on symlinks based on your current umask.
26  *
27  * All the filenames must be given on the command line -- tls does not
28  * even read directories, let alone recurse.  The typical usage is
29  * "find|sort|xargs tls".
30  *
31  * The format is not exactly the same as any particular Unix ls(1).
32  *
33  * A key requirement for this program is that the output be "very
34  * reproducible."  So we mask away information that can accidentally
35  * change. */
36
37 #include "rsync.h"
38 #include <popt.h>
39 #include "lib/sysxattrs.h"
40
41 #define PROGRAM "tls"
42
43 /* These are to make syscall.o shut up. */
44 int dry_run = 0;
45 int am_root = 0;
46 int am_sender = 1;
47 int read_only = 1;
48 int list_only = 0;
49 int link_times = 0;
50 int link_owner = 0;
51 int nsec_times = 0;
52 int preserve_perms = 0;
53 int preserve_executability = 0;
54 int preallocate_files = 0;
55 int inplace = 0;
56
57 #ifdef SUPPORT_XATTRS
58
59 #ifdef HAVE_LINUX_XATTRS
60 #define XSTAT_ATTR "user.rsync.%stat"
61 #else
62 #define XSTAT_ATTR "rsync.%stat"
63 #endif
64
65 static int stat_xattr(const char *fname, STRUCT_STAT *fst)
66 {
67         int mode, rdev_major, rdev_minor, uid, gid, len;
68         char buf[256];
69
70         if (am_root >= 0 || IS_DEVICE(fst->st_mode) || IS_SPECIAL(fst->st_mode))
71                 return -1;
72
73         len = sys_lgetxattr(fname, XSTAT_ATTR, buf, sizeof buf - 1);
74         if (len >= (int)sizeof buf) {
75                 len = -1;
76                 errno = ERANGE;
77         }
78         if (len < 0) {
79                 if (errno == ENOTSUP || errno == ENOATTR)
80                         return -1;
81                 if (errno == EPERM && S_ISLNK(fst->st_mode)) {
82                         fst->st_uid = 0;
83                         fst->st_gid = 0;
84                         return 0;
85                 }
86                 fprintf(stderr, "failed to read xattr %s for %s: %s\n",
87                         XSTAT_ATTR, fname, strerror(errno));
88                 return -1;
89         }
90         buf[len] = '\0';
91
92         if (sscanf(buf, "%o %d,%d %d:%d",
93                    &mode, &rdev_major, &rdev_minor, &uid, &gid) != 5) {
94                 fprintf(stderr, "Corrupt %s xattr attached to %s: \"%s\"\n",
95                         XSTAT_ATTR, fname, buf);
96                 exit(1);
97         }
98
99 #if _S_IFLNK != 0120000
100         if ((mode & (_S_IFMT)) == 0120000)
101                 mode = (mode & ~(_S_IFMT)) | _S_IFLNK;
102 #endif
103         fst->st_mode = mode;
104
105         fst->st_rdev = MAKEDEV(rdev_major, rdev_minor);
106         fst->st_uid = uid;
107         fst->st_gid = gid;
108
109         return 0;
110 }
111
112 #endif
113
114 static void failed(char const *what, char const *where)
115 {
116         fprintf(stderr, PROGRAM ": %s %s: %s\n",
117                 what, where, strerror(errno));
118         exit(1);
119 }
120
121 static void list_file(const char *fname)
122 {
123         STRUCT_STAT buf;
124         char permbuf[PERMSTRING_SIZE];
125         struct tm *mt;
126         char datebuf[50];
127         char linkbuf[4096];
128
129         if (do_lstat(fname, &buf) < 0)
130                 failed("stat", fname);
131 #ifdef SUPPORT_XATTRS
132         if (am_root < 0)
133                 stat_xattr(fname, &buf);
134 #endif
135
136         /* The size of anything but a regular file is probably not
137          * worth thinking about. */
138         if (!S_ISREG(buf.st_mode))
139                 buf.st_size = 0;
140
141         /* On some BSD platforms the mode bits of a symlink are
142          * undefined.  Also it tends not to be possible to reset a
143          * symlink's mtime, so we default to ignoring it too. */
144         if (S_ISLNK(buf.st_mode)) {
145                 int len;
146                 buf.st_mode &= ~0777;
147                 if (!link_times)
148                         buf.st_mtime = (time_t)0;
149                 if (!link_owner)
150                         buf.st_uid = buf.st_gid = 0;
151                 strlcpy(linkbuf, " -> ", sizeof linkbuf);
152                 /* const-cast required for silly UNICOS headers */
153                 len = do_readlink((char *) fname, linkbuf+4, sizeof(linkbuf) - 4);
154                 if (len == -1)
155                         failed("do_readlink", fname);
156                 else
157                         /* it's not nul-terminated */
158                         linkbuf[4+len] = 0;
159         } else {
160                 linkbuf[0] = 0;
161         }
162
163         permstring(permbuf, buf.st_mode);
164
165         if (buf.st_mtime) {
166                 int len;
167                 mt = gmtime(&buf.st_mtime);
168
169                 len = snprintf(datebuf, sizeof datebuf,
170                         "%04d-%02d-%02d %02d:%02d:%02d",
171                         (int)mt->tm_year + 1900,
172                         (int)mt->tm_mon + 1,
173                         (int)mt->tm_mday,
174                         (int)mt->tm_hour,
175                         (int)mt->tm_min,
176                         (int)mt->tm_sec);
177 #ifdef ST_MTIME_NSEC
178                 if (nsec_times) {
179                         snprintf(datebuf + len, sizeof datebuf - len,
180                                 ".%09d", (int)buf.ST_MTIME_NSEC);
181                 }
182 #endif
183         } else {
184                 int len = MIN(19 + 9*nsec_times, (int)sizeof datebuf - 1);
185                 memset(datebuf, ' ', len);
186                 datebuf[len] = '\0';
187         }
188
189         /* TODO: Perhaps escape special characters in fname? */
190
191         printf("%s ", permbuf);
192         if (S_ISCHR(buf.st_mode) || S_ISBLK(buf.st_mode)) {
193                 printf("%5ld,%6ld",
194                     (long)major(buf.st_rdev),
195                     (long)minor(buf.st_rdev));
196         } else
197                 printf("%15s", do_big_num(buf.st_size, 1, NULL));
198         printf(" %6ld.%-6ld %6ld %s %s%s\n",
199                (long)buf.st_uid, (long)buf.st_gid, (long)buf.st_nlink,
200                datebuf, fname, linkbuf);
201 }
202
203 static struct poptOption long_options[] = {
204   /* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
205   {"link-times",      'l', POPT_ARG_NONE,   &link_times, 0, 0, 0 },
206   {"link-owner",      'L', POPT_ARG_NONE,   &link_owner, 0, 0, 0 },
207 #ifdef SUPPORT_XATTRS
208   {"fake-super",      'f', POPT_ARG_VAL,    &am_root, -1, 0, 0 },
209 #endif
210 #ifdef ST_MTIME_NSEC
211   {"nsec",            's', POPT_ARG_NONE,   &nsec_times, 0, 0, 0 },
212 #endif
213   {"help",            'h', POPT_ARG_NONE,   0, 'h', 0, 0 },
214   {0,0,0,0,0,0,0}
215 };
216
217 static void tls_usage(int ret)
218 {
219   FILE *F = ret ? stderr : stdout;
220   fprintf(F,"usage: " PROGRAM " [OPTIONS] FILE ...\n");
221   fprintf(F,"Trivial file listing program for portably checking rsync\n");
222   fprintf(F,"\nOptions:\n");
223   fprintf(F," -l, --link-times            display the time on a symlink\n");
224   fprintf(F," -L, --link-owner            display the owner+group on a symlink\n");
225 #ifdef SUPPORT_XATTRS
226   fprintf(F," -f, --fake-super            display attributes including fake-super xattrs\n");
227 #endif
228   fprintf(F," -h, --help                  show this help\n");
229   exit(ret);
230 }
231
232 int
233 main(int argc, char *argv[])
234 {
235         poptContext pc;
236         const char **extra_args;
237         int opt;
238
239         pc = poptGetContext(PROGRAM, argc, (const char **)argv,
240                             long_options, 0);
241         while ((opt = poptGetNextOpt(pc)) != -1) {
242                 switch (opt) {
243                 case 'h':
244                         tls_usage(0);
245                 default:
246                         fprintf(stderr,
247                                 "%s: %s\n",
248                                 poptBadOption(pc, POPT_BADOPTION_NOALIAS),
249                                 poptStrerror(opt));
250                         tls_usage(1);
251                 }
252         }
253
254         extra_args = poptGetArgs(pc);
255         if (!extra_args || *extra_args == NULL)
256                 tls_usage(1);
257
258         for (; *extra_args; extra_args++)
259                 list_file(*extra_args);
260         poptFreeContext(pc);
261
262         return 0;
263 }