From e75d742afeadb0083c4abb1f3e03d982bf50c344 Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Fri, 8 Jul 2022 11:01:44 +0100 Subject: [PATCH] [chore] Improve panic handling (#700) * add miekg/dns dependency * set/validate accountDomain * move finger to dereferencer * totally break GetRemoteAccount * start reworking finger func a bit * start reworking getRemoteAccount a bit * move mention parts to namestring * rework webfingerget * use util function to extract webfinger parts * use accountDomain * rework finger again, final form * just a real nasty commit, the worst * remove refresh from account * use new ASRepToAccount signature * fix incorrect debug call * fix for new getRemoteAccount * rework GetRemoteAccount * start updating tests to remove repetition * break a lot of tests Move shared test logic into the testrig, rather than having it scattered all over the place. This allows us to just mock the transport controller once, and have all tests use it (unless they need not to for some other reason). * fix up tests to use main mock httpclient * webfinger only if necessary * cheeky linting with the lads * update mentionName regex recognize instance accounts * don't finger instance accounts * test webfinger part extraction * increase default worker count to 4 per cpu * don't repeat regex parsing * final search for discovered accountDomain * be more permissive in namestring lookup * add more extraction tests * simplify GetParseMentionFunc * skip long search if local account * fix broken test * panics get logged at error level, now include stacktrace Signed-off-by: kim Co-authored-by: tsmethurst --- internal/api/errorhandling.go | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/internal/api/errorhandling.go b/internal/api/errorhandling.go index 59b58bcc3..834f49ee8 100644 --- a/internal/api/errorhandling.go +++ b/internal/api/errorhandling.go @@ -22,6 +22,7 @@ import ( "context" "net/http" + "codeberg.org/gruf/go-errors/v2" "github.com/gin-gonic/gin" "github.com/sirupsen/logrus" apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model" @@ -107,7 +108,14 @@ func ErrorHandler(c *gin.Context, errWithCode gtserror.WithCode, instanceGet fun // we should still try to return a basic code defer func() { if p := recover(); p != nil { - l.Warnf("recovered from panic: %s", p) + // Fetch stacktrace up to this point + callers := errors.GetCallers(3, 10) + + // Log this panic to the standard log + l = l.WithField("stacktrace", callers) + l.Errorf("recovered from panic: %v", p) + + // Respond with determined error code c.JSON(statusCode, gin.H{"error": errWithCode.Safe()}) } }()