File: s3-cp.c

package info (click to toggle)
aws-crt-python 0.24.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 75,932 kB
  • sloc: ansic: 418,984; python: 23,626; makefile: 6,035; sh: 4,075; ruby: 208; java: 82; perl: 73; cpp: 25; xml: 11
file content (937 lines) | stat: -rw-r--r-- 38,408 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

#include <aws/common/command_line_parser.h>
#include <aws/common/file.h>
#include <aws/io/stream.h>
#include <aws/io/uri.h>
#include <aws/s3/private/s3_auto_ranged_put.h>
#include <aws/s3/private/s3_copy_object.h>
#include <aws/s3/private/s3_list_objects.h>

#include "app_ctx.h"
#include "cli_progress_bar.h"

#include <inttypes.h>
#include <stdio.h>

#ifdef _MSC_VER
#    pragma warning(disable : 4706) /* assignment in conditional */
#endif                              /* _MSC_VER */

struct cp_app_ctx {
    struct app_ctx *app_ctx;
    struct aws_uri source_uri;
    struct aws_uri destination_uri;
    struct progress_listener_group *listener_group;
    struct aws_mutex mutex;
    struct aws_condition_variable c_var;
    const char *source_endpoint;
    const char *dest_endpoint;
    size_t expected_transfers;
    size_t completed_transfers;
    bool list_objects_completed;
    bool source_s3;
    bool source_file_system;
    bool dest_s3;
    bool dest_file_system;
    bool source_is_directory_or_prefix;
};

struct single_transfer_ctx {
    struct cp_app_ctx *cp_app_ctx;
    struct progress_listener *listener;
    struct aws_s3_meta_request *meta_request;
    FILE *output_sink;
};

static void s_usage(int exit_code) {
    FILE *sink = exit_code == 0 ? stdout : stderr;

    fprintf(
        sink,
        "usage: s3-cp [options] source_path "
        "destination_path\n");
    fprintf(
        sink,
        " source_path: an S3 bucket containing the object prefix to copy, or a local filesystem path to upload.\n");
    fprintf(sink, "    In the case of an S3 bucket, use URI format S3://{bucket_name}/{prefix_and_or_key}.\n");

    fprintf(
        sink,
        " destination_path: an S3 bucket containing the object prefix to copy, or a local filesystem path to download "
        "to.\n");
    fprintf(sink, "    In the case of an S3 bucket, use URI format S3://{bucket_name}/{prefix_and_or_key}.\n");
    fprintf(sink, " If both the source_path and destination_path are S3 URIs it will attempt an object copy. \n");
    fprintf(sink, "  Note: both buckets must be in the same region for the copy to work\n");
    exit(exit_code);
}

static struct aws_cli_option s_long_options[] = {
    /* Per getopt(3) the last element of the array has to be filled with all zeros */
    {NULL, AWS_CLI_OPTIONS_NO_ARGUMENT, NULL, 0},
};

static void s_parse_options(int argc, char **argv, struct cp_app_ctx *ctx) {
    bool src_uri_found = false;
    bool dest_uri_found = false;
    int option_index = 0;
    int opt_val = -1;

    do {
        opt_val = aws_cli_getopt_long(argc, argv, "", s_long_options, &option_index);
        /* START_OF_TEXT means our positional argument */
        if (opt_val == 0x02) {
            struct aws_byte_cursor uri_cursor = aws_byte_cursor_from_c_str(aws_cli_positional_arg);

            struct aws_uri *uri_to_parse = !src_uri_found ? &ctx->source_uri : &ctx->destination_uri;

            if (aws_uri_init_parse(uri_to_parse, ctx->app_ctx->allocator, &uri_cursor)) {
                fprintf(
                    stderr,
                    "Failed to parse uri %s with error %s\n",
                    (char *)uri_cursor.ptr,
                    aws_error_debug_str(aws_last_error()));
                s_usage(1);
            }

            if (uri_to_parse == &ctx->source_uri) {
                src_uri_found = true;
            } else {
                dest_uri_found = true;
            }
        }
    } while (opt_val != -1);

    if (!(src_uri_found && dest_uri_found)) {
        fprintf(stderr, "An URI for the source and destination must be provided.\n");
        s_usage(1);
    }
}

static void s_dispatch_and_run_transfers(struct cp_app_ctx *cp_app_ctx);

int s3_cp_main(int argc, char *argv[], const char *command_name, void *user_data) {
    (void)command_name;

    struct app_ctx *app_ctx = user_data;

    if (app_ctx->help_requested) {
        s_usage(0);
    }

    if (!app_ctx->region) {
        fprintf(stderr, "region is a required argument\n");
        s_usage(1);
    }

    struct cp_app_ctx cp_app_ctx = {
        .app_ctx = app_ctx,
        .mutex = AWS_MUTEX_INIT,
        .c_var = AWS_CONDITION_VARIABLE_INIT,
    };
    app_ctx->sub_command_data = &cp_app_ctx;

    s_parse_options(argc, argv, &cp_app_ctx);

    cp_app_ctx.listener_group = progress_listener_group_new(app_ctx->allocator);
    progress_listener_group_run_background_render_thread(cp_app_ctx.listener_group);

    char source_endpoint[1024];
    AWS_ZERO_ARRAY(source_endpoint);
    char dest_endpoint[1024];
    AWS_ZERO_ARRAY(dest_endpoint);

    struct aws_byte_cursor s3_scheme = aws_byte_cursor_from_c_str("s3");
    struct aws_byte_cursor file_scheme = aws_byte_cursor_from_c_str("file");

    if (aws_byte_cursor_eq_ignore_case(&cp_app_ctx.source_uri.scheme, &s3_scheme)) {
        cp_app_ctx.source_s3 = true;
        cp_app_ctx.source_is_directory_or_prefix = true;

        struct aws_byte_cursor source_bucket = cp_app_ctx.source_uri.host_name;

        snprintf(
            source_endpoint,
            sizeof(source_endpoint),
            "%.*s.s3.%s.amazonaws.com",
            (int)source_bucket.len,
            source_bucket.ptr,
            app_ctx->region);

        cp_app_ctx.source_endpoint = source_endpoint;
    } else if (
        aws_byte_cursor_eq_ignore_case(&cp_app_ctx.source_uri.scheme, &file_scheme) ||
        cp_app_ctx.source_uri.scheme.len == 0) {
        cp_app_ctx.source_file_system = true;

        struct aws_string *path_str = aws_string_new_from_buf(app_ctx->allocator, &cp_app_ctx.source_uri.uri_str);
        struct aws_string *path_open_mode = aws_string_new_from_c_str(app_ctx->allocator, "r");

        FILE *file_open_check = NULL;
        if (aws_directory_exists(path_str)) {
            cp_app_ctx.source_is_directory_or_prefix = true;
        } else if ((file_open_check = aws_fopen_safe(path_str, path_open_mode))) {
            cp_app_ctx.source_is_directory_or_prefix = false;
            fclose(file_open_check);
        } else {
            fprintf(stderr, "Source path does not exist\n");
            s_usage(1);
        }

        aws_string_destroy(path_open_mode);
        aws_string_destroy(path_str);
    } else {
        fprintf(stderr, "Source URI type is unsupported. s3://, file://, or / are currently supported\n");
        s_usage(1);
    }

    if (aws_byte_cursor_eq_ignore_case(&cp_app_ctx.destination_uri.scheme, &s3_scheme)) {
        cp_app_ctx.dest_s3 = true;

        struct aws_byte_cursor destination_bucket = cp_app_ctx.destination_uri.host_name;

        snprintf(
            dest_endpoint,
            sizeof(dest_endpoint),
            "%.*s.s3.%s.amazonaws.com",
            (int)destination_bucket.len,
            destination_bucket.ptr,
            app_ctx->region);

        cp_app_ctx.dest_endpoint = dest_endpoint;

    } else if (
        aws_byte_cursor_eq_ignore_case(&cp_app_ctx.destination_uri.scheme, &file_scheme) ||
        cp_app_ctx.destination_uri.scheme.len == 0) {
        cp_app_ctx.dest_file_system = true;
    } else {
        fprintf(stderr, "Destination URI type is unsupported. s3://, file://, or / are currently supported\n");
        s_usage(1);
    }

    s_dispatch_and_run_transfers(&cp_app_ctx);

    aws_condition_variable_clean_up(&cp_app_ctx.c_var);
    aws_mutex_clean_up(&cp_app_ctx.mutex);

    return 0;
}

/* this stream wrapper is purely for updating progress bars on upload */
struct progress_update_stream {
    struct aws_input_stream base;
    struct single_transfer_ctx *transfer;
    struct aws_input_stream *wrapped_stream;
    struct aws_allocator *allocator;
};

int s_input_seek(struct aws_input_stream *stream, int64_t offset, enum aws_stream_seek_basis basis) {
    struct progress_update_stream *update_stream = AWS_CONTAINER_OF(stream, struct progress_update_stream, base);

    if (basis == AWS_SSB_BEGIN && offset == 0) {
        progress_listener_reset_progress(update_stream->transfer->listener);
        struct aws_string *state =
            aws_string_new_from_c_str(update_stream->transfer->cp_app_ctx->app_ctx->allocator, "In Progress");
        progress_listener_update_state(update_stream->transfer->listener, state);
        aws_string_destroy(state);
    }

    return aws_input_stream_seek(update_stream->wrapped_stream, offset, basis);
}

int s_input_read(struct aws_input_stream *stream, struct aws_byte_buf *dest) {
    struct progress_update_stream *update_stream = AWS_CONTAINER_OF(stream, struct progress_update_stream, base);

    size_t current_len = dest->len;
    int val = aws_input_stream_read(update_stream->wrapped_stream, dest);
    size_t progress = dest->len - current_len;
    progress_listener_update_progress(update_stream->transfer->listener, progress);
    return val;
}

static int s_input_get_status(struct aws_input_stream *stream, struct aws_stream_status *status) {
    struct progress_update_stream *update_stream = AWS_CONTAINER_OF(stream, struct progress_update_stream, base);

    return aws_input_stream_get_status(update_stream->wrapped_stream, status);
}

static int s_input_get_length(struct aws_input_stream *stream, int64_t *out_length) {
    struct progress_update_stream *update_stream = AWS_CONTAINER_OF(stream, struct progress_update_stream, base);
    return aws_input_stream_get_length(update_stream->wrapped_stream, out_length);
}

static void s_input_destroy(void *data) {
    struct progress_update_stream *update_stream = (struct progress_update_stream *)data;
    aws_input_stream_release(update_stream->wrapped_stream);
    aws_mem_release(update_stream->allocator, update_stream);
}

static struct aws_input_stream_vtable s_update_input_stream_vtable = {
    .get_length = s_input_get_length,
    .seek = s_input_seek,
    .read = s_input_read,
    .get_status = s_input_get_status,
};
/* end of stream for the progress bar */

static const struct aws_byte_cursor g_host_header_name = AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("Host");
static const struct aws_byte_cursor g_x_amz_copy_source_name =
    AWS_BYTE_CUR_INIT_FROM_STRING_LITERAL("x-amz-copy-source");

/* helper function for getting an http request to make the copy object request. */
static struct aws_http_message *s_copy_object_request_new(
    struct cp_app_ctx *cp_app_ctx,
    const struct aws_byte_cursor *source_bucket,
    const struct aws_byte_cursor *source_key,
    const struct aws_byte_cursor *destination_key) {
    struct aws_http_message *message = aws_http_message_new_request(cp_app_ctx->app_ctx->allocator);

    if (aws_http_message_set_request_path(message, *destination_key)) {
        goto error_clean_up_message;
    }

    struct aws_byte_cursor endpoint = aws_byte_cursor_from_c_str(cp_app_ctx->dest_endpoint);
    struct aws_http_header host_header = {.name = g_host_header_name, .value = endpoint};
    if (aws_http_message_add_header(message, host_header)) {
        goto error_clean_up_message;
    }

    char copy_source_value[1024];
    snprintf(
        copy_source_value,
        sizeof(copy_source_value),
        "%.*s/%.*s",
        (int)source_bucket->len,
        source_bucket->ptr,
        (int)source_key->len,
        source_key->ptr);

    struct aws_byte_cursor copy_source_cursor = aws_byte_cursor_from_c_str(copy_source_value);
    struct aws_byte_buf copy_source_value_encoded;
    aws_byte_buf_init(&copy_source_value_encoded, cp_app_ctx->app_ctx->allocator, 1024);
    aws_byte_buf_append_encoding_uri_param(&copy_source_value_encoded, &copy_source_cursor);

    struct aws_http_header copy_source_header = {
        .name = g_x_amz_copy_source_name,
        .value = aws_byte_cursor_from_buf(&copy_source_value_encoded),
    };
    if (aws_http_message_add_header(message, copy_source_header)) {
        goto error_clean_up_message;
    }

    if (aws_http_message_set_request_method(message, aws_http_method_put)) {
        goto error_clean_up_message;
    }

    aws_byte_buf_clean_up(&copy_source_value_encoded);
    return message;

error_clean_up_message:

    aws_byte_buf_clean_up(&copy_source_value_encoded);
    if (message != NULL) {
        aws_http_message_release(message);
        message = NULL;
    }

    return NULL;
}

/* upon copy object progress, update the progress bar. */
static void s_copy_object_progress(
    struct aws_s3_meta_request *meta_request,
    const struct aws_s3_meta_request_progress *progress,
    void *user_data) {
    (void)meta_request;

    struct single_transfer_ctx *transfer_ctx = user_data;

    progress_listener_update_max_value(transfer_ctx->listener, progress->content_length);
    progress_listener_update_progress(transfer_ctx->listener, progress->bytes_transferred);
}

/* invoked upon the completion of a copy object request. */
static void s_copy_object_request_finish(
    struct aws_s3_meta_request *meta_request,
    const struct aws_s3_meta_request_result *meta_request_result,
    void *user_data) {
    (void)meta_request;
    struct single_transfer_ctx *transfer_ctx = user_data;

    struct aws_string *new_state = NULL;
    if (meta_request_result->error_code == AWS_ERROR_SUCCESS) {
        new_state = aws_string_new_from_c_str(transfer_ctx->cp_app_ctx->app_ctx->allocator, "Completed");
        progress_listener_update_progress(transfer_ctx->listener, 100);
    } else {
        new_state = aws_string_new_from_c_str(transfer_ctx->cp_app_ctx->app_ctx->allocator, "Error");
    }

    progress_listener_update_state(transfer_ctx->listener, new_state);
    aws_s3_meta_request_release(transfer_ctx->meta_request);

    aws_mutex_lock(&transfer_ctx->cp_app_ctx->mutex);
    transfer_ctx->cp_app_ctx->completed_transfers++;
    aws_mutex_unlock(&transfer_ctx->cp_app_ctx->mutex);
    aws_condition_variable_notify_one(&transfer_ctx->cp_app_ctx->c_var);

    aws_mem_release(transfer_ctx->cp_app_ctx->app_ctx->allocator, transfer_ctx);
}

/* create a copy object request and send it based on the source bucket/key and destination bucket/key. */
static int s_kick_off_copy_object_request(
    struct cp_app_ctx *cp_app_ctx,
    const struct aws_byte_cursor *source_bucket,
    const struct aws_byte_cursor *source_key,
    const struct aws_byte_cursor *destination_key) {
    struct aws_http_message *message =
        s_copy_object_request_new(cp_app_ctx, source_bucket, source_key, destination_key);

    struct single_transfer_ctx *transfer_ctx =
        aws_mem_calloc(cp_app_ctx->app_ctx->allocator, 1, sizeof(struct single_transfer_ctx));
    transfer_ctx->cp_app_ctx = cp_app_ctx;

    struct aws_byte_buf label_buf;
    struct aws_byte_cursor label_start_cur = aws_byte_cursor_from_c_str("copy: s3://");
    aws_byte_buf_init_copy_from_cursor(&label_buf, cp_app_ctx->app_ctx->allocator, label_start_cur);
    aws_byte_buf_append_dynamic(&label_buf, source_bucket);
    aws_byte_buf_append_byte_dynamic(&label_buf, '/');
    aws_byte_buf_append_dynamic(&label_buf, source_key);
    struct aws_byte_cursor to_cur = aws_byte_cursor_from_c_str(" to s3://");
    aws_byte_buf_append_dynamic(&label_buf, &to_cur);
    aws_byte_buf_append_dynamic(&label_buf, &cp_app_ctx->destination_uri.host_name);
    aws_byte_buf_append_dynamic(&label_buf, destination_key);

    struct aws_string *label = aws_string_new_from_buf(cp_app_ctx->app_ctx->allocator, &label_buf);
    aws_byte_buf_clean_up(&label_buf);
    struct aws_string *state = aws_string_new_from_c_str(cp_app_ctx->app_ctx->allocator, "In Progress");

    transfer_ctx->listener = progress_listener_new(cp_app_ctx->listener_group, label, state, 100);

    struct aws_s3_meta_request_options meta_request_options = {
        .user_data = transfer_ctx,
        .body_callback = NULL,
        .signing_config = &cp_app_ctx->app_ctx->signing_config,
        .finish_callback = s_copy_object_request_finish,
        .headers_callback = NULL,
        .message = message,
        .shutdown_callback = NULL,
        .progress_callback = s_copy_object_progress,
        .type = AWS_S3_META_REQUEST_TYPE_COPY_OBJECT,
    };

    transfer_ctx->meta_request = aws_s3_client_make_meta_request(cp_app_ctx->app_ctx->client, &meta_request_options);
    if (transfer_ctx->meta_request == NULL) {
        fprintf(
            stderr,
            "Failure when initiating copy object request with error %s\n",
            aws_error_debug_str(aws_last_error()));
        exit(1);
    }

    aws_mutex_lock(&transfer_ctx->cp_app_ctx->mutex);
    transfer_ctx->cp_app_ctx->expected_transfers++;
    aws_mutex_unlock(&transfer_ctx->cp_app_ctx->mutex);

    return AWS_OP_SUCCESS;
}

/* invoked upon an upload completion. */
void s_put_request_finished(
    struct aws_s3_meta_request *meta_request,
    const struct aws_s3_meta_request_result *meta_request_result,
    void *user_data) {
    (void)meta_request;

    struct single_transfer_ctx *transfer_ctx = user_data;

    struct aws_string *state = NULL;
    if (meta_request_result->error_code == AWS_ERROR_SUCCESS) {
        state = aws_string_new_from_c_str(transfer_ctx->cp_app_ctx->app_ctx->allocator, "Completed");
    } else {
        state = aws_string_new_from_c_str(transfer_ctx->cp_app_ctx->app_ctx->allocator, "Failed");
    }

    progress_listener_update_state(transfer_ctx->listener, state);
    aws_string_destroy(state);

    aws_mutex_lock(&transfer_ctx->cp_app_ctx->mutex);
    transfer_ctx->cp_app_ctx->completed_transfers++;
    aws_mutex_unlock(&transfer_ctx->cp_app_ctx->mutex);
    aws_condition_variable_notify_one(&transfer_ctx->cp_app_ctx->c_var);
    aws_s3_meta_request_release(transfer_ctx->meta_request);
    aws_mem_release(transfer_ctx->cp_app_ctx->app_ctx->allocator, transfer_ctx);
}

static bool s_are_all_transfers_done(void *arg) {
    struct cp_app_ctx *cp_app_ctx = arg;
    return cp_app_ctx->expected_transfers == cp_app_ctx->completed_transfers;
}

/* kick off a PUT request for an object from a file on disk */
static int s_kickoff_put_object(
    struct cp_app_ctx *cp_app_ctx,
    const struct aws_byte_cursor *src_path,
    const struct aws_byte_cursor *dest_path,
    uint64_t file_size) {
    struct single_transfer_ctx *transfer_ctx =
        aws_mem_calloc(cp_app_ctx->app_ctx->allocator, 1, sizeof(struct single_transfer_ctx));
    transfer_ctx->cp_app_ctx = cp_app_ctx;

    struct aws_byte_buf uri_path;
    struct aws_byte_cursor destination_path = *dest_path;

    aws_byte_buf_init_copy_from_cursor(&uri_path, cp_app_ctx->app_ctx->allocator, cp_app_ctx->destination_uri.path);
    aws_byte_buf_append_dynamic(&uri_path, &destination_path);

    for (size_t i = 0; i < uri_path.len; ++i) {
        if (uri_path.buffer[i] == '\\') {
            uri_path.buffer[i] = '/';
        }
    }

    struct aws_byte_cursor full_path = aws_byte_cursor_from_buf(&uri_path);

    if (uri_path.buffer[0] == '.') {
        aws_byte_cursor_advance(&full_path, 1);
    }

    struct aws_byte_buf label_buf;
    struct aws_byte_cursor operation_name_cur = aws_byte_cursor_from_c_str("upload: ");
    aws_byte_buf_init_copy_from_cursor(&label_buf, cp_app_ctx->app_ctx->allocator, operation_name_cur);
    aws_byte_buf_append_dynamic(&label_buf, dest_path);
    struct aws_byte_cursor to_cur = aws_byte_cursor_from_c_str(" to s3://");
    aws_byte_buf_append_dynamic(&label_buf, &to_cur);
    aws_byte_buf_append_dynamic(&label_buf, &cp_app_ctx->destination_uri.authority);
    aws_byte_buf_append_dynamic(&label_buf, &full_path);

    struct aws_string *label = aws_string_new_from_buf(cp_app_ctx->app_ctx->allocator, &label_buf);
    aws_byte_buf_clean_up(&label_buf);

    struct aws_string *state = aws_string_new_from_c_str(cp_app_ctx->app_ctx->allocator, "In Progress");

    transfer_ctx->listener = progress_listener_new(cp_app_ctx->listener_group, label, state, file_size);
    aws_string_destroy(state);
    aws_string_destroy(label);
    aws_byte_buf_clean_up(&label_buf);

    struct aws_s3_meta_request_options request_options = {
        .user_data = transfer_ctx,
        .signing_config = &cp_app_ctx->app_ctx->signing_config,
        .type = AWS_S3_META_REQUEST_TYPE_PUT_OBJECT,
        .finish_callback = s_put_request_finished,
    };

    struct aws_http_header host_header = {
        .name = g_host_header_name,
        .value = aws_byte_cursor_from_c_str(cp_app_ctx->dest_endpoint),
    };

    char content_length[256];
    AWS_ZERO_ARRAY(content_length);
    snprintf(content_length, AWS_ARRAY_SIZE(content_length), "%" PRIu64, file_size);

    struct aws_http_header content_length_header = {
        .name = aws_byte_cursor_from_c_str("content-length"),
        .value = aws_byte_cursor_from_c_str(content_length),
    };

    request_options.message = aws_http_message_new_request(cp_app_ctx->app_ctx->allocator);
    aws_http_message_add_header(request_options.message, host_header);
    aws_http_message_add_header(request_options.message, content_length_header);
    aws_http_message_set_request_method(request_options.message, aws_http_method_put);
    aws_http_message_set_request_path(request_options.message, full_path);

    struct aws_input_stream *body_input =
        aws_input_stream_new_from_file(cp_app_ctx->app_ctx->allocator, (const char *)src_path->ptr);

    if (!body_input) {
        aws_mem_release(cp_app_ctx->app_ctx->allocator, transfer_ctx);
        return AWS_OP_ERR;
    }

    struct progress_update_stream *update_stream =
        aws_mem_calloc(cp_app_ctx->app_ctx->allocator, 1, sizeof(struct progress_update_stream));
    update_stream->transfer = transfer_ctx;
    update_stream->wrapped_stream = body_input;
    update_stream->allocator = cp_app_ctx->app_ctx->allocator;
    update_stream->base.vtable = &s_update_input_stream_vtable;
    aws_ref_count_init(&update_stream->base.ref_count, update_stream, s_input_destroy);

    struct aws_input_stream *wrap_stream = &update_stream->base;
    aws_http_message_set_body_stream(request_options.message, wrap_stream);

    transfer_ctx->meta_request = aws_s3_client_make_meta_request(cp_app_ctx->app_ctx->client, &request_options);
    /* message owns the stream */
    aws_input_stream_release(wrap_stream);
    aws_http_message_release(request_options.message);

    if (!transfer_ctx->meta_request) {
        aws_mem_release(cp_app_ctx->app_ctx->allocator, transfer_ctx);
        return AWS_OP_ERR;
    }

    aws_mutex_lock(&transfer_ctx->cp_app_ctx->mutex);
    transfer_ctx->cp_app_ctx->expected_transfers++;
    aws_mutex_unlock(&transfer_ctx->cp_app_ctx->mutex);

    return AWS_OP_SUCCESS;
}

/* invoked upon walking a directory. it's invoked for each entry found in the directory. */
static bool s_on_directory_entry(const struct aws_directory_entry *entry, void *user_data) {
    struct cp_app_ctx *cp_app_ctx = user_data;

    if (entry->file_type & AWS_FILE_TYPE_FILE) {
        struct aws_byte_cursor escaped_dest_path = entry->relative_path;
        aws_byte_cursor_advance(&escaped_dest_path, cp_app_ctx->source_uri.uri_str.len);
        int ret_val = s_kickoff_put_object(cp_app_ctx, &entry->relative_path, &escaped_dest_path, entry->file_size);
        return ret_val == AWS_OP_SUCCESS;
    }

    return true;
}

/* upon each byte downloaded, update the progress bar, and write to disk. */
int s_get_body_callback(
    struct aws_s3_meta_request *meta_request,
    const struct aws_byte_cursor *body,
    uint64_t range_start,
    void *user_data) {
    (void)meta_request;
    (void)range_start;

    struct single_transfer_ctx *transfer_ctx = user_data;

    fwrite(body->ptr, sizeof(uint8_t), body->len, transfer_ctx->output_sink);
    progress_listener_update_progress(transfer_ctx->listener, body->len);

    return AWS_OP_SUCCESS;
}

/* Invoked when the get object request completes. */
void s_get_request_finished(
    struct aws_s3_meta_request *meta_request,
    const struct aws_s3_meta_request_result *meta_request_result,
    void *user_data) {
    (void)meta_request;

    struct single_transfer_ctx *transfer_ctx = user_data;

    struct aws_string *state = NULL;
    if (meta_request_result->error_code == AWS_ERROR_SUCCESS) {
        state = aws_string_new_from_c_str(transfer_ctx->cp_app_ctx->app_ctx->allocator, "Completed");
    } else {
        state = aws_string_new_from_c_str(transfer_ctx->cp_app_ctx->app_ctx->allocator, "Failed");
    }

    progress_listener_update_state(transfer_ctx->listener, state);
    aws_string_destroy(state);

    fclose(transfer_ctx->output_sink);
    aws_mutex_lock(&transfer_ctx->cp_app_ctx->mutex);
    transfer_ctx->cp_app_ctx->completed_transfers++;
    aws_mutex_unlock(&transfer_ctx->cp_app_ctx->mutex);
    aws_condition_variable_notify_one(&transfer_ctx->cp_app_ctx->c_var);
    aws_s3_meta_request_release(transfer_ctx->meta_request);
    aws_mem_release(transfer_ctx->cp_app_ctx->app_ctx->allocator, transfer_ctx);
}

/* Setup a get object request and write the file to disk as it's downloaded. */
static int s_kickoff_get_object(
    struct cp_app_ctx *cp_app_ctx,
    const struct aws_byte_cursor *key,
    const struct aws_byte_cursor *destination,
    uint64_t size) {
    struct single_transfer_ctx *transfer_ctx =
        aws_mem_calloc(cp_app_ctx->app_ctx->allocator, 1, sizeof(struct single_transfer_ctx));
    transfer_ctx->cp_app_ctx = cp_app_ctx;

    struct aws_byte_buf label_buf;
    struct aws_byte_cursor operation_name_cur = aws_byte_cursor_from_c_str("download: s3://");
    aws_byte_buf_init_copy_from_cursor(&label_buf, cp_app_ctx->app_ctx->allocator, operation_name_cur);
    aws_byte_buf_append_dynamic(&label_buf, &cp_app_ctx->source_uri.host_name);
    struct aws_byte_cursor slash_cur = aws_byte_cursor_from_c_str("/");
    aws_byte_buf_append_dynamic(&label_buf, &slash_cur);
    aws_byte_buf_append_dynamic(&label_buf, key);
    struct aws_byte_cursor to_cur = aws_byte_cursor_from_c_str(" to ");
    aws_byte_buf_append_dynamic(&label_buf, &to_cur);
    aws_byte_buf_append_dynamic(&label_buf, destination);

    struct aws_string *label = aws_string_new_from_buf(cp_app_ctx->app_ctx->allocator, &label_buf);
    aws_byte_buf_clean_up(&label_buf);

    struct aws_string *state = aws_string_new_from_c_str(cp_app_ctx->app_ctx->allocator, "In Progress");

    transfer_ctx->listener = progress_listener_new(cp_app_ctx->listener_group, label, state, size);
    aws_string_destroy(state);
    aws_string_destroy(label);
    aws_byte_buf_clean_up(&label_buf);

    struct aws_string *file_path = aws_string_new_from_cursor(cp_app_ctx->app_ctx->allocator, destination);
    struct aws_string *mode = aws_string_new_from_c_str(cp_app_ctx->app_ctx->allocator, "wb");
    transfer_ctx->output_sink = aws_fopen_safe(file_path, mode);
    aws_string_destroy(mode);
    aws_string_destroy(file_path);

    if (!transfer_ctx->output_sink) {
        return AWS_OP_ERR;
    }

    struct aws_s3_meta_request_options request_options = {
        .user_data = transfer_ctx,
        .signing_config = &cp_app_ctx->app_ctx->signing_config,
        .type = AWS_S3_META_REQUEST_TYPE_GET_OBJECT,
        .finish_callback = s_get_request_finished,
        .body_callback = s_get_body_callback,
    };

    struct aws_http_header host_header = {
        .name = g_host_header_name,
        .value = aws_byte_cursor_from_c_str(cp_app_ctx->source_endpoint),
    };

    struct aws_http_header accept_header = {
        .name = aws_byte_cursor_from_c_str("accept"),
        .value = aws_byte_cursor_from_c_str("*/*"),
    };

    struct aws_http_header user_agent_header = {
        .name = aws_byte_cursor_from_c_str("user-agent"),
        .value = aws_byte_cursor_from_c_str("AWS common runtime command-line client"),
    };

    request_options.message = aws_http_message_new_request(cp_app_ctx->app_ctx->allocator);
    aws_http_message_add_header(request_options.message, host_header);
    aws_http_message_add_header(request_options.message, accept_header);
    aws_http_message_add_header(request_options.message, user_agent_header);
    aws_http_message_set_request_method(request_options.message, aws_http_method_get);

    struct aws_byte_buf path_buf;
    aws_byte_buf_init(&path_buf, cp_app_ctx->app_ctx->allocator, key->len + 1);
    aws_byte_buf_append_dynamic(&path_buf, &slash_cur);
    aws_byte_buf_append_dynamic(&path_buf, key);
    struct aws_byte_cursor path_cur = aws_byte_cursor_from_buf(&path_buf);
    aws_http_message_set_request_path(request_options.message, path_cur);
    aws_byte_buf_clean_up(&path_buf);

    transfer_ctx->meta_request = aws_s3_client_make_meta_request(cp_app_ctx->app_ctx->client, &request_options);

    if (!transfer_ctx->meta_request) {
        return AWS_OP_ERR;
    }

    aws_mutex_lock(&transfer_ctx->cp_app_ctx->mutex);
    transfer_ctx->cp_app_ctx->expected_transfers++;
    aws_mutex_unlock(&transfer_ctx->cp_app_ctx->mutex);

    return AWS_OP_SUCCESS;
}

/* upon listing the objects in a bucket, this is invoked for each object encountered. */
static int s_on_list_object(const struct aws_s3_object_info *info, void *user_data) {
    struct cp_app_ctx *cp_app_ctx = user_data;

    /* size greater than zero means it's an actual object. */
    if (info->key.len > 0) {
        struct aws_byte_cursor trimmed_key = info->key;

        /* in this first case, if prefix and key are the same, we just download to the dest uri at key name. */
        if (aws_byte_cursor_eq_ignore_case(&info->key, &info->prefix)) {
            for (size_t i = trimmed_key.len - 1; i > 0; --i) {
                if (trimmed_key.ptr[i] == '/') {
                    aws_byte_cursor_advance(&trimmed_key, i + 1);
                    break;
                }
            }
        } else if (info->prefix.len) {
            aws_byte_cursor_advance(&trimmed_key, info->prefix.len);
        }

        /* if we're going to be downloading to disk, set up the get object requests here. */
        if (cp_app_ctx->dest_file_system) {
            struct aws_byte_buf dest_directory;
            aws_byte_buf_init_copy(
                &dest_directory, cp_app_ctx->app_ctx->allocator, &cp_app_ctx->destination_uri.uri_str);

            struct aws_string *dir_path = aws_string_new_from_buf(cp_app_ctx->app_ctx->allocator, &dest_directory);
            if (!aws_directory_exists(dir_path)) {
                aws_directory_create(dir_path);
            }
            aws_string_destroy(dir_path);

            struct aws_array_list splits;
            aws_array_list_init_dynamic(&splits, cp_app_ctx->app_ctx->allocator, 8, sizeof(struct aws_byte_cursor));
            aws_byte_cursor_split_on_char(&trimmed_key, '/', &splits);

            for (size_t i = 0; i < aws_array_list_length(&splits); ++i) {
                struct aws_byte_cursor path_component;
                aws_array_list_get_at(&splits, &path_component, i);

                if (path_component.len > 0) {
                    if (dest_directory.buffer[dest_directory.len - 1] != AWS_PATH_DELIM) {
                        struct aws_byte_cursor slash_cur = aws_byte_cursor_from_c_str(AWS_PATH_DELIM_STR);
                        aws_byte_buf_append_dynamic(&dest_directory, &slash_cur);
                    }
                    aws_byte_buf_append_dynamic(&dest_directory, &path_component);

                    dir_path = aws_string_new_from_buf(cp_app_ctx->app_ctx->allocator, &dest_directory);
                    if (i < aws_array_list_length(&splits) - 1 && !aws_directory_exists(dir_path)) {
                        aws_directory_create(dir_path);
                    }
                    aws_string_destroy(dir_path);
                }
            }

            struct aws_byte_cursor destination_cur = aws_byte_cursor_from_buf(&dest_directory);
            int ret_val = s_kickoff_get_object(cp_app_ctx, &info->key, &destination_cur, info->size);
            aws_byte_buf_clean_up(&dest_directory);

            return ret_val;
        }

        /* otherwise, we're copying between buckets. Set up the copy here. */
        struct aws_byte_buf destination_key;
        aws_byte_buf_init_copy_from_cursor(
            &destination_key, cp_app_ctx->app_ctx->allocator, cp_app_ctx->destination_uri.path);
        aws_byte_buf_append_dynamic(&destination_key, &trimmed_key);
        struct aws_byte_cursor destination_key_cur = aws_byte_cursor_from_buf(&destination_key);

        int return_code = s_kick_off_copy_object_request(
            cp_app_ctx, &cp_app_ctx->source_uri.host_name, &info->key, &destination_key_cur);

        aws_byte_buf_clean_up(&destination_key);
        return return_code;
    }

    return AWS_OP_SUCCESS;
}

static bool s_are_all_transfers_and_listings_done(void *arg) {
    struct cp_app_ctx *cp_app_ctx = arg;
    return cp_app_ctx->expected_transfers == cp_app_ctx->completed_transfers && cp_app_ctx->list_objects_completed;
}

void s_on_object_list_finished(struct aws_s3_paginator *paginator, int error_code, void *user_data) {

    struct cp_app_ctx *cp_app_ctx = user_data;
    if (error_code != AWS_OP_SUCCESS) {
        fprintf(
            stderr,
            "Failure while listing objects. Please check if you have valid credentials and s3 path is correct. Error: "
            "%s\n",
            aws_error_debug_str(error_code));
        exit(1);
    }
    if (aws_s3_paginator_has_more_results(paginator)) {
        aws_s3_paginator_continue(paginator, &cp_app_ctx->app_ctx->signing_config);
    } else {
        aws_mutex_lock(&cp_app_ctx->mutex);
        cp_app_ctx->list_objects_completed = true;
        aws_mutex_unlock(&cp_app_ctx->mutex);
    }
}

void s_dispatch_and_run_transfers(struct cp_app_ctx *cp_app_ctx) {

    struct aws_s3_paginator *paginator = NULL;

    /* the source argument is either a directory on disk or s3 (it's not actually possible to tell a prefix from an
     * object) */
    if (cp_app_ctx->source_is_directory_or_prefix) {
        /* uploading a directory from disk to S3 */
        if (cp_app_ctx->source_file_system) {
            struct aws_string *path =
                aws_string_new_from_buf(cp_app_ctx->app_ctx->allocator, &cp_app_ctx->source_uri.uri_str);

            if (aws_directory_traverse(cp_app_ctx->app_ctx->allocator, path, true, s_on_directory_entry, cp_app_ctx)) {
                fprintf(
                    stderr, "Failure while traversing directory. Error %s\n", aws_error_debug_str(aws_last_error()));
                exit(1);
            }

            aws_string_destroy(path);
            aws_mutex_lock(&cp_app_ctx->mutex);
            aws_condition_variable_wait_pred(
                &cp_app_ctx->c_var, &cp_app_ctx->mutex, s_are_all_transfers_done, cp_app_ctx);
            aws_mutex_unlock(&cp_app_ctx->mutex);

            /* due to trickery in list_objects, this handles the source is s3 key instead of just a prefix, so we
             * don't need to handle that later.*/
        } else {
            /* this is an s3 bucket, and we'll be downloading it to disk. Incidentally, this also works for plain ole
             * single objects. */
            char main_endpoint[1024];
            AWS_ZERO_ARRAY(main_endpoint);
            snprintf(main_endpoint, sizeof(main_endpoint), "s3.%s.amazonaws.com", cp_app_ctx->app_ctx->region);
            struct aws_byte_cursor prefix_cur = cp_app_ctx->source_uri.path;
            aws_byte_cursor_advance(&prefix_cur, 1);
            struct aws_s3_list_objects_params list_objects_params = {
                .user_data = cp_app_ctx,
                .endpoint = aws_byte_cursor_from_c_str(main_endpoint),
                .client = cp_app_ctx->app_ctx->client,
                .prefix = prefix_cur,
                .bucket_name = cp_app_ctx->source_uri.host_name,
                .on_object = s_on_list_object,
                .on_list_finished = s_on_object_list_finished,
            };

            paginator = aws_s3_initiate_list_objects(cp_app_ctx->app_ctx->allocator, &list_objects_params);

            if (!paginator) {
                fprintf(stderr, "List objects failed with error %s\n", aws_error_debug_str(aws_last_error()));
                s_usage(1);
            }
            aws_s3_paginator_continue(paginator, &cp_app_ctx->app_ctx->signing_config);

            aws_mutex_lock(&cp_app_ctx->mutex);
            aws_condition_variable_wait_pred(
                &cp_app_ctx->c_var, &cp_app_ctx->mutex, s_are_all_transfers_and_listings_done, cp_app_ctx);
            aws_mutex_unlock(&cp_app_ctx->mutex);

            aws_s3_paginator_release(paginator);
        }
    } else {
        /* only handles a single file from disk being uploaded to s3. */
        if (cp_app_ctx->source_file_system) {
            struct aws_byte_cursor source_path = aws_byte_cursor_from_buf(&cp_app_ctx->source_uri.uri_str);
            int64_t source_file_length = 0;
            struct aws_string *source_path_str =
                aws_string_new_from_cursor(cp_app_ctx->app_ctx->allocator, &source_path);
            struct aws_string *open_mode = aws_string_new_from_c_str(cp_app_ctx->app_ctx->allocator, "rb");
            FILE *src_file = aws_fopen_safe(source_path_str, open_mode);

            if (!src_file) {
                fprintf(stderr, "File open failed with error %s\n", aws_error_debug_str(aws_last_error()));
                s_usage(1);
            }

            aws_file_get_length(src_file, &source_file_length);
            fclose(src_file);
            aws_string_destroy(open_mode);
            aws_string_destroy(source_path_str);

            struct aws_byte_cursor file_name_portion = cp_app_ctx->source_uri.path;

            /* just the final segment of the key */
            for (size_t i = file_name_portion.len - 1; i > 0; --i) {
                if (file_name_portion.ptr[i] == AWS_PATH_DELIM) {
                    aws_byte_cursor_advance(&file_name_portion, i + 1);
                    break;
                }
            }

            if (s_kickoff_put_object(cp_app_ctx, &source_path, &file_name_portion, source_file_length)) {
                fprintf(stderr, "File transfer failed with error %s\n", aws_error_debug_str(aws_last_error()));
                s_usage(1);
            }

            aws_mutex_lock(&cp_app_ctx->mutex);
            aws_condition_variable_wait_pred(
                &cp_app_ctx->c_var, &cp_app_ctx->mutex, s_are_all_transfers_done, cp_app_ctx);
            aws_mutex_unlock(&cp_app_ctx->mutex);
        }
    }
}