Bug 612232
| Summary: | Net Installer Crashed After Retrieving install.img | ||
|---|---|---|---|
| Product: | Red Hat Enterprise Linux 6 | Reporter: | Alexander Todorov <atodorov> |
| Component: | policycoreutils | Assignee: | Daniel Walsh <dwalsh> |
| Status: | CLOSED NOTABUG | QA Contact: | BaseOS QE Security Team <qe-baseos-security> |
| Severity: | medium | Docs Contact: | |
| Priority: | high | ||
| Version: | 6.0 | CC: | dwalsh, ebenes |
| Target Milestone: | rc | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | 599457 | Environment: | |
| Last Closed: | 2010-07-14 15:53:32 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 609517 | ||
|
Description
Alexander Todorov
2010-07-07 15:58:46 UTC
I've hit this with snapshot #7 on a ASUS eeePC (i386) laptop. Tre backtrace happend right after install.img was downloaded. Looks like: Loader exited unexpectedly! Backtrace: /sbin/loader[0x804f9ae] /sbin/loader[0x804fa64] /lib/libc.so.6(exit+0xdf)[0x73546f] /sbin/loader[0x8058c04] /sbin/loader[0x8052735] /lib/libc.so.6(__libc_start_main+0xe6)[0x71dcc6] /sbin/loader[0x804d1d1] Running anaconda 13.21.56, the Red Hat Enterprise Linux system installer - please wait. exec of anaconda failed: Exec format error install exited abnormally [1/1] The system will be rebooted when you press Ctrl-C or Ctrl-Alt-Delete. I will try to attach screenshots of tty3 and 4 later. Right now I don't have a camera available. dcantrel@mitre loader$ eu-addr2line -e loader.debug
0x804f9ae
/usr/src/debug/anaconda-13.21.56/loader/loader.c:1736
0x804fa64
/usr/src/debug/anaconda-13.21.56/loader/loader.c:1746
0x8058c04
/usr/src/debug/anaconda-13.21.56/loader/selinux.c:47
0x8052735
/usr/src/debug/anaconda-13.21.56/loader/loader.c:2176
0x804d1d1
??:0
And from loader/selinux.c:
37 int loadpolicy() {
38 int pid, status;
39
40 logMessage(INFO, "Loading SELinux policy");
41
42 if (!(pid = fork())) {
43 setenv("LD_LIBRARY_PATH", LIBPATH, 1);
44 execl("/sbin/load_policy",
45 "/sbin/load_policy", "-q", NULL);
46 logMessage(ERROR, "exec of load_policy failed: %m");
47 exit(1);
48 }
49
50 waitpid(pid, &status, 0);
51 if (WIFEXITED(status) && (WEXITSTATUS(status) != 0))
52 return 1;
53
54 return 0;
55 }
Reassigning to policycoreutils.
David, do you have any idea what is going on? (In reply to comment #1) > I've hit this with snapshot #7 on a ASUS eeePC (i386) laptop. Tre backtrace > happend right after install.img was downloaded. Looks like: > > Loader exited unexpectedly! Backtrace: > /sbin/loader[0x804f9ae] > /sbin/loader[0x804fa64] > /lib/libc.so.6(exit+0xdf)[0x73546f] > /sbin/loader[0x8058c04] > /sbin/loader[0x8052735] > /lib/libc.so.6(__libc_start_main+0xe6)[0x71dcc6] > /sbin/loader[0x804d1d1] > Running anaconda 13.21.56, the Red Hat Enterprise Linux system installer - > please wait. > exec of anaconda failed: Exec format error Scratch original analysis. This is not a load_policy problem. Looks like you're using the wrong install.img. 'Exec format error' means you likely pointed the install media to an x86_64 tree. |