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
// This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at https://mozilla.org/MPL/2.0/. /*! Defining and manipulating binaries embedding Python. */ use { super::{config::PyembedPythonInterpreterConfig, distribution::AppleSdkInfo}, anyhow::{anyhow, Context, Result}, python_packaging::{ policy::PythonPackagingPolicy, resource::{ PythonExtensionModule, PythonModuleSource, PythonPackageDistributionResource, PythonPackageResource, PythonResource, }, resource_collection::{ CompiledResourcesCollection, PrePackagedResource, PythonResourceAddCollectionContext, }, }, std::{ collections::HashMap, convert::TryFrom, io::Write, path::{Path, PathBuf}, sync::Arc, }, tugger_file_manifest::{File, FileManifest}, tugger_windows::VcRedistributablePlatform, }; include!("../pyembed-license.rs"); /// How a binary should link against libpython. #[derive(Clone, Copy, Debug, PartialEq)] pub enum LibpythonLinkMode { /// Libpython will be statically linked into the binary. Static, /// The binary will dynamically link against libpython. Dynamic, } /// Determines how packed resources are loaded by the generated binary. /// /// This effectively controls how resources file are written to disk /// and what `pyembed::PackedResourcesSource` will get serialized in the /// configuration. #[derive(Clone, Debug, PartialEq)] pub enum PackedResourcesLoadMode { /// Packed resources will not be loaded. None, /// Resources data will be embedded in the binary. /// /// The data will be referenced via an `include_bytes!()` and the /// stored path controls the name of the file that will be materialized /// in the artifacts directory. EmbeddedInBinary(String), /// Resources data will be serialized to a file relative to the built binary. /// /// The configuration will reference the file via a relative path using /// `$ORIGIN` expansion. Memory mapped I/O will be used to read the file. BinaryRelativePathMemoryMapped(String), } impl ToString for PackedResourcesLoadMode { fn to_string(&self) -> String { match self { Self::None => "none".to_string(), Self::EmbeddedInBinary(filename) => format!("embedded:{}", filename), Self::BinaryRelativePathMemoryMapped(path) => { format!("binary-relative-memory-mapped:{}", path) } } } } impl TryFrom<&str> for PackedResourcesLoadMode { type Error = String; fn try_from(value: &str) -> Result<Self, Self::Error> { if value == "none" { Ok(Self::None) } else { let parts = value.splitn(2, ':').collect::<Vec<_>>(); if parts.len() != 2 { Err( "resources load mode value not recognized; must have form `type:value`" .to_string(), ) } else { let prefix = parts[0]; let value = parts[1]; match prefix { "embedded" => { Ok(Self::EmbeddedInBinary(value.to_string())) } "binary-relative-memory-mapped" => { Ok(Self::BinaryRelativePathMemoryMapped(value.to_string())) } _ => Err(format!("{} is not a valid prefix; must be 'embedded' or 'binary-relative-memory-mapped'", prefix)) } } } } } /// Describes how Windows Runtime DLLs (e.g. vcruntime140.dll) should be handled during builds. #[derive(Clone, Copy, Debug, PartialEq)] pub enum WindowsRuntimeDllsMode { /// Never attempt to install Windows Runtime DLLs. /// /// A binary will be generated with no runtime DLLs next to it. Never, /// Install Windows Runtime DLLs if they can be located. Do nothing if not. WhenPresent, /// Always install Windows Runtime DLLs and fail if they can't be found. Always, } impl ToString for WindowsRuntimeDllsMode { fn to_string(&self) -> String { match self { Self::Never => "never", Self::WhenPresent => "when-present", Self::Always => "always", } .to_string() } } impl TryFrom<&str> for WindowsRuntimeDllsMode { type Error = String; fn try_from(value: &str) -> Result<Self, Self::Error> { match value { "never" => Ok(Self::Never), "when-present" => Ok(Self::WhenPresent), "always" => Ok(Self::Always), _ => Err(format!("{} is not a valid mode; must be 'never'", value)), } } } /// A callable that can influence PythonResourceAddCollectionContext. pub type ResourceAddCollectionContextCallback<'a> = Box< dyn Fn( &PythonPackagingPolicy, &PythonResource, &mut PythonResourceAddCollectionContext, ) -> Result<()> + 'a, >; /// Describes a generic way to build a Python binary. /// /// Binary here means an executable or library containing or linking to a /// Python interpreter. It also includes embeddable resources within that /// binary. /// /// Concrete implementations can be turned into build artifacts or binaries /// themselves. pub trait PythonBinaryBuilder { /// Clone self into a Box'ed trait object. fn clone_trait(&self) -> Arc<dyn PythonBinaryBuilder>; /// The name of the binary. fn name(&self) -> String; /// How the binary will link against libpython. fn libpython_link_mode(&self) -> LibpythonLinkMode; /// Rust target triple the binary will run on. fn target_triple(&self) -> &str; /// Obtain run-time requirements for the Visual C++ Redistributable. /// /// If `None`, there is no dependency on `vcruntimeXXX.dll` files. If `Some`, /// the returned tuple declares the VC++ Redistributable major version string /// (e.g. `14`) and the VC++ Redistributable platform variant that is required. fn vc_runtime_requirements(&self) -> Option<(String, VcRedistributablePlatform)>; /// Obtain the cache tag to apply to Python bytecode modules. fn cache_tag(&self) -> &str; /// Obtain the `PythonPackagingPolicy` for the builder. fn python_packaging_policy(&self) -> &PythonPackagingPolicy; /// Path to Python executable that can be used to derive info at build time. /// /// The produced binary is effectively a clone of the Python distribution behind the /// returned executable. fn host_python_exe_path(&self) -> &Path; /// Path to Python executable that is native to the target architecture. // TODO this should not need to exist if we properly supported cross-compiling. fn target_python_exe_path(&self) -> &Path; /// Apple SDK build/targeting information. fn apple_sdk_info(&self) -> Option<&AppleSdkInfo>; /// Obtain how Windows runtime DLLs will be handled during builds. /// /// See the enum's documentation for behavior. /// /// This setting is ignored for binaries that don't need the Windows runtime /// DLLs. fn windows_runtime_dlls_mode(&self) -> &WindowsRuntimeDllsMode; /// Set the value for `windows_runtime_dlls_mode()`. fn set_windows_runtime_dlls_mode(&mut self, value: WindowsRuntimeDllsMode); /// The directory to install tcl/tk files into. fn tcl_files_path(&self) -> &Option<String>; /// Set the directory to install tcl/tk files into. fn set_tcl_files_path(&mut self, value: Option<String>); /// The value of the `windows_subsystem` Rust attribute for the generated Rust project. fn windows_subsystem(&self) -> &str; /// Set the value of the `windows_subsystem` Rust attribute for generated Rust projects. fn set_windows_subsystem(&mut self, value: &str) -> Result<()>; /// How packed Python resources will be loaded by the binary. fn packed_resources_load_mode(&self) -> &PackedResourcesLoadMode; /// Set how packed Python resources will be loaded by the binary. fn set_packed_resources_load_mode(&mut self, load_mode: PackedResourcesLoadMode); /// Obtain an iterator over all resource entries that will be embedded in the binary. /// /// This likely does not return extension modules that are statically linked /// into the binary. For those, see `builtin_extension_module_names()`. fn iter_resources<'a>( &'a self, ) -> Box<dyn Iterator<Item = (&'a String, &'a PrePackagedResource)> + 'a>; /// Resolve license metadata from an iterable of `PythonResource` and store that data. /// /// The resolved license data can later be used to ensure packages conform /// to license restrictions. This method can safely be called on resources /// that aren't added to the instance / resource collector: it simply /// registers the license metadata so it can be consulted later. fn index_package_license_info_from_resources<'a>( &mut self, resources: &[PythonResource<'a>], ) -> Result<()>; /// Runs `pip download` using the binary builder's settings. /// /// Returns resources discovered from the Python packages downloaded. fn pip_download( &mut self, logger: &slog::Logger, verbose: bool, args: &[String], ) -> Result<Vec<PythonResource>>; /// Runs `pip install` using the binary builder's settings. /// /// Returns resources discovered as part of performing an install. fn pip_install( &mut self, logger: &slog::Logger, verbose: bool, install_args: &[String], extra_envs: &HashMap<String, String>, ) -> Result<Vec<PythonResource>>; /// Reads Python resources from the filesystem. fn read_package_root( &mut self, logger: &slog::Logger, path: &Path, packages: &[String], ) -> Result<Vec<PythonResource>>; /// Read Python resources from a populated virtualenv directory. fn read_virtualenv( &mut self, logger: &slog::Logger, path: &Path, ) -> Result<Vec<PythonResource>>; /// Runs `python setup.py install` using the binary builder's settings. /// /// Returns resources discovered as part of performing an install. fn setup_py_install( &mut self, logger: &slog::Logger, package_path: &Path, verbose: bool, extra_envs: &HashMap<String, String>, extra_global_arguments: &[String], ) -> Result<Vec<PythonResource>>; /// Add resources from the Python distribution to the builder. /// /// This method should likely be called soon after object construction /// in order to finish adding state from the Python distribution to the /// builder. /// /// The boundary between what distribution state should be initialized /// at binary construction time versus this method is not well-defined /// and is up to implementations. However, it is strongly recommended for /// the division to be handling of core/required interpreter state at /// construction time and all optional/standard library state in this /// method. /// /// `callback` defines an optional function which can be called between /// resource creation and adding that resource to the builder. This /// gives the caller an opportunity to influence how resources are added /// to the binary builder. fn add_distribution_resources( &mut self, callback: Option<ResourceAddCollectionContextCallback>, ) -> Result<()>; /// Add a `PythonModuleSource` to the resources collection. /// /// The location to load the resource from is optional. If specified, it /// will be used. If not, an appropriate location based on the resources /// policy will be chosen. fn add_python_module_source( &mut self, module: &PythonModuleSource, add_context: Option<PythonResourceAddCollectionContext>, ) -> Result<()>; /// Add a `PythonPackageResource` to the resources collection. /// /// The location to load the resource from is optional. If specified, it will /// be used. If not, an appropriate location based on the resources policy /// will be chosen. fn add_python_package_resource( &mut self, resource: &PythonPackageResource, add_context: Option<PythonResourceAddCollectionContext>, ) -> Result<()>; /// Add a `PythonPackageDistributionResource` to the resources collection. /// /// The location to load the resource from is optional. If specified, it will /// be used. If not, an appropriate location based on the resources policy /// will be chosen. fn add_python_package_distribution_resource( &mut self, resource: &PythonPackageDistributionResource, add_context: Option<PythonResourceAddCollectionContext>, ) -> Result<()>; /// Add a `PythonExtensionModule` to make available. /// /// The location to load the extension module from can be specified. However, /// different builders have different capabilities. And the location may be /// ignored in some cases. For example, when adding an extension module that /// is compiled into libpython itself, the location will always be inside /// libpython and it isn't possible to materialize the extension module as /// a standalone file. fn add_python_extension_module( &mut self, extension_module: &PythonExtensionModule, add_context: Option<PythonResourceAddCollectionContext>, ) -> Result<()>; /// Add a `File` to the resource collection. fn add_file_data( &mut self, file: &File, add_context: Option<PythonResourceAddCollectionContext>, ) -> Result<()>; /// Filter embedded resources against names in files. /// /// `files` is files to read names from. /// /// `glob_patterns` is file patterns of files to read names from. fn filter_resources_from_files( &mut self, logger: &slog::Logger, files: &[&Path], glob_patterns: &[&str], ) -> Result<()>; /// Whether the binary requires the jemalloc library. fn requires_jemalloc(&self) -> bool; /// Whether the binary requires the Mimalloc library. fn requires_mimalloc(&self) -> bool; /// Whether the binary requires the Snmalloc library. fn requires_snmalloc(&self) -> bool; /// Obtain an `EmbeddedPythonContext` instance from this one. fn to_embedded_python_context( &self, logger: &slog::Logger, opt_level: &str, ) -> Result<EmbeddedPythonContext>; } /// Describes how to link a binary against Python. pub struct PythonLinkingInfo { /// Path to a `pythonXY` library to link against. pub libpythonxy_filename: PathBuf, /// The contents of `libpythonxy_filename`. pub libpythonxy_data: Vec<u8>, /// Path to an existing `libpython` to link against. If present, this is /// the actual library containing Python symbols and `libpythonXY` is /// a placeholder. pub libpython_filename: Option<PathBuf>, /// Path to a library containing an alternate `config.c`. pub libpyembeddedconfig_filename: Option<PathBuf>, /// The contents of `libpyembeddedconfig_filename`. pub libpyembeddedconfig_data: Option<Vec<u8>>, /// Lines that need to be emitted from a Cargo build script. pub cargo_metadata: Vec<String>, } /// Holds context necessary to embed Python in a binary. pub struct EmbeddedPythonContext<'a> { /// The configuration for the embedded interpreter. pub config: PyembedPythonInterpreterConfig, /// Information on how to link against Python. pub linking_info: PythonLinkingInfo, /// Python resources that need to be serialized to a file. pub pending_resources: Vec<(CompiledResourcesCollection<'a>, PathBuf)>, /// Extra files to install next to produced binary. pub extra_files: FileManifest, /// Rust target triple for the host we are running on. pub host_triple: String, /// Rust target triple for the target we are building for. pub target_triple: String, } impl<'a> EmbeddedPythonContext<'a> { /// Obtain the filesystem of the generated Rust source file containing the interpreter configuration. pub fn interpreter_config_rs_path(&self, dest_dir: impl AsRef<Path>) -> PathBuf { dest_dir.as_ref().join("default_python_config.rs") } /// Obtain path to a compiled library containing content of a compiled `config.c` file. /// /// This file contains global data structures for libpython defining extension modules. pub fn python_config_library_path(&self, dest_dir: impl AsRef<Path>) -> Option<PathBuf> { self.linking_info .libpyembeddedconfig_filename .as_ref() .map(|filename| dest_dir.as_ref().join(filename)) } /// Resolve path to library containing libpython. pub fn libpython_path(&self, dest_dir: impl AsRef<Path>) -> PathBuf { dest_dir .as_ref() .join(&self.linking_info.libpythonxy_filename) } /// Resolve the filesystem path to the file containing cargo: lines. /// /// The `cargo:` lines will enabling linking with the appropriate libpython. pub fn cargo_metadata_path(&self, dest_dir: impl AsRef<Path>) -> PathBuf { dest_dir.as_ref().join("cargo_metadata.txt") } /// Obtain lines constituting cargo metadata. /// /// These should be printed from a build script. The printed lines enable /// linking with our libpython. pub fn cargo_metadata_lines(&self, dest_dir: impl AsRef<Path>) -> Vec<String> { let mut lines = self.linking_info.cargo_metadata.clone(); // Tell Cargo where libpythonXY is located. lines.push(format!( "cargo:rustc-link-search=native={}", dest_dir.as_ref().display() )); // Give dependent crates the path to the default config file. lines.push(format!( "cargo:default-python-config-rs={}", self.interpreter_config_rs_path(dest_dir).display() )); lines } /// Ensure packed resources files are written. pub fn write_packed_resources(&self, dest_dir: impl AsRef<Path>) -> Result<()> { for (collection, path) in &self.pending_resources { let dest_path = dest_dir.as_ref().join(path); let mut writer = std::io::BufWriter::new( std::fs::File::create(&dest_path) .with_context(|| format!("opening {} for writing", dest_path.display()))?, ); collection .write_packed_resources(&mut writer) .context("writing packed resources")?; } Ok(()) } /// Ensure files required by libpython are written. pub fn write_libpython(&self, dest_dir: impl AsRef<Path>) -> Result<()> { let mut fh = std::fs::File::create(self.libpython_path(&dest_dir))?; fh.write_all(&self.linking_info.libpythonxy_data)?; if let Some(data) = &self.linking_info.libpyembeddedconfig_data { let path = self.python_config_library_path(&dest_dir).ok_or_else(|| { anyhow!("embedded Python config library data defined without path") })?; let mut fh = std::fs::File::create(&path)?; fh.write_all(data)?; } Ok(()) } /// Write the file containing the default interpreter configuration Rust struct. pub fn write_interpreter_config_rs(&self, dest_dir: impl AsRef<Path>) -> Result<()> { self.config .write_default_python_config_rs(self.interpreter_config_rs_path(&dest_dir))?; Ok(()) } /// Write file containing cargo metadata lines. pub fn write_cargo_metadata(&self, dest_dir: impl AsRef<Path>) -> Result<()> { let mut fh = std::fs::File::create(self.cargo_metadata_path(&dest_dir))?; fh.write_all(self.cargo_metadata_lines(dest_dir).join("\n").as_bytes())?; Ok(()) } /// Write out files needed to build a binary against our configuration. pub fn write_files(&self, dest_dir: &Path) -> Result<()> { self.write_packed_resources(&dest_dir) .context("write_packed_resources()")?; self.write_libpython(&dest_dir) .context("write_libpython()")?; self.write_interpreter_config_rs(&dest_dir) .context("write_interpreter_config_rs()")?; self.write_cargo_metadata(&dest_dir) .context("write_cargo_metadata()")?; Ok(()) } } #[cfg(test)] mod tests { use super::*; #[test] fn test_resources_load_mode_serialization() { assert_eq!( PackedResourcesLoadMode::None.to_string(), "none".to_string() ); assert_eq!( PackedResourcesLoadMode::EmbeddedInBinary("resources".into()).to_string(), "embedded:resources".to_string() ); assert_eq!( PackedResourcesLoadMode::BinaryRelativePathMemoryMapped("relative-resources".into()) .to_string(), "binary-relative-memory-mapped:relative-resources".to_string() ); } #[test] fn test_resources_load_mode_parsing() -> Result<()> { assert_eq!( PackedResourcesLoadMode::try_from("none").unwrap(), PackedResourcesLoadMode::None ); assert_eq!( PackedResourcesLoadMode::try_from("embedded:resources").unwrap(), PackedResourcesLoadMode::EmbeddedInBinary("resources".into()) ); assert_eq!( PackedResourcesLoadMode::try_from("binary-relative-memory-mapped:relative").unwrap(), PackedResourcesLoadMode::BinaryRelativePathMemoryMapped("relative".into()) ); Ok(()) } }