-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
446 lines (388 loc) · 9.75 KB
/
main.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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
package main
import (
"bufio"
"bytes"
"encoding/json"
"fmt"
"io"
"log"
"net/http"
"os"
"os/exec"
"path/filepath"
"sort"
"strings"
"github.com/urfave/cli"
"golang.org/x/mod/modfile"
)
type goModInfo struct {
GoVersion string
Deps dependencies
}
// key=module path, value=version
type dependencies map[string]string
func parseGoMod(r io.Reader) (*modfile.File, error) {
data, err := io.ReadAll(r)
if err != nil {
return nil, err
}
file, err := modfile.Parse("go.mod", data, nil)
if err != nil {
return nil, err
}
return file, nil
}
func parseIgnoreFile(path string, ignored map[string]struct{}) error {
file, err := os.Open(path)
if err != nil {
return err
}
scanner := bufio.NewScanner(file)
for scanner.Scan() {
module := scanner.Text()
if module == "" {
continue
}
ignored[module] = struct{}{}
}
return nil
}
func runGo(dir string, args ...string) error {
cmd := exec.Command("go", args...)
cmd.Dir = dir
_, err := cmd.CombinedOutput()
if err != nil {
return err
}
return nil
}
func localDependencies(dir string) (goModInfo, error) {
info := goModInfo{
Deps: dependencies{},
}
goModFile, err := os.Open(filepath.Join(dir, "go.mod"))
if err != nil {
return info, err
}
defer goModFile.Close()
f, err := parseGoMod(goModFile)
if err != nil {
return info, err
}
info.GoVersion = f.Go.Version
cmd := exec.Command("go", "list", "-m", "all")
cmd.Dir = dir
data, err := cmd.CombinedOutput()
if err != nil {
return info, err
}
deps := make(map[string]struct{})
for _, required := range f.Require {
deps[required.Mod.Path] = struct{}{}
}
scanner := bufio.NewScanner(bytes.NewReader(data))
for scanner.Scan() {
line := scanner.Text()
fields := strings.Fields(line)
if len(fields) != 2 {
continue
}
// Ignore dependencies that are not in the go.mod. This can
// happen for indirect deps of indirect deps. Since these don't
// appear in the Go mod, there's little we can do to pin to a
// correct version
module, version := fields[0], fields[1]
if _, found := deps[module]; !found {
continue
}
info.Deps[module] = version
}
return info, nil
}
func k8sDependencies(version string) (goModInfo, error) {
info := goModInfo{
Deps: dependencies{},
}
resp, err := http.Get(fmt.Sprintf("https://raw.githubusercontent.com/kubernetes/kubernetes/%s/go.mod", version))
if err != nil {
return info, err
}
defer resp.Body.Close()
f, err := parseGoMod(resp.Body)
if err != nil {
return info, err
}
info.GoVersion = f.Go.Version
// Kubernetes's go.mod contains a bunch of replace that targets local
// path. We want to skip those.
// eg:
// require (
// k8s.io/api v0.0.0
// ...
// )
//
// replace (
// k8s.io/api => ./staging/src/k8s.io/api
// ...
// )
replacements := make(map[string]struct{})
for _, replaced := range f.Replace {
replacements[replaced.Old.Path] = struct{}{}
}
for _, required := range f.Require {
// We skip the indirect dependencies because they're not used
// by k8s so they shouldn't cause incompatibility issues
if required.Indirect {
continue
}
if _, exists := replacements[required.Mod.Path]; exists {
continue
}
info.Deps[required.Mod.Path] = required.Mod.Version
}
return info, nil
}
type renovateConfig struct {
PackageRules []packageRule `json:"packageRules"`
}
type packageRule struct {
MatchPackageNames []string `json:"matchPackageNames"`
AllowedVersions string `json:"allowedVersions"`
}
func writeJSON(output string, v any) error {
outputTemp := output + ".tmp"
file, err := os.Create(outputTemp)
if err != nil {
return err
}
if err := json.NewEncoder(file).Encode(v); err != nil {
return err
}
if err := os.Rename(outputTemp, output); err != nil {
return err
}
return nil
}
func getK8sVersion(version string, info goModInfo) (string, error) {
if version != "auto" {
return version, nil
}
// One of these should be in the go.mod
modules := []string{
"k8s.io/api",
"k8s.io/apimachinery",
"k8s.io/client-go",
}
for _, module := range modules {
if k8sVersion, exists := info.Deps[module]; exists {
// Convert from v0.X.Y to v1.X.Y because libraries are
// v0 based
return strings.Replace(k8sVersion, "v0", "v1", 1), nil
}
}
return "", fmt.Errorf("couldn't detect k8s version")
}
func updateRenovate() cli.Command {
return cli.Command{
Name: "update-renovate",
Usage: "Update the renovate config with pinned dependencies from k8s upstream",
ArgsUsage: "[directory]",
Action: func(ctx *cli.Context) error {
local, err := localDependencies(ctx.Args().First())
if err != nil {
return err
}
k8sVersion, err := getK8sVersion(ctx.String("k8s-version"), local)
if err != nil {
return err
}
k8s, err := k8sDependencies(k8sVersion)
if err != nil {
return err
}
ignored := make(map[string]struct{})
ignoreFile := ctx.String("ignore-file")
if ignoreFile != "" {
if err = parseIgnoreFile(ignoreFile, ignored); err != nil {
return fmt.Errorf("parsing ignore-file: %w", err)
}
}
config := renovateConfig{
PackageRules: make([]packageRule, 0),
}
for module, ver := range k8s.Deps {
_, isIgnored := ignored[module]
if isIgnored {
continue
}
log.Printf(`Pinning %q to %q\n`, module, ver)
rule := packageRule{
MatchPackageNames: []string{module},
AllowedVersions: ver,
}
config.PackageRules = append(config.PackageRules, rule)
}
sort.Slice(config.PackageRules, func(i, j int) bool {
return config.PackageRules[i].MatchPackageNames[0] < config.PackageRules[j].MatchPackageNames[0]
})
output := ctx.String("output")
if ctx.Bool("merge") {
var file *os.File
data := make(map[string]any)
file, err = os.Open(output)
if err != nil {
return err
}
if err = json.NewDecoder(file).Decode(&data); err != nil {
return err
}
var rules []any
_, ok := data["packageRules"]
if ok {
rules = data["packageRules"].([]any)
} else {
rules = make([]any, 0)
}
for _, rule := range config.PackageRules {
rules = append(rules, rule)
}
data["packageRules"] = rules
if err := writeJSON(output, data); err != nil {
return err
}
} else {
if err := writeJSON(output, config); err != nil {
return err
}
}
return nil
},
Flags: []cli.Flag{
cli.StringFlag{
Name: "k8s-version",
Usage: "The k8s version to look for",
Value: "auto",
},
cli.StringFlag{
Name: "ignore-file",
Usage: "A file with ignore lines",
},
cli.StringFlag{
Name: "output",
Usage: "Path to the json output",
Required: true,
},
cli.BoolFlag{
Name: "merge",
Usage: "If true, will merge with existing file",
},
},
}
}
func checkCmd() cli.Command {
return cli.Command{
Name: "check",
Usage: "Check that dependencies and Go version from upstream k8s are pinned to the correct version",
ArgsUsage: "[directory]",
Action: func(ctx *cli.Context) error {
local, err := localDependencies(ctx.Args().First())
if err != nil {
return err
}
k8sVersion, err := getK8sVersion(ctx.String("k8s-version"), local)
if err != nil {
return err
}
k8s, err := k8sDependencies(k8sVersion)
if err != nil {
return err
}
if local.GoVersion != k8s.GoVersion {
log.Printf("Go version is different, local=%s vs upstream=%s\n", local.GoVersion, k8s.GoVersion)
if ctx.Bool("fix") {
if err = runGo(ctx.Args().First(), "mod", "edit", fmt.Sprintf("-go=%s", k8s.GoVersion)); err != nil {
return fmt.Errorf("fixing Go version: %w", err)
}
} else {
return fmt.Errorf("wrong Go version: %w", err)
}
}
ignored := make(map[string]struct{})
ignoreFile := ctx.String("ignore-file")
if ignoreFile != "" {
if err = parseIgnoreFile(ignoreFile, ignored); err != nil {
return fmt.Errorf("parsing ignore-file: %w", err)
}
}
type modDiff struct {
Path string
LocalVersion string
UpstreamVersion string
}
differences := []modDiff{}
for module, kver := range k8s.Deps {
lver, exists := local.Deps[module]
if !exists {
continue
}
_, isIgnored := ignored[module]
if isIgnored {
continue
}
if kver != lver {
differences = append(differences, modDiff{
Path: module,
LocalVersion: lver,
UpstreamVersion: kver,
})
}
}
sort.Slice(differences, func(i, j int) bool {
return differences[i].Path < differences[j].Path
})
if len(differences) > 0 {
for _, diff := range differences {
log.Printf("Module %q is different, local=%s vs upstream=%s\n", diff.Path, diff.LocalVersion, diff.UpstreamVersion)
if ctx.Bool("fix") {
if err = runGo(ctx.Args().First(), "mod", "edit", fmt.Sprintf("-require=%s@%s", diff.Path, diff.UpstreamVersion)); err != nil {
return fmt.Errorf("pinning Go module %s@%s: %w", diff.Path, k8s.GoVersion, err)
}
}
}
if ctx.Bool("fix") {
if err = runGo(ctx.Args().First(), "mod", "tidy"); err != nil {
return fmt.Errorf("go mod tidy: %w", err)
}
} else {
return fmt.Errorf("some dependencies are not pinned to k8s upstream's version")
}
}
return nil
},
Flags: []cli.Flag{
cli.StringFlag{
Name: "k8s-version",
Usage: "The k8s version to look for",
Value: "auto",
},
cli.BoolFlag{
Name: "fix",
Usage: "Automatically apply go mod edit commands to fix differences",
},
cli.StringFlag{
Name: "ignore-file",
Usage: "A file with ignore lines",
},
},
}
}
func main() {
app := cli.NewApp()
app.Commands = []cli.Command{
checkCmd(),
updateRenovate(),
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}