diff --git a/src/libstore/derived-path.cc b/src/libstore/derived-path.cc index 214caab54..22977c7b1 100644 --- a/src/libstore/derived-path.cc +++ b/src/libstore/derived-path.cc @@ -185,21 +185,32 @@ DerivedPath::Built DerivedPath::Built::parse( }; } -static SingleDerivedPath parseWithSingle( +template +static DerivedPathT parseDerivedPath( const Store & store, std::string_view s, std::string_view separator, const ExperimentalFeatureSettings & xpSettings) { size_t n = s.rfind(separator); - return n == s.npos - ? (SingleDerivedPath) SingleDerivedPath::Opaque::parse(store, s) - : (SingleDerivedPath) SingleDerivedPath::Built::parse(store, - make_ref(parseWithSingle( + if (n == s.npos) { + return DerivedPathT::Opaque::parse(store, s); + } else { + auto path = DerivedPathT::Built::parse(store, + make_ref(parseDerivedPath( store, s.substr(0, n), separator, xpSettings)), s.substr(n + 1), xpSettings); + + const auto& basePath = path.getBaseStorePath(); + if (!basePath.isDerivation()) { + throw InvalidPath("cannot use output selection ('%s') on non-derivation store path '%s'", + separator, basePath.to_string()); + } + + return path; + } } SingleDerivedPath SingleDerivedPath::parse( @@ -207,7 +218,7 @@ SingleDerivedPath SingleDerivedPath::parse( std::string_view s, const ExperimentalFeatureSettings & xpSettings) { - return parseWithSingle(store, s, "^", xpSettings); + return parseDerivedPath(store, s, "^", xpSettings); } SingleDerivedPath SingleDerivedPath::parseLegacy( @@ -215,24 +226,7 @@ SingleDerivedPath SingleDerivedPath::parseLegacy( std::string_view s, const ExperimentalFeatureSettings & xpSettings) { - return parseWithSingle(store, s, "!", xpSettings); -} - -static DerivedPath parseWith( - const Store & store, std::string_view s, std::string_view separator, - const ExperimentalFeatureSettings & xpSettings) -{ - size_t n = s.rfind(separator); - return n == s.npos - ? (DerivedPath) DerivedPath::Opaque::parse(store, s) - : (DerivedPath) DerivedPath::Built::parse(store, - make_ref(parseWithSingle( - store, - s.substr(0, n), - separator, - xpSettings)), - s.substr(n + 1), - xpSettings); + return parseDerivedPath(store, s, "!", xpSettings); } DerivedPath DerivedPath::parse( @@ -240,7 +234,7 @@ DerivedPath DerivedPath::parse( std::string_view s, const ExperimentalFeatureSettings & xpSettings) { - return parseWith(store, s, "^", xpSettings); + return parseDerivedPath(store, s, "^", xpSettings); } DerivedPath DerivedPath::parseLegacy( @@ -248,7 +242,7 @@ DerivedPath DerivedPath::parseLegacy( std::string_view s, const ExperimentalFeatureSettings & xpSettings) { - return parseWith(store, s, "!", xpSettings); + return parseDerivedPath(store, s, "!", xpSettings); } DerivedPath DerivedPath::fromSingle(const SingleDerivedPath & req) diff --git a/tests/unit/libstore/derived-path.cc b/tests/unit/libstore/derived-path.cc index c62d79a78..ffa541e9f 100644 --- a/tests/unit/libstore/derived-path.cc +++ b/tests/unit/libstore/derived-path.cc @@ -77,6 +77,15 @@ TEST_F(DerivedPathTest, built_built_xp) { MissingExperimentalFeature); } +/** + * Built paths with a non-derivation base should fail parsing. + */ +TEST_F(DerivedPathTest, non_derivation_base) { + ASSERT_THROW( + DerivedPath::parse(*store, "/nix/store/g1w7hy3qg1w7hy3qg1w7hy3qg1w7hy3q-x^foo"), + InvalidPath); +} + #ifndef COVERAGE RC_GTEST_FIXTURE_PROP(