core/ffi/c_str.rs
1//! [`CStr`] and its related types.
2
3use crate::cmp::Ordering;
4use crate::error::Error;
5use crate::ffi::c_char;
6use crate::intrinsics::const_eval_select;
7use crate::iter::FusedIterator;
8use crate::marker::PhantomData;
9use crate::ptr::NonNull;
10use crate::slice::memchr;
11use crate::{fmt, ops, range, slice, str};
12
13// FIXME: because this is doc(inline)d, we *have* to use intra-doc links because the actual link
14// depends on where the item is being documented. however, since this is libcore, we can't
15// actually reference libstd or liballoc in intra-doc links. so, the best we can do is remove the
16// links to `CString` and `String` for now until a solution is developed
17
18/// A dynamically-sized view of a C string.
19///
20/// The type `&CStr` represents a reference to a borrowed nul-terminated
21/// array of bytes. It can be constructed safely from a <code>&[[u8]]</code>
22/// slice, or unsafely from a raw `*const c_char`. It can be expressed as a
23/// literal in the form `c"Hello world"`.
24///
25/// The `&CStr` can then be converted to a Rust <code>&[str]</code> by performing
26/// UTF-8 validation, or into an owned `CString`.
27///
28/// `&CStr` is to `CString` as <code>&[str]</code> is to `String`: the former
29/// in each pair are borrowing references; the latter are owned
30/// strings.
31///
32/// Note that this structure does **not** have a guaranteed layout (the `repr(transparent)`
33/// notwithstanding) and should not be placed in the signatures of FFI functions.
34/// Instead, safe wrappers of FFI functions may leverage [`CStr::as_ptr`] and the unsafe
35/// [`CStr::from_ptr`] constructor to provide a safe interface to other consumers.
36///
37/// # Examples
38///
39/// Inspecting a foreign C string:
40///
41/// ```
42/// use std::ffi::CStr;
43/// use std::os::raw::c_char;
44///
45/// # /* Extern functions are awkward in doc comments - fake it instead
46/// extern "C" { fn my_string() -> *const c_char; }
47/// # */ unsafe extern "C" fn my_string() -> *const c_char { c"hello".as_ptr() }
48///
49/// unsafe {
50/// let slice = CStr::from_ptr(my_string());
51/// println!("string buffer size without nul terminator: {}", slice.to_bytes().len());
52/// }
53/// ```
54///
55/// Passing a Rust-originating C string:
56///
57/// ```
58/// use std::ffi::CStr;
59/// use std::os::raw::c_char;
60///
61/// fn work(data: &CStr) {
62/// unsafe extern "C" fn work_with(s: *const c_char) {}
63/// unsafe { work_with(data.as_ptr()) }
64/// }
65///
66/// let s = c"Hello world!";
67/// work(&s);
68/// ```
69///
70/// Converting a foreign C string into a Rust `String`:
71///
72/// ```
73/// use std::ffi::CStr;
74/// use std::os::raw::c_char;
75///
76/// # /* Extern functions are awkward in doc comments - fake it instead
77/// extern "C" { fn my_string() -> *const c_char; }
78/// # */ unsafe extern "C" fn my_string() -> *const c_char { c"hello".as_ptr() }
79///
80/// fn my_string_safe() -> String {
81/// let cstr = unsafe { CStr::from_ptr(my_string()) };
82/// // Get a copy-on-write Cow<'_, str>, then extract the
83/// // allocated String (or allocate a fresh one if needed).
84/// cstr.to_string_lossy().into_owned()
85/// }
86///
87/// println!("string: {}", my_string_safe());
88/// ```
89///
90/// [str]: prim@str "str"
91#[derive(PartialEq, Eq, Hash)]
92#[stable(feature = "core_c_str", since = "1.64.0")]
93#[rustc_diagnostic_item = "cstr_type"]
94#[rustc_has_incoherent_inherent_impls]
95#[lang = "CStr"]
96// `fn from` in `impl From<&CStr> for Box<CStr>` current implementation relies
97// on `CStr` being layout-compatible with `[u8]`.
98// However, `CStr` layout is considered an implementation detail and must not be relied upon. We
99// want `repr(transparent)` but we don't want it to show up in rustdoc, so we hide it under
100// `cfg(doc)`. This is an ad-hoc implementation of attribute privacy.
101#[repr(transparent)]
102#[ferrocene::prevalidated]
103pub struct CStr {
104 // FIXME: this should not be represented with a DST slice but rather with
105 // just a raw `c_char` along with some form of marker to make
106 // this an unsized type. Essentially `sizeof(&CStr)` should be the
107 // same as `sizeof(&c_char)` but `CStr` should be an unsized type.
108 inner: [c_char],
109}
110
111/// An error indicating that a nul byte was not in the expected position.
112///
113/// The slice used to create a [`CStr`] must have one and only one nul byte,
114/// positioned at the end.
115///
116/// This error is created by the [`CStr::from_bytes_with_nul`] method.
117/// See its documentation for more.
118///
119/// # Examples
120///
121/// ```
122/// use std::ffi::{CStr, FromBytesWithNulError};
123///
124/// let _: FromBytesWithNulError = CStr::from_bytes_with_nul(b"f\0oo").unwrap_err();
125/// ```
126#[derive(Clone, Copy, PartialEq, Eq, Debug)]
127#[stable(feature = "core_c_str", since = "1.64.0")]
128#[ferrocene::prevalidated]
129pub enum FromBytesWithNulError {
130 /// Data provided contains an interior nul byte at byte `position`.
131 InteriorNul {
132 /// The position of the interior nul byte.
133 position: usize,
134 },
135 /// Data provided is not nul terminated.
136 NotNulTerminated,
137}
138
139#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
140impl fmt::Display for FromBytesWithNulError {
141 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
142 match self {
143 Self::InteriorNul { position } => {
144 write!(f, "data provided contains an interior nul byte at byte position {position}")
145 }
146 Self::NotNulTerminated => write!(f, "data provided is not nul terminated"),
147 }
148 }
149}
150
151#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
152impl Error for FromBytesWithNulError {}
153
154/// An error indicating that no nul byte was present.
155///
156/// A slice used to create a [`CStr`] must contain a nul byte somewhere
157/// within the slice.
158///
159/// This error is created by the [`CStr::from_bytes_until_nul`] method.
160#[derive(Clone, PartialEq, Eq, Debug)]
161#[stable(feature = "cstr_from_bytes_until_nul", since = "1.69.0")]
162pub struct FromBytesUntilNulError(());
163
164#[stable(feature = "cstr_from_bytes_until_nul", since = "1.69.0")]
165impl fmt::Display for FromBytesUntilNulError {
166 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
167 write!(f, "data provided does not contain a nul")
168 }
169}
170
171/// Shows the underlying bytes as a normal string, with invalid UTF-8
172/// presented as hex escape sequences.
173#[stable(feature = "cstr_debug", since = "1.3.0")]
174impl fmt::Debug for CStr {
175 #[ferrocene::prevalidated]
176 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
177 fmt::Debug::fmt(crate::bstr::ByteStr::from_bytes(self.to_bytes()), f)
178 }
179}
180
181#[stable(feature = "cstr_default", since = "1.10.0")]
182#[rustc_const_unstable(feature = "const_default", issue = "143894")]
183impl const Default for &CStr {
184 #[inline]
185 fn default() -> Self {
186 c""
187 }
188}
189
190impl CStr {
191 /// Wraps a raw C string with a safe C string wrapper.
192 ///
193 /// This function will wrap the provided `ptr` with a `CStr` wrapper, which
194 /// allows inspection and interoperation of non-owned C strings. The total
195 /// size of the terminated buffer must be smaller than [`isize::MAX`] **bytes**
196 /// in memory (a restriction from [`slice::from_raw_parts`]).
197 ///
198 /// # Safety
199 ///
200 /// * The memory pointed to by `ptr` must contain a valid nul terminator at the
201 /// end of the string.
202 ///
203 /// * `ptr` must be [valid] for reads of bytes up to and including the nul terminator.
204 /// This means in particular:
205 ///
206 /// * The entire memory range of this `CStr` must be contained within a single allocation!
207 /// * `ptr` must be non-null even for a zero-length cstr.
208 ///
209 /// * The memory referenced by the returned `CStr` must not be mutated for
210 /// the duration of lifetime `'a`.
211 ///
212 /// * The nul terminator must be within `isize::MAX` from `ptr`
213 ///
214 /// > **Note**: This operation is intended to be a 0-cost cast but it is
215 /// > currently implemented with an up-front calculation of the length of
216 /// > the string. This is not guaranteed to always be the case.
217 ///
218 /// # Caveat
219 ///
220 /// The lifetime for the returned slice is inferred from its usage. To prevent accidental misuse,
221 /// it's suggested to tie the lifetime to whichever source lifetime is safe in the context,
222 /// such as by providing a helper function taking the lifetime of a host value for the slice,
223 /// or by explicit annotation.
224 ///
225 /// # Examples
226 ///
227 /// ```
228 /// use std::ffi::{c_char, CStr};
229 ///
230 /// fn my_string() -> *const c_char {
231 /// c"hello".as_ptr()
232 /// }
233 ///
234 /// unsafe {
235 /// let slice = CStr::from_ptr(my_string());
236 /// assert_eq!(slice.to_str().unwrap(), "hello");
237 /// }
238 /// ```
239 ///
240 /// ```
241 /// use std::ffi::{c_char, CStr};
242 ///
243 /// const HELLO_PTR: *const c_char = {
244 /// const BYTES: &[u8] = b"Hello, world!\0";
245 /// BYTES.as_ptr().cast()
246 /// };
247 /// const HELLO: &CStr = unsafe { CStr::from_ptr(HELLO_PTR) };
248 ///
249 /// assert_eq!(c"Hello, world!", HELLO);
250 /// ```
251 ///
252 /// [valid]: core::ptr#safety
253 #[inline] // inline is necessary for codegen to see strlen.
254 #[must_use]
255 #[stable(feature = "rust1", since = "1.0.0")]
256 #[rustc_const_stable(feature = "const_cstr_from_ptr", since = "1.81.0")]
257 #[ferrocene::prevalidated]
258 pub const unsafe fn from_ptr<'a>(ptr: *const c_char) -> &'a CStr {
259 // SAFETY: The caller has provided a pointer that points to a valid C
260 // string with a NUL terminator less than `isize::MAX` from `ptr`.
261 let len = unsafe { strlen(ptr) };
262
263 // SAFETY: The caller has provided a valid pointer with length less than
264 // `isize::MAX`, so `from_raw_parts` is safe. The content remains valid
265 // and doesn't change for the lifetime of the returned `CStr`. This
266 // means the call to `from_bytes_with_nul_unchecked` is correct.
267 //
268 // The cast from c_char to u8 is ok because a c_char is always one byte.
269 unsafe { Self::from_bytes_with_nul_unchecked(slice::from_raw_parts(ptr.cast(), len + 1)) }
270 }
271
272 /// Creates a C string wrapper from a byte slice with any number of nuls.
273 ///
274 /// This method will create a `CStr` from any byte slice that contains at
275 /// least one nul byte. Unlike with [`CStr::from_bytes_with_nul`], the caller
276 /// does not need to know where the nul byte is located.
277 ///
278 /// If the first byte is a nul character, this method will return an
279 /// empty `CStr`. If multiple nul characters are present, the `CStr` will
280 /// end at the first one.
281 ///
282 /// If the slice only has a single nul byte at the end, this method is
283 /// equivalent to [`CStr::from_bytes_with_nul`].
284 ///
285 /// # Examples
286 /// ```
287 /// use std::ffi::CStr;
288 ///
289 /// let mut buffer = [0u8; 16];
290 /// unsafe {
291 /// // Here we might call an unsafe C function that writes a string
292 /// // into the buffer.
293 /// let buf_ptr = buffer.as_mut_ptr();
294 /// buf_ptr.write_bytes(b'A', 8);
295 /// }
296 /// // Attempt to extract a C nul-terminated string from the buffer.
297 /// let c_str = CStr::from_bytes_until_nul(&buffer[..]).unwrap();
298 /// assert_eq!(c_str.to_str().unwrap(), "AAAAAAAA");
299 /// ```
300 ///
301 #[stable(feature = "cstr_from_bytes_until_nul", since = "1.69.0")]
302 #[rustc_const_stable(feature = "cstr_from_bytes_until_nul", since = "1.69.0")]
303 pub const fn from_bytes_until_nul(bytes: &[u8]) -> Result<&CStr, FromBytesUntilNulError> {
304 let nul_pos = memchr::memchr(0, bytes);
305 match nul_pos {
306 Some(nul_pos) => {
307 // FIXME(const-hack) replace with range index
308 // SAFETY: nul_pos + 1 <= bytes.len()
309 let subslice = unsafe { crate::slice::from_raw_parts(bytes.as_ptr(), nul_pos + 1) };
310 // SAFETY: We know there is a nul byte at nul_pos, so this slice
311 // (ending at the nul byte) is a well-formed C string.
312 Ok(unsafe { CStr::from_bytes_with_nul_unchecked(subslice) })
313 }
314 None => Err(FromBytesUntilNulError(())),
315 }
316 }
317
318 /// Creates a C string wrapper from a byte slice with exactly one nul
319 /// terminator.
320 ///
321 /// This function will cast the provided `bytes` to a `CStr`
322 /// wrapper after ensuring that the byte slice is nul-terminated
323 /// and does not contain any interior nul bytes.
324 ///
325 /// If the nul byte may not be at the end,
326 /// [`CStr::from_bytes_until_nul`] can be used instead.
327 ///
328 /// # Examples
329 ///
330 /// ```
331 /// use std::ffi::CStr;
332 ///
333 /// let cstr = CStr::from_bytes_with_nul(b"hello\0");
334 /// assert_eq!(cstr, Ok(c"hello"));
335 /// ```
336 ///
337 /// Creating a `CStr` without a trailing nul terminator is an error:
338 ///
339 /// ```
340 /// use std::ffi::{CStr, FromBytesWithNulError};
341 ///
342 /// let cstr = CStr::from_bytes_with_nul(b"hello");
343 /// assert_eq!(cstr, Err(FromBytesWithNulError::NotNulTerminated));
344 /// ```
345 ///
346 /// Creating a `CStr` with an interior nul byte is an error:
347 ///
348 /// ```
349 /// use std::ffi::{CStr, FromBytesWithNulError};
350 ///
351 /// let cstr = CStr::from_bytes_with_nul(b"he\0llo\0");
352 /// assert_eq!(cstr, Err(FromBytesWithNulError::InteriorNul { position: 2 }));
353 /// ```
354 #[stable(feature = "cstr_from_bytes", since = "1.10.0")]
355 #[rustc_const_stable(feature = "const_cstr_methods", since = "1.72.0")]
356 #[ferrocene::prevalidated]
357 pub const fn from_bytes_with_nul(bytes: &[u8]) -> Result<&Self, FromBytesWithNulError> {
358 let nul_pos = memchr::memchr(0, bytes);
359 match nul_pos {
360 Some(nul_pos) if nul_pos + 1 == bytes.len() => {
361 // SAFETY: We know there is only one nul byte, at the end
362 // of the byte slice.
363 Ok(unsafe { Self::from_bytes_with_nul_unchecked(bytes) })
364 }
365 Some(position) => Err(FromBytesWithNulError::InteriorNul { position }),
366 None => Err(FromBytesWithNulError::NotNulTerminated),
367 }
368 }
369
370 /// Unsafely creates a C string wrapper from a byte slice.
371 ///
372 /// This function will cast the provided `bytes` to a `CStr` wrapper without
373 /// performing any sanity checks.
374 ///
375 /// # Safety
376 /// The provided slice **must** be nul-terminated and not contain any interior
377 /// nul bytes.
378 ///
379 /// # Examples
380 ///
381 /// ```
382 /// use std::ffi::CStr;
383 ///
384 /// let bytes = b"Hello world!\0";
385 ///
386 /// let cstr = unsafe { CStr::from_bytes_with_nul_unchecked(bytes) };
387 /// assert_eq!(cstr.to_bytes_with_nul(), bytes);
388 /// ```
389 #[inline]
390 #[must_use]
391 #[stable(feature = "cstr_from_bytes", since = "1.10.0")]
392 #[rustc_const_stable(feature = "const_cstr_unchecked", since = "1.59.0")]
393 #[rustc_allow_const_fn_unstable(const_eval_select)]
394 #[ferrocene::prevalidated]
395 pub const unsafe fn from_bytes_with_nul_unchecked(bytes: &[u8]) -> &CStr {
396 const_eval_select!(
397 @capture { bytes: &[u8] } -> &CStr:
398 if const {
399 // Saturating so that an empty slice panics in the assert with a good
400 // message, not here due to underflow.
401 let mut i = bytes.len().saturating_sub(1);
402 assert!(!bytes.is_empty() && bytes[i] == 0, "input was not nul-terminated");
403
404 // Ending nul byte exists, skip to the rest.
405 while i != 0 {
406 i -= 1;
407 let byte = bytes[i];
408 assert!(byte != 0, "input contained interior nul");
409 }
410
411 // SAFETY: See runtime cast comment below.
412 unsafe { &*(bytes as *const [u8] as *const CStr) }
413 } else {
414 // Chance at catching some UB at runtime with debug builds.
415 debug_assert!(!bytes.is_empty() && bytes[bytes.len() - 1] == 0);
416
417 // SAFETY: Casting to CStr is safe because its internal representation
418 // is a [u8] too (safe only inside std).
419 // Dereferencing the obtained pointer is safe because it comes from a
420 // reference. Making a reference is then safe because its lifetime
421 // is bound by the lifetime of the given `bytes`.
422 unsafe { &*(bytes as *const [u8] as *const CStr) }
423 }
424 )
425 }
426
427 /// Returns the inner pointer to this C string.
428 ///
429 /// The returned pointer will be valid for as long as `self` is, and points
430 /// to a contiguous region of memory terminated with a 0 byte to represent
431 /// the end of the string.
432 ///
433 /// The type of the returned pointer is
434 /// [`*const c_char`][crate::ffi::c_char], and whether it's
435 /// an alias for `*const i8` or `*const u8` is platform-specific.
436 ///
437 /// **WARNING**
438 ///
439 /// The returned pointer is read-only; writing to it (including passing it
440 /// to C code that writes to it) causes undefined behavior.
441 ///
442 /// It is your responsibility to make sure that the underlying memory is not
443 /// freed too early. For example, the following code will cause undefined
444 /// behavior when `ptr` is used inside the `unsafe` block:
445 ///
446 /// ```no_run
447 /// # #![expect(dangling_pointers_from_temporaries)]
448 /// use std::ffi::{CStr, CString};
449 ///
450 /// // 💀 The meaning of this entire program is undefined,
451 /// // 💀 and nothing about its behavior is guaranteed,
452 /// // 💀 not even that its behavior resembles the code as written,
453 /// // 💀 just because it contains a single instance of undefined behavior!
454 ///
455 /// // 🚨 creates a dangling pointer to a temporary `CString`
456 /// // 🚨 that is deallocated at the end of the statement
457 /// let ptr = CString::new("Hi!".to_uppercase()).unwrap().as_ptr();
458 ///
459 /// // without undefined behavior, you would expect that `ptr` equals:
460 /// dbg!(CStr::from_bytes_with_nul(b"HI!\0").unwrap());
461 ///
462 /// // 🙏 Possibly the program behaved as expected so far,
463 /// // 🙏 and this just shows `ptr` is now garbage..., but
464 /// // 💀 this violates `CStr::from_ptr`'s safety contract
465 /// // 💀 leading to a dereference of a dangling pointer,
466 /// // 💀 which is immediate undefined behavior.
467 /// // 💀 *BOOM*, you're dead, your entire program has no meaning.
468 /// dbg!(unsafe { CStr::from_ptr(ptr) });
469 /// ```
470 ///
471 /// This happens because, the pointer returned by `as_ptr` does not carry any
472 /// lifetime information, and the `CString` is deallocated immediately after
473 /// the expression that it is part of has been evaluated.
474 /// To fix the problem, bind the `CString` to a local variable:
475 ///
476 /// ```
477 /// use std::ffi::{CStr, CString};
478 ///
479 /// let c_str = CString::new("Hi!".to_uppercase()).unwrap();
480 /// let ptr = c_str.as_ptr();
481 ///
482 /// assert_eq!(unsafe { CStr::from_ptr(ptr) }, c"HI!");
483 /// ```
484 #[inline]
485 #[must_use]
486 #[stable(feature = "rust1", since = "1.0.0")]
487 #[rustc_const_stable(feature = "const_str_as_ptr", since = "1.32.0")]
488 #[rustc_as_ptr]
489 #[rustc_never_returns_null_ptr]
490 pub const fn as_ptr(&self) -> *const c_char {
491 self.inner.as_ptr()
492 }
493
494 /// We could eventually expose this publicly, if we wanted.
495 #[inline]
496 #[must_use]
497 const fn as_non_null_ptr(&self) -> NonNull<c_char> {
498 // FIXME(const_trait_impl) replace with `NonNull::from`
499 // SAFETY: a reference is never null
500 unsafe { NonNull::new_unchecked(&self.inner as *const [c_char] as *mut [c_char]) }
501 .as_non_null_ptr()
502 }
503
504 /// Returns the length of `self`. Like C's `strlen`, this does not include the nul terminator.
505 ///
506 /// > **Note**: This method is currently implemented as a constant-time
507 /// > cast, but it is planned to alter its definition in the future to
508 /// > perform the length calculation whenever this method is called.
509 ///
510 /// # Examples
511 ///
512 /// ```
513 /// assert_eq!(c"foo".count_bytes(), 3);
514 /// assert_eq!(c"".count_bytes(), 0);
515 /// ```
516 #[inline]
517 #[must_use]
518 #[doc(alias("len", "strlen"))]
519 #[stable(feature = "cstr_count_bytes", since = "1.79.0")]
520 #[rustc_const_stable(feature = "const_cstr_from_ptr", since = "1.81.0")]
521 pub const fn count_bytes(&self) -> usize {
522 self.inner.len() - 1
523 }
524
525 /// Returns `true` if `self.to_bytes()` has a length of 0.
526 ///
527 /// # Examples
528 ///
529 /// ```
530 /// assert!(!c"foo".is_empty());
531 /// assert!(c"".is_empty());
532 /// ```
533 #[inline]
534 #[stable(feature = "cstr_is_empty", since = "1.71.0")]
535 #[rustc_const_stable(feature = "cstr_is_empty", since = "1.71.0")]
536 pub const fn is_empty(&self) -> bool {
537 // SAFETY: We know there is at least one byte; for empty strings it
538 // is the NUL terminator.
539 // FIXME(const-hack): use get_unchecked
540 unsafe { *self.inner.as_ptr() == 0 }
541 }
542
543 /// Converts this C string to a byte slice.
544 ///
545 /// The returned slice will **not** contain the trailing nul terminator that this C
546 /// string has.
547 ///
548 /// > **Note**: This method is currently implemented as a constant-time
549 /// > cast, but it is planned to alter its definition in the future to
550 /// > perform the length calculation whenever this method is called.
551 ///
552 /// # Examples
553 ///
554 /// ```
555 /// assert_eq!(c"foo".to_bytes(), b"foo");
556 /// ```
557 #[inline]
558 #[must_use = "this returns the result of the operation, \
559 without modifying the original"]
560 #[stable(feature = "rust1", since = "1.0.0")]
561 #[rustc_const_stable(feature = "const_cstr_methods", since = "1.72.0")]
562 #[ferrocene::prevalidated]
563 pub const fn to_bytes(&self) -> &[u8] {
564 let bytes = self.to_bytes_with_nul();
565 // FIXME(const-hack) replace with range index
566 // SAFETY: to_bytes_with_nul returns slice with length at least 1
567 unsafe { slice::from_raw_parts(bytes.as_ptr(), bytes.len() - 1) }
568 }
569
570 /// Converts this C string to a byte slice containing the trailing 0 byte.
571 ///
572 /// This function is the equivalent of [`CStr::to_bytes`] except that it
573 /// will retain the trailing nul terminator instead of chopping it off.
574 ///
575 /// > **Note**: This method is currently implemented as a 0-cost cast, but
576 /// > it is planned to alter its definition in the future to perform the
577 /// > length calculation whenever this method is called.
578 ///
579 /// # Examples
580 ///
581 /// ```
582 /// assert_eq!(c"foo".to_bytes_with_nul(), b"foo\0");
583 /// ```
584 #[inline]
585 #[must_use = "this returns the result of the operation, \
586 without modifying the original"]
587 #[stable(feature = "rust1", since = "1.0.0")]
588 #[rustc_const_stable(feature = "const_cstr_methods", since = "1.72.0")]
589 #[ferrocene::prevalidated]
590 pub const fn to_bytes_with_nul(&self) -> &[u8] {
591 // SAFETY: Transmuting a slice of `c_char`s to a slice of `u8`s
592 // is safe on all supported targets.
593 unsafe { &*((&raw const self.inner) as *const [u8]) }
594 }
595
596 /// Iterates over the bytes in this C string.
597 ///
598 /// The returned iterator will **not** contain the trailing nul terminator
599 /// that this C string has.
600 ///
601 /// # Examples
602 ///
603 /// ```
604 /// #![feature(cstr_bytes)]
605 ///
606 /// assert!(c"foo".bytes().eq(*b"foo"));
607 /// ```
608 #[inline]
609 #[unstable(feature = "cstr_bytes", issue = "112115")]
610 pub fn bytes(&self) -> Bytes<'_> {
611 Bytes::new(self)
612 }
613
614 /// Yields a <code>&[str]</code> slice if the `CStr` contains valid UTF-8.
615 ///
616 /// If the contents of the `CStr` are valid UTF-8 data, this
617 /// function will return the corresponding <code>&[str]</code> slice. Otherwise,
618 /// it will return an error with details of where UTF-8 validation failed.
619 ///
620 /// [str]: prim@str "str"
621 ///
622 /// # Examples
623 ///
624 /// ```
625 /// assert_eq!(c"foo".to_str(), Ok("foo"));
626 /// ```
627 #[stable(feature = "cstr_to_str", since = "1.4.0")]
628 #[rustc_const_stable(feature = "const_cstr_methods", since = "1.72.0")]
629 pub const fn to_str(&self) -> Result<&str, str::Utf8Error> {
630 // N.B., when `CStr` is changed to perform the length check in `.to_bytes()`
631 // instead of in `from_ptr()`, it may be worth considering if this should
632 // be rewritten to do the UTF-8 check inline with the length calculation
633 // instead of doing it afterwards.
634 str::from_utf8(self.to_bytes())
635 }
636
637 /// Returns an object that implements [`Display`] for safely printing a [`CStr`] that may
638 /// contain non-Unicode data.
639 ///
640 /// Behaves as if `self` were first lossily converted to a `str`, with invalid UTF-8 presented
641 /// as the Unicode replacement character: �.
642 ///
643 /// [`Display`]: fmt::Display
644 ///
645 /// # Examples
646 ///
647 /// ```
648 /// #![feature(cstr_display)]
649 ///
650 /// let cstr = c"Hello, world!";
651 /// println!("{}", cstr.display());
652 /// ```
653 #[unstable(feature = "cstr_display", issue = "139984")]
654 #[must_use = "this does not display the `CStr`; \
655 it returns an object that can be displayed"]
656 #[inline]
657 pub fn display(&self) -> impl fmt::Display {
658 crate::bstr::ByteStr::from_bytes(self.to_bytes())
659 }
660
661 /// Returns the same string as a string slice `&CStr`.
662 ///
663 /// This method is redundant when used directly on `&CStr`, but
664 /// it helps dereferencing other string-like types to string slices,
665 /// for example references to `Box<CStr>` or `Arc<CStr>`.
666 #[inline]
667 #[unstable(feature = "str_as_str", issue = "130366")]
668 pub const fn as_c_str(&self) -> &CStr {
669 self
670 }
671}
672
673#[stable(feature = "c_string_eq_c_str", since = "1.90.0")]
674impl PartialEq<&Self> for CStr {
675 #[inline]
676 fn eq(&self, other: &&Self) -> bool {
677 *self == **other
678 }
679
680 #[inline]
681 fn ne(&self, other: &&Self) -> bool {
682 *self != **other
683 }
684}
685
686// `.to_bytes()` representations are compared instead of the inner `[c_char]`s,
687// because `c_char` is `i8` (not `u8`) on some platforms.
688// That is why this is implemented manually and not derived.
689#[stable(feature = "rust1", since = "1.0.0")]
690impl PartialOrd for CStr {
691 #[inline]
692 fn partial_cmp(&self, other: &CStr) -> Option<Ordering> {
693 self.to_bytes().partial_cmp(&other.to_bytes())
694 }
695}
696
697#[stable(feature = "rust1", since = "1.0.0")]
698impl Ord for CStr {
699 #[inline]
700 fn cmp(&self, other: &CStr) -> Ordering {
701 self.to_bytes().cmp(&other.to_bytes())
702 }
703}
704
705#[stable(feature = "cstr_range_from", since = "1.47.0")]
706impl ops::Index<ops::RangeFrom<usize>> for CStr {
707 type Output = CStr;
708
709 #[inline]
710 fn index(&self, index: ops::RangeFrom<usize>) -> &CStr {
711 let bytes = self.to_bytes_with_nul();
712 // we need to manually check the starting index to account for the null
713 // byte, since otherwise we could get an empty string that doesn't end
714 // in a null.
715 if index.start < bytes.len() {
716 // SAFETY: Non-empty tail of a valid `CStr` is still a valid `CStr`.
717 unsafe { CStr::from_bytes_with_nul_unchecked(&bytes[index.start..]) }
718 } else {
719 panic!(
720 "index out of bounds: the len is {} but the index is {}",
721 bytes.len(),
722 index.start
723 );
724 }
725 }
726}
727
728#[stable(feature = "new_range_from_api", since = "1.96.0")]
729impl ops::Index<range::RangeFrom<usize>> for CStr {
730 type Output = CStr;
731
732 #[inline]
733 fn index(&self, index: range::RangeFrom<usize>) -> &CStr {
734 ops::Index::index(self, ops::RangeFrom::from(index))
735 }
736}
737
738#[stable(feature = "cstring_asref", since = "1.7.0")]
739#[rustc_const_unstable(feature = "const_convert", issue = "143773")]
740impl const AsRef<CStr> for CStr {
741 #[inline]
742 fn as_ref(&self) -> &CStr {
743 self
744 }
745}
746
747/// Calculate the length of a nul-terminated string. Defers to C's `strlen` when possible.
748///
749/// # Safety
750///
751/// The pointer must point to a valid buffer that contains a NUL terminator. The NUL must be
752/// located within `isize::MAX` from `ptr`.
753#[inline]
754#[unstable(feature = "cstr_internals", issue = "none")]
755#[rustc_allow_const_fn_unstable(const_eval_select)]
756#[ferrocene::prevalidated]
757const unsafe fn strlen(ptr: *const c_char) -> usize {
758 const_eval_select!(
759 @capture { s: *const c_char = ptr } -> usize:
760 if const {
761 let mut len = 0;
762
763 // SAFETY: Outer caller has provided a pointer to a valid C string.
764 while unsafe { *s.add(len) } != 0 {
765 len += 1;
766 }
767
768 len
769 } else {
770 unsafe extern "C" {
771 /// Provided by libc or compiler_builtins.
772 fn strlen(s: *const c_char) -> usize;
773 }
774
775 // SAFETY: Outer caller has provided a pointer to a valid C string.
776 unsafe { strlen(s) }
777 }
778 )
779}
780
781/// An iterator over the bytes of a [`CStr`], without the nul terminator.
782///
783/// This struct is created by the [`bytes`] method on [`CStr`].
784/// See its documentation for more.
785///
786/// [`bytes`]: CStr::bytes
787#[must_use = "iterators are lazy and do nothing unless consumed"]
788#[unstable(feature = "cstr_bytes", issue = "112115")]
789#[derive(Clone, Debug)]
790pub struct Bytes<'a> {
791 // since we know the string is nul-terminated, we only need one pointer
792 ptr: NonNull<u8>,
793 phantom: PhantomData<&'a [c_char]>,
794}
795
796#[unstable(feature = "cstr_bytes", issue = "112115")]
797unsafe impl Send for Bytes<'_> {}
798
799#[unstable(feature = "cstr_bytes", issue = "112115")]
800unsafe impl Sync for Bytes<'_> {}
801
802impl<'a> Bytes<'a> {
803 #[inline]
804 fn new(s: &'a CStr) -> Self {
805 Self { ptr: s.as_non_null_ptr().cast(), phantom: PhantomData }
806 }
807
808 #[inline]
809 fn is_empty(&self) -> bool {
810 // SAFETY: We uphold that the pointer is always valid to dereference
811 // by starting with a valid C string and then never incrementing beyond
812 // the nul terminator.
813 unsafe { self.ptr.read() == 0 }
814 }
815}
816
817#[unstable(feature = "cstr_bytes", issue = "112115")]
818impl Iterator for Bytes<'_> {
819 type Item = u8;
820
821 #[inline]
822 fn next(&mut self) -> Option<u8> {
823 // SAFETY: We only choose a pointer from a valid C string, which must
824 // be non-null and contain at least one value. Since we always stop at
825 // the nul terminator, which is guaranteed to exist, we can assume that
826 // the pointer is non-null and valid. This lets us safely dereference
827 // it and assume that adding 1 will create a new, non-null, valid
828 // pointer.
829 unsafe {
830 let ret = self.ptr.read();
831 if ret == 0 {
832 None
833 } else {
834 self.ptr = self.ptr.add(1);
835 Some(ret)
836 }
837 }
838 }
839
840 #[inline]
841 fn size_hint(&self) -> (usize, Option<usize>) {
842 if self.is_empty() { (0, Some(0)) } else { (1, None) }
843 }
844
845 #[inline]
846 fn count(self) -> usize {
847 // SAFETY: We always hold a valid pointer to a C string
848 unsafe { strlen(self.ptr.as_ptr().cast()) }
849 }
850}
851
852#[unstable(feature = "cstr_bytes", issue = "112115")]
853impl FusedIterator for Bytes<'_> {}