zftape-vtbl.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:22k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      Copyright (c) 1995-1997 Claus-Justus Heine 
  3.  This program is free software; you can redistribute it and/or
  4.  modify it under the terms of the GNU General Public License as
  5.  published by the Free Software Foundation; either version 2, or (at
  6.  your option) any later version.
  7.  
  8.  This program is distributed in the hope that it will be useful, but
  9.  WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.  General Public License for more details.
  12.  
  13.  You should have received a copy of the GNU General Public License
  14.  along with this program; see the file COPYING.  If not, write to
  15.  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
  16.  USA.
  17.  *
  18.  * $Source: /homes/cvs/ftape-stacked/ftape/zftape/zftape-vtbl.c,v $
  19.  * $Revision: 1.7.6.1 $
  20.  * $Date: 1997/11/24 13:48:31 $
  21.  *
  22.  *      This file defines a volume table as defined in various QIC
  23.  *      standards.
  24.  * 
  25.  *      This is a minimal implementation, just allowing ordinary DOS
  26.  *      :( prgrams to identify the cartridge as used.
  27.  */
  28. #include <linux/errno.h>
  29. #include <linux/mm.h>
  30. #include <linux/slab.h>
  31. #include <asm/segment.h>
  32. #include <linux/zftape.h>
  33. #include "../zftape/zftape-init.h"
  34. #include "../zftape/zftape-eof.h"
  35. #include "../zftape/zftape-ctl.h"
  36. #include "../zftape/zftape-write.h"
  37. #include "../zftape/zftape-read.h"
  38. #include "../zftape/zftape-rw.h"
  39. #include "../zftape/zftape-vtbl.h"
  40. #define ZFT_CMAP_HACK /* leave this defined to hide the compression map */
  41. /*
  42.  *  global variables 
  43.  */
  44. int zft_qic_mode   = 1; /* use the vtbl */
  45. int zft_old_ftape; /* prevents old ftaped tapes to be overwritten */
  46. int zft_volume_table_changed; /* for write_header_segments() */
  47. /*
  48.  *  private variables (only exported for inline functions)
  49.  */
  50. LIST_HEAD(zft_vtbl);
  51. /*  We could also allocate these dynamically when extracting the volume table
  52.  *  sizeof(zft_volinfo) is about 32 or something close to that
  53.  */
  54. static zft_volinfo  tape_vtbl;
  55. static zft_volinfo  eot_vtbl;
  56. static zft_volinfo *cur_vtbl;
  57. inline void zft_new_vtbl_entry(void)
  58. {
  59. struct list_head *tmp = &zft_last_vtbl->node;
  60. zft_volinfo *new = zft_kmalloc(sizeof(zft_volinfo));
  61. list_add(&new->node, tmp);
  62. new->count = zft_eom_vtbl->count ++;
  63. }
  64. void zft_free_vtbl(void)
  65. {
  66. for (;;) {
  67. struct list_head *tmp = zft_vtbl.prev;
  68. zft_volinfo *vtbl;
  69. if (tmp == &zft_vtbl)
  70. break;
  71. list_del(tmp);
  72. vtbl = list_entry(tmp, zft_volinfo, node);
  73. zft_kfree(vtbl, sizeof(zft_volinfo));
  74. }
  75. INIT_LIST_HEAD(&zft_vtbl);
  76. cur_vtbl = NULL;
  77. }
  78. /*  initialize vtbl, called by ftape_new_cartridge()
  79.  */
  80. void zft_init_vtbl(void)
  81. zft_volinfo *new;
  82. zft_free_vtbl();
  83. /*  Create the two dummy vtbl entries
  84.  */
  85. new = zft_kmalloc(sizeof(zft_volinfo));
  86. list_add(&new->node, &zft_vtbl);
  87. new = zft_kmalloc(sizeof(zft_volinfo));
  88. list_add(&new->node, &zft_vtbl);
  89. zft_head_vtbl->end_seg   = ft_first_data_segment;
  90. zft_head_vtbl->blk_sz    = zft_blk_sz;
  91. zft_head_vtbl->count     = -1;
  92. zft_eom_vtbl->start_seg  = ft_first_data_segment + 1;
  93. zft_eom_vtbl->end_seg    = ft_last_data_segment + 1;
  94. zft_eom_vtbl->blk_sz     = zft_blk_sz;
  95. zft_eom_vtbl->count      = 0;
  96. /*  Reset the pointer for zft_find_volume()
  97.  */
  98. cur_vtbl = zft_eom_vtbl;
  99. /* initialize the dummy vtbl entries for zft_qic_mode == 0
  100.  */
  101. eot_vtbl.start_seg       = ft_last_data_segment + 1;
  102. eot_vtbl.end_seg         = ft_last_data_segment + 1;
  103. eot_vtbl.blk_sz          = zft_blk_sz;
  104. eot_vtbl.count           = -1;
  105. tape_vtbl.start_seg = ft_first_data_segment;
  106. tape_vtbl.end_seg   = ft_last_data_segment;
  107. tape_vtbl.blk_sz    = zft_blk_sz;
  108. tape_vtbl.size      = zft_capacity;
  109. tape_vtbl.count     = 0;
  110. }
  111. /* check for a valid VTBL signature. 
  112.  */
  113. static int vtbl_signature_valid(__u8 signature[4])
  114. {
  115. const char *vtbl_ids[] = VTBL_IDS; /* valid signatures */
  116. int j;
  117. for (j = 0; 
  118.      (j < NR_ITEMS(vtbl_ids)) && (memcmp(signature, vtbl_ids[j], 4) != 0);
  119.      j++);
  120. return j < NR_ITEMS(vtbl_ids);
  121. }
  122. /* We used to store the block-size of the volume in the volume-label,
  123.  * using the keyword "blocksize". The blocksize written to the
  124.  * volume-label is in bytes.
  125.  *
  126.  * We use this now only for compatability with old zftape version. We
  127.  * store the blocksize directly as binary number in the vendor
  128.  * extension part of the volume entry.
  129.  */
  130. static int check_volume_label(const char *label, int *blk_sz)
  131. int valid_format;
  132. char *blocksize;
  133. TRACE_FUN(ft_t_flow);
  134. TRACE(ft_t_noise, "called with "%s" / "%s"", label, ZFT_VOL_NAME);
  135. if (strncmp(label, ZFT_VOL_NAME, strlen(ZFT_VOL_NAME)) != 0) {
  136. *blk_sz = 1; /* smallest block size that we allow */
  137. valid_format = 0;
  138. } else {
  139. TRACE(ft_t_noise, "got old style zftape vtbl entry");
  140. /* get the default blocksize */
  141. /* use the kernel strstr()   */
  142. blocksize= strstr(label, " blocksize ");
  143. if (blocksize) {
  144. blocksize += strlen(" blocksize ");
  145. for(*blk_sz= 0; 
  146.     *blocksize >= '0' && *blocksize <= '9'; 
  147.     blocksize++) {
  148. *blk_sz *= 10;
  149. *blk_sz += *blocksize - '0';
  150. }
  151. if (*blk_sz > ZFT_MAX_BLK_SZ) {
  152. *blk_sz= 1;
  153. valid_format= 0;
  154. } else {
  155. valid_format = 1;
  156. }
  157. } else {
  158. *blk_sz= 1;
  159. valid_format= 0;
  160. }
  161. }
  162. TRACE_EXIT valid_format;
  163. }
  164. /*   check for a zftape volume
  165.  */
  166. static int check_volume(__u8 *entry, zft_volinfo *volume)
  167. {
  168. TRACE_FUN(ft_t_flow);
  169. if(strncmp(&entry[VTBL_EXT+EXT_ZFTAPE_SIG], ZFTAPE_SIG,
  170.    strlen(ZFTAPE_SIG)) == 0) {
  171. TRACE(ft_t_noise, "got new style zftape vtbl entry");
  172. volume->blk_sz = GET2(entry, VTBL_EXT+EXT_ZFTAPE_BLKSZ);
  173. volume->qic113 = entry[VTBL_EXT+EXT_ZFTAPE_QIC113];
  174. TRACE_EXIT 1;
  175. } else {
  176. TRACE_EXIT check_volume_label(&entry[VTBL_DESC], &volume->blk_sz);
  177. }
  178. }
  179. /* create zftape specific vtbl entry, the volume bounds are inserted
  180.  * in the calling function, zft_create_volume_headers()
  181.  */
  182. static void create_zft_volume(__u8 *entry, zft_volinfo *vtbl)
  183. {
  184. TRACE_FUN(ft_t_flow);
  185. memset(entry, 0, VTBL_SIZE);
  186. memcpy(&entry[VTBL_SIG], VTBL_ID, 4);
  187. sprintf(&entry[VTBL_DESC], ZFT_VOL_NAME" %03d", vtbl->count);
  188. entry[VTBL_FLAGS] = (VTBL_FL_NOT_VERIFIED | VTBL_FL_SEG_SPANNING);
  189. entry[VTBL_M_NO] = 1; /* multi_cartridge_count */
  190. strcpy(&entry[VTBL_EXT+EXT_ZFTAPE_SIG], ZFTAPE_SIG);
  191. PUT2(entry, VTBL_EXT+EXT_ZFTAPE_BLKSZ, vtbl->blk_sz);
  192. if (zft_qic113) {
  193. PUT8(entry, VTBL_DATA_SIZE, vtbl->size);
  194. entry[VTBL_CMPR] = VTBL_CMPR_UNREG; 
  195. if (vtbl->use_compression) { /* use compression: */
  196. entry[VTBL_CMPR] |= VTBL_CMPR_USED;
  197. }
  198. entry[VTBL_EXT+EXT_ZFTAPE_QIC113] = 1;
  199. } else {
  200. PUT4(entry, VTBL_DATA_SIZE, vtbl->size);
  201. entry[VTBL_K_CMPR] = VTBL_CMPR_UNREG; 
  202. if (vtbl->use_compression) { /* use compression: */
  203. entry[VTBL_K_CMPR] |= VTBL_CMPR_USED;
  204. }
  205. }
  206. if (ft_format_code == fmt_big) {
  207. /* SCSI like vtbl, store the number of used
  208.  * segments as 4 byte value 
  209.  */
  210. PUT4(entry, VTBL_SCSI_SEGS, vtbl->end_seg-vtbl->start_seg + 1);
  211. } else {
  212. /* normal, QIC-80MC like vtbl 
  213.  */
  214. PUT2(entry, VTBL_START, vtbl->start_seg);
  215. PUT2(entry, VTBL_END, vtbl->end_seg);
  216. }
  217. TRACE_EXIT;
  218. }
  219. /* this one creates the volume headers for each volume. It is assumed
  220.  * that buffer already contains the old volume-table, so that vtbl
  221.  * entries without the zft_volume flag set can savely be ignored.
  222.  */
  223. void zft_create_volume_headers(__u8 *buffer)
  224. {   
  225. __u8 *entry;
  226. struct list_head *tmp;
  227. zft_volinfo *vtbl;
  228. TRACE_FUN(ft_t_flow);
  229. #ifdef ZFT_CMAP_HACK
  230. if((strncmp(&buffer[VTBL_EXT+EXT_ZFTAPE_SIG], ZFTAPE_SIG,
  231.     strlen(ZFTAPE_SIG)) == 0) && 
  232.    buffer[VTBL_EXT+EXT_ZFTAPE_CMAP] != 0) {
  233. TRACE(ft_t_noise, "deleting cmap volume");
  234. memmove(buffer, buffer + VTBL_SIZE,
  235. FT_SEGMENT_SIZE - VTBL_SIZE);
  236. }
  237. #endif
  238. entry = buffer;
  239. for (tmp = zft_head_vtbl->node.next;
  240.      tmp != &zft_eom_vtbl->node;
  241.      tmp = tmp->next) {
  242. vtbl = list_entry(tmp, zft_volinfo, node);
  243. /* we now fill in the values only for newly created volumes.
  244.  */
  245. if (vtbl->new_volume) {
  246. create_zft_volume(entry, vtbl);
  247. vtbl->new_volume = 0; /* clear the flag */
  248. }
  249. DUMP_VOLINFO(ft_t_noise, &entry[VTBL_DESC], vtbl);
  250. entry += VTBL_SIZE;
  251. }
  252. memset(entry, 0, FT_SEGMENT_SIZE - zft_eom_vtbl->count * VTBL_SIZE);
  253. TRACE_EXIT;
  254. }
  255. /*  write volume table to tape. Calls zft_create_volume_headers()
  256.  */
  257. int zft_update_volume_table(unsigned int segment)
  258. {
  259. int result = 0;
  260. __u8 *verify_buf = NULL;
  261. TRACE_FUN(ft_t_flow);
  262. TRACE_CATCH(result = ftape_read_segment(ft_first_data_segment, 
  263. zft_deblock_buf,
  264. FT_RD_SINGLE),);
  265. zft_create_volume_headers(zft_deblock_buf);
  266. TRACE(ft_t_noise, "writing volume table segment %d", segment);
  267. if (zft_vmalloc_once(&verify_buf, FT_SEGMENT_SIZE) == 0) {
  268. TRACE_CATCH(zft_verify_write_segments(segment, 
  269.       zft_deblock_buf, result,
  270.       verify_buf),
  271.     zft_vfree(&verify_buf, FT_SEGMENT_SIZE));
  272. zft_vfree(&verify_buf, FT_SEGMENT_SIZE);
  273. } else {
  274. TRACE_CATCH(ftape_write_segment(segment, zft_deblock_buf, 
  275. FT_WR_SINGLE),);
  276. }
  277. TRACE_EXIT 0;
  278. }
  279. /* non zftape volumes are handled in raw mode. Thus we need to
  280.  * calculate the raw amount of data contained in those segments.  
  281.  */
  282. static void extract_alien_volume(__u8 *entry, zft_volinfo *vtbl)
  283. {
  284. TRACE_FUN(ft_t_flow);
  285. vtbl->size  = (zft_calc_tape_pos(zft_last_vtbl->end_seg+1) -
  286.        zft_calc_tape_pos(zft_last_vtbl->start_seg));
  287. vtbl->use_compression = 0;
  288. vtbl->qic113 = zft_qic113;
  289. if (vtbl->qic113) {
  290. TRACE(ft_t_noise, 
  291.       "Fake alien volume's size from " LL_X " to " LL_X, 
  292.       LL(GET8(entry, VTBL_DATA_SIZE)), LL(vtbl->size));
  293. } else {
  294. TRACE(ft_t_noise,
  295.       "Fake alien volume's size from %d to " LL_X, 
  296.       (int)GET4(entry, VTBL_DATA_SIZE), LL(vtbl->size));
  297. }
  298. TRACE_EXIT;
  299. }
  300. /* extract an zftape specific volume
  301.  */
  302. static void extract_zft_volume(__u8 *entry, zft_volinfo *vtbl)
  303. {
  304. TRACE_FUN(ft_t_flow);
  305. if (vtbl->qic113) {
  306. vtbl->size = GET8(entry, VTBL_DATA_SIZE);
  307. vtbl->use_compression = 
  308. (entry[VTBL_CMPR] & VTBL_CMPR_USED) != 0; 
  309. } else {
  310. vtbl->size = GET4(entry, VTBL_DATA_SIZE);
  311. if (entry[VTBL_K_CMPR] & VTBL_CMPR_UNREG) {
  312. vtbl->use_compression = 
  313. (entry[VTBL_K_CMPR] & VTBL_CMPR_USED) != 0;
  314. } else if (entry[VTBL_CMPR] & VTBL_CMPR_UNREG) {
  315. vtbl->use_compression = 
  316. (entry[VTBL_CMPR] & VTBL_CMPR_USED) != 0; 
  317. } else {
  318. TRACE(ft_t_warn, "Geeh! There is something wrong:n"
  319.       KERN_INFO "QIC compression (Rev = K): %xn"
  320.       KERN_INFO "QIC compression (Rev > K): %x",
  321.       entry[VTBL_K_CMPR], entry[VTBL_CMPR]);
  322. }
  323. }
  324. TRACE_EXIT;
  325. }
  326. /* extract the volume table from buffer. "buffer" must already contain
  327.  * the vtbl-segment 
  328.  */
  329. int zft_extract_volume_headers(__u8 *buffer)
  330. {                            
  331.         __u8 *entry;
  332. TRACE_FUN(ft_t_flow);
  333. zft_init_vtbl();
  334. entry = buffer;
  335. #ifdef ZFT_CMAP_HACK
  336. if ((strncmp(&entry[VTBL_EXT+EXT_ZFTAPE_SIG], ZFTAPE_SIG,
  337.      strlen(ZFTAPE_SIG)) == 0) &&
  338.     entry[VTBL_EXT+EXT_ZFTAPE_CMAP] != 0) {
  339. TRACE(ft_t_noise, "ignoring cmap volume");
  340. entry += VTBL_SIZE;
  341. #endif
  342. /* the end of the vtbl is indicated by an invalid signature 
  343.  */
  344. while (vtbl_signature_valid(&entry[VTBL_SIG]) &&
  345.        (entry - buffer) < FT_SEGMENT_SIZE) {
  346. zft_new_vtbl_entry();
  347. if (ft_format_code == fmt_big) {
  348. /* SCSI like vtbl, stores only the number of
  349.  * segments used 
  350.  */
  351. unsigned int num_segments= GET4(entry, VTBL_SCSI_SEGS);
  352. zft_last_vtbl->start_seg = zft_eom_vtbl->start_seg;
  353. zft_last_vtbl->end_seg = 
  354. zft_last_vtbl->start_seg + num_segments - 1;
  355. } else {
  356. /* `normal', QIC-80 like vtbl 
  357.  */
  358. zft_last_vtbl->start_seg = GET2(entry, VTBL_START);
  359. zft_last_vtbl->end_seg   = GET2(entry, VTBL_END);
  360. }
  361. zft_eom_vtbl->start_seg  = zft_last_vtbl->end_seg + 1;
  362. /* check if we created this volume and get the
  363.  * blk_sz 
  364.  */
  365. zft_last_vtbl->zft_volume = check_volume(entry, zft_last_vtbl);
  366. if (zft_last_vtbl->zft_volume == 0) {
  367. extract_alien_volume(entry, zft_last_vtbl);
  368. } else {
  369. extract_zft_volume(entry, zft_last_vtbl);
  370. }
  371. DUMP_VOLINFO(ft_t_noise, &entry[VTBL_DESC], zft_last_vtbl);
  372. entry +=VTBL_SIZE;
  373. }
  374. #if 0
  375. /*
  376.  *  undefine to test end of tape handling
  377.  */
  378. zft_new_vtbl_entry();
  379. zft_last_vtbl->start_seg = zft_eom_vtbl->start_seg;
  380. zft_last_vtbl->end_seg   = ft_last_data_segment - 10;
  381. zft_last_vtbl->blk_sz          = zft_blk_sz;
  382. zft_last_vtbl->zft_volume      = 1;
  383. zft_last_vtbl->qic113          = zft_qic113;
  384. zft_last_vtbl->size = (zft_calc_tape_pos(zft_last_vtbl->end_seg+1)
  385.        - zft_calc_tape_pos(zft_last_vtbl->start_seg));
  386. #endif
  387. TRACE_EXIT 0;
  388. }
  389. /* this functions translates the failed_sector_log, misused as
  390.  * EOF-marker list, into a virtual volume table. The table mustn't be
  391.  * written to tape, because this would occupy the first data segment,
  392.  * which should be the volume table, but is actually the first segment
  393.  * that is filled with data (when using standard ftape).  We assume,
  394.  * that we get a non-empty failed_sector_log.
  395.  */
  396. int zft_fake_volume_headers (eof_mark_union *eof_map, int num_failed_sectors)
  397. {
  398. unsigned int segment, sector;
  399. int have_eom = 0;
  400. int vol_no;
  401. TRACE_FUN(ft_t_flow);
  402. if ((num_failed_sectors >= 2) &&
  403.     (GET2(&eof_map[num_failed_sectors - 1].mark.segment, 0) 
  404.      == 
  405.      GET2(&eof_map[num_failed_sectors - 2].mark.segment, 0) + 1) &&
  406.     (GET2(&eof_map[num_failed_sectors - 1].mark.date, 0) == 1)) {
  407. /* this should be eom. We keep the remainder of the
  408.  * tape as another volume.
  409.  */
  410. have_eom = 1;
  411. }
  412. zft_init_vtbl();
  413. zft_eom_vtbl->start_seg = ft_first_data_segment;
  414. for(vol_no = 0; vol_no < num_failed_sectors - have_eom; vol_no ++) {
  415. zft_new_vtbl_entry();
  416. segment = GET2(&eof_map[vol_no].mark.segment, 0);
  417. sector  = GET2(&eof_map[vol_no].mark.date, 0);
  418. zft_last_vtbl->start_seg  = zft_eom_vtbl->start_seg;
  419. zft_last_vtbl->end_seg    = segment;
  420. zft_eom_vtbl->start_seg  = segment + 1;
  421. zft_last_vtbl->blk_sz     = 1;
  422. zft_last_vtbl->size       = 
  423. (zft_calc_tape_pos(zft_last_vtbl->end_seg)
  424.  - zft_calc_tape_pos(zft_last_vtbl->start_seg)
  425.  + (sector-1) * FT_SECTOR_SIZE);
  426. TRACE(ft_t_noise, 
  427.       "failed sector log: segment: %d, sector: %d", 
  428.       segment, sector);
  429. DUMP_VOLINFO(ft_t_noise, "Faked volume", zft_last_vtbl);
  430. }
  431. if (!have_eom) {
  432. zft_new_vtbl_entry();
  433. zft_last_vtbl->start_seg = zft_eom_vtbl->start_seg;
  434. zft_last_vtbl->end_seg   = ft_last_data_segment;
  435. zft_eom_vtbl->start_seg  = ft_last_data_segment + 1;
  436. zft_last_vtbl->size      = zft_capacity;
  437. zft_last_vtbl->size     -= zft_calc_tape_pos(zft_last_vtbl->start_seg);
  438. zft_last_vtbl->blk_sz    = 1;
  439. DUMP_VOLINFO(ft_t_noise, "Faked volume",zft_last_vtbl);
  440. }
  441. TRACE_EXIT 0;
  442. }
  443. /* update the internal volume table
  444.  *
  445.  * if before start of last volume: erase all following volumes if
  446.  * inside a volume: set end of volume to infinity
  447.  *
  448.  * this function is intended to be called every time _ftape_write() is
  449.  * called
  450.  *
  451.  * return: 0 if no new volume was created, 1 if a new volume was
  452.  * created
  453.  *
  454.  * NOTE: we don't need to check for zft_mode as ftape_write() does
  455.  * that already. This function gets never called without accessing
  456.  * zftape via the *qft* devices 
  457.  */
  458. int zft_open_volume(zft_position *pos, int blk_sz, int use_compression)
  459. TRACE_FUN(ft_t_flow);
  460. if (!zft_qic_mode) {
  461. TRACE_EXIT 0;
  462. }
  463. if (zft_tape_at_lbot(pos)) {
  464. zft_init_vtbl();
  465. if(zft_old_ftape) {
  466. /* clear old ftape's eof marks */
  467. zft_clear_ftape_file_marks();
  468. zft_old_ftape = 0; /* no longer old ftape */
  469. }
  470. zft_reset_position(pos);
  471. }
  472. if (pos->seg_pos != zft_last_vtbl->end_seg + 1) {
  473. TRACE_ABORT(-EIO, ft_t_bug, 
  474.       "BUG: seg_pos: %d, zft_last_vtbl->end_seg: %d", 
  475.       pos->seg_pos, zft_last_vtbl->end_seg);
  476. }                            
  477. TRACE(ft_t_noise, "create new volume");
  478. if (zft_eom_vtbl->count >= ZFT_MAX_VOLUMES) {
  479. TRACE_ABORT(-ENOSPC, ft_t_err,
  480.     "Error: maxmimal number of volumes exhausted "
  481.     "(maxmimum is %d)", ZFT_MAX_VOLUMES);
  482. }
  483. zft_new_vtbl_entry();
  484. pos->volume_pos = pos->seg_byte_pos = 0;
  485. zft_last_vtbl->start_seg       = pos->seg_pos;
  486. zft_last_vtbl->end_seg         = ft_last_data_segment; /* infinity */
  487. zft_last_vtbl->blk_sz          = blk_sz;
  488. zft_last_vtbl->size            = zft_capacity;
  489. zft_last_vtbl->zft_volume      = 1;
  490. zft_last_vtbl->use_compression = use_compression;
  491. zft_last_vtbl->qic113          = zft_qic113;
  492. zft_last_vtbl->new_volume      = 1;
  493. zft_last_vtbl->open            = 1;
  494. zft_volume_table_changed = 1;
  495. zft_eom_vtbl->start_seg  = ft_last_data_segment + 1;
  496. TRACE_EXIT 0;
  497. }
  498. /*  perform mtfsf, mtbsf, not allowed without zft_qic_mode
  499.  */
  500. int zft_skip_volumes(int count, zft_position *pos)
  501. const zft_volinfo *vtbl;
  502. TRACE_FUN(ft_t_flow);
  503. TRACE(ft_t_noise, "count: %d", count);
  504. vtbl= zft_find_volume(pos->seg_pos);
  505. while (count > 0 && vtbl != zft_eom_vtbl) {
  506. vtbl = list_entry(vtbl->node.next, zft_volinfo, node);
  507. count --;
  508. }
  509. while (count < 0 && vtbl != zft_first_vtbl) {
  510. vtbl = list_entry(vtbl->node.prev, zft_volinfo, node);
  511. count ++;
  512. }
  513. pos->seg_pos        = vtbl->start_seg;
  514. pos->seg_byte_pos   = 0;
  515. pos->volume_pos     = 0;
  516. pos->tape_pos       = zft_calc_tape_pos(pos->seg_pos);
  517. zft_just_before_eof = vtbl->size == 0;
  518. if (zft_cmpr_ops) {
  519. (*zft_cmpr_ops->reset)();
  520. }
  521. zft_deblock_segment = -1; /* no need to keep cache */
  522. TRACE(ft_t_noise, "repositioning to:n"
  523.       KERN_INFO "zft_seg_pos        : %dn"
  524.       KERN_INFO "zft_seg_byte_pos   : %dn"
  525.       KERN_INFO "zft_tape_pos       : " LL_X "n"
  526.       KERN_INFO "zft_volume_pos     : " LL_X "n"
  527.       KERN_INFO "file number        : %d",
  528.       pos->seg_pos, pos->seg_byte_pos, 
  529.       LL(pos->tape_pos), LL(pos->volume_pos), vtbl->count);
  530. zft_resid = count < 0 ? -count : count;
  531. TRACE_EXIT zft_resid ? -EINVAL : 0;
  532. }
  533. /* the following simply returns the raw data position of the EOM
  534.  * marker, MTIOCSIZE ioctl 
  535.  */
  536. __s64 zft_get_eom_pos(void)
  537. {
  538. if (zft_qic_mode) {
  539. return zft_calc_tape_pos(zft_eom_vtbl->start_seg);
  540. } else {
  541. /* there is only one volume in raw mode */
  542. return zft_capacity;
  543. }
  544. }
  545. /* skip to eom, used for MTEOM
  546.  */
  547. void zft_skip_to_eom(zft_position *pos)
  548. {
  549. TRACE_FUN(ft_t_flow);
  550. pos->seg_pos      = zft_eom_vtbl->start_seg;
  551. pos->seg_byte_pos = 
  552. pos->volume_pos     = 
  553. zft_just_before_eof = 0;
  554. pos->tape_pos = zft_calc_tape_pos(pos->seg_pos);
  555. TRACE(ft_t_noise, "ftape positioned to segment %d, data pos " LL_X, 
  556.       pos->seg_pos, LL(pos->tape_pos));
  557. TRACE_EXIT;
  558. }
  559. /*  write an EOF-marker by setting zft_last_vtbl->end_seg to seg_pos.
  560.  *  NOTE: this function assumes that zft_last_vtbl points to a valid
  561.  *  vtbl entry
  562.  *
  563.  *  NOTE: this routine always positions before the EOF marker
  564.  */
  565. int zft_close_volume(zft_position *pos)
  566. {
  567. TRACE_FUN(ft_t_any);
  568. if (zft_vtbl_empty || !zft_last_vtbl->open) { /* should not happen */
  569. TRACE(ft_t_noise, "There are no volumes to finish");
  570. TRACE_EXIT -EIO;
  571. }
  572. if (pos->seg_byte_pos == 0 && 
  573.     pos->seg_pos != zft_last_vtbl->start_seg) {
  574. pos->seg_pos --;
  575. pos->seg_byte_pos      = zft_get_seg_sz(pos->seg_pos);
  576. }
  577. zft_last_vtbl->end_seg   = pos->seg_pos;
  578. zft_last_vtbl->size      = pos->volume_pos;
  579. zft_volume_table_changed = 1;
  580. zft_just_before_eof      = 1;
  581. zft_eom_vtbl->start_seg  = zft_last_vtbl->end_seg + 1;
  582. zft_last_vtbl->open      = 0; /* closed */
  583. TRACE_EXIT 0;
  584. }
  585. /* write count file-marks at current position. 
  586.  *
  587.  *  The tape is positioned after the eof-marker, that is at byte 0 of
  588.  *  the segment following the eof-marker
  589.  *
  590.  *  this function is only allowed in zft_qic_mode
  591.  *
  592.  *  Only allowed when tape is at BOT or EOD.
  593.  */
  594. int zft_weof(unsigned int count, zft_position *pos)
  595. {
  596. TRACE_FUN(ft_t_flow);
  597. if (!count) { /* write zero EOF marks should be a real no-op */
  598. TRACE_EXIT 0;
  599. }
  600. zft_volume_table_changed = 1;
  601. if (zft_tape_at_lbot(pos)) {
  602. zft_init_vtbl();
  603. if(zft_old_ftape) {
  604. /* clear old ftape's eof marks */
  605. zft_clear_ftape_file_marks();
  606. zft_old_ftape = 0;    /* no longer old ftape */
  607. }
  608. }
  609. if (zft_last_vtbl->open) {
  610. zft_close_volume(pos);
  611. zft_move_past_eof(pos);
  612. count --;
  613. }
  614. /* now it's easy, just append eof-marks, that is empty
  615.  * volumes, to the end of the already recorded media.
  616.  */
  617. while (count > 0 && 
  618.        pos->seg_pos <= ft_last_data_segment && 
  619.        zft_eom_vtbl->count < ZFT_MAX_VOLUMES) {
  620. TRACE(ft_t_noise,
  621.       "Writing zero sized file at segment %d", pos->seg_pos);
  622. zft_new_vtbl_entry();
  623. zft_last_vtbl->start_seg       = pos->seg_pos;
  624. zft_last_vtbl->end_seg         = pos->seg_pos;
  625. zft_last_vtbl->size            = 0;
  626. zft_last_vtbl->blk_sz          = zft_blk_sz;
  627. zft_last_vtbl->zft_volume      = 1;
  628. zft_last_vtbl->use_compression = 0;
  629. pos->tape_pos += zft_get_seg_sz(pos->seg_pos);
  630. zft_eom_vtbl->start_seg = ++ pos->seg_pos;
  631. count --;
  632. if (count > 0) {
  633. /*  there are two possibilities: end of tape, or the
  634.  *  maximum number of files is exhausted.
  635.  */
  636. zft_resid = count;
  637. TRACE(ft_t_noise,"Number of marks NOT written: %d", zft_resid);
  638. if (zft_eom_vtbl->count == ZFT_MAX_VOLUMES) {
  639. TRACE_ABORT(-EINVAL, ft_t_warn,
  640.     "maximum allowed number of files "
  641.     "exhausted: %d", ZFT_MAX_VOLUMES);
  642. } else {
  643. TRACE_ABORT(-ENOSPC,
  644.     ft_t_noise, "reached end of tape");
  645. }
  646. }
  647. TRACE_EXIT 0;
  648. }
  649. const zft_volinfo *zft_find_volume(unsigned int seg_pos)
  650. {
  651. TRACE_FUN(ft_t_flow);
  652. TRACE(ft_t_any, "called with seg_pos %d",seg_pos);
  653. if (!zft_qic_mode) {
  654. if (seg_pos > ft_last_data_segment) {
  655. TRACE_EXIT &eot_vtbl;
  656. }
  657. tape_vtbl.blk_sz =  zft_blk_sz;
  658. TRACE_EXIT &tape_vtbl;
  659. }
  660. if (seg_pos < zft_first_vtbl->start_seg) {
  661. TRACE_EXIT (cur_vtbl = zft_first_vtbl);
  662. }
  663. while (seg_pos > cur_vtbl->end_seg) {
  664. cur_vtbl = list_entry(cur_vtbl->node.next, zft_volinfo, node);
  665. TRACE(ft_t_noise, "%d - %d", cur_vtbl->start_seg, cur_vtbl->end_seg);
  666. }
  667. while (seg_pos < cur_vtbl->start_seg) {
  668. cur_vtbl = list_entry(cur_vtbl->node.prev, zft_volinfo, node);
  669. TRACE(ft_t_noise, "%d - %d", cur_vtbl->start_seg, cur_vtbl->end_seg);
  670. }
  671. if (seg_pos > cur_vtbl->end_seg || seg_pos < cur_vtbl->start_seg) {
  672. TRACE(ft_t_bug, "This cannot happen");
  673. }
  674. DUMP_VOLINFO(ft_t_noise, "", cur_vtbl);
  675. TRACE_EXIT cur_vtbl;
  676. }
  677. /* this function really assumes that we are just before eof
  678.  */
  679. void zft_move_past_eof(zft_position *pos)
  680. TRACE_FUN(ft_t_flow);
  681. TRACE(ft_t_noise, "old seg. pos: %d", pos->seg_pos);
  682. pos->tape_pos += zft_get_seg_sz(pos->seg_pos++) - pos->seg_byte_pos;
  683. pos->seg_byte_pos = 0;
  684. pos->volume_pos   = 0;
  685. if (zft_cmpr_ops) {
  686. (*zft_cmpr_ops->reset)();
  687. }
  688. zft_just_before_eof =  0;
  689. zft_deblock_segment = -1; /* no need to cache it anymore */
  690. TRACE(ft_t_noise, "new seg. pos: %d", pos->seg_pos);
  691. TRACE_EXIT;
  692. }