]> git.lizzy.rs Git - rust.git/blob - library/std/src/sys/unix/os.rs
Rollup merge of #87428 - GuillaumeGomez:union-highlighting, r=notriddle
[rust.git] / library / std / src / sys / unix / os.rs
1 //! Implementation of `std::os` functionality for unix systems
2
3 #![allow(unused_imports)] // lots of cfg code here
4
5 #[cfg(all(test, target_env = "gnu"))]
6 mod tests;
7
8 use crate::os::unix::prelude::*;
9
10 use crate::error::Error as StdError;
11 use crate::ffi::{CStr, CString, OsStr, OsString};
12 use crate::fmt;
13 use crate::io;
14 use crate::iter;
15 use crate::mem;
16 use crate::path::{self, PathBuf};
17 use crate::ptr;
18 use crate::slice;
19 use crate::str;
20 use crate::sys::cvt;
21 use crate::sys::fd;
22 use crate::sys::memchr;
23 use crate::sys_common::rwlock::{StaticRWLock, StaticRWLockReadGuard};
24 use crate::vec;
25
26 #[cfg(all(target_env = "gnu", not(target_os = "vxworks")))]
27 use crate::sys::weak::weak;
28
29 use libc::{c_char, c_int, c_void};
30
31 const TMPBUF_SZ: usize = 128;
32
33 cfg_if::cfg_if! {
34     if #[cfg(target_os = "redox")] {
35         const PATH_SEPARATOR: u8 = b';';
36     } else {
37         const PATH_SEPARATOR: u8 = b':';
38     }
39 }
40
41 extern "C" {
42     #[cfg(not(any(target_os = "dragonfly", target_os = "vxworks")))]
43     #[cfg_attr(
44         any(
45             target_os = "linux",
46             target_os = "emscripten",
47             target_os = "fuchsia",
48             target_os = "l4re"
49         ),
50         link_name = "__errno_location"
51     )]
52     #[cfg_attr(
53         any(
54             target_os = "netbsd",
55             target_os = "openbsd",
56             target_os = "android",
57             target_os = "redox",
58             target_env = "newlib"
59         ),
60         link_name = "__errno"
61     )]
62     #[cfg_attr(any(target_os = "solaris", target_os = "illumos"), link_name = "___errno")]
63     #[cfg_attr(
64         any(target_os = "macos", target_os = "ios", target_os = "freebsd"),
65         link_name = "__error"
66     )]
67     #[cfg_attr(target_os = "haiku", link_name = "_errnop")]
68     fn errno_location() -> *mut c_int;
69 }
70
71 /// Returns the platform-specific value of errno
72 #[cfg(not(any(target_os = "dragonfly", target_os = "vxworks")))]
73 pub fn errno() -> i32 {
74     unsafe { (*errno_location()) as i32 }
75 }
76
77 /// Sets the platform-specific value of errno
78 #[cfg(all(not(target_os = "linux"), not(target_os = "dragonfly"), not(target_os = "vxworks")))] // needed for readdir and syscall!
79 #[allow(dead_code)] // but not all target cfgs actually end up using it
80 pub fn set_errno(e: i32) {
81     unsafe { *errno_location() = e as c_int }
82 }
83
84 #[cfg(target_os = "vxworks")]
85 pub fn errno() -> i32 {
86     unsafe { libc::errnoGet() }
87 }
88
89 #[cfg(target_os = "dragonfly")]
90 pub fn errno() -> i32 {
91     extern "C" {
92         #[thread_local]
93         static errno: c_int;
94     }
95
96     unsafe { errno as i32 }
97 }
98
99 #[cfg(target_os = "dragonfly")]
100 pub fn set_errno(e: i32) {
101     extern "C" {
102         #[thread_local]
103         static mut errno: c_int;
104     }
105
106     unsafe {
107         errno = e;
108     }
109 }
110
111 /// Gets a detailed string description for the given error number.
112 pub fn error_string(errno: i32) -> String {
113     extern "C" {
114         #[cfg_attr(any(target_os = "linux", target_env = "newlib"), link_name = "__xpg_strerror_r")]
115         fn strerror_r(errnum: c_int, buf: *mut c_char, buflen: libc::size_t) -> c_int;
116     }
117
118     let mut buf = [0 as c_char; TMPBUF_SZ];
119
120     let p = buf.as_mut_ptr();
121     unsafe {
122         if strerror_r(errno as c_int, p, buf.len()) < 0 {
123             panic!("strerror_r failure");
124         }
125
126         let p = p as *const _;
127         str::from_utf8(CStr::from_ptr(p).to_bytes()).unwrap().to_owned()
128     }
129 }
130
131 #[cfg(target_os = "espidf")]
132 pub fn getcwd() -> io::Result<PathBuf> {
133     Ok(PathBuf::from("/"))
134 }
135
136 #[cfg(not(target_os = "espidf"))]
137 pub fn getcwd() -> io::Result<PathBuf> {
138     let mut buf = Vec::with_capacity(512);
139     loop {
140         unsafe {
141             let ptr = buf.as_mut_ptr() as *mut libc::c_char;
142             if !libc::getcwd(ptr, buf.capacity()).is_null() {
143                 let len = CStr::from_ptr(buf.as_ptr() as *const libc::c_char).to_bytes().len();
144                 buf.set_len(len);
145                 buf.shrink_to_fit();
146                 return Ok(PathBuf::from(OsString::from_vec(buf)));
147             } else {
148                 let error = io::Error::last_os_error();
149                 if error.raw_os_error() != Some(libc::ERANGE) {
150                     return Err(error);
151                 }
152             }
153
154             // Trigger the internal buffer resizing logic of `Vec` by requiring
155             // more space than the current capacity.
156             let cap = buf.capacity();
157             buf.set_len(cap);
158             buf.reserve(1);
159         }
160     }
161 }
162
163 #[cfg(target_os = "espidf")]
164 pub fn chdir(p: &path::Path) -> io::Result<()> {
165     super::unsupported::unsupported()
166 }
167
168 #[cfg(not(target_os = "espidf"))]
169 pub fn chdir(p: &path::Path) -> io::Result<()> {
170     let p: &OsStr = p.as_ref();
171     let p = CString::new(p.as_bytes())?;
172     if unsafe { libc::chdir(p.as_ptr()) } != 0 {
173         return Err(io::Error::last_os_error());
174     }
175     Ok(())
176 }
177
178 pub struct SplitPaths<'a> {
179     iter: iter::Map<slice::Split<'a, u8, fn(&u8) -> bool>, fn(&'a [u8]) -> PathBuf>,
180 }
181
182 pub fn split_paths(unparsed: &OsStr) -> SplitPaths<'_> {
183     fn bytes_to_path(b: &[u8]) -> PathBuf {
184         PathBuf::from(<OsStr as OsStrExt>::from_bytes(b))
185     }
186     fn is_separator(b: &u8) -> bool {
187         *b == PATH_SEPARATOR
188     }
189     let unparsed = unparsed.as_bytes();
190     SplitPaths {
191         iter: unparsed
192             .split(is_separator as fn(&u8) -> bool)
193             .map(bytes_to_path as fn(&[u8]) -> PathBuf),
194     }
195 }
196
197 impl<'a> Iterator for SplitPaths<'a> {
198     type Item = PathBuf;
199     fn next(&mut self) -> Option<PathBuf> {
200         self.iter.next()
201     }
202     fn size_hint(&self) -> (usize, Option<usize>) {
203         self.iter.size_hint()
204     }
205 }
206
207 #[derive(Debug)]
208 pub struct JoinPathsError;
209
210 pub fn join_paths<I, T>(paths: I) -> Result<OsString, JoinPathsError>
211 where
212     I: Iterator<Item = T>,
213     T: AsRef<OsStr>,
214 {
215     let mut joined = Vec::new();
216
217     for (i, path) in paths.enumerate() {
218         let path = path.as_ref().as_bytes();
219         if i > 0 {
220             joined.push(PATH_SEPARATOR)
221         }
222         if path.contains(&PATH_SEPARATOR) {
223             return Err(JoinPathsError);
224         }
225         joined.extend_from_slice(path);
226     }
227     Ok(OsStringExt::from_vec(joined))
228 }
229
230 impl fmt::Display for JoinPathsError {
231     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
232         write!(f, "path segment contains separator `{}`", char::from(PATH_SEPARATOR))
233     }
234 }
235
236 impl StdError for JoinPathsError {
237     #[allow(deprecated)]
238     fn description(&self) -> &str {
239         "failed to join paths"
240     }
241 }
242
243 #[cfg(any(target_os = "freebsd", target_os = "dragonfly"))]
244 pub fn current_exe() -> io::Result<PathBuf> {
245     unsafe {
246         let mut mib = [
247             libc::CTL_KERN as c_int,
248             libc::KERN_PROC as c_int,
249             libc::KERN_PROC_PATHNAME as c_int,
250             -1 as c_int,
251         ];
252         let mut sz = 0;
253         cvt(libc::sysctl(
254             mib.as_mut_ptr(),
255             mib.len() as libc::c_uint,
256             ptr::null_mut(),
257             &mut sz,
258             ptr::null_mut(),
259             0,
260         ))?;
261         if sz == 0 {
262             return Err(io::Error::last_os_error());
263         }
264         let mut v: Vec<u8> = Vec::with_capacity(sz);
265         cvt(libc::sysctl(
266             mib.as_mut_ptr(),
267             mib.len() as libc::c_uint,
268             v.as_mut_ptr() as *mut libc::c_void,
269             &mut sz,
270             ptr::null_mut(),
271             0,
272         ))?;
273         if sz == 0 {
274             return Err(io::Error::last_os_error());
275         }
276         v.set_len(sz - 1); // chop off trailing NUL
277         Ok(PathBuf::from(OsString::from_vec(v)))
278     }
279 }
280
281 #[cfg(target_os = "netbsd")]
282 pub fn current_exe() -> io::Result<PathBuf> {
283     fn sysctl() -> io::Result<PathBuf> {
284         unsafe {
285             let mib = [libc::CTL_KERN, libc::KERN_PROC_ARGS, -1, libc::KERN_PROC_PATHNAME];
286             let mut path_len: usize = 0;
287             cvt(libc::sysctl(
288                 mib.as_ptr(),
289                 mib.len() as libc::c_uint,
290                 ptr::null_mut(),
291                 &mut path_len,
292                 ptr::null(),
293                 0,
294             ))?;
295             if path_len <= 1 {
296                 return Err(io::Error::new_const(
297                     io::ErrorKind::Uncategorized,
298                     &"KERN_PROC_PATHNAME sysctl returned zero-length string",
299                 ));
300             }
301             let mut path: Vec<u8> = Vec::with_capacity(path_len);
302             cvt(libc::sysctl(
303                 mib.as_ptr(),
304                 mib.len() as libc::c_uint,
305                 path.as_ptr() as *mut libc::c_void,
306                 &mut path_len,
307                 ptr::null(),
308                 0,
309             ))?;
310             path.set_len(path_len - 1); // chop off NUL
311             Ok(PathBuf::from(OsString::from_vec(path)))
312         }
313     }
314     fn procfs() -> io::Result<PathBuf> {
315         let curproc_exe = path::Path::new("/proc/curproc/exe");
316         if curproc_exe.is_file() {
317             return crate::fs::read_link(curproc_exe);
318         }
319         Err(io::Error::new_const(
320             io::ErrorKind::Uncategorized,
321             &"/proc/curproc/exe doesn't point to regular file.",
322         ))
323     }
324     sysctl().or_else(|_| procfs())
325 }
326
327 #[cfg(target_os = "openbsd")]
328 pub fn current_exe() -> io::Result<PathBuf> {
329     unsafe {
330         let mut mib = [libc::CTL_KERN, libc::KERN_PROC_ARGS, libc::getpid(), libc::KERN_PROC_ARGV];
331         let mib = mib.as_mut_ptr();
332         let mut argv_len = 0;
333         cvt(libc::sysctl(mib, 4, ptr::null_mut(), &mut argv_len, ptr::null_mut(), 0))?;
334         let mut argv = Vec::<*const libc::c_char>::with_capacity(argv_len as usize);
335         cvt(libc::sysctl(mib, 4, argv.as_mut_ptr() as *mut _, &mut argv_len, ptr::null_mut(), 0))?;
336         argv.set_len(argv_len as usize);
337         if argv[0].is_null() {
338             return Err(io::Error::new_const(
339                 io::ErrorKind::Uncategorized,
340                 &"no current exe available",
341             ));
342         }
343         let argv0 = CStr::from_ptr(argv[0]).to_bytes();
344         if argv0[0] == b'.' || argv0.iter().any(|b| *b == b'/') {
345             crate::fs::canonicalize(OsStr::from_bytes(argv0))
346         } else {
347             Ok(PathBuf::from(OsStr::from_bytes(argv0)))
348         }
349     }
350 }
351
352 #[cfg(any(target_os = "linux", target_os = "android", target_os = "emscripten"))]
353 pub fn current_exe() -> io::Result<PathBuf> {
354     match crate::fs::read_link("/proc/self/exe") {
355         Err(ref e) if e.kind() == io::ErrorKind::NotFound => Err(io::Error::new_const(
356             io::ErrorKind::Uncategorized,
357             &"no /proc/self/exe available. Is /proc mounted?",
358         )),
359         other => other,
360     }
361 }
362
363 #[cfg(any(target_os = "macos", target_os = "ios"))]
364 pub fn current_exe() -> io::Result<PathBuf> {
365     unsafe {
366         let mut sz: u32 = 0;
367         libc::_NSGetExecutablePath(ptr::null_mut(), &mut sz);
368         if sz == 0 {
369             return Err(io::Error::last_os_error());
370         }
371         let mut v: Vec<u8> = Vec::with_capacity(sz as usize);
372         let err = libc::_NSGetExecutablePath(v.as_mut_ptr() as *mut i8, &mut sz);
373         if err != 0 {
374             return Err(io::Error::last_os_error());
375         }
376         v.set_len(sz as usize - 1); // chop off trailing NUL
377         Ok(PathBuf::from(OsString::from_vec(v)))
378     }
379 }
380
381 #[cfg(any(target_os = "solaris", target_os = "illumos"))]
382 pub fn current_exe() -> io::Result<PathBuf> {
383     extern "C" {
384         fn getexecname() -> *const c_char;
385     }
386     unsafe {
387         let path = getexecname();
388         if path.is_null() {
389             Err(io::Error::last_os_error())
390         } else {
391             let filename = CStr::from_ptr(path).to_bytes();
392             let path = PathBuf::from(<OsStr as OsStrExt>::from_bytes(filename));
393
394             // Prepend a current working directory to the path if
395             // it doesn't contain an absolute pathname.
396             if filename[0] == b'/' { Ok(path) } else { getcwd().map(|cwd| cwd.join(path)) }
397         }
398     }
399 }
400
401 #[cfg(target_os = "haiku")]
402 pub fn current_exe() -> io::Result<PathBuf> {
403     unsafe {
404         let mut info: mem::MaybeUninit<libc::image_info> = mem::MaybeUninit::uninit();
405         let mut cookie: i32 = 0;
406         // the executable can be found at team id 0
407         let result = libc::_get_next_image_info(
408             0,
409             &mut cookie,
410             info.as_mut_ptr(),
411             mem::size_of::<libc::image_info>(),
412         );
413         if result != 0 {
414             use crate::io::ErrorKind;
415             Err(io::Error::new_const(ErrorKind::Uncategorized, &"Error getting executable path"))
416         } else {
417             let name = CStr::from_ptr((*info.as_ptr()).name.as_ptr()).to_bytes();
418             Ok(PathBuf::from(OsStr::from_bytes(name)))
419         }
420     }
421 }
422
423 #[cfg(target_os = "redox")]
424 pub fn current_exe() -> io::Result<PathBuf> {
425     crate::fs::read_to_string("sys:exe").map(PathBuf::from)
426 }
427
428 #[cfg(any(target_os = "fuchsia", target_os = "l4re"))]
429 pub fn current_exe() -> io::Result<PathBuf> {
430     use crate::io::ErrorKind;
431     Err(io::Error::new_const(ErrorKind::Unsupported, &"Not yet implemented!"))
432 }
433
434 #[cfg(target_os = "vxworks")]
435 pub fn current_exe() -> io::Result<PathBuf> {
436     #[cfg(test)]
437     use realstd::env;
438
439     #[cfg(not(test))]
440     use crate::env;
441
442     let exe_path = env::args().next().unwrap();
443     let path = path::Path::new(&exe_path);
444     path.canonicalize()
445 }
446
447 #[cfg(target_os = "espidf")]
448 pub fn current_exe() -> io::Result<PathBuf> {
449     super::unsupported::unsupported()
450 }
451
452 pub struct Env {
453     iter: vec::IntoIter<(OsString, OsString)>,
454 }
455
456 impl !Send for Env {}
457 impl !Sync for Env {}
458
459 impl Iterator for Env {
460     type Item = (OsString, OsString);
461     fn next(&mut self) -> Option<(OsString, OsString)> {
462         self.iter.next()
463     }
464     fn size_hint(&self) -> (usize, Option<usize>) {
465         self.iter.size_hint()
466     }
467 }
468
469 #[cfg(target_os = "macos")]
470 pub unsafe fn environ() -> *mut *const *const c_char {
471     extern "C" {
472         fn _NSGetEnviron() -> *mut *const *const c_char;
473     }
474     _NSGetEnviron()
475 }
476
477 #[cfg(not(target_os = "macos"))]
478 pub unsafe fn environ() -> *mut *const *const c_char {
479     extern "C" {
480         static mut environ: *const *const c_char;
481     }
482     ptr::addr_of_mut!(environ)
483 }
484
485 static ENV_LOCK: StaticRWLock = StaticRWLock::new();
486
487 pub fn env_read_lock() -> StaticRWLockReadGuard {
488     ENV_LOCK.read()
489 }
490
491 /// Returns a vector of (variable, value) byte-vector pairs for all the
492 /// environment variables of the current process.
493 pub fn env() -> Env {
494     unsafe {
495         let _guard = env_read_lock();
496         let mut environ = *environ();
497         let mut result = Vec::new();
498         if !environ.is_null() {
499             while !(*environ).is_null() {
500                 if let Some(key_value) = parse(CStr::from_ptr(*environ).to_bytes()) {
501                     result.push(key_value);
502                 }
503                 environ = environ.add(1);
504             }
505         }
506         return Env { iter: result.into_iter() };
507     }
508
509     fn parse(input: &[u8]) -> Option<(OsString, OsString)> {
510         // Strategy (copied from glibc): Variable name and value are separated
511         // by an ASCII equals sign '='. Since a variable name must not be
512         // empty, allow variable names starting with an equals sign. Skip all
513         // malformed lines.
514         if input.is_empty() {
515             return None;
516         }
517         let pos = memchr::memchr(b'=', &input[1..]).map(|p| p + 1);
518         pos.map(|p| {
519             (
520                 OsStringExt::from_vec(input[..p].to_vec()),
521                 OsStringExt::from_vec(input[p + 1..].to_vec()),
522             )
523         })
524     }
525 }
526
527 pub fn getenv(k: &OsStr) -> Option<OsString> {
528     // environment variables with a nul byte can't be set, so their value is
529     // always None as well
530     let k = CString::new(k.as_bytes()).ok()?;
531     unsafe {
532         let _guard = env_read_lock();
533         let s = libc::getenv(k.as_ptr()) as *const libc::c_char;
534         if s.is_null() {
535             None
536         } else {
537             Some(OsStringExt::from_vec(CStr::from_ptr(s).to_bytes().to_vec()))
538         }
539     }
540 }
541
542 pub fn setenv(k: &OsStr, v: &OsStr) -> io::Result<()> {
543     let k = CString::new(k.as_bytes())?;
544     let v = CString::new(v.as_bytes())?;
545
546     unsafe {
547         let _guard = ENV_LOCK.write();
548         cvt(libc::setenv(k.as_ptr(), v.as_ptr(), 1)).map(drop)
549     }
550 }
551
552 pub fn unsetenv(n: &OsStr) -> io::Result<()> {
553     let nbuf = CString::new(n.as_bytes())?;
554
555     unsafe {
556         let _guard = ENV_LOCK.write();
557         cvt(libc::unsetenv(nbuf.as_ptr())).map(drop)
558     }
559 }
560
561 #[cfg(not(target_os = "espidf"))]
562 pub fn page_size() -> usize {
563     unsafe { libc::sysconf(libc::_SC_PAGESIZE) as usize }
564 }
565
566 pub fn temp_dir() -> PathBuf {
567     crate::env::var_os("TMPDIR").map(PathBuf::from).unwrap_or_else(|| {
568         if cfg!(target_os = "android") {
569             PathBuf::from("/data/local/tmp")
570         } else {
571             PathBuf::from("/tmp")
572         }
573     })
574 }
575
576 pub fn home_dir() -> Option<PathBuf> {
577     return crate::env::var_os("HOME").or_else(|| unsafe { fallback() }).map(PathBuf::from);
578
579     #[cfg(any(
580         target_os = "android",
581         target_os = "ios",
582         target_os = "emscripten",
583         target_os = "redox",
584         target_os = "vxworks",
585         target_os = "espidf"
586     ))]
587     unsafe fn fallback() -> Option<OsString> {
588         None
589     }
590     #[cfg(not(any(
591         target_os = "android",
592         target_os = "ios",
593         target_os = "emscripten",
594         target_os = "redox",
595         target_os = "vxworks",
596         target_os = "espidf"
597     )))]
598     unsafe fn fallback() -> Option<OsString> {
599         let amt = match libc::sysconf(libc::_SC_GETPW_R_SIZE_MAX) {
600             n if n < 0 => 512 as usize,
601             n => n as usize,
602         };
603         let mut buf = Vec::with_capacity(amt);
604         let mut passwd: libc::passwd = mem::zeroed();
605         let mut result = ptr::null_mut();
606         match libc::getpwuid_r(
607             libc::getuid(),
608             &mut passwd,
609             buf.as_mut_ptr(),
610             buf.capacity(),
611             &mut result,
612         ) {
613             0 if !result.is_null() => {
614                 let ptr = passwd.pw_dir as *const _;
615                 let bytes = CStr::from_ptr(ptr).to_bytes().to_vec();
616                 Some(OsStringExt::from_vec(bytes))
617             }
618             _ => None,
619         }
620     }
621 }
622
623 pub fn exit(code: i32) -> ! {
624     unsafe { libc::exit(code as c_int) }
625 }
626
627 pub fn getpid() -> u32 {
628     unsafe { libc::getpid() as u32 }
629 }
630
631 pub fn getppid() -> u32 {
632     unsafe { libc::getppid() as u32 }
633 }
634
635 #[cfg(all(target_env = "gnu", not(target_os = "vxworks")))]
636 pub fn glibc_version() -> Option<(usize, usize)> {
637     if let Some(Ok(version_str)) = glibc_version_cstr().map(CStr::to_str) {
638         parse_glibc_version(version_str)
639     } else {
640         None
641     }
642 }
643
644 #[cfg(all(target_env = "gnu", not(target_os = "vxworks")))]
645 fn glibc_version_cstr() -> Option<&'static CStr> {
646     weak! {
647         fn gnu_get_libc_version() -> *const libc::c_char
648     }
649     if let Some(f) = gnu_get_libc_version.get() {
650         unsafe { Some(CStr::from_ptr(f())) }
651     } else {
652         None
653     }
654 }
655
656 // Returns Some((major, minor)) if the string is a valid "x.y" version,
657 // ignoring any extra dot-separated parts. Otherwise return None.
658 #[cfg(all(target_env = "gnu", not(target_os = "vxworks")))]
659 fn parse_glibc_version(version: &str) -> Option<(usize, usize)> {
660     let mut parsed_ints = version.split('.').map(str::parse::<usize>).fuse();
661     match (parsed_ints.next(), parsed_ints.next()) {
662         (Some(Ok(major)), Some(Ok(minor))) => Some((major, minor)),
663         _ => None,
664     }
665 }