Remove unused functions.
[dragonfly.git] / sbin / dump / dumprmt.c
1 /*-
2  * Copyright (c) 1980, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
20  *
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
31  * SUCH DAMAGE.
32  *
33  * @(#)dumprmt.c        8.3 (Berkeley) 4/28/95
34  * $FreeBSD: src/sbin/dump/dumprmt.c,v 1.14.2.1 2000/07/01 06:31:52 ps Exp $
35  * $DragonFly: src/sbin/dump/dumprmt.c,v 1.9 2005/04/13 14:10:18 joerg Exp $
36  */
37
38 #include <sys/param.h>
39 #include <sys/mtio.h>
40 #include <sys/socket.h>
41 #include <sys/time.h>
42 #ifdef sunos
43 #include <sys/vnode.h>
44
45 #include <ufs/inode.h>
46 #else
47 #include <vfs/ufs/dinode.h>
48 #endif
49
50 #include <netinet/in.h>
51 #include <netinet/in_systm.h>
52 #include <netinet/ip.h>
53 #include <netinet/tcp.h>
54
55 #include <protocols/dumprestore.h>
56
57 #include <ctype.h>
58 #include <netdb.h>
59 #include <pwd.h>
60 #include <stdio.h>
61 #ifdef __STDC__
62 #include <errno.h>
63 #include <stdlib.h>
64 #include <string.h>
65 #include <unistd.h>
66 #endif
67
68 #include "pathnames.h"
69 #include "dump.h"
70
71 #define TS_CLOSED       0
72 #define TS_OPEN         1
73
74 static  int rmtstate = TS_CLOSED;
75 static  int rmtape;
76 static  char *rmtpeer;
77
78 static  int okname(char *);
79 static  int rmtcall(const char *, const char *);
80 static  void rmtconnaborted(int);
81 static  int rmtgetb(void);
82 static  void rmtgetconn(void);
83 static  void rmtgets(char *, int);
84 static  int rmtreply(const char *);
85 #ifdef KERBEROS
86 int     krcmd(char **, int /*u_short*/, char *, char *, int *, char *);
87 #endif
88
89 static  int errfd = -1;
90 extern  int dokerberos;
91 extern  int ntrec;              /* blocking factor on tape */
92
93 int
94 rmthost(char *host)
95 {
96
97         rmtpeer = malloc(strlen(host) + 1);
98         if (rmtpeer)
99                 strcpy(rmtpeer, host);
100         else
101                 rmtpeer = host;
102         signal(SIGPIPE, rmtconnaborted);
103         rmtgetconn();
104         if (rmtape < 0)
105                 return (0);
106         return (1);
107 }
108
109 static void
110 rmtconnaborted(int signo __unused)
111 {
112         msg("Lost connection to remote host.\n");
113         if (errfd != -1) {
114                 fd_set r;
115                 struct timeval t;
116
117                 FD_ZERO(&r);
118                 FD_SET(errfd, &r);
119                 t.tv_sec = 0;
120                 t.tv_usec = 0;
121                 if (select(errfd + 1, &r, NULL, NULL, &t)) {
122                         int i;
123                         char buf[2048];
124
125                         if ((i = read(errfd, buf, sizeof(buf) - 1)) > 0) {
126                                 buf[i] = '\0';
127                                 msg("on %s: %s%s", rmtpeer, buf,
128                                         buf[i - 1] == '\n' ? "" : "\n");
129                         }
130                 }
131         }
132
133         exit(X_ABORT);
134 }
135
136 void
137 rmtgetconn(void)
138 {
139         char *cp;
140         const char *rmt;
141         static struct servent *sp = NULL;
142         static struct passwd *pwd = NULL;
143         char *tuser;
144         int size;
145         int throughput;
146         int on;
147
148         if (sp == NULL) {
149                 sp = getservbyname(dokerberos ? "kshell" : "shell", "tcp");
150                 if (sp == NULL) {
151                         msg("%s/tcp: unknown service\n",
152                             dokerberos ? "kshell" : "shell");
153                         exit(X_STARTUP);
154                 }
155                 pwd = getpwuid(getuid());
156                 if (pwd == NULL) {
157                         msg("who are you?\n");
158                         exit(X_STARTUP);
159                 }
160         }
161         if ((cp = strchr(rmtpeer, '@')) != NULL) {
162                 tuser = rmtpeer;
163                 *cp = '\0';
164                 if (!okname(tuser))
165                         exit(X_STARTUP);
166                 rmtpeer = ++cp;
167         } else
168                 tuser = pwd->pw_name;
169         if ((rmt = getenv("RMT")) == NULL)
170                 rmt = _PATH_RMT;
171         msg("%s", "");
172 #ifdef KERBEROS
173         if (dokerberos)
174                 rmtape = krcmd(&rmtpeer, sp->s_port, tuser, rmt, &errfd,
175                                (char *)0);
176         else
177 #endif
178                 rmtape = rcmd(&rmtpeer, (u_short)sp->s_port, pwd->pw_name,
179                               tuser, rmt, &errfd);
180         if (rmtape < 0) {
181                 msg("login to %s as %s failed.\n", rmtpeer, tuser);
182                 return;
183         }
184         fprintf(stderr, "Connection to %s established.\n", rmtpeer);
185         size = ntrec * TP_BSIZE;
186         if (size > 60 * 1024)           /* XXX */
187                 size = 60 * 1024;
188         /* Leave some space for rmt request/response protocol */
189         size += 2 * 1024;
190         while (size > TP_BSIZE &&
191             setsockopt(rmtape, SOL_SOCKET, SO_SNDBUF, &size, sizeof (size)) < 0)
192                     size -= TP_BSIZE;
193         setsockopt(rmtape, SOL_SOCKET, SO_RCVBUF, &size, sizeof (size));
194         throughput = IPTOS_THROUGHPUT;
195         if (setsockopt(rmtape, IPPROTO_IP, IP_TOS,
196             &throughput, sizeof(throughput)) < 0)
197                 perror("IP_TOS:IPTOS_THROUGHPUT setsockopt");
198         on = 1;
199         if (setsockopt(rmtape, IPPROTO_TCP, TCP_NODELAY, &on, sizeof (on)) < 0)
200                 perror("TCP_NODELAY setsockopt");
201 }
202
203 static int
204 okname(char *cp0)
205 {
206         char *cp;
207         int c;
208
209         for (cp = cp0; *cp; cp++) {
210                 c = *cp;
211                 if (!isascii(c) || !(isalnum(c) || c == '_' || c == '-')) {
212                         msg("invalid user name %s\n", cp0);
213                         return (0);
214                 }
215         }
216         return (1);
217 }
218
219 int
220 rmtopen(const char *rtape, int mode)
221 {
222         char buf[256];
223
224         snprintf(buf, sizeof (buf), "O%.226s\n%d\n", rtape, mode);
225         rmtstate = TS_OPEN;
226         return (rmtcall(rtape, buf));
227 }
228
229 void
230 rmtclose(void)
231 {
232
233         if (rmtstate != TS_OPEN)
234                 return;
235         rmtcall("close", "C\n");
236         rmtstate = TS_CLOSED;
237 }
238
239 int
240 rmtwrite(char *buf, int count)
241 {
242         char line[30];
243
244         snprintf(line, sizeof (line), "W%d\n", count);
245         write(rmtape, line, strlen(line));
246         write(rmtape, buf, count);
247         return (rmtreply("write"));
248 }
249
250 static int
251 rmtcall(const char *cmd, const char *buf)
252 {
253
254         if (write(rmtape, buf, strlen(buf)) != strlen(buf))
255                 rmtconnaborted(0);
256         return (rmtreply(cmd));
257 }
258
259 static int
260 rmtreply(const char *cmd)
261 {
262         char *cp;
263         char code[30], emsg[BUFSIZ];
264
265         rmtgets(code, sizeof (code));
266         if (*code == 'E' || *code == 'F') {
267                 rmtgets(emsg, sizeof (emsg));
268                 msg("%s: %s", cmd, emsg);
269                 errno = atoi(code + 1);
270                 if (*code == 'F')
271                         rmtstate = TS_CLOSED;
272                 return (-1);
273         }
274         if (*code != 'A') {
275                 /* Kill trailing newline */
276                 cp = code + strlen(code);
277                 if (cp > code && *--cp == '\n')
278                         *cp = '\0';
279
280                 msg("Protocol to remote tape server botched (code \"%s\").\n",
281                     code);
282                 rmtconnaborted(0);
283         }
284         return (atoi(code + 1));
285 }
286
287 int
288 rmtgetb(void)
289 {
290         char c;
291
292         if (read(rmtape, &c, 1) != 1)
293                 rmtconnaborted(0);
294         return (c);
295 }
296
297 /* Get a line (guaranteed to have a trailing newline). */
298 void
299 rmtgets(char *line, int len)
300 {
301         char *cp = line;
302
303         while (len > 1) {
304                 *cp = rmtgetb();
305                 if (*cp == '\n') {
306                         cp[1] = '\0';
307                         return;
308                 }
309                 cp++;
310                 len--;
311         }
312         *cp = '\0';
313         msg("Protocol to remote tape server botched.\n");
314         msg("(rmtgets got \"%s\").\n", line);
315         rmtconnaborted(0);
316 }