BucketEndpointArnMiddleware.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\Api\Service;
  4. use Aws\Arn\AccessPointArnInterface;
  5. use Aws\Arn\ArnParser;
  6. use Aws\Arn\ObjectLambdaAccessPointArn;
  7. use Aws\Arn\Exception\InvalidArnException;
  8. use Aws\Arn\AccessPointArn as BaseAccessPointArn;
  9. use Aws\Arn\S3\OutpostsAccessPointArn;
  10. use Aws\Arn\S3\MultiRegionAccessPointArn;
  11. use Aws\Arn\S3\OutpostsArnInterface;
  12. use Aws\CommandInterface;
  13. use Aws\Endpoint\PartitionEndpointProvider;
  14. use Aws\Exception\InvalidRegionException;
  15. use Aws\Exception\UnresolvedEndpointException;
  16. use Aws\S3\Exception\S3Exception;
  17. use InvalidArgumentException;
  18. use Psr\Http\Message\RequestInterface;
  19. /**
  20. * Checks for access point ARN in members targeting BucketName, modifying
  21. * endpoint as appropriate
  22. *
  23. * @internal
  24. */
  25. class BucketEndpointArnMiddleware
  26. {
  27. use EndpointRegionHelperTrait;
  28. /** @var callable */
  29. private $nextHandler;
  30. /** @var array */
  31. private $nonArnableCommands = ['CreateBucket'];
  32. /** @var boolean */
  33. private $isUseEndpointV2;
  34. /**
  35. * Create a middleware wrapper function.
  36. *
  37. * @param Service $service
  38. * @param $region
  39. * @param array $config
  40. * @return callable
  41. */
  42. public static function wrap(
  43. Service $service,
  44. $region,
  45. array $config,
  46. $isUseEndpointV2
  47. ) {
  48. return function (callable $handler) use ($service, $region, $config, $isUseEndpointV2) {
  49. return new self($handler, $service, $region, $config, $isUseEndpointV2);
  50. };
  51. }
  52. public function __construct(
  53. callable $nextHandler,
  54. Service $service,
  55. $region,
  56. array $config = [],
  57. $isUseEndpointV2 = false
  58. ) {
  59. $this->partitionProvider = PartitionEndpointProvider::defaultProvider();
  60. $this->region = $region;
  61. $this->service = $service;
  62. $this->config = $config;
  63. $this->nextHandler = $nextHandler;
  64. $this->isUseEndpointV2 = $isUseEndpointV2;
  65. }
  66. public function __invoke(CommandInterface $cmd, RequestInterface $req)
  67. {
  68. $nextHandler = $this->nextHandler;
  69. $op = $this->service->getOperation($cmd->getName())->toArray();
  70. if (!empty($op['input']['shape'])) {
  71. $service = $this->service->toArray();
  72. if (!empty($input = $service['shapes'][$op['input']['shape']])) {
  73. foreach ($input['members'] as $key => $member) {
  74. if ($member['shape'] === 'BucketName') {
  75. $arnableKey = $key;
  76. break;
  77. }
  78. }
  79. if (!empty($arnableKey) && ArnParser::isArn($cmd[$arnableKey])) {
  80. try {
  81. // Throw for commands that do not support ARN inputs
  82. if (in_array($cmd->getName(), $this->nonArnableCommands)) {
  83. throw new S3Exception(
  84. 'ARN values cannot be used in the bucket field for'
  85. . ' the ' . $cmd->getName() . ' operation.',
  86. $cmd
  87. );
  88. }
  89. if (!$this->isUseEndpointV2) {
  90. $arn = ArnParser::parse($cmd[$arnableKey]);
  91. $partition = $this->validateArn($arn);
  92. $host = $this->generateAccessPointHost($arn, $req);
  93. }
  94. // Remove encoded bucket string from path
  95. $path = $req->getUri()->getPath();
  96. $encoded = rawurlencode($cmd[$arnableKey]);
  97. $len = strlen($encoded) + 1;
  98. if (trim(substr($path, 0, $len), '/') === "{$encoded}") {
  99. $path = substr($path, $len);
  100. if (substr($path, 0, 1) !== "/") {
  101. $path = '/' . $path;
  102. }
  103. }
  104. if (empty($path)) {
  105. $path = '';
  106. }
  107. // Set modified request
  108. if ($this->isUseEndpointV2) {
  109. $req = $req->withUri(
  110. $req->getUri()->withPath($path)
  111. );
  112. goto next;
  113. }
  114. $req = $req->withUri(
  115. $req->getUri()->withPath($path)->withHost($host)
  116. );
  117. // Update signing region based on ARN data if configured to do so
  118. if ($this->config['use_arn_region']->isUseArnRegion()
  119. && !$this->config['use_fips_endpoint']->isUseFipsEndpoint()
  120. ) {
  121. $region = $arn->getRegion();
  122. } else {
  123. $region = $this->region;
  124. }
  125. $endpointData = $partition([
  126. 'region' => $region,
  127. 'service' => $arn->getService()
  128. ]);
  129. $cmd['@context']['signing_region'] = $endpointData['signingRegion'];
  130. // Update signing service for Outposts and Lambda ARNs
  131. if ($arn instanceof OutpostsArnInterface
  132. || $arn instanceof ObjectLambdaAccessPointArn
  133. ) {
  134. $cmd['@context']['signing_service'] = $arn->getService();
  135. }
  136. } catch (InvalidArnException $e) {
  137. // Add context to ARN exception
  138. throw new S3Exception(
  139. 'Bucket parameter parsed as ARN and failed with: '
  140. . $e->getMessage(),
  141. $cmd,
  142. [],
  143. $e
  144. );
  145. }
  146. }
  147. }
  148. }
  149. next:
  150. return $nextHandler($cmd, $req);
  151. }
  152. private function generateAccessPointHost(
  153. BaseAccessPointArn $arn,
  154. RequestInterface $req
  155. ) {
  156. if ($arn instanceof OutpostsAccessPointArn) {
  157. $accesspointName = $arn->getAccesspointName();
  158. } else {
  159. $accesspointName = $arn->getResourceId();
  160. }
  161. if ($arn instanceof MultiRegionAccessPointArn) {
  162. $partition = $this->partitionProvider->getPartitionByName(
  163. $arn->getPartition(),
  164. 's3'
  165. );
  166. $dnsSuffix = $partition->getDnsSuffix();
  167. return "{$accesspointName}.accesspoint.s3-global.{$dnsSuffix}";
  168. }
  169. $host = "{$accesspointName}-" . $arn->getAccountId();
  170. $useFips = $this->config['use_fips_endpoint']->isUseFipsEndpoint();
  171. $fipsString = $useFips ? "-fips" : "";
  172. if ($arn instanceof OutpostsAccessPointArn) {
  173. $host .= '.' . $arn->getOutpostId() . '.s3-outposts';
  174. } else if ($arn instanceof ObjectLambdaAccessPointArn) {
  175. if (!empty($this->config['endpoint'])) {
  176. return $host . '.' . $this->config['endpoint'];
  177. } else {
  178. $host .= ".s3-object-lambda{$fipsString}";
  179. }
  180. } else {
  181. $host .= ".s3-accesspoint{$fipsString}";
  182. if (!empty($this->config['dual_stack'])) {
  183. $host .= '.dualstack';
  184. }
  185. }
  186. if (!empty($this->config['use_arn_region']->isUseArnRegion())) {
  187. $region = $arn->getRegion();
  188. } else {
  189. $region = $this->region;
  190. }
  191. $region = \Aws\strip_fips_pseudo_regions($region);
  192. $host .= '.' . $region . '.' . $this->getPartitionSuffix($arn, $this->partitionProvider);
  193. return $host;
  194. }
  195. /**
  196. * Validates an ARN, returning a partition object corresponding to the ARN
  197. * if successful
  198. *
  199. * @param $arn
  200. * @return \Aws\Endpoint\Partition
  201. */
  202. private function validateArn($arn)
  203. {
  204. if ($arn instanceof AccessPointArnInterface) {
  205. // Dualstack is not supported with Outposts access points
  206. if ($arn instanceof OutpostsAccessPointArn
  207. && !empty($this->config['dual_stack'])
  208. ) {
  209. throw new UnresolvedEndpointException(
  210. 'Dualstack is currently not supported with S3 Outposts access'
  211. . ' points. Please disable dualstack or do not supply an'
  212. . ' access point ARN.');
  213. }
  214. if ($arn instanceof MultiRegionAccessPointArn) {
  215. if (!empty($this->config['disable_multiregion_access_points'])) {
  216. throw new UnresolvedEndpointException(
  217. 'Multi-Region Access Point ARNs are disabled, but one was provided. Please'
  218. . ' enable them or provide a different ARN.'
  219. );
  220. }
  221. if (!empty($this->config['dual_stack'])) {
  222. throw new UnresolvedEndpointException(
  223. 'Multi-Region Access Point ARNs do not currently support dual stack. Please'
  224. . ' disable dual stack or provide a different ARN.'
  225. );
  226. }
  227. }
  228. // Accelerate is not supported with access points
  229. if (!empty($this->config['accelerate'])) {
  230. throw new UnresolvedEndpointException(
  231. 'Accelerate is currently not supported with access points.'
  232. . ' Please disable accelerate or do not supply an access'
  233. . ' point ARN.');
  234. }
  235. // Path-style is not supported with access points
  236. if (!empty($this->config['path_style'])) {
  237. throw new UnresolvedEndpointException(
  238. 'Path-style addressing is currently not supported with'
  239. . ' access points. Please disable path-style or do not'
  240. . ' supply an access point ARN.');
  241. }
  242. // Custom endpoint is not supported with access points
  243. if (!is_null($this->config['endpoint'])
  244. && !$arn instanceof ObjectLambdaAccessPointArn
  245. ) {
  246. throw new UnresolvedEndpointException(
  247. 'A custom endpoint has been supplied along with an access'
  248. . ' point ARN, and these are not compatible with each other.'
  249. . ' Please only use one or the other.');
  250. }
  251. // Dualstack is not supported with object lambda access points
  252. if ($arn instanceof ObjectLambdaAccessPointArn
  253. && !empty($this->config['dual_stack'])
  254. ) {
  255. throw new UnresolvedEndpointException(
  256. 'Dualstack is currently not supported with Object Lambda access'
  257. . ' points. Please disable dualstack or do not supply an'
  258. . ' access point ARN.');
  259. }
  260. // Global endpoints do not support cross-region requests
  261. if ($this->isGlobal($this->region)
  262. && $this->config['use_arn_region']->isUseArnRegion() == false
  263. && $arn->getRegion() != $this->region
  264. && !$arn instanceof MultiRegionAccessPointArn
  265. ) {
  266. throw new UnresolvedEndpointException(
  267. 'Global endpoints do not support cross region requests.'
  268. . ' Please enable use_arn_region or do not supply a global region'
  269. . ' with a different region in the ARN.');
  270. }
  271. // Get partitions for ARN and client region
  272. $arnPart = $this->partitionProvider->getPartition(
  273. $arn->getRegion(),
  274. 's3'
  275. );
  276. $clientPart = $this->partitionProvider->getPartition(
  277. $this->region,
  278. 's3'
  279. );
  280. // If client partition not found, try removing pseudo-region qualifiers
  281. if (!($clientPart->isRegionMatch($this->region, 's3'))) {
  282. $clientPart = $this->partitionProvider->getPartition(
  283. \Aws\strip_fips_pseudo_regions($this->region),
  284. 's3'
  285. );
  286. }
  287. if (!$arn instanceof MultiRegionAccessPointArn) {
  288. // Verify that the partition matches for supplied partition and region
  289. if ($arn->getPartition() !== $clientPart->getName()) {
  290. throw new InvalidRegionException('The supplied ARN partition'
  291. . " does not match the client's partition.");
  292. }
  293. if ($clientPart->getName() !== $arnPart->getName()) {
  294. throw new InvalidRegionException('The corresponding partition'
  295. . ' for the supplied ARN region does not match the'
  296. . " client's partition.");
  297. }
  298. // Ensure ARN region matches client region unless
  299. // configured for using ARN region over client region
  300. $this->validateMatchingRegion($arn);
  301. // Ensure it is not resolved to fips pseudo-region for S3 Outposts
  302. $this->validateFipsConfigurations($arn);
  303. }
  304. return $arnPart;
  305. }
  306. throw new InvalidArnException('Provided ARN was not a valid S3 access'
  307. . ' point ARN or S3 Outposts access point ARN.');
  308. }
  309. /**
  310. * Checks if a region is global
  311. *
  312. * @param $region
  313. * @return bool
  314. */
  315. private function isGlobal($region)
  316. {
  317. return $region == 's3-external-1' || $region == 'aws-global';
  318. }
  319. }