2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)main.c 8.1 (Berkeley) 6/9/93
35 * $FreeBSD: src/usr.bin/rdist/main.c,v 1.5 1999/08/28 01:05:07 peter Exp $
36 * $DragonFly: src/usr.bin/rdist/main.c,v 1.5 2008/10/16 01:52:33 swildner Exp $
39 * Remote distribution program.
47 #define _RDIST_TMP "/rdistXXXXXX"
49 char *distfile
= NULL
;
50 char tempfile
[sizeof _PATH_TMP
+ sizeof _RDIST_TMP
+ 1];
53 int debug
; /* debugging flag */
54 int nflag
; /* NOP flag, just print commands without executing */
55 int qflag
; /* Quiet. Don't print messages */
56 int options
; /* global options */
57 int iamremote
; /* act as remote server for transfering files */
59 FILE *fin
= NULL
; /* input file pointer */
60 int rem
= -1; /* file descriptor to remote source/sink process */
61 char host
[32]; /* host name */
62 int nerrs
; /* number of errors while sending/receiving */
63 char user
[10]; /* user's name */
64 char homedir
[128]; /* user's home directory */
65 int userid
; /* user's user ID */
66 int groupid
; /* user's group ID */
67 char *path_rsh
= _PATH_RSH
; /* rsh (or equiv command) path */
69 struct passwd
*pw
; /* pointer to static area used by getpwent */
70 struct group
*gr
; /* pointer to static area used by getgrent */
72 static void usage(void);
73 static void docmdargs(int, char *[]);
76 main(int argc
, char **argv
)
80 char *dhosts
[NHOSTS
], **hp
= dhosts
;
84 pw
= getpwuid(userid
= getuid());
86 fprintf(stderr
, "%s: Who are you?\n", argv
[0]);
89 strcpy(user
, pw
->pw_name
);
90 strcpy(homedir
, pw
->pw_dir
);
92 gethostname(host
, sizeof(host
));
93 strcpy(tempfile
, _PATH_TMP
);
94 strcat(tempfile
, _RDIST_TMP
);
95 if ((tempname
= rindex(tempfile
, '/')) != 0)
101 if ((arg
= *++argv
)[0] != '-')
103 if (!strcmp(arg
, "-Server"))
117 if (distfile
[0] == '-' && distfile
[1] == '\0')
124 if (hp
>= &dhosts
[NHOSTS
-2]) {
125 fprintf(stderr
, "rdist: too many destination hosts\n");
146 if (options
& VERIFY
) {
147 printf("rdist: -n overrides -v\n");
167 printf("rdist: -n overrides -v\n");
204 docmdargs(argc
, argv
);
207 if(distfile
== NULL
) {
208 if((fin
= fopen("distfile","r")) == NULL
)
209 fin
= fopen("Distfile", "r");
211 fin
= fopen(distfile
, "r");
213 perror(distfile
? distfile
: "distfile");
219 docmds(dhosts
, argc
, argv
);
228 printf("%s\n%s\n%s\n",
229 "usage: rdist [-nqbhirvwyD] [-P /path/to/rsh ] [-f distfile] [-d var=value]",
230 " [-m host] [file ...]",
231 " rdist [-nqbhirvwyD] [-P /path/to/rsh ] -c source [...] machine[:dest]");
236 * rcp like interface for distributing files.
239 docmdargs(int nargs
, char **args
)
241 struct namelist
*nl
, *prev
;
243 struct namelist
*files
, *hosts
;
246 static struct namelist tnl
= { NULL
, NULL
};
255 for (i
= 0; i
< nargs
- 1; i
++) {
256 nl
= makenl(args
[i
]);
266 if ((dest
= index(cp
, ':')) != NULL
)
269 hosts
= expand(&tnl
, E_ALL
);
273 if (dest
== NULL
|| *dest
== '\0')
276 cmds
= makesubcmd(INSTALL
);
277 cmds
->sc_options
= options
;
278 cmds
->sc_name
= dest
;
282 printf("docmdargs()\nfiles = ");
287 insert(NULL
, files
, hosts
, cmds
);
288 docmds(NULL
, 0, NULL
);
292 * Print a list of NAME blocks (mostly for debugging).
295 prnames(struct namelist
*nl
)
299 printf("%s ", nl
->n_name
);
307 warn(const char *fmt
, ...)
313 fprintf(stderr
, "rdist: line %d: Warning: ", yylineno
);
314 vfprintf(stderr
, fmt
, ap
);
315 fprintf(stderr
, "\n");