Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime: panic leaves memory in unpredictable state #1304

Closed
niemeyer opened this issue Nov 28, 2010 · 9 comments
Closed

runtime: panic leaves memory in unpredictable state #1304

niemeyer opened this issue Nov 28, 2010 · 9 comments
Milestone

Comments

@niemeyer
Copy link
Contributor

As Mikael Tillenius reported in the mailing list, runtime panics may leave global
variables in an unpredictable state.  The following program, for instance, will print
"a = 1", rather than most expected "a = 2".

package main

var a = 1

func main() {
    defer func() {
        recover()
        println("a =", a)
    }()
    a = 2
    a = a/0
    a = 3
}

As a consequence, even if panics are recovered, when there is interaction with global
variables, they may leave the system in an unpredictable state.  Due to the nature of
the problem, not even synchronization primitives will make the behavior predictable.

At the very least, the issue should be documented in the specification and memory model.
@peterGo
Copy link
Contributor

peterGo commented Nov 28, 2010

Comment 1:

What does "happen before" exactly mean?
http://groups.google.com/group/golang-nuts/browse_thread/thread/1e63592fe6eef803

@griesemer
Copy link
Contributor

Comment 2:

This is an implementation error. The language spec clearly says that a division by zero
acts the same as a direct call to panic (
http://golang.org/doc/go_spec.html#Run_time_panics ). This is a single-threaded program;
the main function does start only after any initialization thread has terminated. The
results should be 2.

Labels changed: added priority-low, removed priority-medium.

Status changed to Accepted.

@rsc
Copy link
Contributor

rsc commented Dec 13, 2010

Comment 3:

There are two possible fixes.  One is to flush global writes
before doing anything that might panic, such as dereferencing
a pointer or dividing.  The other is to record enough information
that the trap handler can flush the registers back to their
global variable destinations.
We plan to do one of them eventually.

Owner changed to r...@golang.org.

Status changed to LongTerm.

@rsc
Copy link
Contributor

rsc commented Dec 9, 2011

Comment 4:

Labels changed: added priority-someday.

@rsc
Copy link
Contributor

rsc commented Dec 12, 2011

Comment 5:

Labels changed: added priority-go1.

@robpike
Copy link
Contributor

robpike commented Jan 13, 2012

Comment 6:

Owner changed to builder@golang.org.

@rsc
Copy link
Contributor

rsc commented Jan 30, 2012

Comment 8:

Labels changed: added go1-must.

@rsc
Copy link
Contributor

rsc commented Feb 20, 2012

Comment 9:

This issue was closed by revision 8998835.

Status changed to Fixed.

@gopherbot
Copy link
Contributor

Comment 10:

CL https://golang.org/cl/97500044 mentions this issue.

@rsc rsc added this to the Go1 milestone Apr 10, 2015
@golang golang locked and limited conversation to collaborators Jun 24, 2016
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

6 participants