-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Expand file tree
/
Copy pathprocess.rs
More file actions
574 lines (509 loc) · 15.8 KB
/
process.rs
File metadata and controls
574 lines (509 loc) · 15.8 KB
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
// Copyright 2018-2026 the Deno authors. MIT license.
use deno_core::OpState;
use deno_core::op2;
use deno_core::v8;
use deno_permissions::PermissionCheckError;
use deno_permissions::PermissionsContainer;
#[cfg(unix)]
use nix::unistd::Gid;
#[cfg(unix)]
use nix::unistd::Group;
#[cfg(unix)]
use nix::unistd::Uid;
#[cfg(unix)]
use nix::unistd::User;
use crate::ExtNodeSys;
// --- process.title support ---
//
// The argv buffer overwrite technique used here is the standard approach for
// setting the process title visible in `ps`. This is the same technique used by
// Node.js (via libuv's uv_setup_args/uv_set_process_title), nginx, PostgreSQL,
// and many other programs. The OS allocates argv as a contiguous buffer; we
// save its bounds at startup, then overwrite it with the new title.
//
// References:
// - libuv: https://github.com/libuv/libuv/blob/v1.x/src/unix/proctitle.c
// - Node.js: uses uv_setup_args() in node_main.cc, uv_set_process_title() in node.cc
#[cfg(target_os = "linux")]
mod argv_store {
use std::ffi::c_char;
use std::ffi::c_int;
use std::sync::Once;
static mut ARGV_PTR: *mut *mut c_char = std::ptr::null_mut();
static mut ARGV_BUF_SIZE: usize = 0;
static INIT: Once = Once::new();
/// # Safety
/// Called from `.init_array` before main. Must only store the pointers.
pub unsafe fn save(argc: c_int, argv: *mut *mut c_char) {
INIT.call_once(|| {
if argv.is_null() || argc <= 0 {
return;
}
let argc = argc as usize;
// SAFETY: argv is valid and has argc entries (guaranteed by the OS loader).
unsafe {
// Calculate the contiguous buffer size from argv[0] to end of argv[argc-1]
let start = (*argv) as *const u8;
let last_arg = *argv.add(argc - 1);
let last_arg_len = libc::strlen(last_arg);
let end = last_arg.add(last_arg_len + 1) as *const u8;
let buf_size = end.offset_from(start) as usize;
ARGV_PTR = argv;
ARGV_BUF_SIZE = buf_size;
}
});
}
/// # Safety
/// The stored argv pointer must still be valid (it always is for the process lifetime).
pub unsafe fn overwrite(title: &str) {
// SAFETY: ARGV_PTR and ARGV_BUF_SIZE are set once in save() and remain
// valid for the process lifetime. The buffer at *ARGV_PTR is the original
// argv[0] area allocated by the OS.
unsafe {
if ARGV_PTR.is_null() || ARGV_BUF_SIZE == 0 {
return;
}
let buf =
std::slice::from_raw_parts_mut(*ARGV_PTR as *mut u8, ARGV_BUF_SIZE);
let title_bytes = title.as_bytes();
let copy_len = title_bytes.len().min(ARGV_BUF_SIZE - 1);
buf[..copy_len].copy_from_slice(&title_bytes[..copy_len]);
buf[copy_len..].fill(0);
}
}
}
#[cfg(target_os = "linux")]
#[used]
#[unsafe(link_section = ".init_array")]
static ARGV_INIT: unsafe extern "C" fn(
libc::c_int,
*mut *mut libc::c_char,
*mut *mut libc::c_char,
) = {
unsafe extern "C" fn init(
argc: libc::c_int,
argv: *mut *mut libc::c_char,
_envp: *mut *mut libc::c_char,
) {
// SAFETY: argc and argv are provided by the OS at process init and are valid.
unsafe { argv_store::save(argc, argv) };
}
init
};
#[cfg(target_os = "macos")]
fn set_process_title(title: &str) {
// SAFETY: We call macOS-specific C functions to read and overwrite the
// process argv buffer in place. The argv pointer and argc count come from
// the OS and are valid for the lifetime of the process. We bounds-check
// before writing and null-terminate the buffer.
unsafe {
unsafe extern "C" {
fn _NSGetArgc() -> *mut libc::c_int;
fn _NSGetArgv() -> *mut *mut *mut libc::c_char;
}
let argc = *_NSGetArgc() as usize;
let argv = *_NSGetArgv();
if argv.is_null() || argc == 0 {
return;
}
// Calculate contiguous buffer size from argv[0] through argv[argc-1]
let start = *argv as *const u8;
let last_arg = *argv.add(argc - 1);
let last_arg_len = libc::strlen(last_arg);
let end = last_arg.add(last_arg_len + 1) as *const u8;
let buf_size = end.offset_from(start) as usize;
// Overwrite argv[0] buffer with the new title
let buf = std::slice::from_raw_parts_mut(*argv as *mut u8, buf_size);
let title_bytes = title.as_bytes();
let copy_len = title_bytes.len().min(buf_size - 1);
buf[..copy_len].copy_from_slice(&title_bytes[..copy_len]);
buf[copy_len..].fill(0);
// Also set the pthread name (visible in Activity Monitor / debugger, 63 char limit)
let c_title =
std::ffi::CString::new(&title.as_bytes()[..title.len().min(63)]);
if let Ok(c_title) = c_title {
libc::pthread_setname_np(c_title.as_ptr());
}
}
}
#[cfg(target_os = "linux")]
fn set_process_title(title: &str) {
// SAFETY: We overwrite the saved argv buffer with the new title via
// argv_store, then call prctl to set the kernel thread name.
unsafe {
argv_store::overwrite(title);
// Also set the kernel thread name via prctl (15 char limit, visible in /proc/self/comm)
let truncated = &title.as_bytes()[..title.len().min(15)];
if let Ok(c_title) = std::ffi::CString::new(truncated) {
libc::prctl(libc::PR_SET_NAME, c_title.as_ptr() as libc::c_ulong);
}
}
}
#[cfg(target_os = "windows")]
fn set_process_title(title: &str) {
let wide: Vec<u16> = title.encode_utf16().chain(std::iter::once(0)).collect();
// SAFETY: FFI call, wide is null-terminated
unsafe {
winapi::um::wincon::SetConsoleTitleW(wide.as_ptr());
}
}
#[cfg(not(any(
target_os = "macos",
target_os = "linux",
target_os = "windows"
)))]
fn set_process_title(_title: &str) {
// No-op on unsupported platforms
}
#[op2(fast)]
pub fn op_node_process_set_title(#[string] title: &str) {
set_process_title(title);
}
#[derive(Debug, thiserror::Error, deno_error::JsError)]
pub enum ProcessError {
#[class(inherit)]
#[error(transparent)]
Permission(
#[from]
#[inherit]
PermissionCheckError,
),
#[class(generic)]
#[error("{0} identifier does not exist: {1}")]
#[property("code" = "ERR_UNKNOWN_CREDENTIAL")]
UnknownCredential(String, String),
#[class(inherit)]
#[error(transparent)]
Io(#[from] std::io::Error),
#[class(generic)]
#[error("Operation not supported on this platform")]
NotSupported,
#[class(type)]
#[error("Invalid {0} parameter")]
InvalidParam(String),
}
#[cfg(unix)]
impl From<nix::Error> for ProcessError {
fn from(err: nix::Error) -> Self {
ProcessError::Io(std::io::Error::from_raw_os_error(err as i32))
}
}
#[cfg(unix)]
fn kill(pid: i32, sig: i32) -> i32 {
// SAFETY: FFI call to libc
if unsafe { libc::kill(pid, sig) } < 0 {
std::io::Error::last_os_error().raw_os_error().unwrap()
} else {
0
}
}
#[cfg(not(unix))]
fn kill(pid: i32, _sig: i32) -> i32 {
match deno_subprocess_windows::process_kill(pid, _sig) {
Ok(_) => 0,
Err(e) => e.as_uv_error(),
}
}
#[op2(fast, stack_trace)]
pub fn op_node_process_kill(
state: &mut OpState,
#[smi] pid: i32,
#[smi] sig: i32,
) -> Result<i32, deno_permissions::PermissionCheckError> {
state
.borrow_mut::<PermissionsContainer>()
.check_run_all("process.kill")?;
Ok(kill(pid, sig))
}
#[op2(fast)]
pub fn op_process_abort() {
std::process::abort();
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
enum Id {
Number(u32),
Name(String),
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
fn get_group_id(name: &str) -> Result<Gid, ProcessError> {
let group = Group::from_name(name)?;
if let Some(group) = group {
Ok(group.gid)
} else {
Err(ProcessError::UnknownCredential(
"Group".to_string(),
name.to_string(),
))
}
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
fn serialize_id<'a>(
scope: &mut v8::PinScope<'a, '_>,
value: v8::Local<'a, v8::Value>,
) -> Result<Id, ProcessError> {
if value.is_number() {
let num = value.uint32_value(scope).unwrap();
return Ok(Id::Number(num));
}
if value.is_string() {
let name = value.to_string(scope).unwrap();
return Ok(Id::Name(name.to_rust_string_lossy(scope)));
}
Err(ProcessError::InvalidParam("id".to_string()))
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
#[op2(fast, stack_trace)]
pub fn op_node_process_setegid<'a>(
scope: &mut v8::PinScope<'a, '_>,
state: &mut OpState,
id: v8::Local<'a, v8::Value>,
) -> Result<(), ProcessError> {
{
let permissions = state.borrow_mut::<PermissionsContainer>();
permissions.check_sys("setegid", "node:process.setegid")?;
}
let gid = match serialize_id(scope, id)? {
Id::Number(number) => Gid::from_raw(number),
Id::Name(name) => get_group_id(&name)?,
};
nix::unistd::setegid(gid)?;
Ok(())
}
#[cfg(any(target_os = "android", target_os = "windows"))]
#[op2(fast, stack_trace)]
pub fn op_node_process_setegid(
_scope: &mut v8::PinScope<'_, '_>,
_state: &mut OpState,
_id: v8::Local<'_, v8::Value>,
) -> Result<(), ProcessError> {
Err(ProcessError::NotSupported)
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
fn get_user_id(name: &str) -> Result<Uid, ProcessError> {
let user = User::from_name(name)?;
if let Some(user) = user {
Ok(user.uid)
} else {
Err(ProcessError::UnknownCredential(
"User".to_string(),
name.to_string(),
))
}
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
#[op2(fast, stack_trace)]
pub fn op_node_process_seteuid<'a>(
scope: &mut v8::PinScope<'a, '_>,
state: &mut OpState,
id: v8::Local<'a, v8::Value>,
) -> Result<(), ProcessError> {
{
let permissions = state.borrow_mut::<PermissionsContainer>();
permissions.check_sys("seteuid", "node:process.seteuid")?;
}
let uid = match serialize_id(scope, id)? {
Id::Number(number) => Uid::from_raw(number),
Id::Name(name) => get_user_id(&name)?,
};
nix::unistd::seteuid(uid)?;
Ok(())
}
#[cfg(any(target_os = "android", target_os = "windows"))]
#[op2(fast, stack_trace)]
pub fn op_node_process_seteuid(
_scope: &mut v8::PinScope<'_, '_>,
_state: &mut OpState,
_id: v8::Local<'_, v8::Value>,
) -> Result<(), ProcessError> {
Err(ProcessError::NotSupported)
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
#[op2(fast, stack_trace)]
pub fn op_node_process_setgid<'a>(
scope: &mut v8::PinScope<'a, '_>,
state: &mut OpState,
id: v8::Local<'a, v8::Value>,
) -> Result<(), ProcessError> {
{
let permissions = state.borrow_mut::<PermissionsContainer>();
permissions.check_sys("setgid", "node:process.setgid")?;
}
let gid = match serialize_id(scope, id)? {
Id::Number(number) => Gid::from_raw(number),
Id::Name(name) => get_group_id(&name)?,
};
nix::unistd::setgid(gid)?;
Ok(())
}
#[cfg(any(target_os = "android", target_os = "windows"))]
#[op2(fast, stack_trace)]
pub fn op_node_process_setgid(
_scope: &mut v8::PinScope<'_, '_>,
_state: &mut OpState,
_id: v8::Local<'_, v8::Value>,
) -> Result<(), ProcessError> {
Err(ProcessError::NotSupported)
}
#[cfg(not(any(target_os = "android", target_os = "windows")))]
#[op2(fast, stack_trace)]
pub fn op_node_process_setuid<'a>(
scope: &mut v8::PinScope<'a, '_>,
state: &mut OpState,
id: v8::Local<'a, v8::Value>,
) -> Result<(), ProcessError> {
{
let permissions = state.borrow_mut::<PermissionsContainer>();
permissions.check_sys("setuid", "node:process.setuid")?;
}
let uid = match serialize_id(scope, id)? {
Id::Number(number) => Uid::from_raw(number),
Id::Name(name) => get_user_id(&name)?,
};
nix::unistd::setuid(uid)?;
Ok(())
}
#[cfg(any(target_os = "android", target_os = "windows"))]
#[op2(fast, stack_trace)]
pub fn op_node_process_setuid(
_scope: &mut v8::PinScope<'_, '_>,
_state: &mut OpState,
_id: v8::Local<'_, v8::Value>,
) -> Result<(), ProcessError> {
Err(ProcessError::NotSupported)
}
/// Returns the cgroup-constrained memory limit, or 0 if unconstrained.
/// This matches Node.js `process.constrainedMemory()` semantics.
#[op2(fast)]
#[number]
pub fn op_node_process_constrained_memory<TSys: ExtNodeSys + 'static>(
state: &mut OpState,
) -> u64 {
#[cfg(any(target_os = "android", target_os = "linux"))]
{
let sys = state.borrow::<TSys>();
cgroup::cgroup_memory_limit(sys).unwrap_or(0)
}
#[cfg(not(any(target_os = "android", target_os = "linux")))]
{
let _ = state;
0
}
}
#[cfg(any(target_os = "android", target_os = "linux"))]
pub mod cgroup {
pub enum CgroupVersion<'a> {
V1 { cgroup_relpath: &'a str },
V2 { cgroup_relpath: &'a str },
None,
}
pub fn parse_self_cgroup(self_cgroup_content: &str) -> CgroupVersion<'_> {
let mut cgroup_version = CgroupVersion::None;
for line in self_cgroup_content.lines() {
let split = line.split(":").collect::<Vec<_>>();
match &split[..] {
// cgroup v1 memory controller — takes priority, break immediately
[_, "memory", cgroup_v1_relpath] => {
cgroup_version = CgroupVersion::V1 {
cgroup_relpath: cgroup_v1_relpath
.strip_prefix("/")
.unwrap_or(cgroup_v1_relpath),
};
break;
}
// cgroup v2 (but keep looking for v1 memory in hybrid mode)
["0", "", cgroup_v2_relpath] => {
cgroup_version = CgroupVersion::V2 {
cgroup_relpath: cgroup_v2_relpath
.strip_prefix("/")
.unwrap_or(cgroup_v2_relpath),
};
}
_ => {}
}
}
cgroup_version
}
/// Read the cgroup memory limit from the filesystem.
/// Returns `None` if cgroup info cannot be read or parsed.
pub fn cgroup_memory_limit<TSys: sys_traits::FsRead>(
sys: &TSys,
) -> Option<u64> {
let self_cgroup = sys.fs_read_to_string("/proc/self/cgroup").ok()?;
match parse_self_cgroup(&self_cgroup) {
CgroupVersion::V1 { cgroup_relpath } => {
let limit_path = std::path::Path::new("/sys/fs/cgroup/memory")
.join(cgroup_relpath)
.join("memory.limit_in_bytes");
sys
.fs_read_to_string(limit_path)
.ok()
.and_then(|s| s.trim().parse::<u64>().ok())
}
CgroupVersion::V2 { cgroup_relpath } => {
let limit_path = std::path::Path::new("/sys/fs/cgroup")
.join(cgroup_relpath)
.join("memory.max");
sys
.fs_read_to_string(limit_path)
.ok()
.and_then(|s| s.trim().parse::<u64>().ok())
}
CgroupVersion::None => None,
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_parse_self_cgroup_v2() {
let self_cgroup = "0::/user.slice/user-1000.slice/session-3.scope";
let cgroup_version = parse_self_cgroup(self_cgroup);
assert!(matches!(
cgroup_version,
CgroupVersion::V2 { cgroup_relpath } if cgroup_relpath == "user.slice/user-1000.slice/session-3.scope"
));
}
#[test]
fn test_parse_self_cgroup_hybrid() {
let self_cgroup = r#"12:rdma:/
11:blkio:/user.slice
10:devices:/user.slice
9:cpu,cpuacct:/user.slice
8:pids:/user.slice/user-1000.slice/session-3.scope
7:memory:/user.slice/user-1000.slice/session-3.scope
6:perf_event:/
5:freezer:/
4:net_cls,net_prio:/
3:hugetlb:/
2:cpuset:/
1:name=systemd:/user.slice/user-1000.slice/session-3.scope
0::/user.slice/user-1000.slice/session-3.scope
"#;
let cgroup_version = parse_self_cgroup(self_cgroup);
assert!(matches!(
cgroup_version,
CgroupVersion::V1 { cgroup_relpath } if cgroup_relpath == "user.slice/user-1000.slice/session-3.scope"
));
}
#[test]
fn test_parse_self_cgroup_v1() {
let self_cgroup = r#"11:hugetlb:/
10:pids:/user.slice/user-1000.slice
9:perf_event:/
8:devices:/user.slice
7:net_cls,net_prio:/
6:memory:/
5:blkio:/
4:cpuset:/
3:cpu,cpuacct:/
2:freezer:/
1:name=systemd:/user.slice/user-1000.slice/session-2.scope
"#;
let cgroup_version = parse_self_cgroup(self_cgroup);
assert!(matches!(
cgroup_version,
CgroupVersion::V1 { cgroup_relpath } if cgroup_relpath.is_empty()
));
}
}
}