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
|
--- ext/os/lib.rs.orig 2023-01-13 13:12:37 UTC
+++ ext/os/lib.rs
@@ -3,6 +3,7 @@
use std::collections::HashMap;
use std::collections::HashSet;
use std::env;
+use std::path::PathBuf;
use std::sync::atomic::AtomicI32;
use std::sync::atomic::Ordering;
use std::sync::Arc;
@@ -155,7 +156,8 @@ pub enum OsError {
#[op2(stack_trace)]
#[string]
fn op_exec_path(state: &mut OpState) -> Result<String, OsError> {
- let current_exe = env::current_exe().unwrap();
+ let current_exe
+ = env::current_exe().unwrap_or_else(|_| PathBuf::from("LOCALBASE/bin/deno"));
state
.borrow_mut::<PermissionsContainer>()
.check_read_blind(¤t_exe, "exec_path", "Deno.execPath()")?;
@@ -668,6 +668,46 @@ fn rss() -> usize {
}
}
+#[cfg(target_os = "freebsd")]
+fn rss() -> usize {
+ // Uses FreeBSD's KERN_PROC_PID sysctl(2)
+ // to retrieve information about the current
+ // process, part of which is the RSS (ki_rssize)
+ let pid = unsafe { libc::getpid() };
+ // SAFETY: libc call (get system page size)
+ let pagesize = unsafe { libc::sysconf(libc::_SC_PAGESIZE) } as usize;
+ // KERN_PROC_PID returns a struct libc::kinfo_proc
+ let mut kinfoproc = std::mem::MaybeUninit::<libc::kinfo_proc>::uninit();
+ let mut size = std::mem::size_of_val(&kinfoproc) as libc::size_t;
+ let mut mib = [
+ libc::CTL_KERN,
+ libc::KERN_PROC,
+ libc::KERN_PROC_PID,
+ pid,
+ ];
+ // SAFETY: libc call, mib has been statically initialized,
+ // kinfoproc is a valid pointer to a libc::kinfo_proc struct
+ let res = unsafe {
+ libc::sysctl(
+ mib.as_mut_ptr(),
+ mib.len() as _,
+ kinfoproc.as_mut_ptr() as *mut libc::c_void,
+ &mut size,
+ std::ptr::null_mut(),
+ 0,
+ )
+ };
+
+ if res == 0 {
+ // SAFETY: sysctl returns 0 on success and kinfoproc is initialized
+ // ki_rssize contains size in pages -> multiply with pagesize to
+ // get size in bytes.
+ pagesize * unsafe { (*kinfoproc.as_mut_ptr()).ki_rssize as usize }
+ } else {
+ 0
+ }
+}
+
#[cfg(windows)]
fn rss() -> usize {
use winapi::shared::minwindef::DWORD;
|