Skip to content

Commit cbe7392

Browse files
committed
Use c"lit" for CStrings without unwrap
1 parent 3bff51e commit cbe7392

File tree

14 files changed

+38
-49
lines changed

14 files changed

+38
-49
lines changed

compiler/rustc_codegen_llvm/src/back/lto.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ fn prepare_lto(
148148
// __llvm_profile_counter_bias is pulled in at link time by an undefined reference to
149149
// __llvm_profile_runtime, therefore we won't know until link time if this symbol
150150
// should have default visibility.
151-
symbols_below_threshold.push(CString::new("__llvm_profile_counter_bias").unwrap());
151+
symbols_below_threshold.push(c"__llvm_profile_counter_bias".to_owned());
152152
Ok((symbols_below_threshold, upstream_modules))
153153
}
154154

compiler/rustc_codegen_llvm/src/back/write.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ fn get_pgo_sample_use_path(config: &ModuleConfig) -> Option<CString> {
509509
}
510510

511511
fn get_instr_profile_output_path(config: &ModuleConfig) -> Option<CString> {
512-
config.instrument_coverage.then(|| CString::new("default_%m_%p.profraw").unwrap())
512+
config.instrument_coverage.then(|| c"default_%m_%p.profraw".to_owned())
513513
}
514514

515515
pub(crate) unsafe fn llvm_optimize(

compiler/rustc_error_codes/src/error_codes/E0060.md

+4-9
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,19 @@ unsafe { printf(); } // error!
1515
Using this declaration, it must be called with at least one argument, so
1616
simply calling `printf()` is invalid. But the following uses are allowed:
1717

18-
```
18+
```rust,edition2021
1919
# use std::os::raw::{c_char, c_int};
2020
# #[cfg_attr(all(windows, target_env = "msvc"),
2121
# link(name = "legacy_stdio_definitions",
2222
# kind = "static", modifiers = "-bundle"))]
2323
# extern "C" { fn printf(_: *const c_char, ...) -> c_int; }
2424
# fn main() {
2525
unsafe {
26-
use std::ffi::CString;
27-
28-
let fmt = CString::new("test\n").unwrap();
29-
printf(fmt.as_ptr());
26+
printf(c"test\n".as_ptr());
3027
31-
let fmt = CString::new("number = %d\n").unwrap();
32-
printf(fmt.as_ptr(), 3);
28+
printf(c"number = %d\n".as_ptr(), 3);
3329
34-
let fmt = CString::new("%d, %d\n").unwrap();
35-
printf(fmt.as_ptr(), 10, 5);
30+
printf(c"%d, %d\n".as_ptr(), 10, 5);
3631
}
3732
# }
3833
```

library/alloc/src/ffi/c_str.rs

+15-17
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ impl CString {
384384
/// fn some_extern_function(s: *mut c_char);
385385
/// }
386386
///
387-
/// let c_string = CString::new("Hello!").expect("CString::new failed");
387+
/// let c_string = CString::from(c"Hello!");
388388
/// let raw = c_string.into_raw();
389389
/// unsafe {
390390
/// some_extern_function(raw);
@@ -429,7 +429,7 @@ impl CString {
429429
/// ```
430430
/// use std::ffi::CString;
431431
///
432-
/// let c_string = CString::new("foo").expect("CString::new failed");
432+
/// let c_string = CString::from(c"foo");
433433
///
434434
/// let ptr = c_string.into_raw();
435435
///
@@ -487,7 +487,7 @@ impl CString {
487487
/// ```
488488
/// use std::ffi::CString;
489489
///
490-
/// let c_string = CString::new("foo").expect("CString::new failed");
490+
/// let c_string = CString::from(c"foo");
491491
/// let bytes = c_string.into_bytes();
492492
/// assert_eq!(bytes, vec![b'f', b'o', b'o']);
493493
/// ```
@@ -508,7 +508,7 @@ impl CString {
508508
/// ```
509509
/// use std::ffi::CString;
510510
///
511-
/// let c_string = CString::new("foo").expect("CString::new failed");
511+
/// let c_string = CString::from(c"foo");
512512
/// let bytes = c_string.into_bytes_with_nul();
513513
/// assert_eq!(bytes, vec![b'f', b'o', b'o', b'\0']);
514514
/// ```
@@ -530,7 +530,7 @@ impl CString {
530530
/// ```
531531
/// use std::ffi::CString;
532532
///
533-
/// let c_string = CString::new("foo").expect("CString::new failed");
533+
/// let c_string = CString::from(c"foo");
534534
/// let bytes = c_string.as_bytes();
535535
/// assert_eq!(bytes, &[b'f', b'o', b'o']);
536536
/// ```
@@ -550,7 +550,7 @@ impl CString {
550550
/// ```
551551
/// use std::ffi::CString;
552552
///
553-
/// let c_string = CString::new("foo").expect("CString::new failed");
553+
/// let c_string = CString::from(c"foo");
554554
/// let bytes = c_string.as_bytes_with_nul();
555555
/// assert_eq!(bytes, &[b'f', b'o', b'o', b'\0']);
556556
/// ```
@@ -568,7 +568,7 @@ impl CString {
568568
/// ```
569569
/// use std::ffi::{CString, CStr};
570570
///
571-
/// let c_string = CString::new(b"foo".to_vec()).expect("CString::new failed");
571+
/// let c_string = CString::from(c"foo");
572572
/// let cstr = c_string.as_c_str();
573573
/// assert_eq!(cstr,
574574
/// CStr::from_bytes_with_nul(b"foo\0").expect("CStr::from_bytes_with_nul failed"));
@@ -586,12 +586,9 @@ impl CString {
586586
/// # Examples
587587
///
588588
/// ```
589-
/// use std::ffi::{CString, CStr};
590-
///
591-
/// let c_string = CString::new(b"foo".to_vec()).expect("CString::new failed");
589+
/// let c_string = c"foo".to_owned();
592590
/// let boxed = c_string.into_boxed_c_str();
593-
/// assert_eq!(&*boxed,
594-
/// CStr::from_bytes_with_nul(b"foo\0").expect("CStr::from_bytes_with_nul failed"));
591+
/// assert_eq!(boxed.to_bytes_with_nul(), b"foo\0");
595592
/// ```
596593
#[must_use = "`self` will be dropped if the result is not used"]
597594
#[stable(feature = "into_boxed_c_str", since = "1.20.0")]
@@ -658,7 +655,7 @@ impl CString {
658655
/// assert_eq!(
659656
/// CString::from_vec_with_nul(b"abc\0".to_vec())
660657
/// .expect("CString::from_vec_with_nul failed"),
661-
/// CString::new(b"abc".to_vec()).expect("CString::new failed")
658+
/// c"abc".to_owned()
662659
/// );
663660
/// ```
664661
///
@@ -1168,11 +1165,12 @@ impl CStr {
11681165
/// # Examples
11691166
///
11701167
/// ```
1171-
/// use std::ffi::CString;
1168+
/// use std::ffi::{CStr, CString};
11721169
///
1173-
/// let c_string = CString::new(b"foo".to_vec()).expect("CString::new failed");
1174-
/// let boxed = c_string.into_boxed_c_str();
1175-
/// assert_eq!(boxed.into_c_string(), CString::new("foo").expect("CString::new failed"));
1170+
/// let boxed: Box<CStr> = Box::from(c"foo");
1171+
/// let c_string: CString = c"foo".to_owned();
1172+
///
1173+
/// assert_eq!(boxed.into_c_string(), c_string);
11761174
/// ```
11771175
#[rustc_allow_incoherent_impl]
11781176
#[must_use = "`self` will be dropped if the result is not used"]

library/alloc/src/ffi/c_str/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ fn boxed_default() {
159159

160160
#[test]
161161
fn test_c_str_clone_into() {
162-
let mut c_string = CString::new("lorem").unwrap();
162+
let mut c_string = c"lorem".to_owned();
163163
let c_ptr = c_string.as_ptr();
164164
let c_str = CStr::from_bytes_with_nul(b"ipsum\0").unwrap();
165165
c_str.clone_into(&mut c_string);

library/alloc/src/rc/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ fn test_unsized() {
349349
#[test]
350350
fn test_maybe_thin_unsized() {
351351
// If/when custom thin DSTs exist, this test should be updated to use one
352-
use std::ffi::{CStr, CString};
352+
use std::ffi::CStr;
353353

354-
let x: Rc<CStr> = Rc::from(CString::new("swordfish").unwrap().into_boxed_c_str());
354+
let x: Rc<CStr> = Rc::from(c"swordfish");
355355
assert_eq!(format!("{x:?}"), "\"swordfish\"");
356356
let y: Weak<CStr> = Rc::downgrade(&x);
357357
drop(x);

library/alloc/src/sync/tests.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,9 @@ fn test_unsized() {
412412
#[test]
413413
fn test_maybe_thin_unsized() {
414414
// If/when custom thin DSTs exist, this test should be updated to use one
415-
use std::ffi::{CStr, CString};
415+
use std::ffi::CStr;
416416

417-
let x: Arc<CStr> = Arc::from(CString::new("swordfish").unwrap().into_boxed_c_str());
417+
let x: Arc<CStr> = Arc::from(c"swordfish");
418418
assert_eq!(format!("{x:?}"), "\"swordfish\"");
419419
let y: Weak<CStr> = Arc::downgrade(&x);
420420
drop(x);

library/std/src/sys/pal/unix/process/process_common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ impl Command {
393393
fn os2c(s: &OsStr, saw_nul: &mut bool) -> CString {
394394
CString::new(s.as_bytes()).unwrap_or_else(|_e| {
395395
*saw_nul = true;
396-
CString::new("<string-with-nul>").unwrap()
396+
c"<string-with-nul>".to_owned()
397397
})
398398
}
399399

src/tools/miri/tests/pass-dep/libc/libc-fs-symlink.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,8 @@ fn test_readlink() {
4747
assert_eq!(res, small_buf.len() as isize);
4848

4949
// Test that we report a proper error for a missing path.
50-
let bad_path = CString::new("MIRI_MISSING_FILE_NAME").unwrap();
5150
let res = unsafe {
52-
libc::readlink(bad_path.as_ptr(), small_buf.as_mut_ptr().cast(), small_buf.len())
51+
libc::readlink(c"MIRI_MISSING_FILE_NAME".as_ptr(), small_buf.as_mut_ptr().cast(), small_buf.len())
5352
};
5453
assert_eq!(res, -1);
5554
assert_eq!(Error::last_os_error().kind(), ErrorKind::NotFound);

src/tools/miri/tests/pass-dep/libc/libc-fs-with-isolation.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
//@compile-flags: -Zmiri-isolation-error=warn-nobacktrace
33
//@normalize-stderr-test: "(stat(x)?)" -> "$$STAT"
44

5-
use std::ffi::CString;
65
use std::fs;
76
use std::io::{Error, ErrorKind};
87

@@ -13,10 +12,9 @@ fn main() {
1312
}
1413

1514
// test `readlink`
16-
let symlink_c_str = CString::new("foo.txt").unwrap();
1715
let mut buf = vec![0; "foo_link.txt".len() + 1];
1816
unsafe {
19-
assert_eq!(libc::readlink(symlink_c_str.as_ptr(), buf.as_mut_ptr(), buf.len()), -1);
17+
assert_eq!(libc::readlink(c"foo.txt".as_ptr(), buf.as_mut_ptr(), buf.len()), -1);
2018
assert_eq!(Error::last_os_error().raw_os_error(), Some(libc::EACCES));
2119
}
2220

src/tools/miri/tests/pass-dep/libc/libc-mem.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ fn test_memcpy() {
5555
}
5656

5757
fn test_strcpy() {
58-
use std::ffi::{CStr, CString};
58+
use std::ffi::CStr;
5959

6060
// case: src_size equals dest_size
6161
unsafe {
62-
let src = CString::new("rust").unwrap();
63-
let size = src.as_bytes_with_nul().len();
62+
let src = c"rust";
63+
let size = src.to_bytes_with_nul().len();
6464
let dest = libc::malloc(size);
6565
libc::strcpy(dest as *mut libc::c_char, src.as_ptr());
6666
assert_eq!(CStr::from_ptr(dest as *const libc::c_char), src.as_ref());
@@ -69,8 +69,8 @@ fn test_strcpy() {
6969

7070
// case: src_size is less than dest_size
7171
unsafe {
72-
let src = CString::new("rust").unwrap();
73-
let size = src.as_bytes_with_nul().len();
72+
let src = c"rust";
73+
let size = src.to_bytes_with_nul().len();
7474
let dest = libc::malloc(size + 1);
7575
libc::strcpy(dest as *mut libc::c_char, src.as_ptr());
7676
assert_eq!(CStr::from_ptr(dest as *const libc::c_char), src.as_ref());

src/tools/rust-analyzer/crates/profile/src/memory_usage.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ fn memusage_linux() -> MemoryUsage {
6969

7070
let mut mallinfo2 = MALLINFO2.load(Ordering::Relaxed);
7171
if mallinfo2 == 1 {
72-
let cstr = CStr::from_bytes_with_nul(b"mallinfo2\0").unwrap();
73-
mallinfo2 = unsafe { libc::dlsym(libc::RTLD_DEFAULT, cstr.as_ptr()) } as usize;
72+
mallinfo2 = unsafe { libc::dlsym(libc::RTLD_DEFAULT, c"mallinfo2".as_ptr()) } as usize;
7473
// NB: races don't matter here, since they'll always store the same value
7574
MALLINFO2.store(mallinfo2, Ordering::Relaxed);
7675
}

tests/run-make/libtest-thread-limit/rmake.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fn main() {
3838
// If the process ID is 0, this is the child process responsible for running the test
3939
// program.
4040
if pid == 0 {
41-
let test = CString::new("test").unwrap();
41+
let test = c"test";
4242
// The argv array should be terminated with a NULL pointer.
4343
let argv = [test.as_ptr(), std::ptr::null()];
4444
// rlim_cur is soft limit, rlim_max is hard limit.

tests/ui/process/env-funky-keys.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//@ run-pass
2+
//@ edition: 2021
23
// Ignore this test on Android, because it segfaults there.
34

45
//@ ignore-android
@@ -32,10 +33,9 @@ fn main() {
3233
.unwrap()
3334
.as_os_str()
3435
.as_bytes()).unwrap();
35-
let new_env_var = CString::new("FOOBAR").unwrap();
3636
let filename: *const c_char = current_exe.as_ptr();
3737
let argv: &[*const c_char] = &[filename, filename, ptr::null()];
38-
let envp: &[*const c_char] = &[new_env_var.as_ptr(), ptr::null()];
38+
let envp: &[*const c_char] = &[c"FOOBAR".as_ptr(), ptr::null()];
3939
unsafe {
4040
execve(filename, &argv[0], &envp[0]);
4141
}

0 commit comments

Comments
 (0)