blob: 7e3291db261d5582f773be80ce40a63d355c77ce [file] [log] [blame]
// Copyright 2018 Google Inc. All Rights Reserved.
//
// 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.
#include "starboard/system.h"
#include <linux/if.h> // NOLINT(build/include_alpha)
#include <netdb.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include "starboard/log.h"
#include "starboard/string.h"
namespace {
const char* kFriendlyName = "Linux Desktop";
const char* kPlatformName = "Wayland; Linux x86_64";
bool CopyStringAndTestIfSuccess(char* out_value,
int value_length,
const char* from_value) {
if (SbStringGetLength(from_value) + 1 > value_length)
return false;
SbStringCopy(out_value, from_value, value_length);
return true;
}
#if SB_API_VERSION < SB_PROPERTY_UUID_REMOVED_API_VERSION
bool GetPlatformUuid(char* out_value, int value_length) {
struct ifreq interface;
struct ifconf config;
char buf[1024];
int fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP);
if (fd == -1) {
return false;
}
config.ifc_len = sizeof(buf);
config.ifc_buf = buf;
int result = ioctl(fd, SIOCGIFCONF, &config);
if (result == -1) {
return false;
}
struct ifreq* cur_interface = config.ifc_req;
const struct ifreq* const end =
cur_interface + (config.ifc_len / sizeof(struct ifreq));
for (; cur_interface != end; ++cur_interface) {
SbStringCopy(interface.ifr_name, cur_interface->ifr_name,
sizeof(cur_interface->ifr_name));
if (ioctl(fd, SIOCGIFFLAGS, &interface) == -1) {
continue;
}
if (interface.ifr_flags & IFF_LOOPBACK) {
continue;
}
if (ioctl(fd, SIOCGIFHWADDR, &interface) == -1) {
continue;
}
SbStringFormatF(
out_value, value_length, "%x:%x:%x:%x:%x:%x",
interface.ifr_addr.sa_data[0], interface.ifr_addr.sa_data[1],
interface.ifr_addr.sa_data[2], interface.ifr_addr.sa_data[3],
interface.ifr_addr.sa_data[4], interface.ifr_addr.sa_data[5]);
return true;
}
return false;
}
#endif // SB_API_VERSION < SB_PROPERTY_UUID_REMOVED_API_VERSION
} // namespace
bool SbSystemGetProperty(SbSystemPropertyId property_id,
char* out_value,
int value_length) {
if (!out_value || !value_length) {
return false;
}
switch (property_id) {
case kSbSystemPropertyBrandName:
case kSbSystemPropertyChipsetModelNumber:
case kSbSystemPropertyFirmwareVersion:
case kSbSystemPropertyModelName:
case kSbSystemPropertyModelYear:
case kSbSystemPropertyNetworkOperatorName:
case kSbSystemPropertySpeechApiKey:
return false;
case kSbSystemPropertyFriendlyName:
return CopyStringAndTestIfSuccess(out_value, value_length, kFriendlyName);
case kSbSystemPropertyPlatformName:
return CopyStringAndTestIfSuccess(out_value, value_length, kPlatformName);
#if SB_API_VERSION < SB_PROPERTY_UUID_REMOVED_API_VERSION
case kSbSystemPropertyPlatformUuid:
return GetPlatformUuid(out_value, value_length);
#endif // SB_API_VERSION < SB_PROPERTY_UUID_REMOVED_API_VERSION
default:
SB_DLOG(WARNING) << __FUNCTION__
<< ": Unrecognized property: " << property_id;
break;
}
return false;
}