TraceMiddleware.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. <?php
  2. namespace Aws;
  3. use Aws\Api\Service;
  4. use Aws\Exception\AwsException;
  5. use GuzzleHttp\Promise\RejectedPromise;
  6. use Psr\Http\Message\RequestInterface;
  7. use Psr\Http\Message\ResponseInterface;
  8. use Psr\Http\Message\StreamInterface;
  9. use RecursiveArrayIterator;
  10. use RecursiveIteratorIterator;
  11. /**
  12. * Traces state changes between middlewares.
  13. */
  14. class TraceMiddleware
  15. {
  16. private $prevOutput;
  17. private $prevInput;
  18. private $config;
  19. /** @var Service */
  20. private $service;
  21. private static $authHeaders = [
  22. 'X-Amz-Security-Token' => '[TOKEN]',
  23. ];
  24. private static $authStrings = [
  25. // S3Signature
  26. '/AWSAccessKeyId=[A-Z0-9]{20}&/i' => 'AWSAccessKeyId=[KEY]&',
  27. // SignatureV4 Signature and S3Signature
  28. '/Signature=.+/i' => 'Signature=[SIGNATURE]',
  29. // SignatureV4 access key ID
  30. '/Credential=[A-Z0-9]{20}\//i' => 'Credential=[KEY]/',
  31. // S3 signatures
  32. '/AWS [A-Z0-9]{20}:.+/' => 'AWS AKI[KEY]:[SIGNATURE]',
  33. // STS Presigned URLs
  34. '/X-Amz-Security-Token=[^&]+/i' => 'X-Amz-Security-Token=[TOKEN]',
  35. // Crypto *Stream Keys
  36. '/\["key.{27,36}Stream.{9}\]=>\s+.{7}\d{2}\) "\X{16,64}"/U' => '["key":[CONTENT KEY]]',
  37. ];
  38. /**
  39. * Configuration array can contain the following key value pairs.
  40. *
  41. * - logfn: (callable) Function that is invoked with log messages. By
  42. * default, PHP's "echo" function will be utilized.
  43. * - stream_size: (int) When the size of a stream is greater than this
  44. * number, the stream data will not be logged. Set to "0" to not log any
  45. * stream data.
  46. * - scrub_auth: (bool) Set to false to disable the scrubbing of auth data
  47. * from the logged messages.
  48. * - http: (bool) Set to false to disable the "debug" feature of lower
  49. * level HTTP adapters (e.g., verbose curl output).
  50. * - auth_strings: (array) A mapping of authentication string regular
  51. * expressions to scrubbed strings. These mappings are passed directly to
  52. * preg_replace (e.g., preg_replace($key, $value, $debugOutput) if
  53. * "scrub_auth" is set to true.
  54. * - auth_headers: (array) A mapping of header names known to contain
  55. * sensitive data to what the scrubbed value should be. The value of any
  56. * headers contained in this array will be replaced with the if
  57. * "scrub_auth" is set to true.
  58. */
  59. public function __construct(array $config = [], Service $service = null)
  60. {
  61. $this->config = $config + [
  62. 'logfn' => function ($value) { echo $value; },
  63. 'stream_size' => 524288,
  64. 'scrub_auth' => true,
  65. 'http' => true,
  66. 'auth_strings' => [],
  67. 'auth_headers' => [],
  68. ];
  69. $this->config['auth_strings'] += self::$authStrings;
  70. $this->config['auth_headers'] += self::$authHeaders;
  71. $this->service = $service;
  72. }
  73. public function __invoke($step, $name)
  74. {
  75. $this->prevOutput = $this->prevInput = [];
  76. return function (callable $next) use ($step, $name) {
  77. return function (
  78. CommandInterface $command,
  79. $request = null
  80. ) use ($next, $step, $name) {
  81. $this->createHttpDebug($command);
  82. $start = microtime(true);
  83. $this->stepInput([
  84. 'step' => $step,
  85. 'name' => $name,
  86. 'request' => $this->requestArray($request),
  87. 'command' => $this->commandArray($command)
  88. ]);
  89. return $next($command, $request)->then(
  90. function ($value) use ($step, $name, $command, $start) {
  91. $this->flushHttpDebug($command);
  92. $this->stepOutput($start, [
  93. 'step' => $step,
  94. 'name' => $name,
  95. 'result' => $this->resultArray($value),
  96. 'error' => null
  97. ]);
  98. return $value;
  99. },
  100. function ($reason) use ($step, $name, $start, $command) {
  101. $this->flushHttpDebug($command);
  102. $this->stepOutput($start, [
  103. 'step' => $step,
  104. 'name' => $name,
  105. 'result' => null,
  106. 'error' => $this->exceptionArray($reason)
  107. ]);
  108. return new RejectedPromise($reason);
  109. }
  110. );
  111. };
  112. };
  113. }
  114. private function stepInput($entry)
  115. {
  116. static $keys = ['command', 'request'];
  117. $this->compareStep($this->prevInput, $entry, '-> Entering', $keys);
  118. $this->write("\n");
  119. $this->prevInput = $entry;
  120. }
  121. private function stepOutput($start, $entry)
  122. {
  123. static $keys = ['result', 'error'];
  124. $this->compareStep($this->prevOutput, $entry, '<- Leaving', $keys);
  125. $totalTime = microtime(true) - $start;
  126. $this->write(" Inclusive step time: " . $totalTime . "\n\n");
  127. $this->prevOutput = $entry;
  128. }
  129. private function compareStep(array $a, array $b, $title, array $keys)
  130. {
  131. $changes = [];
  132. foreach ($keys as $key) {
  133. $av = isset($a[$key]) ? $a[$key] : null;
  134. $bv = isset($b[$key]) ? $b[$key] : null;
  135. $this->compareArray($av, $bv, $key, $changes);
  136. }
  137. $str = "\n{$title} step {$b['step']}, name '{$b['name']}'";
  138. $str .= "\n" . str_repeat('-', strlen($str) - 1) . "\n\n ";
  139. $str .= $changes
  140. ? implode("\n ", str_replace("\n", "\n ", $changes))
  141. : 'no changes';
  142. $this->write($str . "\n");
  143. }
  144. private function commandArray(CommandInterface $cmd)
  145. {
  146. return [
  147. 'instance' => spl_object_hash($cmd),
  148. 'name' => $cmd->getName(),
  149. 'params' => $this->getRedactedArray($cmd)
  150. ];
  151. }
  152. private function requestArray($request = null)
  153. {
  154. return !$request instanceof RequestInterface
  155. ? []
  156. : array_filter([
  157. 'instance' => spl_object_hash($request),
  158. 'method' => $request->getMethod(),
  159. 'headers' => $this->redactHeaders($request->getHeaders()),
  160. 'body' => $this->streamStr($request->getBody()),
  161. 'scheme' => $request->getUri()->getScheme(),
  162. 'port' => $request->getUri()->getPort(),
  163. 'path' => $request->getUri()->getPath(),
  164. 'query' => $request->getUri()->getQuery(),
  165. ]);
  166. }
  167. private function responseArray(ResponseInterface $response = null)
  168. {
  169. return !$response ? [] : [
  170. 'instance' => spl_object_hash($response),
  171. 'statusCode' => $response->getStatusCode(),
  172. 'headers' => $this->redactHeaders($response->getHeaders()),
  173. 'body' => $this->streamStr($response->getBody())
  174. ];
  175. }
  176. private function resultArray($value)
  177. {
  178. return $value instanceof ResultInterface
  179. ? [
  180. 'instance' => spl_object_hash($value),
  181. 'data' => $value->toArray()
  182. ] : $value;
  183. }
  184. private function exceptionArray($e)
  185. {
  186. if (!($e instanceof \Exception)) {
  187. return $e;
  188. }
  189. $result = [
  190. 'instance' => spl_object_hash($e),
  191. 'class' => get_class($e),
  192. 'message' => $e->getMessage(),
  193. 'file' => $e->getFile(),
  194. 'line' => $e->getLine(),
  195. 'trace' => $e->getTraceAsString(),
  196. ];
  197. if ($e instanceof AwsException) {
  198. $result += [
  199. 'type' => $e->getAwsErrorType(),
  200. 'code' => $e->getAwsErrorCode(),
  201. 'requestId' => $e->getAwsRequestId(),
  202. 'statusCode' => $e->getStatusCode(),
  203. 'result' => $this->resultArray($e->getResult()),
  204. 'request' => $this->requestArray($e->getRequest()),
  205. 'response' => $this->responseArray($e->getResponse()),
  206. ];
  207. }
  208. return $result;
  209. }
  210. private function compareArray($a, $b, $path, array &$diff)
  211. {
  212. if ($a === $b) {
  213. return;
  214. }
  215. if (is_array($a)) {
  216. $b = (array) $b;
  217. $keys = array_unique(array_merge(array_keys($a), array_keys($b)));
  218. foreach ($keys as $k) {
  219. if (!array_key_exists($k, $a)) {
  220. $this->compareArray(null, $b[$k], "{$path}.{$k}", $diff);
  221. } elseif (!array_key_exists($k, $b)) {
  222. $this->compareArray($a[$k], null, "{$path}.{$k}", $diff);
  223. } else {
  224. $this->compareArray($a[$k], $b[$k], "{$path}.{$k}", $diff);
  225. }
  226. }
  227. } elseif ($a !== null && $b === null) {
  228. $diff[] = "{$path} was unset";
  229. } elseif ($a === null && $b !== null) {
  230. $diff[] = sprintf("%s was set to %s", $path, $this->str($b));
  231. } else {
  232. $diff[] = sprintf("%s changed from %s to %s", $path, $this->str($a), $this->str($b));
  233. }
  234. }
  235. private function str($value)
  236. {
  237. if (is_scalar($value)) {
  238. return (string) $value;
  239. }
  240. if ($value instanceof \Exception) {
  241. $value = $this->exceptionArray($value);
  242. }
  243. ob_start();
  244. var_dump($value);
  245. return ob_get_clean();
  246. }
  247. private function streamStr(StreamInterface $body)
  248. {
  249. return $body->getSize() < $this->config['stream_size']
  250. ? (string) $body
  251. : 'stream(size=' . $body->getSize() . ')';
  252. }
  253. private function createHttpDebug(CommandInterface $command)
  254. {
  255. if ($this->config['http'] && !isset($command['@http']['debug'])) {
  256. $command['@http']['debug'] = fopen('php://temp', 'w+');
  257. }
  258. }
  259. private function flushHttpDebug(CommandInterface $command)
  260. {
  261. if ($res = $command['@http']['debug']) {
  262. if (is_resource($res)) {
  263. rewind($res);
  264. $this->write(stream_get_contents($res));
  265. fclose($res);
  266. }
  267. $command['@http']['debug'] = null;
  268. }
  269. }
  270. private function write($value)
  271. {
  272. if ($this->config['scrub_auth']) {
  273. foreach ($this->config['auth_strings'] as $pattern => $replacement) {
  274. $value = preg_replace_callback(
  275. $pattern,
  276. function ($matches) use ($replacement) {
  277. return $replacement;
  278. },
  279. $value
  280. );
  281. }
  282. }
  283. call_user_func($this->config['logfn'], $value);
  284. }
  285. private function redactHeaders(array $headers)
  286. {
  287. if ($this->config['scrub_auth']) {
  288. $headers = $this->config['auth_headers'] + $headers;
  289. }
  290. return $headers;
  291. }
  292. /**
  293. * @param CommandInterface $cmd
  294. * @return array
  295. */
  296. private function getRedactedArray(CommandInterface $cmd)
  297. {
  298. if (!isset($this->service["shapes"])) {
  299. return $cmd->toArray();
  300. }
  301. $shapes = $this->service["shapes"];
  302. $cmdArray = $cmd->toArray();
  303. $iterator = new RecursiveIteratorIterator(
  304. new RecursiveArrayIterator($cmdArray),
  305. RecursiveIteratorIterator::SELF_FIRST
  306. );
  307. foreach ($iterator as $parameter => $value) {
  308. if (isset($shapes[$parameter]['sensitive']) &&
  309. $shapes[$parameter]['sensitive'] === true
  310. ) {
  311. $redactedValue = is_string($value) ? "[{$parameter}]" : ["[{$parameter}]"];
  312. $currentDepth = $iterator->getDepth();
  313. for ($subDepth = $currentDepth; $subDepth >= 0; $subDepth--) {
  314. $subIterator = $iterator->getSubIterator($subDepth);
  315. $subIterator->offsetSet(
  316. $subIterator->key(),
  317. ($subDepth === $currentDepth
  318. ? $redactedValue
  319. : $iterator->getSubIterator(($subDepth+1))->getArrayCopy()
  320. )
  321. );
  322. }
  323. }
  324. }
  325. return $iterator->getArrayCopy();
  326. }
  327. }