-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecosystem_dispatch.rs
More file actions
706 lines (670 loc) · 27.8 KB
/
ecosystem_dispatch.rs
File metadata and controls
706 lines (670 loc) · 27.8 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
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
use socket_patch_core::crawlers::{
CrawledPackage, CrawlerOptions, Ecosystem, NpmCrawler, PythonCrawler,
};
use socket_patch_core::utils::purl::strip_purl_qualifiers;
use std::collections::{HashMap, HashSet};
use std::path::PathBuf;
#[cfg(feature = "cargo")]
use socket_patch_core::crawlers::CargoCrawler;
use socket_patch_core::crawlers::RubyCrawler;
#[cfg(feature = "golang")]
use socket_patch_core::crawlers::GoCrawler;
#[cfg(feature = "maven")]
use socket_patch_core::crawlers::MavenCrawler;
#[cfg(feature = "composer")]
use socket_patch_core::crawlers::ComposerCrawler;
#[cfg(feature = "nuget")]
use socket_patch_core::crawlers::NuGetCrawler;
/// Partition PURLs by ecosystem, filtering by the `--ecosystems` flag if set.
pub fn partition_purls(
purls: &[String],
allowed_ecosystems: Option<&[String]>,
) -> HashMap<Ecosystem, Vec<String>> {
let mut map: HashMap<Ecosystem, Vec<String>> = HashMap::new();
for purl in purls {
if let Some(eco) = Ecosystem::from_purl(purl) {
if let Some(allowed) = allowed_ecosystems {
if !allowed.iter().any(|a| a == eco.cli_name()) {
continue;
}
}
map.entry(eco).or_default().push(purl.clone());
}
}
map
}
/// For each ecosystem in the partitioned map, create the crawler, discover
/// source paths, and look up the given PURLs. Returns a unified
/// `purl -> path` map.
pub async fn find_packages_for_purls(
partitioned: &HashMap<Ecosystem, Vec<String>>,
options: &CrawlerOptions,
silent: bool,
) -> HashMap<String, PathBuf> {
let mut all_packages: HashMap<String, PathBuf> = HashMap::new();
// npm
if let Some(npm_purls) = partitioned.get(&Ecosystem::Npm) {
if !npm_purls.is_empty() {
let npm_crawler = NpmCrawler;
match npm_crawler.get_node_modules_paths(options).await {
Ok(nm_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = nm_paths.first() {
println!("Using global npm packages at: {}", first.display());
}
}
for nm_path in &nm_paths {
match npm_crawler.find_by_purls(nm_path, npm_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", nm_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find npm packages: {e}");
}
}
}
}
}
// pypi — deduplicate by base PURL (stripping qualifiers)
if let Some(pypi_purls) = partitioned.get(&Ecosystem::Pypi) {
if !pypi_purls.is_empty() {
let python_crawler = PythonCrawler;
let base_pypi_purls: Vec<String> = pypi_purls
.iter()
.map(|p| strip_purl_qualifiers(p).to_string())
.collect::<HashSet<_>>()
.into_iter()
.collect();
match python_crawler.get_site_packages_paths(options).await {
Ok(sp_paths) => {
for sp_path in &sp_paths {
match python_crawler.find_by_purls(sp_path, &base_pypi_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", sp_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Python packages: {e}");
}
}
}
}
}
// cargo
#[cfg(feature = "cargo")]
if let Some(cargo_purls) = partitioned.get(&Ecosystem::Cargo) {
if !cargo_purls.is_empty() {
let cargo_crawler = CargoCrawler;
match cargo_crawler.get_crate_source_paths(options).await {
Ok(src_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = src_paths.first() {
println!("Using cargo crate sources at: {}", first.display());
}
}
for src_path in &src_paths {
match cargo_crawler.find_by_purls(src_path, cargo_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", src_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Cargo crates: {e}");
}
}
}
}
}
// gem
if let Some(gem_purls) = partitioned.get(&Ecosystem::Gem) {
if !gem_purls.is_empty() {
let ruby_crawler = RubyCrawler;
match ruby_crawler.get_gem_paths(options).await {
Ok(gem_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = gem_paths.first() {
println!("Using ruby gem paths at: {}", first.display());
}
}
for gem_path in &gem_paths {
match ruby_crawler.find_by_purls(gem_path, gem_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", gem_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Ruby gems: {e}");
}
}
}
}
}
// golang
#[cfg(feature = "golang")]
if let Some(golang_purls) = partitioned.get(&Ecosystem::Golang) {
if !golang_purls.is_empty() {
let go_crawler = GoCrawler;
match go_crawler.get_module_cache_paths(options).await {
Ok(cache_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = cache_paths.first() {
println!("Using Go module cache at: {}", first.display());
}
}
for cache_path in &cache_paths {
match go_crawler.find_by_purls(cache_path, golang_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", cache_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Go modules: {e}");
}
}
}
}
}
// maven
#[cfg(feature = "maven")]
if let Some(maven_purls) = partitioned.get(&Ecosystem::Maven) {
if !maven_purls.is_empty() {
let maven_crawler = MavenCrawler;
match maven_crawler.get_maven_repo_paths(options).await {
Ok(repo_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = repo_paths.first() {
println!("Using Maven repository at: {}", first.display());
}
}
for repo_path in &repo_paths {
match maven_crawler.find_by_purls(repo_path, maven_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", repo_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Maven packages: {e}");
}
}
}
}
}
// composer
#[cfg(feature = "composer")]
if let Some(composer_purls) = partitioned.get(&Ecosystem::Composer) {
if !composer_purls.is_empty() {
let composer_crawler = ComposerCrawler;
match composer_crawler.get_vendor_paths(options).await {
Ok(vendor_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = vendor_paths.first() {
println!("Using PHP vendor packages at: {}", first.display());
}
}
for vendor_path in &vendor_paths {
match composer_crawler.find_by_purls(vendor_path, composer_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", vendor_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find PHP packages: {e}");
}
}
}
}
}
// nuget
#[cfg(feature = "nuget")]
if let Some(nuget_purls) = partitioned.get(&Ecosystem::Nuget) {
if !nuget_purls.is_empty() {
let nuget_crawler = NuGetCrawler;
match nuget_crawler.get_nuget_package_paths(options).await {
Ok(pkg_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = pkg_paths.first() {
println!("Using NuGet packages at: {}", first.display());
}
}
for pkg_path in &pkg_paths {
match nuget_crawler.find_by_purls(pkg_path, nuget_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", pkg_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find NuGet packages: {e}");
}
}
}
}
}
all_packages
}
/// Crawl all enabled ecosystems and return all packages plus per-ecosystem counts.
pub async fn crawl_all_ecosystems(
options: &CrawlerOptions,
) -> (Vec<CrawledPackage>, HashMap<Ecosystem, usize>) {
let mut all_packages = Vec::new();
let mut counts: HashMap<Ecosystem, usize> = HashMap::new();
let npm_crawler = NpmCrawler;
let npm_packages = npm_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Npm, npm_packages.len());
all_packages.extend(npm_packages);
let python_crawler = PythonCrawler;
let python_packages = python_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Pypi, python_packages.len());
all_packages.extend(python_packages);
#[cfg(feature = "cargo")]
{
let cargo_crawler = CargoCrawler;
let cargo_packages = cargo_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Cargo, cargo_packages.len());
all_packages.extend(cargo_packages);
}
{
let ruby_crawler = RubyCrawler;
let gem_packages = ruby_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Gem, gem_packages.len());
all_packages.extend(gem_packages);
}
#[cfg(feature = "golang")]
{
let go_crawler = GoCrawler;
let go_packages = go_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Golang, go_packages.len());
all_packages.extend(go_packages);
}
#[cfg(feature = "maven")]
{
let maven_crawler = MavenCrawler;
let maven_packages = maven_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Maven, maven_packages.len());
all_packages.extend(maven_packages);
}
#[cfg(feature = "composer")]
{
let composer_crawler = ComposerCrawler;
let composer_packages = composer_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Composer, composer_packages.len());
all_packages.extend(composer_packages);
}
#[cfg(feature = "nuget")]
{
let nuget_crawler = NuGetCrawler;
let nuget_packages = nuget_crawler.crawl_all(options).await;
counts.insert(Ecosystem::Nuget, nuget_packages.len());
all_packages.extend(nuget_packages);
}
(all_packages, counts)
}
/// Variant of `find_packages_for_purls` for rollback, which needs to remap
/// pypi qualified PURLs (with `?artifact_id=...`) to the base PURL found
/// by the crawler.
pub async fn find_packages_for_rollback(
partitioned: &HashMap<Ecosystem, Vec<String>>,
options: &CrawlerOptions,
silent: bool,
) -> HashMap<String, PathBuf> {
let mut all_packages: HashMap<String, PathBuf> = HashMap::new();
// npm
if let Some(npm_purls) = partitioned.get(&Ecosystem::Npm) {
if !npm_purls.is_empty() {
let npm_crawler = NpmCrawler;
match npm_crawler.get_node_modules_paths(options).await {
Ok(nm_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = nm_paths.first() {
println!("Using global npm packages at: {}", first.display());
}
}
for nm_path in &nm_paths {
match npm_crawler.find_by_purls(nm_path, npm_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", nm_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find npm packages: {e}");
}
}
}
}
}
// pypi — remap qualified PURLs to found base PURLs
if let Some(pypi_purls) = partitioned.get(&Ecosystem::Pypi) {
if !pypi_purls.is_empty() {
let python_crawler = PythonCrawler;
let base_pypi_purls: Vec<String> = pypi_purls
.iter()
.map(|p| strip_purl_qualifiers(p).to_string())
.collect::<HashSet<_>>()
.into_iter()
.collect();
if let Ok(sp_paths) = python_crawler.get_site_packages_paths(options).await {
for sp_path in &sp_paths {
match python_crawler.find_by_purls(sp_path, &base_pypi_purls).await {
Ok(packages) => {
for (base_purl, pkg) in packages {
for qualified_purl in pypi_purls {
if strip_purl_qualifiers(qualified_purl) == base_purl
&& !all_packages.contains_key(qualified_purl)
{
all_packages
.insert(qualified_purl.clone(), pkg.path.clone());
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", sp_path.display(), e);
}
}
}
}
}
}
}
// cargo
#[cfg(feature = "cargo")]
if let Some(cargo_purls) = partitioned.get(&Ecosystem::Cargo) {
if !cargo_purls.is_empty() {
let cargo_crawler = CargoCrawler;
match cargo_crawler.get_crate_source_paths(options).await {
Ok(src_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = src_paths.first() {
println!("Using cargo crate sources at: {}", first.display());
}
}
for src_path in &src_paths {
match cargo_crawler.find_by_purls(src_path, cargo_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", src_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Cargo crates: {e}");
}
}
}
}
}
// gem
if let Some(gem_purls) = partitioned.get(&Ecosystem::Gem) {
if !gem_purls.is_empty() {
let ruby_crawler = RubyCrawler;
match ruby_crawler.get_gem_paths(options).await {
Ok(gem_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = gem_paths.first() {
println!("Using ruby gem paths at: {}", first.display());
}
}
for gem_path in &gem_paths {
match ruby_crawler.find_by_purls(gem_path, gem_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", gem_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Ruby gems: {e}");
}
}
}
}
}
// golang
#[cfg(feature = "golang")]
if let Some(golang_purls) = partitioned.get(&Ecosystem::Golang) {
if !golang_purls.is_empty() {
let go_crawler = GoCrawler;
match go_crawler.get_module_cache_paths(options).await {
Ok(cache_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = cache_paths.first() {
println!("Using Go module cache at: {}", first.display());
}
}
for cache_path in &cache_paths {
match go_crawler.find_by_purls(cache_path, golang_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", cache_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Go modules: {e}");
}
}
}
}
}
// maven
#[cfg(feature = "maven")]
if let Some(maven_purls) = partitioned.get(&Ecosystem::Maven) {
if !maven_purls.is_empty() {
let maven_crawler = MavenCrawler;
match maven_crawler.get_maven_repo_paths(options).await {
Ok(repo_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = repo_paths.first() {
println!("Using Maven repository at: {}", first.display());
}
}
for repo_path in &repo_paths {
match maven_crawler.find_by_purls(repo_path, maven_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", repo_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find Maven packages: {e}");
}
}
}
}
}
// composer
#[cfg(feature = "composer")]
if let Some(composer_purls) = partitioned.get(&Ecosystem::Composer) {
if !composer_purls.is_empty() {
let composer_crawler = ComposerCrawler;
match composer_crawler.get_vendor_paths(options).await {
Ok(vendor_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = vendor_paths.first() {
println!("Using PHP vendor packages at: {}", first.display());
}
}
for vendor_path in &vendor_paths {
match composer_crawler.find_by_purls(vendor_path, composer_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", vendor_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find PHP packages: {e}");
}
}
}
}
}
// nuget
#[cfg(feature = "nuget")]
if let Some(nuget_purls) = partitioned.get(&Ecosystem::Nuget) {
if !nuget_purls.is_empty() {
let nuget_crawler = NuGetCrawler;
match nuget_crawler.get_nuget_package_paths(options).await {
Ok(pkg_paths) => {
if (options.global || options.global_prefix.is_some()) && !silent {
if let Some(first) = pkg_paths.first() {
println!("Using NuGet packages at: {}", first.display());
}
}
for pkg_path in &pkg_paths {
match nuget_crawler.find_by_purls(pkg_path, nuget_purls).await {
Ok(packages) => {
for (purl, pkg) in packages {
all_packages.entry(purl).or_insert(pkg.path);
}
}
Err(e) => {
if !silent {
eprintln!("Warning: Failed to scan {}: {}", pkg_path.display(), e);
}
}
}
}
}
Err(e) => {
if !silent {
eprintln!("Failed to find NuGet packages: {e}");
}
}
}
}
}
all_packages
}