Home | History | Annotate | Line # | Download | only in libsa
ustarfs.c revision 1.15.4.1
      1  1.15.4.1   thorpej /*	$NetBSD: ustarfs.c,v 1.15.4.1 2002/01/10 20:00:41 thorpej Exp $	*/
      2       1.1      ross 
      3       1.1      ross /* [Notice revision 2.2]
      4       1.1      ross  * Copyright (c) 1997, 1998 Avalon Computer Systems, Inc.
      5       1.1      ross  * All rights reserved.
      6       1.1      ross  *
      7       1.1      ross  * Author: Ross Harvey
      8       1.1      ross  *
      9       1.1      ross  * Redistribution and use in source and binary forms, with or without
     10       1.1      ross  * modification, are permitted provided that the following conditions
     11       1.1      ross  * are met:
     12       1.1      ross  * 1. Redistributions of source code must retain the above copyright and
     13       1.1      ross  *    author notice, this list of conditions, and the following disclaimer.
     14       1.1      ross  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.1      ross  *    notice, this list of conditions and the following disclaimer in the
     16       1.1      ross  *    documentation and/or other materials provided with the distribution.
     17       1.1      ross  * 3. Neither the name of Avalon Computer Systems, Inc. nor the names of
     18       1.1      ross  *    its contributors may be used to endorse or promote products derived
     19       1.1      ross  *    from this software without specific prior written permission.
     20       1.1      ross  * 4. This copyright will be assigned to The NetBSD Foundation on
     21       1.1      ross  *    1/1/2000 unless these terms (including possibly the assignment
     22       1.1      ross  *    date) are updated in writing by Avalon prior to the latest specified
     23       1.1      ross  *    assignment date.
     24       1.1      ross  *
     25       1.1      ross  * THIS SOFTWARE IS PROVIDED BY AVALON COMPUTER SYSTEMS, INC. AND CONTRIBUTORS
     26       1.1      ross  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27       1.1      ross  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28       1.1      ross  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL AVALON OR THE CONTRIBUTORS
     29       1.1      ross  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30       1.1      ross  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31       1.1      ross  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32       1.1      ross  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33       1.1      ross  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34       1.1      ross  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35       1.1      ross  * POSSIBILITY OF SUCH DAMAGE.
     36       1.1      ross  */
     37       1.1      ross 
     38       1.1      ross 
     39       1.1      ross /*
     40       1.1      ross  ******************************* USTAR FS *******************************
     41       1.1      ross  */
     42       1.1      ross 
     43       1.1      ross /*
     44       1.1      ross  * Implement an ROFS with an 8K boot area followed by ustar-format data.
     45       1.1      ross  * The point: minimal FS overhead, and it's easy (well, `possible') to
     46       1.1      ross  * split files over multiple volumes.
     47       1.1      ross  *
     48       1.1      ross  * XXX - TODO LIST
     49       1.1      ross  * --- - ---- ----
     50       1.1      ross  * XXX - tag volume numbers and verify that the correct volume is
     51       1.1      ross  *       inserted after volume swaps.
     52       1.1      ross  *
     53       1.1      ross  * XXX - stop hardwiring FS metadata for floppies...embed it in a file,
     54       1.1      ross  * 	 file name, or something. (Remember __SYMDEF? :-)
     55       1.1      ross  *
     56       1.8       cgd  * XXX Does not currently implement:
     57       1.8       cgd  * XXX
     58       1.8       cgd  * XXX LIBSA_NO_FS_CLOSE
     59       1.8       cgd  * XXX LIBSA_NO_FS_SEEK
     60       1.8       cgd  * XXX LIBSA_NO_FS_WRITE
     61       1.8       cgd  * XXX LIBSA_NO_FS_SYMLINK (does this even make sense?)
     62       1.8       cgd  * XXX LIBSA_FS_SINGLECOMPONENT
     63       1.1      ross  */
     64       1.1      ross 
     65      1.14   thorpej #ifdef _STANDALONE
     66      1.14   thorpej #include <lib/libkern/libkern.h>
     67      1.14   thorpej #else
     68      1.14   thorpej #include <string.h>
     69      1.14   thorpej #endif
     70       1.1      ross #include "stand.h"
     71       1.1      ross #include "ustarfs.h"
     72       1.1      ross 
     73       1.2      ross #define	BBSIZE	8192
     74       1.1      ross #define	USTAR_NAME_BLOCK 512
     75       1.1      ross 
     76       1.2      ross /*
     77       1.2      ross  * Virtual offset: relative to start of ustar archive
     78       1.2      ross  * Logical offset: volume-relative
     79       1.2      ross  * Physical offset: the usual meaning
     80       1.2      ross  */
     81       1.2      ross 
     82       1.2      ross /* virtual offset to volume number */
     83       1.2      ross 
     84       1.2      ross #define	vda2vn(_v,_volsize) ((_v) / (_volsize))
     85       1.2      ross 
     86       1.2      ross /* conversions between the three different levels of disk addresses */
     87       1.2      ross 
     88       1.2      ross #define	vda2lda(_v,_volsize) ((_v) % (_volsize))
     89       1.2      ross #define	lda2vda(_v,_volsize,_volnumber) ((_v) + (_volsize) * (_volnumber))
     90       1.2      ross 
     91       1.2      ross #define	lda2pda(_lda) ((_lda) + ustarfs_mode_offset)
     92       1.2      ross #define	pda2lda(_pda) ((_pda) - ustarfs_mode_offset)
     93       1.2      ross /*
     94       1.2      ross  * Change this to off_t if you want to support big volumes. If we only use
     95       1.2      ross  * ustarfs on floppies it can stay int for libsa code density.
     96       1.2      ross  *
     97       1.2      ross  * It needs to be signed.
     98       1.2      ross  */
     99       1.2      ross typedef	int ustoffs;
    100       1.2      ross 
    101       1.1      ross typedef struct ustar_struct {
    102       1.1      ross 	char	ust_name[100],
    103       1.1      ross 		ust_mode[8],
    104       1.1      ross 		ust_uid[8],
    105       1.1      ross 		ust_gid[8],
    106       1.1      ross 		ust_size[12],
    107       1.1      ross 		ust_misc[12 + 8 + 1 + 100],
    108       1.1      ross 		ust_magic[6];
    109       1.1      ross 	/* there is more, but we don't care */
    110       1.1      ross } ustar_t;
    111       1.1      ross 
    112       1.1      ross /*
    113       1.1      ross  * We buffer one even cylindar of data...it's actually only really one
    114       1.1      ross  * cyl on a 1.44M floppy, but on other devices it's fast enough with any
    115       1.1      ross  * kind of block buffering, so we optimize for the slowest device.
    116       1.1      ross  */
    117       1.1      ross 
    118       1.1      ross typedef struct ust_active_struct {
    119       1.1      ross 	ustar_t	uas_active;
    120       1.1      ross 	char	uas_1cyl[18 * 2 * 512];
    121       1.2      ross 	ustoffs	uas_volsize;		/* XXX this is hardwired now */
    122       1.2      ross 	ustoffs	uas_windowbase;		/* relative to volume 0 */
    123       1.2      ross 	ustoffs	uas_filestart;		/* relative to volume 0 */
    124       1.2      ross 	ustoffs	uas_fseek;		/* relative to file */
    125       1.2      ross 	ustoffs	uas_filesize;		/* relative to volume 0 */
    126       1.1      ross 	int	uas_init_window;	/* data present in window */
    127       1.1      ross 	int	uas_init_fs;		/* ust FS actually found */
    128       1.2      ross 	int	uas_volzerosig;		/* ID volume 0 by signature */
    129      1.11      ross 	int	uas_sigdone;		/* did sig already */
    130       1.2      ross 	int	uas_offset;		/* amount of cylinder below lba 0 */
    131       1.1      ross } ust_active_t;
    132       1.1      ross 
    133       1.3      ross static const char formatid[] = "USTARFS",
    134       1.3      ross 		  metaname[] = "USTAR.volsize.";
    135       1.1      ross 
    136       1.1      ross static int ustarfs_mode_offset = BBSIZE;
    137       1.1      ross 
    138       1.2      ross static int checksig __P((ust_active_t *));
    139       1.3      ross static int convert __P((const char *, int, int));
    140       1.2      ross static int get_volume __P((struct open_file *, int));
    141       1.3      ross static void setwindow(ust_active_t *, ustoffs, ustoffs);
    142      1.11      ross static int real_fs_cylinder_read __P((struct open_file *, ustoffs, int));
    143       1.3      ross static int ustarfs_cylinder_read __P((struct open_file *, ustoffs, int));
    144       1.1      ross static void ustarfs_sscanf __P((const char *, const char *, int *));
    145       1.2      ross static int read512block __P((struct open_file *, ustoffs, char block[512]));
    146      1.11      ross static int init_volzero_sig __P((struct open_file *));
    147       1.1      ross 
    148  1.15.4.1   thorpej #ifdef HAVE_CHANGEDISK_HOOK
    149  1.15.4.1   thorpej /*
    150  1.15.4.1   thorpej  * Called when the next volume is prompted.
    151  1.15.4.1   thorpej  * Machine dependent code can eject the medium etc.
    152  1.15.4.1   thorpej  * The new medium must be ready when this hook returns.
    153  1.15.4.1   thorpej  */
    154  1.15.4.1   thorpej void changedisk_hook __P((struct open_file *));
    155  1.15.4.1   thorpej #endif
    156  1.15.4.1   thorpej 
    157       1.1      ross static int
    158       1.1      ross convert(f, base, fw)
    159       1.1      ross 	const char *f;
    160       1.1      ross 	int base, fw;
    161       1.1      ross {
    162       1.1      ross 	int	i, c, result = 0;
    163       1.1      ross 
    164       1.1      ross 	while(fw > 0 && *f == ' ') {
    165       1.1      ross 		--fw;
    166       1.1      ross 		++f;
    167       1.1      ross 	}
    168       1.1      ross 	for(i = 0; i < fw; ++i) {
    169       1.1      ross 		c = f[i];
    170       1.1      ross 		if ('0' <= c && c < '0' + base) {
    171       1.1      ross 			c -= '0';
    172       1.1      ross 			result = result * base + c;
    173       1.1      ross 		} else	break;
    174       1.1      ross 	}
    175       1.1      ross 	return result;
    176       1.1      ross }
    177       1.1      ross 
    178       1.1      ross static void
    179       1.1      ross ustarfs_sscanf(s,f,xi)
    180       1.1      ross 	const char *s,*f;
    181       1.1      ross 	int *xi;
    182       1.1      ross {
    183       1.1      ross 	*xi = convert(s, 8, convert(f + 1, 10, 99));
    184       1.1      ross }
    185       1.1      ross 
    186       1.1      ross static int
    187       1.3      ross ustarfs_cylinder_read(f, seek2, forcelabel)
    188       1.1      ross 	struct open_file *f;
    189       1.2      ross 	ustoffs seek2;
    190       1.1      ross {
    191      1.11      ross 	int i, e;
    192      1.11      ross 
    193      1.11      ross 	for (i = 0; i < 3; ++i) {
    194      1.11      ross 		e = real_fs_cylinder_read(f, seek2, forcelabel);
    195      1.11      ross 		if (e == 0)
    196      1.11      ross 			return 0;
    197      1.11      ross 	}
    198      1.11      ross 	return e;
    199      1.11      ross }
    200      1.11      ross 
    201      1.11      ross static int
    202      1.11      ross real_fs_cylinder_read(f, seek2, forcelabel)
    203      1.11      ross 	struct open_file *f;
    204      1.11      ross 	ustoffs seek2;
    205      1.11      ross {
    206      1.10      ross 	int i;
    207       1.4       bad 	int e = 0;	/* XXX work around gcc warning */
    208       1.3      ross 	ustoffs	lda;
    209       1.3      ross 	char *xferbase;
    210       1.1      ross 	ust_active_t *ustf;
    211       1.3      ross 	size_t	xferrqst, xfercount;
    212       1.1      ross 
    213       1.1      ross 	ustf = f->f_fsdata;
    214       1.3      ross 	xferrqst = sizeof ustf->uas_1cyl;
    215       1.3      ross 	xferbase = ustf->uas_1cyl;
    216       1.3      ross 	lda = pda2lda(seek2);
    217       1.3      ross 	if (lda < 0) {
    218       1.3      ross 		lda = -lda;
    219       1.3      ross 		ustf->uas_offset = lda;
    220       1.3      ross 		/*
    221       1.3      ross 		 * don't read the label unless we have to. (Preserve
    222       1.3      ross 		 * sequential block access so tape boot works.)
    223       1.3      ross 		 */
    224       1.3      ross 		if (!forcelabel) {
    225       1.3      ross 			memset(xferbase, 0, lda);
    226       1.3      ross 			xferrqst -= lda;
    227       1.3      ross 			xferbase += lda;
    228       1.3      ross 			seek2    += lda;
    229       1.3      ross 		}
    230       1.3      ross 	} else
    231       1.3      ross 		ustf->uas_offset = 0;
    232       1.3      ross 	while(xferrqst > 0) {
    233       1.9  christos #if !defined(LIBSA_NO_TWIDDLE)
    234       1.9  christos 		twiddle();
    235       1.9  christos #endif
    236      1.10      ross 		for (i = 0; i < 3; ++i) {
    237      1.10      ross 			e = DEV_STRATEGY(f->f_dev)(f->f_devdata, F_READ,
    238      1.10      ross 			    seek2 / 512, xferrqst, xferbase, &xfercount);
    239      1.10      ross 			if (e == 0)
    240      1.10      ross 				break;
    241      1.10      ross 			printf("@");
    242      1.10      ross 		}
    243       1.3      ross 		if (e)
    244       1.3      ross 			break;
    245       1.3      ross 		if (xfercount != xferrqst)
    246       1.3      ross 			printf("Warning, unexpected short transfer %d/%d\n",
    247       1.3      ross 				(int)xfercount, (int)xferrqst);
    248       1.3      ross 		xferrqst -= xfercount;
    249       1.3      ross 		xferbase += xfercount;
    250      1.10      ross 		seek2    += xfercount;
    251       1.2      ross 	}
    252       1.1      ross 	return e;
    253       1.1      ross }
    254       1.1      ross 
    255       1.1      ross static int
    256       1.2      ross checksig(ustf)
    257       1.2      ross 	ust_active_t *ustf;
    258       1.2      ross {
    259       1.2      ross 	int	i, rcs;
    260       1.2      ross 
    261       1.2      ross 	for(i = rcs = 0; i < sizeof ustf->uas_1cyl; ++i)
    262       1.2      ross 		rcs += ustf->uas_1cyl[i];
    263       1.2      ross 	return rcs;
    264       1.2      ross }
    265       1.2      ross 
    266       1.2      ross static int
    267       1.3      ross get_volume(f, vn)
    268       1.1      ross 	struct open_file *f;
    269       1.2      ross 	int vn;
    270       1.2      ross {
    271       1.2      ross 	int	e, needvolume, havevolume;
    272       1.2      ross 	ust_active_t *ustf;
    273       1.2      ross 
    274       1.2      ross 	ustf = f->f_fsdata;
    275       1.2      ross 	havevolume = vda2vn(ustf->uas_windowbase, ustf->uas_volsize);
    276       1.2      ross 	needvolume = vn;
    277       1.2      ross 	while(havevolume != needvolume) {
    278       1.2      ross 		printf("\nPlease ");
    279       1.2      ross 		if (havevolume >= 0)
    280       1.2      ross 			printf("remove disk %d, ", havevolume + 1);
    281      1.15     lukem 		printf("insert disk %d, and press return...",
    282       1.2      ross 			needvolume + 1);
    283  1.15.4.1   thorpej #ifdef HAVE_CHANGEDISK_HOOK
    284  1.15.4.1   thorpej 		changedisk_hook(f);
    285  1.15.4.1   thorpej #else
    286       1.2      ross 		getchar();
    287  1.15.4.1   thorpej #endif
    288       1.2      ross 		printf("\n");
    289      1.11      ross 		e = ustarfs_cylinder_read(f, 0, needvolume != 0);
    290       1.2      ross 		if (e)
    291       1.2      ross 			return e;
    292       1.2      ross 		if(strncmp(formatid, ustf->uas_1cyl, strlen(formatid))) {
    293       1.2      ross 			/* no magic, might be OK if we want volume 0 */
    294       1.2      ross 			if (ustf->uas_volzerosig == checksig(ustf)) {
    295       1.2      ross 				havevolume = 0;
    296       1.2      ross 				continue;
    297       1.2      ross 			}
    298       1.2      ross 			printf("Disk is not from the volume set?!\n");
    299       1.2      ross 			havevolume = -2;
    300       1.2      ross 			continue;
    301       1.2      ross 		}
    302       1.2      ross 		ustarfs_sscanf(ustf->uas_1cyl + strlen(formatid), "%9o",
    303       1.2      ross 			&havevolume);
    304       1.2      ross 		--havevolume;
    305       1.2      ross 	}
    306       1.2      ross 	return 0;
    307       1.2      ross }
    308       1.2      ross 
    309       1.3      ross static void
    310       1.3      ross setwindow(ust_active_t *ustf, ustoffs pda, ustoffs vda)
    311       1.3      ross {
    312       1.3      ross 	ustf->uas_windowbase = lda2vda(pda2lda(pda), ustf->uas_volsize,
    313       1.3      ross 					vda2vn(vda, ustf->uas_volsize))
    314       1.3      ross 			     + ustf->uas_offset;
    315       1.3      ross 	ustf->uas_init_window = 1;
    316       1.3      ross }
    317       1.3      ross 
    318       1.2      ross static int
    319       1.2      ross read512block(f, vda, block)
    320       1.2      ross 	struct open_file *f;
    321       1.2      ross 	ustoffs vda;
    322       1.1      ross 	char block[512];
    323       1.1      ross {
    324       1.3      ross 	ustoffs pda;
    325       1.1      ross 	ssize_t	e;
    326       1.2      ross 	int	dienow;
    327       1.1      ross 	ust_active_t *ustf;
    328       1.1      ross 
    329       1.2      ross 	dienow = 0;
    330       1.1      ross 	ustf = f->f_fsdata;
    331       1.2      ross 
    332       1.2      ross 	/*
    333       1.2      ross 	 * if (vda in window)
    334       1.2      ross 	 * 	copy out and return data
    335       1.2      ross 	 * if (vda is on some other disk)
    336       1.2      ross 	 * 	do disk swap
    337       1.2      ross 	 * get physical disk address
    338       1.2      ross 	 * round down to cylinder boundary
    339       1.2      ross 	 * read cylindar
    340       1.2      ross 	 * set window (in vda space) and try again
    341       1.2      ross 	 * [ there is an implicit assumption that windowbase always identifies
    342       1.2      ross 	 *    the current volume, even if initwindow == 0. This way, a
    343       1.2      ross 	 *    windowbase of 0 causes the initial volume to be disk 0 ]
    344       1.2      ross 	 */
    345       1.1      ross tryagain:
    346       1.1      ross 	if(ustf->uas_init_window
    347       1.2      ross 	&& ustf->uas_windowbase <= vda && vda <
    348       1.2      ross 	   ustf->uas_windowbase + sizeof ustf->uas_1cyl - ustf->uas_offset) {
    349       1.2      ross 		memcpy(block, ustf->uas_1cyl
    350       1.2      ross 				+ (vda - ustf->uas_windowbase)
    351       1.2      ross 				+ ustf->uas_offset, 512);
    352       1.1      ross 		return 0;
    353       1.1      ross 	}
    354       1.1      ross 	if (dienow++)
    355       1.1      ross 		panic("ustarfs read512block");
    356       1.2      ross 	ustf->uas_init_window = 0;
    357       1.2      ross 	e = get_volume(f, vda2vn(vda, ustf->uas_volsize));
    358       1.2      ross 	if (e)
    359       1.2      ross 		return e;
    360       1.2      ross 	pda = lda2pda(vda2lda(vda, ustf->uas_volsize));
    361       1.2      ross 	pda-= pda % sizeof ustf->uas_1cyl;
    362       1.3      ross 	e = ustarfs_cylinder_read(f, pda, 0);
    363       1.1      ross 	if (e)
    364       1.1      ross 		return e;
    365       1.3      ross 	setwindow(ustf, pda, vda);
    366       1.1      ross 	goto tryagain;
    367       1.1      ross }
    368       1.1      ross 
    369      1.11      ross static int
    370      1.11      ross init_volzero_sig(f)
    371      1.11      ross 	struct open_file *f;
    372      1.11      ross {
    373      1.11      ross 	int e;
    374      1.11      ross 	ust_active_t *ustf;
    375      1.11      ross 
    376      1.11      ross 	ustf = f->f_fsdata;
    377      1.11      ross 	if (!ustf->uas_sigdone) {
    378      1.11      ross 		e = ustarfs_cylinder_read(f, 0, 0);
    379      1.11      ross 		if (e)
    380      1.11      ross 			return e;
    381      1.11      ross 		ustf->uas_volzerosig = checksig(ustf);
    382      1.11      ross 		setwindow(ustf, 0, 0);
    383      1.11      ross 	}
    384      1.11      ross 	return 0;
    385      1.11      ross }
    386      1.11      ross 
    387       1.1      ross int
    388       1.1      ross ustarfs_open(path, f)
    389       1.1      ross 	char *path;
    390       1.1      ross 	struct open_file *f;
    391       1.1      ross 
    392       1.1      ross {
    393       1.1      ross 	ust_active_t *ustf;
    394       1.2      ross 	ustoffs offset;
    395       1.1      ross 	char	block[512];
    396       1.1      ross 	int	filesize;
    397       1.1      ross 	int	e, e2;
    398       1.3      ross 	int	newvolblocks;
    399       1.1      ross 
    400       1.1      ross 	if (*path == '/')
    401       1.1      ross 		++path;
    402       1.1      ross 	f->f_fsdata = ustf = alloc(sizeof *ustf);
    403       1.1      ross 	memset(ustf, 0, sizeof *ustf);
    404       1.2      ross 	offset = 0;
    405       1.3      ross 	/* default to 2880 sector floppy */
    406       1.3      ross 	ustf->uas_volsize = 80 * 2 * 18 * 512 - lda2pda(0);
    407       1.1      ross 	ustf->uas_fseek = 0;
    408      1.11      ross 	e = init_volzero_sig(f);
    409      1.11      ross 	if (e)
    410      1.11      ross 		return e;
    411      1.12      ross 	e2 = EINVAL;
    412       1.1      ross 	for(;;) {
    413       1.1      ross 		ustf->uas_filestart = offset;
    414      1.12      ross 		e = read512block(f, offset, block);
    415      1.12      ross 		if (e)
    416      1.12      ross 			break;
    417      1.12      ross 		memcpy(&ustf->uas_active, block, sizeof ustf->uas_active);
    418      1.12      ross 		if(strncmp(ustf->uas_active.ust_magic, "ustar", 5)) {
    419       1.1      ross 			e = e2;
    420       1.1      ross 			break;
    421       1.1      ross 		}
    422      1.12      ross 		e2 = ENOENT;	/* it must be an actual ustarfs */
    423       1.1      ross 		ustf->uas_init_fs = 1;
    424       1.3      ross 		/* if volume metadata is found, use it */
    425       1.3      ross 		if(strncmp(ustf->uas_active.ust_name, metaname,
    426       1.3      ross 		    strlen(metaname)) == 0) {
    427       1.3      ross 			ustarfs_sscanf(ustf->uas_active.ust_name
    428       1.3      ross 				+ strlen(metaname), "%99o", &newvolblocks);
    429       1.3      ross 			ustf->uas_volsize = newvolblocks * 512
    430       1.3      ross 					  - lda2pda(0);
    431       1.3      ross 		}
    432       1.1      ross 		ustarfs_sscanf(ustf->uas_active.ust_size,"%12o",&filesize);
    433       1.1      ross 		if(strncmp(ustf->uas_active.ust_name, path,
    434       1.1      ross 		    sizeof ustf->uas_active.ust_name) == 0) {
    435       1.1      ross 			ustf->uas_filesize = filesize;
    436       1.1      ross 			break;
    437       1.1      ross 		}
    438       1.1      ross 		offset += USTAR_NAME_BLOCK + filesize;
    439       1.1      ross 		filesize %= 512;
    440       1.1      ross 		if (filesize)
    441       1.1      ross 			offset += 512 - filesize;
    442       1.1      ross 	}
    443       1.1      ross 	if (e) {
    444       1.1      ross 		free(ustf, sizeof *ustf);
    445       1.1      ross 		f->f_fsdata = 0;
    446       1.1      ross 	}
    447       1.1      ross 	return e;
    448       1.1      ross }
    449       1.1      ross 
    450       1.8       cgd #ifndef LIBSA_NO_FS_WRITE
    451       1.1      ross int
    452       1.1      ross ustarfs_write(f, start, size, resid)
    453       1.1      ross 	struct open_file *f;
    454       1.1      ross 	void *start;
    455       1.1      ross 	size_t size;
    456       1.1      ross 	size_t *resid;
    457       1.1      ross {
    458       1.1      ross 	return (EROFS);
    459       1.1      ross }
    460       1.8       cgd #endif /* !LIBSA_NO_FS_WRITE */
    461       1.1      ross 
    462       1.8       cgd #ifndef LIBSA_NO_FS_SEEK
    463       1.1      ross off_t
    464       1.1      ross ustarfs_seek(f, offs, whence)
    465       1.1      ross 	struct open_file *f;
    466       1.1      ross 	off_t offs;
    467       1.1      ross 	int whence;
    468       1.1      ross {
    469       1.1      ross 	ust_active_t *ustf;
    470       1.1      ross 
    471       1.1      ross 	ustf = f->f_fsdata;
    472       1.1      ross 	switch (whence) {
    473       1.1      ross 	    case SEEK_SET:
    474       1.1      ross 		ustf->uas_fseek = offs;
    475       1.1      ross 		break;
    476       1.1      ross 	    case SEEK_CUR:
    477       1.1      ross 		ustf->uas_fseek += offs;
    478       1.1      ross 		break;
    479       1.1      ross 	    case SEEK_END:
    480       1.1      ross 		ustf->uas_fseek = ustf->uas_filesize - offs;
    481       1.1      ross 		break;
    482       1.1      ross 	    default:
    483       1.1      ross 		return -1;
    484       1.1      ross 	}
    485       1.1      ross 	return ustf->uas_fseek;
    486       1.1      ross }
    487       1.8       cgd #endif /* !LIBSA_NO_FS_CLOSE */
    488       1.1      ross 
    489       1.1      ross int
    490       1.1      ross ustarfs_read(f, start, size, resid)
    491       1.1      ross 	struct open_file *f;
    492       1.1      ross 	void *start;
    493       1.1      ross 	size_t size;
    494       1.1      ross 	size_t *resid;
    495       1.1      ross {
    496       1.1      ross 	ust_active_t *ustf;
    497       1.1      ross 	int	e;
    498       1.1      ross 	char	*space512;
    499       1.1      ross 	int	blkoffs,
    500       1.1      ross 		readoffs,
    501       1.1      ross 		bufferoffset;
    502       1.1      ross 	size_t	seg;
    503       1.1      ross 	int	infile,
    504       1.1      ross 		inbuffer;
    505       1.1      ross 
    506       1.1      ross 	e = 0;
    507       1.1      ross 	space512 = alloc(512);
    508       1.1      ross 	ustf = f->f_fsdata;
    509       1.1      ross 	while(size != 0) {
    510       1.1      ross 		if (ustf->uas_fseek >= ustf->uas_filesize)
    511       1.1      ross 			break;
    512       1.1      ross 		bufferoffset = ustf->uas_fseek % 512;
    513       1.1      ross 		blkoffs  = ustf->uas_fseek - bufferoffset;
    514       1.1      ross 		readoffs = ustf->uas_filestart + 512 + blkoffs;
    515       1.1      ross 		e = read512block(f, readoffs, space512);
    516       1.1      ross 		if (e)
    517       1.1      ross 			break;
    518       1.1      ross 		seg = size;
    519       1.1      ross 		inbuffer = 512 - bufferoffset;
    520       1.1      ross 		if (inbuffer < seg)
    521       1.1      ross 			seg = inbuffer;
    522       1.1      ross 		infile = ustf->uas_filesize - ustf->uas_fseek;
    523       1.1      ross 		if (infile < seg)
    524       1.1      ross 			seg = infile;
    525       1.1      ross 		memcpy(start, space512 + bufferoffset, seg);
    526       1.1      ross 		ustf->uas_fseek += seg;
    527       1.7       dbj 		start = (caddr_t)start + seg;
    528       1.1      ross 		size  -= seg;
    529       1.1      ross 	}
    530       1.1      ross 	if (resid)
    531       1.1      ross 		*resid = size;
    532       1.1      ross 	free(space512, 512);
    533       1.1      ross 	return e;
    534       1.1      ross }
    535       1.1      ross 
    536       1.1      ross int
    537       1.1      ross ustarfs_stat(f, sb)
    538       1.1      ross 	struct open_file *f;
    539       1.1      ross 	struct stat *sb;
    540       1.1      ross {
    541       1.1      ross 	int	mode, uid, gid;
    542       1.1      ross 	ust_active_t *ustf;
    543       1.1      ross 
    544       1.1      ross 	if (f == NULL)
    545       1.1      ross 		return EINVAL;
    546       1.1      ross 	ustf = f->f_fsdata;
    547       1.1      ross 	memset(sb, 0, sizeof *sb);
    548       1.1      ross 	ustarfs_sscanf(ustf->uas_active.ust_mode, "%8o", &mode);
    549       1.1      ross 	ustarfs_sscanf(ustf->uas_active.ust_uid, "%8o", &uid);
    550       1.1      ross 	ustarfs_sscanf(ustf->uas_active.ust_gid, "%8o", &gid);
    551       1.1      ross 	sb->st_mode = mode;
    552       1.1      ross 	sb->st_uid  = uid;
    553       1.1      ross 	sb->st_gid  = gid;
    554       1.1      ross 	sb->st_size = ustf->uas_filesize;
    555       1.1      ross 	return 0;
    556       1.1      ross }
    557       1.1      ross 
    558       1.8       cgd #ifndef LIBSA_NO_FS_CLOSE
    559       1.1      ross int
    560       1.1      ross ustarfs_close(f)
    561       1.1      ross 	struct open_file *f;
    562       1.1      ross {
    563       1.1      ross 	if (f == NULL || f->f_fsdata == NULL)
    564       1.1      ross 		return EINVAL;
    565       1.1      ross 	free(f->f_fsdata, sizeof(ust_active_t));
    566       1.1      ross 	f->f_fsdata = 0;
    567       1.1      ross 	return 0;
    568       1.1      ross }
    569       1.8       cgd #endif /* !LIBSA_NO_FS_CLOSE */
    570