Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fatal error: concurrent map writes #75

Open
Sakibs opened this issue Aug 31, 2018 · 4 comments
Open

fatal error: concurrent map writes #75

Sakibs opened this issue Aug 31, 2018 · 4 comments

Comments

@Sakibs
Copy link

Sakibs commented Aug 31, 2018

We use bluemonday in our golang service and under high load and traffic we are noticing the error below
fatal error: concurrent map writes

fatal error: concurrent map writes

goroutine 239204 [running]:
runtime.throw(0xbea50a, 0x15)
#011/usr/lib/go-1.9/src/runtime/panic.go:605 +0x95 fp=0xc42157a508 sp=0xc42157a4e8 pc=0x42bd85
runtime.mapassign_faststr(0xaf4580, 0xc4201c3380, 0xbdc0da, 0x5, 0xc42025e168)
#011/usr/lib/go-1.9/src/runtime/hashmap_fast.go:861 +0x4da fp=0xc42157a588 sp=0xc42157a508 pc=0x40d41a
git.corp.adobe.com/service/vendor/github.com/microcosm-cc/bluemonday.(*attrPolicyBuilder).OnElements(0xc420321e60, 0xc42157a650, 0x1, 0x1, 0xc420321e60)
#011/go/src/git.corp.adobe.com/service/vendor/github.com/microcosm-cc/bluemonday/policy.go:176 +0x139 fp=0xc42157a620 sp=0xc42157a588 pc=0x9be669
git.corp.adobe.com/service/jobs.sanitizeComment(0xc4203edec0, 0xc, 0x32, 0xc421041e80)
@buro9
Copy link
Member

buro9 commented Sep 2, 2018

How are you using this?

Policy creation is not thread safe, and you should create the policy at startup (or guaranteed just once if you lazy create it later).

Sanitization is thread safe and once a policy has been created you can use it across multiple goroutines safely assuming you are not modifying the policy.

@Sakibs
Copy link
Author

Sakibs commented Sep 3, 2018

I have it at a package level global variable. I then just use it in a function

package mypkg

var (
	// https://godoc.org/github.com/microcosm-cc/bluemonday#StrictPolicy
	strictPolicy = bluemonday.StrictPolicy()
	// https://godoc.org/github.com/microcosm-cc/bluemonday#UGCPolicy
	ugcPolicy = bluemonday.UGCPolicy()
)

func sanitizeComment(body string) string {
	// allow <span> tag styles
	ugcPolicy.AllowAttrs("style").OnElements("span")  // *** PANICS HERE ***
	result := ugcPolicy.Sanitize(body)

        return result
}

@buro9
Copy link
Member

buro9 commented Sep 3, 2018

Yup, it is the modifying of the policy that isn't thread safe.

I'll drop an example in here once I'm at work.

@luckydonald
Copy link

Huh.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants