RemoteHostValidator.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * @copyright 2022 Christoph Wurst <christoph@winzerhof-wurst.at>
  5. *
  6. * @author 2022 Christoph Wurst <christoph@winzerhof-wurst.at>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. namespace OC\Security;
  24. use OC\Net\HostnameClassifier;
  25. use OC\Net\IpAddressClassifier;
  26. use OCP\IConfig;
  27. use OCP\Security\IRemoteHostValidator;
  28. use Psr\Log\LoggerInterface;
  29. use function strtolower;
  30. use function substr;
  31. use function urldecode;
  32. /**
  33. * @internal
  34. */
  35. final class RemoteHostValidator implements IRemoteHostValidator {
  36. public function __construct(
  37. private IConfig $config,
  38. private HostnameClassifier $hostnameClassifier,
  39. private IpAddressClassifier $ipAddressClassifier,
  40. private LoggerInterface $logger,
  41. ) {
  42. }
  43. public function isValid(string $host): bool {
  44. if ($this->config->getSystemValueBool('allow_local_remote_servers', false)) {
  45. return true;
  46. }
  47. $host = idn_to_utf8(strtolower(urldecode($host)));
  48. // Remove brackets from IPv6 addresses
  49. if (str_starts_with($host, '[') && str_ends_with($host, ']')) {
  50. $host = substr($host, 1, -1);
  51. }
  52. if ($this->hostnameClassifier->isLocalHostname($host)
  53. || $this->ipAddressClassifier->isLocalAddress($host)) {
  54. $this->logger->warning("Host $host was not connected to because it violates local access rules");
  55. return false;
  56. }
  57. return true;
  58. }
  59. }