1
0
Fork 0

Merge branch '2.3'

pull/10953/head
Jordi Boggiano 2022-07-13 15:49:55 +02:00
commit 37d3e2f44a
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
14 changed files with 108 additions and 53 deletions

View File

@ -1,3 +1,11 @@
### [2.3.10] 2022-07-13
* Fixed plugins from CWD/vendor being loaded in some cases like create-project or validate even though the target directory is outside of CWD (#10935)
* Fixed support for legacy (Composer 1.x, e.g. hirak/prestissimo) plugins which will not warn/error anymore if not in allow-plugins, as they are anyway not loaded (#10928)
* Fixed pre-install check for allowed plugins not taking --no-plugins into account (#10925)
* Fixed support for disable_functions containing disk_free_space (#10936)
* Fixed RootPackageRepository usages to always clone the root package to avoid interoperability issues with plugins (#10940)
### [2.3.9] 2022-07-05 ### [2.3.9] 2022-07-05
* Fixed non-interactive behavior of allow-plugins to throw instead of continue with a warning to avoid broken installs (#10920) * Fixed non-interactive behavior of allow-plugins to throw instead of continue with a warning to avoid broken installs (#10920)
@ -111,6 +119,14 @@
* Fixed symlink creation in linux VM guest filesystems to be recognized by Windows (#10592) * Fixed symlink creation in linux VM guest filesystems to be recognized by Windows (#10592)
* Performance improvement in pool optimization step (#10585) * Performance improvement in pool optimization step (#10585)
### [2.2.17] 2022-07-13
* Fixed plugins from CWD/vendor being loaded in some cases like create-project or validate even though the target directory is outside of CWD (#10935)
* Fixed support for legacy (Composer 1.x, e.g. hirak/prestissimo) plugins which will not warn/error anymore if not in allow-plugins, as they are anyway not loaded (#10928)
* Fixed pre-install check for allowed plugins not taking --no-plugins into account (#10925)
* Fixed support for disable_functions containing disk_free_space (#10936)
* Fixed RootPackageRepository usages to always clone the root package to avoid interoperability issues with plugins (#10940)
### [2.2.16] 2022-07-05 ### [2.2.16] 2022-07-05
* Fixed non-interactive behavior of allow-plugins to throw instead of continue with a warning to avoid broken installs (#10920) * Fixed non-interactive behavior of allow-plugins to throw instead of continue with a warning to avoid broken installs (#10920)
@ -1574,6 +1590,7 @@
* Initial release * Initial release
[2.3.10]: https://github.com/composer/composer/compare/2.3.9...2.3.10
[2.3.9]: https://github.com/composer/composer/compare/2.3.8...2.3.9 [2.3.9]: https://github.com/composer/composer/compare/2.3.8...2.3.9
[2.3.8]: https://github.com/composer/composer/compare/2.3.7...2.3.8 [2.3.8]: https://github.com/composer/composer/compare/2.3.7...2.3.8
[2.3.7]: https://github.com/composer/composer/compare/2.3.6...2.3.7 [2.3.7]: https://github.com/composer/composer/compare/2.3.6...2.3.7
@ -1586,6 +1603,7 @@
[2.3.0]: https://github.com/composer/composer/compare/2.3.0-RC2...2.3.0 [2.3.0]: https://github.com/composer/composer/compare/2.3.0-RC2...2.3.0
[2.3.0-RC2]: https://github.com/composer/composer/compare/2.3.0-RC1...2.3.0-RC2 [2.3.0-RC2]: https://github.com/composer/composer/compare/2.3.0-RC1...2.3.0-RC2
[2.3.0-RC1]: https://github.com/composer/composer/compare/2.2.9...2.3.0-RC1 [2.3.0-RC1]: https://github.com/composer/composer/compare/2.2.9...2.3.0-RC1
[2.2.17]: https://github.com/composer/composer/compare/2.2.16...2.2.17
[2.2.16]: https://github.com/composer/composer/compare/2.2.15...2.2.16 [2.2.16]: https://github.com/composer/composer/compare/2.2.15...2.2.16
[2.2.15]: https://github.com/composer/composer/compare/2.2.14...2.2.15 [2.2.15]: https://github.com/composer/composer/compare/2.2.14...2.2.15
[2.2.14]: https://github.com/composer/composer/compare/2.2.13...2.2.14 [2.2.14]: https://github.com/composer/composer/compare/2.2.13...2.2.14

View File

@ -162,11 +162,11 @@ class Cache
unlink($tempFileName); unlink($tempFileName);
$message = sprintf( $message = sprintf(
'<warning>Writing %1$s into cache failed after %2$u of %3$u bytes written, only %4$u bytes of free space available</warning>', '<warning>Writing %1$s into cache failed after %2$u of %3$u bytes written, only %4$s bytes of free space available</warning>',
$tempFileName, $tempFileName,
$m[1], $m[1],
$m[2], $m[2],
@disk_free_space(dirname($tempFileName)) function_exists('disk_free_space') ? @disk_free_space(dirname($tempFileName)) : 'unknown'
); );
$this->io->writeError($message); $this->io->writeError($message);

View File

@ -60,7 +60,7 @@ abstract class BaseDependencyCommand extends BaseCommand
$repos = []; $repos = [];
$repos[] = new RootPackageRepository($composer->getPackage()); $repos[] = new RootPackageRepository(clone $composer->getPackage());
if ($input->getOption('locked')) { if ($input->getOption('locked')) {
$locker = $composer->getLocker(); $locker = $composer->getLocker();

View File

@ -77,7 +77,7 @@ EOT
$requires[$require] = array($link); $requires[$require] = array($link);
} }
$installedRepo = new InstalledRepository(array($installedRepo, new RootPackageRepository($composer->getPackage()))); $installedRepo = new InstalledRepository(array($installedRepo, new RootPackageRepository(clone $composer->getPackage())));
foreach ($installedRepo->getPackages() as $package) { foreach ($installedRepo->getPackages() as $package) {
if (in_array($package->getName(), $removePackages, true)) { if (in_array($package->getName(), $removePackages, true)) {
continue; continue;

View File

@ -26,6 +26,7 @@ use Composer\DependencyResolver\Operation\InstallOperation;
use Composer\Package\Version\VersionSelector; use Composer\Package\Version\VersionSelector;
use Composer\Package\AliasPackage; use Composer\Package\AliasPackage;
use Composer\Pcre\Preg; use Composer\Pcre\Preg;
use Composer\Plugin\PluginBlockedException;
use Composer\Repository\RepositoryFactory; use Composer\Repository\RepositoryFactory;
use Composer\Repository\CompositeRepository; use Composer\Repository\CompositeRepository;
use Composer\Repository\PlatformRepository; use Composer\Repository\PlatformRepository;
@ -274,10 +275,16 @@ EOT
$installer->disablePlugins(); $installer->disablePlugins();
} }
try {
$status = $installer->run(); $status = $installer->run();
if (0 !== $status) { if (0 !== $status) {
return $status; return $status;
} }
} catch (PluginBlockedException $e) {
$io->writeError('<error>Hint: To allow running the config command recommended below before dependencies are installed, run create-project with --no-install.</error>');
$io->writeError('<error>You can then cd into '.getcwd().', configure allow-plugins, and finally run a composer install to complete the process.</error>');
throw $e;
}
} }
$hasVcs = $installedFromVcs; $hasVcs = $installedFromVcs;
@ -409,15 +416,7 @@ EOT
throw new \InvalidArgumentException('Invalid stability provided ('.$stability.'), must be one of: '.implode(', ', array_keys(BasePackage::$stabilities))); throw new \InvalidArgumentException('Invalid stability provided ('.$stability.'), must be one of: '.implode(', ', array_keys(BasePackage::$stabilities)));
} }
$composerJson = array_merge( $composer = Factory::create($io, $config->all(), $disablePlugins, $disableScripts);
// prevent version guessing from happening
array('version' => '1.0.0'),
$config->all(),
// ensure the vendor dir and its plugins does not get loaded if CWD/vendor has plugins in it
array('config' => array('vendor-dir' => Platform::getDevNull()))
);
$factory = new Factory;
$composer = $factory->createComposer($io, $composerJson, $disablePlugins, Platform::getDevNull(), true, $disableScripts);
$config = $composer->getConfig(); $config = $composer->getConfig();
$rm = $composer->getRepositoryManager(); $rm = $composer->getRepositoryManager();

View File

@ -377,6 +377,10 @@ EOT
*/ */
private function checkDiskSpace(Config $config) private function checkDiskSpace(Config $config)
{ {
if (!function_exists('disk_free_space')) {
return true;
}
$minSpaceFree = 1024 * 1024; $minSpaceFree = 1024 * 1024;
if ((($df = @disk_free_space($dir = $config->get('home'))) !== false && $df < $minSpaceFree) if ((($df = @disk_free_space($dir = $config->get('home'))) !== false && $df < $minSpaceFree)
|| (($df = @disk_free_space($dir = $config->get('vendor-dir'))) !== false && $df < $minSpaceFree) || (($df = @disk_free_space($dir = $config->get('vendor-dir'))) !== false && $df < $minSpaceFree)

View File

@ -166,7 +166,7 @@ EOT
if ($composer) { if ($composer) {
return array_merge( return array_merge(
array(new RootPackageRepository($composer->getPackage())), // root package array(new RootPackageRepository(clone $composer->getPackage())), // root package
array($composer->getRepositoryManager()->getLocalRepository()), // installed packages array($composer->getRepositoryManager()->getLocalRepository()), // installed packages
$composer->getRepositoryManager()->getRepositories() // remotes $composer->getRepositoryManager()->getRepositories() // remotes
); );

View File

@ -196,7 +196,7 @@ EOT
$lockedRepo = null; $lockedRepo = null;
if ($input->getOption('self')) { if ($input->getOption('self')) {
$package = $this->requireComposer()->getPackage(); $package = clone $this->requireComposer()->getPackage();
if ($input->getOption('name-only')) { if ($input->getOption('name-only')) {
$io->write($package->getName()); $io->write($package->getName());

View File

@ -410,7 +410,7 @@ class Application extends BaseApplication
Silencer::suppress(); Silencer::suppress();
try { try {
$composer = $this->getComposer(false, true); $composer = $this->getComposer(false, true);
if ($composer) { if (null !== $composer && function_exists('disk_free_space')) {
$config = $composer->getConfig(); $config = $composer->getConfig();
$minSpaceFree = 1024 * 1024; $minSpaceFree = 1024 * 1024;

View File

@ -276,7 +276,7 @@ class Factory
* @param IOInterface $io IO instance * @param IOInterface $io IO instance
* @param array<string, mixed>|string|null $localConfig either a configuration array or a filename to read from, if null it will * @param array<string, mixed>|string|null $localConfig either a configuration array or a filename to read from, if null it will
* read from the default filename * read from the default filename
* @param bool $disablePlugins Whether plugins should not be loaded * @param bool|'local'|'global' $disablePlugins Whether plugins should not be loaded, can be set to local or global to only disable local/global plugins
* @param bool $disableScripts Whether scripts should not be run * @param bool $disableScripts Whether scripts should not be run
* @param string|null $cwd * @param string|null $cwd
* @param bool $fullLoad Whether to initialize everything or only main project stuff (used when loading the global composer) * @param bool $fullLoad Whether to initialize everything or only main project stuff (used when loading the global composer)
@ -285,7 +285,7 @@ class Factory
* @return Composer|PartialComposer Composer if $fullLoad is true, otherwise PartialComposer * @return Composer|PartialComposer Composer if $fullLoad is true, otherwise PartialComposer
* @phpstan-return ($fullLoad is true ? Composer : PartialComposer) * @phpstan-return ($fullLoad is true ? Composer : PartialComposer)
*/ */
public function createComposer(IOInterface $io, $localConfig = null, bool $disablePlugins = false, ?string $cwd = null, bool $fullLoad = true, bool $disableScripts = false) public function createComposer(IOInterface $io, $localConfig = null, $disablePlugins = false, ?string $cwd = null, bool $fullLoad = true, bool $disableScripts = false)
{ {
$cwd = $cwd ?? Platform::getCwd(true); $cwd = $cwd ?? Platform::getCwd(true);
@ -473,11 +473,15 @@ class Factory
} }
/** /**
* @param bool|'local'|'global' $disablePlugins Whether plugins should not be loaded, can be set to local or global to only disable local/global plugins
* @return PartialComposer|Composer|null By default PartialComposer, but Composer if $fullLoad is set to true * @return PartialComposer|Composer|null By default PartialComposer, but Composer if $fullLoad is set to true
* @phpstan-return ($fullLoad is true ? Composer|null : PartialComposer|null) * @phpstan-return ($fullLoad is true ? Composer|null : PartialComposer|null)
*/ */
protected function createGlobalComposer(IOInterface $io, Config $config, bool $disablePlugins, bool $disableScripts, bool $fullLoad = false): ?PartialComposer protected function createGlobalComposer(IOInterface $io, Config $config, $disablePlugins, bool $disableScripts, bool $fullLoad = false): ?PartialComposer
{ {
// make sure if disable plugins was 'local' it is now turned off
$disablePlugins = $disablePlugins === 'global' || $disablePlugins === true;
$composer = null; $composer = null;
try { try {
$composer = $this->createComposer($io, $config->get('home') . '/composer.json', $disablePlugins, $config->get('home'), $fullLoad, $disableScripts); $composer = $this->createComposer($io, $config->get('home') . '/composer.json', $disablePlugins, $config->get('home'), $fullLoad, $disableScripts);
@ -558,9 +562,10 @@ class Factory
} }
/** /**
* @param bool|'local'|'global' $disablePlugins Whether plugins should not be loaded, can be set to local or global to only disable local/global plugins
* @return Plugin\PluginManager * @return Plugin\PluginManager
*/ */
protected function createPluginManager(IOInterface $io, Composer $composer, PartialComposer $globalComposer = null, bool $disablePlugins = false): Plugin\PluginManager protected function createPluginManager(IOInterface $io, Composer $composer, PartialComposer $globalComposer = null, $disablePlugins = false): Plugin\PluginManager
{ {
return new Plugin\PluginManager($io, $composer, $globalComposer, $disablePlugins); return new Plugin\PluginManager($io, $composer, $globalComposer, $disablePlugins);
} }
@ -608,14 +613,22 @@ class Factory
* @param IOInterface $io IO instance * @param IOInterface $io IO instance
* @param mixed $config either a configuration array or a filename to read from, if null it will read from * @param mixed $config either a configuration array or a filename to read from, if null it will read from
* the default filename * the default filename
* @param bool $disablePlugins Whether plugins should not be loaded * @param bool|'local'|'global' $disablePlugins Whether plugins should not be loaded, can be set to local or global to only disable local/global plugins
* @param bool $disableScripts Whether scripts should not be run * @param bool $disableScripts Whether scripts should not be run
* @return Composer * @return Composer
*/ */
public static function create(IOInterface $io, $config = null, bool $disablePlugins = false, bool $disableScripts = false): Composer public static function create(IOInterface $io, $config = null, $disablePlugins = false, bool $disableScripts = false): Composer
{ {
$factory = new static(); $factory = new static();
// for BC reasons, if a config is passed in either as array or a path that is not the default composer.json path
// we disable local plugins as they really should not be loaded from CWD
// If you want to avoid this behavior, you should be calling createComposer directly with a $cwd arg set correctly
// to the path where the composer.json being loaded resides
if ($config !== null && $config !== self::getComposerFile() && $disablePlugins === false) {
$disablePlugins = 'local';
}
return $factory->createComposer($io, $config, $disablePlugins, null, true, $disableScripts); return $factory->createComposer($io, $config, $disablePlugins, null, true, $disableScripts);
} }

View File

@ -49,7 +49,7 @@ class PluginInstaller extends LibraryInstaller
public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null) public function prepare($type, PackageInterface $package, PackageInterface $prevPackage = null)
{ {
// fail install process early if it is going to fail due to a plugin not being allowed // fail install process early if it is going to fail due to a plugin not being allowed
if (($type === 'install' || $type === 'update') && !$this->getPluginManager()->arePluginsDisabled()) { if (($type === 'install' || $type === 'update') && !$this->getPluginManager()->arePluginsDisabled('local')) {
$this->getPluginManager()->isPluginAllowed($package->getName(), false); $this->getPluginManager()->isPluginAllowed($package->getName(), false);
} }

View File

@ -134,7 +134,12 @@ abstract class BasePackage implements PackageInterface
public function setRepository(RepositoryInterface $repository): void public function setRepository(RepositoryInterface $repository): void
{ {
if ($this->repository && $repository !== $this->repository) { if ($this->repository && $repository !== $this->repository) {
throw new \LogicException('A package can only be added to one repository'); throw new \LogicException(sprintf(
'Package "%s" cannot be added to repository "%s" as it is already in repository "%s".',
$this->getPrettyName(),
$repository->getRepoName(),
$this->repository->getRepoName()
));
} }
$this->repository = $repository; $this->repository = $repository;
} }

View File

@ -0,0 +1,19 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Plugin;
use UnexpectedValueException;
class PluginBlockedException extends UnexpectedValueException
{
}

View File

@ -48,7 +48,7 @@ class PluginManager
protected $globalComposer; protected $globalComposer;
/** @var VersionParser */ /** @var VersionParser */
protected $versionParser; protected $versionParser;
/** @var bool */ /** @var bool|'local'|'global' */
protected $disablePlugins = false; protected $disablePlugins = false;
/** @var array<PluginInterface> */ /** @var array<PluginInterface> */
@ -69,7 +69,10 @@ class PluginManager
/** @var int */ /** @var int */
private static $classCounter = 0; private static $classCounter = 0;
public function __construct(IOInterface $io, Composer $composer, PartialComposer $globalComposer = null, bool $disablePlugins = false) /**
* @param bool|'local'|'global' $disablePlugins Whether plugins should not be loaded, can be set to local or global to only disable local/global plugins
*/
public function __construct(IOInterface $io, Composer $composer, PartialComposer $globalComposer = null, $disablePlugins = false)
{ {
$this->io = $io; $this->io = $io;
$this->composer = $composer; $this->composer = $composer;
@ -87,15 +90,13 @@ class PluginManager
*/ */
public function loadInstalledPlugins(): void public function loadInstalledPlugins(): void
{ {
if ($this->disablePlugins) { if (!$this->arePluginsDisabled('local')) {
return; $repo = $this->composer->getRepositoryManager()->getLocalRepository();
$this->loadRepository($repo, false);
} }
$repo = $this->composer->getRepositoryManager()->getLocalRepository(); if ($this->globalComposer !== null && !$this->arePluginsDisabled('global')) {
$globalRepo = $this->globalComposer !== null ? $this->globalComposer->getRepositoryManager()->getLocalRepository() : null; $this->loadRepository($this->globalComposer->getRepositoryManager()->getLocalRepository(), true);
$this->loadRepository($repo, false);
if ($globalRepo) {
$this->loadRepository($globalRepo, true);
} }
} }
@ -106,13 +107,12 @@ class PluginManager
*/ */
public function deactivateInstalledPlugins(): void public function deactivateInstalledPlugins(): void
{ {
if ($this->disablePlugins) { if (!$this->arePluginsDisabled('local')) {
return;
}
$repo = $this->composer->getRepositoryManager()->getLocalRepository(); $repo = $this->composer->getRepositoryManager()->getLocalRepository();
$this->deactivateRepository($repo, false); $this->deactivateRepository($repo, false);
if ($this->globalComposer !== null) { }
if ($this->globalComposer !== null && !$this->arePluginsDisabled('global')) {
$this->deactivateRepository($this->globalComposer->getRepositoryManager()->getLocalRepository(), true); $this->deactivateRepository($this->globalComposer->getRepositoryManager()->getLocalRepository(), true);
} }
} }
@ -151,7 +151,7 @@ class PluginManager
*/ */
public function registerPackage(PackageInterface $package, bool $failOnMissingClasses = false, bool $isGlobalPlugin = false): void public function registerPackage(PackageInterface $package, bool $failOnMissingClasses = false, bool $isGlobalPlugin = false): void
{ {
if ($this->disablePlugins) { if ($this->arePluginsDisabled($isGlobalPlugin ? 'global' : 'local')) {
return; return;
} }
@ -310,10 +310,6 @@ class PluginManager
*/ */
public function deactivatePackage(PackageInterface $package): void public function deactivatePackage(PackageInterface $package): void
{ {
if ($this->disablePlugins) {
return;
}
if (!isset($this->registeredPlugins[$package->getName()])) { if (!isset($this->registeredPlugins[$package->getName()])) {
return; return;
} }
@ -341,10 +337,6 @@ class PluginManager
*/ */
public function uninstallPackage(PackageInterface $package): void public function uninstallPackage(PackageInterface $package): void
{ {
if ($this->disablePlugins) {
return;
}
if (!isset($this->registeredPlugins[$package->getName()])) { if (!isset($this->registeredPlugins[$package->getName()])) {
return; return;
} }
@ -384,6 +376,10 @@ class PluginManager
*/ */
public function addPlugin(PluginInterface $plugin, bool $isGlobalPlugin = false, PackageInterface $sourcePackage = null): void public function addPlugin(PluginInterface $plugin, bool $isGlobalPlugin = false, PackageInterface $sourcePackage = null): void
{ {
if ($this->arePluginsDisabled($isGlobalPlugin ? 'global' : 'local')) {
return;
}
if ($sourcePackage === null) { if ($sourcePackage === null) {
trigger_error('Calling PluginManager::addPlugin without $sourcePackage is deprecated, if you are using this please get in touch with us to explain the use case', E_USER_DEPRECATED); trigger_error('Calling PluginManager::addPlugin without $sourcePackage is deprecated, if you are using this please get in touch with us to explain the use case', E_USER_DEPRECATED);
} elseif (!$this->isPluginAllowed($sourcePackage->getName(), $isGlobalPlugin)) { } elseif (!$this->isPluginAllowed($sourcePackage->getName(), $isGlobalPlugin)) {
@ -676,11 +672,12 @@ class PluginManager
/** /**
* @internal * @internal
* *
* @param 'local'|'global' $type
* @return bool * @return bool
*/ */
public function arePluginsDisabled() public function arePluginsDisabled($type)
{ {
return $this->disablePlugins; return $this->disablePlugins === true || $this->disablePlugins === $type;
} }
/** /**
@ -769,7 +766,7 @@ class PluginManager
} }
} }
throw new \UnexpectedValueException( throw new PluginBlockedException(
$package.($isGlobalPlugin ? ' (installed globally)' : '').' contains a Composer plugin which is blocked by your allow-plugins config. You may add it to the list if you consider it safe.'.PHP_EOL. $package.($isGlobalPlugin ? ' (installed globally)' : '').' contains a Composer plugin which is blocked by your allow-plugins config. You may add it to the list if you consider it safe.'.PHP_EOL.
'You can run "composer '.($isGlobalPlugin ? 'global ' : '').'config --no-plugins allow-plugins.'.$package.' [true|false]" to enable it (true) or disable it explicitly and suppress this exception (false)'.PHP_EOL. 'You can run "composer '.($isGlobalPlugin ? 'global ' : '').'config --no-plugins allow-plugins.'.$package.' [true|false]" to enable it (true) or disable it explicitly and suppress this exception (false)'.PHP_EOL.
'See https://getcomposer.org/allow-plugins' 'See https://getcomposer.org/allow-plugins'