-
Notifications
You must be signed in to change notification settings - Fork 854
Expand file tree
/
Copy pathmain.go
More file actions
235 lines (206 loc) · 6.58 KB
/
Copy pathmain.go
File metadata and controls
235 lines (206 loc) · 6.58 KB
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/**
# Copyright 2024 NVIDIA CORPORATION
#
# 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 main
import (
"encoding/json"
"errors"
"fmt"
"os"
"syscall"
"time"
"github.com/urfave/cli/v2"
"k8s.io/klog/v2"
"github.com/NVIDIA/go-nvlib/pkg/nvlib/device"
nvinfo "github.com/NVIDIA/go-nvlib/pkg/nvlib/info"
"github.com/NVIDIA/go-nvml/pkg/nvml"
"github.com/NVIDIA/k8s-device-plugin/cmd/mps-control-daemon/mount"
"github.com/NVIDIA/k8s-device-plugin/cmd/mps-control-daemon/mps"
"github.com/NVIDIA/k8s-device-plugin/internal/info"
"github.com/NVIDIA/k8s-device-plugin/internal/rm"
"github.com/NVIDIA/k8s-device-plugin/internal/watch"
spec "github.com/NVIDIA/k8s-device-plugin/api/config/v1"
)
// Config represents a collection of config options for the device plugin.
type Config struct {
configFile string
// flags stores the CLI flags for later processing.
flags []cli.Flag
}
func main() {
config := &Config{}
c := cli.NewApp()
c.Name = "NVIDIA MPS Control Daemon"
c.Version = info.GetVersionString()
c.Action = func(ctx *cli.Context) error {
return start(ctx, config)
}
c.Commands = []*cli.Command{
mount.NewCommand(),
}
config.flags = []cli.Flag{
&cli.StringFlag{
Name: "config-file",
Usage: "the path to a config file as an alternative to command line options or environment variables",
Destination: &config.configFile,
EnvVars: []string{"CONFIG_FILE"},
},
&cli.StringFlag{
Name: "mig-strategy",
Value: spec.MigStrategyNone,
Usage: "the desired strategy for exposing MIG devices on GPUs that support it:\n\t\t[none | single | mixed]",
EnvVars: []string{"MIG_STRATEGY"},
},
}
c.Flags = config.flags
klog.InfoS(c.Name, "version", c.Version)
err := c.Run(os.Args)
if err != nil {
klog.Error(err)
os.Exit(1)
}
}
// TODO: This needs to do similar validation to the plugin.
func validateFlags(config *spec.Config) error {
return nil
}
// loadConfig loads the config from the spec file.
func (cfg *Config) loadConfig(c *cli.Context) (*spec.Config, error) {
config, err := spec.NewConfig(c, cfg.flags)
if err != nil {
return nil, fmt.Errorf("unable to finalize config: %w", err)
}
err = validateFlags(config)
if err != nil {
return nil, fmt.Errorf("unable to validate flags: %w", err)
}
config.Flags.GFD = nil
return config, nil
}
func start(c *cli.Context, cfg *Config) error {
klog.Info("Starting OS watcher.")
sigs := watch.Signals(syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
var started bool
var restartTimeout <-chan time.Time
var daemons []*mps.Daemon
restart:
// If we are restarting, stop daemons from previous run.
if started {
err := stopDaemons(daemons...)
if err != nil {
return fmt.Errorf("error stopping plugins from previous run: %v", err)
}
}
klog.Info("Starting Daemons.")
daemons, restartDaemons, err := startDaemons(c, cfg)
if err != nil {
return fmt.Errorf("error starting plugins: %v", err)
}
started = true
if restartDaemons {
klog.Infof("Failed to start one or more MPS deamons. Retrying in 30s...")
restartTimeout = time.After(30 * time.Second)
}
// Start an infinite loop, waiting for several indicators to either log
// some messages, trigger a restart of the plugins, or exit the program.
for {
select {
// If the restart timeout has expired, then restart the plugins
case <-restartTimeout:
goto restart
// Watch for any signals from the OS. On SIGHUP, restart this loop,
// restarting all of the plugins in the process. On all other
// signals, exit the loop and exit the program.
case s := <-sigs:
switch s {
case syscall.SIGHUP:
klog.Info("Received SIGHUP, restarting.")
goto restart
default:
klog.Infof("Received signal \"%v\", shutting down.", s)
goto exit
}
}
}
exit:
if err := stopDaemons(daemons...); err != nil {
return fmt.Errorf("error stopping daemons: %v", err)
}
return nil
}
func startDaemons(c *cli.Context, cfg *Config) ([]*mps.Daemon, bool, error) {
// Load the configuration file
klog.Info("Loading configuration.")
config, err := cfg.loadConfig(c)
if err != nil {
return nil, false, fmt.Errorf("unable to load config: %v", err)
}
spec.DisableResourceNamingInConfig(config)
nvmllib := nvml.New()
devicelib := device.New(nvmllib)
infolib := nvinfo.New(
nvinfo.WithNvmlLib(nvmllib),
nvinfo.WithDeviceLib(devicelib),
)
// Update the configuration file with default resources.
klog.Info("Updating config with default resource matching patterns.")
err = rm.AddDefaultResourcesToConfig(infolib, nvmllib, devicelib, config)
if err != nil {
return nil, false, fmt.Errorf("unable to add default resources to config: %v", err)
}
// Print the config to the output.
configJSON, err := json.MarshalIndent(config, "", " ")
if err != nil {
return nil, false, fmt.Errorf("failed to marshal config to JSON: %v", err)
}
klog.Infof("\nRunning with config:\n%v", string(configJSON))
// Get the set of daemons.
// Note that a daemon is only created for resources with at least one device.
klog.Info("Retrieving MPS daemons.")
mpsDaemons, err := mps.NewDaemons(infolib, nvmllib, devicelib,
mps.WithConfig(config),
)
if err != nil {
return nil, false, fmt.Errorf("error getting daemons: %v", err)
}
if len(mpsDaemons) == 0 {
klog.Info("No devices are configured for MPS sharing; Waiting indefinitely.")
}
// Loop through all MPS daemons and start them.
// If any daemon fails to start, all daemons are started again.
for _, mpsDaemon := range mpsDaemons {
if err := mpsDaemon.Start(); err != nil {
klog.Errorf("Failed to start MPS daemon: %v", err)
return mpsDaemons, true, nil
}
}
readyFile, err := os.Create(mps.ContainerRoot.ReadyFilePath())
if err != nil {
return mpsDaemons, true, fmt.Errorf("failed to create .ready file")
}
defer readyFile.Close()
return mpsDaemons, false, nil
}
func stopDaemons(mpsDaemons ...*mps.Daemon) error {
if err := os.Remove(mps.ContainerRoot.ReadyFilePath()); err != nil {
klog.Warningf("Failed to remove .ready file: %v", err)
}
klog.Info("Stopping MPS daemons.")
var errs error
for _, p := range mpsDaemons {
errs = errors.Join(errs, p.Stop())
}
return errs
}