mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
8757d0abbc
The recent patch series proposing the addition of PPC little endian arch support to Linux defines new arch names 'ppcle' and 'ppc64le': https://lists.ozlabs.org/pipermail/linuxppc-dev/2013-August/109908.html This just makes libvirt know about these arch names, so it doesn't immediately trip up if it seems these new names from uname. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
183 lines
5.1 KiB
C
183 lines
5.1 KiB
C
/*
|
|
* virarch.c: architecture handling
|
|
*
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include "virlog.h"
|
|
#include "virarch.h"
|
|
#include "verify.h"
|
|
|
|
/* The canonical names are used in XML documents. ie ABI sensitive */
|
|
static const struct virArchData {
|
|
const char *name;
|
|
unsigned int wordsize;
|
|
virArchEndian endian;
|
|
} virArchData[] = {
|
|
{ "none", 0, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "alpha", 64, VIR_ARCH_BIG_ENDIAN },
|
|
{ "armv6l", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "armv7l", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "armv7b", 32, VIR_ARCH_BIG_ENDIAN },
|
|
|
|
{ "aarch64", 64, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "cris", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "i686", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "ia64", 64, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "lm32", 32, VIR_ARCH_BIG_ENDIAN },
|
|
|
|
{ "m68k", 32, VIR_ARCH_BIG_ENDIAN },
|
|
{ "microblaze", 32, VIR_ARCH_BIG_ENDIAN },
|
|
{ "microblazeel", 32, VIR_ARCH_LITTLE_ENDIAN},
|
|
{ "mips", 32, VIR_ARCH_BIG_ENDIAN },
|
|
{ "mipsel", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
|
|
{ "mips64", 64, VIR_ARCH_BIG_ENDIAN },
|
|
{ "mips64el", 64, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "openrisc", 32, VIR_ARCH_BIG_ENDIAN },
|
|
{ "parisc", 32, VIR_ARCH_BIG_ENDIAN },
|
|
{ "parisc64", 64, VIR_ARCH_BIG_ENDIAN },
|
|
|
|
{ "ppc", 32, VIR_ARCH_BIG_ENDIAN },
|
|
{ "ppcle", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "ppc64", 64, VIR_ARCH_BIG_ENDIAN },
|
|
{ "ppc64le", 64, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "ppcemb", 32, VIR_ARCH_BIG_ENDIAN },
|
|
|
|
{ "s390", 32, VIR_ARCH_BIG_ENDIAN },
|
|
{ "s390x", 64, VIR_ARCH_BIG_ENDIAN },
|
|
{ "sh4", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "sh4eb", 64, VIR_ARCH_BIG_ENDIAN },
|
|
{ "sparc", 32, VIR_ARCH_BIG_ENDIAN },
|
|
|
|
{ "sparc64", 64, VIR_ARCH_BIG_ENDIAN },
|
|
{ "unicore32", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "x86_64", 64, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "xtensa", 32, VIR_ARCH_LITTLE_ENDIAN },
|
|
{ "xtensaeb", 32, VIR_ARCH_BIG_ENDIAN },
|
|
};
|
|
|
|
verify(ARRAY_CARDINALITY(virArchData) == VIR_ARCH_LAST);
|
|
|
|
|
|
/**
|
|
* virArchGetWordSize:
|
|
* @arch: the CPU architecture
|
|
*
|
|
* Return the wordsize of the CPU architecture (32 or 64)
|
|
*/
|
|
unsigned int virArchGetWordSize(virArch arch)
|
|
{
|
|
if (arch >= VIR_ARCH_LAST)
|
|
arch = VIR_ARCH_NONE;
|
|
|
|
return virArchData[arch].wordsize;
|
|
}
|
|
|
|
/**
|
|
* virArchGetEndian:
|
|
* @arch: the CPU architecture
|
|
*
|
|
* Return the endian-ness of the CPU architecture
|
|
* (VIR_ARCH_LITTLE_ENDIAN or VIR_ARCH_BIG_ENDIAN)
|
|
*/
|
|
virArchEndian virArchGetEndian(virArch arch)
|
|
{
|
|
if (arch >= VIR_ARCH_LAST)
|
|
arch = VIR_ARCH_NONE;
|
|
|
|
return virArchData[arch].endian;
|
|
}
|
|
|
|
/**
|
|
* virArchToString:
|
|
* @arch: the CPU architecture
|
|
*
|
|
* Return the string name of the architecture
|
|
*/
|
|
const char *virArchToString(virArch arch)
|
|
{
|
|
if (arch >= VIR_ARCH_LAST)
|
|
arch = VIR_ARCH_NONE;
|
|
|
|
return virArchData[arch].name;
|
|
}
|
|
|
|
|
|
/**
|
|
* virArchFromString:
|
|
* @archstr: the CPU architecture string
|
|
*
|
|
* Return the architecture matching @archstr,
|
|
* defaulting to VIR_ARCH_NONE if unidentified
|
|
*/
|
|
virArch virArchFromString(const char *archstr)
|
|
{
|
|
size_t i;
|
|
for (i = 1; i < VIR_ARCH_LAST; i++) {
|
|
if (STREQ(virArchData[i].name, archstr))
|
|
return i;
|
|
}
|
|
|
|
VIR_DEBUG("Unknown arch %s", archstr);
|
|
return VIR_ARCH_NONE;
|
|
}
|
|
|
|
|
|
/**
|
|
* virArchFromHost:
|
|
*
|
|
* Return the host architecture. Prefer this to the
|
|
* uname 'machine' field, since this will canonicalize
|
|
* architecture names like 'amd64' into 'x86_64'.
|
|
*/
|
|
virArch virArchFromHost(void)
|
|
{
|
|
struct utsname ut;
|
|
virArch arch;
|
|
|
|
uname(&ut);
|
|
|
|
/* Some special cases we need to handle first
|
|
* for non-canonical names */
|
|
if (strlen(ut.machine) == 4 &&
|
|
ut.machine[0] == 'i' &&
|
|
ut.machine[2] == '8' &&
|
|
ut.machine[3] == '6' &&
|
|
ut.machine[4] == '\0') {
|
|
arch = VIR_ARCH_I686;
|
|
} else if (STREQ(ut.machine, "amd64")) {
|
|
arch = VIR_ARCH_X86_64;
|
|
} else {
|
|
/* Otherwise assume the canonical name */
|
|
if ((arch = virArchFromString(ut.machine)) == VIR_ARCH_NONE) {
|
|
VIR_WARN("Unknown host arch %s, report to libvir-list@redhat.com",
|
|
ut.machine);
|
|
}
|
|
}
|
|
|
|
VIR_DEBUG("Mapped %s to %d (%s)",
|
|
ut.machine, arch, virArchToString(arch));
|
|
|
|
return arch;
|
|
}
|