2020-12-11 01:13:11 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-12-11 01:13:11 +05:30
|
|
|
|
2021-08-24 22:17:09 +05:30
|
|
|
//go:build gofuzz
|
2020-12-11 01:13:11 +05:30
|
|
|
|
|
|
|
package fuzz
|
|
|
|
|
|
|
|
import (
|
2021-04-23 13:52:52 +05:30
|
|
|
"bytes"
|
2022-01-20 04:56:57 +05:30
|
|
|
"context"
|
2021-04-23 13:52:52 +05:30
|
|
|
"io"
|
|
|
|
|
2020-12-11 01:13:11 +05:30
|
|
|
"code.gitea.io/gitea/modules/markup"
|
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2021-08-13 03:52:05 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2020-12-11 01:13:11 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// Contains fuzzing functions executed by
|
|
|
|
// fuzzing engine https://github.com/dvyukov/go-fuzz
|
|
|
|
//
|
|
|
|
// The function must return 1 if the fuzzer should increase priority of the given input during subsequent fuzzing
|
|
|
|
// (for example, the input is lexically correct and was parsed successfully).
|
|
|
|
// -1 if the input must not be added to corpus even if gives new coverage and 0 otherwise.
|
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
var renderContext = markup.RenderContext{
|
|
|
|
Ctx: context.Background(),
|
|
|
|
URLPrefix: "https://example.com/go-gitea/gitea",
|
|
|
|
Metas: map[string]string{
|
|
|
|
"user": "go-gitea",
|
|
|
|
"repo": "gitea",
|
|
|
|
},
|
|
|
|
}
|
2021-04-23 13:52:52 +05:30
|
|
|
|
2020-12-11 01:13:11 +05:30
|
|
|
func FuzzMarkdownRenderRaw(data []byte) int {
|
2021-08-13 03:52:05 +05:30
|
|
|
setting.AppURL = "http://localhost:3000/"
|
2021-04-23 13:52:52 +05:30
|
|
|
err := markdown.RenderRaw(&renderContext, bytes.NewReader(data), io.Discard)
|
|
|
|
if err != nil {
|
|
|
|
return 0
|
|
|
|
}
|
2020-12-11 01:13:11 +05:30
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
func FuzzMarkupPostProcess(data []byte) int {
|
2021-08-13 03:52:05 +05:30
|
|
|
setting.AppURL = "http://localhost:3000/"
|
2021-04-23 13:52:52 +05:30
|
|
|
err := markup.PostProcess(&renderContext, bytes.NewReader(data), io.Discard)
|
2020-12-11 01:13:11 +05:30
|
|
|
if err != nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return 1
|
|
|
|
}
|