pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
pkg/45044: archivers/libarchive minix support
>Number: 45044
>Category: pkg
>Synopsis: archivers/libarchive minix support
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: pkg-manager
>State: open
>Class: change-request
>Submitter-Id: net
>Arrival-Date: Fri Jun 10 15:20:00 +0000 2011
>Originator: Thomas Cort
>Release: N/A
>Organization:
Minix3
>Environment:
Minix 192.168.122.210 3.2.0 i686
>Description:
Minix UIDs are 16-bits and Minix GIDs are 8-bits. The tar format supports much
larger UIDs/GIDs. libarchive should handle the case where the UIDs/GIDs
overflow the archive_entry uid/gid fields by setting the uid/gid to something
valid (example: the uid of the nobody user and the gid of the nobody group) and
it should produce a warning when doing so.
>How-To-Repeat:
Compile libarchive on Minix and attempt to extract files with large uid/gid
values from a tar archive.
>Fix:
diff --git
a/archivers/libarchive/files/libarchive/archive_read_support_format_tar.c
b/archivers/libarchive/files/libarchive/archive_read_support_format_tar.c
index dae13dc..882672a 100644
--- a/archivers/libarchive/files/libarchive/archive_read_support_format_tar.c
+++ b/archivers/libarchive/files/libarchive/archive_read_support_format_tar.c
@@ -26,6 +26,9 @@
#include "archive_platform.h"
__FBSDID("$FreeBSD: head/lib/libarchive/archive_read_support_format_tar.c
201161 2009-12-29 05:44:39Z kientzle $");
+#include <grp.h>
+#include <pwd.h>
+
#ifdef HAVE_ERRNO_H
#include <errno.h>
#endif
@@ -917,8 +920,11 @@ static int
header_common(struct archive_read *a, struct tar *tar,
struct archive_entry *entry, const void *h)
{
+ int err = ARCHIVE_OK;
const struct archive_entry_header_ustar *header;
char tartype;
+ uid_t uid;
+ gid_t gid;
(void)a; /* UNUSED */
@@ -931,8 +937,85 @@ header_common(struct archive_read *a, struct tar *tar,
/* Parse out the numeric fields (all are octal) */
archive_entry_set_mode(entry, tar_atol(header->mode,
sizeof(header->mode)));
- archive_entry_set_uid(entry, tar_atol(header->uid,
sizeof(header->uid)));
- archive_entry_set_gid(entry, tar_atol(header->gid,
sizeof(header->gid)));
+
+ uid = (uid_t) tar_atol(header->uid, sizeof(header->uid));
+
+ /* Sanity check: uid overflow. Some systems have a limited uid_t.
+ * For example, Minix 3.2.0 has 16-bit uids.
+ */
+ if (uid != tar_atol(header->uid, sizeof(header->uid))) {
+
+ /* This isn't a fatal error, so we try to set the uid to
+ * the uid of the "nobody" user or 99.
+ */
+
+ static int warned = 0;
+ static struct passwd *nobodyuser = NULL;
+
+ if (nobodyuser == NULL) {
+ nobodyuser = getpwnam("nobody");
+ }
+
+ if (nobodyuser != NULL) {
+ uid = nobodyuser->pw_uid;
+ } else {
+ uid = (uid_t) 99;
+ }
+
+ if (warned == 0) {
+ archive_set_error(&a->archive, EINVAL,
+ "uid %ld out of range; will be extracted as
%d.",
+ tar_atol(header->uid, sizeof(header->uid)),
+ uid);
+
+ warned = 1; /* only warn once about invalid uid */
+ err = ARCHIVE_WARN;
+ }
+ }
+
+ archive_entry_set_uid(entry, uid);
+
+ gid = (gid_t) tar_atol(header->gid, sizeof(header->gid));
+
+ /* Sanity check: gid overflow. Some systems have a limited gid_t.
+ * For example, Minix 3.2.0 has 8-bit gids.
+ */
+ if (gid != tar_atol(header->gid, sizeof(header->gid))) {
+
+ /* This isn't a fatal error, so we try to set the gid to
+ * the gid of the "nobody" or "nogroup" group or 99.
+ */
+
+ static int warned = 0;
+ static struct group *nobodygroup = NULL;
+
+ if (nobodygroup == NULL) {
+
+ nobodygroup = getgrnam("nobody");
+ if (nobodygroup == NULL) {
+ nobodygroup = getgrnam("nogroup");
+ }
+ }
+
+ if (nobodygroup != NULL) {
+ gid = nobodygroup->gr_gid;
+ } else {
+ gid = (gid_t) 99;
+ }
+
+ if (warned == 0) {
+ archive_set_error(&a->archive, EINVAL,
+ "gid %ld out of range; will be extracted as %d",
+ tar_atol(header->gid, sizeof(header->gid)),
+ gid);
+
+ warned = 1; /* only warn once about invalid gid */
+ err = ARCHIVE_WARN;
+ }
+ }
+
+ archive_entry_set_gid(entry, gid);
+
tar->entry_bytes_remaining = tar_atol(header->size,
sizeof(header->size));
tar->realsize = tar->entry_bytes_remaining;
archive_entry_set_size(entry, tar->entry_bytes_remaining);
@@ -1063,7 +1146,8 @@ header_common(struct archive_read *a, struct tar *tar,
archive_entry_set_filetype(entry, AE_IFREG);
break;
}
- return (0);
+
+ return err;
}
/*
@@ -1073,6 +1157,7 @@ static int
header_old_tar(struct archive_read *a, struct tar *tar,
struct archive_entry *entry, const void *h)
{
+ int err;
const struct archive_entry_header_ustar *header;
/* Copy filename over (to ensure null termination). */
@@ -1081,10 +1166,10 @@ header_old_tar(struct archive_read *a, struct tar *tar,
archive_entry_copy_pathname(entry, tar->entry_pathname.s);
/* Grab rest of common fields */
- header_common(a, tar, entry, h);
+ err = header_common(a, tar, entry, h);
tar->entry_padding = 0x1ff & (-tar->entry_bytes_remaining);
- return (0);
+ return err;
}
/*
@@ -1143,6 +1228,7 @@ static int
header_ustar(struct archive_read *a, struct tar *tar,
struct archive_entry *entry, const void *h)
{
+ int err;
const struct archive_entry_header_ustar *header;
struct archive_string *as;
@@ -1161,7 +1247,7 @@ header_ustar(struct archive_read *a, struct tar *tar,
archive_entry_copy_pathname(entry, as->s);
/* Handle rest of common fields. */
- header_common(a, tar, entry, h);
+ err = header_common(a, tar, entry, h);
/* Handle POSIX ustar fields. */
archive_strncpy(&(tar->entry_uname), header->uname,
@@ -1182,7 +1268,7 @@ header_ustar(struct archive_read *a, struct tar *tar,
tar->entry_padding = 0x1ff & (-tar->entry_bytes_remaining);
- return (0);
+ return err;
}
@@ -1662,6 +1748,7 @@ static int
header_gnutar(struct archive_read *a, struct tar *tar,
struct archive_entry *entry, const void *h)
{
+ int err;
const struct archive_entry_header_gnutar *header;
(void)a;
@@ -1673,7 +1760,7 @@ header_gnutar(struct archive_read *a, struct tar *tar,
*/
/* Grab fields common to all tar variants. */
- header_common(a, tar, entry, h);
+ err = header_common(a, tar, entry, h);
/* Copy filename over (to ensure null termination). */
header = (const struct archive_entry_header_gnutar *)h;
@@ -1723,7 +1810,7 @@ header_gnutar(struct archive_read *a, struct tar *tar,
}
}
- return (0);
+ return err;
}
static void
Home |
Main Index |
Thread Index |
Old Index