2 Copyright (C) Andrew Tridgell 1998
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.
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.
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.
20 syscall wrappers to ensure that nothing gets done in dry_run mode
29 #define CHECK_RO if (read_only || list_only) {errno = EROFS; return -1;}
31 int do_unlink(char *fname
)
33 if (dry_run
) return 0;
38 int do_symlink(char *fname1
, char *fname2
)
40 if (dry_run
) return 0;
42 return symlink(fname1
, fname2
);
46 int do_link(char *fname1
, char *fname2
)
48 if (dry_run
) return 0;
50 return link(fname1
, fname2
);
54 int do_lchown(const char *path
, uid_t owner
, gid_t group
)
56 if (dry_run
) return 0;
58 return lchown(path
, owner
, group
);
62 int do_mknod(char *pathname
, mode_t mode
, dev_t dev
)
64 if (dry_run
) return 0;
66 return mknod(pathname
, mode
, dev
);
70 int do_rmdir(char *pathname
)
72 if (dry_run
) return 0;
74 return rmdir(pathname
);
77 int do_open(char *pathname
, int flags
, mode_t mode
)
79 if (flags
!= O_RDONLY
) {
80 if (dry_run
) return -1;
87 /* some systems can't handle a double / */
88 if (pathname
[0] == '/' && pathname
[1] == '/') pathname
++;
90 return open(pathname
, flags
, mode
);
94 int do_chmod(const char *path
, mode_t mode
)
96 if (dry_run
) return 0;
98 return chmod(path
, mode
);
102 int do_rename(char *fname1
, char *fname2
)
104 if (dry_run
) return 0;
106 return rename(fname1
, fname2
);
109 int do_mkdir(char *fname
, mode_t mode
)
111 if (dry_run
) return 0;
113 return mkdir(fname
, mode
);
116 char *do_mktemp(char *template)
118 if (dry_run
) return NULL
;
119 if (read_only
) {errno
= EROFS
; return NULL
;}
120 return mktemp(template);
123 int do_stat(const char *fname
, STRUCT_STAT
*st
)
126 return stat64(fname
, st
);
128 return stat(fname
, st
);
133 int do_lstat(const char *fname
, STRUCT_STAT
*st
)
136 return lstat64(fname
, st
);
138 return lstat(fname
, st
);
143 int do_fstat(int fd
, STRUCT_STAT
*st
)
146 return fstat64(fd
, st
);
148 return fstat(fd
, st
);
152 OFF_T
do_lseek(int fd
, OFF_T offset
, int whence
)
156 return lseek64(fd
, offset
, whence
);
158 return lseek(fd
, offset
, whence
);
163 void *do_mmap(void *start
, int len
, int prot
, int flags
, int fd
, OFF_T offset
)
166 return mmap64(start
, len
, prot
, flags
, fd
, offset
);
168 return mmap(start
, len
, prot
, flags
, fd
, offset
);
173 char *d_name(struct dirent
*di
)
175 #if HAVE_BROKEN_READDIR
176 return (di
->d_name
- 2);