mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 18:33:54 +00:00
180 lines
5.1 KiB
C++
180 lines
5.1 KiB
C++
/*
|
|
* Copyright (c) 2014, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
*/
|
|
|
|
#include <sstream>
|
|
#include <iomanip>
|
|
|
|
// Maintain the order of includes (ifaddrs after if).
|
|
#include <net/if.h>
|
|
#include <ifaddrs.h>
|
|
#include <sys/socket.h>
|
|
|
|
#ifdef __linux__
|
|
#include <linux/if_link.h>
|
|
#include <sys/ioctl.h>
|
|
#endif
|
|
|
|
#include <osquery/core.h>
|
|
#include <osquery/logger.h>
|
|
#include <osquery/tables.h>
|
|
|
|
#include "osquery/tables/networking/utils.h"
|
|
|
|
namespace osquery {
|
|
namespace tables {
|
|
|
|
// Functions for safe sign-extension
|
|
std::basic_string<char> INTEGER_FROM_UCHAR(unsigned char x) {
|
|
return INTEGER(static_cast<uint16_t>(x));
|
|
}
|
|
|
|
std::basic_string<char> BIGINT_FROM_UINT32(uint32_t x) {
|
|
return BIGINT(static_cast<uint64_t>(x));
|
|
}
|
|
|
|
void genAddressesFromAddr(const struct ifaddrs *addr, QueryData &results) {
|
|
std::string dest_address;
|
|
Row r;
|
|
r["interface"] = std::string(addr->ifa_name);
|
|
|
|
// Address and mask will appear every time.
|
|
if (addr->ifa_addr != nullptr) {
|
|
r["address"] = ipAsString(static_cast<struct sockaddr *>(addr->ifa_addr));
|
|
}
|
|
|
|
if (addr->ifa_netmask != nullptr) {
|
|
r["mask"] = ipAsString(static_cast<struct sockaddr *>(addr->ifa_netmask));
|
|
}
|
|
|
|
// The destination address is used for either a broadcast or PtP address.
|
|
if (addr->ifa_dstaddr != nullptr) {
|
|
dest_address = ipAsString(static_cast<struct sockaddr *>(addr->ifa_dstaddr));
|
|
if ((addr->ifa_flags & IFF_BROADCAST) == IFF_BROADCAST) {
|
|
r["broadcast"] = dest_address;
|
|
} else {
|
|
r["point_to_point"] = dest_address;
|
|
}
|
|
}
|
|
|
|
results.push_back(r);
|
|
}
|
|
|
|
void genDetailsFromAddr(const struct ifaddrs *addr, QueryData &results) {
|
|
Row r;
|
|
if (addr->ifa_name != nullptr) {
|
|
r["interface"] = std::string(addr->ifa_name);
|
|
} else {
|
|
r["interface"] = "";
|
|
}
|
|
r["mac"] = macAsString(addr);
|
|
|
|
if (addr->ifa_data != nullptr && addr->ifa_name != nullptr) {
|
|
#ifdef __linux__
|
|
// Linux/Netlink interface details parsing.
|
|
auto ifd = static_cast<struct rtnl_link_stats *>(addr->ifa_data);
|
|
r["mtu"] = "0";
|
|
r["metric"] = "0";
|
|
r["type"] = "0";
|
|
r["ipackets"] = BIGINT_FROM_UINT32(ifd->rx_packets);
|
|
r["opackets"] = BIGINT_FROM_UINT32(ifd->tx_packets);
|
|
r["ibytes"] = BIGINT_FROM_UINT32(ifd->rx_bytes);
|
|
r["obytes"] = BIGINT_FROM_UINT32(ifd->tx_bytes);
|
|
r["ierrors"] = BIGINT_FROM_UINT32(ifd->rx_errors);
|
|
r["oerrors"] = BIGINT_FROM_UINT32(ifd->tx_errors);
|
|
|
|
// Get Linux physical properties for the AF_PACKET entry.
|
|
int fd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
if (fd >= 0) {
|
|
struct ifreq ifr;
|
|
memcpy(ifr.ifr_name, addr->ifa_name, IFNAMSIZ);
|
|
if (ioctl(fd, SIOCGIFMTU, &ifr) >= 0) {
|
|
r["mtu"] = BIGINT_FROM_UINT32(ifr.ifr_mtu);
|
|
}
|
|
|
|
if (ioctl(fd, SIOCGIFMETRIC, &ifr) >= 0) {
|
|
r["metric"] = BIGINT_FROM_UINT32(ifr.ifr_metric);
|
|
}
|
|
|
|
if (ioctl(fd, SIOCGIFHWADDR, &ifr) >= 0) {
|
|
r["type"] = INTEGER_FROM_UCHAR(ifr.ifr_hwaddr.sa_family);
|
|
}
|
|
|
|
close(fd);
|
|
}
|
|
|
|
// Last change is not implemented in Linux.
|
|
r["last_change"] = "-1";
|
|
#else
|
|
// Apple and FreeBSD interface details parsing.
|
|
auto ifd = (struct if_data *)addr->ifa_data;
|
|
r["type"] = INTEGER_FROM_UCHAR(ifd->ifi_type);
|
|
r["mtu"] = BIGINT_FROM_UINT32(ifd->ifi_mtu);
|
|
r["metric"] = BIGINT_FROM_UINT32(ifd->ifi_metric);
|
|
r["ipackets"] = BIGINT_FROM_UINT32(ifd->ifi_ipackets);
|
|
r["opackets"] = BIGINT_FROM_UINT32(ifd->ifi_opackets);
|
|
r["ibytes"] = BIGINT_FROM_UINT32(ifd->ifi_ibytes);
|
|
r["obytes"] = BIGINT_FROM_UINT32(ifd->ifi_obytes);
|
|
r["ierrors"] = BIGINT_FROM_UINT32(ifd->ifi_ierrors);
|
|
r["oerrors"] = BIGINT_FROM_UINT32(ifd->ifi_oerrors);
|
|
r["last_change"] = BIGINT_FROM_UINT32(ifd->ifi_lastchange.tv_sec);
|
|
#endif
|
|
}
|
|
|
|
results.push_back(r);
|
|
}
|
|
|
|
QueryData genInterfaceAddresses(QueryContext &context) {
|
|
QueryData results;
|
|
|
|
struct ifaddrs *if_addrs = nullptr;
|
|
struct ifaddrs *if_addr = nullptr;
|
|
if (getifaddrs(&if_addrs) != 0 || if_addrs == nullptr) {
|
|
return {};
|
|
}
|
|
|
|
for (if_addr = if_addrs; if_addr != nullptr; if_addr = if_addr->ifa_next) {
|
|
if (if_addr->ifa_addr == nullptr) {
|
|
continue;
|
|
}
|
|
if (if_addr->ifa_addr->sa_family == AF_INET ||
|
|
if_addr->ifa_addr->sa_family == AF_INET6) {
|
|
genAddressesFromAddr(if_addr, results);
|
|
}
|
|
}
|
|
|
|
freeifaddrs(if_addrs);
|
|
return results;
|
|
}
|
|
|
|
QueryData genInterfaceDetails(QueryContext &context) {
|
|
QueryData results;
|
|
|
|
struct ifaddrs *if_addrs = nullptr;
|
|
struct ifaddrs *if_addr = nullptr;
|
|
if (getifaddrs(&if_addrs) != 0 || if_addrs == nullptr) {
|
|
return {};
|
|
}
|
|
|
|
for (if_addr = if_addrs; if_addr != nullptr; if_addr = if_addr->ifa_next) {
|
|
if (if_addr->ifa_addr != nullptr &&
|
|
if_addr->ifa_addr->sa_family != AF_INTERFACE) {
|
|
// This interface entry does not describe the link details.
|
|
continue;
|
|
}
|
|
|
|
genDetailsFromAddr(if_addr, results);
|
|
}
|
|
|
|
freeifaddrs(if_addrs);
|
|
return results;
|
|
}
|
|
}
|
|
}
|