]>
Dogcows Code - chaz/tar/blob - src/rtapelib.c
1 /* Functions for communicating with a remote tape drive.
2 Copyright (C) 1988, 1992, 1994, 1996 Free Software Foundation, Inc.
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, or (at your option)
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 Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* The man page rmt(8) for /etc/rmt documents the remote mag tape protocol
19 which rdump and rrestore use. Unfortunately, the man page is *WRONG*.
20 The author of the routines I'm including originally wrote his code just
21 based on the man page, and it didn't work, so he went to the rdump source
22 to figure out why. The only thing he had to change was to check for the
23 'F' return code in addition to the 'E', and to separate the various
24 arguments with \n instead of a space. I personally don't think that this
25 is much of a problem, but I wanted to point it out. -- Arnold Robbins
27 Originally written by Jeff Lee, modified some by Arnold Robbins. Redone
28 as a library that can replace open, read, write, etc., by Fred Fish, with
29 some additional work by Arnold Robbins. Modified to make all rmt* calls
30 into macros for speed by Jay Fenlason. Use -DWITH_REXEC for rexec
31 code, courtesy of Dan Kegel. */
36 #include "safe-read.h"
38 /* Try hard to get EOPNOTSUPP defined. 486/ISC has it in net/errno.h,
39 3B2/SVR3 has it in sys/inet.h. Otherwise, like on MSDOS, use EINVAL. */
43 # include <net/errno.h>
46 # include <sys/inet.h>
49 # define EOPNOTSUPP EINVAL
61 /* FIXME: Just to shut up -Wall. */
64 /* Exit status if exec errors. */
65 #define EXIT_ON_EXEC_ERROR 128
67 /* FIXME: Size of buffers for reading and writing commands to rmt. */
68 #define COMMAND_BUFFER_SIZE 64
71 # define RETSIGTYPE void
74 /* FIXME: Maximum number of simultaneous remote tape connections. */
77 #define PREAD 0 /* read file descriptor from pipe() */
78 #define PWRITE 1 /* write file descriptor from pipe() */
80 /* Return the parent's read side of remote tape connection Fd. */
81 #define READ_SIDE(Fd) (from_remote[Fd][PREAD])
83 /* Return the parent's write side of remote tape connection Fd. */
84 #define WRITE_SIDE(Fd) (to_remote[Fd][PWRITE])
86 /* The pipes for receiving data from remote tape drives. */
87 static int from_remote
[MAXUNIT
][2] = {{-1, -1}, {-1, -1}, {-1, -1}, {-1, -1}};
89 /* The pipes for sending data to remote tape drives. */
90 static int to_remote
[MAXUNIT
][2] = {{-1, -1}, {-1, -1}, {-1, -1}, {-1, -1}};
92 /* Temporary variable used by macros in rmt.h. */
96 /*----------------------------------------------------------------------.
97 | Close remote tape connection HANDLE, and reset errno to ERRNO_VALUE. |
98 `----------------------------------------------------------------------*/
101 _rmt_shutdown (int handle
, int errno_value
)
103 close (READ_SIDE (handle
));
104 close (WRITE_SIDE (handle
));
105 READ_SIDE (handle
) = -1;
106 WRITE_SIDE (handle
) = -1;
107 errno
= errno_value
; /* FIXME: errno should be read-only */
110 /*-------------------------------------------------------------------------.
111 | Attempt to perform the remote tape command specified in BUFFER on remote |
112 | tape connection HANDLE. Return 0 if successful, -1 on error. |
113 `-------------------------------------------------------------------------*/
116 do_command (int handle
, const char *buffer
)
119 RETSIGTYPE (*pipe_handler
) ();
121 /* Save the current pipe handler and try to make the request. */
123 pipe_handler
= signal (SIGPIPE
, SIG_IGN
);
124 length
= strlen (buffer
);
125 if (full_write (WRITE_SIDE (handle
), buffer
, length
) == length
)
127 signal (SIGPIPE
, pipe_handler
);
131 /* Something went wrong. Close down and go home. */
133 signal (SIGPIPE
, pipe_handler
);
134 _rmt_shutdown (handle
, EIO
);
139 get_status_string (int handle
, char *command_buffer
)
144 /* Read the reply command line. */
146 for (counter
= 0, cursor
= command_buffer
;
147 counter
< COMMAND_BUFFER_SIZE
;
150 if (safe_read (READ_SIDE (handle
), cursor
, 1) != 1)
152 _rmt_shutdown (handle
, EIO
);
162 if (counter
== COMMAND_BUFFER_SIZE
)
164 _rmt_shutdown (handle
, EIO
);
168 /* Check the return status. */
170 for (cursor
= command_buffer
; *cursor
; cursor
++)
174 if (*cursor
== 'E' || *cursor
== 'F')
176 errno
= atoi (cursor
+ 1); /* FIXME: errno should be read-only */
178 /* Skip the error message line. */
180 /* FIXME: there is better to do than merely ignoring error messages
181 coming from the remote end. Translate them, too... */
186 while (safe_read (READ_SIDE (handle
), &character
, 1) == 1)
187 if (character
== '\n')
192 _rmt_shutdown (handle
, errno
);
197 /* Check for mis-synced pipes. */
201 _rmt_shutdown (handle
, EIO
);
205 /* Got an `A' (success) response. */
210 /*----------------------------------------------------------------------.
211 | Read and return the status from remote tape connection HANDLE. If an |
212 | error occurred, return -1 and set errno. |
213 `----------------------------------------------------------------------*/
216 get_status (int handle
)
218 char command_buffer
[COMMAND_BUFFER_SIZE
];
219 const char *status
= get_status_string (handle
, command_buffer
);
220 return status
? atol (status
) : -1L;
224 get_status_off (int handle
)
226 char command_buffer
[COMMAND_BUFFER_SIZE
];
227 const char *status
= get_status_string (handle
, command_buffer
);
233 /* Parse status, taking care to check for overflow.
234 We can't use standard functions,
235 since off_t might be longer than long. */
240 for (; *status
== ' ' || *status
== '\t'; status
++)
243 negative
= *status
== '-';
244 status
+= negative
|| *status
== '+';
248 int digit
= *status
++ - '0';
249 if (9 < (unsigned) digit
)
253 off_t c10
= 10 * count
;
254 off_t nc
= negative
? c10
- digit
: c10
+ digit
;
255 if (c10
/ 10 != count
|| (negative
? c10
< nc
: nc
< c10
))
267 /*-------------------------------------------------------------------------.
268 | Execute /etc/rmt as user USER on remote system HOST using rexec. Return |
269 | a file descriptor of a bidirectional socket for stdin and stdout. If |
270 | USER is NULL, use the current username. |
272 | By default, this code is not used, since it requires that the user have |
273 | a .netrc file in his/her home directory, or that the application |
274 | designer be willing to have rexec prompt for login and password info. |
275 | This may be unacceptable, and .rhosts files for use with rsh are much |
276 | more common on BSD systems. |
277 `-------------------------------------------------------------------------*/
280 _rmt_rexec (char *host
, char *user
)
282 int saved_stdin
= dup (STDIN_FILENO
);
283 int saved_stdout
= dup (STDOUT_FILENO
);
284 struct servent
*rexecserv
;
287 /* When using cpio -o < filename, stdin is no longer the tty. But the
288 rexec subroutine reads the login and the passwd on stdin, to allow
289 remote execution of the command. So, reopen stdin and stdout on
290 /dev/tty before the rexec and give them back their original value
293 if (freopen ("/dev/tty", "r", stdin
) == NULL
)
294 freopen ("/dev/null", "r", stdin
);
295 if (freopen ("/dev/tty", "w", stdout
) == NULL
)
296 freopen ("/dev/null", "w", stdout
);
298 if (rexecserv
= getservbyname ("exec", "tcp"), !rexecserv
)
299 error (EXIT_ON_EXEC_ERROR
, 0, _("exec/tcp: Service not available"));
301 result
= rexec (&host
, rexecserv
->s_port
, user
, NULL
,
302 "/etc/rmt", (int *) NULL
);
303 if (fclose (stdin
) == EOF
)
304 error (0, errno
, _("stdin"));
305 fdopen (saved_stdin
, "r");
306 if (fclose (stdout
) == EOF
)
307 error (0, errno
, _("stdout"));
308 fdopen (saved_stdout
, "w");
313 #endif /* WITH_REXEC */
315 /*------------------------------------------------------------------------.
316 | Open a file (a magnetic tape device?) on the system specified in PATH, |
317 | as the given user. PATH has the form `[USER@]HOST:FILE'. OPEN_MODE is |
318 | O_RDONLY, O_WRONLY, etc. If successful, return the remote pipe number |
319 | plus BIAS. REMOTE_SHELL may be overriden. On error, return -1. |
320 `------------------------------------------------------------------------*/
323 rmt_open__ (const char *path
, int open_mode
, int bias
, const char *remote_shell
)
325 int remote_pipe_number
; /* pseudo, biased file descriptor */
326 char *path_copy
; /* copy of path string */
327 char *remote_host
; /* remote host name */
328 char *remote_file
; /* remote file name (often a device) */
329 char *remote_user
; /* remote user name */
331 /* Find an unused pair of file descriptors. */
333 for (remote_pipe_number
= 0;
334 remote_pipe_number
< MAXUNIT
;
335 remote_pipe_number
++)
336 if (READ_SIDE (remote_pipe_number
) == -1
337 && WRITE_SIDE (remote_pipe_number
) == -1)
340 if (remote_pipe_number
== MAXUNIT
)
342 errno
= EMFILE
; /* FIXME: errno should be read-only */
346 /* Pull apart the system and device, and optional user. */
351 path_copy
= xstrdup (path
);
352 remote_host
= path_copy
;
356 for (cursor
= path_copy
; *cursor
; cursor
++)
365 remote_user
= remote_host
;
367 remote_host
= cursor
+ 1;
375 remote_file
= cursor
+ 1;
381 /* FIXME: Should somewhat validate the decoding, here. */
383 if (remote_user
&& *remote_user
== '\0')
388 /* Execute the remote command using rexec. */
390 READ_SIDE (remote_pipe_number
) = _rmt_rexec (remote_host
, remote_user
);
391 if (READ_SIDE (remote_pipe_number
) < 0)
397 WRITE_SIDE (remote_pipe_number
) = READ_SIDE (remote_pipe_number
);
399 #else /* not WITH_REXEC */
401 const char *remote_shell_basename
;
404 /* Identify the remote command to be executed. */
409 remote_shell
= REMOTE_SHELL
;
411 errno
= EIO
; /* FIXME: errno should be read-only */
416 remote_shell_basename
= base_name (remote_shell
);
417 if (remote_shell_basename
)
418 remote_shell_basename
++;
420 remote_shell_basename
= remote_shell
;
422 /* Set up the pipes for the `rsh' command, and fork. */
424 if (pipe (to_remote
[remote_pipe_number
]) == -1
425 || pipe (from_remote
[remote_pipe_number
]) == -1)
442 close (STDIN_FILENO
);
443 dup (to_remote
[remote_pipe_number
][PREAD
]);
444 close (to_remote
[remote_pipe_number
][PREAD
]);
445 close (to_remote
[remote_pipe_number
][PWRITE
]);
447 close (STDOUT_FILENO
);
448 dup (from_remote
[remote_pipe_number
][PWRITE
]);
449 close (from_remote
[remote_pipe_number
][PREAD
]);
450 close (from_remote
[remote_pipe_number
][PWRITE
]);
458 execl (remote_shell
, remote_shell_basename
, remote_host
,
459 "-l", remote_user
, "/etc/rmt", (char *) 0);
461 execl (remote_shell
, remote_shell_basename
, remote_host
,
462 "/etc/rmt", (char *) 0);
464 /* Bad problems if we get here. */
466 /* In a previous version, _exit was used here instead of exit. */
467 error (EXIT_ON_EXEC_ERROR
, errno
, _("Cannot execute remote shell"));
472 close (from_remote
[remote_pipe_number
][PWRITE
]);
473 close (to_remote
[remote_pipe_number
][PREAD
]);
475 #endif /* not WITH_REXEC */
477 /* Attempt to open the tape device. */
480 char command_buffer
[COMMAND_BUFFER_SIZE
];
482 sprintf (command_buffer
, "O%s\n%d\n", remote_file
, open_mode
);
483 if (do_command (remote_pipe_number
, command_buffer
) == -1
484 || get_status (remote_pipe_number
) == -1)
486 _rmt_shutdown (remote_pipe_number
, errno
);
493 return remote_pipe_number
+ bias
;
496 /*----------------------------------------------------------------.
497 | Close remote tape connection HANDLE and shut down. Return 0 if |
498 | successful, -1 on error. |
499 `----------------------------------------------------------------*/
502 rmt_close__ (int handle
)
506 if (do_command (handle
, "C\n") == -1)
509 status
= get_status (handle
);
510 _rmt_shutdown (handle
, errno
);
514 /*-------------------------------------------------------------------------.
515 | Read up to LENGTH bytes into BUFFER from remote tape connection HANDLE. |
516 | Return the number of bytes read on success, -1 on error. |
517 `-------------------------------------------------------------------------*/
520 rmt_read__ (int handle
, char *buffer
, size_t length
)
522 char command_buffer
[COMMAND_BUFFER_SIZE
];
523 ssize_t status
, rlen
;
526 sprintf (command_buffer
, "R%lu\n", (unsigned long) length
);
527 if (do_command (handle
, command_buffer
) == -1
528 || (status
= get_status (handle
)) == -1)
531 for (counter
= 0; counter
< status
; counter
+= rlen
, buffer
+= rlen
)
533 rlen
= safe_read (READ_SIDE (handle
), buffer
, status
- counter
);
536 _rmt_shutdown (handle
, EIO
);
544 /*-------------------------------------------------------------------------.
545 | Write LENGTH bytes from BUFFER to remote tape connection HANDLE. Return |
546 | the number of bytes written on success, -1 on error. |
547 `-------------------------------------------------------------------------*/
550 rmt_write__ (int handle
, char *buffer
, size_t length
)
552 char command_buffer
[COMMAND_BUFFER_SIZE
];
553 RETSIGTYPE (*pipe_handler
) ();
555 sprintf (command_buffer
, "W%lu\n", (unsigned long) length
);
556 if (do_command (handle
, command_buffer
) == -1)
559 pipe_handler
= signal (SIGPIPE
, SIG_IGN
);
560 if (full_write (WRITE_SIDE (handle
), buffer
, length
) == length
)
562 signal (SIGPIPE
, pipe_handler
);
563 return get_status (handle
);
568 signal (SIGPIPE
, pipe_handler
);
569 _rmt_shutdown (handle
, EIO
);
573 /*------------------------------------------------------------------------.
574 | Perform an imitation lseek operation on remote tape connection HANDLE. |
575 | Return the new file offset if successful, -1 if on error. |
576 `------------------------------------------------------------------------*/
579 rmt_lseek__ (int handle
, off_t offset
, int whence
)
581 char command_buffer
[COMMAND_BUFFER_SIZE
];
582 char operand_buffer
[UINTMAX_STRSIZE_BOUND
];
583 uintmax_t u
= offset
< 0 ? - (uintmax_t) offset
: (uintmax_t) offset
;
584 char *p
= operand_buffer
+ sizeof operand_buffer
;
587 *--p
= '0' + (int) (u
% 10);
588 while ((u
/= 10) != 0);
594 case SEEK_SET
: whence
= 0; break;
595 case SEEK_CUR
: whence
= 1; break;
596 case SEEK_END
: whence
= 2; break;
600 sprintf (command_buffer
, "L%s\n%d\n", p
, whence
);
602 if (do_command (handle
, command_buffer
) == -1)
605 return get_status_off (handle
);
608 /*-----------------------------------------------------------------------.
609 | Perform a raw tape operation on remote tape connection HANDLE. Return |
610 | the results of the ioctl, or -1 on error. |
611 `-----------------------------------------------------------------------*/
614 rmt_ioctl__ (int handle
, int operation
, char *argument
)
619 errno
= EOPNOTSUPP
; /* FIXME: errno should be read-only */
625 char command_buffer
[COMMAND_BUFFER_SIZE
];
626 char operand_buffer
[UINTMAX_STRSIZE_BOUND
];
627 uintmax_t u
= (((struct mtop
*) argument
)->mt_count
< 0
628 ? - (uintmax_t) ((struct mtop
*) argument
)->mt_count
629 : (uintmax_t) ((struct mtop
*) argument
)->mt_count
);
630 char *p
= operand_buffer
+ sizeof operand_buffer
;
633 *--p
= '0' + (int) (u
% 10);
634 while ((u
/= 10) != 0);
635 if (((struct mtop
*) argument
)->mt_count
< 0)
638 /* MTIOCTOP is the easy one. Nothing is transfered in binary. */
640 sprintf (command_buffer
, "I%d\n%s\n",
641 ((struct mtop
*) argument
)->mt_op
, p
);
642 if (do_command (handle
, command_buffer
) == -1)
645 return get_status (handle
);
647 #endif /* MTIOCTOP */
655 /* Grab the status and read it directly into the structure. This
656 assumes that the status buffer is not padded and that 2 shorts
657 fit in a long without any word alignment problems; i.e., the
658 whole struct is contiguous. NOTE - this is probably NOT a good
661 if (do_command (handle
, "S") == -1
662 || (status
= get_status (handle
), status
== -1))
665 for (; status
> 0; status
-= counter
, argument
+= counter
)
667 counter
= safe_read (READ_SIDE (handle
),
668 argument
, (size_t) status
);
671 _rmt_shutdown (handle
, EIO
);
676 /* Check for byte position. mt_type (or mt_model) is a small integer
677 field (normally) so we will check its magnitude. If it is larger
678 than 256, we will assume that the bytes are swapped and go through
679 and reverse all the bytes. */
681 if (((struct mtget
*) argument
)->MTIO_CHECK_FIELD
< 256)
684 for (counter
= 0; counter
< status
; counter
+= 2)
686 char copy
= argument
[counter
];
688 argument
[counter
] = argument
[counter
+ 1];
689 argument
[counter
+ 1] = copy
;
694 #endif /* MTIOCGET */
This page took 0.061545 seconds and 4 git commands to generate.