Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
ValdikSS
Tor
Commits
4ba89c0c
Commit
4ba89c0c
authored
2 years ago
by
Alexander Hansen Færøy
Browse files
Options
Downloads
Plain Diff
Merge branch 'maint-0.4.5' into maint-0.4.6
parents
32356a60
c213c1b0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changes/ticket40601
+4
-0
4 additions, 0 deletions
changes/ticket40601
src/lib/sandbox/sandbox.c
+3
-0
3 additions, 0 deletions
src/lib/sandbox/sandbox.c
with
7 additions
and
0 deletions
changes/ticket40601
0 → 100644
+
4
−
0
View file @
4ba89c0c
o Minor bugfixes (linux seccomp2 sandbox):
- Allow the rseq system call in the sandbox. This solves a crash issue with
glibc 2.35 on Linux. Patch from pmu-ipf. Fixes bug 40601; bugfix on
0.3.5.11.
This diff is collapsed.
Click to expand it.
src/lib/sandbox/sandbox.c
+
3
−
0
View file @
4ba89c0c
...
...
@@ -227,6 +227,9 @@ static int filter_nopar_gen[] = {
#endif
SCMP_SYS
(
read
),
SCMP_SYS
(
rt_sigreturn
),
#ifdef __NR_rseq
SCMP_SYS
(
rseq
),
#endif
SCMP_SYS
(
sched_getaffinity
),
#ifdef __NR_sched_yield
SCMP_SYS
(
sched_yield
),
...
...
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