-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathlaunch_linux.go
166 lines (149 loc) · 5 KB
/
launch_linux.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
//go:build linux
/***************************************************************
*
* Copyright (C) 2024, Pelican Project, Morgridge Institute for Research
*
* Licensed under the Apache License, Version 2.0 (the "License"); you
* may not use this file except in compliance with the License. You may
* obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
***************************************************************/
package xrootd
import (
"context"
"os"
"path/filepath"
"strings"
"syscall"
"github.com/pkg/errors"
log "github.com/sirupsen/logrus"
"kernel.org/pub/linux/libs/security/libcap/cap"
"github.com/pelicanplatform/pelican/config"
"github.com/pelicanplatform/pelican/daemon"
"github.com/pelicanplatform/pelican/param"
)
func doWait(pid int) error {
for {
var wstatus syscall.WaitStatus
wpid, err := syscall.Wait4(pid, &wstatus, 0, nil)
if err != nil {
return err
}
if wpid != pid {
return errors.New("Internal failure when waiting for command completion")
}
log.Debugln("Pid", pid, "exited with status", int(wstatus))
if wstatus.Exited() {
if estatus := wstatus.ExitStatus(); estatus != 0 {
return errors.Errorf("Daemon exited with status %d", estatus)
}
return nil
} else if wstatus.Continued() || wstatus.Stopped() {
continue
} else if wstatus.Signaled() {
return errors.Errorf("Daemon exited with signal %s", wstatus.Signal().String())
}
return errors.Errorf("Daemon exited in unknown status %d", wstatus)
}
}
func findDaemon(daemonName string) (string, error) {
path_env := os.Getenv("PATH")
paths := append(strings.Split(path_env, ":"), "/usr/bin", "/bin")
for _, directory := range paths {
testPath := filepath.Join(directory, daemonName)
if syscall.Access(testPath, 1) == nil {
return testPath, nil
}
}
return "", errors.Errorf("No executable by name of %s found", daemonName)
}
func (plauncher PrivilegedXrootdLauncher) Launch(ctx context.Context) (context.Context, int, error) {
readStdout, writeStdout, err := os.Pipe()
if err != nil {
return ctx, -1, errors.Wrapf(err, "Unable to create stdout pipe for %s", plauncher.Name())
}
readStderr, writeStderr, err := os.Pipe()
if err != nil {
return ctx, -1, errors.Wrapf(err, "Unable to create stderr pipe for %s", plauncher.Name())
}
xrootdRun := param.Origin_RunLocation.GetString()
pidFile := filepath.Join(xrootdRun, "xrootd.pid")
executable, err := findDaemon(plauncher.Name())
if err != nil {
return ctx, -1, err
}
var env []string = nil
if plauncher.fds[1] != -1 {
env = []string{"XRDHTTP_PELICAN_INFO_FD=3"}
}
launcher := cap.NewLauncher(executable, []string{plauncher.Name(), "-f", "-s", pidFile, "-c", plauncher.configPath}, env)
launcher.Callback(func(attrs *syscall.ProcAttr, _ interface{}) error {
attrs.Files[1] = writeStdout.Fd()
attrs.Files[2] = writeStderr.Fd()
if plauncher.fds[1] != -1 {
// Ensure at least 4 file descriptors are available, and pass the pre-opened 2nd FD (at index 1)
// to the child (xrootd) process as the 4th FD (at index 3)
if len(attrs.Files) <= 3 {
attrs.Files = append(attrs.Files, uintptr(plauncher.fds[1]))
} else {
attrs.Files[3] = uintptr(plauncher.fds[1])
}
}
return nil
})
iab := cap.NewIAB()
// Set bounding capabilities: even if xrootd execs a setuid binary, it should never
// be able to get anything but SETUID and SETGID
bound_caps, err := cap.FromText("all=eip")
if err != nil {
return ctx, -1, err
}
if err = bound_caps.SetFlag(cap.Inheritable, false, cap.SETUID, cap.SETGID); err != nil {
return ctx, -1, err
}
if err = iab.Fill(cap.Bound, bound_caps, cap.Inheritable); err != nil {
return ctx, -1, err
}
// Raising the ambient capabilities will also set the inheritable caps
amb_caps := cap.NewSet()
if err = amb_caps.SetFlag(cap.Inheritable, true, cap.SETUID, cap.SETGID); err != nil {
return ctx, -1, err
}
if err = iab.Fill(cap.Inh, amb_caps, cap.Inheritable); err != nil {
return ctx, -1, err
}
if err = iab.Fill(cap.Amb, amb_caps, cap.Inheritable); err != nil {
return ctx, -1, err
}
launcher.SetIAB(iab)
gid, err := config.GetDaemonGID()
if err != nil {
return ctx, -1, errors.Wrap(err, "Unable to determine xrootd daemon GID")
}
launcher.SetGroups(gid, nil)
uid, err := config.GetDaemonUID()
if err != nil {
return ctx, -1, errors.Wrap(err, "Unable to determine xrootd daemon UID")
}
launcher.SetUID(uid)
pid, err := launcher.Launch(nil)
if err != nil {
return ctx, -1, err
}
writeStdout.Close()
writeStderr.Close()
go daemon.ForwardCommandToLogger(ctx, plauncher.Name(), readStdout, readStderr)
ctx_result, cancel := context.WithCancelCause(ctx)
go func() {
cancel(doWait(pid))
}()
return ctx_result, pid, nil
}