oss_object.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642
  1. #include "aos_log.h"
  2. #include "aos_util.h"
  3. #include "aos_string.h"
  4. #include "aos_status.h"
  5. #include "oss_auth.h"
  6. #include "oss_util.h"
  7. #include "oss_xml.h"
  8. #include "oss_api.h"
  9. char *oss_gen_signed_url(const oss_request_options_t *options,
  10. const aos_string_t *bucket,
  11. const aos_string_t *object,
  12. int64_t expires,
  13. aos_http_request_t *req)
  14. {
  15. aos_string_t signed_url;
  16. char *expires_str = NULL;
  17. aos_string_t expires_time;
  18. int res = AOSE_OK;
  19. expires_str = apr_psprintf(options->pool, "%" APR_INT64_T_FMT, expires);
  20. aos_str_set(&expires_time, expires_str);
  21. oss_get_object_uri(options, bucket, object, req);
  22. res = oss_get_signed_url(options, req, &expires_time, &signed_url);
  23. if (res != AOSE_OK) {
  24. return NULL;
  25. }
  26. return signed_url.data;
  27. }
  28. aos_status_t *oss_put_object_from_buffer(const oss_request_options_t *options,
  29. const aos_string_t *bucket,
  30. const aos_string_t *object,
  31. aos_list_t *buffer,
  32. aos_table_t *headers,
  33. aos_table_t **resp_headers)
  34. {
  35. return oss_do_put_object_from_buffer(options, bucket, object, buffer,
  36. headers, NULL, NULL, resp_headers, NULL);
  37. }
  38. aos_status_t *oss_do_put_object_from_buffer(const oss_request_options_t *options,
  39. const aos_string_t *bucket,
  40. const aos_string_t *object,
  41. aos_list_t *buffer,
  42. aos_table_t *headers,
  43. aos_table_t *params,
  44. oss_progress_callback progress_callback,
  45. aos_table_t **resp_headers,
  46. aos_list_t *resp_body)
  47. {
  48. aos_status_t *s = NULL;
  49. aos_http_request_t *req = NULL;
  50. aos_http_response_t *resp = NULL;
  51. aos_table_t *query_params = NULL;
  52. headers = aos_table_create_if_null(options, headers, 2);
  53. set_content_type(NULL, object->data, headers);
  54. apr_table_add(headers, OSS_EXPECT, "");
  55. query_params = aos_table_create_if_null(options, params, 0);
  56. oss_init_object_request(options, bucket, object, HTTP_PUT,
  57. &req, query_params, headers, progress_callback, 0, &resp);
  58. oss_write_request_body_from_buffer(buffer, req);
  59. s = oss_process_request(options, req, resp);
  60. oss_fill_read_response_body(resp, resp_body);
  61. oss_fill_read_response_header(resp, resp_headers);
  62. if (is_enable_crc(options) && has_crc_in_response(resp)) {
  63. oss_check_crc_consistent(req->crc64, resp->headers, s);
  64. }
  65. return s;
  66. }
  67. aos_status_t *oss_put_object_from_file(const oss_request_options_t *options,
  68. const aos_string_t *bucket,
  69. const aos_string_t *object,
  70. const aos_string_t *filename,
  71. aos_table_t *headers,
  72. aos_table_t **resp_headers)
  73. {
  74. return oss_do_put_object_from_file(options, bucket, object, filename,
  75. headers, NULL, NULL, resp_headers, NULL);
  76. }
  77. aos_status_t *oss_do_put_object_from_file(const oss_request_options_t *options,
  78. const aos_string_t *bucket,
  79. const aos_string_t *object,
  80. const aos_string_t *filename,
  81. aos_table_t *headers,
  82. aos_table_t *params,
  83. oss_progress_callback progress_callback,
  84. aos_table_t **resp_headers,
  85. aos_list_t *resp_body)
  86. {
  87. aos_status_t *s = NULL;
  88. aos_http_request_t *req = NULL;
  89. aos_http_response_t *resp = NULL;
  90. aos_table_t *query_params = NULL;
  91. int res = AOSE_OK;
  92. s = aos_status_create(options->pool);
  93. headers = aos_table_create_if_null(options, headers, 2);
  94. set_content_type(filename->data, object->data, headers);
  95. apr_table_add(headers, OSS_EXPECT, "");
  96. query_params = aos_table_create_if_null(options, params, 0);
  97. oss_init_object_request(options, bucket, object, HTTP_PUT, &req,
  98. query_params, headers, progress_callback, 0, &resp);
  99. res = oss_write_request_body_from_file(options->pool, filename, req);
  100. if (res != AOSE_OK) {
  101. aos_file_error_status_set(s, res);
  102. return s;
  103. }
  104. s = oss_process_request(options, req, resp);
  105. oss_fill_read_response_body(resp, resp_body);
  106. oss_fill_read_response_header(resp, resp_headers);
  107. if (is_enable_crc(options) && has_crc_in_response(resp)) {
  108. oss_check_crc_consistent(req->crc64, resp->headers, s);
  109. }
  110. return s;
  111. }
  112. aos_status_t *oss_get_object_to_buffer(const oss_request_options_t *options,
  113. const aos_string_t *bucket,
  114. const aos_string_t *object,
  115. aos_table_t *headers,
  116. aos_table_t *params,
  117. aos_list_t *buffer,
  118. aos_table_t **resp_headers)
  119. {
  120. return oss_do_get_object_to_buffer(options, bucket, object, headers,
  121. params, buffer, NULL, resp_headers);
  122. }
  123. aos_status_t *oss_do_get_object_to_buffer(const oss_request_options_t *options,
  124. const aos_string_t *bucket,
  125. const aos_string_t *object,
  126. aos_table_t *headers,
  127. aos_table_t *params,
  128. aos_list_t *buffer,
  129. oss_progress_callback progress_callback,
  130. aos_table_t **resp_headers)
  131. {
  132. aos_status_t *s = NULL;
  133. aos_http_request_t *req = NULL;
  134. aos_http_response_t *resp = NULL;
  135. headers = aos_table_create_if_null(options, headers, 0);
  136. params = aos_table_create_if_null(options, params, 0);
  137. oss_init_object_request(options, bucket, object, HTTP_GET,
  138. &req, params, headers, progress_callback, 0, &resp);
  139. s = oss_process_request(options, req, resp);
  140. oss_fill_read_response_body(resp, buffer);
  141. oss_fill_read_response_header(resp, resp_headers);
  142. if (is_enable_crc(options) && has_crc_in_response(resp) &&
  143. !has_range_or_process_in_request(req)) {
  144. oss_check_crc_consistent(resp->crc64, resp->headers, s);
  145. }
  146. return s;
  147. }
  148. aos_status_t *oss_get_object_to_file(const oss_request_options_t *options,
  149. const aos_string_t *bucket,
  150. const aos_string_t *object,
  151. aos_table_t *headers,
  152. aos_table_t *params,
  153. aos_string_t *filename,
  154. aos_table_t **resp_headers)
  155. {
  156. return oss_do_get_object_to_file(options, bucket, object, headers,
  157. params, filename, NULL, resp_headers);
  158. }
  159. aos_status_t *oss_do_get_object_to_file(const oss_request_options_t *options,
  160. const aos_string_t *bucket,
  161. const aos_string_t *object,
  162. aos_table_t *headers,
  163. aos_table_t *params,
  164. aos_string_t *filename,
  165. oss_progress_callback progress_callback,
  166. aos_table_t **resp_headers)
  167. {
  168. aos_status_t *s = NULL;
  169. aos_http_request_t *req = NULL;
  170. aos_http_response_t *resp = NULL;
  171. int res = AOSE_OK;
  172. aos_string_t tmp_filename;
  173. headers = aos_table_create_if_null(options, headers, 0);
  174. params = aos_table_create_if_null(options, params, 0);
  175. oss_get_temporary_file_name(options->pool, filename, &tmp_filename);
  176. oss_init_object_request(options, bucket, object, HTTP_GET,
  177. &req, params, headers, progress_callback, 0, &resp);
  178. s = aos_status_create(options->pool);
  179. res = oss_init_read_response_body_to_file(options->pool, &tmp_filename, resp);
  180. if (res != AOSE_OK) {
  181. aos_file_error_status_set(s, res);
  182. return s;
  183. }
  184. s = oss_process_request(options, req, resp);
  185. oss_fill_read_response_header(resp, resp_headers);
  186. if (is_enable_crc(options) && has_crc_in_response(resp) &&
  187. !has_range_or_process_in_request(req)) {
  188. oss_check_crc_consistent(resp->crc64, resp->headers, s);
  189. }
  190. oss_temp_file_rename(s, tmp_filename.data, filename->data, options->pool);
  191. return s;
  192. }
  193. aos_status_t *oss_head_object(const oss_request_options_t *options,
  194. const aos_string_t *bucket,
  195. const aos_string_t *object,
  196. aos_table_t *headers,
  197. aos_table_t **resp_headers)
  198. {
  199. aos_status_t *s = NULL;
  200. aos_http_request_t *req = NULL;
  201. aos_http_response_t *resp = NULL;
  202. aos_table_t *query_params = NULL;
  203. headers = aos_table_create_if_null(options, headers, 0);
  204. query_params = aos_table_create_if_null(options, query_params, 0);
  205. oss_init_object_request(options, bucket, object, HTTP_HEAD,
  206. &req, query_params, headers, NULL, 0, &resp);
  207. s = oss_process_request(options, req, resp);
  208. oss_fill_read_response_header(resp, resp_headers);
  209. return s;
  210. }
  211. aos_status_t *oss_delete_object(const oss_request_options_t *options,
  212. const aos_string_t *bucket,
  213. const aos_string_t *object,
  214. aos_table_t **resp_headers)
  215. {
  216. aos_status_t *s = NULL;
  217. aos_http_request_t *req = NULL;
  218. aos_http_response_t *resp = NULL;
  219. aos_table_t *headers = NULL;
  220. aos_table_t *query_params = NULL;
  221. headers = aos_table_create_if_null(options, headers, 0);
  222. query_params = aos_table_create_if_null(options, query_params, 0);
  223. oss_init_object_request(options, bucket, object, HTTP_DELETE,
  224. &req, query_params, headers, NULL, 0, &resp);
  225. oss_get_object_uri(options, bucket, object, req);
  226. s = oss_process_request(options, req, resp);
  227. oss_fill_read_response_header(resp, resp_headers);
  228. return s;
  229. }
  230. aos_status_t *oss_copy_object(const oss_request_options_t *options,
  231. const aos_string_t *source_bucket,
  232. const aos_string_t *source_object,
  233. const aos_string_t *dest_bucket,
  234. const aos_string_t *dest_object,
  235. aos_table_t *headers,
  236. aos_table_t **resp_headers)
  237. {
  238. char *copy_source = NULL;
  239. aos_status_t *s = NULL;
  240. aos_http_request_t *req = NULL;
  241. aos_http_response_t *resp = NULL;
  242. aos_table_t *query_params = NULL;
  243. char buffer[AOS_MAX_QUERY_ARG_LEN*3+1];
  244. int res = -1;
  245. s = aos_status_create(options->pool);
  246. headers = aos_table_create_if_null(options, headers, 2);
  247. query_params = aos_table_create_if_null(options, query_params, 0);
  248. /* init headers */
  249. res = aos_url_encode(buffer, source_object->data, AOS_MAX_QUERY_ARG_LEN);
  250. if (res != AOSE_OK) {
  251. aos_status_set(s, res, AOS_URL_ENCODE_ERROR_CODE, NULL);
  252. return s;
  253. }
  254. copy_source = apr_psprintf(options->pool, "/%.*s/%s",
  255. source_bucket->len, source_bucket->data, buffer);
  256. apr_table_set(headers, OSS_CANNONICALIZED_HEADER_COPY_SOURCE, copy_source);
  257. set_content_type(NULL, dest_object->data, headers);
  258. oss_init_object_request(options, dest_bucket, dest_object, HTTP_PUT,
  259. &req, query_params, headers, NULL, 0, &resp);
  260. s = oss_process_request(options, req, resp);
  261. oss_fill_read_response_header(resp, resp_headers);
  262. return s;
  263. }
  264. aos_status_t *oss_append_object_from_buffer(const oss_request_options_t *options,
  265. const aos_string_t *bucket,
  266. const aos_string_t *object,
  267. int64_t position,
  268. aos_list_t *buffer,
  269. aos_table_t *headers,
  270. aos_table_t **resp_headers)
  271. {
  272. aos_status_t *s = NULL;
  273. aos_http_request_t *req = NULL;
  274. aos_http_response_t *resp = NULL;
  275. aos_table_t *query_params = NULL;
  276. /* init query_params */
  277. query_params = aos_table_create_if_null(options, query_params, 2);
  278. apr_table_add(query_params, OSS_APPEND, "");
  279. aos_table_add_int64(query_params, OSS_POSITION, position);
  280. /* init headers */
  281. headers = aos_table_create_if_null(options, headers, 2);
  282. set_content_type(NULL, object->data, headers);
  283. apr_table_add(headers, OSS_EXPECT, "");
  284. oss_init_object_request(options, bucket, object, HTTP_POST,
  285. &req, query_params, headers, NULL, 0, &resp);
  286. oss_write_request_body_from_buffer(buffer, req);
  287. s = oss_process_request(options, req, resp);
  288. oss_fill_read_response_header(resp, resp_headers);
  289. return s;
  290. }
  291. aos_status_t *oss_do_append_object_from_buffer(const oss_request_options_t *options,
  292. const aos_string_t *bucket,
  293. const aos_string_t *object,
  294. int64_t position,
  295. uint64_t init_crc,
  296. aos_list_t *buffer,
  297. aos_table_t *headers,
  298. aos_table_t *params,
  299. oss_progress_callback progress_callback,
  300. aos_table_t **resp_headers,
  301. aos_list_t *resp_body)
  302. {
  303. aos_status_t *s = NULL;
  304. aos_http_request_t *req = NULL;
  305. aos_http_response_t *resp = NULL;
  306. aos_table_t *query_params = NULL;
  307. /* init query_params */
  308. query_params = aos_table_create_if_null(options, params, 2);
  309. apr_table_add(query_params, OSS_APPEND, "");
  310. aos_table_add_int64(query_params, OSS_POSITION, position);
  311. /* init headers */
  312. headers = aos_table_create_if_null(options, headers, 2);
  313. set_content_type(NULL, object->data, headers);
  314. apr_table_add(headers, OSS_EXPECT, "");
  315. oss_init_object_request(options, bucket, object, HTTP_POST, &req, query_params,
  316. headers, progress_callback, init_crc, &resp);
  317. oss_write_request_body_from_buffer(buffer, req);
  318. s = oss_process_request(options, req, resp);
  319. oss_fill_read_response_header(resp, resp_headers);
  320. oss_fill_read_response_body(resp, resp_body);
  321. if (is_enable_crc(options) && has_crc_in_response(resp)) {
  322. oss_check_crc_consistent(req->crc64, resp->headers, s);
  323. }
  324. return s;
  325. }
  326. aos_status_t *oss_append_object_from_file(const oss_request_options_t *options,
  327. const aos_string_t *bucket,
  328. const aos_string_t *object,
  329. int64_t position,
  330. const aos_string_t *append_file,
  331. aos_table_t *headers,
  332. aos_table_t **resp_headers)
  333. {
  334. aos_status_t *s = NULL;
  335. aos_http_request_t *req = NULL;
  336. aos_http_response_t *resp = NULL;
  337. aos_table_t *query_params = NULL;
  338. int res = AOSE_OK;
  339. /* init query_params */
  340. query_params = aos_table_create_if_null(options, query_params, 2);
  341. apr_table_add(query_params, OSS_APPEND, "");
  342. aos_table_add_int64(query_params, OSS_POSITION, position);
  343. /* init headers */
  344. headers = aos_table_create_if_null(options, headers, 2);
  345. set_content_type(append_file->data, object->data, headers);
  346. apr_table_add(headers, OSS_EXPECT, "");
  347. oss_init_object_request(options, bucket, object, HTTP_POST,
  348. &req, query_params, headers, NULL, 0, &resp);
  349. res = oss_write_request_body_from_file(options->pool, append_file, req);
  350. s = aos_status_create(options->pool);
  351. if (res != AOSE_OK) {
  352. aos_file_error_status_set(s, res);
  353. return s;
  354. }
  355. s = oss_process_request(options, req, resp);
  356. oss_fill_read_response_header(resp, resp_headers);
  357. return s;
  358. }
  359. aos_status_t *oss_do_append_object_from_file(const oss_request_options_t *options,
  360. const aos_string_t *bucket,
  361. const aos_string_t *object,
  362. int64_t position,
  363. uint64_t init_crc,
  364. const aos_string_t *append_file,
  365. aos_table_t *headers,
  366. aos_table_t *params,
  367. oss_progress_callback progress_callback,
  368. aos_table_t **resp_headers,
  369. aos_list_t *resp_body)
  370. {
  371. aos_status_t *s = NULL;
  372. aos_http_request_t *req = NULL;
  373. aos_http_response_t *resp = NULL;
  374. aos_table_t *query_params = NULL;
  375. int res = AOSE_OK;
  376. /* init query_params */
  377. query_params = aos_table_create_if_null(options, params, 2);
  378. apr_table_add(query_params, OSS_APPEND, "");
  379. aos_table_add_int64(query_params, OSS_POSITION, position);
  380. /* init headers */
  381. headers = aos_table_create_if_null(options, headers, 2);
  382. set_content_type(append_file->data, object->data, headers);
  383. apr_table_add(headers, OSS_EXPECT, "");
  384. oss_init_object_request(options, bucket, object, HTTP_POST, &req, query_params,
  385. headers, progress_callback, init_crc, &resp);
  386. res = oss_write_request_body_from_file(options->pool, append_file, req);
  387. s = aos_status_create(options->pool);
  388. if (res != AOSE_OK) {
  389. aos_file_error_status_set(s, res);
  390. return s;
  391. }
  392. s = oss_process_request(options, req, resp);
  393. oss_fill_read_response_header(resp, resp_headers);
  394. oss_fill_read_response_body(resp, resp_body);
  395. if (is_enable_crc(options) && has_crc_in_response(resp)) {
  396. oss_check_crc_consistent(req->crc64, resp->headers, s);
  397. }
  398. return s;
  399. }
  400. aos_status_t *oss_put_object_from_buffer_by_url(const oss_request_options_t *options,
  401. const aos_string_t *signed_url,
  402. aos_list_t *buffer,
  403. aos_table_t *headers,
  404. aos_table_t **resp_headers)
  405. {
  406. aos_status_t *s = NULL;
  407. aos_http_request_t *req = NULL;
  408. aos_http_response_t *resp = NULL;
  409. aos_table_t *query_params = NULL;
  410. /* init query_params */
  411. headers = aos_table_create_if_null(options, headers, 0);
  412. query_params = aos_table_create_if_null(options, query_params, 0);
  413. oss_init_signed_url_request(options, signed_url, HTTP_PUT,
  414. &req, query_params, headers, &resp);
  415. oss_write_request_body_from_buffer(buffer, req);
  416. s = oss_process_signed_request(options, req, resp);
  417. oss_fill_read_response_header(resp, resp_headers);
  418. if (is_enable_crc(options) && has_crc_in_response(resp)) {
  419. oss_check_crc_consistent(req->crc64, resp->headers, s);
  420. }
  421. return s;
  422. }
  423. aos_status_t *oss_put_object_from_file_by_url(const oss_request_options_t *options,
  424. const aos_string_t *signed_url,
  425. aos_string_t *filename,
  426. aos_table_t *headers,
  427. aos_table_t **resp_headers)
  428. {
  429. aos_status_t *s = NULL;
  430. aos_http_request_t *req = NULL;
  431. aos_http_response_t *resp = NULL;
  432. aos_table_t *query_params = NULL;
  433. int res = AOSE_OK;
  434. s = aos_status_create(options->pool);
  435. headers = aos_table_create_if_null(options, headers, 0);
  436. query_params = aos_table_create_if_null(options, query_params, 0);
  437. oss_init_signed_url_request(options, signed_url, HTTP_PUT,
  438. &req, query_params, headers, &resp);
  439. res = oss_write_request_body_from_file(options->pool, filename, req);
  440. if (res != AOSE_OK) {
  441. aos_file_error_status_set(s, res);
  442. return s;
  443. }
  444. s = oss_process_signed_request(options, req, resp);
  445. oss_fill_read_response_header(resp, resp_headers);
  446. if (is_enable_crc(options) && has_crc_in_response(resp)) {
  447. oss_check_crc_consistent(req->crc64, resp->headers, s);
  448. }
  449. return s;
  450. }
  451. aos_status_t *oss_get_object_to_buffer_by_url(const oss_request_options_t *options,
  452. const aos_string_t *signed_url,
  453. aos_table_t *headers,
  454. aos_table_t *params,
  455. aos_list_t *buffer,
  456. aos_table_t **resp_headers)
  457. {
  458. aos_status_t *s = NULL;
  459. aos_http_request_t *req = NULL;
  460. aos_http_response_t *resp = NULL;
  461. headers = aos_table_create_if_null(options, headers, 0);
  462. params = aos_table_create_if_null(options, params, 0);
  463. oss_init_signed_url_request(options, signed_url, HTTP_GET,
  464. &req, params, headers, &resp);
  465. s = oss_process_signed_request(options, req, resp);
  466. oss_fill_read_response_body(resp, buffer);
  467. oss_fill_read_response_header(resp, resp_headers);
  468. if (is_enable_crc(options) && has_crc_in_response(resp) &&
  469. !has_range_or_process_in_request(req)) {
  470. oss_check_crc_consistent(resp->crc64, resp->headers, s);
  471. }
  472. return s;
  473. }
  474. aos_status_t *oss_get_object_to_file_by_url(const oss_request_options_t *options,
  475. const aos_string_t *signed_url,
  476. aos_table_t *headers,
  477. aos_table_t *params,
  478. aos_string_t *filename,
  479. aos_table_t **resp_headers)
  480. {
  481. aos_status_t *s = NULL;
  482. aos_http_request_t *req = NULL;
  483. aos_http_response_t *resp = NULL;
  484. int res = AOSE_OK;
  485. aos_string_t tmp_filename;
  486. s = aos_status_create(options->pool);
  487. headers = aos_table_create_if_null(options, headers, 0);
  488. params = aos_table_create_if_null(options, params, 0);
  489. oss_get_temporary_file_name(options->pool, filename, &tmp_filename);
  490. oss_init_signed_url_request(options, signed_url, HTTP_GET,
  491. &req, params, headers, &resp);
  492. res = oss_init_read_response_body_to_file(options->pool, filename, resp);
  493. if (res != AOSE_OK) {
  494. aos_file_error_status_set(s, res);
  495. return s;
  496. }
  497. s = oss_process_signed_request(options, req, resp);
  498. oss_fill_read_response_header(resp, resp_headers);
  499. if (is_enable_crc(options) && has_crc_in_response(resp) &&
  500. !has_range_or_process_in_request(req)) {
  501. oss_check_crc_consistent(resp->crc64, resp->headers, s);
  502. }
  503. oss_temp_file_rename(s, tmp_filename.data, filename->data, options->pool);
  504. return s;
  505. }
  506. aos_status_t *oss_head_object_by_url(const oss_request_options_t *options,
  507. const aos_string_t *signed_url,
  508. aos_table_t *headers,
  509. aos_table_t **resp_headers)
  510. {
  511. aos_status_t *s = NULL;
  512. aos_http_request_t *req = NULL;
  513. aos_http_response_t *resp = NULL;
  514. aos_table_t *query_params = NULL;
  515. headers = aos_table_create_if_null(options, headers, 0);
  516. query_params = aos_table_create_if_null(options, query_params, 0);
  517. oss_init_signed_url_request(options, signed_url, HTTP_HEAD,
  518. &req, query_params, headers, &resp);
  519. s = oss_process_signed_request(options, req, resp);
  520. oss_fill_read_response_header(resp, resp_headers);
  521. return s;
  522. }