Bug 690951 - [abrt] expect-5.44.1.15-1.fc14: Tcl_NotifyChannel: Process /usr/bin/expect was killed by signal 11 (SIGSEGV)
Summary: [abrt] expect-5.44.1.15-1.fc14: Tcl_NotifyChannel: Process /usr/bin/expect wa...
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Fedora
Classification: Fedora
Component: expect
Version: 14
Hardware: x86_64
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Vitezslav Crhonek
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard: abrt_hash:e47fee6cab857447f50c442ecc8...
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2011-03-25 22:30 UTC by Corey Ashford
Modified: 2012-08-16 21:36 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2012-08-16 21:36:17 UTC
Type: ---


Attachments (Terms of Use)
File: backtrace (16.10 KB, text/plain)
2011-03-25 22:30 UTC, Corey Ashford
no flags Details

Description Corey Ashford 2011-03-25 22:30:34 UTC
abrt version: 1.1.17
architecture: x86_64
Attached file: backtrace, 16486 bytes
cmdline: /usr/bin/expect /home/corey/bin/bso c250r4l01.ppd.pok.ibm.com vervain.rchland.ibm.com elm3a85.beaverton.ibm.com elm3b4.beaverton.ibm.com js12c.ltc.austin.ibm.com vault.raleigh.ibm.com 9.42.248.98
component: expect
Attached file: coredump, 802816 bytes
crash_function: Tcl_NotifyChannel
executable: /usr/bin/expect
kernel: 2.6.35.11-83.fc14.x86_64
package: expect-5.44.1.15-1.fc14
rating: 4
reason: Process /usr/bin/expect was killed by signal 11 (SIGSEGV)
release: Fedora release 14 (Laughlin)
time: 1300817327
uid: 500

comment
-----
Source code of the script is as follows:
#! /usr/bin/expect

source $env(HOME)/.bso  <--- sets user name and password

foreach { machine } $argv {

	spawn telnet $machine
	set telnet_id $spawn_id
	set timeout 7
        
	expect {
		-i $spawn_id
		-exact "Connection refused" {
			send_user "\n$machine's BSO appears to be open already.\n"
			continue
		}

		-exact "No route to host" {
			send_user "\n$machine's BSO appears to be open already.\n"
			continue
		}
		-exact "Unknown host" {
			send_user "\n$machine doesn't exist.\n"
			exit
			continue
		}
			
		-exact "Username: " {
			send "$user\r"
		}
			
		timeout {
			send_user "\n$machine doesn't seem to be responding to telnet.  Maybe its BSO is already open.\n"
			continue
		}
	}
	expect {
		-i $spawn_id
		-exact "Password: " {
			send "$password\r"
		}
			
		timeout {
			send_user "\n$machine is not giving a password prompt (??)\n"
			continue
		}
	}
	expect {
		-i $spawn_id
		-exact "Successful" {}
		-exact "Error" {
			send_user "\n$machine doesn't want to log us in.\n"
			continue
		}
			
		timeout {
			send_user "\n$machine doesn't want to log us in.\n"
			close $spawn_id
			continue
		}
	}
}

How to reproduce
-----
1.I just ran my expect script.
2.
3.

Comment 1 Corey Ashford 2011-03-25 22:30:37 UTC
Created attachment 487689 [details]
File: backtrace

Comment 2 Fedora End Of Life 2012-08-16 21:36:19 UTC
This message is a notice that Fedora 14 is now at end of life. Fedora 
has stopped maintaining and issuing updates for Fedora 14. It is 
Fedora's policy to close all bug reports from releases that are no 
longer maintained.  At this time, all open bugs with a Fedora 'version'
of '14' have been closed as WONTFIX.

(Please note: Our normal process is to give advanced warning of this 
occurring, but we forgot to do that. A thousand apologies.)

Package Maintainer: If you wish for this bug to remain open because you
plan to fix it in a currently maintained version, feel free to reopen 
this bug and simply change the 'version' to a later Fedora version.

Bug Reporter: Thank you for reporting this issue and we are sorry that 
we were unable to fix it before Fedora 14 reached end of life. If you 
would still like to see this bug fixed and are able to reproduce it 
against a later version of Fedora, you are encouraged to click on 
"Clone This Bug" (top right of this page) and open it against that 
version of Fedora.

Although we aim to fix as many bugs as possible during every release's 
lifetime, sometimes those efforts are overtaken by events.  Often a 
more recent Fedora release includes newer upstream software that fixes 
bugs or makes them obsolete.

The process we are following is described here: 
http://fedoraproject.org/wiki/BugZappers/HouseKeeping


Note You need to log in before you can comment on or make changes to this bug.