# frozen_string_literal: true
# Phusion Passenger - https://www.phusionpassenger.com/
# Copyright (c) 2017-2025 Asynchronous B.V.
#
# "Passenger", "Phusion Passenger" and "Union Station" are registered
# trademarks of Asynchronous B.V.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
PhusionPassenger.require_passenger_lib 'platform_info'
PhusionPassenger.require_passenger_lib 'platform_info/operating_system'
PhusionPassenger.require_passenger_lib 'utils/shellwords'
module PhusionPassenger
module PlatformInfo
# Returns a list of network interfaces active on the current system, or
# nil if unable to autodetect.
#
# [
# {
# :device => 'en0',
# :type => :ethernet,
# :flags => [:promisc, :broadcast, :multicast],
# :ipv4 => ['127.0.0.1'],
# :ipv6 => ['::1']
# },
# ...
# ]
def self.network_interfaces
case os_name_simple
when 'linux'
network_interfaces_linux
when 'macosx', 'freebsd'
network_interfaces_bsd
else
nil
end
end
# Returns the names of the network interfaces used for public
# Internet IPv4 and IPv6 traffic. This is autodetected
# by checking which interfaces can route to Google.
#
# The format is:
#
# {
# :ipv4 => "device name" | nil | :unknown,
# :ipv6 => "device name" | nil | :unknown
# }
#
# A value of nil means that there is no interface that supports
# the corresponding IP traffic.
# A value of :unknown means that the information cannot be
# autodetected.
def self.default_network_interfaces
case os_name_simple
when 'linux'
{
:ipv4 => default_network_interface_linux_for_ip_type(:ipv4),
:ipv6 => default_network_interface_linux_for_ip_type(:ipv6)
}
when 'macosx', 'freebsd'
{
:ipv4 => default_network_interface_bsd_for_ip_type(:ipv4),
:ipv6 => default_network_interface_bsd_for_ip_type(:ipv6)
}
else
{
:ipv4 => :unknown,
:ipv6 => :unknown
}
end
end
private
def self.network_interfaces_linux
result = {}
ip_command = find_system_command('ip')
if ip_command
current_iface = nil
output = `#{Shellwords.escape ip_command} addr show`
output.split("\n").each do |line|
elems = line.split
if line =~ /^[0-9]+: /
# Format:
#