-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
error.go
209 lines (184 loc) · 7.46 KB
/
error.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// Copyright 2019 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package execerror
import (
"bufio"
"context"
"fmt"
"runtime/debug"
"strings"
"github.com/cockroachdb/cockroach/pkg/sql/pgwire/pgcode"
"github.com/cockroachdb/cockroach/pkg/sql/pgwire/pgerror"
"github.com/cockroachdb/cockroach/pkg/util/causer"
"github.com/cockroachdb/errors"
"github.com/gogo/protobuf/proto"
)
const panicLineSubstring = "runtime/panic.go"
// CatchVectorizedRuntimeError executes operation, catches a runtime error if
// it is coming from the vectorized engine, and returns it. If an error not
// related to the vectorized engine occurs, it is not recovered from.
func CatchVectorizedRuntimeError(operation func()) (retErr error) {
defer func() {
panicObj := recover()
if panicObj == nil {
// No panic happened, so the operation must have been executed
// successfully.
return
}
// Find where the panic came from and only proceed if it is related to the
// vectorized engine.
stackTrace := string(debug.Stack())
scanner := bufio.NewScanner(strings.NewReader(stackTrace))
panicLineFound := false
for scanner.Scan() {
if strings.Contains(scanner.Text(), panicLineSubstring) {
panicLineFound = true
break
}
}
if !panicLineFound {
panic(fmt.Sprintf("panic line %q not found in the stack trace\n%s", panicLineSubstring, stackTrace))
}
if !scanner.Scan() {
panic(fmt.Sprintf("unexpectedly there is no line below the panic line in the stack trace\n%s", stackTrace))
}
panicEmittedFrom := strings.TrimSpace(scanner.Text())
if !isPanicFromVectorizedEngine(panicEmittedFrom) {
// Do not recover from the panic not related to the vectorized
// engine.
panic(panicObj)
}
err, ok := panicObj.(error)
if !ok {
// Not an error object. Definitely unexpected.
retErr = errors.AssertionFailedf("unexpected error from the vectorized runtime: %+v", panicObj)
return
}
retErr = err
if _, ok := panicObj.(*StorageError); ok {
// A StorageError was caused by something below SQL, and represents
// an error that we'd simply like to propagate along.
// Do nothing.
return
}
annotateErrorWithoutCode := true
var nvie *notVectorizedInternalError
if errors.As(err, &nvie) {
// A notVectorizedInternalError was not caused by the
// vectorized engine and represents an error that we don't
// want to annotate in case it doesn't have a valid PG code.
annotateErrorWithoutCode = false
}
if code := pgerror.GetPGCode(err); annotateErrorWithoutCode && code == pgcode.Uncategorized {
// Any error without a code already is "surprising" and
// needs to be annotated to indicate that it was
// unexpected.
retErr = errors.NewAssertionErrorWithWrappedErrf(err, "unexpected error from the vectorized runtime")
}
}()
operation()
return retErr
}
const (
colPackagePrefix = "github.com/cockroachdb/cockroach/pkg/col"
colcontainerPackagePrefix = "github.com/cockroachdb/cockroach/pkg/sql/colcontainer"
colexecPackagePrefix = "github.com/cockroachdb/cockroach/pkg/sql/colexec"
colflowsetupPackagePrefix = "github.com/cockroachdb/cockroach/pkg/sql/colflow"
execinfraPackagePrefix = "github.com/cockroachdb/cockroach/pkg/sql/execinfra"
rowexecPackagePrefix = "github.com/cockroachdb/cockroach/pkg/sql/rowexec"
treePackagePrefix = "github.com/cockroachdb/cockroach/pkg/sql/sem/tree"
)
// isPanicFromVectorizedEngine checks whether the panic that was emitted from
// panicEmittedFrom line of code (which includes package name as well as the
// file name and the line number) came from the vectorized engine.
// panicEmittedFrom must be trimmed to not have any white spaces in the prefix.
func isPanicFromVectorizedEngine(panicEmittedFrom string) bool {
const testExceptionPrefix = "github.com/cockroachdb/cockroach/pkg/sql/colflow_test.(*testNonVectorizedPanicEmitter)"
if strings.HasPrefix(panicEmittedFrom, testExceptionPrefix) {
// Although the panic appears to be coming from the vectorized engine, it
// is intended to not be caught in order to test the panic propagation, so
// we say that the panic is not from the vectorized engine.
return false
}
return strings.HasPrefix(panicEmittedFrom, colPackagePrefix) ||
strings.HasPrefix(panicEmittedFrom, colcontainerPackagePrefix) ||
strings.HasPrefix(panicEmittedFrom, colexecPackagePrefix) ||
strings.HasPrefix(panicEmittedFrom, colflowsetupPackagePrefix) ||
strings.HasPrefix(panicEmittedFrom, execinfraPackagePrefix) ||
strings.HasPrefix(panicEmittedFrom, rowexecPackagePrefix) ||
strings.HasPrefix(panicEmittedFrom, treePackagePrefix)
}
// StorageError is an error that was created by a component below the sql
// stack, such as the network or storage layers. A StorageError will be bubbled
// up all the way past the SQL layer unchanged.
type StorageError struct {
error
}
// Cause implements the Causer interface.
func (s *StorageError) Cause() error {
return s.error
}
// NewStorageError returns a new storage error. This can be used to propagate
// an error through the exec subsystem unchanged.
func NewStorageError(err error) *StorageError {
return &StorageError{error: err}
}
// notVectorizedInternalError is an error that originated outside of the
// vectorized engine (for example, it was caused by a non-columnar builtin).
// notVectorizedInternalError will be returned to the client not as an
// "internal error" and without the stack trace.
type notVectorizedInternalError struct {
cause error
}
func newNotVectorizedInternalError(err error) *notVectorizedInternalError {
return ¬VectorizedInternalError{cause: err}
}
var (
_ causer.Causer = ¬VectorizedInternalError{}
_ errors.Wrapper = ¬VectorizedInternalError{}
)
func (e *notVectorizedInternalError) Error() string {
return e.cause.Error()
}
func (e *notVectorizedInternalError) Cause() error {
return e.cause
}
func (e *notVectorizedInternalError) Unwrap() error {
return e.Cause()
}
func decodeNotVectorizedInternalError(
_ context.Context, cause error, _ string, _ []string, _ proto.Message,
) error {
return newNotVectorizedInternalError(cause)
}
func init() {
errors.RegisterWrapperDecoder(errors.GetTypeKey((*notVectorizedInternalError)(nil)), decodeNotVectorizedInternalError)
}
// VectorizedInternalPanic simply panics with the provided object. It will
// always be returned as internal error to the client with the corresponding
// stack trace. This method should be called to propagate all *unexpected*
// errors that originated within the vectorized engine.
func VectorizedInternalPanic(err interface{}) {
panic(err)
}
// VectorizedExpectedInternalPanic is the same as NonVectorizedPanic. It should
// be called to propagate all *expected* errors that originated within the
// vectorized engine.
func VectorizedExpectedInternalPanic(err error) {
NonVectorizedPanic(err)
}
// NonVectorizedPanic panics with the error that is wrapped by
// notVectorizedInternalError which will not be treated as internal error and
// will not have a printed out stack trace. This method should be called to
// propagate all errors that originated outside of the vectorized engine and
// all expected errors from the vectorized engine.
func NonVectorizedPanic(err error) {
panic(newNotVectorizedInternalError(err))
}