2001-02-11 00:47:40 +08:00
|
|
|
/** \ingroup payload
|
2000-08-28 03:18:25 +08:00
|
|
|
* \file lib/cpio.c
|
2000-03-23 23:49:50 +08:00
|
|
|
* Handle cpio payloads within rpm packages.
|
|
|
|
*
|
2000-08-28 03:18:25 +08:00
|
|
|
* \warning FIXME: We don't translate between cpio and system mode bits! These
|
2000-03-23 23:49:50 +08:00
|
|
|
* should both be the same, but really odd things are going to happen if
|
|
|
|
* that's not true!
|
|
|
|
*/
|
|
|
|
|
1998-07-26 05:00:26 +08:00
|
|
|
#include "system.h"
|
2001-01-23 03:11:19 +08:00
|
|
|
|
2002-04-13 09:28:20 +08:00
|
|
|
#include <rpmio_internal.h>
|
|
|
|
#include <rpmlib.h>
|
|
|
|
|
|
|
|
#include "cpio.h"
|
2001-02-11 00:47:40 +08:00
|
|
|
#include "fsm.h"
|
2002-04-13 09:28:20 +08:00
|
|
|
|
2001-01-04 04:19:27 +08:00
|
|
|
#include "rpmerr.h"
|
2000-12-13 04:03:45 +08:00
|
|
|
#include "debug.h"
|
1997-05-06 04:46:58 +08:00
|
|
|
|
2001-02-05 06:15:30 +08:00
|
|
|
/*@access FSM_t @*/
|
2000-03-23 23:49:50 +08:00
|
|
|
|
2000-10-24 21:46:51 +08:00
|
|
|
/**
|
|
|
|
* Convert string to unsigned integer (with buffer size check).
|
2002-04-09 02:56:01 +08:00
|
|
|
* @param str input string
|
|
|
|
* @retval endptr address of 1st character not processed
|
2000-10-24 21:46:51 +08:00
|
|
|
* @param base numerical conversion base
|
|
|
|
* @param num max no. of bytes to read
|
|
|
|
* @return converted integer
|
|
|
|
*/
|
1999-09-18 05:31:38 +08:00
|
|
|
static int strntoul(const char *str, /*@out@*/char **endptr, int base, int num)
|
2000-08-23 20:39:49 +08:00
|
|
|
/*@modifies *endptr @*/
|
2002-07-03 22:01:49 +08:00
|
|
|
/*@requires maxSet(endptr) >= 0 @*/
|
1999-09-18 05:31:38 +08:00
|
|
|
{
|
1998-03-28 01:23:20 +08:00
|
|
|
char * buf, * end;
|
1998-03-28 01:41:19 +08:00
|
|
|
unsigned long ret;
|
1997-01-04 10:48:55 +08:00
|
|
|
|
|
|
|
buf = alloca(num + 1);
|
|
|
|
strncpy(buf, str, num);
|
|
|
|
buf[num] = '\0';
|
|
|
|
|
1998-03-28 01:23:20 +08:00
|
|
|
ret = strtoul(buf, &end, base);
|
2002-07-03 22:01:49 +08:00
|
|
|
/*@-boundsread@*/ /* LCL: strtoul annotations */
|
2001-04-29 09:05:43 +08:00
|
|
|
if (*end != '\0')
|
1998-12-06 07:22:41 +08:00
|
|
|
*endptr = ((char *)str) + (end - buf); /* XXX discards const */
|
1998-03-28 01:23:20 +08:00
|
|
|
else
|
2001-04-18 02:23:58 +08:00
|
|
|
*endptr = ((char *)str) + strlen(buf);
|
2002-07-03 22:01:49 +08:00
|
|
|
/*@=boundsread@*/
|
1998-03-28 01:23:20 +08:00
|
|
|
|
2000-10-24 21:46:51 +08:00
|
|
|
return ret;
|
1997-01-04 10:48:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#define GET_NUM_FIELD(phys, log) \
|
2002-07-03 22:01:49 +08:00
|
|
|
/*@-boundswrite@*/ \
|
1997-01-04 10:48:55 +08:00
|
|
|
log = strntoul(phys, &end, 16, sizeof(phys)); \
|
2002-07-03 22:01:49 +08:00
|
|
|
/*@=boundswrite@*/ \
|
2001-04-18 02:23:58 +08:00
|
|
|
if ( (end - phys) != sizeof(phys) ) return CPIOERR_BAD_HEADER;
|
1997-07-24 02:07:46 +08:00
|
|
|
#define SET_NUM_FIELD(phys, val, space) \
|
|
|
|
sprintf(space, "%8.8lx", (unsigned long) (val)); \
|
2002-07-03 07:54:35 +08:00
|
|
|
/*@-boundsread@*/ \
|
|
|
|
memcpy(phys, space, 8) \
|
|
|
|
/*@=boundsread@*/
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2001-02-09 07:05:05 +08:00
|
|
|
int cpioTrailerWrite(FSM_t fsm)
|
2001-02-04 10:04:09 +08:00
|
|
|
{
|
|
|
|
struct cpioCrcPhysicalHeader * hdr =
|
|
|
|
(struct cpioCrcPhysicalHeader *)fsm->rdbuf;
|
|
|
|
int rc;
|
|
|
|
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@-boundswrite@*/
|
2001-02-04 10:04:09 +08:00
|
|
|
memset(hdr, '0', PHYS_HDR_SIZE);
|
|
|
|
memcpy(hdr->magic, CPIO_NEWC_MAGIC, sizeof(hdr->magic));
|
|
|
|
memcpy(hdr->nlink, "00000001", 8);
|
|
|
|
memcpy(hdr->namesize, "0000000b", 8);
|
|
|
|
memcpy(fsm->rdbuf + PHYS_HDR_SIZE, CPIO_TRAILER, sizeof(CPIO_TRAILER));
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@=boundswrite@*/
|
2001-02-04 10:04:09 +08:00
|
|
|
|
|
|
|
/* XXX DWRITE uses rdnb for I/O length. */
|
|
|
|
fsm->rdnb = PHYS_HDR_SIZE + sizeof(CPIO_TRAILER);
|
|
|
|
rc = fsmStage(fsm, FSM_DWRITE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GNU cpio pads to 512 bytes here, but we don't. This may matter for
|
|
|
|
* tape device(s) and/or concatenated cpio archives. <shrug>
|
|
|
|
*/
|
|
|
|
if (!rc)
|
|
|
|
rc = fsmStage(fsm, FSM_PAD);
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2001-02-09 07:05:05 +08:00
|
|
|
int cpioHeaderWrite(FSM_t fsm, struct stat * st)
|
2001-02-03 22:30:57 +08:00
|
|
|
{
|
|
|
|
struct cpioCrcPhysicalHeader * hdr = (struct cpioCrcPhysicalHeader *)fsm->rdbuf;
|
|
|
|
char field[64];
|
|
|
|
size_t len;
|
|
|
|
dev_t dev;
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
memcpy(hdr->magic, CPIO_NEWC_MAGIC, sizeof(hdr->magic));
|
|
|
|
SET_NUM_FIELD(hdr->inode, st->st_ino, field);
|
|
|
|
SET_NUM_FIELD(hdr->mode, st->st_mode, field);
|
|
|
|
SET_NUM_FIELD(hdr->uid, st->st_uid, field);
|
|
|
|
SET_NUM_FIELD(hdr->gid, st->st_gid, field);
|
|
|
|
SET_NUM_FIELD(hdr->nlink, st->st_nlink, field);
|
|
|
|
SET_NUM_FIELD(hdr->mtime, st->st_mtime, field);
|
|
|
|
SET_NUM_FIELD(hdr->filesize, st->st_size, field);
|
|
|
|
|
|
|
|
dev = major((unsigned)st->st_dev); SET_NUM_FIELD(hdr->devMajor, dev, field);
|
|
|
|
dev = minor((unsigned)st->st_dev); SET_NUM_FIELD(hdr->devMinor, dev, field);
|
|
|
|
dev = major((unsigned)st->st_rdev); SET_NUM_FIELD(hdr->rdevMajor, dev, field);
|
|
|
|
dev = minor((unsigned)st->st_rdev); SET_NUM_FIELD(hdr->rdevMinor, dev, field);
|
|
|
|
|
|
|
|
len = strlen(fsm->path) + 1; SET_NUM_FIELD(hdr->namesize, len, field);
|
|
|
|
memcpy(hdr->checksum, "00000000", 8);
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@-boundswrite@*/
|
2001-02-03 22:30:57 +08:00
|
|
|
memcpy(fsm->rdbuf + PHYS_HDR_SIZE, fsm->path, len);
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@=boundswrite@*/
|
2001-02-03 22:30:57 +08:00
|
|
|
|
2001-02-04 04:07:39 +08:00
|
|
|
/* XXX DWRITE uses rdnb for I/O length. */
|
2001-02-03 22:30:57 +08:00
|
|
|
fsm->rdnb = PHYS_HDR_SIZE + len;
|
|
|
|
rc = fsmStage(fsm, FSM_DWRITE);
|
|
|
|
if (!rc && fsm->rdnb != fsm->wrnb)
|
|
|
|
rc = CPIOERR_WRITE_FAILED;
|
|
|
|
if (!rc)
|
|
|
|
rc = fsmStage(fsm, FSM_PAD);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2001-02-09 07:05:05 +08:00
|
|
|
int cpioHeaderRead(FSM_t fsm, struct stat * st)
|
2001-02-05 06:15:30 +08:00
|
|
|
/*@modifies fsm, *st @*/
|
1999-09-18 05:31:38 +08:00
|
|
|
{
|
2001-02-03 22:30:57 +08:00
|
|
|
struct cpioCrcPhysicalHeader hdr;
|
1997-01-04 10:48:55 +08:00
|
|
|
int nameSize;
|
|
|
|
char * end;
|
|
|
|
int major, minor;
|
2001-02-03 22:30:57 +08:00
|
|
|
int rc = 0;
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2001-02-03 22:30:57 +08:00
|
|
|
fsm->wrlen = PHYS_HDR_SIZE;
|
|
|
|
rc = fsmStage(fsm, FSM_DREAD);
|
|
|
|
if (!rc && fsm->rdnb != fsm->wrlen)
|
|
|
|
rc = CPIOERR_READ_FAILED;
|
|
|
|
if (rc) return rc;
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@-boundswrite@*/
|
2001-02-03 22:30:57 +08:00
|
|
|
memcpy(&hdr, fsm->wrbuf, fsm->rdnb);
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@=boundswrite@*/
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2001-02-03 22:30:57 +08:00
|
|
|
if (strncmp(CPIO_CRC_MAGIC, hdr.magic, sizeof(CPIO_CRC_MAGIC)-1) &&
|
|
|
|
strncmp(CPIO_NEWC_MAGIC, hdr.magic, sizeof(CPIO_NEWC_MAGIC)-1))
|
1998-12-06 07:22:41 +08:00
|
|
|
return CPIOERR_BAD_MAGIC;
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2001-02-03 22:30:57 +08:00
|
|
|
GET_NUM_FIELD(hdr.inode, st->st_ino);
|
|
|
|
GET_NUM_FIELD(hdr.mode, st->st_mode);
|
|
|
|
GET_NUM_FIELD(hdr.uid, st->st_uid);
|
|
|
|
GET_NUM_FIELD(hdr.gid, st->st_gid);
|
|
|
|
GET_NUM_FIELD(hdr.nlink, st->st_nlink);
|
|
|
|
GET_NUM_FIELD(hdr.mtime, st->st_mtime);
|
|
|
|
GET_NUM_FIELD(hdr.filesize, st->st_size);
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2001-02-03 22:30:57 +08:00
|
|
|
GET_NUM_FIELD(hdr.devMajor, major);
|
|
|
|
GET_NUM_FIELD(hdr.devMinor, minor);
|
2002-01-19 06:51:30 +08:00
|
|
|
/*@-shiftimplementation@*/
|
|
|
|
st->st_dev = makedev(major, minor);
|
|
|
|
/*@=shiftimplementation@*/
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2001-02-03 22:30:57 +08:00
|
|
|
GET_NUM_FIELD(hdr.rdevMajor, major);
|
|
|
|
GET_NUM_FIELD(hdr.rdevMinor, minor);
|
2002-01-19 06:51:30 +08:00
|
|
|
/*@-shiftimplementation@*/
|
|
|
|
st->st_rdev = makedev(major, minor);
|
|
|
|
/*@=shiftimplementation@*/
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2001-02-03 22:30:57 +08:00
|
|
|
GET_NUM_FIELD(hdr.namesize, nameSize);
|
|
|
|
if (nameSize >= fsm->wrsize)
|
|
|
|
return CPIOERR_BAD_HEADER;
|
1997-01-04 10:48:55 +08:00
|
|
|
|
2000-03-23 23:49:50 +08:00
|
|
|
{ char * t = xmalloc(nameSize + 1);
|
2001-02-03 22:30:57 +08:00
|
|
|
fsm->wrlen = nameSize;
|
|
|
|
rc = fsmStage(fsm, FSM_DREAD);
|
|
|
|
if (!rc && fsm->rdnb != fsm->wrlen)
|
|
|
|
rc = CPIOERR_BAD_HEADER;
|
|
|
|
if (rc) {
|
2001-02-11 00:47:40 +08:00
|
|
|
t = _free(t);
|
2001-01-30 06:53:48 +08:00
|
|
|
fsm->path = NULL;
|
2001-02-03 22:30:57 +08:00
|
|
|
return rc;
|
2000-03-23 23:49:50 +08:00
|
|
|
}
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@-boundswrite@*/
|
2001-02-03 22:30:57 +08:00
|
|
|
memcpy(t, fsm->wrbuf, fsm->rdnb);
|
|
|
|
t[nameSize] = '\0';
|
2002-06-23 02:51:56 +08:00
|
|
|
/*@=boundswrite@*/
|
2001-01-30 06:53:48 +08:00
|
|
|
fsm->path = t;
|
1997-01-04 10:48:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-01-21 23:43:32 +08:00
|
|
|
const char *const cpioStrerror(int rc)
|
1998-12-06 07:22:41 +08:00
|
|
|
{
|
|
|
|
static char msg[256];
|
|
|
|
char *s;
|
|
|
|
int l, myerrno = errno;
|
|
|
|
|
|
|
|
strcpy(msg, "cpio: ");
|
2001-10-16 01:53:34 +08:00
|
|
|
/*@-branchstate@*/
|
1998-12-06 07:22:41 +08:00
|
|
|
switch (rc) {
|
|
|
|
default:
|
|
|
|
s = msg + strlen(msg);
|
1999-09-18 05:31:38 +08:00
|
|
|
sprintf(s, _("(error 0x%x)"), (unsigned)rc);
|
1998-12-06 07:22:41 +08:00
|
|
|
s = NULL;
|
|
|
|
break;
|
|
|
|
case CPIOERR_BAD_MAGIC: s = _("Bad magic"); break;
|
1999-01-22 01:18:38 +08:00
|
|
|
case CPIOERR_BAD_HEADER: s = _("Bad/unreadable header");break;
|
1998-12-06 07:22:41 +08:00
|
|
|
|
|
|
|
case CPIOERR_OPEN_FAILED: s = "open"; break;
|
|
|
|
case CPIOERR_CHMOD_FAILED: s = "chmod"; break;
|
|
|
|
case CPIOERR_CHOWN_FAILED: s = "chown"; break;
|
|
|
|
case CPIOERR_WRITE_FAILED: s = "write"; break;
|
|
|
|
case CPIOERR_UTIME_FAILED: s = "utime"; break;
|
|
|
|
case CPIOERR_UNLINK_FAILED: s = "unlink"; break;
|
2001-01-28 10:13:48 +08:00
|
|
|
case CPIOERR_RENAME_FAILED: s = "rename"; break;
|
1998-12-06 07:22:41 +08:00
|
|
|
case CPIOERR_SYMLINK_FAILED: s = "symlink"; break;
|
|
|
|
case CPIOERR_STAT_FAILED: s = "stat"; break;
|
2001-01-28 10:13:48 +08:00
|
|
|
case CPIOERR_LSTAT_FAILED: s = "lstat"; break;
|
1998-12-06 07:22:41 +08:00
|
|
|
case CPIOERR_MKDIR_FAILED: s = "mkdir"; break;
|
2001-01-28 10:13:48 +08:00
|
|
|
case CPIOERR_RMDIR_FAILED: s = "rmdir"; break;
|
1998-12-06 07:22:41 +08:00
|
|
|
case CPIOERR_MKNOD_FAILED: s = "mknod"; break;
|
|
|
|
case CPIOERR_MKFIFO_FAILED: s = "mkfifo"; break;
|
|
|
|
case CPIOERR_LINK_FAILED: s = "link"; break;
|
|
|
|
case CPIOERR_READLINK_FAILED: s = "readlink"; break;
|
|
|
|
case CPIOERR_READ_FAILED: s = "read"; break;
|
|
|
|
case CPIOERR_COPY_FAILED: s = "copy"; break;
|
|
|
|
|
|
|
|
case CPIOERR_HDR_SIZE: s = _("Header size too big"); break;
|
|
|
|
case CPIOERR_UNKNOWN_FILETYPE: s = _("Unknown file type"); break;
|
2001-06-20 14:29:20 +08:00
|
|
|
case CPIOERR_MISSING_HARDLINK: s = _("Missing hard link(s)"); break;
|
2000-10-24 21:46:51 +08:00
|
|
|
case CPIOERR_MD5SUM_MISMATCH: s = _("MD5 sum mismatch"); break;
|
1999-05-12 04:05:43 +08:00
|
|
|
case CPIOERR_INTERNAL: s = _("Internal error"); break;
|
2001-07-25 04:39:19 +08:00
|
|
|
case CPIOERR_UNMAPPED_FILE: s = _("Archive file not in header"); break;
|
1998-12-06 07:22:41 +08:00
|
|
|
}
|
2001-10-16 01:53:34 +08:00
|
|
|
/*@=branchstate@*/
|
1998-12-06 07:22:41 +08:00
|
|
|
|
|
|
|
l = sizeof(msg) - strlen(msg) - 1;
|
|
|
|
if (s != NULL) {
|
|
|
|
if (l > 0) strncat(msg, s, l);
|
|
|
|
l -= strlen(s);
|
|
|
|
}
|
2001-10-16 01:53:34 +08:00
|
|
|
/*@-branchstate@*/
|
2000-01-25 06:13:45 +08:00
|
|
|
if ((rc & CPIOERR_CHECK_ERRNO) && myerrno) {
|
1998-12-06 07:22:41 +08:00
|
|
|
s = _(" failed - ");
|
|
|
|
if (l > 0) strncat(msg, s, l);
|
|
|
|
l -= strlen(s);
|
|
|
|
if (l > 0) strncat(msg, strerror(myerrno), l);
|
|
|
|
}
|
2001-10-16 01:53:34 +08:00
|
|
|
/*@=branchstate@*/
|
1998-12-06 07:22:41 +08:00
|
|
|
return msg;
|
|
|
|
}
|