Skip to content

Commit

Permalink
cli: make nested/out-of-jay run-privileged a no-op
Browse files Browse the repository at this point in the history
  • Loading branch information
mahkoh committed Apr 24, 2024
1 parent 5af6de0 commit a29c408
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/acceptor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ struct AllocatedSocket {
lock_path: Ustring,
_lock_fd: OwnedFd,
// /run/user/1000/wayland-x.jay
#[cfg_attr(not(feature = "it"), allow(dead_code))]
secure_path: Ustring,
secure: Rc<OwnedFd>,
}
Expand All @@ -55,6 +54,7 @@ impl Drop for AllocatedSocket {
fn drop(&mut self) {
let _ = uapi::unlink(&self.path);
let _ = uapi::unlink(&self.lock_path);
let _ = uapi::unlink(&self.secure_path);
}
}

Expand Down
21 changes: 14 additions & 7 deletions src/cli/run_privileged.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,26 @@ use {
cli::{GlobalArgs, RunPrivilegedArgs},
compositor::WAYLAND_DISPLAY,
logger::Logger,
utils::{errorfmt::ErrorFmt, oserror::OsError},
utils::{errorfmt::ErrorFmt, oserror::OsError, xrd::xrd},
},
std::path::PathBuf,
uapi::UstrPtr,
};

pub fn main(global: GlobalArgs, args: RunPrivilegedArgs) {
Logger::install_stderr(global.log_level.into());
let mut wd = match std::env::var(WAYLAND_DISPLAY) {
Ok(v) => v,
_ => fatal!("{} is not set", WAYLAND_DISPLAY),
};
wd.push_str(".jay");
std::env::set_var(WAYLAND_DISPLAY, &wd);
if let Some(xrd) = xrd() {
let mut wd = match std::env::var(WAYLAND_DISPLAY) {
Ok(v) => v,
_ => fatal!("{} is not set", WAYLAND_DISPLAY),
};
wd.push_str(".jay");
let mut path = PathBuf::from(xrd);
path.push(&wd);
if path.exists() {
std::env::set_var(WAYLAND_DISPLAY, &wd);
}
}
let mut argv = UstrPtr::new();
for arg in &args.program {
argv.push(arg.as_str());
Expand Down

0 comments on commit a29c408

Please sign in to comment.