Skip to content

ErrStack is a linter for Go that checks for unnecessary error wrapping using `errors.Wrap`, `errors.Wrapf`, and `errors.WithStack`.

License

Notifications You must be signed in to change notification settings

AdamBrianBright/errstack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ErrStack

ErrStack is a linter for Go that checks for unnecessary error wrapping using errors.Wrap, errors.Wrapf, and errors.WithStack.

It is created as a complement to the wrapcheck linter.

Installation

Go >= v1.21

go install github.com/AdamBrianBright/errstack/cmd/errstack@latest

ErrStack can be used as a module for golangci-lint.

Configuration

You can configure ErrStack using the .errstack.yaml file in your project root, or in your home directory.

# List of functions that are considered to wrap errors.
# If you're using some fancy error wrapping library like github.com/pkg/errors,
# you may want to add it to this list.
# If you want to ignore some functions, simply don't add them to the list.
wrapperFunctions:
  - pkg: github.com/pkg/errors
    funcs:
      - New
      - Errorf
      - Wrap
      - Wrapf
      - WithStack
cleanFunctions:
  - pkg: fmt
    funcs:
      - Errorf
  - pkg: errors
    funcs:
      - New
  - pkg: github.com/pkg/errors
    funcs:
      - WithMessage
      - WithMessagef
# Threshold in percentage for the number of branches returning wrapped errors to be considered a violation.
# Default value is 50%. Max is 100%.
# That means that if there are 3 sources of error that are non-wrapped and one that is wrapped, ErrStack will report an error.
# On the other hand, if there are 4 wrapped sources and only one non-wrapped source, ErrStack will not report an error.
threshold: .5
# Maximum stack depth to check for before giving up.
# May impact performance on large codebases and high value.
# Default value is 5. Max is 50.
maxStackDepth: 5

Usage

To lint all the packages in your project, run:

errstack ./...

Testing

This linter is tested using analysistest, you can view all the test cases under testdata directory.

Why?

If you're using some fancy error wrapping library like github.com/pkg/errors, you may have stumbled upon doubling or tripling the amount of stacktrace duplicates in your logs.

This happens because the library wraps errors in context style, hiding stacktraces from the user in unexported structs and fields like russian dolls.

When doing so, libraries don't check for stacktraces already present in the error, since it is usually not necessary and only slows down your code.

However, if you're using libraries out of your control, you may not be able to easily identify whether some functions may return wrapped errors or not, and just wrap errors from external packages like wrapcheck suggests anyways.

This linter helps you to identify such cases, and help you remove unnecessary wrapping.

How does it work?

ErrStack finds all calls to configured list of wrapping functions in your code and finds the source of the error.

When the source of an error is located up to it's root (assigment statement, or return statement with errors.New() passed as an argument), it check if the error was wrapped, excluding nil errors.

!!! This linter doesn't verify the actual types as it's almost impossible to do so and usually pointless.

Linter calculates the amount of non-nil branches and prints a warning if it's greater than the configured threshold.

Example

package main

import (
	"github.com/pkg/errors"
)

func main() {
	_ = testDoubleReturnWrapStack()
}

func testDoubleReturnWrapStack() error {
	return errors.Wrap(errors.WithStack(nil), "wrapped") // want `WithStack call unnecessarily wraps error with stacktrace. Replace with errors.WithMessage()`
}

About

ErrStack is a linter for Go that checks for unnecessary error wrapping using `errors.Wrap`, `errors.Wrapf`, and `errors.WithStack`.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages