summaryrefslogtreecommitdiff
path: root/usr.bin/rdistd
diff options
context:
space:
mode:
authordm <dm@cvs.openbsd.org>1996-03-05 03:16:22 +0000
committerdm <dm@cvs.openbsd.org>1996-03-05 03:16:22 +0000
commit244fe9eb92c4869efaca13b0952c5d6e3cec723d (patch)
treeabf90588670b010fbf2aac23f8fff5207b13039f /usr.bin/rdistd
parentbb32e022d9bea893532d8e3b25ddf5259521e9a2 (diff)
rdist 6.1.2
Diffstat (limited to 'usr.bin/rdistd')
-rw-r--r--usr.bin/rdistd/filesys.c8
-rw-r--r--usr.bin/rdistd/filesys.h2
-rw-r--r--usr.bin/rdistd/message.c2
-rw-r--r--usr.bin/rdistd/rdistd.12
-rw-r--r--usr.bin/rdistd/rdistd.c2
-rw-r--r--usr.bin/rdistd/server.c77
6 files changed, 78 insertions, 15 deletions
diff --git a/usr.bin/rdistd/filesys.c b/usr.bin/rdistd/filesys.c
index 5f7586fd3f3..135eb790427 100644
--- a/usr.bin/rdistd/filesys.c
+++ b/usr.bin/rdistd/filesys.c
@@ -33,7 +33,7 @@
#ifndef lint
static char RCSid[] =
-"$Id: filesys.c,v 1.1 1996/02/03 12:12:57 dm Exp $";
+"$Id: filesys.c,v 1.2 1996/03/05 03:16:17 dm Exp $";
static char sccsid[] = "@(#)filesys.c";
@@ -355,7 +355,11 @@ int is_nfs_mounted(path, statbuf, isvalid)
if ((mnt = (mntent_t *) getmntpt(path, statbuf, isvalid)) == NULL)
return(-1);
- if (strcmp(mnt->me_type, METYPE_NFS) == 0)
+ /*
+ * We treat "cachefs" just like NFS
+ */
+ if ((strcmp(mnt->me_type, METYPE_NFS) == 0) ||
+ (strcmp(mnt->me_type, "cachefs") == 0))
return(1);
return(0);
diff --git a/usr.bin/rdistd/filesys.h b/usr.bin/rdistd/filesys.h
index 6416b36dbdd..130df976551 100644
--- a/usr.bin/rdistd/filesys.h
+++ b/usr.bin/rdistd/filesys.h
@@ -32,7 +32,7 @@
*/
/*
- * $Id: filesys.h,v 1.1 1996/02/03 12:12:58 dm Exp $
+ * $Id: filesys.h,v 1.2 1996/03/05 03:16:18 dm Exp $
* @(#)filesys.h
*/
diff --git a/usr.bin/rdistd/message.c b/usr.bin/rdistd/message.c
index 4b753ade3c6..488096513bd 100644
--- a/usr.bin/rdistd/message.c
+++ b/usr.bin/rdistd/message.c
@@ -33,7 +33,7 @@
#ifndef lint
static char RCSid[] =
-"$Id: message.c,v 1.1 1996/02/03 12:12:59 dm Exp $";
+"$Id: message.c,v 1.2 1996/03/05 03:16:18 dm Exp $";
static char sccsid[] = "@(#)common.c";
diff --git a/usr.bin/rdistd/rdistd.1 b/usr.bin/rdistd/rdistd.1
index 10eca5e588b..eaa17abd566 100644
--- a/usr.bin/rdistd/rdistd.1
+++ b/usr.bin/rdistd/rdistd.1
@@ -30,7 +30,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" $Id: rdistd.1,v 1.1 1996/02/03 12:13:01 dm Exp $
+.\" $Id: rdistd.1,v 1.2 1996/03/05 03:16:19 dm Exp $
.\" @(#)rdistd.8 6.6 (Berkeley) 5/13/86
.\"
.TH RDISTD 8 "June 21, 1992"
diff --git a/usr.bin/rdistd/rdistd.c b/usr.bin/rdistd/rdistd.c
index db0452420f6..09e4d654518 100644
--- a/usr.bin/rdistd/rdistd.c
+++ b/usr.bin/rdistd/rdistd.c
@@ -33,7 +33,7 @@
#ifndef lint
static char RCSid[] =
-"$Id: rdistd.c,v 1.1 1996/02/03 12:13:02 dm Exp $";
+"$Id: rdistd.c,v 1.2 1996/03/05 03:16:20 dm Exp $";
static char sccsid[] = "@(#)rdistd.c";
diff --git a/usr.bin/rdistd/server.c b/usr.bin/rdistd/server.c
index 7331068468a..107e78e9f76 100644
--- a/usr.bin/rdistd/server.c
+++ b/usr.bin/rdistd/server.c
@@ -32,7 +32,7 @@
*/
#ifndef lint
static char RCSid[] =
-"$Id: server.c,v 1.1 1996/02/03 12:13:03 dm Exp $";
+"$Id: server.c,v 1.2 1996/03/05 03:16:21 dm Exp $";
static char sccsid[] = "@(#)server.c 5.3 (Berkeley) 6/7/86";
@@ -186,6 +186,8 @@ static int fchog(fd, file, owner, group, mode)
static char last_group[128];
static char last_owner[128];
static GID_T last_gid = (GID_T)-2;
+ static UID_T last_uid = (UID_T)-2;
+ static GID_T last_primegid;
extern char *locuser;
register int i;
UID_T uid;
@@ -196,7 +198,8 @@ static int fchog(fd, file, owner, group, mode)
if (userid == 0) { /* running as root; take anything */
if (*owner == ':') {
uid = (UID_T) atoi(owner + 1);
- } else if (pw == NULL || strcmp(owner, last_owner) != 0) {
+ } else if (last_uid == (UID_T)-2 ||
+ strcmp(owner, last_owner) != 0) {
if ((pw = getpwnam(owner)) == NULL) {
if (mode != -1 && IS_ON(mode, S_ISUID)) {
message(MT_NOTICE,
@@ -209,12 +212,13 @@ static int fchog(fd, file, owner, group, mode)
"%s: unknown login name \"%s\"",
target, owner);
} else {
- uid = pw->pw_uid;
+ uid = last_uid = pw->pw_uid;
+ primegid = last_primegid = pw->pw_gid;
strcpy(last_owner, owner);
}
} else {
- uid = pw->pw_uid;
- primegid = pw->pw_gid;
+ uid = last_uid;
+ primegid = last_primegid;
}
if (*group == ':') {
gid = (GID_T) atoi(group + 1);
@@ -710,6 +714,24 @@ static char *savetarget(file)
}
/*
+ * See if buf is all zeros (sparse check)
+ */
+static int iszeros (buf, size)
+ char *buf;
+ off_t size;
+{
+ while (size > 0) {
+ if (*buf != CNULL)
+ return(0);
+ buf++;
+ size--;
+ }
+
+ return(1);
+}
+
+
+/*
* Receive a file
*/
static void recvfile(new, opts, mode, owner, group, mtime, atime, size)
@@ -722,7 +744,7 @@ static void recvfile(new, opts, mode, owner, group, mtime, atime, size)
time_t atime;
off_t size;
{
- int f, wrerr, olderrno;
+ int f, wrerr, olderrno, lastwashole = 0, wassparse = 0;
off_t i;
register char *cp;
char *savefile = NULL;
@@ -768,7 +790,31 @@ static void recvfile(new, opts, mode, owner, group, mtime, atime, size)
amt = BUFSIZ;
if (i + amt > size)
amt = size - i;
- if (wrerr == 0 && xwrite(f, buf, amt) != amt) {
+ if (IS_ON(opts, DO_SPARSE) && iszeros(buf, amt)) {
+ if (lseek (f, amt, SEEK_CUR) < 0L) {
+ olderrno = errno;
+ wrerr++;
+ }
+ lastwashole = 1;
+ wassparse++;
+ } else {
+ if (wrerr == 0 && xwrite(f, buf, amt) != amt) {
+ olderrno = errno;
+ wrerr++;
+ }
+ lastwashole = 0;
+ }
+ }
+
+ if (lastwashole) {
+#if defined(HAVE_FTRUNCATE)
+ if (write (f, "", 1) != 1 || ftruncate (f, size) < 0)
+#else
+ /* Seek backwards one character and write a null. */
+ if (lseek (f, (off_t) -1, SEEK_CUR) < 0L
+ || write (f, "", 1) != 1)
+#endif
+ {
olderrno = errno;
wrerr++;
}
@@ -779,6 +825,7 @@ static void recvfile(new, opts, mode, owner, group, mtime, atime, size)
(void) unlink(new);
return;
}
+
if (wrerr) {
error("%s: Write error: %s", new, strerror(olderrno));
(void) close(f);
@@ -895,6 +942,9 @@ static void recvfile(new, opts, mode, owner, group, mtime, atime, size)
}
}
+ if (wassparse)
+ message (MT_NOTICE, "%s: was sparse", target);
+
if (IS_ON(opts, DO_COMPARE))
message(MT_REMOTE|MT_CHANGE, "%s: updated", target);
else
@@ -1508,8 +1558,11 @@ extern void server()
register int n;
extern jmp_buf finish_jmpbuf;
- if (setjmp(finish_jmpbuf))
+ if (setjmp(finish_jmpbuf)) {
+ setjmp_ok = FALSE;
return;
+ }
+ setjmp_ok = TRUE;
(void) signal(SIGHUP, sighandler);
(void) signal(SIGINT, sighandler);
(void) signal(SIGQUIT, sighandler);
@@ -1530,17 +1583,20 @@ extern void server()
(void) sendcmd(S_VERSION, NULL);
if (remline(cmdbuf, sizeof(cmdbuf), TRUE) < 0) {
+ setjmp_ok = FALSE;
error("server: expected control record");
return;
}
if (cmdbuf[0] != S_VERSION || !isdigit(cmdbuf[1])) {
+ setjmp_ok = FALSE;
error("Expected version command, received: \"%s\".", cmdbuf);
return;
}
proto_version = atoi(&cmdbuf[1]);
if (proto_version != VERSION) {
+ setjmp_ok = FALSE;
error("Protocol version %d is not supported.", proto_version);
return;
}
@@ -1553,8 +1609,10 @@ extern void server()
*/
for ( ; ; ) {
n = remline(cp = cmdbuf, sizeof(cmdbuf), TRUE);
- if (n == -1) /* EOF */
+ if (n == -1) { /* EOF */
+ setjmp_ok = FALSE;
return;
+ }
if (n == 0) {
error("server: expected control record");
continue;
@@ -1631,6 +1689,7 @@ extern void server()
case C_FERRMSG: /* Fatal error message */
if (cp && *cp)
message(MT_FERROR|MT_NOREMOTE, "%s", cp);
+ setjmp_ok = FALSE;
return;
default: