X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=device-src%2Ftape-posix.c;h=0fc30409bb0213104445a0d9b437c1e3f1b1fc12;hb=fd48f3e498442f0cbff5f3606c7c403d0566150e;hp=80e2a50bec6a197d5d97eb72da3bc6ec649f4a08;hpb=2627875b7d18858bc1f9f7652811e4d8c15a23eb;p=debian%2Famanda diff --git a/device-src/tape-posix.c b/device-src/tape-posix.c index 80e2a50..0fc3040 100644 --- a/device-src/tape-posix.c +++ b/device-src/tape-posix.c @@ -1,21 +1,21 @@ /* - * Copyright (c) 2005-2008 Zmanda Inc. All Rights Reserved. - * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License version 2.1 as - * published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, but + * Copyright (c) 2007, 2008, 2009, 2010 Zmanda, Inc. All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public - * License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. - * - * Contact information: Zmanda Inc., 465 S Mathlida Ave, Suite 300 - * Sunnyvale, CA 94086, USA, or: http://www.zmanda.com + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Contact information: Zmanda Inc., 465 S. Mathilda Ave., Suite 300 + * Sunnyvale, CA 94085, USA, or: http://www.zmanda.com */ #include "amanda.h" @@ -92,6 +92,17 @@ gboolean tape_bsr(int fd, guint count) { return 0 == ioctl(fd, MTIOCTOP, &mt); } +gint tape_fileno(int fd) { + struct mtget get; + + if (0 != ioctl(fd, MTIOCGET, &get)) + return TAPE_POSITION_UNKNOWN; + if (get.mt_fileno < 0) + return TAPE_POSITION_UNKNOWN; + else + return get.mt_fileno; +} + gint tape_eod(int fd) { struct mtop mt; struct mtget get; @@ -131,6 +142,22 @@ gboolean tape_setcompression(int fd G_GNUC_UNUSED, #endif } +gboolean tape_offl(int fd) { + struct mtop mt; + int safe_errno; + + mt.mt_op = MTOFFL; + mt.mt_count = 1; + if (0 == ioctl(fd, MTIOCTOP, &mt)) + return TRUE; + + safe_errno = errno; + g_debug("tape_off: ioctl(MTIOCTOP/MTOFFL) failed: %s", strerror(errno)); + errno = safe_errno; + + return FALSE; +} + DeviceStatusFlags tape_is_tape_device(int fd) { struct mtop mt; mt.mt_op = MTNOP; @@ -142,7 +169,7 @@ DeviceStatusFlags tape_is_tape_device(int fd) { return DEVICE_STATUS_VOLUME_MISSING; #endif } else { - dbprintf("tape_is_tape_device: ioctl(MTIOCTOP/MTNOP) failed: %s\n", + g_debug("tape_is_tape_device: ioctl(MTIOCTOP/MTNOP) failed: %s", strerror(errno)); if (errno == EIO) { /* some devices return EIO while the drive is busy loading */ @@ -180,6 +207,7 @@ DeviceStatusFlags tape_is_ready(int fd, TapeDevice *t_self G_GNUC_UNUSED) { void tape_device_detect_capabilities(TapeDevice * t_self) { tape_device_set_capabilities(t_self, TRUE, PROPERTY_SURETY_BAD, PROPERTY_SOURCE_DEFAULT, /* fsf*/ + DEFAULT_FSF_AFTER_FILEMARK, PROPERTY_SURETY_BAD, PROPERTY_SOURCE_DEFAULT, /* fsf_after_filemark*/ TRUE, PROPERTY_SURETY_BAD, PROPERTY_SOURCE_DEFAULT, /* bsf*/ TRUE, PROPERTY_SURETY_BAD, PROPERTY_SOURCE_DEFAULT, /* fsr*/ TRUE, PROPERTY_SURETY_BAD, PROPERTY_SOURCE_DEFAULT, /* bsr*/