S3EndpointMiddleware.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\Arn\ArnParser;
  4. use Aws\Arn\ObjectLambdaAccessPointArn;
  5. use Aws\ClientResolver;
  6. use Aws\CommandInterface;
  7. use Aws\Endpoint\EndpointProvider;
  8. use Aws\Endpoint\PartitionEndpointProvider;
  9. use GuzzleHttp\Exception\InvalidArgumentException;
  10. use GuzzleHttp\Psr7\Uri;
  11. use Psr\Http\Message\RequestInterface;
  12. /**
  13. * Used to update the URL used for S3 requests to support:
  14. * S3 Accelerate, S3 DualStack or Both. It will build to
  15. * host style paths unless specified, including for S3
  16. * DualStack.
  17. *
  18. * IMPORTANT: this middleware must be added after the "build" step.
  19. *
  20. * @internal
  21. */
  22. class S3EndpointMiddleware
  23. {
  24. private static $exclusions = [
  25. 'CreateBucket' => true,
  26. 'DeleteBucket' => true,
  27. 'ListBuckets' => true,
  28. ];
  29. const NO_PATTERN = 0;
  30. const DUALSTACK = 1;
  31. const ACCELERATE = 2;
  32. const ACCELERATE_DUALSTACK = 3;
  33. const PATH_STYLE = 4;
  34. const HOST_STYLE = 5;
  35. /** @var bool */
  36. private $accelerateByDefault;
  37. /** @var bool */
  38. private $dualStackByDefault;
  39. /** @var bool */
  40. private $pathStyleByDefault;
  41. /** @var string */
  42. private $region;
  43. /** @var callable */
  44. private $endpointProvider;
  45. /** @var callable */
  46. private $nextHandler;
  47. /** @var string */
  48. private $endpoint;
  49. /**
  50. * Create a middleware wrapper function
  51. *
  52. * @param string $region
  53. * @param EndpointProvider $endpointProvider
  54. * @param array $options
  55. *
  56. * @return callable
  57. */
  58. public static function wrap($region, $endpointProvider, array $options)
  59. {
  60. return function (callable $handler) use ($region, $endpointProvider, $options) {
  61. return new self($handler, $region, $options, $endpointProvider);
  62. };
  63. }
  64. public function __construct(
  65. callable $nextHandler,
  66. $region,
  67. array $options,
  68. $endpointProvider = null
  69. ) {
  70. $this->pathStyleByDefault = isset($options['path_style'])
  71. ? (bool) $options['path_style'] : false;
  72. $this->dualStackByDefault = isset($options['dual_stack'])
  73. ? (bool) $options['dual_stack'] : false;
  74. $this->accelerateByDefault = isset($options['accelerate'])
  75. ? (bool) $options['accelerate'] : false;
  76. $this->region = (string) $region;
  77. $this->endpoint = isset($options['endpoint'])
  78. ? $options['endpoint'] : "";
  79. $this->endpointProvider = is_null($endpointProvider)
  80. ? PartitionEndpointProvider::defaultProvider()
  81. : $endpointProvider;
  82. $this->nextHandler = $nextHandler;
  83. }
  84. public function __invoke(CommandInterface $command, RequestInterface $request)
  85. {
  86. if (!empty($this->endpoint)) {
  87. $request = $this->applyEndpoint($command, $request);
  88. } else {
  89. switch ($this->endpointPatternDecider($command, $request)) {
  90. case self::HOST_STYLE:
  91. $request = $this->applyHostStyleEndpoint($command, $request);
  92. break;
  93. case self::NO_PATTERN:
  94. break;
  95. case self::PATH_STYLE:
  96. $request = $this->applyPathStyleEndpointCustomizations($command, $request);
  97. break;
  98. case self::DUALSTACK:
  99. $request = $this->applyDualStackEndpoint($command, $request);
  100. break;
  101. case self::ACCELERATE:
  102. $request = $this->applyAccelerateEndpoint(
  103. $command,
  104. $request,
  105. 's3-accelerate'
  106. );
  107. break;
  108. case self::ACCELERATE_DUALSTACK:
  109. $request = $this->applyAccelerateEndpoint(
  110. $command,
  111. $request,
  112. 's3-accelerate.dualstack'
  113. );
  114. break;
  115. }
  116. }
  117. $nextHandler = $this->nextHandler;
  118. return $nextHandler($command, $request);
  119. }
  120. private static function isRequestHostStyleCompatible(
  121. CommandInterface $command,
  122. RequestInterface $request
  123. ) {
  124. return S3Client::isBucketDnsCompatible($command['Bucket'])
  125. && (
  126. $request->getUri()->getScheme() === 'http'
  127. || strpos($command['Bucket'], '.') === false
  128. )
  129. && filter_var($request->getUri()->getHost(), FILTER_VALIDATE_IP) === false;
  130. }
  131. private function endpointPatternDecider(
  132. CommandInterface $command,
  133. RequestInterface $request
  134. ) {
  135. $accelerate = isset($command['@use_accelerate_endpoint'])
  136. ? $command['@use_accelerate_endpoint'] : $this->accelerateByDefault;
  137. $dualStack = isset($command['@use_dual_stack_endpoint'])
  138. ? $command['@use_dual_stack_endpoint'] : $this->dualStackByDefault;
  139. $pathStyle = isset($command['@use_path_style_endpoint'])
  140. ? $command['@use_path_style_endpoint'] : $this->pathStyleByDefault;
  141. if ($accelerate && $dualStack) {
  142. // When try to enable both for operations excluded from s3-accelerate,
  143. // only dualstack endpoints will be enabled.
  144. return $this->canAccelerate($command)
  145. ? self::ACCELERATE_DUALSTACK
  146. : self::DUALSTACK;
  147. }
  148. if ($accelerate && $this->canAccelerate($command)) {
  149. return self::ACCELERATE;
  150. }
  151. if ($dualStack) {
  152. return self::DUALSTACK;
  153. }
  154. if (!$pathStyle
  155. && self::isRequestHostStyleCompatible($command, $request)
  156. ) {
  157. return self::HOST_STYLE;
  158. }
  159. return self::PATH_STYLE;
  160. }
  161. private function canAccelerate(CommandInterface $command)
  162. {
  163. return empty(self::$exclusions[$command->getName()])
  164. && S3Client::isBucketDnsCompatible($command['Bucket']);
  165. }
  166. private function getBucketStyleHost(CommandInterface $command, $host)
  167. {
  168. // For operations on the base host (e.g. ListBuckets)
  169. if (!isset($command['Bucket'])) {
  170. return $host;
  171. }
  172. return "{$command['Bucket']}.{$host}";
  173. }
  174. private function applyHostStyleEndpoint(
  175. CommandInterface $command,
  176. RequestInterface $request
  177. ) {
  178. $uri = $request->getUri();
  179. $request = $request->withUri(
  180. $uri->withHost($this->getBucketStyleHost(
  181. $command,
  182. $uri->getHost()
  183. ))
  184. ->withPath($this->getBucketlessPath(
  185. $uri->getPath(),
  186. $command
  187. ))
  188. );
  189. return $request;
  190. }
  191. private function applyPathStyleEndpointCustomizations(
  192. CommandInterface $command,
  193. RequestInterface $request
  194. ) {
  195. if ($command->getName() == 'WriteGetObjectResponse') {
  196. $dnsSuffix = $this->endpointProvider
  197. ->getPartition($this->region, 's3')
  198. ->getDnsSuffix();
  199. $fips = \Aws\is_fips_pseudo_region($this->region) ? "-fips" : "";
  200. $region = \Aws\strip_fips_pseudo_regions($this->region);
  201. $host =
  202. "{$command['RequestRoute']}.s3-object-lambda{$fips}.{$region}.{$dnsSuffix}";
  203. $uri = $request->getUri();
  204. $request = $request->withUri(
  205. $uri->withHost($host)
  206. ->withPath($this->getBucketlessPath(
  207. $uri->getPath(),
  208. $command
  209. ))
  210. );
  211. }
  212. return $request;
  213. }
  214. private function applyDualStackEndpoint(
  215. CommandInterface $command,
  216. RequestInterface $request
  217. ) {
  218. $request = $request->withUri(
  219. $request->getUri()->withHost($this->getDualStackHost())
  220. );
  221. if (empty($command['@use_path_style_endpoint'])
  222. && !$this->pathStyleByDefault
  223. && self::isRequestHostStyleCompatible($command, $request)
  224. ) {
  225. $request = $this->applyHostStyleEndpoint($command, $request);
  226. }
  227. return $request;
  228. }
  229. private function getDualStackHost()
  230. {
  231. $dnsSuffix = $this->endpointProvider
  232. ->getPartition($this->region, 's3')
  233. ->getDnsSuffix();
  234. return "s3.dualstack.{$this->region}.{$dnsSuffix}";
  235. }
  236. private function applyAccelerateEndpoint(
  237. CommandInterface $command,
  238. RequestInterface $request,
  239. $pattern
  240. ) {
  241. $request = $request->withUri(
  242. $request->getUri()
  243. ->withHost($this->getAccelerateHost($command, $pattern))
  244. ->withPath($this->getBucketlessPath(
  245. $request->getUri()->getPath(),
  246. $command
  247. ))
  248. );
  249. return $request;
  250. }
  251. private function getAccelerateHost(CommandInterface $command, $pattern)
  252. {
  253. $dnsSuffix = $this->endpointProvider
  254. ->getPartition($this->region, 's3')
  255. ->getDnsSuffix();
  256. return "{$command['Bucket']}.{$pattern}.{$dnsSuffix}";
  257. }
  258. private function getBucketlessPath($path, CommandInterface $command)
  259. {
  260. $pattern = '/^\\/' . preg_quote($command['Bucket'], '/') . '/';
  261. $path = preg_replace($pattern, '', $path) ?: '/';
  262. if (substr($path, 0 , 1) !== '/') {
  263. $path = '/' . $path;
  264. }
  265. return $path;
  266. }
  267. private function applyEndpoint(
  268. CommandInterface $command,
  269. RequestInterface $request
  270. ) {
  271. $dualStack = isset($command['@use_dual_stack_endpoint'])
  272. ? $command['@use_dual_stack_endpoint'] : $this->dualStackByDefault;
  273. if (ArnParser::isArn($command['Bucket'])) {
  274. $arn = ArnParser::parse($command['Bucket']);
  275. $outpost = $arn->getService() == 's3-outposts';
  276. if ($outpost && $dualStack) {
  277. throw new InvalidArgumentException("Outposts + dualstack is not supported");
  278. }
  279. if ($arn instanceof ObjectLambdaAccessPointArn) {
  280. return $request;
  281. }
  282. }
  283. if ($dualStack) {
  284. throw new InvalidArgumentException("Custom Endpoint + Dualstack not supported");
  285. }
  286. if ($command->getName() == 'WriteGetObjectResponse') {
  287. $host = "{$command['RequestRoute']}.{$this->endpoint}";
  288. $uri = $request->getUri();
  289. return $request = $request->withUri(
  290. $uri->withHost($host)
  291. ->withPath($this->getBucketlessPath(
  292. $uri->getPath(),
  293. $command
  294. ))
  295. );
  296. }
  297. $host = ($this->pathStyleByDefault) ?
  298. $this->endpoint :
  299. $this->getBucketStyleHost(
  300. $command,
  301. $this->endpoint
  302. );
  303. $uri = $request->getUri();
  304. $scheme = $uri->getScheme();
  305. if(empty($scheme)){
  306. $request = $request->withUri(
  307. $uri->withHost($host)
  308. );
  309. } else {
  310. $request = $request->withUri($uri);
  311. }
  312. return $request;
  313. }
  314. }