Project

General

Profile

Actions

Optimization #3160

closed

clean up error codes

Added by Victor Julien over 4 years ago. Updated over 1 year ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Effort:
Difficulty:
Label:

Description

The list of error codes defined in util-error.h is massive and often not very helpful. One of the original ideas was to have a list of unique codes, but that hasn't materialized. The codes are often reused, lots are redundant and some may be unused.

Also, the codes often don't add all that much to the per error/warning custom message.

Consider a much simpler scheme. E.g. something like the errno approach (or perhaps exactly this).


Related issues 1 (0 open1 closed)

Related to Suricata - Feature #2497: error messages usability improvementClosedJeff LucovskyActions
Actions #1

Updated by Jason Ish over 4 years ago

By the errno approach are you referring to a more limited set of error codes? Or something functional like a thread local error variable as well?

Actions #2

Updated by Victor Julien over 4 years ago

Was thinking about a limited set of codes (EINVAL, ENOMEM, ENOENT, etc). But it would be good to consider how these errors would be passed along too.

Actions #3

Updated by Jason Ish about 4 years ago

Have been thinking about this one recently, so some points of discussion.

Do you have find that having the error code in the log message is very useful at all? I don't find it that useful, and its not something you see in most modern software systems (outside stuff like Microsoft, or Cisco where they do have a unique code for each error across the entire system). The other thing to consider is that SCLogWarn requires a code, where I don't think it always makes sense to have one.

But a set of error codes does make sense for passing things around to keep some context. This way we can avoid logging where the error occurred, and pass back an error code (would return values < 0 work for this)? In Rust it is idiomatic to use an enum of possible failures with the result type, so we could have a pretty close usage pattern.

I'd also like to suggest forgetting about the stability of the error code number? Does anything depend on this? It would be very nice if we could have our set of codes alphabetized, and not worry about their action value (or in Rust, where idiomatically they wouldn't have an integer value - but we can give them one).

Actions #4

Updated by Jason Ish over 3 years ago

  • Related to Feature #2497: error messages usability improvement added
Actions #5

Updated by Jason Ish over 1 year ago

Jason Ish wrote in #note-3:

I'd also like to suggest forgetting about the stability of the error code number? Does anything depend on this? It would be very nice if we could have our set of codes alphabetized, and not worry about their action value (or in Rust, where idiomatically they wouldn't have an integer value - but we can give them one).

Or drop the error code from log messages.

Actions #6

Updated by Victor Julien over 1 year ago

  • Status changed from New to Closed
  • Assignee changed from OISF Dev to Victor Julien
  • Target version changed from TBD to 7.0.0-rc1
Actions

Also available in: Atom PDF