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
pub use fastly_shared::CacheOverride;

use super::pending::handle::PendingRequestHandle;
use crate::abi::{self, FastlyStatus, MultiValueHostcallError};
use crate::error::BufferSizeError;
use crate::handle::{BodyHandle, ResponseHandle, StreamingBodyHandle};
use crate::http::request::SendErrorCause;
use bytes::{BufMut, BytesMut};
use http::header::{HeaderName, HeaderValue};
use http::{Method, Uri, Version};
use lazy_static::lazy_static;
use std::convert::{TryFrom, TryInto};
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use std::sync::atomic::{AtomicBool, Ordering};
use url::Url;

// This import is just to get `Request` into scope for intradoc linking.
#[allow(unused)]
use super::Request;

/// The low-level interface to HTTP requests.
///
/// For most applications, you should use [`Request`] instead of this
/// interface. See the top-level [`handle`][`crate::handle`] documentation for more details.
///
/// # Getting the client request
///
/// Call [`RequestHandle::from_client()`] to get the client request being handled by this execution
/// of the Compute@Edge program.
///
/// # Creation and conversion
///
/// New requests can be created programmatically with [`RequestHandle::new()`]. In addition, you can
/// convert to and from [`Request`] using [`Request::from_handles()`] and
/// [`Request::into_handles()`].
///
/// # Sending backend requests
///
/// Requests can be sent to a backend in blocking or asynchronous fashion using
/// [`send()`][`Self::send()`], [`send_async()`][`Self::send_async()`], or
/// [`send_async_streaming()`][`Self::send_async_streaming()`].
#[derive(Debug, Eq, Hash, PartialEq)]
#[repr(transparent)]
pub struct RequestHandle {
    handle: u32,
}

/// A flag representing whether or not the request has been taken from the client.
pub(crate) static GOT_CLIENT_REQ: AtomicBool = AtomicBool::new(false);

impl RequestHandle {
    /// An invalid handle.
    ///
    /// This is primarily useful to represent uninitialized values when using the interfaces in
    /// [`fastly_sys`].
    pub const INVALID: Self = RequestHandle {
        handle: fastly_shared::INVALID_REQUEST_HANDLE,
    };

    /// Returns `true` if the request handle is valid.
    pub fn is_valid(&self) -> bool {
        !self.is_invalid()
    }

    /// Returns `true` if the request handle is invalid.
    pub fn is_invalid(&self) -> bool {
        self.handle == Self::INVALID.handle
    }

    /// Get the underlying representation of the handle.
    ///
    /// This should only be used when calling the raw ABI directly, and care should be taken not to
    /// reuse or alias handle values.
    pub(crate) fn as_u32(&self) -> u32 {
        self.handle
    }

    /// Get a mutable reference to the underlying `u32` representation of the handle.
    ///
    /// This should only be used when calling the raw ABI directly, and care should be taken not to
    /// reuse or alias handle values.
    pub(crate) fn as_u32_mut(&mut self) -> &mut u32 {
        &mut self.handle
    }

    /// Set `GOT_CLIENT_REQ` flag to show we've taken the client request.
    ///
    /// This will panic if the flag has already been set by someone else.
    // FIXME KTM 2020-05-08: This is, the *worst* name.
    pub(crate) fn set_got_client() {
        if GOT_CLIENT_REQ.swap(true, Ordering::SeqCst) {
            panic!("cannot get more than one handle to the client request per execution",);
        }
    }

    /// Get a handle to the client request being handled by this execution of the Compute@Edge program.
    ///
    /// # Panics
    ///
    /// This method panics if the client request has already been retrieved by this method,
    /// [`client_request_and_body()`], or [`Request::from_client()`].
    pub fn from_client() -> Self {
        Self::set_got_client();
        let mut handle = RequestHandle::INVALID;
        let status = unsafe {
            abi::fastly_http_req::body_downstream_get(handle.as_u32_mut(), std::ptr::null_mut())
        };
        match status.result().map(|_| handle) {
            Ok(h) if h.is_valid() => h,
            _ => panic!("fastly_http_req::body_downstream_get failed"),
        }
    }

    /// Acquire a new request handle.
    ///
    /// By default, the request will have a `GET` method, a URL of `/`, and empty headers.
    #[allow(clippy::new_without_default)]
    pub fn new() -> Self {
        let mut handle = RequestHandle::INVALID;
        let status = unsafe { abi::fastly_http_req::new(handle.as_u32_mut()) };
        match status.result().map(|_| handle) {
            Ok(h) if h.is_valid() => h,
            _ => panic!("fastly_http_req::new failed"),
        }
    }

    /// Read the request's header names via a buffer of the provided size.
    ///
    /// If there is a header name that is longer than `buf_size`, this will return a
    /// [`BufferSizeError`]; you can retry with a larger buffer size if necessary.
    pub fn get_header_names<'a>(
        &'a self,
        buf_size: usize,
    ) -> impl Iterator<Item = Result<HeaderName, BufferSizeError>> + 'a {
        self.get_header_names_impl(buf_size, Some(buf_size))
    }

    pub(crate) fn get_header_names_impl<'a>(
        &'a self,
        mut initial_buf_size: usize,
        max_buf_size: Option<usize>,
    ) -> impl Iterator<Item = Result<HeaderName, BufferSizeError>> + 'a {
        if let Some(max) = max_buf_size {
            initial_buf_size = std::cmp::min(initial_buf_size, max);
        }
        abi::MultiValueHostcall::new(
            b'\0',
            initial_buf_size,
            max_buf_size,
            move |buf, buf_size, cursor, ending_cursor, nwritten| unsafe {
                abi::fastly_http_req::header_names_get(
                    self.as_u32(),
                    buf,
                    buf_size,
                    cursor,
                    ending_cursor,
                    nwritten,
                )
            },
        )
        .map(move |res| {
            use MultiValueHostcallError::{BufferTooSmall, ClosureError};
            match res {
                // we trust that the hostcall is giving us valid header bytes
                Ok(name_bytes) => Ok(HeaderName::from_bytes(&name_bytes).unwrap()),
                // return an error if the buffer was not large enough
                Err(BufferTooSmall { needed_buf_size }) => Err(BufferSizeError::header_name(
                    initial_buf_size,
                    needed_buf_size,
                )),
                // panic if the hostcall failed for some other reason
                Err(ClosureError(e)) => {
                    panic!("fastly_http_req::header_names_get returned error: {:?}", e)
                }
            }
        })
    }

    /// Get the header values for the given name via a buffer of the provided size.
    ///
    /// If there is a header value that is longer than the buffer, this will return a
    /// [`BufferSizeError`]; you can retry with a larger buffer size if necessary.
    ///
    /// # Examples
    ///
    /// Collect all the header values into a [`Vec`]:
    ///
    /// ```no_run
    /// # use fastly::error::Error;
    /// # use fastly::handle::RequestHandle;
    /// # use http::header::{HeaderName, HeaderValue};
    /// #
    /// # fn main() -> Result<(), Error> {
    /// # let request = RequestHandle::new();
    /// let name = HeaderName::from_static("My-App-Header");
    /// let buf_size = 128;
    /// let header_values: Vec<HeaderValue> = request
    ///     .get_header_values(&name, buf_size)
    ///     .collect::<Result<Vec<HeaderValue>, _>>()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// To try again with a larger buffer if the first call fails, you can use
    /// [`unwrap_or_else()`][`Result::unwrap_or_else()`]:
    ///
    /// ```no_run
    /// # use fastly::error::BufferSizeError;
    /// # use fastly::handle::RequestHandle;
    /// # use http::header::{HeaderName, HeaderValue};
    /// # let request = RequestHandle::new();
    /// let name = HeaderName::from_static("My-App-Header");
    /// let buf_size = 128;
    ///
    /// // Collect header values into a `Vec<HeaderValue>`, with a buffer size of `128`.
    /// // If the first call fails, print our error and then try to collect header values
    /// // again. The second call will use a larger buffer size of `1024`.
    /// let header_values: Vec<HeaderValue> = request
    ///     .get_header_values(&name, buf_size)
    ///     .collect::<Result<_, _>>()
    ///     .unwrap_or_else(|err: BufferSizeError| {
    ///         let larger_buf_size = 1024;
    ///         request
    ///             .get_header_values(&name, larger_buf_size)
    ///             .collect::<Result<_, _>>()
    ///             .unwrap()
    ///     });
    /// ```
    pub fn get_header_values<'a>(
        &'a self,
        name: &'a HeaderName,
        buf_size: usize,
    ) -> impl Iterator<Item = Result<HeaderValue, BufferSizeError>> + 'a {
        self.get_header_values_impl(name, buf_size, Some(buf_size))
    }

    pub(crate) fn get_header_values_impl<'a>(
        &'a self,
        name: &'a HeaderName,
        mut initial_buf_size: usize,
        max_buf_size: Option<usize>,
    ) -> impl Iterator<Item = Result<HeaderValue, BufferSizeError>> + 'a {
        if let Some(max) = max_buf_size {
            initial_buf_size = std::cmp::min(initial_buf_size, max);
        }
        abi::MultiValueHostcall::new(
            b'\0',
            initial_buf_size,
            max_buf_size,
            move |buf, buf_size, cursor, ending_cursor, nwritten| unsafe {
                let name: &[u8] = name.as_ref();
                abi::fastly_http_req::header_values_get(
                    self.as_u32(),
                    name.as_ptr(),
                    name.len(),
                    buf,
                    buf_size,
                    cursor,
                    ending_cursor,
                    nwritten,
                )
            },
        )
        .map(move |res| {
            use MultiValueHostcallError::{BufferTooSmall, ClosureError};
            match res {
                // we trust that the hostcall is giving us valid header bytes
                Ok(value_bytes) => {
                    let header_value =
                        unsafe { HeaderValue::from_maybe_shared_unchecked(value_bytes) };
                    Ok(header_value)
                }
                // return an error if the buffer was not large enough
                Err(BufferTooSmall { needed_buf_size }) => Err(BufferSizeError::header_value(
                    initial_buf_size,
                    needed_buf_size,
                )),
                // panic if the hostcall failed for some other reason
                Err(ClosureError(e)) => {
                    panic!("fastly_http_req::header_values_get returned error: {:?}", e)
                }
            }
        })
    }

    /// Set the values for the given header name, replacing any headers that previously existed for
    /// that name.
    pub fn set_header_values<'a, I>(&mut self, name: &HeaderName, values: I)
    where
        I: IntoIterator<Item = &'a HeaderValue>,
    {
        // build a buffer of all the values, each terminated by a nul byte
        let mut buf = vec![];
        for value in values {
            buf.put(value.as_bytes());
            buf.put_u8(b'\0');
        }
        let name: &[u8] = name.as_ref();
        unsafe {
            abi::fastly_http_req::header_values_set(
                self.as_u32(),
                name.as_ptr(),
                name.len(),
                buf.as_ptr(),
                buf.len(),
            )
        }
        .result()
        .expect("fastly_http_req::header_values_set failed");
    }

    #[cfg_attr(
        feature = "unstable-doc",
        doc(include = "../../../docs/snippets/handle-get-header-value.md")
    )]
    #[cfg_attr(
        not(feature = "unstable-doc"),
        doc = "Placeholder doc to suppress warnings without `unstable-doc` feature"
    )]
    pub fn get_header_value(
        &self,
        name: &HeaderName,
        max_len: usize,
    ) -> Result<Option<HeaderValue>, BufferSizeError> {
        let name: &[u8] = name.as_ref();
        let mut buf = BytesMut::with_capacity(max_len);
        let mut nwritten = 0;
        let status = unsafe {
            abi::fastly_http_req::header_value_get(
                self.as_u32(),
                name.as_ptr(),
                name.len(),
                buf.as_mut_ptr(),
                buf.capacity(),
                &mut nwritten,
            )
        };
        match status.result().map(|_| nwritten) {
            Ok(nwritten) => {
                assert!(nwritten <= buf.capacity(), "hostcall wrote too many bytes");
                unsafe {
                    buf.set_len(nwritten);
                }
                // we trust that the hostcall is giving us valid header bytes
                let value = HeaderValue::from_bytes(&buf).expect("bytes from host are valid");
                Ok(Some(value))
            }
            Err(FastlyStatus::INVAL) => Ok(None),
            Err(FastlyStatus::BUFLEN) => Err(BufferSizeError::header_value(max_len, nwritten)),
            _ => panic!("fastly_http_req::header_value_get returned error"),
        }
    }

    /// Set a request header to the given value, discarding any previous values for the given header
    /// name.
    pub fn insert_header(&mut self, name: &HeaderName, value: &HeaderValue) {
        let name_bytes: &[u8] = name.as_ref();
        let value_bytes: &[u8] = value.as_ref();
        let status = unsafe {
            abi::fastly_http_req::header_insert(
                self.as_u32(),
                name_bytes.as_ptr(),
                name_bytes.len(),
                value_bytes.as_ptr(),
                value_bytes.len(),
            )
        };
        if status.is_err() {
            panic!("fastly_http_req::header_insert returned error");
        }
    }

    /// Add a request header with given value.
    ///
    /// Unlike [`insert_header()`][`Self::insert_header()`], this does not discard existing values
    /// for the same header name.
    pub fn append_header(&mut self, name: &HeaderName, value: &HeaderValue) {
        let name_bytes: &[u8] = name.as_ref();
        let value_bytes: &[u8] = value.as_ref();
        unsafe {
            abi::fastly_http_req::header_append(
                self.as_u32(),
                name_bytes.as_ptr(),
                name_bytes.len(),
                value_bytes.as_ptr(),
                value_bytes.len(),
            )
        }
        .result()
        .expect("fastly_http_req::header_append returned error");
    }

    /// Remove all request headers of the given name, and return whether any headers were removed.
    pub fn remove_header(&mut self, name: &HeaderName) -> bool {
        let name_bytes: &[u8] = name.as_ref();
        let status = unsafe {
            abi::fastly_http_req::header_remove(
                self.as_u32(),
                name_bytes.as_ptr(),
                name_bytes.len(),
            )
        };
        match status.result() {
            Ok(_) => true,
            Err(FastlyStatus::INVAL) => false,
            _ => panic!("fastly_http_req::header_remove returned error"),
        }
    }

    /// Get the HTTP version of this request.
    pub fn get_version(&self) -> Version {
        let mut version = 0;
        let status = unsafe { abi::fastly_http_req::version_get(self.as_u32(), &mut version) };
        if status.is_err() {
            panic!("fastly_http_req::version_get failed");
        } else {
            abi::HttpVersion::try_from(version)
                .map(Into::into)
                .expect("HTTP version must be valid")
        }
    }

    /// Set the HTTP version of this request.
    pub fn set_version(&mut self, v: Version) {
        unsafe {
            abi::fastly_http_req::version_set(self.as_u32(), abi::HttpVersion::from(v) as u32)
        }
        .result()
        .expect("fastly_http_req::version_get failed");
    }

    /// Get the request method.
    ///
    /// If the method is longer than `max_length`, this will return a [`BufferSizeError`]; you can
    /// retry with a larger buffer size if necessary.
    pub fn get_method(&self, max_length: usize) -> Result<Method, BufferSizeError> {
        let mut method_bytes = Vec::with_capacity(max_length);
        let mut nwritten = 0;
        let status = unsafe {
            abi::fastly_http_req::method_get(
                self.as_u32(),
                method_bytes.as_mut_ptr(),
                method_bytes.capacity(),
                &mut nwritten,
            )
        };
        match status.result() {
            Ok(_) => {
                assert!(
                    nwritten <= method_bytes.capacity(),
                    "fastly_http_req::method_get wrote too many bytes"
                );
                unsafe {
                    method_bytes.set_len(nwritten);
                }
                Ok(Method::from_bytes(&method_bytes).expect("HTTP method must be valid"))
            }
            Err(FastlyStatus::BUFLEN) => Err(BufferSizeError::http_method(max_length, nwritten)),
            _ => panic!("fastly_http_req::method_get failed"),
        }
    }

    pub(crate) fn get_method_impl(
        &self,
        mut initial_buf_size: usize,
        max_buf_size: Option<usize>,
    ) -> Result<Method, BufferSizeError> {
        if let Some(max) = max_buf_size {
            initial_buf_size = std::cmp::min(initial_buf_size, max);
        }
        match self.get_method(initial_buf_size) {
            Ok(method) => Ok(method),
            Err(err) => {
                if let Some(max) = max_buf_size {
                    // if there's a max size, enforce it
                    if err.needed_buf_size <= max {
                        self.get_method(err.needed_buf_size)
                    } else {
                        Err(err)
                    }
                } else {
                    // otherwise just get as much as is needed
                    self.get_method(err.needed_buf_size)
                }
            }
        }
    }

    /// Set the request method.
    pub fn set_method(&self, method: &Method) {
        let method_bytes = method.as_str().as_bytes();
        unsafe {
            abi::fastly_http_req::method_set(
                self.as_u32(),
                method_bytes.as_ptr(),
                method_bytes.len(),
            )
        }
        .result()
        .expect("fastly_http_req::method_set failed");
    }

    /// Get the request URL.
    ///
    /// If the URL is longer than `max_length`, this will return a [`BufferSizeError`]; you can
    /// retry with a larger buffer size if necessary.
    pub fn get_url(&self, max_length: usize) -> Result<Url, BufferSizeError> {
        let mut url_bytes = BytesMut::with_capacity(max_length);
        let mut nwritten = 0;
        let status = unsafe {
            abi::fastly_http_req::uri_get(
                self.as_u32(),
                url_bytes.as_mut_ptr(),
                url_bytes.capacity(),
                &mut nwritten,
            )
        };
        match status.result() {
            Ok(_) => {
                assert!(
                    nwritten <= url_bytes.capacity(),
                    "fastly_http_req::uri_get wrote too many bytes"
                );
                unsafe {
                    url_bytes.set_len(nwritten);
                }
                // TODO ACF 2020-08-28: use the `TryFrom<&[u8]>` impl once this change is merged and
                // released: https://github.com/servo/rust-url/pull/638
                let url_str =
                    std::str::from_utf8(&url_bytes).expect("host provided invalid request url");
                let url = Url::parse(url_str).expect("host provided invalid request url");
                Ok(url)
            }
            Err(FastlyStatus::BUFLEN) => Err(BufferSizeError::url(max_length, nwritten)),
            _ => panic!("fastly_http_req::uri_get failed"),
        }
    }

    pub(crate) fn get_url_impl(
        &self,
        mut initial_buf_size: usize,
        max_buf_size: Option<usize>,
    ) -> Result<Url, BufferSizeError> {
        if let Some(max) = max_buf_size {
            initial_buf_size = std::cmp::min(initial_buf_size, max);
        }
        match self.get_url(initial_buf_size) {
            Ok(url) => Ok(url),
            Err(err) => {
                if let Some(max) = max_buf_size {
                    // if there's a max size, enforce it
                    if err.needed_buf_size <= max {
                        self.get_url(err.needed_buf_size)
                    } else {
                        Err(err)
                    }
                } else {
                    // otherwise just get as much as is needed
                    self.get_url(err.needed_buf_size)
                }
            }
        }
    }

    /// Get the request [`Uri`].
    ///
    /// Deprecated in favor of [`RequestHandle::get_url()`].
    #[deprecated(since = "0.6.0", note = "replaced by `RequestHandle::get_url()`")]
    pub fn get_uri(&self, max_length: usize) -> Result<Uri, BufferSizeError> {
        Ok(self
            .get_url(max_length)?
            .as_str()
            .parse()
            .expect("host provided invalid request url"))
    }

    /// Set the request URL.
    pub fn set_url(&mut self, url: &Url) {
        let url_bytes = url.as_str().as_bytes();
        unsafe {
            abi::fastly_http_req::uri_set(self.as_u32(), url_bytes.as_ptr(), url_bytes.len())
        }
        .result()
        .expect("fastly_http_req::uri_set failed");
    }

    /// Set the request [`Uri`].
    ///
    /// Deprecated in favor of [`RequestHandle::set_url()`].
    #[deprecated(since = "0.6.0", note = "replaced by `RequestHandle::set_url()`")]
    pub fn set_uri(&mut self, uri: &Uri) {
        let uri_bytes = uri.to_string().into_bytes();
        unsafe {
            abi::fastly_http_req::uri_set(self.as_u32(), uri_bytes.as_ptr(), uri_bytes.len())
        }
        .result()
        .expect("fastly_http_req::uri_set failed");
    }

    /// Send the request to the given backend server, and return once the response headers have been
    /// received, or an error occurs.
    pub fn send(
        self,
        body: BodyHandle,
        backend: &str,
    ) -> Result<(ResponseHandle, BodyHandle), SendErrorCause> {
        let mut resp_handle = ResponseHandle::INVALID;
        let mut resp_body_handle = BodyHandle::INVALID;
        let status = unsafe {
            abi::fastly_http_req::send(
                self.as_u32(),
                body.as_u32(),
                backend.as_ptr(),
                backend.len(),
                resp_handle.as_u32_mut(),
                resp_body_handle.as_u32_mut(),
            )
        };
        if status.is_err() {
            Err(SendErrorCause::status(status))
        } else if resp_handle.is_invalid() || resp_body_handle.is_invalid() {
            panic!("fastly_http_req::send returned invalid handles");
        } else {
            Ok((resp_handle, resp_body_handle))
        }
    }

    /// Send a request asynchronously via the given backend, returning as soon as the request has
    /// begun sending.
    ///
    /// The resulting [`PendingRequestHandle`] can be evaluated using
    /// [`PendingRequestHandle::poll()`], [`PendingRequestHandle::wait()`], or
    /// [`select_handles()`][`crate::handle::select_handles()`]. It can also be discarded if the
    /// request was sent for effects it might have, and the response is unimportant.
    pub fn send_async(
        self,
        body: BodyHandle,
        backend: &str,
    ) -> Result<PendingRequestHandle, SendErrorCause> {
        let mut pending_req_handle = PendingRequestHandle::INVALID;
        let status = unsafe {
            abi::fastly_http_req::send_async(
                self.as_u32(),
                body.as_u32(),
                backend.as_ptr(),
                backend.len(),
                pending_req_handle.as_u32_mut(),
            )
        };
        if status.is_err() {
            Err(SendErrorCause::status(status))
        } else if pending_req_handle.is_invalid() {
            panic!("fastly_http_req::send_async returned an invalid handle");
        } else {
            Ok(pending_req_handle)
        }
    }

    /// Send a request asynchronously via the given backend, and return a [`StreamingBodyHandle`] to
    /// allow continued writes to the request body.
    ///
    /// The resulting [`StreamingBodyHandle`] must be dropped in order to finish sending the
    /// request.
    pub fn send_async_streaming(
        self,
        body: BodyHandle,
        backend: &str,
    ) -> Result<(StreamingBodyHandle, PendingRequestHandle), SendErrorCause> {
        let mut pending_req_handle = PendingRequestHandle::INVALID;
        let status = unsafe {
            abi::fastly_http_req::send_async_streaming(
                self.as_u32(),
                body.as_u32(),
                backend.as_ptr(),
                backend.len(),
                pending_req_handle.as_u32_mut(),
            )
        };
        if status.is_err() {
            Err(SendErrorCause::status(status))
        } else if pending_req_handle.is_invalid() {
            panic!("fastly_http_req::send_async_streaming returned an invalid handle");
        } else {
            Ok((
                StreamingBodyHandle::from_body_handle(&body),
                pending_req_handle,
            ))
        }
    }

    /// Set the cache override behavior for this request.
    ///
    /// This setting will override any cache directive headers returned in response to this request.
    pub fn set_cache_override(&mut self, cache_override: &CacheOverride) {
        let (tag, ttl, swr, sk) = cache_override.to_abi();
        let (sk_ptr, sk_len) = match sk {
            Some(sk) if sk.len() > 0 => (sk.as_ptr(), sk.len()),
            _ => (std::ptr::null(), 0),
        };

        unsafe {
            abi::fastly_http_req::cache_override_v2_set(
                self.as_u32(),
                tag,
                ttl,
                swr,
                sk_ptr,
                sk_len,
            )
        }
        .result()
        .expect("fastly_http_req::cache_override_set failed");
    }
}

/// Get handles to the client request headers and body at the same time.
///
/// This will panic if either the parts of the body have already been retrieved.
pub fn client_request_and_body() -> (RequestHandle, BodyHandle) {
    RequestHandle::set_got_client();
    BodyHandle::set_got_client();
    let result = {
        let mut req_handle = RequestHandle::INVALID;
        let mut body_handle = BodyHandle::INVALID;
        let status = unsafe {
            abi::fastly_http_req::body_downstream_get(
                req_handle.as_u32_mut(),
                body_handle.as_u32_mut(),
            )
        };
        status.result().map(|_| (req_handle, body_handle))
    };
    match result {
        Ok((r, b)) if r.is_valid() && b.is_valid() => (r, b),
        _ => panic!("fastly_http_req::body_downstream_get failed"),
    }
}

/// Returns the client request's header names exactly as they were originally received.
///
/// This includes both the original header name characters' cases, as well as the original order of
/// the received headers.
///
/// If there is a header name that is longer than the provided buffer, this will return a
/// [`BufferSizeError`]; you can retry with a larger buffer size if necessary.
pub fn client_original_header_names(
    buf_size: usize,
) -> impl Iterator<Item = Result<String, BufferSizeError>> {
    client_original_header_names_impl(buf_size, Some(buf_size))
}

pub(crate) fn client_original_header_names_impl(
    mut initial_buf_size: usize,
    max_buf_size: Option<usize>,
) -> impl Iterator<Item = Result<String, BufferSizeError>> {
    if let Some(max) = max_buf_size {
        initial_buf_size = std::cmp::min(initial_buf_size, max);
    }
    abi::MultiValueHostcall::new(
        b'\0',
        initial_buf_size,
        max_buf_size,
        move |buf, buf_size, cursor, ending_cursor, nwritten| unsafe {
            abi::fastly_http_req::original_header_names_get(
                buf,
                buf_size,
                cursor,
                ending_cursor,
                nwritten,
            )
        },
    )
    .map(move |res| {
        use MultiValueHostcallError::{BufferTooSmall, ClosureError};
        match res {
            // we trust that the hostcall is giving us valid header bytes
            Ok(name_bytes) => Ok(String::from_utf8(name_bytes.to_vec()).unwrap()),
            // return an error if the buffer was not large enough
            Err(BufferTooSmall { needed_buf_size }) => Err(BufferSizeError::header_value(
                initial_buf_size,
                needed_buf_size,
            )),
            // panic if the hostcall failed for some other reason
            Err(ClosureError(e)) => {
                panic!("fastly_http_req::header_values_get returned error: {:?}", e)
            }
        }
    })
}

/// Returns the number of headers in the client request as originally received.
pub fn client_original_header_count() -> u32 {
    let mut count = 0;
    let status = unsafe { abi::fastly_http_req::original_header_count(&mut count) };
    if status.is_err() || count == 0 {
        panic!("downstream_original_header_count failed")
    }
    count
}

/// Returns the IP address of the client making the HTTP request.
pub fn client_ip_addr() -> Option<IpAddr> {
    let mut octets = [0; 16];
    let mut nwritten = 0;

    let status = unsafe {
        abi::fastly_http_req::downstream_client_ip_addr(octets.as_mut_ptr(), &mut nwritten)
    };
    if status.is_err() {
        panic!("downstream_client_ip_addr failed");
    }
    match nwritten {
        4 => {
            let octets: [u8; 4] = octets[0..4]
                .try_into()
                .expect("octets is at least 4 bytes long");
            let addr: Ipv4Addr = octets.into();
            Some(addr.into())
        }
        16 => {
            let addr: Ipv6Addr = octets.into();
            Some(addr.into())
        }
        _ => panic!("downstream_client_ip_addr wrote an unexpected number of bytes"),
    }
}

/// Get the raw bytes sent by the client in the TLS ClientHello message.
///
/// See [RFC 5246](https://tools.ietf.org/html/rfc5246#section-7.4.1.2) for details.
pub fn client_tls_client_hello() -> Option<&'static [u8]> {
    lazy_static! {
        static ref CLIENT_HELLO: Vec<u8> = {
            get_bytes_adaptive(
                abi::fastly_http_req::downstream_tls_client_hello,
                512,
                "downstream TLS ClientHello",
            )
        };
    }
    Some(CLIENT_HELLO.as_slice())
}

/// Get the cipher suite used to secure the downstream client TLS connection.
///
/// The value returned will be consistent with the [OpenSSL
/// name](https://testssl.sh/openssl-iana.mapping.html) for the cipher suite.
///
/// # Examples
///
/// ```no_run
/// assert_eq!(
///     fastly::handle::client_tls_cipher_openssl_name().unwrap(),
///     "ECDHE-RSA-AES128-GCM-SHA256"
/// );
/// ```
pub fn client_tls_cipher_openssl_name() -> Option<&'static str> {
    lazy_static! {
        static ref OPENSSL_NAME: String = {
            let name = "downstream TLS cipher OpenSSL name";
            let buf = get_bytes_adaptive(
                abi::fastly_http_req::downstream_tls_cipher_openssl_name,
                128,
                name,
            );
            String::from_utf8(buf).unwrap_or_else(|_| panic!("{} must be valid UTF-8", name))
        };
    }
    Some(OPENSSL_NAME.as_str())
}

/// Get the TLS protocol version used to secure the downstream client TLS connection.
///
/// # Examples
///
/// ```no_run
/// # use fastly::Request;
/// assert_eq!(Request::from_client().get_tls_protocol().unwrap(), "TLSv1.2");
/// ```
pub fn client_tls_protocol() -> Option<&'static str> {
    lazy_static! {
        static ref PROTOCOL: String = {
            let name = "downstream TLS cipher protocol";
            let buf = get_bytes_adaptive(abi::fastly_http_req::downstream_tls_protocol, 32, name);
            String::from_utf8(buf).unwrap_or_else(|_| panic!("{} must be valid UTF-8", name))
        };
    }
    Some(PROTOCOL.as_str())
}

fn get_bytes_adaptive(
    hostcall: unsafe extern "C" fn(*mut u8, usize, *mut usize) -> FastlyStatus,
    default_buf_size: usize,
    name: &str,
) -> Vec<u8> {
    let mut buf = Vec::with_capacity(default_buf_size);
    let mut nwritten = 0;

    let status = unsafe { hostcall(buf.as_mut_ptr(), buf.capacity(), &mut nwritten) };

    match status {
        FastlyStatus::OK => (),
        FastlyStatus::BUFLEN if nwritten != 0 => {
            buf.reserve_exact(nwritten);
            let status = unsafe { hostcall(buf.as_mut_ptr(), buf.capacity(), &mut nwritten) };
            if status.is_err() {
                panic!("couldn't get the {}", name);
            }
        }
        _ => panic!("couldn't get the {}", name),
    };

    unsafe {
        buf.set_len(nwritten);
    }
    buf
}