RemoteHostValidator.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. if ($host === false) {
  49. return false;
  50. }
  51. // Remove brackets from IPv6 addresses
  52. if (str_starts_with($host, '[') && str_ends_with($host, ']')) {
  53. $host = substr($host, 1, -1);
  54. }
  55. if ($this->hostnameClassifier->isLocalHostname($host)
  56. || $this->ipAddressClassifier->isLocalAddress($host)) {
  57. $this->logger->warning("Host $host was not connected to because it violates local access rules");
  58. return false;
  59. }
  60. return true;
  61. }
  62. }