gethostname/lib.rs
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
// Copyright 2019–2023 Sebastian Wiesner <sebastian@swsnr.de>
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
// use this file except in compliance with the License. You may obtain a copy of
// the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations under
// the License.
//! [gethostname()][ghn] for all platforms.
//!
//! ```
//! use gethostname::gethostname;
//!
//! println!("Hostname: {:?}", gethostname());
//! ```
//!
//! [ghn]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostname.html
#![deny(warnings, missing_docs, clippy::all)]
use std::ffi::OsString;
/// Get the standard host name for the current machine.
///
/// On Unix simply wrap POSIX [gethostname] in a safe interface. On Windows
/// return the DNS host name of the local computer, as returned by
/// [GetComputerNameExW] with `ComputerNamePhysicalDnsHostname` as `NameType`.
///
/// This function panics if the buffer allocated for the hostname result of the
/// operating system is too small; however we take great care to allocate a
/// buffer of sufficient size:
///
/// * On Unix we allocate the buffer using the maximum permitted hostname size,
/// as returned by [sysconf] via `sysconf(_SC_HOST_NAME_MAX)`, plus an extra
/// byte for the trailing NUL byte. A hostname cannot exceed this limit, so
/// this function can't realistically panic.
/// * On Windows we call `GetComputerNameExW` with a NULL buffer first, which
/// makes it return the length of the current host name. We then use this
/// length to allocate a buffer for the actual result; this leaves a tiny
/// tiny race condition in case the hostname changes to a longer name right
/// in between those two calls but that's a risk we don't consider of any
/// practical relevance.
///
/// Hence _if_ this function does panic please [report an issue][new].
///
/// [gethostname]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/gethostname.html
/// [sysconf]: http://pubs.opengroup.org/onlinepubs/9699919799/functions/sysconf.html
/// [GetComputerNameExW]: https://docs.microsoft.com/en-us/windows/desktop/api/sysinfoapi/nf-sysinfoapi-getcomputernameexw
/// [new]: https://github.com/swsnr/gethostname.rs/issues/new
pub fn gethostname() -> OsString {
gethostname_impl()
}
#[cfg(unix)]
#[inline]
fn gethostname_impl() -> OsString {
use libc::{c_char, sysconf, _SC_HOST_NAME_MAX};
use std::os::unix::ffi::OsStringExt;
// Get the maximum size of host names on this system, and account for the
// trailing NUL byte.
let hostname_max = unsafe { sysconf(_SC_HOST_NAME_MAX) };
let mut buffer = vec![0; (hostname_max as usize) + 1];
let returncode = unsafe { libc::gethostname(buffer.as_mut_ptr() as *mut c_char, buffer.len()) };
if returncode != 0 {
// There are no reasonable failures, so lets panic
panic!(
"gethostname failed: {}
Please report an issue to <https://github.com/swsnr/gethostname.rs/issues>!",
std::io::Error::last_os_error()
);
}
// We explicitly search for the trailing NUL byte and cap at the buffer
// length: If the buffer's too small (which shouldn't happen since we
// explicitly use the max hostname size above but just in case) POSIX
// doesn't specify whether there's a NUL byte at the end, so if we didn't
// check we might read from memory that's not ours.
let end = buffer.iter().position(|&b| b == 0).unwrap_or(buffer.len());
buffer.resize(end, 0);
OsString::from_vec(buffer)
}
#[cfg(windows)]
#[inline]
fn gethostname_impl() -> OsString {
use std::os::windows::ffi::OsStringExt;
// The DNS host name of the local computer. If the local computer is a node
// in a cluster, lpBuffer receives the DNS host name of the local computer,
// not the name of the cluster virtual server.
pub const COMPUTER_NAME_PHYSICAL_DNS_HOSTNAME: i32 = 5;
// https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/nf-sysinfoapi-getcomputernameexw
::windows_targets::link!("kernel32.dll" "system" fn GetComputerNameExW(nametype: i32, lpbuffer: *mut u16, nsize: *mut u32) -> i32);
let mut buffer_size: u32 = 0;
unsafe {
// This call always fails with ERROR_MORE_DATA, because we pass NULL to
// get the required buffer size. GetComputerNameExW then fills buffer_size with the size
// of the host name string plus a trailing zero byte.
GetComputerNameExW(
COMPUTER_NAME_PHYSICAL_DNS_HOSTNAME,
std::ptr::null_mut(),
&mut buffer_size,
)
};
assert!(
0 < buffer_size,
"GetComputerNameExW did not provide buffer size"
);
let mut buffer = vec![0_u16; buffer_size as usize];
unsafe {
if GetComputerNameExW(
COMPUTER_NAME_PHYSICAL_DNS_HOSTNAME,
buffer.as_mut_ptr(),
&mut buffer_size,
) == 0
{
panic!(
"GetComputerNameExW failed to read hostname.
Please report this issue to <https://github.com/swsnr/gethostname.rs/issues>!"
);
}
}
assert!(
// GetComputerNameExW returns the size _without_ the trailing zero byte on the second call
buffer_size as usize == buffer.len() - 1,
"GetComputerNameExW changed the buffer size unexpectedly"
);
let end = buffer.iter().position(|&b| b == 0).unwrap_or(buffer.len());
OsString::from_wide(&buffer[0..end])
}
#[cfg(test)]
mod tests {
use std::process::Command;
#[test]
fn gethostname_matches_system_hostname() {
let output = Command::new("hostname")
.output()
.expect("failed to get hostname");
if output.status.success() {
let hostname = String::from_utf8_lossy(&output.stdout);
assert!(
!hostname.is_empty(),
"Failed to get hostname: hostname empty?"
);
// Convert both sides to lowercase; hostnames are case-insensitive
// anyway.
assert_eq!(
super::gethostname().into_string().unwrap().to_lowercase(),
hostname.trim_end().to_lowercase()
);
} else {
panic!(
"Failed to get hostname! {}",
String::from_utf8_lossy(&output.stderr)
);
}
}
#[test]
#[ignore]
fn gethostname_matches_fixed_hostname() {
assert_eq!(
super::gethostname().into_string().unwrap().to_lowercase(),
"hostname-for-testing"
);
}
}