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
|
#[cfg(not(windows))]
extern crate cc;
#[cfg(target_env = "msvc")]
extern crate libc;
#[cfg(target_env = "msvc")]
extern crate vcpkg;
extern crate libflate;
extern crate pkg_config;
extern crate tar;
use std::{
env,
path::{Path, PathBuf},
};
static VERSION: &'static str = "1.0.18";
fn main() {
println!("cargo:rerun-if-env-changed=SODIUM_LIB_DIR");
println!("cargo:rerun-if-env-changed=SODIUM_SHARED");
println!("cargo:rerun-if-env-changed=SODIUM_USE_PKG_CONFIG");
if cfg!(target_env = "msvc") {
// vcpkg requires to set env VCPKGRS_DYNAMIC
println!("cargo:rerun-if-env-changed=VCPKGRS_DYNAMIC");
}
if cfg!(not(windows)) {
println!("cargo:rerun-if-env-changed=SODIUM_DISABLE_PIE");
}
if env::var("SODIUM_STATIC").is_ok() {
panic!("SODIUM_STATIC is deprecated. Use SODIUM_SHARED instead.");
}
let lib_dir_isset = env::var("SODIUM_LIB_DIR").is_ok();
let use_pkg_isset = if cfg!(feature = "use-pkg-config") {
true
} else {
env::var("SODIUM_USE_PKG_CONFIG").is_ok()
};
let shared_isset = env::var("SODIUM_SHARED").is_ok();
if lib_dir_isset && use_pkg_isset {
panic!("SODIUM_LIB_DIR is incompatible with SODIUM_USE_PKG_CONFIG. Set the only one env variable");
}
if lib_dir_isset {
find_libsodium_env();
} else if use_pkg_isset {
if shared_isset {
println!("cargo:warning=SODIUM_SHARED has no effect with SODIUM_USE_PKG_CONFIG");
}
find_libsodium_pkg();
} else {
if shared_isset {
println!(
"cargo:warning=SODIUM_SHARED has no effect for building libsodium from source"
);
}
build_libsodium();
}
}
/* Must be called when SODIUM_LIB_DIR is set to any value
This function will set `cargo` flags.
*/
fn find_libsodium_env() {
let lib_dir = env::var("SODIUM_LIB_DIR").unwrap(); // cannot fail
println!("cargo:rustc-link-search=native={}", lib_dir);
let mode = if env::var("SODIUM_SHARED").is_ok() {
"dylib"
} else {
"static"
};
let name = if cfg!(target_env = "msvc") {
"libsodium"
} else {
"sodium"
};
println!("cargo:rustc-link-lib={}={}", mode, name);
println!(
"cargo:warning=Using unknown libsodium version. This crate is tested against \
{} and may not be fully compatible with other versions.",
VERSION
);
}
/* Must be called when no SODIUM_USE_PKG_CONFIG env var is set
This function will set `cargo` flags.
*/
#[cfg(target_env = "msvc")]
fn find_libsodium_pkg() {
match vcpkg::probe_package("libsodium") {
Ok(lib) => {
println!(
"cargo:warning=Using unknown libsodium version. This crate is tested against \
{} and may not be fully compatible with other versions.",
VERSION
);
for lib_dir in &lib.link_paths {
println!("cargo:lib={}", lib_dir.to_str().unwrap());
}
for include_dir in &lib.include_paths {
println!("cargo:include={}", include_dir.to_str().unwrap());
}
}
Err(e) => {
panic!(format!("Error: {:?}", e));
}
};
}
/* Must be called when SODIUM_USE_PKG_CONFIG env var is set
This function will set `cargo` flags.
*/
#[cfg(not(target_env = "msvc"))]
fn find_libsodium_pkg() {
match pkg_config::Config::new().probe("libsodium") {
Ok(lib) => {
if lib.version != VERSION {
println!(
"cargo:warning=Using libsodium version {}. This crate is tested against {} \
and may not be fully compatible with {}.",
lib.version, VERSION, lib.version
);
}
for lib_dir in &lib.link_paths {
println!("cargo:lib={}", lib_dir.to_str().unwrap());
}
for include_dir in &lib.include_paths {
println!("cargo:include={}", include_dir.to_str().unwrap());
}
}
Err(e) => {
panic!(format!("Error: {:?}", e));
}
}
}
#[cfg(windows)]
fn make_libsodium(_: &str, _: &Path, _: &Path) -> PathBuf {
// We don't build anything on windows, we simply linked to precompiled
// libs.
get_lib_dir()
}
#[cfg(not(windows))]
fn make_libsodium(target: &str, source_dir: &Path, install_dir: &Path) -> PathBuf {
use std::{fs, process::Command, str};
// Decide on CC, CFLAGS and the --host configure argument
let build = cc::Build::new();
let mut compiler = build.get_compiler().path().to_str().unwrap().to_string();
let mut cflags = env::var("CFLAGS").unwrap_or(String::default());
cflags += " -O2";
let host_arg;
let cross_compiling;
let help;
if target.contains("-ios") {
// Determine Xcode directory path
let xcode_select_output = Command::new("xcode-select").arg("-p").output().unwrap();
if !xcode_select_output.status.success() {
panic!("Failed to run xcode-select -p");
}
let xcode_dir = str::from_utf8(&xcode_select_output.stdout)
.unwrap()
.trim()
.to_string();
// Determine SDK directory paths
let sdk_dir_simulator = Path::new(&xcode_dir)
.join("Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk")
.to_str()
.unwrap()
.to_string();
let sdk_dir_ios = Path::new(&xcode_dir)
.join("Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk")
.to_str()
.unwrap()
.to_string();
// Min versions
let ios_simulator_version_min = "6.0.0";
let ios_version_min = "6.0.0";
// Roughly based on `dist-build/ios.sh` in the libsodium sources
match &*target {
"aarch64-apple-ios" => {
cflags += " -arch arm64";
cflags += &format!(" -isysroot {}", sdk_dir_ios);
cflags += &format!(" -mios-version-min={}", ios_version_min);
cflags += " -fembed-bitcode";
host_arg = "--host=arm-apple-darwin10".to_string();
}
"armv7-apple-ios" => {
cflags += " -arch armv7";
cflags += &format!(" -isysroot {}", sdk_dir_ios);
cflags += &format!(" -mios-version-min={}", ios_version_min);
cflags += " -mthumb";
host_arg = "--host=arm-apple-darwin10".to_string();
}
"armv7s-apple-ios" => {
cflags += " -arch armv7s";
cflags += &format!(" -isysroot {}", sdk_dir_ios);
cflags += &format!(" -mios-version-min={}", ios_version_min);
cflags += " -mthumb";
host_arg = "--host=arm-apple-darwin10".to_string();
}
"i386-apple-ios" => {
cflags += " -arch i386";
cflags += &format!(" -isysroot {}", sdk_dir_simulator);
cflags += &format!(" -mios-simulator-version-min={}", ios_simulator_version_min);
host_arg = "--host=i686-apple-darwin10".to_string();
}
"x86_64-apple-ios" => {
cflags += " -arch x86_64";
cflags += &format!(" -isysroot {}", sdk_dir_simulator);
cflags += &format!(" -mios-simulator-version-min={}", ios_simulator_version_min);
host_arg = "--host=x86_64-apple-darwin10".to_string();
}
_ => panic!("Unknown iOS build target: {}", target),
}
cross_compiling = true;
help = "";
} else {
if target.contains("i686") {
compiler += " -m32 -maes";
cflags += " -march=i686";
}
let host = env::var("HOST").unwrap();
host_arg = format!("--host={}", target);
cross_compiling = target != host;
help = if cross_compiling {
"***********************************************************\n\
Possible missing dependencies.\n\
See https://github.com/sodiumoxide/sodiumoxide#cross-compiling\n\
***********************************************************\n\n"
} else {
""
};
}
// Run `./configure`
let prefix_arg = format!("--prefix={}", install_dir.to_str().unwrap());
let mut configure_cmd = Command::new(fs::canonicalize(source_dir.join("configure")).unwrap());
if !compiler.is_empty() {
configure_cmd.env("CC", &compiler);
}
if !cflags.is_empty() {
configure_cmd.env("CFLAGS", &cflags);
}
if env::var("SODIUM_DISABLE_PIE").is_ok() {
configure_cmd.arg("--disable-pie");
}
let configure_output = configure_cmd
.current_dir(&source_dir)
.arg(&prefix_arg)
.arg(&host_arg)
.arg("--enable-shared=no")
.output()
.unwrap_or_else(|error| {
panic!("Failed to run './configure': {}\n{}", error, help);
});
if !configure_output.status.success() {
panic!(
"\n{:?}\nCFLAGS={}\nCC={}\n{}\n{}\n{}\n",
configure_cmd,
cflags,
compiler,
String::from_utf8_lossy(&configure_output.stdout),
String::from_utf8_lossy(&configure_output.stderr),
help
);
}
// Run `make check`, or `make all` if we're cross-compiling
let j_arg = format!("-j{}", env::var("NUM_JOBS").unwrap());
let make_arg = if cross_compiling { "all" } else { "check" };
let mut make_cmd = Command::new("make");
let make_output = make_cmd
.current_dir(&source_dir)
.env("V", "1")
.arg(make_arg)
.arg(&j_arg)
.output()
.unwrap_or_else(|error| {
panic!("Failed to run 'make {}': {}\n{}", make_arg, error, help);
});
if !make_output.status.success() {
panic!(
"\n{:?}\n{}\n{}\n{}\n{}",
make_cmd,
String::from_utf8_lossy(&configure_output.stdout),
String::from_utf8_lossy(&make_output.stdout),
String::from_utf8_lossy(&make_output.stderr),
help
);
}
// Run `make install`
let mut install_cmd = Command::new("make");
let install_output = install_cmd
.current_dir(&source_dir)
.arg("install")
.output()
.unwrap_or_else(|error| {
panic!("Failed to run 'make install': {}", error);
});
if !install_output.status.success() {
panic!(
"\n{:?}\n{}\n{}\n{}\n{}\n",
install_cmd,
String::from_utf8_lossy(&configure_output.stdout),
String::from_utf8_lossy(&make_output.stdout),
String::from_utf8_lossy(&install_output.stdout),
String::from_utf8_lossy(&install_output.stderr)
);
}
install_dir.join("lib")
}
#[cfg(any(windows, target_env = "msvc"))]
fn get_crate_dir() -> PathBuf {
env::var("CARGO_MANIFEST_DIR").unwrap().into()
}
#[cfg(target_env = "msvc")]
fn is_release_profile() -> bool {
env::var("PROFILE").unwrap() == "release"
}
#[cfg(all(target_env = "msvc", target_pointer_width = "32"))]
fn get_lib_dir() -> PathBuf {
if is_release_profile() {
get_crate_dir().join("msvc/Win32/Release/v140/")
} else {
get_crate_dir().join("msvc/Win32/Debug/v140/")
}
}
#[cfg(all(target_env = "msvc", target_pointer_width = "64"))]
fn get_lib_dir() -> PathBuf {
if is_release_profile() {
get_crate_dir().join("msvc/x64/Release/v140/")
} else {
get_crate_dir().join("msvc/x64/Debug/v140/")
}
}
#[cfg(all(windows, not(target_env = "msvc"), target_pointer_width = "32"))]
fn get_lib_dir() -> PathBuf {
get_crate_dir().join("mingw/win32/")
}
#[cfg(all(windows, not(target_env = "msvc"), target_pointer_width = "64"))]
fn get_lib_dir() -> PathBuf {
get_crate_dir().join("mingw/win64/")
}
fn get_archive(filename: &str) -> std::io::Cursor<Vec<u8>> {
use std::fs::File;
use std::io::{BufReader, Read};
let f = File::open(filename).expect(&format!("Failed to open {}", filename));
let mut reader = BufReader::new(f);
let mut content = Vec::new();
reader
.read_to_end(&mut content)
.expect(&format!("Failed to read {}", filename));
std::io::Cursor::new(content)
}
fn get_install_dir() -> PathBuf {
PathBuf::from(env::var("OUT_DIR").unwrap()).join("installed")
}
fn build_libsodium() {
use libflate::gzip::Decoder;
use std::fs;
use tar::Archive;
// Determine build target triple
let target = env::var("TARGET").unwrap();
// Determine filenames
let basename = format!("libsodium-{}", VERSION);
let filename = format!("{}.tar.gz", basename);
// Determine source and install dir
let mut install_dir = get_install_dir();
let mut source_dir = PathBuf::from(env::var("OUT_DIR").unwrap()).join("source");
// Avoid issues with paths containing spaces by falling back to using a tempfile.
// See https://github.com/jedisct1/libsodium/issues/207
if install_dir.to_str().unwrap().contains(" ") {
let fallback_path = PathBuf::from("/tmp/").join(&basename).join(&target);
install_dir = fallback_path.clone().join("installed");
source_dir = fallback_path.clone().join("/source");
println!(
"cargo:warning=The path to the usual build directory contains spaces and hence \
can't be used to build libsodium. Falling back to use {}. If running `cargo \
clean`, ensure you also delete this fallback directory",
fallback_path.to_str().unwrap()
);
}
// Create directories
fs::create_dir_all(&install_dir).unwrap();
fs::create_dir_all(&source_dir).unwrap();
// Get sources
let compressed_file = get_archive(&filename);
// Unpack the tarball
let gz_decoder = Decoder::new(compressed_file).unwrap();
let mut archive = Archive::new(gz_decoder);
archive.unpack(&source_dir).unwrap();
source_dir.push(basename);
let lib_dir = make_libsodium(&target, &source_dir, &install_dir);
if target.contains("msvc") {
println!("cargo:rustc-link-lib=static=libsodium");
} else {
println!("cargo:rustc-link-lib=static=sodium");
}
println!(
"cargo:rustc-link-search=native={}",
lib_dir.to_str().unwrap()
);
let include_dir = source_dir.join("src/libsodium/include");
println!("cargo:include={}", include_dir.to_str().unwrap());
println!("cargo:lib={}", lib_dir.to_str().unwrap());
}
|