GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: bin/pax/buf_subs.c Lines: 153 321 47.7 %
Date: 2016-12-06 Branches: 62 210 29.5 %

Line Branch Exec Source
1
/*	$OpenBSD: buf_subs.c,v 1.27 2015/03/19 05:14:24 guenther Exp $	*/
2
/*	$NetBSD: buf_subs.c,v 1.5 1995/03/21 09:07:08 cgd Exp $	*/
3
4
/*-
5
 * Copyright (c) 1992 Keith Muller.
6
 * Copyright (c) 1992, 1993
7
 *	The Regents of the University of California.  All rights reserved.
8
 *
9
 * This code is derived from software contributed to Berkeley by
10
 * Keith Muller of the University of California, San Diego.
11
 *
12
 * Redistribution and use in source and binary forms, with or without
13
 * modification, are permitted provided that the following conditions
14
 * are met:
15
 * 1. Redistributions of source code must retain the above copyright
16
 *    notice, this list of conditions and the following disclaimer.
17
 * 2. Redistributions in binary form must reproduce the above copyright
18
 *    notice, this list of conditions and the following disclaimer in the
19
 *    documentation and/or other materials provided with the distribution.
20
 * 3. Neither the name of the University nor the names of its contributors
21
 *    may be used to endorse or promote products derived from this software
22
 *    without specific prior written permission.
23
 *
24
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34
 * SUCH DAMAGE.
35
 */
36
37
#include <sys/types.h>
38
#include <sys/time.h>
39
#include <sys/stat.h>
40
#include <stdio.h>
41
#include <errno.h>
42
#include <unistd.h>
43
#include <stdlib.h>
44
#include <string.h>
45
#include "pax.h"
46
#include "extern.h"
47
48
/*
49
 * routines which implement archive and file buffering
50
 */
51
52
#define MINFBSZ		512		/* default block size for hole detect */
53
#define MAXFLT		10		/* default media read error limit */
54
55
/*
56
 * Need to change bufmem to dynamic allocation when the upper
57
 * limit on blocking size is removed (though that will violate pax spec)
58
 * MAXBLK define and tests will also need to be updated.
59
 */
60
static char bufmem[MAXBLK+BLKMULT];	/* i/o buffer + pushback id space */
61
static char *buf;			/* normal start of i/o buffer */
62
static char *bufend;			/* end or last char in i/o buffer */
63
static char *bufpt;			/* read/write point in i/o buffer */
64
int blksz = MAXBLK;			/* block input/output size in bytes */
65
int wrblksz;				/* user spec output size in bytes */
66
int maxflt = MAXFLT;			/* MAX consecutive media errors */
67
int rdblksz;				/* first read blksize (tapes only) */
68
off_t wrlimit;				/* # of bytes written per archive vol */
69
off_t wrcnt;				/* # of bytes written on current vol */
70
off_t rdcnt;				/* # of bytes read on current vol */
71
72
/*
73
 * wr_start()
74
 *	set up the buffering system to operate in a write mode
75
 * Return:
76
 *	0 if ok, -1 if the user specified write block size violates pax spec
77
 */
78
79
int
80
wr_start(void)
81
6
{
82
6
	buf = &(bufmem[BLKMULT]);
83
	/*
84
	 * Check to make sure the write block size meets pax specs. If the user
85
	 * does not specify a blocksize, we use the format default blocksize.
86
	 * We must be picky on writes, so we do not allow the user to create an
87
	 * archive that might be hard to read elsewhere. If all ok, we then
88
	 * open the first archive volume
89
	 */
90
6
	if (!wrblksz)
91
6
		wrblksz = frmt->bsz;
92
6
	if (wrblksz > MAXBLK) {
93
		paxwarn(1, "Write block size of %d too large, maximium is: %d",
94
			wrblksz, MAXBLK);
95
		return(-1);
96
	}
97
6
	if (wrblksz % BLKMULT) {
98
		paxwarn(1, "Write block size of %d is not a %d byte multiple",
99
		    wrblksz, BLKMULT);
100
		return(-1);
101
	}
102
6
	if (wrblksz > MAXBLK_POSIX) {
103
		paxwarn(0, "Write block size of %d larger than POSIX max %d, archive may not be portable",
104
			wrblksz, MAXBLK_POSIX);
105
		return(-1);
106
	}
107
108
	/*
109
	 * we only allow wrblksz to be used with all archive operations
110
	 */
111
6
	blksz = rdblksz = wrblksz;
112

6
	if ((ar_open(arcname) < 0) && (ar_next() < 0))
113
		return(-1);
114
6
	wrcnt = 0;
115
6
	bufend = buf + wrblksz;
116
6
	bufpt = buf;
117
6
	return(0);
118
}
119
120
/*
121
 * rd_start()
122
 *	set up buffering system to read an archive
123
 * Return:
124
 *	0 if ok, -1 otherwise
125
 */
126
127
int
128
rd_start(void)
129
26
{
130
	/*
131
	 * leave space for the header pushback (see get_arc()). If we are
132
	 * going to append and user specified a write block size, check it
133
	 * right away
134
	 */
135
26
	buf = &(bufmem[BLKMULT]);
136

26
	if ((act == APPND) && wrblksz) {
137
		if (wrblksz > MAXBLK) {
138
			paxwarn(1,"Write block size %d too large, maximium is: %d",
139
				wrblksz, MAXBLK);
140
			return(-1);
141
		}
142
		if (wrblksz % BLKMULT) {
143
			paxwarn(1, "Write block size %d is not a %d byte multiple",
144
			wrblksz, BLKMULT);
145
			return(-1);
146
		}
147
	}
148
149
	/*
150
	 * open the archive
151
	 */
152

26
	if ((ar_open(arcname) < 0) && (ar_next() < 0))
153
		return(-1);
154
26
	bufend = buf + rdblksz;
155
26
	bufpt = bufend;
156
26
	rdcnt = 0;
157
26
	return(0);
158
}
159
160
/*
161
 * cp_start()
162
 *	set up buffer system for copying within the file system
163
 */
164
165
void
166
cp_start(void)
167
{
168
	buf = &(bufmem[BLKMULT]);
169
	rdblksz = blksz = MAXBLK;
170
}
171
172
/*
173
 * appnd_start()
174
 *	Set up the buffering system to append new members to an archive that
175
 *	was just read. The last block(s) of an archive may contain a format
176
 *	specific trailer. To append a new member, this trailer has to be
177
 *	removed from the archive. The first byte of the trailer is replaced by
178
 *	the start of the header of the first file added to the archive. The
179
 *	format specific end read function tells us how many bytes to move
180
 *	backwards in the archive to be positioned BEFORE the trailer. Two
181
 *	different position have to be adjusted, the O.S. file offset (e.g. the
182
 *	position of the tape head) and the write point within the data we have
183
 *	stored in the read (soon to become write) buffer. We may have to move
184
 *	back several records (the number depends on the size of the archive
185
 *	record and the size of the format trailer) to read up the record where
186
 *	the first byte of the trailer is recorded. Trailers may span (and
187
 *	overlap) record boundaries.
188
 *	We first calculate which record has the first byte of the trailer. We
189
 *	move the OS file offset back to the start of this record and read it
190
 *	up. We set the buffer write pointer to be at this byte (the byte where
191
 *	the trailer starts). We then move the OS file pointer back to the
192
 *	start of this record so a flush of this buffer will replace the record
193
 *	in the archive.
194
 *	A major problem is rewriting this last record. For archives stored
195
 *	on disk files, this is trivial. However, many devices are really picky
196
 *	about the conditions under which they will allow a write to occur.
197
 *	Often devices restrict the conditions where writes can be made,
198
 *	so it may not be feasible to append archives stored on all types of
199
 *	devices.
200
 * Return:
201
 *	0 for success, -1 for failure
202
 */
203
204
int
205
appnd_start(off_t skcnt)
206
6
{
207
	int res;
208
	off_t cnt;
209
210
6
	if (exit_val != 0) {
211
		paxwarn(0, "Cannot append to an archive that may have flaws.");
212
		return(-1);
213
	}
214
	/*
215
	 * if the user did not specify a write blocksize, inherit the size used
216
	 * in the last archive volume read. (If a is set we still use rdblksz
217
	 * until next volume, cannot shift sizes within a single volume).
218
	 */
219
6
	if (!wrblksz)
220
6
		wrblksz = blksz = rdblksz;
221
	else
222
		blksz = rdblksz;
223
224
	/*
225
	 * make sure that this volume allows appends
226
	 */
227
6
	if (ar_app_ok() < 0)
228
		return(-1);
229
230
	/*
231
	 * Calculate bytes to move back and move in front of record where we
232
	 * need to start writing from. Remember we have to add in any padding
233
	 * that might be in the buffer after the trailer in the last block. We
234
	 * travel skcnt + padding ROUNDED UP to blksize.
235
	 */
236
6
	skcnt += bufend - bufpt;
237
6
	if ((cnt = (skcnt/blksz) * blksz) < skcnt)
238
6
		cnt += blksz;
239
6
	if (ar_rev((off_t)cnt) < 0)
240
		goto out;
241
242
	/*
243
	 * We may have gone too far if there is valid data in the block we are
244
	 * now in front of, read up the block and position the pointer after
245
	 * the valid data.
246
	 */
247
6
	if ((cnt -= skcnt) > 0) {
248
		/*
249
		 * watch out for stupid tape drives. ar_rev() will set rdblksz
250
		 * to be real physical blocksize so we must loop until we get
251
		 * the old rdblksz (now in blksz). If ar_rev() fouls up the
252
		 * determination of the physical block size, we will fail.
253
		 */
254
6
		bufpt = buf;
255
6
		bufend = buf + blksz;
256
18
		while (bufpt < bufend) {
257
6
			if ((res = ar_read(bufpt, rdblksz)) <= 0)
258
				goto out;
259
6
			bufpt += res;
260
		}
261
6
		if (ar_rev((off_t)(bufpt - buf)) < 0)
262
			goto out;
263
6
		bufpt = buf + cnt;
264
6
		bufend = buf + blksz;
265
	} else {
266
		/*
267
		 * buffer is empty
268
		 */
269
		bufend = buf + blksz;
270
		bufpt = buf;
271
	}
272
6
	rdblksz = blksz;
273
6
	rdcnt -= skcnt;
274
6
	wrcnt = 0;
275
276
	/*
277
	 * At this point we are ready to write. If the device requires special
278
	 * handling to write at a point were previously recorded data resides,
279
	 * that is handled in ar_set_wr(). From now on we operate under normal
280
	 * ARCHIVE mode (write) conditions
281
	 */
282
6
	if (ar_set_wr() < 0)
283
		return(-1);
284
6
	act = ARCHIVE;
285
6
	return(0);
286
287
    out:
288
	paxwarn(1, "Unable to rewrite archive trailer, cannot append.");
289
	return(-1);
290
}
291
292
/*
293
 * rd_sync()
294
 *	A read error occurred on this archive volume. Resync the buffer and
295
 *	try to reset the device (if possible) so we can continue to read. Keep
296
 *	trying to do this until we get a valid read, or we reach the limit on
297
 *	consecutive read faults (at which point we give up). The user can
298
 *	adjust the read error limit through a command line option.
299
 * Returns:
300
 *	0 on success, and -1 on failure
301
 */
302
303
int
304
rd_sync(void)
305
{
306
	int errcnt = 0;
307
	int res;
308
309
	/*
310
	 * if the user says bail out on first fault, we are out of here...
311
	 */
312
	if (maxflt == 0)
313
		return(-1);
314
	if (act == APPND) {
315
		paxwarn(1, "Unable to append when there are archive read errors.");
316
		return(-1);
317
	}
318
319
	/*
320
	 * poke at device and try to get past media error
321
	 */
322
	if (ar_rdsync() < 0) {
323
		if (ar_next() < 0)
324
			return(-1);
325
		else
326
			rdcnt = 0;
327
	}
328
329
	for (;;) {
330
		if ((res = ar_read(buf, blksz)) > 0) {
331
			/*
332
			 * All right! got some data, fill that buffer
333
			 */
334
			bufpt = buf;
335
			bufend = buf + res;
336
			rdcnt += res;
337
			return(0);
338
		}
339
340
		/*
341
		 * Oh well, yet another failed read...
342
		 * if error limit reached, ditch. o.w. poke device to move past
343
		 * bad media and try again. if media is badly damaged, we ask
344
		 * the poor (and upset user at this point) for the next archive
345
		 * volume. remember the goal on reads is to get the most we
346
		 * can extract out of the archive.
347
		 */
348
		if ((maxflt > 0) && (++errcnt > maxflt))
349
			paxwarn(0,"Archive read error limit (%d) reached",maxflt);
350
		else if (ar_rdsync() == 0)
351
			continue;
352
		if (ar_next() < 0)
353
			break;
354
		rdcnt = 0;
355
		errcnt = 0;
356
	}
357
	return(-1);
358
}
359
360
/*
361
 * pback()
362
 *	push the data used during the archive id phase back into the I/O
363
 *	buffer. This is required as we cannot be sure that the header does NOT
364
 *	overlap a block boundary (as in the case we are trying to recover a
365
 *	flawed archived). This was not designed to be used for any other
366
 *	purpose. (What software engineering, HA!)
367
 *	WARNING: do not even THINK of pback greater than BLKMULT, unless the
368
 *	pback space is increased.
369
 */
370
371
void
372
pback(char *pt, int cnt)
373
26
{
374
26
	bufpt -= cnt;
375
26
	memcpy(bufpt, pt, cnt);
376
26
}
377
378
/*
379
 * rd_skip()
380
 *	skip forward in the archive during a archive read. Used to get quickly
381
 *	past file data and padding for files the user did NOT select.
382
 * Return:
383
 *	0 if ok, -1 failure, and 1 when EOF on the archive volume was detected.
384
 */
385
386
int
387
rd_skip(off_t skcnt)
388
120
{
389
	off_t res;
390
	off_t cnt;
391
120
	off_t skipped = 0;
392
393
	/*
394
	 * consume what data we have in the buffer. If we have to move forward
395
	 * whole records, we call the low level skip function to see if we can
396
	 * move within the archive without doing the expensive reads on data we
397
	 * do not want.
398
	 */
399
120
	if (skcnt == 0)
400
98
		return(0);
401
22
	res = MINIMUM((bufend - bufpt), skcnt);
402
22
	bufpt += res;
403
22
	skcnt -= res;
404
405
	/*
406
	 * if skcnt is now 0, then no additional i/o is needed
407
	 */
408
22
	if (skcnt == 0)
409
22
		return(0);
410
411
	/*
412
	 * We have to read more, calculate complete and partial record reads
413
	 * based on rdblksz. we skip over "cnt" complete records
414
	 */
415
	res = skcnt%rdblksz;
416
	cnt = (skcnt/rdblksz) * rdblksz;
417
418
	/*
419
	 * if the skip fails, we will have to resync. ar_fow will tell us
420
	 * how much it can skip over. We will have to read the rest.
421
	 */
422
	if (ar_fow(cnt, &skipped) < 0)
423
		return(-1);
424
	res += cnt - skipped;
425
	rdcnt += skipped;
426
427
	/*
428
	 * what is left we have to read (which may be the whole thing if
429
	 * ar_fow() told us the device can only read to skip records);
430
	 */
431
	while (res > 0L) {
432
		cnt = bufend - bufpt;
433
		/*
434
		 * if the read fails, we will have to resync
435
		 */
436
		if ((cnt <= 0) && ((cnt = buf_fill()) < 0))
437
			return(-1);
438
		if (cnt == 0)
439
			return(1);
440
		cnt = MINIMUM(cnt, res);
441
		bufpt += cnt;
442
		res -= cnt;
443
	}
444
	return(0);
445
}
446
447
/*
448
 * wr_fin()
449
 *	flush out any data (and pad if required) the last block. We always pad
450
 *	with zero (even though we do not have to). Padding with 0 makes it a
451
 *	lot easier to recover if the archive is damaged. zero padding SHOULD
452
 *	BE a requirement....
453
 */
454
455
void
456
wr_fin(void)
457
10
{
458
10
	if (bufpt > buf) {
459
10
		memset(bufpt, 0, bufend - bufpt);
460
10
		bufpt = bufend;
461
10
		(void)buf_flush(blksz);
462
	}
463
10
}
464
465
/*
466
 * wr_rdbuf()
467
 *	fill the write buffer from data passed to it in a buffer (usually used
468
 *	by format specific write routines to pass a file header). On failure we
469
 *	punt. We do not allow the user to continue to write flawed archives.
470
 *	We assume these headers are not very large (the memory copy we use is
471
 *	a bit expensive).
472
 * Return:
473
 *	0 if buffer was filled ok, -1 o.w. (buffer flush failure)
474
 */
475
476
int
477
wr_rdbuf(char *out, int outcnt)
478
18
{
479
	int cnt;
480
481
	/*
482
	 * while there is data to copy copy into the write buffer. when the
483
	 * write buffer fills, flush it to the archive and continue
484
	 */
485
54
	while (outcnt > 0) {
486
18
		cnt = bufend - bufpt;
487

18
		if ((cnt <= 0) && ((cnt = buf_flush(blksz)) < 0))
488
			return(-1);
489
		/*
490
		 * only move what we have space for
491
		 */
492
18
		cnt = MINIMUM(cnt, outcnt);
493
18
		memcpy(bufpt, out, cnt);
494
18
		bufpt += cnt;
495
18
		out += cnt;
496
18
		outcnt -= cnt;
497
	}
498
18
	return(0);
499
}
500
501
/*
502
 * rd_wrbuf()
503
 *	copy from the read buffer into a supplied buffer a specified number of
504
 *	bytes. If the read buffer is empty fill it and continue to copy.
505
 *	usually used to obtain a file header for processing by a format
506
 *	specific read routine.
507
 * Return
508
 *	number of bytes copied to the buffer, 0 indicates EOF on archive volume,
509
 *	-1 is a read error
510
 */
511
512
int
513
rd_wrbuf(char *in, int cpcnt)
514
196
{
515
	int res;
516
	int cnt;
517
196
	int incnt = cpcnt;
518
519
	/*
520
	 * loop until we fill the buffer with the requested number of bytes
521
	 */
522
586
	while (incnt > 0) {
523
196
		cnt = bufend - bufpt;
524

196
		if ((cnt <= 0) && ((cnt = buf_fill()) <= 0)) {
525
			/*
526
			 * read error, return what we got (or the error if
527
			 * no data was copied). The caller must know that an
528
			 * error occurred and has the best knowledge what to
529
			 * do with it
530
			 */
531
2
			if ((res = cpcnt - incnt) > 0)
532
				return(res);
533
2
			return(cnt);
534
		}
535
536
		/*
537
		 * calculate how much data to copy based on whats left and
538
		 * state of buffer
539
		 */
540
194
		cnt = MINIMUM(cnt, incnt);
541
194
		memcpy(in, bufpt, cnt);
542
194
		bufpt += cnt;
543
194
		incnt -= cnt;
544
194
		in += cnt;
545
	}
546
194
	return(cpcnt);
547
}
548
549
/*
550
 * wr_skip()
551
 *	skip forward during a write. In other words add padding to the file.
552
 *	we add zero filled padding as it makes flawed archives much easier to
553
 *	recover from. the caller tells us how many bytes of padding to add
554
 *	This routine was not designed to add HUGE amount of padding, just small
555
 *	amounts (a few 512 byte blocks at most)
556
 * Return:
557
 *	0 if ok, -1 if there was a buf_flush failure
558
 */
559
560
int
561
wr_skip(off_t skcnt)
562
32
{
563
	int cnt;
564
565
	/*
566
	 * loop while there is more padding to add
567
	 */
568
96
	while (skcnt > 0L) {
569
32
		cnt = bufend - bufpt;
570

32
		if ((cnt <= 0) && ((cnt = buf_flush(blksz)) < 0))
571
			return(-1);
572
32
		cnt = MINIMUM(cnt, skcnt);
573
32
		memset(bufpt, 0, cnt);
574
32
		bufpt += cnt;
575
32
		skcnt -= cnt;
576
	}
577
32
	return(0);
578
}
579
580
/*
581
 * wr_rdfile()
582
 *	fill write buffer with the contents of a file. We are passed an	open
583
 *	file descriptor to the file an the archive structure that describes the
584
 *	file we are storing. The variable "left" is modified to contain the
585
 *	number of bytes of the file we were NOT able to write to the archive.
586
 *	it is important that we always write EXACTLY the number of bytes that
587
 *	the format specific write routine told us to. The file can also get
588
 *	bigger, so reading to the end of file would create an improper archive,
589
 *	we just detect this case and warn the user. We never create a bad
590
 *	archive if we can avoid it. Of course trying to archive files that are
591
 *	active is asking for trouble. It we fail, we pass back how much we
592
 *	could NOT copy and let the caller deal with it.
593
 * Return:
594
 *	0 ok, -1 if archive write failure. a short read of the file returns a
595
 *	0, but "left" is set to be greater than zero.
596
 */
597
598
int
599
wr_rdfile(ARCHD *arcn, int ifd, off_t *left)
600
10
{
601
	int cnt;
602
10
	int res = 0;
603
10
	off_t size = arcn->sb.st_size;
604
	struct stat sb;
605
606
	/*
607
	 * while there are more bytes to write
608
	 */
609
24
	while (size > 0L) {
610
4
		cnt = bufend - bufpt;
611

4
		if ((cnt <= 0) && ((cnt = buf_flush(blksz)) < 0)) {
612
			*left = size;
613
			return(-1);
614
		}
615
4
		cnt = MINIMUM(cnt, size);
616
4
		if ((res = read(ifd, bufpt, cnt)) <= 0)
617
			break;
618
4
		size -= res;
619
4
		bufpt += res;
620
	}
621
622
	/*
623
	 * better check the file did not change during this operation
624
	 * or the file read failed.
625
	 */
626
10
	if (res < 0)
627
		syswarn(1, errno, "Read fault on %s", arcn->org_name);
628
10
	else if (size != 0L)
629
		paxwarn(1, "File changed size during read %s", arcn->org_name);
630
10
	else if (fstat(ifd, &sb) < 0)
631
		syswarn(1, errno, "Failed stat on %s", arcn->org_name);
632

10
	else if (timespeccmp(&arcn->sb.st_mtim, &sb.st_mtim, !=))
633
		paxwarn(1, "File %s was modified during copy to archive",
634
			arcn->org_name);
635
10
	*left = size;
636
10
	return(0);
637
}
638
639
/*
640
 * rd_wrfile()
641
 *	extract the contents of a file from the archive. If we are unable to
642
 *	extract the entire file (due to failure to write the file) we return
643
 *	the numbers of bytes we did NOT process. This way the caller knows how
644
 *	many bytes to skip past to find the next archive header. If the failure
645
 *	was due to an archive read, we will catch that when we try to skip. If
646
 *	the format supplies a file data crc value, we calculate the actual crc
647
 *	so that it can be compared to the value stored in the header
648
 * NOTE:
649
 *	We call a special function to write the file. This function attempts to
650
 *	restore file holes (blocks of zeros) into the file. When files are
651
 *	sparse this saves space, and is a LOT faster. For non sparse files
652
 *	the performance hit is small. As of this writing, no archive supports
653
 *	information on where the file holes are.
654
 * Return:
655
 *	0 ok, -1 if archive read failure. if we cannot write the entire file,
656
 *	we return a 0 but "left" is set to be the amount unwritten
657
 */
658
659
int
660
rd_wrfile(ARCHD *arcn, int ofd, off_t *left)
661
6
{
662
6
	int cnt = 0;
663
6
	off_t size = arcn->sb.st_size;
664
6
	int res = 0;
665
6
	char *fnm = arcn->name;
666
6
	int isem = 1;
667
	int rem;
668
6
	int sz = MINFBSZ;
669
	struct stat sb;
670
6
	u_int32_t crc = 0;
671
672
	/*
673
	 * pass the blocksize of the file being written to the write routine,
674
	 * if the size is zero, use the default MINFBSZ
675
	 */
676
6
	if (ofd < 0)
677
		sz = PAXPATHLEN + 1;		/* GNU tar long link/file */
678
6
	else if (fstat(ofd, &sb) == 0) {
679
6
		if (sb.st_blksize > 0)
680
6
			sz = (int)sb.st_blksize;
681
	} else
682
		syswarn(0,errno,"Unable to obtain block size for file %s",fnm);
683
6
	rem = sz;
684
6
	*left = 0L;
685
686
	/*
687
	 * Copy the archive to the file the number of bytes specified. We have
688
	 * to assume that we want to recover file holes as none of the archive
689
	 * formats can record the location of file holes.
690
	 */
691
12
	while (size > 0L) {
692
		cnt = bufend - bufpt;
693
		/*
694
		 * if we get a read error, we do not want to skip, as we may
695
		 * miss a header, so we do not set left, but if we get a write
696
		 * error, we do want to skip over the unprocessed data.
697
		 */
698
		if ((cnt <= 0) && ((cnt = buf_fill()) <= 0))
699
			break;
700
		cnt = MINIMUM(cnt, size);
701
		if ((res = file_write(ofd,bufpt,cnt,&rem,&isem,sz,fnm)) <= 0) {
702
			*left = size;
703
			break;
704
		}
705
706
		if (docrc) {
707
			/*
708
			 * update the actual crc value
709
			 */
710
			cnt = res;
711
			while (--cnt >= 0)
712
				crc += *bufpt++ & 0xff;
713
		} else
714
			bufpt += res;
715
		size -= res;
716
	}
717
718
	/*
719
	 * if the last block has a file hole (all zero), we must make sure this
720
	 * gets updated in the file. We force the last block of zeros to be
721
	 * written. just closing with the file offset moved forward may not put
722
	 * a hole at the end of the file.
723
	 */
724

6
	if (isem && (arcn->sb.st_size > 0L))
725
		file_flush(ofd, fnm, isem);
726
727
	/*
728
	 * if we failed from archive read, we do not want to skip
729
	 */
730

6
	if ((size > 0L) && (*left == 0L))
731
		return(-1);
732
733
	/*
734
	 * some formats record a crc on file data. If so, then we compare the
735
	 * calculated crc to the crc stored in the archive
736
	 */
737

6
	if (docrc && (size == 0L) && (arcn->crc != crc))
738
		paxwarn(1,"Actual crc does not match expected crc %s",arcn->name);
739
6
	return(0);
740
}
741
742
/*
743
 * cp_file()
744
 *	copy the contents of one file to another. used during -rw phase of pax
745
 *	just as in rd_wrfile() we use a special write function to write the
746
 *	destination file so we can properly copy files with holes.
747
 */
748
749
void
750
cp_file(ARCHD *arcn, int fd1, int fd2)
751
{
752
	int cnt;
753
	off_t cpcnt = 0L;
754
	int res = 0;
755
	char *fnm = arcn->name;
756
	int no_hole = 0;
757
	int isem = 1;
758
	int rem;
759
	int sz = MINFBSZ;
760
	struct stat sb;
761
762
	/*
763
	 * check for holes in the source file. If none, we will use regular
764
	 * write instead of file write.
765
	 */
766
	 if (((off_t)(arcn->sb.st_blocks * BLKMULT)) >= arcn->sb.st_size)
767
		++no_hole;
768
769
	/*
770
	 * pass the blocksize of the file being written to the write routine,
771
	 * if the size is zero, use the default MINFBSZ
772
	 */
773
	if (fstat(fd2, &sb) == 0) {
774
		if (sb.st_blksize > 0)
775
			sz = sb.st_blksize;
776
	} else
777
		syswarn(0,errno,"Unable to obtain block size for file %s",fnm);
778
	rem = sz;
779
780
	/*
781
	 * read the source file and copy to destination file until EOF
782
	 */
783
	for (;;) {
784
		if ((cnt = read(fd1, buf, blksz)) <= 0)
785
			break;
786
		if (no_hole)
787
			res = write(fd2, buf, cnt);
788
		else
789
			res = file_write(fd2, buf, cnt, &rem, &isem, sz, fnm);
790
		if (res != cnt)
791
			break;
792
		cpcnt += cnt;
793
	}
794
795
	/*
796
	 * check to make sure the copy is valid.
797
	 */
798
	if (res < 0)
799
		syswarn(1, errno, "Failed write during copy of %s to %s",
800
			arcn->org_name, arcn->name);
801
	else if (cpcnt != arcn->sb.st_size)
802
		paxwarn(1, "File %s changed size during copy to %s",
803
			arcn->org_name, arcn->name);
804
	else if (fstat(fd1, &sb) < 0)
805
		syswarn(1, errno, "Failed stat of %s", arcn->org_name);
806
	else if (timespeccmp(&arcn->sb.st_mtim, &sb.st_mtim, !=))
807
		paxwarn(1, "File %s was modified during copy to %s",
808
			arcn->org_name, arcn->name);
809
810
	/*
811
	 * if the last block has a file hole (all zero), we must make sure this
812
	 * gets updated in the file. We force the last block of zeros to be
813
	 * written. just closing with the file offset moved forward may not put
814
	 * a hole at the end of the file.
815
	 */
816
	if (!no_hole && isem && (arcn->sb.st_size > 0L))
817
		file_flush(fd2, fnm, isem);
818
}
819
820
/*
821
 * buf_fill()
822
 *	fill the read buffer with the next record (or what we can get) from
823
 *	the archive volume.
824
 * Return:
825
 *	Number of bytes of data in the read buffer, -1 for read error, and
826
 *	0 when finished (user specified termination in ar_next()).
827
 */
828
829
int
830
buf_fill(void)
831
30
{
832
	int cnt;
833
	static int fini = 0;
834
835
30
	if (fini)
836
		return(0);
837
838
	for (;;) {
839
		/*
840
		 * try to fill the buffer. on error the next archive volume is
841
		 * opened and we try again.
842
		 */
843
30
		if ((cnt = ar_read(buf, blksz)) > 0) {
844
28
			bufpt = buf;
845
28
			bufend = buf + cnt;
846
28
			rdcnt += cnt;
847
28
			return(cnt);
848
		}
849
850
		/*
851
		 * errors require resync, EOF goes to next archive
852
		 */
853
2
		if (cnt < 0)
854
			break;
855
2
		if (ar_next() < 0) {
856
2
			fini = 1;
857
2
			return(0);
858
		}
859
		rdcnt = 0;
860
	}
861
	exit_val = 1;
862
	return(-1);
863
}
864
865
/*
866
 * buf_flush()
867
 *	force the write buffer to the archive. We are passed the number of
868
 *	bytes in the buffer at the point of the flush. When we change archives
869
 *	the record size might change. (either larger or smaller).
870
 * Return:
871
 *	0 if all is ok, -1 when a write error occurs.
872
 */
873
874
int
875
buf_flush(int bufcnt)
876
10
{
877
	int cnt;
878
10
	int push = 0;
879
10
	int totcnt = 0;
880
881
	/*
882
	 * if we have reached the user specified byte count for each archive
883
	 * volume, prompt for the next volume. (The non-standard -R flag).
884
	 * NOTE: If the wrlimit is smaller than wrcnt, we will always write
885
	 * at least one record. We always round limit UP to next blocksize.
886
	 */
887

10
	if ((wrlimit > 0) && (wrcnt > wrlimit)) {
888
		paxwarn(0, "User specified archive volume byte limit reached.");
889
		if (ar_next() < 0) {
890
			wrcnt = 0;
891
			exit_val = 1;
892
			return(-1);
893
		}
894
		wrcnt = 0;
895
896
		/*
897
		 * The new archive volume might have changed the size of the
898
		 * write blocksize. if so we figure out if we need to write
899
		 * (one or more times), or if there is now free space left in
900
		 * the buffer (it is no longer full). bufcnt has the number of
901
		 * bytes in the buffer, (the blocksize, at the point we were
902
		 * CALLED). Push has the amount of "extra" data in the buffer
903
		 * if the block size has shrunk from a volume change.
904
		 */
905
		bufend = buf + blksz;
906
		if (blksz > bufcnt)
907
			return(0);
908
		if (blksz < bufcnt)
909
			push = bufcnt - blksz;
910
	}
911
912
	/*
913
	 * We have enough data to write at least one archive block
914
	 */
915
	for (;;) {
916
		/*
917
		 * write a block and check if it all went out ok
918
		 */
919
10
		cnt = ar_write(buf, blksz);
920
10
		if (cnt == blksz) {
921
			/*
922
			 * the write went ok
923
			 */
924
10
			wrcnt += cnt;
925
10
			totcnt += cnt;
926
10
			if (push > 0) {
927
				/* we have extra data to push to the front.
928
				 * check for more than 1 block of push, and if
929
				 * so we loop back to write again
930
				 */
931
				memcpy(buf, bufend, push);
932
				bufpt = buf + push;
933
				if (push >= blksz) {
934
					push -= blksz;
935
					continue;
936
				}
937
			} else
938
10
				bufpt = buf;
939
10
			return(totcnt);
940
		} else if (cnt > 0) {
941
			/*
942
			 * Oh drat we got a partial write!
943
			 * if format does not care about alignment let it go,
944
			 * we warned the user in ar_write().... but this means
945
			 * the last record on this volume violates pax spec....
946
			 */
947
			totcnt += cnt;
948
			wrcnt += cnt;
949
			bufpt = buf + cnt;
950
			cnt = bufcnt - cnt;
951
			memcpy(buf, bufpt, cnt);
952
			bufpt = buf + cnt;
953
			if (!frmt->blkalgn || ((cnt % frmt->blkalgn) == 0))
954
				return(totcnt);
955
			break;
956
		}
957
958
		/*
959
		 * All done, go to next archive
960
		 */
961
		wrcnt = 0;
962
		if (ar_next() < 0)
963
			break;
964
965
		/*
966
		 * The new archive volume might also have changed the block
967
		 * size. if so, figure out if we have too much or too little
968
		 * data for using the new block size
969
		 */
970
		bufend = buf + blksz;
971
		if (blksz > bufcnt)
972
			return(0);
973
		if (blksz < bufcnt)
974
			push = bufcnt - blksz;
975
	}
976
977
	/*
978
	 * write failed, stop pax. we must not create a bad archive!
979
	 */
980
	exit_val = 1;
981
	return(-1);
982
}