-
Notifications
You must be signed in to change notification settings - Fork 51
/
forge.go
879 lines (791 loc) · 32.5 KB
/
forge.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
package main
import (
"crypto/md5"
"crypto/sha256"
"encoding/hex"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"path/filepath"
"strconv"
"strings"
"sync"
"syscall"
"time"
"github.com/fatih/color"
"github.com/klauspost/pgzip"
"github.com/tidwall/gjson"
"github.com/xorpaul/uiprogress"
)
func checkDeprecation(fm ForgeModule, lastCheckedFile string) bool {
// check content of lastCheckedFile (which should be the Forge API response body) if the module is deprecated
// return false if the api needs to be queried again
if fileInfo, err := os.Stat(lastCheckedFile); err == nil {
if fileInfo.Size() < 1 {
Debugf("found empty file " + lastCheckedFile)
return false
} else if fm.cacheTTL > 0 && fileInfo.ModTime().Add(fm.cacheTTL).Before(time.Now()) {
return false
} else {
json, err := ioutil.ReadFile(lastCheckedFile)
if err != nil {
Fatalf("doModuleInstallOrNothing(): Error while reading Forge API result from file " + lastCheckedFile + err.Error())
}
_ = parseForgeAPIResult(string(json), fm)
return true
}
}
return false
}
func doModuleInstallOrNothing(fm ForgeModule) {
moduleName := fm.author + "-" + fm.name
moduleVersion := fm.version
workDir := filepath.Join(config.ForgeCacheDir, moduleName+"-"+fm.version)
lastCheckedFile := filepath.Join(config.ForgeCacheDir, moduleName+"-latest-last-checked")
fr := ForgeResult{false, fm.version, "", 0}
if check4update {
moduleVersion = "latest"
}
if moduleVersion == "latest" {
if !isDir(workDir) {
Debugf(workDir + " does not exist, fetching Forge module")
// check forge API what the latest version is
fr = queryForgeAPI(fm)
if fr.needToGet {
if _, ok := uniqueForgeModules[moduleName+"-"+fr.versionNumber]; ok {
Debugf("no need to fetch Forge module " + moduleName + " in latest, because latest is " + fr.versionNumber + " and that will already be fetched")
fr.needToGet = false
versionDir := filepath.Join(config.ForgeCacheDir, moduleName+"-"+fr.versionNumber)
absolutePath, err := filepath.Abs(versionDir)
Debugf("trying to create symlink " + workDir + " pointing to " + absolutePath)
if err != nil {
Fatalf("doModuleInstallOrNothing(): Error while resolving absolute file path for " + versionDir + " Error: " + err.Error())
}
if err := os.Symlink(absolutePath, workDir); err != nil {
Fatalf("doModuleInstallOrNothing(): 1 Error while creating symlink " + workDir + " pointing to " + absolutePath + " Error: " + err.Error())
}
//} else {
//Debugf("need to fetch Forge module " + moduleName + " in latest, because version " + fr.versionNumber + " will not be fetched already")
//fmt.Println(needToGet)
}
}
} else {
if fm.cacheTTL > 0 {
//Debugf("checking for " + lastCheckedFile)
if fileInfo, err := os.Lstat(lastCheckedFile); err == nil {
//Debugf("found " + lastCheckedFile + " with mTime " + fileInfo.ModTime().String())
if fileInfo.ModTime().Add(fm.cacheTTL).After(time.Now()) {
Debugf("No need to check forge API if latest version of module " + moduleName + " has been updated, because last-checked file " + lastCheckedFile + " is not older than " + fm.cacheTTL.String())
// need to add the current (cached!) -latest version number to the latestForgeModules, because otherwise we would always sync this module, because 1.4.1 != -latest
me := readModuleMetadata(workDir + "/metadata.json")
latestForgeModules.Lock()
latestForgeModules.m[moduleName] = me.version
latestForgeModules.Unlock()
if checkDeprecation(fm, lastCheckedFile) {
return
}
}
}
}
// check forge API if latest version of this module has been updated
Debugf("check forge API if latest version of module " + moduleName + " has been updated")
// XXX: disable adding If-Modified-Since header for now
// because then the latestForgeModules does not get set with the actual module version for latest
// maybe if received 304 get the actual version from the -latest symlink
fr = queryForgeAPI(fm)
//fmt.Println(needToGet)
}
} else if moduleVersion == "present" {
// ensure that a latest version this module exists
latestDir := filepath.Join(config.ForgeCacheDir, moduleName+"-latest")
if !isDir(latestDir) {
if _, ok := uniqueForgeModules[moduleName+"-latest"]; ok {
Debugf("we got " + fm.author + "-" + fm.name + "-" + fm.version + ", but no " + latestDir + " to use, but -latest is already being fetched.")
return
}
Debugf("we got " + fm.author + "-" + fm.name + "-" + fm.version + ", but no " + latestDir + " to use. Getting -latest")
fm.version = "latest"
doModuleInstallOrNothing(fm)
return
}
Debugf("Nothing to do for module " + fm.author + "-" + fm.name + "-" + fm.version + ", because " + latestDir + " exists")
} else {
if !isDir(workDir) {
_ = queryForgeAPI(fm)
fr.needToGet = true
} else {
if !checkDeprecation(fm, lastCheckedFile) {
_ = queryForgeAPI(fm)
}
Debugf("Using cache for " + moduleName + " in version " + moduleVersion + " because " + workDir + " exists")
return
}
}
//log.Println("fr.needToGet for ", m, fr.needToGet)
if fr.needToGet {
if fm.version != "latest" {
Debugf("Trying to remove: " + workDir)
_ = os.Remove(workDir)
} else {
// os.Readlink error is okay
versionDir, _ := os.Readlink(workDir)
if versionDir == filepath.Join(config.ForgeCacheDir, moduleName+"-"+fr.versionNumber) {
Debugf("No reason to re-symlink again")
} else {
if isDir(workDir) {
Debugf("Trying to remove symlink: " + workDir)
_ = os.Remove(workDir)
}
versionDir = filepath.Join(config.ForgeCacheDir, moduleName+"-"+fr.versionNumber)
absolutePath, err := filepath.Abs(versionDir)
if err != nil {
Fatalf("doModuleInstallOrNothing(): Error while resolving absolute file path for " + versionDir + " Error: " + err.Error())
}
Debugf("trying to create symlink " + workDir + " pointing to " + absolutePath)
if err := os.Symlink(absolutePath, workDir); err != nil {
Fatalf("doModuleInstallOrNothing(): 2 Error while creating symlink " + workDir + " pointing to " + absolutePath + err.Error())
}
}
}
downloadForgeModule(moduleName, fr.versionNumber, fm, 1)
}
}
func queryForgeAPI(fm ForgeModule) ForgeResult {
baseURL := config.ForgeBaseURL
if len(fm.baseURL) > 0 {
baseURL = fm.baseURL
}
url := baseURL + "/v3/modules/" + fm.author + "-" + fm.name + "?exclude_fields=changelog+readme+license+releases"
req, err := http.NewRequest("GET", url, nil)
if err != nil {
Fatalf("queryForgeAPI(): Error creating GET request for Puppetlabs forge API" + err.Error())
}
req.Header.Set("User-Agent", "https://github.com/xorpaul/g10k/")
req.Header.Set("Connection", "keep-alive")
proxyURL, err := http.ProxyFromEnvironment(req)
if err != nil {
Fatalf("queryForgeAPI(): Error while getting http proxy with golang http.ProxyFromEnvironment()" + err.Error())
}
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)}}
before := time.Now()
resp, err := client.Do(req)
if err != nil {
if config.UseCacheFallback {
Warnf("Forge API error, trying to use cache for module " + fm.author + "/" + fm.author + "-" + fm.name)
_ = getLatestCachedModule(fm)
return ForgeResult{false, "", "", 0}
}
Fatalf("queryForgeAPI(): Error while issuing the HTTP request to " + url + " Error: " + err.Error())
}
duration := time.Since(before).Seconds()
Verbosef("Querying Forge API " + url + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
mutex.Lock()
syncForgeTime += duration
mutex.Unlock()
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
// need to get latest version
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
Fatalf("queryForgeAPI(): Error while reading response body for Forge module " + fm.name + " from " + url + ": " + err.Error())
}
json := string(body)
fr := parseForgeAPIResult(json, fm)
lastCheckedFile := filepath.Join(config.ForgeCacheDir, fm.author+"-"+fm.name+"-latest-last-checked")
Debugf("writing last-checked file " + lastCheckedFile)
f, _ := os.Create(lastCheckedFile)
defer f.Close()
f.WriteString(json)
return ForgeResult{true, fr.versionNumber, fr.md5sum, fr.fileSize}
} else if resp.StatusCode == http.StatusNotModified {
Debugf("Got 304 nothing to do for module " + fm.author + "-" + fm.name)
return ForgeResult{false, "", "", 0}
} else if resp.StatusCode == http.StatusNotFound {
Fatalf("Received 404 from Forge for module " + fm.author + "-" + fm.name + " using URL " + url + " Does the module really exist and is it correctly named?")
return ForgeResult{false, "", "", 0}
}
Fatalf("Unexpected response code " + resp.Status)
return ForgeResult{false, "", "", 0}
}
// parseForgeAPIResult parses the JSON response of the Forge API
func parseForgeAPIResult(json string, fm ForgeModule) ForgeResult {
before := time.Now()
currentRelease := gjson.Get(json, "current_release").Map()
deprecatedTimestamp := gjson.Get(json, "deprecated_at")
successorModule := gjson.Get(json, "superseded_by").Map()
duration := time.Since(before).Seconds()
version := currentRelease["version"].String()
modulemd5sum := currentRelease["file_md5"].String()
moduleFilesize := currentRelease["file_size"].Int()
mutex.Lock()
forgeJSONParseTime += duration
mutex.Unlock()
if deprecatedTimestamp.Exists() && deprecatedTimestamp.Value() != nil {
supersededText := ""
if successorModule["slug"].Exists() {
supersededText = " The author has suggested " + successorModule["slug"].String() + " as its replacement"
}
// check the verbosity level
// otherwise these warnings mess up the progress bars
if info || debug {
Warnf("WARN: Forge module " + fm.author + "-" + fm.name + " has been deprecated by its author since " + deprecatedTimestamp.String() + supersededText)
} else {
mutex.Lock()
forgeModuleDeprecationNotice += "WARN: Forge module " + fm.author + "-" + fm.name + " has been deprecated by its author since " + deprecatedTimestamp.String() + supersededText + "\n"
mutex.Unlock()
}
}
if len(version) < 1 {
Fatalf("ERROR: could not determine version of module " + fm.author + "/" + fm.name)
}
Debugf("found version " + version + " for " + fm.name + "-latest")
latestForgeModules.Lock()
latestForgeModules.m[fm.author+"-"+fm.name] = version
latestForgeModules.Unlock()
return ForgeResult{true, version, modulemd5sum, moduleFilesize}
}
// getMetadataForgeModule queries the configured Puppet Forge and return
func getMetadataForgeModule(fm ForgeModule) ForgeModule {
baseURL := config.ForgeBaseURL
if len(fm.baseURL) > 0 {
baseURL = fm.baseURL
}
url := baseURL + "/v3/releases/" + fm.author + "-" + fm.name + "-" + fm.version
req, err := http.NewRequest("GET", url, nil)
if err != nil {
Fatalf("getMetadataForgeModule(): Error while creating GET http request with url " + url + " Error: " + err.Error())
}
req.Header.Set("User-Agent", "https://github.com/xorpaul/g10k/")
req.Header.Set("Connection", "keep-alive")
proxyURL, err := http.ProxyFromEnvironment(req)
if err != nil {
Fatalf("getMetadataForgeModule(): Error while getting http proxy with golang http.ProxyFromEnvironment()" + err.Error())
}
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)}}
before := time.Now()
Debugf("GETing " + url)
resp, err := client.Do(req)
duration := time.Since(before).Seconds()
Verbosef("GETing Forge metadata from " + url + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
mutex.Lock()
syncForgeTime += duration
mutex.Unlock()
if err != nil {
Fatalf("getMetadataForgeModule(): Error while querying metadata for Forge module " + fm.name + " from " + url + ": " + err.Error())
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
Fatalf("getMetadataForgeModule(): Error while reading response body for Forge module " + fm.name + " from " + url + ": " + err.Error())
}
before := time.Now()
currentRelease := gjson.Parse(string(body)).Map()
duration := time.Since(before).Seconds()
modulemd5sum := currentRelease["file_md5"].String()
moduleFilesize := currentRelease["file_size"].Int()
Debugf("module: " + fm.author + "/" + fm.name + " modulemd5sum: " + modulemd5sum + " moduleFilesize: " + strconv.FormatInt(moduleFilesize, 10))
mutex.Lock()
forgeJSONParseTime += duration
mutex.Unlock()
return ForgeModule{md5sum: modulemd5sum, fileSize: moduleFilesize}
}
Fatalf("getMetadataForgeModule(): Unexpected response code while GETing " + url + " " + resp.Status)
return ForgeModule{}
}
func extractForgeModule(wgForgeModule *sync.WaitGroup, file *io.PipeReader, fileName string) {
defer wgForgeModule.Done()
funcName := funcName()
before := time.Now()
fileReader, err := pgzip.NewReader(file)
unTar(fileReader, config.ForgeCacheDir)
if err != nil {
Fatalf(funcName + "(): pgzip reader error for module " + fileName + " error:" + err.Error())
}
defer fileReader.Close()
duration := time.Since(before).Seconds()
Verbosef("Extracting " + filepath.Join(config.ForgeCacheDir, fileName) + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
mutex.Lock()
ioForgeTime += duration
mutex.Unlock()
}
func downloadForgeModule(name string, version string, fm ForgeModule, retryCount int) {
funcName := funcName()
var wgForgeModule sync.WaitGroup
extractR, extractW := io.Pipe()
saveFileR, saveFileW := io.Pipe()
//url := "https://forgeapi.puppet.com/v3/files/puppetlabs-apt-2.1.1.tar.gz"
fileName := name + "-" + version + ".tar.gz"
if !isDir(filepath.Join(config.ForgeCacheDir, name+"-"+version)) {
baseURL := config.ForgeBaseURL
if len(fm.baseURL) > 0 {
baseURL = fm.baseURL
}
url := baseURL + "/v3/files/" + fileName
req, err := http.NewRequest("GET", url, nil)
if err != nil {
Fatalf("getMetadataForgeModule(): Error while creating GET http request with url " + url + " Error: " + err.Error())
}
req.Header.Set("User-Agent", "https://github.com/xorpaul/g10k/")
req.Header.Set("Connection", "close")
proxyURL, err := http.ProxyFromEnvironment(req)
if err != nil {
Fatalf(funcName + "(): Error while getting http proxy with golang http.ProxyFromEnvironment()" + err.Error())
}
client := &http.Client{Transport: &http.Transport{Proxy: http.ProxyURL(proxyURL)}}
before := time.Now()
Debugf("GETing " + url)
resp, err := client.Do(req)
duration := time.Since(before).Seconds()
Verbosef("GETing " + url + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
mutex.Lock()
syncForgeTime += duration
mutex.Unlock()
if err != nil {
Fatalf(funcName + "(): Error while GETing Forge module " + name + " from " + url + ": " + err.Error())
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
wgForgeModule.Add(1)
go func() {
defer wgForgeModule.Done()
targetFileName := filepath.Join(config.ForgeCacheDir, fileName)
Debugf(funcName + "(): Trying to create " + targetFileName)
out, err := os.Create(targetFileName)
if err != nil {
Fatalf(funcName + "(): Error while creating file for Forge module " + targetFileName + " Error: " + err.Error())
}
defer out.Close()
io.Copy(out, saveFileR)
Debugf(funcName + "(): Finished creating " + targetFileName)
}()
wgForgeModule.Add(1)
go extractForgeModule(&wgForgeModule, extractR, fileName)
wgForgeModule.Add(1)
go func() {
defer wgForgeModule.Done()
// after completing the copy, we need to close
// the PipeWriters to propagate the EOF to all
// PipeReaders to avoid deadlock
defer extractW.Close()
defer saveFileW.Close()
// build the multiwriter for all the pipes
mw := io.MultiWriter(extractW, saveFileW)
// copy the data into the multiwriter
if _, err := io.Copy(mw, resp.Body); err != nil {
Fatalf("Error while writing to MultiWriter " + err.Error())
}
}()
} else if resp.StatusCode == http.StatusNotFound {
Fatalf("Received 404 from Forge using URL " + url +
"\nCheck if the module name '" + fm.author + "-" + fm.name + "' and version '" + version + "' really exist" +
"\nUsed in Puppet environment '" + fm.sourceBranch + "'")
} else {
Fatalf("Unexpected response code while GETing " + url + " " + resp.Status)
}
} else {
Debugf("Using cache for Forge module " + name + " version: " + version)
}
wgForgeModule.Wait()
if checkSum || fm.sha256sum != "" {
fm.version = version
if doForgeModuleIntegrityCheck(fm) {
if retryCount == 0 {
Fatalf("downloadForgeModule(): giving up for Puppet module " + name + " version: " + version)
}
Warnf("Retrying...")
purgeDir(filepath.Join(config.ForgeCacheDir, fileName), "downloadForgeModule()")
purgeDir(strings.Replace(filepath.Join(config.ForgeCacheDir, fileName), ".tar.gz", "/", -1), "downloadForgeModule()")
// retry if hash sum mismatch found
downloadForgeModule(name, version, fm, retryCount-1)
}
}
}
// readModuleMetadata returns the Forgemodule struct of the given module file path
func readModuleMetadata(file string) ForgeModule {
content, _ := ioutil.ReadFile(file)
before := time.Now()
name := gjson.Get(string(content), "name").String()
version := gjson.Get(string(content), "version").String()
author := gjson.Get(string(content), "author").String()
duration := time.Since(before).Seconds()
mutex.Lock()
metadataJSONParseTime += duration
mutex.Unlock()
Debugf("Found in file " + file + " name: " + name + " version: " + version + " author: " + author)
moduleName := "N/A"
if strings.Contains(name, "-") {
moduleName = strings.Split(name, "-")[1]
} else {
Debugf("Error: Something went wrong while decoding file " + file + " searching for the module name (found for name: " + name + "), version and author")
}
return ForgeModule{name: moduleName, version: version, author: strings.ToLower(author)}
}
func resolveForgeModules(modules map[string]ForgeModule) {
defer timeTrack(time.Now(), funcName())
if len(modules) <= 0 {
Debugf("empty ForgeModule[] found, skipping...")
return
}
bar := uiprogress.AddBar(len(modules)).AppendCompleted().PrependElapsed()
bar.PrependFunc(func(b *uiprogress.Bar) string {
return fmt.Sprintf("Resolving Forge modules (%d/%d)", b.Current(), len(modules))
})
// Dummy channel to coordinate the number of concurrent goroutines.
// This channel should be buffered otherwise we will be immediately blocked
// when trying to fill it.
Debugf("Resolving " + strconv.Itoa(len(modules)) + " Forge modules with " + strconv.Itoa(config.Maxworker) + " workers")
concurrentGoroutines := make(chan struct{}, config.Maxworker)
// Fill the dummy channel with config.Maxworker empty struct.
for i := 0; i < config.Maxworker; i++ {
concurrentGoroutines <- struct{}{}
}
// The done channel indicates when a single goroutine has
// finished its job.
done := make(chan bool)
// The waitForAllJobs channel allows the main program
// to wait until we have indeed done all the jobs.
waitForAllJobs := make(chan bool)
// Collect all the jobs, and since the job is finished, we can
// release another spot for a goroutine.
go func() {
for i := 1; i <= len(modules); i++ {
<-done
// Say that another goroutine can now start.
concurrentGoroutines <- struct{}{}
}
// We have collected all the jobs, the program can now terminate
waitForAllJobs <- true
}()
wg := sync.WaitGroup{}
wg.Add(len(modules))
for m, fm := range modules {
go func(m string, fm ForgeModule, bar *uiprogress.Bar) {
// Try to receive from the concurrentGoroutines channel. When we have something,
// it means we can start a new goroutine because another one finished.
// Otherwise, it will block the execution until an execution
// spot is available.
<-concurrentGoroutines
defer bar.Incr()
defer wg.Done()
Debugf("resolveForgeModules(): Trying to get forge module " + m + " with Forge base url " + fm.baseURL + " and CacheTtl set to " + fm.cacheTTL.String())
doModuleInstallOrNothing(fm)
done <- true
}(m, fm, bar)
}
// Wait for all jobs to finish
<-waitForAllJobs
wg.Wait()
}
func check4ForgeUpdate(moduleName string, currentVersion string, latestVersion string) {
Verbosef("found currently deployed Forge module " + moduleName + " in version: " + currentVersion)
Verbosef("found latest Forge module of " + moduleName + " in version: " + latestVersion)
if currentVersion != latestVersion {
color.Yellow("ATTENTION: Forge module: " + moduleName + " latest: " + latestVersion + " currently deployed: " + currentVersion)
needSyncForgeCount++
}
}
func doForgeModuleIntegrityCheck(m ForgeModule) bool {
funcName := funcName()
var wgCheckSum sync.WaitGroup
wgCheckSum.Add(1)
fmm := ForgeModule{}
go func(m ForgeModule) {
defer wgCheckSum.Done()
fmm = getMetadataForgeModule(m)
Debugf(funcName + "(): target md5 hash sum: " + fmm.md5sum)
if m.sha256sum != "" {
Debugf(funcName + "(): target sha256 hash sum from Puppetfile: " + m.sha256sum)
}
}(m)
calculatedMd5Sum := ""
calculatedSha256Sum := ""
// http://rodaine.com/2015/04/async-split-io-reader-in-golang/
// create the pipes
md5R, md5W := io.Pipe()
sha256R, sha256W := io.Pipe()
var calculatedArchiveSize int64
fileName := filepath.Join(config.ForgeCacheDir, m.author+"-"+m.name+"-"+m.version+".tar.gz")
// md5 sum
wgCheckSum.Add(1)
go func(md5R *io.PipeReader) {
defer wgCheckSum.Done()
before := time.Now()
hashmd5 := md5.New()
if _, err := io.Copy(hashmd5, md5R); err != nil {
Fatalf(funcName + "(): Error while reading Forge module archive " + fileName + " ! Error: " + err.Error())
}
duration := time.Since(before).Seconds()
Verbosef("Calculating md5 sum for " + fileName + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
calculatedMd5Sum = hex.EncodeToString(hashmd5.Sum(nil))
Debugf(funcName + "(): calculated md5 hash sum: " + calculatedMd5Sum)
}(md5R)
if m.sha256sum != "" {
// sha256 sum
wgCheckSum.Add(1)
go func(sha256R *io.PipeReader) {
defer wgCheckSum.Done()
before := time.Now()
hashSha256 := sha256.New()
if _, err := io.Copy(hashSha256, sha256R); err != nil {
Fatalf(funcName + "(): Error while reading Forge module archive " + fileName + " ! Error: " + err.Error())
}
duration := time.Since(before).Seconds()
Verbosef("Calculating sha256 sum for " + fileName + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
calculatedSha256Sum = hex.EncodeToString(hashSha256.Sum(nil))
Debugf(funcName + "(): calculated sha256 hash sum: " + calculatedSha256Sum)
}(sha256R)
}
wgCheckSum.Add(1)
go func() {
defer wgCheckSum.Done()
// after completing the copy, we need to close
// the PipeWriters to propagate the EOF to all
// PipeReaders to avoid deadlock
defer md5W.Close()
if m.sha256sum != "" {
defer sha256W.Close()
}
var mw io.Writer
if m.sha256sum != "" {
// build the multiwriter for all the pipes
mw = io.MultiWriter(md5W, sha256W)
} else {
mw = io.MultiWriter(md5W)
}
before := time.Now()
if fi, err := os.Stat(fileName); err == nil {
calculatedArchiveSize = fi.Size()
file, err := os.Open(fileName)
if err != nil {
Fatalf("Can't access Forge module archive " + fileName + " ! Error: " + err.Error())
}
defer file.Close()
// copy the data into the multiwriter
if _, err := io.Copy(mw, file); err != nil {
Fatalf("Error while writing to MultiWriter " + err.Error())
}
} else {
Fatalf("Can't access Forge module archive " + fileName + " ! Error: " + err.Error())
}
duration := time.Since(before).Seconds()
Verbosef("Calculating hash sum(s) for " + fileName + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
Debugf(funcName + "(): calculated archive size: " + strconv.FormatInt(calculatedArchiveSize, 10))
}()
wgCheckSum.Wait()
if fmm.md5sum != calculatedMd5Sum {
Warnf("WARNING: calculated md5sum " + calculatedMd5Sum + " for " + fileName + " does not match expected md5sum " + fmm.md5sum)
return true
}
if m.sha256sum != calculatedSha256Sum {
Warnf("WARNING: calculated sha256sum " + calculatedSha256Sum + " for " + fileName + " does not match expected sha256sum " + m.sha256sum)
return true
}
if fmm.fileSize != calculatedArchiveSize {
Warnf("WARNING: calculated file size " + strconv.FormatInt(calculatedArchiveSize, 10) + " for " + fileName + " does not match expected file size " + strconv.FormatInt(fmm.fileSize, 10))
return true
}
Debugf("calculated file size " + strconv.FormatInt(calculatedArchiveSize, 10) + " for " + fileName + " does match expected file size " + strconv.FormatInt(fmm.fileSize, 10))
Debugf("calculated md5sum " + calculatedMd5Sum + " for " + fileName + " does match expected md5sum " + fmm.md5sum)
if m.sha256sum != "" {
Debugf("calculated sha256sum " + calculatedSha256Sum + " for " + fileName + " does match expected sha256sum " + m.sha256sum)
}
return false
}
func syncForgeToModuleDir(name string, m ForgeModule, moduleDir string, correspondingPuppetEnvironment string) {
funcName := funcName()
mutex.Lock()
syncForgeCount++
mutex.Unlock()
moduleName := m.author + "-" + m.name
//Debugf("m.name " + m.name + " m.version " + m.version + " moduleName " + moduleName)
targetDir := filepath.Join(moduleDir, m.name)
metadataFile := filepath.Join(targetDir, "metadata.json")
if m.version == "present" {
if fileExists(metadataFile) {
Debugf("Nothing to do, found existing Forge module: " + targetDir)
if check4update {
me := readModuleMetadata(metadataFile)
latestForgeModules.RLock()
check4ForgeUpdate(m.name, me.version, latestForgeModules.m[moduleName])
latestForgeModules.RUnlock()
}
return
}
// safe to do, because we ensured in doModuleInstallOrNothing() that -latest exists
m.version = "latest"
}
if isDir(targetDir) {
if fileExists(metadataFile) {
me := readModuleMetadata(metadataFile)
if m.version == "latest" {
//fmt.Println(latestForgeModules)
//fmt.Println("checking latestForgeModules for key", moduleName)
latestForgeModules.RLock()
if _, ok := latestForgeModules.m[moduleName]; ok {
Debugf("using version " + latestForgeModules.m[moduleName] + " for " + moduleName + "-" + m.version)
m.version = latestForgeModules.m[moduleName]
}
latestForgeModules.RUnlock()
}
if check4update {
latestForgeModules.RLock()
check4ForgeUpdate(m.name, me.version, latestForgeModules.m[moduleName])
latestForgeModules.RUnlock()
}
if me.version == m.version {
Debugf("Nothing to do, existing Forge module: " + targetDir + " has the same version " + me.version + " as the to be synced version: " + m.version)
return
}
Infof("Need to sync, because existing Forge module: " + targetDir + " has version " + me.version + " and the to be synced version is: " + m.version)
createOrPurgeDir(targetDir, "targetDir for module "+me.name)
} else {
Debugf("Need to purge " + targetDir + ", because it exists without a metadata.json. This shouldn't happen!")
createOrPurgeDir(targetDir, "targetDir for module "+m.name+" with missing metadata.json")
}
}
workDir := normalizeDir(filepath.Join(config.ForgeCacheDir, moduleName+"-"+m.version))
resolvedWorkDir, err := filepath.EvalSymlinks(workDir)
if err != nil {
Fatalf(funcName + "(): Failed to resolve possible symlink " + workDir + " Error: " + err.Error())
}
if !isDir(resolvedWorkDir) {
if config.UseCacheFallback {
Warnf("Failed to use " + resolvedWorkDir + " Trying to use latest cached version of module " + moduleName)
resolvedWorkDir = getLatestCachedModule(m)
} else {
Fatalf(funcName + "(): Forge module not found in dir: " + resolvedWorkDir)
}
}
if !isDir(resolvedWorkDir) {
Fatalf(funcName + "(): Forge module not found in dir: " + resolvedWorkDir)
}
Infof("Need to sync " + targetDir)
if !dryRun {
targetDir = checkDirAndCreate(targetDir, "as targetDir for module "+name)
var targetDirDevice, workDirDevice uint64
if fileInfo, err := os.Stat(targetDir); err == nil {
if fileInfo.Sys() != nil {
targetDirDevice = uint64(fileInfo.Sys().(*syscall.Stat_t).Dev)
}
} else {
Fatalf(funcName + "(): Error while os.Stat file " + targetDir)
}
if fileInfo, err := os.Stat(resolvedWorkDir); err == nil {
if fileInfo.Sys() != nil {
workDirDevice = uint64(fileInfo.Sys().(*syscall.Stat_t).Dev)
}
} else {
Fatalf(funcName + "(): Error while os.Stat file " + resolvedWorkDir)
}
if targetDirDevice != workDirDevice && !usemove {
Fatalf("Error: Can't hardlink Forge module files over different devices. Please consider changing the cachedir setting. ForgeCachedir: " + config.ForgeCacheDir + " target dir: " + targetDir)
}
mutex.Lock()
needSyncDirs = append(needSyncDirs, targetDir)
if _, ok := needSyncEnvs[correspondingPuppetEnvironment]; !ok {
needSyncEnvs[correspondingPuppetEnvironment] = struct{}{}
}
needSyncForgeCount++
mutex.Unlock()
destination := func(path string, info os.FileInfo, err error) error {
if err != nil {
Fatalf(funcName + "(): Error while calling generic func() Error " + err.Error())
}
target, err := filepath.Rel(resolvedWorkDir, path)
if err != nil {
Fatalf(funcName + "(): Can't make " + path + " relative to " + resolvedWorkDir + " Error: " + err.Error())
}
if info.IsDir() {
if target != "." { // skip the root dir
//Debugf(funcName + "() Trying to mkdir " + filepath.Join(targetDir, target))
err = os.Mkdir(filepath.Join(targetDir, target), os.FileMode(0755))
if err != nil {
Fatalf(funcName + "(): error while Mkdir() " + targetDir + "/" + target + " Error: " + err.Error())
}
}
} else {
if usemove {
//Debugf(funcName + "() Trying to helper.moveFile " + path + " to " + targetDir + target)
// deleteSourceFileToggle is set to false as we delete the source file later in the main() anyway after the sync completes
err = moveFile(path, filepath.Join(targetDir, target), false)
if err != nil {
Fatalf(funcName + "(): Failed to helper.moveFile " + path + " to " + targetDir + "/" + target + " Error: " + err.Error())
}
} else {
//Debugf(funcName + "() Trying to hardlink " + path + " to " + filepath.Join(targetDir, target))
err = os.Link(path, filepath.Join(targetDir, target))
if err != nil {
Fatalf(funcName + "(): Failed to hardlink " + path + " to " + targetDir + "/" + target + " Error: " + err.Error())
}
}
}
return nil
}
c := make(chan error)
Debugf(funcName + "() filepath.Walk'ing directory " + resolvedWorkDir)
before := time.Now()
go func() { c <- filepath.Walk(resolvedWorkDir, destination) }()
<-c // Walk done
duration := time.Since(before).Seconds()
mutex.Lock()
ioForgeTime += duration
mutex.Unlock()
Verbosef("Populating " + targetDir + " took " + strconv.FormatFloat(duration, 'f', 5, 64) + "s")
}
}
// getLatestCachedModule returns the most recent version of the module that is requested
func getLatestCachedModule(m ForgeModule) string {
latest := "//"
version := "latest"
latestDir := filepath.Join(config.ForgeCacheDir, m.author+"-"+m.name+"-latest")
if !isDir(latestDir) {
globPath := filepath.Join(config.ForgeCacheDir, m.author+"-"+m.name+"-*")
Debugf("Glob'ing with path " + globPath)
matches, err := filepath.Glob(globPath)
if len(matches) == 0 {
Fatalf("Could not find any cached version for Forge module " + m.author + "-" + m.name)
}
Debugf("found potential module versions:" + strings.Join(matches, " "))
if err != nil {
Fatalf("Failed to glob the latest cached module with glob path " + globPath + " Error: " + err.Error())
}
//fmt.Println(matches)
for _, m := range matches {
if isDir(m) {
Debugf("Comparing " + latest + " < " + m)
if latest < m {
Debugf("Setting latest to " + m)
latest = m
}
}
}
absolutePath, err := filepath.Abs(latest)
if err != nil {
Fatalf("Error while resolving absolute file path for " + latest + " Error: " + err.Error())
}
Debugf("trying to create symlink " + latestDir + " pointing to " + latest)
if err := os.Symlink(absolutePath, latestDir); err != nil {
Fatalf("Error while creating symlink " + latestDir + " pointing to " + absolutePath + err.Error())
}
version = strings.Split(latest, m.author+"-"+m.name+"-")[1]
} else {
versionDir, err := os.Readlink(latestDir)
if err != nil {
Fatalf("Error while reading symlink " + latestDir + " " + err.Error())
}
version = strings.Split(versionDir, m.author+"-"+m.name+"-")[1]
latest = filepath.Join(config.ForgeCacheDir, m.author+"-"+m.name+"-"+version)
}
if latest == "//" {
Fatalf("Found no usable cache for module " + m.author + "-" + m.name)
}
//fmt.Println("version: ", version)
latestForgeModules.Lock()
latestForgeModules.m[m.author+"-"+m.name] = version
latestForgeModules.Unlock()
Warnf("Using cached version " + version + " for " + m.author + "-" + m.name + "-latest")
return latest
}