Fix windows build more (#7208)

This commit is contained in:
Michael Vines 2019-12-02 22:09:06 -07:00 committed by GitHub
parent b874441a47
commit 5ac435325b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 45 additions and 58 deletions

View File

@ -1,40 +1,28 @@
use log::*; use log::*;
use std::{fs, io};
use solana_sys_tuner::SOLANA_SYS_TUNER_PATH;
#[cfg(unix)]
use unix_socket::UnixListener;
#[cfg(target_os = "linux")] #[cfg(target_os = "linux")]
use std::fs::DirEntry; fn tune_system() {
#[cfg(target_os = "linux")] fn find_pid<P: AsRef<std::path::Path>, F>(name: &str, path: P, processor: F) -> Option<u64>
use std::path::Path; where
F: Fn(&std::fs::DirEntry) -> Option<u64>,
#[cfg(target_os = "linux")] {
fn find_pid<P: AsRef<Path>, F>(name: &str, path: P, processor: F) -> Option<u64> for entry in std::fs::read_dir(path).expect("Failed to read /proc folder") {
where if let Ok(dir) = entry {
F: Fn(&DirEntry) -> Option<u64>, let mut path = dir.path();
{ path.push("comm");
for entry in fs::read_dir(path).expect("Failed to read /proc folder") { if let Ok(comm) = std::fs::read_to_string(path.as_path()) {
if let Ok(dir) = entry { if comm.starts_with(name) {
let mut path = dir.path(); if let Some(pid) = processor(&dir) {
path.push("comm"); return Some(pid);
if let Ok(comm) = fs::read_to_string(path.as_path()) { }
if comm.starts_with(name) {
if let Some(pid) = processor(&dir) {
return Some(pid);
} }
} }
} }
} }
None
} }
None
}
#[cfg(target_os = "linux")]
fn tune_system() {
use std::process::Command; use std::process::Command;
use std::str::from_utf8; use std::str::from_utf8;
@ -49,7 +37,7 @@ fn tune_system() {
} }
}) })
}) { }) {
info!("POH thread PID is {}", pid); info!("PoH thread PID is {}", pid);
let pid = format!("{}", pid); let pid = format!("{}", pid);
let output = Command::new("chrt") let output = Command::new("chrt")
.args(&["-r", "-p", "99", pid.as_str()]) .args(&["-r", "-p", "99", pid.as_str()])
@ -61,53 +49,52 @@ fn tune_system() {
error!("chrt stderr: {}", from_utf8(&output.stderr).unwrap_or("?")); error!("chrt stderr: {}", from_utf8(&output.stderr).unwrap_or("?"));
} }
} else { } else {
error!("Could not find pid for POH thread"); error!("Could not find pid for PoH thread");
} }
} }
#[cfg(any(not(unix), target_os = "macos"))] #[cfg(unix)]
fn tune_system() {}
#[allow(dead_code)]
#[cfg(target_os = "linux")]
fn set_socket_permissions() {
if let Some(user) = users::get_user_by_name("solana") {
let uid = format!("{}", user.uid());
info!("UID for solana is {}", uid);
nix::unistd::chown(
SOLANA_SYS_TUNER_PATH,
Some(nix::unistd::Uid::from_raw(user.uid())),
None,
)
.expect("Expected to change UID of the socket file");
} else {
error!("Could not find UID for solana user");
}
}
#[cfg(any(not(unix), target_os = "macos"))]
fn set_socket_permissions() {}
fn main() { fn main() {
solana_logger::setup(); solana_logger::setup();
if let Err(e) = fs::remove_file(SOLANA_SYS_TUNER_PATH) { if let Err(e) = std::fs::remove_file(solana_sys_tuner::SOLANA_SYS_TUNER_PATH) {
if e.kind() != io::ErrorKind::NotFound { if e.kind() != std::io::ErrorKind::NotFound {
panic!("Failed to remove stale socket file: {:?}", e) panic!("Failed to remove stale socket file: {:?}", e)
} }
} }
let listener = let listener = unix_socket::UnixListener::bind(solana_sys_tuner::SOLANA_SYS_TUNER_PATH)
UnixListener::bind(SOLANA_SYS_TUNER_PATH).expect("Failed to bind to the socket file"); .expect("Failed to bind to the socket file");
set_socket_permissions(); // set socket permission
#[cfg(target_os = "linux")]
{
if let Some(user) = users::get_user_by_name("solana") {
let uid = format!("{}", user.uid());
info!("UID for solana is {}", uid);
nix::unistd::chown(
solana_sys_tuner::SOLANA_SYS_TUNER_PATH,
Some(nix::unistd::Uid::from_raw(user.uid())),
None,
)
.expect("Expected to change UID of the socket file");
} else {
error!("Could not find UID for solana user");
}
}
info!("Waiting for tuning requests"); info!("Waiting for tuning requests");
for stream in listener.incoming() { for stream in listener.incoming() {
if stream.is_ok() { if stream.is_ok() {
info!("Tuning the system now"); info!("Tuning the system now");
#[cfg(target_os = "linux")]
tune_system(); tune_system();
} }
} }
info!("exiting"); info!("exiting");
} }
#[cfg(not(unix))]
fn main() {
error!("Unsupported platform");
}