Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
+++ This bug was initially created as a clone of Bug #675694 +++
Description of problem:
blkid crashes on a server with more than 128 storage devices
Version-Release number of selected component (if applicable):
upstream
How reproducible:
always
Steps to Reproduce:
1.blkid -c /dev/<list of storage device, more than 128>
Actual results:
craash
Expected results:
should'nt crash
Additional info:
$ vim e2fsprogs-1.39/misc/blkid.c
92 int main(int argc, char **argv)
93 {
94 blkid_cache cache = NULL;
95 char *devices[128] = { NULL, };
96 char *show[128] = { NULL, };
<--- bad mojo, 128 device artificial limit.
97 char *search_type = NULL, *search_value = NULL;
98 char *read = NULL;
update the limit to a higher value ( say 8192) as shown below
95 char *devices[8192] = { NULL, };
96 char *show[8192] = { NULL, };
--- Additional comment from esandeen on 2011-02-07 18:01:34 EST ---
Yep, that's no good.
We'll need something more flexible than just increasing the artificial limit, though.
--- Additional comment from esandeen on 2011-02-08 10:09:04 EST ---
I've sent a patch upstream (to util-linux-ng) for this, and kzak committed it. Once it shows up in git I'll pull it back & put it into rhel5.
Also, will dup this to rhel6.
The "show" array is OK, because:
case 's':
if (numtag + 1 >= sizeof(show) / sizeof(*show)) {
fprintf(stderr, "Too many tags specified\n");
usage(err);
}
show[numtag++] = optarg;
show[numtag] = NULL;
break;
if the index grows past the size of the array, it will error out.
From: Eric Sandeen <sandeen>
Date: Tue, 8 Feb 2011 05:44:26 +0000 (-0600)
Subject: blkid: dynamically allocate devicename array
X-Git-Url: http://git.kernel.org/?p=utils%2Futil-linux%2Futil-linux.git;a=commitdiff_plain;h=ea51c09c11f7110eca54fa35ab5ac51a7635c8c2
blkid: dynamically allocate devicename array
If more than 128 devices are specified on the blkid cmdline,
the devices[] array will overflow.
We can dynamically allocate the devices[] array based on number
of arguments to avoid this problem.
[kzak: - add "if (optind < argc)" check]
Signed-off-by: Eric Sandeen <sandeen>
Signed-off-by: Karel Zak <kzak>
---
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory, and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
http://rhn.redhat.com/errata/RHSA-2011-1691.html