added a replacement inet_aton() for systems that don't have it.
[rsync/rsync.git] / syscall.c
CommitLineData
31e12522
AT
1/*
2 Copyright (C) Andrew Tridgell 1998
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17*/
18
19/*
20 syscall wrappers to ensure that nothing gets done in dry_run mode
21 */
22
23#include "rsync.h"
24
25extern int dry_run;
f0fca04e 26extern int read_only;
2b086e03 27extern int list_only;
f0fca04e 28
2b086e03 29#define CHECK_RO if (read_only || list_only) {errno = EROFS; return -1;}
31e12522
AT
30
31int do_unlink(char *fname)
32{
33 if (dry_run) return 0;
f0fca04e 34 CHECK_RO
31e12522
AT
35 return unlink(fname);
36}
37
38int do_symlink(char *fname1, char *fname2)
39{
40 if (dry_run) return 0;
f0fca04e 41 CHECK_RO
31e12522
AT
42 return symlink(fname1, fname2);
43}
44
f92ef572 45#if HAVE_LINK
31e12522
AT
46int do_link(char *fname1, char *fname2)
47{
48 if (dry_run) return 0;
f0fca04e 49 CHECK_RO
31e12522
AT
50 return link(fname1, fname2);
51}
f92ef572 52#endif
31e12522 53
7308bd66
AT
54int do_lchown(const char *path, uid_t owner, gid_t group)
55{
56 if (dry_run) return 0;
f0fca04e 57 CHECK_RO
7308bd66
AT
58 return lchown(path, owner, group);
59}
60
f92ef572 61#if HAVE_MKNOD
31e12522
AT
62int do_mknod(char *pathname, mode_t mode, dev_t dev)
63{
64 if (dry_run) return 0;
f0fca04e 65 CHECK_RO
31e12522
AT
66 return mknod(pathname, mode, dev);
67}
f92ef572 68#endif
31e12522
AT
69
70int do_rmdir(char *pathname)
71{
72 if (dry_run) return 0;
f0fca04e 73 CHECK_RO
31e12522
AT
74 return rmdir(pathname);
75}
76
77int do_open(char *pathname, int flags, mode_t mode)
78{
79 if (dry_run) return -1;
a926daec
DD
80#ifdef O_BINARY
81 /* for Windows */
82 flags |= O_BINARY;
83#endif
f0fca04e 84 CHECK_RO
31e12522
AT
85 return open(pathname, flags, mode);
86}
7308bd66 87
f92ef572 88#if HAVE_CHMOD
7308bd66
AT
89int do_chmod(const char *path, mode_t mode)
90{
91 if (dry_run) return 0;
f0fca04e 92 CHECK_RO
7308bd66
AT
93 return chmod(path, mode);
94}
f92ef572 95#endif
1b2d733a
AT
96
97int do_rename(char *fname1, char *fname2)
98{
99 if (dry_run) return 0;
f0fca04e 100 CHECK_RO
1b2d733a
AT
101 return rename(fname1, fname2);
102}
103
104int do_mkdir(char *fname, mode_t mode)
105{
106 if (dry_run) return 0;
f0fca04e 107 CHECK_RO
1b2d733a
AT
108 return mkdir(fname, mode);
109}
110
111char *do_mktemp(char *template)
112{
113 if (dry_run) return NULL;
f0fca04e 114 if (read_only) {errno = EROFS; return NULL;}
1b2d733a
AT
115 return mktemp(template);
116}
bcacc18b
AT
117
118int do_stat(const char *fname, STRUCT_STAT *st)
119{
120#if HAVE_OFF64_T
121 return stat64(fname, st);
122#else
123 return stat(fname, st);
124#endif
125}
126
efb2f6bf 127#if SUPPORT_LINKS
bcacc18b
AT
128int do_lstat(const char *fname, STRUCT_STAT *st)
129{
130#if HAVE_OFF64_T
131 return lstat64(fname, st);
132#else
133 return lstat(fname, st);
134#endif
135}
efb2f6bf 136#endif
bcacc18b
AT
137
138int do_fstat(int fd, STRUCT_STAT *st)
139{
140#if HAVE_OFF64_T
141 return fstat64(fd, st);
142#else
143 return fstat(fd, st);
144#endif
145}
73233f0f
AT
146
147OFF_T do_lseek(int fd, OFF_T offset, int whence)
148{
149#if HAVE_OFF64_T
f28ee65b 150 off64_t lseek64();
73233f0f
AT
151 return lseek64(fd, offset, whence);
152#else
153 return lseek(fd, offset, whence);
154#endif
155}
d6e6ecbd 156
bb0f7089 157#ifdef USE_MMAP
754d120c
AT
158void *do_mmap(void *start, int len, int prot, int flags, int fd, OFF_T offset)
159{
160#if HAVE_OFF64_T
161 return mmap64(start, len, prot, flags, fd, offset);
162#else
163 return mmap(start, len, prot, flags, fd, offset);
164#endif
165}
166#endif
167
d6e6ecbd
AT
168char *d_name(struct dirent *di)
169{
59503278
AT
170#if HAVE_BROKEN_READDIR
171 return (di->d_name - 2);
172#else
d6e6ecbd 173 return di->d_name;
59503278 174#endif
d6e6ecbd 175}