]>
Dogcows Code - chaz/tar/blob - src/rtapelib.c
1 /* Functions for communicating with a remote tape drive.
3 Copyright 1988, 1992, 1994, 1996, 1997, 1999, 2000, 2001 Free Software
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* The man page rmt(8) for /etc/rmt documents the remote mag tape protocol
21 which rdump and rrestore use. Unfortunately, the man page is *WRONG*.
22 The author of the routines I'm including originally wrote his code just
23 based on the man page, and it didn't work, so he went to the rdump source
24 to figure out why. The only thing he had to change was to check for the
25 'F' return code in addition to the 'E', and to separate the various
26 arguments with \n instead of a space. I personally don't think that this
27 is much of a problem, but I wanted to point it out. -- Arnold Robbins
29 Originally written by Jeff Lee, modified some by Arnold Robbins. Redone
30 as a library that can replace open, read, write, etc., by Fred Fish, with
31 some additional work by Arnold Robbins. Modified to make all rmt* calls
32 into macros for speed by Jay Fenlason. Use -DWITH_REXEC for rexec
33 code, courtesy of Dan Kegel. */
37 #include <safe-read.h>
38 #include <full-write.h>
40 /* Try hard to get EOPNOTSUPP defined. 486/ISC has it in net/errno.h,
41 3B2/SVR3 has it in sys/inet.h. Otherwise, like on MSDOS, use EINVAL. */
45 # include <net/errno.h>
48 # include <sys/inet.h>
51 # define EOPNOTSUPP EINVAL
63 /* Exit status if exec errors. */
64 #define EXIT_ON_EXEC_ERROR 128
66 /* FIXME: Size of buffers for reading and writing commands to rmt. */
67 #define COMMAND_BUFFER_SIZE 64
70 # define RETSIGTYPE void
73 /* FIXME: Maximum number of simultaneous remote tape connections. */
76 #define PREAD 0 /* read file descriptor from pipe() */
77 #define PWRITE 1 /* write file descriptor from pipe() */
79 /* Return the parent's read side of remote tape connection Fd. */
80 #define READ_SIDE(Fd) (from_remote[Fd][PREAD])
82 /* Return the parent's write side of remote tape connection Fd. */
83 #define WRITE_SIDE(Fd) (to_remote[Fd][PWRITE])
85 /* The pipes for receiving data from remote tape drives. */
86 static int from_remote
[MAXUNIT
][2] = {{-1, -1}, {-1, -1}, {-1, -1}, {-1, -1}};
88 /* The pipes for sending data to remote tape drives. */
89 static int to_remote
[MAXUNIT
][2] = {{-1, -1}, {-1, -1}, {-1, -1}, {-1, -1}};
91 /* Temporary variable used by macros in rmt.h. */
95 /* Close remote tape connection HANDLE, and reset errno to ERRNO_VALUE. */
97 _rmt_shutdown (int handle
, int errno_value
)
99 close (READ_SIDE (handle
));
100 close (WRITE_SIDE (handle
));
101 READ_SIDE (handle
) = -1;
102 WRITE_SIDE (handle
) = -1;
106 /* Attempt to perform the remote tape command specified in BUFFER on
107 remote tape connection HANDLE. Return 0 if successful, -1 on
110 do_command (int handle
, const char *buffer
)
112 /* Save the current pipe handler and try to make the request. */
114 size_t length
= strlen (buffer
);
115 RETSIGTYPE (*pipe_handler
) () = signal (SIGPIPE
, SIG_IGN
);
116 ssize_t written
= full_write (WRITE_SIDE (handle
), buffer
, length
);
117 signal (SIGPIPE
, pipe_handler
);
119 if (written
== length
)
122 /* Something went wrong. Close down and go home. */
124 _rmt_shutdown (handle
, EIO
);
129 get_status_string (int handle
, char *command_buffer
)
134 /* Read the reply command line. */
136 for (counter
= 0, cursor
= command_buffer
;
137 counter
< COMMAND_BUFFER_SIZE
;
140 if (safe_read (READ_SIDE (handle
), cursor
, 1) != 1)
142 _rmt_shutdown (handle
, EIO
);
152 if (counter
== COMMAND_BUFFER_SIZE
)
154 _rmt_shutdown (handle
, EIO
);
158 /* Check the return status. */
160 for (cursor
= command_buffer
; *cursor
; cursor
++)
164 if (*cursor
== 'E' || *cursor
== 'F')
166 errno
= atoi (cursor
+ 1);
168 /* Skip the error message line. */
170 /* FIXME: there is better to do than merely ignoring error messages
171 coming from the remote end. Translate them, too... */
176 while (safe_read (READ_SIDE (handle
), &character
, 1) == 1)
177 if (character
== '\n')
182 _rmt_shutdown (handle
, errno
);
187 /* Check for mis-synced pipes. */
191 _rmt_shutdown (handle
, EIO
);
195 /* Got an `A' (success) response. */
200 /* Read and return the status from remote tape connection HANDLE. If
201 an error occurred, return -1 and set errno. */
203 get_status (int handle
)
205 char command_buffer
[COMMAND_BUFFER_SIZE
];
206 const char *status
= get_status_string (handle
, command_buffer
);
207 return status
? atol (status
) : -1L;
211 get_status_off (int handle
)
213 char command_buffer
[COMMAND_BUFFER_SIZE
];
214 const char *status
= get_status_string (handle
, command_buffer
);
220 /* Parse status, taking care to check for overflow.
221 We can't use standard functions,
222 since off_t might be longer than long. */
227 for (; *status
== ' ' || *status
== '\t'; status
++)
230 negative
= *status
== '-';
231 status
+= negative
|| *status
== '+';
235 int digit
= *status
++ - '0';
236 if (9 < (unsigned) digit
)
240 off_t c10
= 10 * count
;
241 off_t nc
= negative
? c10
- digit
: c10
+ digit
;
242 if (c10
/ 10 != count
|| (negative
? c10
< nc
: nc
< c10
))
254 /* Execute /etc/rmt as user USER on remote system HOST using rexec.
255 Return a file descriptor of a bidirectional socket for stdin and
256 stdout. If USER is zero, use the current username.
258 By default, this code is not used, since it requires that the user
259 have a .netrc file in his/her home directory, or that the
260 application designer be willing to have rexec prompt for login and
261 password info. This may be unacceptable, and .rhosts files for use
262 with rsh are much more common on BSD systems. */
264 _rmt_rexec (char *host
, char *user
)
266 int saved_stdin
= dup (STDIN_FILENO
);
267 int saved_stdout
= dup (STDOUT_FILENO
);
268 struct servent
*rexecserv
;
271 /* When using cpio -o < filename, stdin is no longer the tty. But the
272 rexec subroutine reads the login and the passwd on stdin, to allow
273 remote execution of the command. So, reopen stdin and stdout on
274 /dev/tty before the rexec and give them back their original value
277 if (! freopen ("/dev/tty", "r", stdin
))
278 freopen ("/dev/null", "r", stdin
);
279 if (! freopen ("/dev/tty", "w", stdout
))
280 freopen ("/dev/null", "w", stdout
);
282 if (rexecserv
= getservbyname ("exec", "tcp"), !rexecserv
)
283 error (EXIT_ON_EXEC_ERROR
, 0, _("exec/tcp: Service not available"));
285 result
= rexec (&host
, rexecserv
->s_port
, user
, 0, "/etc/rmt", 0);
286 if (fclose (stdin
) == EOF
)
287 error (0, errno
, _("stdin"));
288 fdopen (saved_stdin
, "r");
289 if (fclose (stdout
) == EOF
)
290 error (0, errno
, _("stdout"));
291 fdopen (saved_stdout
, "w");
296 #endif /* WITH_REXEC */
298 /* Place into BUF a string representing OFLAG, which must be suitable
299 as argument 2 of `open'. BUF must be large enough to hold the
300 result. This function should generate a string that decode_oflag
303 encode_oflag (char *buf
, int oflag
)
305 sprintf (buf
, "%d ", oflag
);
307 switch (oflag
& O_ACCMODE
)
309 case O_RDONLY
: strcat (buf
, "O_RDONLY"); break;
310 case O_RDWR
: strcat (buf
, "O_RDWR"); break;
311 case O_WRONLY
: strcat (buf
, "O_WRONLY"); break;
316 if (oflag
& O_APPEND
) strcat (buf
, "|O_APPEND");
318 if (oflag
& O_CREAT
) strcat (buf
, "|O_CREAT");
320 if (oflag
& O_DSYNC
) strcat (buf
, "|O_DSYNC");
322 if (oflag
& O_EXCL
) strcat (buf
, "|O_EXCL");
324 if (oflag
& O_LARGEFILE
) strcat (buf
, "|O_LARGEFILE");
327 if (oflag
& O_NOCTTY
) strcat (buf
, "|O_NOCTTY");
330 if (oflag
& O_NONBLOCK
) strcat (buf
, "|O_NONBLOCK");
333 if (oflag
& O_RSYNC
) strcat (buf
, "|O_RSYNC");
336 if (oflag
& O_SYNC
) strcat (buf
, "|O_SYNC");
338 if (oflag
& O_TRUNC
) strcat (buf
, "|O_TRUNC");
341 /* Open a file (a magnetic tape device?) on the system specified in
342 PATH, as the given user. PATH has the form `[USER@]HOST:FILE'.
343 OPEN_MODE is O_RDONLY, O_WRONLY, etc. If successful, return the
344 remote pipe number plus BIAS. REMOTE_SHELL may be overridden. On
347 rmt_open__ (const char *path
, int open_mode
, int bias
, const char *remote_shell
)
349 int remote_pipe_number
; /* pseudo, biased file descriptor */
350 char *path_copy
; /* copy of path string */
351 char *remote_host
; /* remote host name */
352 char *remote_file
; /* remote file name (often a device) */
353 char *remote_user
; /* remote user name */
355 /* Find an unused pair of file descriptors. */
357 for (remote_pipe_number
= 0;
358 remote_pipe_number
< MAXUNIT
;
359 remote_pipe_number
++)
360 if (READ_SIDE (remote_pipe_number
) == -1
361 && WRITE_SIDE (remote_pipe_number
) == -1)
364 if (remote_pipe_number
== MAXUNIT
)
370 /* Pull apart the system and device, and optional user. */
375 path_copy
= xstrdup (path
);
376 remote_host
= path_copy
;
380 for (cursor
= path_copy
; *cursor
; cursor
++)
387 /* Do not allow newlines in the path, since the protocol
388 uses newline delimiters. */
396 remote_user
= remote_host
;
398 remote_host
= cursor
+ 1;
406 remote_file
= cursor
+ 1;
412 /* FIXME: Should somewhat validate the decoding, here. */
414 if (remote_user
&& *remote_user
== '\0')
419 /* Execute the remote command using rexec. */
421 READ_SIDE (remote_pipe_number
) = _rmt_rexec (remote_host
, remote_user
);
422 if (READ_SIDE (remote_pipe_number
) < 0)
430 WRITE_SIDE (remote_pipe_number
) = READ_SIDE (remote_pipe_number
);
432 #else /* not WITH_REXEC */
434 const char *remote_shell_basename
;
437 /* Identify the remote command to be executed. */
442 remote_shell
= REMOTE_SHELL
;
449 remote_shell_basename
= base_name (remote_shell
);
451 /* Set up the pipes for the `rsh' command, and fork. */
453 if (pipe (to_remote
[remote_pipe_number
]) == -1
454 || pipe (from_remote
[remote_pipe_number
]) == -1)
475 close (STDIN_FILENO
);
476 dup (to_remote
[remote_pipe_number
][PREAD
]);
477 close (to_remote
[remote_pipe_number
][PREAD
]);
478 close (to_remote
[remote_pipe_number
][PWRITE
]);
480 close (STDOUT_FILENO
);
481 dup (from_remote
[remote_pipe_number
][PWRITE
]);
482 close (from_remote
[remote_pipe_number
][PREAD
]);
483 close (from_remote
[remote_pipe_number
][PWRITE
]);
485 sys_reset_uid_gid ();
488 execl (remote_shell
, remote_shell_basename
, remote_host
,
489 "-l", remote_user
, "/etc/rmt", (char *) 0);
491 execl (remote_shell
, remote_shell_basename
, remote_host
,
492 "/etc/rmt", (char *) 0);
494 /* Bad problems if we get here. */
496 /* In a previous version, _exit was used here instead of exit. */
497 error (EXIT_ON_EXEC_ERROR
, errno
, _("Cannot execute remote shell"));
502 close (from_remote
[remote_pipe_number
][PWRITE
]);
503 close (to_remote
[remote_pipe_number
][PREAD
]);
505 #endif /* not WITH_REXEC */
507 /* Attempt to open the tape device. */
510 size_t remote_file_len
= strlen (remote_file
);
511 char *command_buffer
= xmalloc (remote_file_len
+ 1000);
512 sprintf (command_buffer
, "O%s\n", remote_file
);
513 encode_oflag (command_buffer
+ remote_file_len
+ 2, open_mode
);
514 strcat (command_buffer
, "\n");
515 if (do_command (remote_pipe_number
, command_buffer
) == -1
516 || get_status (remote_pipe_number
) == -1)
519 free (command_buffer
);
521 _rmt_shutdown (remote_pipe_number
, e
);
524 free (command_buffer
);
528 return remote_pipe_number
+ bias
;
531 /* Close remote tape connection HANDLE and shut down. Return 0 if
532 successful, -1 on error. */
534 rmt_close__ (int handle
)
538 if (do_command (handle
, "C\n") == -1)
541 status
= get_status (handle
);
542 _rmt_shutdown (handle
, errno
);
546 /* Read up to LENGTH bytes into BUFFER from remote tape connection HANDLE.
547 Return the number of bytes read on success, -1 on error. */
549 rmt_read__ (int handle
, char *buffer
, size_t length
)
551 char command_buffer
[COMMAND_BUFFER_SIZE
];
552 ssize_t status
, rlen
;
555 sprintf (command_buffer
, "R%lu\n", (unsigned long) length
);
556 if (do_command (handle
, command_buffer
) == -1
557 || (status
= get_status (handle
)) == -1)
560 for (counter
= 0; counter
< status
; counter
+= rlen
, buffer
+= rlen
)
562 rlen
= safe_read (READ_SIDE (handle
), buffer
, status
- counter
);
565 _rmt_shutdown (handle
, EIO
);
573 /* Write LENGTH bytes from BUFFER to remote tape connection HANDLE.
574 Return the number of bytes written on success, -1 on error. */
576 rmt_write__ (int handle
, char *buffer
, size_t length
)
578 char command_buffer
[COMMAND_BUFFER_SIZE
];
579 RETSIGTYPE (*pipe_handler
) ();
582 sprintf (command_buffer
, "W%lu\n", (unsigned long) length
);
583 if (do_command (handle
, command_buffer
) == -1)
586 pipe_handler
= signal (SIGPIPE
, SIG_IGN
);
587 written
= full_write (WRITE_SIDE (handle
), buffer
, length
);
588 signal (SIGPIPE
, pipe_handler
);
589 if (written
== length
)
590 return get_status (handle
);
594 _rmt_shutdown (handle
, EIO
);
598 /* Perform an imitation lseek operation on remote tape connection
599 HANDLE. Return the new file offset if successful, -1 if on error. */
601 rmt_lseek__ (int handle
, off_t offset
, int whence
)
603 char command_buffer
[COMMAND_BUFFER_SIZE
];
604 char operand_buffer
[UINTMAX_STRSIZE_BOUND
];
605 uintmax_t u
= offset
< 0 ? - (uintmax_t) offset
: (uintmax_t) offset
;
606 char *p
= operand_buffer
+ sizeof operand_buffer
;
609 *--p
= '0' + (int) (u
% 10);
610 while ((u
/= 10) != 0);
616 case SEEK_SET
: whence
= 0; break;
617 case SEEK_CUR
: whence
= 1; break;
618 case SEEK_END
: whence
= 2; break;
622 sprintf (command_buffer
, "L%s\n%d\n", p
, whence
);
624 if (do_command (handle
, command_buffer
) == -1)
627 return get_status_off (handle
);
630 /* Perform a raw tape operation on remote tape connection HANDLE.
631 Return the results of the ioctl, or -1 on error. */
633 rmt_ioctl__ (int handle
, int operation
, char *argument
)
644 char command_buffer
[COMMAND_BUFFER_SIZE
];
645 char operand_buffer
[UINTMAX_STRSIZE_BOUND
];
646 uintmax_t u
= (((struct mtop
*) argument
)->mt_count
< 0
647 ? - (uintmax_t) ((struct mtop
*) argument
)->mt_count
648 : (uintmax_t) ((struct mtop
*) argument
)->mt_count
);
649 char *p
= operand_buffer
+ sizeof operand_buffer
;
652 *--p
= '0' + (int) (u
% 10);
653 while ((u
/= 10) != 0);
654 if (((struct mtop
*) argument
)->mt_count
< 0)
657 /* MTIOCTOP is the easy one. Nothing is transferred in binary. */
659 sprintf (command_buffer
, "I%d\n%s\n",
660 ((struct mtop
*) argument
)->mt_op
, p
);
661 if (do_command (handle
, command_buffer
) == -1)
664 return get_status (handle
);
666 #endif /* MTIOCTOP */
674 /* Grab the status and read it directly into the structure. This
675 assumes that the status buffer is not padded and that 2 shorts
676 fit in a long without any word alignment problems; i.e., the
677 whole struct is contiguous. NOTE - this is probably NOT a good
680 if (do_command (handle
, "S") == -1
681 || (status
= get_status (handle
), status
== -1))
684 for (; status
> 0; status
-= counter
, argument
+= counter
)
686 counter
= safe_read (READ_SIDE (handle
), argument
, status
);
689 _rmt_shutdown (handle
, EIO
);
694 /* Check for byte position. mt_type (or mt_model) is a small integer
695 field (normally) so we will check its magnitude. If it is larger
696 than 256, we will assume that the bytes are swapped and go through
697 and reverse all the bytes. */
699 if (((struct mtget
*) argument
)->MTIO_CHECK_FIELD
< 256)
702 for (counter
= 0; counter
< status
; counter
+= 2)
704 char copy
= argument
[counter
];
706 argument
[counter
] = argument
[counter
+ 1];
707 argument
[counter
+ 1] = copy
;
712 #endif /* MTIOCGET */
This page took 0.064483 seconds and 4 git commands to generate.