Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MacroFake
Tor
Commits
d5b2cbea
Commit
d5b2cbea
authored
10 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Add wait4 to the seccomp2 sandbox allowable syscall list
fixes bug 15088. patch from sanic.
parent
51e36026
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/bug15088
+4
-0
4 additions, 0 deletions
changes/bug15088
src/common/sandbox.c
+1
-0
1 addition, 0 deletions
src/common/sandbox.c
with
5 additions
and
0 deletions
changes/bug15088
0 → 100644
+
4
−
0
View file @
d5b2cbea
o Minor bugfixes (Linux seccomp2 sandbox):
- Upon receiving sighup, do not crash during attempts to call
wait4. Fixes bug 15088; bugfix on 0.2.5.1-alpha. Patch from
"sanic".
This diff is collapsed.
Click to expand it.
src/common/sandbox.c
+
1
−
0
View file @
d5b2cbea
...
...
@@ -164,6 +164,7 @@ static int filter_nopar_gen[] = {
#endif
SCMP_SYS
(
stat
),
SCMP_SYS
(
uname
),
SCMP_SYS
(
wait4
),
SCMP_SYS
(
write
),
SCMP_SYS
(
writev
),
SCMP_SYS
(
exit_group
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment