Skip to main content

lux_lib/lua_installation/
mod.rs

1use is_executable::IsExecutable;
2use itertools::Itertools;
3use miette::Diagnostic;
4use path_slash::PathBufExt;
5use std::fmt;
6use std::fmt::Display;
7use std::io;
8use std::path::Path;
9use std::path::PathBuf;
10use thiserror::Error;
11use which::which;
12
13use crate::build::external_dependency::to_lib_name;
14use crate::build::external_dependency::ExternalDependencyInfo;
15use crate::build::utils::{c_lib_extension, format_path};
16use crate::config::external_deps::ExternalDependencySearchConfig;
17use crate::fs;
18use crate::lua_rockspec::ExternalDependencySpec;
19use crate::lua_version::LuaVersion;
20use crate::lua_version::LuaVersionUnset;
21use crate::operations;
22use crate::operations::BuildLuaError;
23use crate::tree::InstallTree;
24use crate::variables::GetVariableError;
25use crate::{config::Config, package::PackageVersion, variables::HasVariables};
26use lazy_static::lazy_static;
27use tokio::sync::Mutex;
28
29// Because installing lua is not thread-safe, we have to synchronize with a global Mutex
30lazy_static! {
31    static ref NEW_MUTEX: Mutex<i32> = Mutex::new(0i32);
32    static ref INSTALL_MUTEX: Mutex<i32> = Mutex::new(0i32);
33}
34
35#[derive(Debug)]
36pub struct LuaInstallation {
37    pub version: LuaVersion,
38    dependency_info: ExternalDependencyInfo,
39    /// Binary to the Lua executable, if present
40    pub(crate) bin: Option<PathBuf>,
41}
42
43#[derive(Debug, Error, Diagnostic)]
44pub enum LuaBinaryError {
45    #[error("neither `lua` nor `luajit` found on the PATH")]
46    LuaBinaryNotFound,
47    #[error(transparent)]
48    #[diagnostic(transparent)]
49    DetectLuaVersion(#[from] DetectLuaVersionError),
50    #[error(
51        r#"
52{} -v (= {}) does not match expected Lua version: {}.
53
54Try setting
55
56```toml
57[variables]
58LUA = "/path/to/lua_binary"
59```
60
61in your config, or use `-v LUA=/path/to/lua_binary`.
62    "#,
63        lua_cmd,
64        installed_version,
65        lua_version
66    )]
67    LuaVersionMismatch {
68        lua_cmd: String,
69        installed_version: PackageVersion,
70        lua_version: LuaVersion,
71    },
72    #[error("{0} not found on the PATH")]
73    CustomBinaryNotFound(String),
74}
75
76#[derive(Error, Debug, Diagnostic)]
77#[non_exhaustive]
78pub enum DetectLuaVersionError {
79    #[error("failed to run {0}: {1}")]
80    RunLuaCommand(String, io::Error),
81    #[error("failed to parse Lua version from output: {0}")]
82    ParseLuaVersion(String),
83    #[error(transparent)]
84    #[diagnostic(transparent)]
85    PackageVersionParse(#[from] crate::package::PackageVersionParseError),
86    #[error(transparent)]
87    #[diagnostic(transparent)]
88    LuaVersion(#[from] crate::lua_version::LuaVersionError),
89}
90
91#[derive(Error, Debug, Diagnostic)]
92#[non_exhaustive]
93pub enum LuaInstallationError {
94    #[error("could not find a Lua installation and failed to build Lua from source:\n{0}")]
95    #[diagnostic(forward(0))]
96    Build(#[from] BuildLuaError),
97    #[error(transparent)]
98    #[diagnostic(transparent)]
99    LuaVersionUnset(#[from] LuaVersionUnset),
100}
101
102impl LuaInstallation {
103    #[tracing::instrument(level = "trace", skip_all)]
104    pub async fn new_from_config(config: &Config) -> Result<Self, LuaInstallationError> {
105        Self::new(LuaVersion::from(config)?, config).await
106    }
107
108    #[tracing::instrument(level = "trace", skip(config))]
109    pub async fn new(version: &LuaVersion, config: &Config) -> Result<Self, LuaInstallationError> {
110        let _lock = NEW_MUTEX.lock().await;
111        if let Some(lua_intallation) = Self::probe(version, config.external_deps()) {
112            return Ok(lua_intallation);
113        }
114        let output = Self::root_dir(version, config);
115        let include_dir = output.join("include");
116        let lib_dir = output.join("lib");
117        let lua_lib_name = get_lua_lib_name(&lib_dir, version);
118        if include_dir.is_dir() && lua_lib_name.is_some() {
119            let bin_dir = Some(output.join("bin")).filter(|bin_path| bin_path.is_dir());
120            let bin = bin_dir
121                .as_ref()
122                .and_then(|bin_path| find_lua_executable(bin_path, version));
123            let lib_dir = output.join("lib");
124            let lua_lib_name = get_lua_lib_name(&lib_dir, version);
125            let include_dir = Some(output.join("include"));
126            Ok(LuaInstallation {
127                version: version.clone(),
128                dependency_info: ExternalDependencyInfo {
129                    include_dir,
130                    lib_dir: Some(lib_dir),
131                    bin_dir,
132                    lib_info: None,
133                    lib_name: lua_lib_name,
134                },
135                bin,
136            })
137        } else {
138            Self::install(version, config).await
139        }
140    }
141
142    #[tracing::instrument(level = "trace")]
143    pub(crate) fn probe(
144        version: &LuaVersion,
145        search_config: &ExternalDependencySearchConfig,
146    ) -> Option<Self> {
147        let pkg_name_probes = match version {
148            LuaVersion::Lua51 => vec!["lua5.1", "lua-5.1"],
149            LuaVersion::Lua52 => vec!["lua5.2", "lua-5.2"],
150            LuaVersion::Lua53 => vec!["lua5.3", "lua-5.3"],
151            LuaVersion::Lua54 => vec!["lua5.4", "lua-5.4"],
152            LuaVersion::Lua55 => vec!["lua5.5", "lua-5.5"],
153            LuaVersion::LuaJIT | LuaVersion::LuaJIT52 => vec!["luajit"],
154        };
155
156        let mut dependency_info = pkg_name_probes
157            .iter()
158            .map(|pkg_name| {
159                ExternalDependencyInfo::probe(
160                    pkg_name,
161                    &ExternalDependencySpec::default(),
162                    search_config,
163                )
164            })
165            .find_map(Result::ok);
166
167        if let Some(info) = &mut dependency_info {
168            if info.include_dir.is_none() || info.lib_dir.is_none() {
169                return None;
170            }
171            let bin = info.lib_dir.as_ref().and_then(|lib_dir| {
172                lib_dir
173                    .parent()
174                    .map(|parent| parent.join("bin"))
175                    .filter(|dir| dir.is_dir())
176                    .and_then(|bin_path| find_lua_executable(&bin_path, version))
177            });
178            let lua_lib_name = info
179                .lib_dir
180                .as_ref()
181                .and_then(|lib_dir| get_lua_lib_name(lib_dir, version));
182            info.lib_name = lua_lib_name;
183            dependency_info.map(|dependency_info| Self {
184                version: version.clone(),
185                dependency_info,
186                bin,
187            })
188        } else {
189            None
190        }
191    }
192
193    #[tracing::instrument(level = "trace", skip(config))]
194    pub async fn install(
195        version: &LuaVersion,
196        config: &Config,
197    ) -> Result<Self, LuaInstallationError> {
198        let _lock = INSTALL_MUTEX.lock().await;
199
200        let target = Self::root_dir(version, config);
201
202        operations::BuildLua::new()
203            .lua_version(version)
204            .install_dir(&target)
205            .config(config)
206            .build()
207            .await?;
208
209        let include_dir = target.join("include");
210        let lib_dir = target.join("lib");
211        let bin_dir = Some(target.join("bin")).filter(|bin_path| bin_path.is_dir());
212        let bin = bin_dir
213            .as_ref()
214            .and_then(|bin_path| find_lua_executable(bin_path, version));
215        let lua_lib_name = get_lua_lib_name(&lib_dir, version);
216        Ok(LuaInstallation {
217            version: version.clone(),
218            dependency_info: ExternalDependencyInfo {
219                include_dir: Some(include_dir),
220                lib_dir: Some(lib_dir),
221                bin_dir,
222                lib_info: None,
223                lib_name: lua_lib_name,
224            },
225            bin,
226        })
227    }
228
229    pub fn includes(&self) -> Vec<&PathBuf> {
230        self.dependency_info.include_dir.iter().collect_vec()
231    }
232
233    pub fn bin(&self) -> &Option<PathBuf> {
234        &self.bin
235    }
236
237    fn root_dir(version: &LuaVersion, config: &Config) -> PathBuf {
238        if let Some(lua_dir) = config.lua_dir() {
239            return lua_dir.clone();
240        } else if let Ok(tree) = config.user_tree(version.clone()) {
241            return tree.root().join(".lua");
242        }
243        config.data_dir().join(".lua").join(version.to_string())
244    }
245
246    #[cfg(not(target_env = "msvc"))]
247    fn lua_lib(&self) -> Option<String> {
248        self.dependency_info
249            .lib_name
250            .as_ref()
251            .map(|name| format!("{}.{}", name, c_lib_extension()))
252    }
253
254    #[cfg(target_env = "msvc")]
255    fn lua_lib(&self) -> Option<String> {
256        self.dependency_info.lib_name.clone()
257    }
258
259    pub(crate) fn define_flags(&self) -> Vec<String> {
260        self.dependency_info.define_flags()
261    }
262
263    pub(crate) fn lib_link_args(&self, compiler: &cc::Tool) -> Vec<String> {
264        self.dependency_info.lib_link_args(compiler)
265    }
266
267    /// Get the Lua binary (if present), prioritising
268    /// a potentially overridden value in the config.
269    pub(crate) fn lua_binary_or_config_override(&self, config: &Config) -> Option<String> {
270        config.variables().get("LUA").cloned().or(self
271            .bin
272            .clone()
273            .or(LuaBinary::new(self.version.clone(), config).try_into().ok())
274            .map(|bin| bin.to_slash_lossy().to_string()))
275    }
276}
277
278impl HasVariables for LuaInstallation {
279    #[tracing::instrument(level = "trace")]
280    fn get_variable(&self, input: &str) -> Result<Option<String>, GetVariableError> {
281        Ok(match input {
282            "LUA_INCDIR" => self
283                .dependency_info
284                .include_dir
285                .as_ref()
286                .map(|dir| format_path(dir)),
287            "LUA_LIBDIR" => self
288                .dependency_info
289                .lib_dir
290                .as_ref()
291                .map(|dir| format_path(dir)),
292            "LUA_BINDIR" => self
293                .bin
294                .as_ref()
295                .and_then(|bin| bin.parent().map(format_path)),
296            "LUA" => self
297                .bin
298                .clone()
299                .or(LuaBinary::Lua {
300                    lua_version: self.version.clone(),
301                }
302                .try_into()
303                .ok())
304                .map(|lua| format_path(&lua)),
305            "LUALIB" => self.lua_lib().or(Some("".into())),
306            _ => None,
307        })
308    }
309}
310
311#[derive(Clone)]
312pub enum LuaBinary {
313    /// The regular Lua interpreter.
314    Lua { lua_version: LuaVersion },
315    /// Custom Lua interpreter.
316    Custom(String),
317}
318
319impl Display for LuaBinary {
320    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
321        match self {
322            LuaBinary::Lua { lua_version } => write!(f, "lua {lua_version}"),
323            LuaBinary::Custom(cmd) => write!(f, "{cmd}"),
324        }
325    }
326}
327
328impl LuaBinary {
329    /// Construct a new `LuaBinary` for the given `LuaVersion`,
330    /// potentially prioritising an overridden value in the config.
331    pub fn new(lua_version: LuaVersion, config: &Config) -> Self {
332        match config.variables().get("LUA").cloned() {
333            Some(lua) => Self::Custom(lua),
334            None => Self::Lua { lua_version },
335        }
336    }
337}
338
339impl From<PathBuf> for LuaBinary {
340    fn from(value: PathBuf) -> Self {
341        Self::Custom(value.to_string_lossy().to_string())
342    }
343}
344
345impl TryFrom<LuaBinary> for PathBuf {
346    type Error = LuaBinaryError;
347
348    fn try_from(value: LuaBinary) -> Result<Self, Self::Error> {
349        match value {
350            LuaBinary::Lua { lua_version } => {
351                if let Some(lua_binary) =
352                    LuaInstallation::probe(&lua_version, &ExternalDependencySearchConfig::default())
353                        .and_then(|lua_installation| lua_installation.bin)
354                {
355                    return Ok(lua_binary);
356                }
357                if lua_version.is_luajit() {
358                    if let Ok(path) = which("luajit") {
359                        return Ok(path);
360                    }
361                }
362                match which(format!("lua{}", lua_version)) {
363                    Ok(path) => Ok(path),
364                    Err(_) => detect_default_lua_bin(lua_version),
365                }
366            }
367            LuaBinary::Custom(bin) => match which(&bin) {
368                Ok(path) => Ok(path),
369                Err(_) => Err(LuaBinaryError::CustomBinaryNotFound(bin)),
370            },
371        }
372    }
373}
374
375fn detect_default_lua_bin(lua_version: LuaVersion) -> Result<PathBuf, LuaBinaryError> {
376    match which("lua") {
377        Ok(path) => {
378            let installed_version = detect_installed_lua_version_from_path(&path)?;
379            if lua_version
380                .clone()
381                .as_version_req()
382                .matches(&installed_version)
383            {
384                Ok(path)
385            } else {
386                Err(LuaBinaryError::LuaVersionMismatch {
387                    lua_cmd: path.to_slash_lossy().to_string(),
388                    installed_version,
389                    lua_version,
390                })?
391            }
392        }
393        Err(_) => Err(LuaBinaryError::LuaBinaryNotFound),
394    }
395}
396
397pub fn detect_installed_lua_version() -> Option<LuaVersion> {
398    which("lua")
399        .ok()
400        .or(which("luajit").ok())
401        .and_then(|lua_cmd| {
402            detect_installed_lua_version_from_path(&lua_cmd)
403                .ok()
404                .and_then(|version| LuaVersion::from_version(version).ok())
405        })
406}
407
408fn find_lua_executable(bin_path: &Path, version: &LuaVersion) -> Option<PathBuf> {
409    fs::sync::read_dir(bin_path).ok().and_then(|entries| {
410        let bin_files = entries
411            .filter_map(Result::ok)
412            .map(|entry| entry.path().to_path_buf())
413            .collect_vec();
414
415        #[cfg(windows)]
416        let ext = ".exe";
417
418        #[cfg(not(windows))]
419        let ext = "";
420
421        // Prioritise Lua binaries with version suffix
422        // (see https://github.com/lumen-oss/lux/issues/1215)
423        let lua_version_bin = format!("lua{}{}", version, ext);
424        if let Some(lua_bin) = bin_files
425            .iter()
426            .filter(|file| {
427                file.is_executable()
428                    && file
429                        .file_name()
430                        .is_some_and(|name| name.to_string_lossy() == lua_version_bin)
431            })
432            .collect_vec()
433            .first()
434            .cloned()
435        {
436            Some(lua_bin.clone())
437        } else {
438            // Fall back to Lua binary without version suffix
439            bin_files
440                .into_iter()
441                .filter(|file| {
442                    file.is_executable()
443                        && file.file_name().is_some_and(|name| {
444                            matches!(
445                                name.to_string_lossy().to_string().as_str(),
446                                "lua" | "luajit" | "lua.exe" | "luajit.exe"
447                            )
448                        })
449                })
450                .collect_vec()
451                .first()
452                .cloned()
453        }
454    })
455}
456
457fn is_lua_lib_name(name: &str, lua_version: &LuaVersion) -> bool {
458    let prefixes = match lua_version {
459        LuaVersion::LuaJIT | LuaVersion::LuaJIT52 => vec!["luajit", "lua"],
460        _ => vec!["lua"],
461    };
462    let version_str = lua_version.version_compatibility_str();
463    let version_suffix = version_str.replace(".", "");
464    #[cfg(target_family = "unix")]
465    let name = name.trim_start_matches("lib");
466    prefixes
467        .iter()
468        .any(|prefix| name == format!("{}.{}", *prefix, c_lib_extension()))
469        || prefixes.iter().any(|prefix| name.starts_with(*prefix))
470            && (name.contains(&version_str) || name.contains(&version_suffix))
471}
472
473fn get_lua_lib_name(lib_dir: &Path, lua_version: &LuaVersion) -> Option<String> {
474    fs::sync::read_dir(lib_dir)
475        .ok()
476        .and_then(|entries| {
477            entries
478                .filter_map(Result::ok)
479                .map(|entry| entry.path().to_path_buf())
480                .filter(|file| file.extension().is_some_and(|ext| ext == c_lib_extension()))
481                .filter(|file| {
482                    file.file_name()
483                        .is_some_and(|name| is_lua_lib_name(&name.to_string_lossy(), lua_version))
484                })
485                .collect_vec()
486                .first()
487                .cloned()
488        })
489        .map(|file| to_lib_name(&file))
490}
491
492fn detect_installed_lua_version_from_path(
493    lua_cmd: &Path,
494) -> Result<PackageVersion, DetectLuaVersionError> {
495    let output = match std::process::Command::new(lua_cmd).arg("-v").output() {
496        Ok(output) => Ok(output),
497        Err(err) => Err(DetectLuaVersionError::RunLuaCommand(
498            lua_cmd.to_string_lossy().to_string(),
499            err,
500        )),
501    }?;
502    let output_vec = if output.stderr.is_empty() {
503        output.stdout
504    } else {
505        // Yes, Lua 5.1 prints to stderr (-‸ლ)
506        output.stderr
507    };
508    let lua_output = String::from_utf8_lossy(&output_vec).to_string();
509    parse_lua_version_from_output(&lua_output)
510}
511
512fn parse_lua_version_from_output(
513    lua_output: &str,
514) -> Result<PackageVersion, DetectLuaVersionError> {
515    let lua_version_str = lua_output
516        .trim_start_matches("Lua")
517        .trim_start_matches("JIT")
518        .split_whitespace()
519        .next()
520        .map(|s| s.to_string())
521        .ok_or(DetectLuaVersionError::ParseLuaVersion(
522            lua_output.to_string(),
523        ))?;
524    Ok(PackageVersion::parse(&lua_version_str)?)
525}
526
527#[cfg(test)]
528mod tests {
529    use crate::config::ConfigBuilder;
530
531    use super::*;
532
533    #[tokio::test]
534    async fn parse_luajit_version() {
535        let luajit_output =
536            "LuaJIT 2.1.1713773202 -- Copyright (C) 2005-2023 Mike Pall. https://luajit.org/";
537        parse_lua_version_from_output(luajit_output).unwrap();
538    }
539
540    #[tokio::test]
541    async fn parse_lua_51_version() {
542        let lua_output = "Lua 5.1.5  Copyright (C) 1994-2012 Lua.org, PUC-Rio";
543        parse_lua_version_from_output(lua_output).unwrap();
544    }
545
546    #[tokio::test]
547    async fn lua_installation_bin() {
548        if std::env::var("LUX_SKIP_IMPURE_TESTS").unwrap_or("0".into()) == "1" {
549            println!("Skipping impure test");
550            return;
551        }
552        let config = ConfigBuilder::new().unwrap().build().unwrap();
553        let lua_version = config.lua_version().unwrap();
554        let lua_installation = LuaInstallation::new(lua_version, &config).await.unwrap();
555        // FIXME: This fails when run in the nix checkPhase
556        assert!(lua_installation.bin.is_some());
557        let lua_binary: LuaBinary = lua_installation.bin.unwrap().into();
558        let lua_bin_path: PathBuf = lua_binary.try_into().unwrap();
559        let pkg_version = detect_installed_lua_version_from_path(&lua_bin_path).unwrap();
560        assert_eq!(&LuaVersion::from_version(pkg_version).unwrap(), lua_version);
561    }
562
563    #[cfg(not(target_env = "msvc"))]
564    #[tokio::test]
565    async fn test_is_lua_lib_name() {
566        assert!(is_lua_lib_name("lua.a", &LuaVersion::Lua51));
567        assert!(is_lua_lib_name("lua-5.1.a", &LuaVersion::Lua51));
568        assert!(is_lua_lib_name("lua5.1.a", &LuaVersion::Lua51));
569        assert!(is_lua_lib_name("lua51.a", &LuaVersion::Lua51));
570        assert!(!is_lua_lib_name("lua-5.2.a", &LuaVersion::Lua51));
571        assert!(is_lua_lib_name("luajit-5.2.a", &LuaVersion::LuaJIT52));
572        assert!(is_lua_lib_name("lua-5.2.a", &LuaVersion::LuaJIT52));
573        assert!(is_lua_lib_name("liblua.a", &LuaVersion::Lua51));
574        assert!(is_lua_lib_name("liblua-5.1.a", &LuaVersion::Lua51));
575        assert!(is_lua_lib_name("liblua53.a", &LuaVersion::Lua53));
576        assert!(is_lua_lib_name("liblua-54.a", &LuaVersion::Lua54));
577        assert!(is_lua_lib_name("liblua-55.a", &LuaVersion::Lua55));
578    }
579
580    #[cfg(target_env = "msvc")]
581    #[tokio::test]
582    async fn test_is_lua_lib_name() {
583        assert!(is_lua_lib_name("lua.lib", &LuaVersion::Lua51));
584        assert!(is_lua_lib_name("lua-5.1.lib", &LuaVersion::Lua51));
585        assert!(!is_lua_lib_name("lua-5.2.lib", &LuaVersion::Lua51));
586        assert!(!is_lua_lib_name("lua53.lib", &LuaVersion::Lua53));
587        assert!(!is_lua_lib_name("lua53.lib", &LuaVersion::Lua53));
588        assert!(is_lua_lib_name("luajit-5.2.lib", &LuaVersion::LuaJIT52));
589        assert!(is_lua_lib_name("lua-5.2.lib", &LuaVersion::LuaJIT52));
590    }
591}