cpio.c revision 1.1 1 1.1 jtc /*-
2 1.1 jtc * Copyright (c) 1992 Keith Muller.
3 1.1 jtc * Copyright (c) 1992, 1993
4 1.1 jtc * The Regents of the University of California. All rights reserved.
5 1.1 jtc *
6 1.1 jtc * This code is derived from software contributed to Berkeley by
7 1.1 jtc * Keith Muller of the University of California, San Diego.
8 1.1 jtc *
9 1.1 jtc * Redistribution and use in source and binary forms, with or without
10 1.1 jtc * modification, are permitted provided that the following conditions
11 1.1 jtc * are met:
12 1.1 jtc * 1. Redistributions of source code must retain the above copyright
13 1.1 jtc * notice, this list of conditions and the following disclaimer.
14 1.1 jtc * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 jtc * notice, this list of conditions and the following disclaimer in the
16 1.1 jtc * documentation and/or other materials provided with the distribution.
17 1.1 jtc * 3. All advertising materials mentioning features or use of this software
18 1.1 jtc * must display the following acknowledgement:
19 1.1 jtc * This product includes software developed by the University of
20 1.1 jtc * California, Berkeley and its contributors.
21 1.1 jtc * 4. Neither the name of the University nor the names of its contributors
22 1.1 jtc * may be used to endorse or promote products derived from this software
23 1.1 jtc * without specific prior written permission.
24 1.1 jtc *
25 1.1 jtc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 1.1 jtc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 1.1 jtc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 1.1 jtc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 1.1 jtc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 1.1 jtc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 1.1 jtc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 1.1 jtc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 1.1 jtc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 1.1 jtc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 1.1 jtc * SUCH DAMAGE.
36 1.1 jtc */
37 1.1 jtc
38 1.1 jtc #ifndef lint
39 1.1 jtc static char sccsid[] = "@(#)cpio.c 8.1 (Berkeley) 5/31/93";
40 1.1 jtc #endif /* not lint */
41 1.1 jtc
42 1.1 jtc #include <sys/types.h>
43 1.1 jtc #include <sys/time.h>
44 1.1 jtc #include <sys/stat.h>
45 1.1 jtc #include <sys/param.h>
46 1.1 jtc #include <string.h>
47 1.1 jtc #include <ctype.h>
48 1.1 jtc #include <stdio.h>
49 1.1 jtc #include <unistd.h>
50 1.1 jtc #include <stdlib.h>
51 1.1 jtc #include "pax.h"
52 1.1 jtc #include "cpio.h"
53 1.1 jtc #include "extern.h"
54 1.1 jtc
55 1.1 jtc static int rd_nm __P((register ARCHD *, int));
56 1.1 jtc static int rd_ln_nm __P((register ARCHD *));
57 1.1 jtc static int com_rd __P((register ARCHD *));
58 1.1 jtc
59 1.1 jtc /*
60 1.1 jtc * Routines which support the different cpio versions
61 1.1 jtc */
62 1.1 jtc
63 1.1 jtc static int swp_head; /* binary cpio header byte swap */
64 1.1 jtc
65 1.1 jtc /*
66 1.1 jtc * Routines common to all versions of cpio
67 1.1 jtc */
68 1.1 jtc
69 1.1 jtc /*
70 1.1 jtc * cpio_strd()
71 1.1 jtc * Fire up the hard link detection code
72 1.1 jtc * Return:
73 1.1 jtc * 0 if ok -1 otherwise (the return values of lnk_start())
74 1.1 jtc */
75 1.1 jtc
76 1.1 jtc #if __STDC__
77 1.1 jtc int
78 1.1 jtc cpio_strd(void)
79 1.1 jtc #else
80 1.1 jtc int
81 1.1 jtc cpio_strd()
82 1.1 jtc #endif
83 1.1 jtc {
84 1.1 jtc return(lnk_start());
85 1.1 jtc }
86 1.1 jtc
87 1.1 jtc /*
88 1.1 jtc * cpio_trail()
89 1.1 jtc * Called to determine if a header block is a valid trailer. We are
90 1.1 jtc * passed the block, the in_sync flag (which tells us we are in resync
91 1.1 jtc * mode; looking for a valid header), and cnt (which starts at zero)
92 1.1 jtc * which is used to count the number of empty blocks we have seen so far.
93 1.1 jtc * Return:
94 1.1 jtc * 0 if a valid trailer, -1 if not a valid trailer,
95 1.1 jtc */
96 1.1 jtc
97 1.1 jtc #if __STDC__
98 1.1 jtc int
99 1.1 jtc cpio_trail(register ARCHD *arcn)
100 1.1 jtc #else
101 1.1 jtc int
102 1.1 jtc cpio_trail(arcn)
103 1.1 jtc register ARCHD *arcn;
104 1.1 jtc #endif
105 1.1 jtc {
106 1.1 jtc /*
107 1.1 jtc * look for trailer id in file we are about to process
108 1.1 jtc */
109 1.1 jtc if ((strcmp(arcn->name, TRAILER) == 0) && (arcn->sb.st_size == 0))
110 1.1 jtc return(0);
111 1.1 jtc return(-1);
112 1.1 jtc }
113 1.1 jtc
114 1.1 jtc /*
115 1.1 jtc * com_rd()
116 1.1 jtc * operations common to all cpio read functions.
117 1.1 jtc * Return:
118 1.1 jtc * 0
119 1.1 jtc */
120 1.1 jtc
121 1.1 jtc #if __STDC__
122 1.1 jtc static int
123 1.1 jtc com_rd(register ARCHD *arcn)
124 1.1 jtc #else
125 1.1 jtc static int
126 1.1 jtc com_rd(arcn)
127 1.1 jtc register ARCHD *arcn;
128 1.1 jtc #endif
129 1.1 jtc {
130 1.1 jtc arcn->skip = 0;
131 1.1 jtc arcn->pat = NULL;
132 1.1 jtc arcn->org_name = arcn->name;
133 1.1 jtc switch(arcn->sb.st_mode & C_IFMT) {
134 1.1 jtc case C_ISFIFO:
135 1.1 jtc arcn->type = PAX_FIF;
136 1.1 jtc break;
137 1.1 jtc case C_ISDIR:
138 1.1 jtc arcn->type = PAX_DIR;
139 1.1 jtc break;
140 1.1 jtc case C_ISBLK:
141 1.1 jtc arcn->type = PAX_BLK;
142 1.1 jtc break;
143 1.1 jtc case C_ISCHR:
144 1.1 jtc arcn->type = PAX_CHR;
145 1.1 jtc break;
146 1.1 jtc case C_ISLNK:
147 1.1 jtc arcn->type = PAX_SLK;
148 1.1 jtc break;
149 1.1 jtc case C_ISOCK:
150 1.1 jtc arcn->type = PAX_SCK;
151 1.1 jtc break;
152 1.1 jtc case C_ISCTG:
153 1.1 jtc case C_ISREG:
154 1.1 jtc default:
155 1.1 jtc /*
156 1.1 jtc * we have file data, set up skip (pad is set in the format
157 1.1 jtc * specific sections)
158 1.1 jtc */
159 1.1 jtc arcn->sb.st_mode = (arcn->sb.st_mode & 0xfff) | C_ISREG;
160 1.1 jtc arcn->type = PAX_REG;
161 1.1 jtc arcn->skip = arcn->sb.st_size;
162 1.1 jtc break;
163 1.1 jtc }
164 1.1 jtc if (chk_lnk(arcn) < 0)
165 1.1 jtc return(-1);
166 1.1 jtc return(0);
167 1.1 jtc }
168 1.1 jtc
169 1.1 jtc /*
170 1.1 jtc * cpio_end_wr()
171 1.1 jtc * write the special file with the name trailer in the proper format
172 1.1 jtc * Return:
173 1.1 jtc * result of the write of the trailer from the cpio specific write func
174 1.1 jtc */
175 1.1 jtc
176 1.1 jtc #if __STDC__
177 1.1 jtc int
178 1.1 jtc cpio_endwr(void)
179 1.1 jtc #else
180 1.1 jtc int
181 1.1 jtc cpio_endwr()
182 1.1 jtc #endif
183 1.1 jtc {
184 1.1 jtc ARCHD last;
185 1.1 jtc
186 1.1 jtc /*
187 1.1 jtc * create a trailer request and call the proper format write function
188 1.1 jtc */
189 1.1 jtc bzero((char *)&last, sizeof(last));
190 1.1 jtc last.nlen = sizeof(TRAILER) - 1;
191 1.1 jtc last.type = PAX_REG;
192 1.1 jtc last.sb.st_nlink = 1;
193 1.1 jtc (void)strcpy(last.name, TRAILER);
194 1.1 jtc return((*frmt->wr)(&last));
195 1.1 jtc }
196 1.1 jtc
197 1.1 jtc /*
198 1.1 jtc * rd_nam()
199 1.1 jtc * read in the file name which follows the cpio header
200 1.1 jtc * Return:
201 1.1 jtc * 0 if ok, -1 otherwise
202 1.1 jtc */
203 1.1 jtc
204 1.1 jtc #if __STDC__
205 1.1 jtc static int
206 1.1 jtc rd_nm(register ARCHD *arcn, int nsz)
207 1.1 jtc #else
208 1.1 jtc static int
209 1.1 jtc rd_nm(arcn, nsz)
210 1.1 jtc register ARCHD *arcn;
211 1.1 jtc int nsz;
212 1.1 jtc #endif
213 1.1 jtc {
214 1.1 jtc /*
215 1.1 jtc * do not even try bogus values
216 1.1 jtc */
217 1.1 jtc if ((nsz == 0) || (nsz > sizeof(arcn->name))) {
218 1.1 jtc warn(1, "Cpio file name length %d is out of range", nsz);
219 1.1 jtc return(-1);
220 1.1 jtc }
221 1.1 jtc
222 1.1 jtc /*
223 1.1 jtc * read the name and make sure it is not empty and is \0 terminated
224 1.1 jtc */
225 1.1 jtc if ((rd_wrbuf(arcn->name,nsz) != nsz) || (arcn->name[nsz-1] != '\0') ||
226 1.1 jtc (arcn->name[0] == '\0')) {
227 1.1 jtc warn(1, "Cpio file name in header is corrupted");
228 1.1 jtc return(-1);
229 1.1 jtc }
230 1.1 jtc return(0);
231 1.1 jtc }
232 1.1 jtc
233 1.1 jtc /*
234 1.1 jtc * rd_ln_nm()
235 1.1 jtc * read in the link name for a file with links. The link name is stored
236 1.1 jtc * like file data (and is NOT \0 terminated!)
237 1.1 jtc * Return:
238 1.1 jtc * 0 if ok, -1 otherwise
239 1.1 jtc */
240 1.1 jtc
241 1.1 jtc #if __STDC__
242 1.1 jtc static int
243 1.1 jtc rd_ln_nm(register ARCHD *arcn)
244 1.1 jtc #else
245 1.1 jtc static int
246 1.1 jtc rd_ln_nm(arcn)
247 1.1 jtc register ARCHD *arcn;
248 1.1 jtc #endif
249 1.1 jtc {
250 1.1 jtc /*
251 1.1 jtc * check the length specified for bogus values
252 1.1 jtc */
253 1.1 jtc if ((arcn->sb.st_size == 0) ||
254 1.1 jtc (arcn->sb.st_size >= sizeof(arcn->ln_name))) {
255 1.1 jtc # ifdef NET2_STAT
256 1.1 jtc warn(1, "Cpio link name length is invalid: %lu",
257 1.1 jtc arcn->sb.st_size);
258 1.1 jtc # else
259 1.1 jtc warn(1, "Cpio link name length is invalid: %qu",
260 1.1 jtc arcn->sb.st_size);
261 1.1 jtc # endif
262 1.1 jtc return(-1);
263 1.1 jtc }
264 1.1 jtc
265 1.1 jtc /*
266 1.1 jtc * read in the link name and \0 terminate it
267 1.1 jtc */
268 1.1 jtc if (rd_wrbuf(arcn->ln_name, (int)arcn->sb.st_size) !=
269 1.1 jtc (int)arcn->sb.st_size) {
270 1.1 jtc warn(1, "Cpio link name read error");
271 1.1 jtc return(-1);
272 1.1 jtc }
273 1.1 jtc arcn->ln_nlen = arcn->sb.st_size;
274 1.1 jtc arcn->ln_name[arcn->ln_nlen] = '\0';
275 1.1 jtc
276 1.1 jtc /*
277 1.1 jtc * watch out for those empty link names
278 1.1 jtc */
279 1.1 jtc if (arcn->ln_name[0] == '\0') {
280 1.1 jtc warn(1, "Cpio link name is corrupt");
281 1.1 jtc return(-1);
282 1.1 jtc }
283 1.1 jtc return(0);
284 1.1 jtc }
285 1.1 jtc
286 1.1 jtc /*
287 1.1 jtc * Routines common to the extended byte oriented cpio format
288 1.1 jtc */
289 1.1 jtc
290 1.1 jtc /*
291 1.1 jtc * cpio_id()
292 1.1 jtc * determine if a block given to us is a valid extended byte oriented
293 1.1 jtc * cpio header
294 1.1 jtc * Return:
295 1.1 jtc * 0 if a valid header, -1 otherwise
296 1.1 jtc */
297 1.1 jtc
298 1.1 jtc #if __STDC__
299 1.1 jtc int
300 1.1 jtc cpio_id(char *blk, int size)
301 1.1 jtc #else
302 1.1 jtc int
303 1.1 jtc cpio_id(blk, size)
304 1.1 jtc char *blk;
305 1.1 jtc int size;
306 1.1 jtc #endif
307 1.1 jtc {
308 1.1 jtc if ((size < sizeof(HD_CPIO)) ||
309 1.1 jtc (strncmp(blk, AMAGIC, sizeof(AMAGIC) - 1) != 0))
310 1.1 jtc return(-1);
311 1.1 jtc return(0);
312 1.1 jtc }
313 1.1 jtc
314 1.1 jtc /*
315 1.1 jtc * cpio_rd()
316 1.1 jtc * determine if a buffer is a byte oriented extended cpio archive entry.
317 1.1 jtc * convert and store the values in the ARCHD parameter.
318 1.1 jtc * Return:
319 1.1 jtc * 0 if a valid header, -1 otherwise.
320 1.1 jtc */
321 1.1 jtc
322 1.1 jtc #if __STDC__
323 1.1 jtc int
324 1.1 jtc cpio_rd(register ARCHD *arcn, register char *buf)
325 1.1 jtc #else
326 1.1 jtc int
327 1.1 jtc cpio_rd(arcn, buf)
328 1.1 jtc register ARCHD *arcn;
329 1.1 jtc register char *buf;
330 1.1 jtc #endif
331 1.1 jtc {
332 1.1 jtc register int nsz;
333 1.1 jtc register HD_CPIO *hd;
334 1.1 jtc
335 1.1 jtc /*
336 1.1 jtc * check that this is a valid header, if not return -1
337 1.1 jtc */
338 1.1 jtc if (cpio_id(buf, sizeof(HD_CPIO)) < 0)
339 1.1 jtc return(-1);
340 1.1 jtc hd = (HD_CPIO *)buf;
341 1.1 jtc
342 1.1 jtc /*
343 1.1 jtc * byte oriented cpio (posix) does not have padding! extract the octal
344 1.1 jtc * ascii fields from the header
345 1.1 jtc */
346 1.1 jtc arcn->pad = 0L;
347 1.1 jtc arcn->sb.st_dev = (dev_t)asc_ul(hd->c_dev, sizeof(hd->c_dev), OCT);
348 1.1 jtc arcn->sb.st_ino = (ino_t)asc_ul(hd->c_ino, sizeof(hd->c_ino), OCT);
349 1.1 jtc arcn->sb.st_mode = (mode_t)asc_ul(hd->c_mode, sizeof(hd->c_mode), OCT);
350 1.1 jtc arcn->sb.st_uid = (uid_t)asc_ul(hd->c_uid, sizeof(hd->c_uid), OCT);
351 1.1 jtc arcn->sb.st_gid = (gid_t)asc_ul(hd->c_gid, sizeof(hd->c_gid), OCT);
352 1.1 jtc arcn->sb.st_nlink = (nlink_t)asc_ul(hd->c_nlink, sizeof(hd->c_nlink),
353 1.1 jtc OCT);
354 1.1 jtc arcn->sb.st_rdev = (dev_t)asc_ul(hd->c_rdev, sizeof(hd->c_rdev), OCT);
355 1.1 jtc arcn->sb.st_mtime = (time_t)asc_ul(hd->c_mtime, sizeof(hd->c_mtime),
356 1.1 jtc OCT);
357 1.1 jtc arcn->sb.st_ctime = arcn->sb.st_atime = arcn->sb.st_mtime;
358 1.1 jtc # ifdef NET2_STAT
359 1.1 jtc arcn->sb.st_size = (off_t)asc_ul(hd->c_filesize,sizeof(hd->c_filesize),
360 1.1 jtc OCT);
361 1.1 jtc # else
362 1.1 jtc arcn->sb.st_size = (off_t)asc_uqd(hd->c_filesize,sizeof(hd->c_filesize),
363 1.1 jtc OCT);
364 1.1 jtc # endif
365 1.1 jtc
366 1.1 jtc /*
367 1.1 jtc * check name size and if valid, read in the name of this entry (name
368 1.1 jtc * follows header in the archive)
369 1.1 jtc */
370 1.1 jtc if ((nsz = (int)asc_ul(hd->c_namesize,sizeof(hd->c_namesize),OCT)) < 2)
371 1.1 jtc return(-1);
372 1.1 jtc arcn->nlen = nsz - 1;
373 1.1 jtc if (rd_nm(arcn, nsz) < 0)
374 1.1 jtc return(-1);
375 1.1 jtc
376 1.1 jtc if (((arcn->sb.st_mode&C_IFMT) != C_ISLNK)||(arcn->sb.st_size == 0)) {
377 1.1 jtc /*
378 1.1 jtc * no link name to read for this file
379 1.1 jtc */
380 1.1 jtc arcn->ln_nlen = 0;
381 1.1 jtc arcn->ln_name[0] = '\0';
382 1.1 jtc return(com_rd(arcn));
383 1.1 jtc }
384 1.1 jtc
385 1.1 jtc /*
386 1.1 jtc * check link name size and read in the link name. Link names are
387 1.1 jtc * stored like file data.
388 1.1 jtc */
389 1.1 jtc if (rd_ln_nm(arcn) < 0)
390 1.1 jtc return(-1);
391 1.1 jtc
392 1.1 jtc /*
393 1.1 jtc * we have a valid header (with a link)
394 1.1 jtc */
395 1.1 jtc return(com_rd(arcn));
396 1.1 jtc }
397 1.1 jtc
398 1.1 jtc /*
399 1.1 jtc * cpio_endrd()
400 1.1 jtc * no cleanup needed here, just return size of the trailer (for append)
401 1.1 jtc * Return:
402 1.1 jtc * size of trailer header in this format
403 1.1 jtc */
404 1.1 jtc
405 1.1 jtc #if __STDC__
406 1.1 jtc off_t
407 1.1 jtc cpio_endrd(void)
408 1.1 jtc #else
409 1.1 jtc off_t
410 1.1 jtc cpio_endrd()
411 1.1 jtc #endif
412 1.1 jtc {
413 1.1 jtc return((off_t)(sizeof(HD_CPIO) + sizeof(TRAILER)));
414 1.1 jtc }
415 1.1 jtc
416 1.1 jtc /*
417 1.1 jtc * cpio_stwr()
418 1.1 jtc * start up the device mapping table
419 1.1 jtc * Return:
420 1.1 jtc * 0 if ok, -1 otherwise (what dev_start() returns)
421 1.1 jtc */
422 1.1 jtc
423 1.1 jtc #if __STDC__
424 1.1 jtc int
425 1.1 jtc cpio_stwr(void)
426 1.1 jtc #else
427 1.1 jtc int
428 1.1 jtc cpio_stwr()
429 1.1 jtc #endif
430 1.1 jtc {
431 1.1 jtc return(dev_start());
432 1.1 jtc }
433 1.1 jtc
434 1.1 jtc /*
435 1.1 jtc * cpio_wr()
436 1.1 jtc * copy the data in the ARCHD to buffer in extended byte oriented cpio
437 1.1 jtc * format.
438 1.1 jtc * Return
439 1.1 jtc * 0 if file has data to be written after the header, 1 if file has NO
440 1.1 jtc * data to write after the header, -1 if archive write failed
441 1.1 jtc */
442 1.1 jtc
443 1.1 jtc #if __STDC__
444 1.1 jtc int
445 1.1 jtc cpio_wr(register ARCHD *arcn)
446 1.1 jtc #else
447 1.1 jtc int
448 1.1 jtc cpio_wr(arcn)
449 1.1 jtc register ARCHD *arcn;
450 1.1 jtc #endif
451 1.1 jtc {
452 1.1 jtc register HD_CPIO *hd;
453 1.1 jtc register int nsz;
454 1.1 jtc char hdblk[sizeof(HD_CPIO)];
455 1.1 jtc
456 1.1 jtc /*
457 1.1 jtc * check and repair truncated device and inode fields in the header
458 1.1 jtc */
459 1.1 jtc if (map_dev(arcn, (u_long)CPIO_MASK, (u_long)CPIO_MASK) < 0)
460 1.1 jtc return(-1);
461 1.1 jtc
462 1.1 jtc arcn->pad = 0L;
463 1.1 jtc nsz = arcn->nlen + 1;
464 1.1 jtc hd = (HD_CPIO *)hdblk;
465 1.1 jtc if ((arcn->type != PAX_BLK) && (arcn->type != PAX_CHR))
466 1.1 jtc arcn->sb.st_rdev = 0;
467 1.1 jtc
468 1.1 jtc switch(arcn->type) {
469 1.1 jtc case PAX_CTG:
470 1.1 jtc case PAX_REG:
471 1.1 jtc case PAX_HRG:
472 1.1 jtc /*
473 1.1 jtc * set data size for file data
474 1.1 jtc */
475 1.1 jtc # ifdef NET2_STAT
476 1.1 jtc if (ul_asc((u_long)arcn->sb.st_size, hd->c_filesize,
477 1.1 jtc sizeof(hd->c_filesize), OCT)) {
478 1.1 jtc # else
479 1.1 jtc if (uqd_asc((u_quad_t)arcn->sb.st_size, hd->c_filesize,
480 1.1 jtc sizeof(hd->c_filesize), OCT)) {
481 1.1 jtc # endif
482 1.1 jtc warn(1,"File is too large for cpio format %s",
483 1.1 jtc arcn->org_name);
484 1.1 jtc return(1);
485 1.1 jtc }
486 1.1 jtc break;
487 1.1 jtc case PAX_SLK:
488 1.1 jtc /*
489 1.1 jtc * set data size to hold link name
490 1.1 jtc */
491 1.1 jtc if (ul_asc((u_long)arcn->ln_nlen, hd->c_filesize,
492 1.1 jtc sizeof(hd->c_filesize), OCT))
493 1.1 jtc goto out;
494 1.1 jtc break;
495 1.1 jtc default:
496 1.1 jtc /*
497 1.1 jtc * all other file types have no file data
498 1.1 jtc */
499 1.1 jtc if (ul_asc((u_long)0, hd->c_filesize, sizeof(hd->c_filesize),
500 1.1 jtc OCT))
501 1.1 jtc goto out;
502 1.1 jtc break;
503 1.1 jtc }
504 1.1 jtc
505 1.1 jtc /*
506 1.1 jtc * copy the values to the header using octal ascii
507 1.1 jtc */
508 1.1 jtc if (ul_asc((u_long)MAGIC, hd->c_magic, sizeof(hd->c_magic), OCT) ||
509 1.1 jtc ul_asc((u_long)arcn->sb.st_dev, hd->c_dev, sizeof(hd->c_dev),
510 1.1 jtc OCT) ||
511 1.1 jtc ul_asc((u_long)arcn->sb.st_ino, hd->c_ino, sizeof(hd->c_ino),
512 1.1 jtc OCT) ||
513 1.1 jtc ul_asc((u_long)arcn->sb.st_mode, hd->c_mode, sizeof(hd->c_mode),
514 1.1 jtc OCT) ||
515 1.1 jtc ul_asc((u_long)arcn->sb.st_uid, hd->c_uid, sizeof(hd->c_uid),
516 1.1 jtc OCT) ||
517 1.1 jtc ul_asc((u_long)arcn->sb.st_gid, hd->c_gid, sizeof(hd->c_gid),
518 1.1 jtc OCT) ||
519 1.1 jtc ul_asc((u_long)arcn->sb.st_nlink, hd->c_nlink, sizeof(hd->c_nlink),
520 1.1 jtc OCT) ||
521 1.1 jtc ul_asc((u_long)arcn->sb.st_rdev, hd->c_rdev, sizeof(hd->c_rdev),
522 1.1 jtc OCT) ||
523 1.1 jtc ul_asc((u_long)arcn->sb.st_mtime,hd->c_mtime,sizeof(hd->c_mtime),
524 1.1 jtc OCT) ||
525 1.1 jtc ul_asc((u_long)nsz, hd->c_namesize, sizeof(hd->c_namesize), OCT))
526 1.1 jtc goto out;
527 1.1 jtc
528 1.1 jtc /*
529 1.1 jtc * write the file name to the archive
530 1.1 jtc */
531 1.1 jtc if ((wr_rdbuf(hdblk, (int)sizeof(HD_CPIO)) < 0) ||
532 1.1 jtc (wr_rdbuf(arcn->name, nsz) < 0)) {
533 1.1 jtc warn(1, "Unable to write cpio header for %s", arcn->org_name);
534 1.1 jtc return(-1);
535 1.1 jtc }
536 1.1 jtc
537 1.1 jtc /*
538 1.1 jtc * if this file has data, we are done. The caller will write the file
539 1.1 jtc * data, if we are link tell caller we are done, go to next file
540 1.1 jtc */
541 1.1 jtc if ((arcn->type == PAX_CTG) || (arcn->type == PAX_REG) ||
542 1.1 jtc (arcn->type == PAX_HRG))
543 1.1 jtc return(0);
544 1.1 jtc if (arcn->type != PAX_SLK)
545 1.1 jtc return(1);
546 1.1 jtc
547 1.1 jtc /*
548 1.1 jtc * write the link name to the archive, tell the caller to go to the
549 1.1 jtc * next file as we are done.
550 1.1 jtc */
551 1.1 jtc if (wr_rdbuf(arcn->ln_name, arcn->ln_nlen) < 0) {
552 1.1 jtc warn(1,"Unable to write cpio link name for %s",arcn->org_name);
553 1.1 jtc return(-1);
554 1.1 jtc }
555 1.1 jtc return(1);
556 1.1 jtc
557 1.1 jtc out:
558 1.1 jtc /*
559 1.1 jtc * header field is out of range
560 1.1 jtc */
561 1.1 jtc warn(1, "Cpio header field is too small to store file %s",
562 1.1 jtc arcn->org_name);
563 1.1 jtc return(1);
564 1.1 jtc }
565 1.1 jtc
566 1.1 jtc /*
567 1.1 jtc * Routines common to the system VR4 version of cpio (with/without file CRC)
568 1.1 jtc */
569 1.1 jtc
570 1.1 jtc /*
571 1.1 jtc * vcpio_id()
572 1.1 jtc * determine if a block given to us is a valid system VR4 cpio header
573 1.1 jtc * WITHOUT crc. WATCH it the magic cookies are in OCTAL, the header
574 1.1 jtc * uses HEX
575 1.1 jtc * Return:
576 1.1 jtc * 0 if a valid header, -1 otherwise
577 1.1 jtc */
578 1.1 jtc
579 1.1 jtc #if __STDC__
580 1.1 jtc int
581 1.1 jtc vcpio_id(char *blk, int size)
582 1.1 jtc #else
583 1.1 jtc int
584 1.1 jtc vcpio_id(blk, size)
585 1.1 jtc char *blk;
586 1.1 jtc int size;
587 1.1 jtc #endif
588 1.1 jtc {
589 1.1 jtc if ((size < sizeof(HD_VCPIO)) ||
590 1.1 jtc (strncmp(blk, AVMAGIC, sizeof(AVMAGIC) - 1) != 0))
591 1.1 jtc return(-1);
592 1.1 jtc return(0);
593 1.1 jtc }
594 1.1 jtc
595 1.1 jtc /*
596 1.1 jtc * crc_id()
597 1.1 jtc * determine if a block given to us is a valid system VR4 cpio header
598 1.1 jtc * WITH crc. WATCH it the magic cookies are in OCTAL the header uses HEX
599 1.1 jtc * Return:
600 1.1 jtc * 0 if a valid header, -1 otherwise
601 1.1 jtc */
602 1.1 jtc
603 1.1 jtc #if __STDC__
604 1.1 jtc int
605 1.1 jtc crc_id(char *blk, int size)
606 1.1 jtc #else
607 1.1 jtc int
608 1.1 jtc crc_id(blk, size)
609 1.1 jtc char *blk;
610 1.1 jtc int size;
611 1.1 jtc #endif
612 1.1 jtc {
613 1.1 jtc if ((size < sizeof(HD_VCPIO)) ||
614 1.1 jtc (strncmp(blk, AVCMAGIC, sizeof(AVCMAGIC) - 1) != 0))
615 1.1 jtc return(-1);
616 1.1 jtc return(0);
617 1.1 jtc }
618 1.1 jtc
619 1.1 jtc /*
620 1.1 jtc * crc_strd()
621 1.1 jtc w set file data CRC calculations. Fire up the hard link detection code
622 1.1 jtc * Return:
623 1.1 jtc * 0 if ok -1 otherwise (the return values of lnk_start())
624 1.1 jtc */
625 1.1 jtc
626 1.1 jtc #if __STDC__
627 1.1 jtc int
628 1.1 jtc crc_strd(void)
629 1.1 jtc #else
630 1.1 jtc int
631 1.1 jtc crc_strd()
632 1.1 jtc #endif
633 1.1 jtc {
634 1.1 jtc docrc = 1;
635 1.1 jtc return(lnk_start());
636 1.1 jtc }
637 1.1 jtc
638 1.1 jtc /*
639 1.1 jtc * vcpio_rd()
640 1.1 jtc * determine if a buffer is a system VR4 archive entry. (with/without CRC)
641 1.1 jtc * convert and store the values in the ARCHD parameter.
642 1.1 jtc * Return:
643 1.1 jtc * 0 if a valid header, -1 otherwise.
644 1.1 jtc */
645 1.1 jtc
646 1.1 jtc #if __STDC__
647 1.1 jtc int
648 1.1 jtc vcpio_rd(register ARCHD *arcn, register char *buf)
649 1.1 jtc #else
650 1.1 jtc int
651 1.1 jtc vcpio_rd(arcn, buf)
652 1.1 jtc register ARCHD *arcn;
653 1.1 jtc register char *buf;
654 1.1 jtc #endif
655 1.1 jtc {
656 1.1 jtc register HD_VCPIO *hd;
657 1.1 jtc dev_t devminor;
658 1.1 jtc dev_t devmajor;
659 1.1 jtc register int nsz;
660 1.1 jtc
661 1.1 jtc /*
662 1.1 jtc * during the id phase it was determined if we were using CRC, use the
663 1.1 jtc * proper id routine.
664 1.1 jtc */
665 1.1 jtc if (docrc) {
666 1.1 jtc if (crc_id(buf, sizeof(HD_VCPIO)) < 0)
667 1.1 jtc return(-1);
668 1.1 jtc } else {
669 1.1 jtc if (vcpio_id(buf, sizeof(HD_VCPIO)) < 0)
670 1.1 jtc return(-1);
671 1.1 jtc }
672 1.1 jtc
673 1.1 jtc hd = (HD_VCPIO *)buf;
674 1.1 jtc arcn->pad = 0L;
675 1.1 jtc
676 1.1 jtc /*
677 1.1 jtc * extract the hex ascii fields from the header
678 1.1 jtc */
679 1.1 jtc arcn->sb.st_ino = (ino_t)asc_ul(hd->c_ino, sizeof(hd->c_ino), HEX);
680 1.1 jtc arcn->sb.st_mode = (mode_t)asc_ul(hd->c_mode, sizeof(hd->c_mode), HEX);
681 1.1 jtc arcn->sb.st_uid = (uid_t)asc_ul(hd->c_uid, sizeof(hd->c_uid), HEX);
682 1.1 jtc arcn->sb.st_gid = (gid_t)asc_ul(hd->c_gid, sizeof(hd->c_gid), HEX);
683 1.1 jtc arcn->sb.st_mtime = (time_t)asc_ul(hd->c_mtime,sizeof(hd->c_mtime),HEX);
684 1.1 jtc arcn->sb.st_ctime = arcn->sb.st_atime = arcn->sb.st_mtime;
685 1.1 jtc # ifdef NET2_STAT
686 1.1 jtc arcn->sb.st_size = (off_t)asc_ul(hd->c_filesize,
687 1.1 jtc sizeof(hd->c_filesize), HEX);
688 1.1 jtc # else
689 1.1 jtc arcn->sb.st_size = (off_t)asc_uqd(hd->c_filesize,
690 1.1 jtc sizeof(hd->c_filesize), HEX);
691 1.1 jtc # endif
692 1.1 jtc arcn->sb.st_nlink = (nlink_t)asc_ul(hd->c_nlink, sizeof(hd->c_nlink),
693 1.1 jtc HEX);
694 1.1 jtc devmajor = (dev_t)asc_ul(hd->c_maj, sizeof(hd->c_maj), HEX);
695 1.1 jtc devminor = (dev_t)asc_ul(hd->c_min, sizeof(hd->c_min), HEX);
696 1.1 jtc arcn->sb.st_dev = TODEV(devmajor, devminor);
697 1.1 jtc devmajor = (dev_t)asc_ul(hd->c_rmaj, sizeof(hd->c_maj), HEX);
698 1.1 jtc devminor = (dev_t)asc_ul(hd->c_rmin, sizeof(hd->c_min), HEX);
699 1.1 jtc arcn->sb.st_rdev = TODEV(devmajor, devminor);
700 1.1 jtc arcn->crc = asc_ul(hd->c_chksum, sizeof(hd->c_chksum), HEX);
701 1.1 jtc
702 1.1 jtc /*
703 1.1 jtc * check the length of the file name, if ok read it in, return -1 if
704 1.1 jtc * bogus
705 1.1 jtc */
706 1.1 jtc if ((nsz = (int)asc_ul(hd->c_namesize,sizeof(hd->c_namesize),HEX)) < 2)
707 1.1 jtc return(-1);
708 1.1 jtc arcn->nlen = nsz - 1;
709 1.1 jtc if (rd_nm(arcn, nsz) < 0)
710 1.1 jtc return(-1);
711 1.1 jtc
712 1.1 jtc /*
713 1.1 jtc * skip padding. header + filename is aligned to 4 byte boundries
714 1.1 jtc */
715 1.1 jtc if (rd_skip((off_t)(VCPIO_PAD(sizeof(HD_VCPIO) + nsz))) < 0)
716 1.1 jtc return(-1);
717 1.1 jtc
718 1.1 jtc /*
719 1.1 jtc * if not a link (or a file with no data), calculate pad size (for
720 1.1 jtc * padding which follows the file data), clear the link name and return
721 1.1 jtc */
722 1.1 jtc if (((arcn->sb.st_mode&C_IFMT) != C_ISLNK)||(arcn->sb.st_size == 0)) {
723 1.1 jtc /*
724 1.1 jtc * we have a valid header (not a link)
725 1.1 jtc */
726 1.1 jtc arcn->ln_nlen = 0;
727 1.1 jtc arcn->ln_name[0] = '\0';
728 1.1 jtc arcn->pad = VCPIO_PAD(arcn->sb.st_size);
729 1.1 jtc return(com_rd(arcn));
730 1.1 jtc }
731 1.1 jtc
732 1.1 jtc /*
733 1.1 jtc * read in the link name and skip over the padding
734 1.1 jtc */
735 1.1 jtc if ((rd_ln_nm(arcn) < 0) ||
736 1.1 jtc (rd_skip((off_t)(VCPIO_PAD(arcn->sb.st_size))) < 0))
737 1.1 jtc return(-1);
738 1.1 jtc
739 1.1 jtc /*
740 1.1 jtc * we have a valid header (with a link)
741 1.1 jtc */
742 1.1 jtc return(com_rd(arcn));
743 1.1 jtc }
744 1.1 jtc
745 1.1 jtc /*
746 1.1 jtc * vcpio_endrd()
747 1.1 jtc * no cleanup needed here, just return size of the trailer (for append)
748 1.1 jtc * Return:
749 1.1 jtc * size of trailer header in this format
750 1.1 jtc */
751 1.1 jtc
752 1.1 jtc #if __STDC__
753 1.1 jtc off_t
754 1.1 jtc vcpio_endrd(void)
755 1.1 jtc #else
756 1.1 jtc off_t
757 1.1 jtc vcpio_endrd()
758 1.1 jtc #endif
759 1.1 jtc {
760 1.1 jtc return((off_t)(sizeof(HD_VCPIO) + sizeof(TRAILER) +
761 1.1 jtc (VCPIO_PAD(sizeof(HD_VCPIO) + sizeof(TRAILER)))));
762 1.1 jtc }
763 1.1 jtc
764 1.1 jtc /*
765 1.1 jtc * crc_stwr()
766 1.1 jtc * start up the device mapping table, enable crc file calculation
767 1.1 jtc * Return:
768 1.1 jtc * 0 if ok, -1 otherwise (what dev_start() returns)
769 1.1 jtc */
770 1.1 jtc
771 1.1 jtc #if __STDC__
772 1.1 jtc int
773 1.1 jtc crc_stwr(void)
774 1.1 jtc #else
775 1.1 jtc int
776 1.1 jtc crc_stwr()
777 1.1 jtc #endif
778 1.1 jtc {
779 1.1 jtc docrc = 1;
780 1.1 jtc return(dev_start());
781 1.1 jtc }
782 1.1 jtc
783 1.1 jtc /*
784 1.1 jtc * vcpio_wr()
785 1.1 jtc * copy the data in the ARCHD to buffer in system VR4 cpio
786 1.1 jtc * (with/without crc) format.
787 1.1 jtc * Return
788 1.1 jtc * 0 if file has data to be written after the header, 1 if file has
789 1.1 jtc * NO data to write after the header, -1 if archive write failed
790 1.1 jtc */
791 1.1 jtc
792 1.1 jtc #if __STDC__
793 1.1 jtc int
794 1.1 jtc vcpio_wr(register ARCHD *arcn)
795 1.1 jtc #else
796 1.1 jtc int
797 1.1 jtc vcpio_wr(arcn)
798 1.1 jtc register ARCHD *arcn;
799 1.1 jtc #endif
800 1.1 jtc {
801 1.1 jtc register HD_VCPIO *hd;
802 1.1 jtc unsigned int nsz;
803 1.1 jtc char hdblk[sizeof(HD_VCPIO)];
804 1.1 jtc
805 1.1 jtc /*
806 1.1 jtc * check and repair truncated device and inode fields in the cpio
807 1.1 jtc * header
808 1.1 jtc */
809 1.1 jtc if (map_dev(arcn, (u_long)VCPIO_MASK, (u_long)VCPIO_MASK) < 0)
810 1.1 jtc return(-1);
811 1.1 jtc nsz = arcn->nlen + 1;
812 1.1 jtc hd = (HD_VCPIO *)hdblk;
813 1.1 jtc if ((arcn->type != PAX_BLK) && (arcn->type != PAX_CHR))
814 1.1 jtc arcn->sb.st_rdev = 0;
815 1.1 jtc
816 1.1 jtc /*
817 1.1 jtc * add the proper magic value depending whether we were asked for
818 1.1 jtc * file data crc's, and the crc if needed.
819 1.1 jtc */
820 1.1 jtc if (docrc) {
821 1.1 jtc if (ul_asc((u_long)VCMAGIC, hd->c_magic, sizeof(hd->c_magic),
822 1.1 jtc OCT) ||
823 1.1 jtc ul_asc((u_long)arcn->crc,hd->c_chksum,sizeof(hd->c_chksum),
824 1.1 jtc HEX))
825 1.1 jtc goto out;
826 1.1 jtc } else {
827 1.1 jtc if (ul_asc((u_long)VMAGIC, hd->c_magic, sizeof(hd->c_magic),
828 1.1 jtc OCT) ||
829 1.1 jtc ul_asc((u_long)0L, hd->c_chksum, sizeof(hd->c_chksum),HEX))
830 1.1 jtc goto out;
831 1.1 jtc }
832 1.1 jtc
833 1.1 jtc switch(arcn->type) {
834 1.1 jtc case PAX_CTG:
835 1.1 jtc case PAX_REG:
836 1.1 jtc case PAX_HRG:
837 1.1 jtc /*
838 1.1 jtc * caller will copy file data to the archive. tell him how
839 1.1 jtc * much to pad.
840 1.1 jtc */
841 1.1 jtc arcn->pad = VCPIO_PAD(arcn->sb.st_size);
842 1.1 jtc # ifdef NET2_STAT
843 1.1 jtc if (ul_asc((u_long)arcn->sb.st_size, hd->c_filesize,
844 1.1 jtc sizeof(hd->c_filesize), HEX)) {
845 1.1 jtc # else
846 1.1 jtc if (uqd_asc((u_quad_t)arcn->sb.st_size, hd->c_filesize,
847 1.1 jtc sizeof(hd->c_filesize), HEX)) {
848 1.1 jtc # endif
849 1.1 jtc warn(1,"File is too large for sv4cpio format %s",
850 1.1 jtc arcn->org_name);
851 1.1 jtc return(1);
852 1.1 jtc }
853 1.1 jtc break;
854 1.1 jtc case PAX_SLK:
855 1.1 jtc /*
856 1.1 jtc * no file data for the caller to process, the file data has
857 1.1 jtc * the size of the link
858 1.1 jtc */
859 1.1 jtc arcn->pad = 0L;
860 1.1 jtc if (ul_asc((u_long)arcn->ln_nlen, hd->c_filesize,
861 1.1 jtc sizeof(hd->c_filesize), HEX))
862 1.1 jtc goto out;
863 1.1 jtc break;
864 1.1 jtc default:
865 1.1 jtc /*
866 1.1 jtc * no file data for the caller to process
867 1.1 jtc */
868 1.1 jtc arcn->pad = 0L;
869 1.1 jtc if (ul_asc((u_long)0L, hd->c_filesize, sizeof(hd->c_filesize),
870 1.1 jtc HEX))
871 1.1 jtc goto out;
872 1.1 jtc break;
873 1.1 jtc }
874 1.1 jtc
875 1.1 jtc /*
876 1.1 jtc * set the other fields in the header
877 1.1 jtc */
878 1.1 jtc if (ul_asc((u_long)arcn->sb.st_ino, hd->c_ino, sizeof(hd->c_ino),
879 1.1 jtc HEX) ||
880 1.1 jtc ul_asc((u_long)arcn->sb.st_mode, hd->c_mode, sizeof(hd->c_mode),
881 1.1 jtc HEX) ||
882 1.1 jtc ul_asc((u_long)arcn->sb.st_uid, hd->c_uid, sizeof(hd->c_uid),
883 1.1 jtc HEX) ||
884 1.1 jtc ul_asc((u_long)arcn->sb.st_gid, hd->c_gid, sizeof(hd->c_gid),
885 1.1 jtc HEX) ||
886 1.1 jtc ul_asc((u_long)arcn->sb.st_mtime, hd->c_mtime, sizeof(hd->c_mtime),
887 1.1 jtc HEX) ||
888 1.1 jtc ul_asc((u_long)arcn->sb.st_nlink, hd->c_nlink, sizeof(hd->c_nlink),
889 1.1 jtc HEX) ||
890 1.1 jtc ul_asc((u_long)MAJOR(arcn->sb.st_dev),hd->c_maj, sizeof(hd->c_maj),
891 1.1 jtc HEX) ||
892 1.1 jtc ul_asc((u_long)MINOR(arcn->sb.st_dev),hd->c_min, sizeof(hd->c_min),
893 1.1 jtc HEX) ||
894 1.1 jtc ul_asc((u_long)MAJOR(arcn->sb.st_rdev),hd->c_rmaj,sizeof(hd->c_maj),
895 1.1 jtc HEX) ||
896 1.1 jtc ul_asc((u_long)MINOR(arcn->sb.st_rdev),hd->c_rmin,sizeof(hd->c_min),
897 1.1 jtc HEX) ||
898 1.1 jtc ul_asc((u_long)nsz, hd->c_namesize, sizeof(hd->c_namesize), HEX))
899 1.1 jtc goto out;
900 1.1 jtc
901 1.1 jtc /*
902 1.1 jtc * write the header, the file name and padding as required.
903 1.1 jtc */
904 1.1 jtc if ((wr_rdbuf(hdblk, (int)sizeof(HD_VCPIO)) < 0) ||
905 1.1 jtc (wr_rdbuf(arcn->name, (int)nsz) < 0) ||
906 1.1 jtc (wr_skip((off_t)(VCPIO_PAD(sizeof(HD_VCPIO) + nsz))) < 0)) {
907 1.1 jtc warn(1,"Could not write sv4cpio header for %s",arcn->org_name);
908 1.1 jtc return(-1);
909 1.1 jtc }
910 1.1 jtc
911 1.1 jtc /*
912 1.1 jtc * if we have file data, tell the caller we are done, copy the file
913 1.1 jtc */
914 1.1 jtc if ((arcn->type == PAX_CTG) || (arcn->type == PAX_REG) ||
915 1.1 jtc (arcn->type == PAX_HRG))
916 1.1 jtc return(0);
917 1.1 jtc
918 1.1 jtc /*
919 1.1 jtc * if we are not a link, tell the caller we are done, go to next file
920 1.1 jtc */
921 1.1 jtc if (arcn->type != PAX_SLK)
922 1.1 jtc return(1);
923 1.1 jtc
924 1.1 jtc /*
925 1.1 jtc * write the link name, tell the caller we are done.
926 1.1 jtc */
927 1.1 jtc if ((wr_rdbuf(arcn->ln_name, arcn->ln_nlen) < 0) ||
928 1.1 jtc (wr_skip((off_t)(VCPIO_PAD(arcn->ln_nlen))) < 0)) {
929 1.1 jtc warn(1,"Could not write sv4cpio link name for %s",
930 1.1 jtc arcn->org_name);
931 1.1 jtc return(-1);
932 1.1 jtc }
933 1.1 jtc return(1);
934 1.1 jtc
935 1.1 jtc out:
936 1.1 jtc /*
937 1.1 jtc * header field is out of range
938 1.1 jtc */
939 1.1 jtc warn(1,"Sv4cpio header field is too small for file %s",arcn->org_name);
940 1.1 jtc return(1);
941 1.1 jtc }
942 1.1 jtc
943 1.1 jtc /*
944 1.1 jtc * Routines common to the old binary header cpio
945 1.1 jtc */
946 1.1 jtc
947 1.1 jtc /*
948 1.1 jtc * bcpio_id()
949 1.1 jtc * determine if a block given to us is a old binary cpio header
950 1.1 jtc * (with/without header byte swapping)
951 1.1 jtc * Return:
952 1.1 jtc * 0 if a valid header, -1 otherwise
953 1.1 jtc */
954 1.1 jtc
955 1.1 jtc #if __STDC__
956 1.1 jtc int
957 1.1 jtc bcpio_id(char *blk, int size)
958 1.1 jtc #else
959 1.1 jtc int
960 1.1 jtc bcpio_id(blk, size)
961 1.1 jtc char *blk;
962 1.1 jtc int size;
963 1.1 jtc #endif
964 1.1 jtc {
965 1.1 jtc if (size < sizeof(HD_BCPIO))
966 1.1 jtc return(-1);
967 1.1 jtc
968 1.1 jtc /*
969 1.1 jtc * check both normal and byte swapped magic cookies
970 1.1 jtc */
971 1.1 jtc if (((u_short)SHRT_EXT(blk)) == MAGIC)
972 1.1 jtc return(0);
973 1.1 jtc if (((u_short)RSHRT_EXT(blk)) == MAGIC) {
974 1.1 jtc if (!swp_head)
975 1.1 jtc ++swp_head;
976 1.1 jtc return(0);
977 1.1 jtc }
978 1.1 jtc return(-1);
979 1.1 jtc }
980 1.1 jtc
981 1.1 jtc /*
982 1.1 jtc * bcpio_rd()
983 1.1 jtc * determine if a buffer is a old binary archive entry. (it may have byte
984 1.1 jtc * swapped header) convert and store the values in the ARCHD parameter.
985 1.1 jtc * This is a very old header format and should not really be used.
986 1.1 jtc * Return:
987 1.1 jtc * 0 if a valid header, -1 otherwise.
988 1.1 jtc */
989 1.1 jtc
990 1.1 jtc #if __STDC__
991 1.1 jtc int
992 1.1 jtc bcpio_rd(register ARCHD *arcn, register char *buf)
993 1.1 jtc #else
994 1.1 jtc int
995 1.1 jtc bcpio_rd(arcn, buf)
996 1.1 jtc register ARCHD *arcn;
997 1.1 jtc register char *buf;
998 1.1 jtc #endif
999 1.1 jtc {
1000 1.1 jtc register HD_BCPIO *hd;
1001 1.1 jtc register int nsz;
1002 1.1 jtc
1003 1.1 jtc /*
1004 1.1 jtc * check the header
1005 1.1 jtc */
1006 1.1 jtc if (bcpio_id(buf, sizeof(HD_BCPIO)) < 0)
1007 1.1 jtc return(-1);
1008 1.1 jtc
1009 1.1 jtc arcn->pad = 0L;
1010 1.1 jtc hd = (HD_BCPIO *)buf;
1011 1.1 jtc if (swp_head) {
1012 1.1 jtc /*
1013 1.1 jtc * header has swapped bytes on 16 bit boundries
1014 1.1 jtc */
1015 1.1 jtc arcn->sb.st_dev = (dev_t)(RSHRT_EXT(hd->h_dev));
1016 1.1 jtc arcn->sb.st_ino = (ino_t)(RSHRT_EXT(hd->h_ino));
1017 1.1 jtc arcn->sb.st_mode = (mode_t)(RSHRT_EXT(hd->h_mode));
1018 1.1 jtc arcn->sb.st_uid = (uid_t)(RSHRT_EXT(hd->h_uid));
1019 1.1 jtc arcn->sb.st_gid = (gid_t)(RSHRT_EXT(hd->h_gid));
1020 1.1 jtc arcn->sb.st_nlink = (nlink_t)(RSHRT_EXT(hd->h_nlink));
1021 1.1 jtc arcn->sb.st_rdev = (dev_t)(RSHRT_EXT(hd->h_rdev));
1022 1.1 jtc arcn->sb.st_mtime = (time_t)(RSHRT_EXT(hd->h_mtime_1));
1023 1.1 jtc arcn->sb.st_mtime = (arcn->sb.st_mtime << 16) |
1024 1.1 jtc ((time_t)(RSHRT_EXT(hd->h_mtime_2)));
1025 1.1 jtc arcn->sb.st_size = (off_t)(RSHRT_EXT(hd->h_filesize_1));
1026 1.1 jtc arcn->sb.st_size = (arcn->sb.st_size << 16) |
1027 1.1 jtc ((off_t)(RSHRT_EXT(hd->h_filesize_2)));
1028 1.1 jtc nsz = (int)(RSHRT_EXT(hd->h_namesize));
1029 1.1 jtc } else {
1030 1.1 jtc arcn->sb.st_dev = (dev_t)(SHRT_EXT(hd->h_dev));
1031 1.1 jtc arcn->sb.st_ino = (ino_t)(SHRT_EXT(hd->h_ino));
1032 1.1 jtc arcn->sb.st_mode = (mode_t)(SHRT_EXT(hd->h_mode));
1033 1.1 jtc arcn->sb.st_uid = (uid_t)(SHRT_EXT(hd->h_uid));
1034 1.1 jtc arcn->sb.st_gid = (gid_t)(SHRT_EXT(hd->h_gid));
1035 1.1 jtc arcn->sb.st_nlink = (nlink_t)(SHRT_EXT(hd->h_nlink));
1036 1.1 jtc arcn->sb.st_rdev = (dev_t)(SHRT_EXT(hd->h_rdev));
1037 1.1 jtc arcn->sb.st_mtime = (time_t)(SHRT_EXT(hd->h_mtime_1));
1038 1.1 jtc arcn->sb.st_mtime = (arcn->sb.st_mtime << 16) |
1039 1.1 jtc ((time_t)(SHRT_EXT(hd->h_mtime_2)));
1040 1.1 jtc arcn->sb.st_size = (off_t)(SHRT_EXT(hd->h_filesize_1));
1041 1.1 jtc arcn->sb.st_size = (arcn->sb.st_size << 16) |
1042 1.1 jtc ((off_t)(SHRT_EXT(hd->h_filesize_2)));
1043 1.1 jtc nsz = (int)(SHRT_EXT(hd->h_namesize));
1044 1.1 jtc }
1045 1.1 jtc arcn->sb.st_ctime = arcn->sb.st_atime = arcn->sb.st_mtime;
1046 1.1 jtc
1047 1.1 jtc /*
1048 1.1 jtc * check the file name size, if bogus give up. otherwise read the file
1049 1.1 jtc * name
1050 1.1 jtc */
1051 1.1 jtc if (nsz < 2)
1052 1.1 jtc return(-1);
1053 1.1 jtc arcn->nlen = nsz - 1;
1054 1.1 jtc if (rd_nm(arcn, nsz) < 0)
1055 1.1 jtc return(-1);
1056 1.1 jtc
1057 1.1 jtc /*
1058 1.1 jtc * header + file name are aligned to 2 byte boundries, skip if needed
1059 1.1 jtc */
1060 1.1 jtc if (rd_skip((off_t)(BCPIO_PAD(sizeof(HD_BCPIO) + nsz))) < 0)
1061 1.1 jtc return(-1);
1062 1.1 jtc
1063 1.1 jtc /*
1064 1.1 jtc * if not a link (or a file with no data), calculate pad size (for
1065 1.1 jtc * padding which follows the file data), clear the link name and return
1066 1.1 jtc */
1067 1.1 jtc if (((arcn->sb.st_mode & C_IFMT) != C_ISLNK)||(arcn->sb.st_size == 0)){
1068 1.1 jtc /*
1069 1.1 jtc * we have a valid header (not a link)
1070 1.1 jtc */
1071 1.1 jtc arcn->ln_nlen = 0;
1072 1.1 jtc arcn->ln_name[0] = '\0';
1073 1.1 jtc arcn->pad = BCPIO_PAD(arcn->sb.st_size);
1074 1.1 jtc return(com_rd(arcn));
1075 1.1 jtc }
1076 1.1 jtc
1077 1.1 jtc if ((rd_ln_nm(arcn) < 0) ||
1078 1.1 jtc (rd_skip((off_t)(BCPIO_PAD(arcn->sb.st_size))) < 0))
1079 1.1 jtc return(-1);
1080 1.1 jtc
1081 1.1 jtc /*
1082 1.1 jtc * we have a valid header (with a link)
1083 1.1 jtc */
1084 1.1 jtc return(com_rd(arcn));
1085 1.1 jtc }
1086 1.1 jtc
1087 1.1 jtc /*
1088 1.1 jtc * bcpio_endrd()
1089 1.1 jtc * no cleanup needed here, just return size of the trailer (for append)
1090 1.1 jtc * Return:
1091 1.1 jtc * size of trailer header in this format
1092 1.1 jtc */
1093 1.1 jtc
1094 1.1 jtc #if __STDC__
1095 1.1 jtc off_t
1096 1.1 jtc bcpio_endrd(void)
1097 1.1 jtc #else
1098 1.1 jtc off_t
1099 1.1 jtc bcpio_endrd()
1100 1.1 jtc #endif
1101 1.1 jtc {
1102 1.1 jtc return((off_t)(sizeof(HD_BCPIO) + sizeof(TRAILER) +
1103 1.1 jtc (BCPIO_PAD(sizeof(HD_BCPIO) + sizeof(TRAILER)))));
1104 1.1 jtc }
1105 1.1 jtc
1106 1.1 jtc /*
1107 1.1 jtc * bcpio_wr()
1108 1.1 jtc * copy the data in the ARCHD to buffer in old binary cpio format
1109 1.1 jtc * There is a real chance of field overflow with this critter. So we
1110 1.1 jtc * always check the conversion is ok. nobody in his their right mind
1111 1.1 jtc * should write an achive in this format...
1112 1.1 jtc * Return
1113 1.1 jtc * 0 if file has data to be written after the header, 1 if file has NO
1114 1.1 jtc * data to write after the header, -1 if archive write failed
1115 1.1 jtc */
1116 1.1 jtc
1117 1.1 jtc #if __STDC__
1118 1.1 jtc int
1119 1.1 jtc bcpio_wr(register ARCHD *arcn)
1120 1.1 jtc #else
1121 1.1 jtc int
1122 1.1 jtc bcpio_wr(arcn)
1123 1.1 jtc register ARCHD *arcn;
1124 1.1 jtc #endif
1125 1.1 jtc {
1126 1.1 jtc register HD_BCPIO *hd;
1127 1.1 jtc register int nsz;
1128 1.1 jtc char hdblk[sizeof(HD_BCPIO)];
1129 1.1 jtc off_t t_offt;
1130 1.1 jtc int t_int;
1131 1.1 jtc time_t t_timet;
1132 1.1 jtc
1133 1.1 jtc /*
1134 1.1 jtc * check and repair truncated device and inode fields in the cpio
1135 1.1 jtc * header
1136 1.1 jtc */
1137 1.1 jtc if (map_dev(arcn, (u_long)BCPIO_MASK, (u_long)BCPIO_MASK) < 0)
1138 1.1 jtc return(-1);
1139 1.1 jtc
1140 1.1 jtc if ((arcn->type != PAX_BLK) && (arcn->type != PAX_CHR))
1141 1.1 jtc arcn->sb.st_rdev = 0;
1142 1.1 jtc hd = (HD_BCPIO *)hdblk;
1143 1.1 jtc
1144 1.1 jtc switch(arcn->type) {
1145 1.1 jtc case PAX_CTG:
1146 1.1 jtc case PAX_REG:
1147 1.1 jtc case PAX_HRG:
1148 1.1 jtc /*
1149 1.1 jtc * caller will copy file data to the archive. tell him how
1150 1.1 jtc * much to pad.
1151 1.1 jtc */
1152 1.1 jtc arcn->pad = BCPIO_PAD(arcn->sb.st_size);
1153 1.1 jtc hd->h_filesize_1[0] = CHR_WR_0(arcn->sb.st_size);
1154 1.1 jtc hd->h_filesize_1[1] = CHR_WR_1(arcn->sb.st_size);
1155 1.1 jtc hd->h_filesize_2[0] = CHR_WR_2(arcn->sb.st_size);
1156 1.1 jtc hd->h_filesize_2[1] = CHR_WR_3(arcn->sb.st_size);
1157 1.1 jtc t_offt = (off_t)(SHRT_EXT(hd->h_filesize_1));
1158 1.1 jtc t_offt = (t_offt<<16) | ((off_t)(SHRT_EXT(hd->h_filesize_2)));
1159 1.1 jtc if (arcn->sb.st_size != t_offt) {
1160 1.1 jtc warn(1,"File is too large for bcpio format %s",
1161 1.1 jtc arcn->org_name);
1162 1.1 jtc return(1);
1163 1.1 jtc }
1164 1.1 jtc break;
1165 1.1 jtc case PAX_SLK:
1166 1.1 jtc /*
1167 1.1 jtc * no file data for the caller to process, the file data has
1168 1.1 jtc * the size of the link
1169 1.1 jtc */
1170 1.1 jtc arcn->pad = 0L;
1171 1.1 jtc hd->h_filesize_1[0] = CHR_WR_0(arcn->ln_nlen);
1172 1.1 jtc hd->h_filesize_1[1] = CHR_WR_1(arcn->ln_nlen);
1173 1.1 jtc hd->h_filesize_2[0] = CHR_WR_2(arcn->ln_nlen);
1174 1.1 jtc hd->h_filesize_2[1] = CHR_WR_3(arcn->ln_nlen);
1175 1.1 jtc t_int = (int)(SHRT_EXT(hd->h_filesize_1));
1176 1.1 jtc t_int = (t_int << 16) | ((int)(SHRT_EXT(hd->h_filesize_2)));
1177 1.1 jtc if (arcn->ln_nlen != t_int)
1178 1.1 jtc goto out;
1179 1.1 jtc break;
1180 1.1 jtc default:
1181 1.1 jtc /*
1182 1.1 jtc * no file data for the caller to process
1183 1.1 jtc */
1184 1.1 jtc arcn->pad = 0L;
1185 1.1 jtc hd->h_filesize_1[0] = (char)0;
1186 1.1 jtc hd->h_filesize_1[1] = (char)0;
1187 1.1 jtc hd->h_filesize_2[0] = (char)0;
1188 1.1 jtc hd->h_filesize_2[1] = (char)0;
1189 1.1 jtc break;
1190 1.1 jtc }
1191 1.1 jtc
1192 1.1 jtc /*
1193 1.1 jtc * build up the rest of the fields
1194 1.1 jtc */
1195 1.1 jtc hd->h_magic[0] = CHR_WR_2(MAGIC);
1196 1.1 jtc hd->h_magic[1] = CHR_WR_3(MAGIC);
1197 1.1 jtc hd->h_dev[0] = CHR_WR_2(arcn->sb.st_dev);
1198 1.1 jtc hd->h_dev[1] = CHR_WR_3(arcn->sb.st_dev);
1199 1.1 jtc if (arcn->sb.st_dev != (dev_t)(SHRT_EXT(hd->h_dev)))
1200 1.1 jtc goto out;
1201 1.1 jtc hd->h_ino[0] = CHR_WR_2(arcn->sb.st_ino);
1202 1.1 jtc hd->h_ino[1] = CHR_WR_3(arcn->sb.st_ino);
1203 1.1 jtc if (arcn->sb.st_ino != (ino_t)(SHRT_EXT(hd->h_ino)))
1204 1.1 jtc goto out;
1205 1.1 jtc hd->h_mode[0] = CHR_WR_2(arcn->sb.st_mode);
1206 1.1 jtc hd->h_mode[1] = CHR_WR_3(arcn->sb.st_mode);
1207 1.1 jtc if (arcn->sb.st_mode != (mode_t)(SHRT_EXT(hd->h_mode)))
1208 1.1 jtc goto out;
1209 1.1 jtc hd->h_uid[0] = CHR_WR_2(arcn->sb.st_uid);
1210 1.1 jtc hd->h_uid[1] = CHR_WR_3(arcn->sb.st_uid);
1211 1.1 jtc if (arcn->sb.st_uid != (uid_t)(SHRT_EXT(hd->h_uid)))
1212 1.1 jtc goto out;
1213 1.1 jtc hd->h_gid[0] = CHR_WR_2(arcn->sb.st_gid);
1214 1.1 jtc hd->h_gid[1] = CHR_WR_3(arcn->sb.st_gid);
1215 1.1 jtc if (arcn->sb.st_gid != (gid_t)(SHRT_EXT(hd->h_gid)))
1216 1.1 jtc goto out;
1217 1.1 jtc hd->h_nlink[0] = CHR_WR_2(arcn->sb.st_nlink);
1218 1.1 jtc hd->h_nlink[1] = CHR_WR_3(arcn->sb.st_nlink);
1219 1.1 jtc if (arcn->sb.st_nlink != (nlink_t)(SHRT_EXT(hd->h_nlink)))
1220 1.1 jtc goto out;
1221 1.1 jtc hd->h_rdev[0] = CHR_WR_2(arcn->sb.st_rdev);
1222 1.1 jtc hd->h_rdev[1] = CHR_WR_3(arcn->sb.st_rdev);
1223 1.1 jtc if (arcn->sb.st_rdev != (dev_t)(SHRT_EXT(hd->h_rdev)))
1224 1.1 jtc goto out;
1225 1.1 jtc hd->h_mtime_1[0] = CHR_WR_0(arcn->sb.st_mtime);
1226 1.1 jtc hd->h_mtime_1[1] = CHR_WR_1(arcn->sb.st_mtime);
1227 1.1 jtc hd->h_mtime_2[0] = CHR_WR_2(arcn->sb.st_mtime);
1228 1.1 jtc hd->h_mtime_2[1] = CHR_WR_3(arcn->sb.st_mtime);
1229 1.1 jtc t_timet = (time_t)(SHRT_EXT(hd->h_mtime_1));
1230 1.1 jtc t_timet = (t_timet << 16) | ((time_t)(SHRT_EXT(hd->h_mtime_2)));
1231 1.1 jtc if (arcn->sb.st_mtime != t_timet)
1232 1.1 jtc goto out;
1233 1.1 jtc nsz = arcn->nlen + 1;
1234 1.1 jtc hd->h_namesize[0] = CHR_WR_2(nsz);
1235 1.1 jtc hd->h_namesize[1] = CHR_WR_3(nsz);
1236 1.1 jtc if (nsz != (int)(SHRT_EXT(hd->h_namesize)))
1237 1.1 jtc goto out;
1238 1.1 jtc
1239 1.1 jtc /*
1240 1.1 jtc * write the header, the file name and padding as required.
1241 1.1 jtc */
1242 1.1 jtc if ((wr_rdbuf(hdblk, (int)sizeof(HD_BCPIO)) < 0) ||
1243 1.1 jtc (wr_rdbuf(arcn->name, nsz) < 0) ||
1244 1.1 jtc (wr_skip((off_t)(BCPIO_PAD(sizeof(HD_BCPIO) + nsz))) < 0)) {
1245 1.1 jtc warn(1, "Could not write bcpio header for %s", arcn->org_name);
1246 1.1 jtc return(-1);
1247 1.1 jtc }
1248 1.1 jtc
1249 1.1 jtc /*
1250 1.1 jtc * if we have file data, tell the caller we are done
1251 1.1 jtc */
1252 1.1 jtc if ((arcn->type == PAX_CTG) || (arcn->type == PAX_REG) ||
1253 1.1 jtc (arcn->type == PAX_HRG))
1254 1.1 jtc return(0);
1255 1.1 jtc
1256 1.1 jtc /*
1257 1.1 jtc * if we are not a link, tell the caller we are done, go to next file
1258 1.1 jtc */
1259 1.1 jtc if (arcn->type != PAX_SLK)
1260 1.1 jtc return(1);
1261 1.1 jtc
1262 1.1 jtc /*
1263 1.1 jtc * write the link name, tell the caller we are done.
1264 1.1 jtc */
1265 1.1 jtc if ((wr_rdbuf(arcn->ln_name, arcn->ln_nlen) < 0) ||
1266 1.1 jtc (wr_skip((off_t)(BCPIO_PAD(arcn->ln_nlen))) < 0)) {
1267 1.1 jtc warn(1,"Could not write bcpio link name for %s",arcn->org_name);
1268 1.1 jtc return(-1);
1269 1.1 jtc }
1270 1.1 jtc return(1);
1271 1.1 jtc
1272 1.1 jtc out:
1273 1.1 jtc /*
1274 1.1 jtc * header field is out of range
1275 1.1 jtc */
1276 1.1 jtc warn(1,"Bcpio header field is too small for file %s", arcn->org_name);
1277 1.1 jtc return(1);
1278 1.1 jtc }
1279