Code that was meant to trim trailing slashes from mkdir() paths
[rsync/rsync.git] / syscall.c
1 /* 
2    Copyright (C) Andrew Tridgell 1998
3    Copyright (C) 2002 by Martin Pool
4    
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9    
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14    
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 /**
21  * @file syscall.c
22  *
23  * Syscall wrappers to ensure that nothing gets done in dry_run mode
24  * and to handle system peculiarities.
25  **/
26
27 #include "rsync.h"
28
29 extern int dry_run;
30 extern int read_only;
31 extern int list_only;
32
33 #define CHECK_RO if (read_only || list_only) {errno = EROFS; return -1;}
34
35 int do_unlink(char *fname)
36 {
37         if (dry_run) return 0;
38         CHECK_RO
39         return unlink(fname);
40 }
41
42 int do_symlink(char *fname1, char *fname2)
43 {
44         if (dry_run) return 0;
45         CHECK_RO
46         return symlink(fname1, fname2);
47 }
48
49 #if HAVE_LINK
50 int do_link(char *fname1, char *fname2)
51 {
52         if (dry_run) return 0;
53         CHECK_RO
54         return link(fname1, fname2);
55 }
56 #endif
57
58 int do_lchown(const char *path, uid_t owner, gid_t group)
59 {
60         if (dry_run) return 0;
61         CHECK_RO
62         return lchown(path, owner, group);
63 }
64
65 #if HAVE_MKNOD
66 int do_mknod(char *pathname, mode_t mode, dev_t dev)
67 {
68         if (dry_run) return 0;
69         CHECK_RO
70         return mknod(pathname, mode, dev);
71 }
72 #endif
73
74 int do_rmdir(char *pathname)
75 {
76         if (dry_run) return 0;
77         CHECK_RO
78         return rmdir(pathname);
79 }
80
81 int do_open(char *pathname, int flags, mode_t mode)
82 {
83         if (flags != O_RDONLY) {
84             if (dry_run) return -1;
85             CHECK_RO
86         }
87 #ifdef O_BINARY
88         /* for Windows */
89         flags |= O_BINARY;
90 #endif
91         /* some systems can't handle a double / */
92         if (pathname[0] == '/' && pathname[1] == '/') pathname++;
93
94         return open(pathname, flags, mode);
95 }
96
97 #if HAVE_CHMOD
98 int do_chmod(const char *path, mode_t mode)
99 {
100         if (dry_run) return 0;
101         CHECK_RO
102         return chmod(path, mode);
103 }
104 #endif
105
106 int do_rename(char *fname1, char *fname2)
107 {
108         if (dry_run) return 0;
109         CHECK_RO
110         return rename(fname1, fname2);
111 }
112
113
114 void trim_trailing_slashes(char *name)
115 {
116         char *p;
117         /* Some BSD systems cannot make a directory if the name
118          * contains a trailing slash.
119          * <http://www.opensource.apple.com/bugs/X/BSD%20Kernel/2734739.html> */
120         if (!*name)
121                 return;         /* empty string */
122         p = strchr(name, '\0') - 1;
123         while (p == '/') {
124                 p-- = '\0';
125         }
126 }
127
128
129 int do_mkdir(char *fname, mode_t mode)
130 {
131         if (dry_run)
132                 return 0;
133         CHECK_RO;
134         trim_trailing_slashes(fname);   
135         return mkdir(fname, mode);
136 }
137
138
139 /* like mkstemp but forces permissions */
140 int do_mkstemp(char *template, mode_t perms)
141 {
142         if (dry_run) return -1;
143         if (read_only) {errno = EROFS; return -1;}
144
145 #if defined(HAVE_SECURE_MKSTEMP) && defined(HAVE_FCHMOD)
146         {
147                 int fd = mkstemp(template);
148                 if (fd == -1) return -1;
149                 if (fchmod(fd, perms) != 0) {
150                         close(fd);
151                         unlink(template);
152                         return -1;
153                 }
154                 return fd;
155         }
156 #else
157         if (!mktemp(template)) return -1;
158         return do_open(template, O_RDWR|O_EXCL|O_CREAT, perms);
159 #endif
160 }
161
162 int do_stat(const char *fname, STRUCT_STAT *st)
163 {
164 #if HAVE_OFF64_T
165         return stat64(fname, st);
166 #else
167         return stat(fname, st);
168 #endif
169 }
170
171 #if SUPPORT_LINKS
172 int do_lstat(const char *fname, STRUCT_STAT *st)
173 {
174 #if HAVE_OFF64_T
175         return lstat64(fname, st);
176 #else
177         return lstat(fname, st);
178 #endif
179 }
180 #endif
181
182 int do_fstat(int fd, STRUCT_STAT *st)
183 {
184 #if HAVE_OFF64_T
185         return fstat64(fd, st);
186 #else
187         return fstat(fd, st);
188 #endif
189 }
190
191 OFF_T do_lseek(int fd, OFF_T offset, int whence)
192 {
193 #if HAVE_OFF64_T
194         off64_t lseek64();
195         return lseek64(fd, offset, whence);
196 #else
197         return lseek(fd, offset, whence);
198 #endif
199 }
200
201 #ifdef USE_MMAP
202 void *do_mmap(void *start, int len, int prot, int flags, int fd, OFF_T offset)
203 {
204 #if HAVE_OFF64_T
205         return mmap64(start, len, prot, flags, fd, offset);
206 #else
207         return mmap(start, len, prot, flags, fd, offset);
208 #endif
209 }
210 #endif
211
212 char *d_name(struct dirent *di)
213 {
214 #if HAVE_BROKEN_READDIR
215         return (di->d_name - 2);
216 #else
217         return di->d_name;
218 #endif
219 }