3cd3664dcc8dd3ed8b20c448ad496eb80edb12ec
[debian/amanda] / common-src / rsh-security.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1999 University of Maryland
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26
27 /*
28  * $Id: rsh-security.c,v 1.31 2006/08/21 20:17:10 martinea Exp $
29  *
30  * rsh-security.c - security and transport over rsh or a rsh-like command.
31  *
32  * XXX still need to check for initial keyword on connect so we can skip
33  * over shell garbage and other stuff that rsh might want to spew out.
34  */
35
36 #include "amanda.h"
37 #include "util.h"
38 #include "event.h"
39 #include "packet.h"
40 #include "security.h"
41 #include "security-util.h"
42 #include "stream.h"
43
44 /*
45  * Path to the rsh binary.  This should be configurable.
46  */
47 #define RSH_PATH        "/usr/bin/rsh"
48
49 /*
50  * Arguments to rsh.  This should also be configurable
51  */
52 /*#define       RSH_ARGS        */
53
54 /*
55  * Number of seconds rsh has to start up
56  */
57 #define CONNECT_TIMEOUT 20
58
59 /*
60  * Magic values for rsh_conn->handle
61  */
62 #define H_TAKEN -1              /* rsh_conn->tok was already read */
63 #define H_EOF   -2              /* this connection has been shut down */
64
65 /*
66  * Interface functions
67  */
68 static void rsh_connect(const char *, char *(*)(char *, void *),
69                         void (*)(void *, security_handle_t *, security_status_t),
70                         void *, void *);
71
72 /*
73  * This is our interface to the outside world.
74  */
75 const security_driver_t rsh_security_driver = {
76     "RSH",
77     rsh_connect,
78     sec_accept,
79     sec_close,
80     stream_sendpkt,
81     stream_recvpkt,
82     stream_recvpkt_cancel,
83     tcpma_stream_server,
84     tcpma_stream_accept,
85     tcpma_stream_client,
86     tcpma_stream_close,
87     sec_stream_auth,
88     sec_stream_id,
89     tcpm_stream_write,
90     tcpm_stream_read,
91     tcpm_stream_read_sync,
92     tcpm_stream_read_cancel,
93     tcpm_close_connection,
94     NULL,
95     NULL
96 };
97
98 static int newhandle = 1;
99
100 /*
101  * Local functions
102  */
103 static int runrsh(struct tcp_conn *, const char *, const char *);
104
105
106 /*
107  * rsh version of a security handle allocator.  Logically sets
108  * up a network "connection".
109  */
110 static void
111 rsh_connect(
112     const char *        hostname,
113     char *              (*conf_fn)(char *, void *),
114     void                (*fn)(void *, security_handle_t *, security_status_t),
115     void *              arg,
116     void *              datap)
117 {
118     int result;
119     struct sec_handle *rh;
120     char *amandad_path=NULL, *client_username=NULL;
121
122     assert(fn != NULL);
123     assert(hostname != NULL);
124
125     auth_debug(1, _("rsh: rsh_connect: %s\n"), hostname);
126
127     rh = alloc(SIZEOF(*rh));
128     security_handleinit(&rh->sech, &rsh_security_driver);
129     rh->hostname = NULL;
130     rh->rs = NULL;
131     rh->ev_timeout = NULL;
132     rh->rc = NULL;
133
134     /* get the canonical hostname */
135     rh->hostname = NULL;
136     if ((result = resolve_hostname(hostname, 0, NULL, &rh->hostname)) || rh->hostname == NULL) {
137         security_seterror(&rh->sech,
138             _("rsh_security could not find canonical name for '%s': %s"),
139             hostname, gai_strerror(result));
140         (*fn)(arg, &rh->sech, S_ERROR);
141         return;
142     }
143     rh->rs = tcpma_stream_client(rh, newhandle++);
144
145     if (rh->rs == NULL)
146         goto error;
147
148     amfree(rh->hostname);
149     rh->hostname = stralloc(rh->rs->rc->hostname);
150
151     /*
152      * We need to open a new connection.
153      *
154      * XXX need to eventually limit number of outgoing connections here.
155      */
156     if(conf_fn) {
157         amandad_path    = conf_fn("amandad_path", datap);
158         client_username = conf_fn("client_username", datap);
159     }
160     if(rh->rc->read == -1) {
161         if (runrsh(rh->rs->rc, amandad_path, client_username) < 0) {
162             security_seterror(&rh->sech, _("can't connect to %s: %s"),
163                               hostname, rh->rs->rc->errmsg);
164             goto error;
165         }
166         rh->rc->refcnt++;
167     }
168
169     /*
170      * The socket will be opened async so hosts that are down won't
171      * block everything.  We need to register a write event
172      * so we will know when the socket comes alive.
173      *
174      * Overload rh->rs->ev_read to provide a write event handle.
175      * We also register a timeout.
176      */
177     rh->fn.connect = fn;
178     rh->arg = arg;
179     rh->rs->ev_read = event_register((event_id_t)rh->rs->rc->write, EV_WRITEFD,
180         sec_connect_callback, rh);
181     rh->ev_timeout = event_register((event_id_t)CONNECT_TIMEOUT, EV_TIME,
182         sec_connect_timeout, rh);
183
184     return;
185
186 error:
187     (*fn)(arg, &rh->sech, S_ERROR);
188 }
189
190 /*
191  * Forks a rsh to the host listed in rc->hostname
192  * Returns negative on error, with an errmsg in rc->errmsg.
193  */
194 static int
195 runrsh(
196     struct tcp_conn *   rc,
197     const char *        amandad_path,
198     const char *        client_username)
199 {
200     int rpipe[2], wpipe[2];
201     char *xamandad_path = (char *)amandad_path;
202     char *xclient_username = (char *)client_username;
203
204     memset(rpipe, -1, SIZEOF(rpipe));
205     memset(wpipe, -1, SIZEOF(wpipe));
206     if (pipe(rpipe) < 0 || pipe(wpipe) < 0) {
207         rc->errmsg = newvstrallocf(rc->errmsg, _("pipe: %s"), strerror(errno));
208         return (-1);
209     }
210
211     switch (rc->pid = fork()) {
212     case -1:
213         rc->errmsg = newvstrallocf(rc->errmsg, _("fork: %s"), strerror(errno));
214         aclose(rpipe[0]);
215         aclose(rpipe[1]);
216         aclose(wpipe[0]);
217         aclose(wpipe[1]);
218         return (-1);
219     case 0:
220         dup2(wpipe[0], 0);
221         dup2(rpipe[1], 1);
222         break;
223     default:
224         rc->read = rpipe[0];
225         aclose(rpipe[1]);
226         rc->write = wpipe[1];
227         aclose(wpipe[0]);
228         return (0);
229     }
230
231     /* drop root privs permanently */
232     set_root_privs(-1);
233
234     safe_fd(-1, 0);
235
236     if(!xamandad_path || strlen(xamandad_path) <= 1) 
237         xamandad_path = vstralloc(amlibexecdir, "/", "amandad", NULL);
238     if(!xclient_username || strlen(xclient_username) <= 1)
239         xclient_username = CLIENT_LOGIN;
240
241     execlp(RSH_PATH, RSH_PATH, "-l", xclient_username,
242            rc->hostname, xamandad_path, "-auth=rsh", "amdump", "amindexd",
243            "amidxtaped", (char *)NULL);
244     error(_("error: couldn't exec %s: %s"), RSH_PATH, strerror(errno));
245
246     /* should never go here, shut up compiler warning */
247     return(-1);
248 }