VirtualBox

source: vbox/trunk/src/VBox/Runtime/generic/RTMpGetDescription-generic.cpp@ 75251

Last change on this file since 75251 was 69111, checked in by vboxsync, 7 years ago

(C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1/* $Id: RTMpGetDescription-generic.cpp 69111 2017-10-17 14:26:02Z vboxsync $ */
2/** @file
3 * IPRT - Multiprocessor, Generic RTMpGetDescription.
4 */
5
6/*
7 * Copyright (C) 2009-2017 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/mp.h>
32#include "internal/iprt.h"
33#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
34# include <iprt/asm-amd64-x86.h>
35#endif
36#include <iprt/string.h>
37
38
39
40/**
41 * Returns "Unknown" as description.
42 *
43 * @returns VERR_BUFFER_OVERFLOW or VINF_SUCCESS.
44 * @param pszBuf Output buffer.
45 * @param cbBuf Buffer size.
46 */
47static int rtMpGetDescriptionUnknown(char *pszBuf, size_t cbBuf)
48{
49 static const char s_szUnknown[] = "Unknown";
50 if (cbBuf < sizeof(s_szUnknown))
51 return VERR_BUFFER_OVERFLOW;
52 memcpy(pszBuf, s_szUnknown, sizeof(s_szUnknown));
53 return VINF_SUCCESS;
54}
55
56
57RTDECL(int) RTMpGetDescription(RTCPUID idCpu, char *pszBuf, size_t cbBuf)
58{
59 /*
60 * Check that the specified cpu is valid & online.
61 */
62 if (idCpu != NIL_RTCPUID && !RTMpIsCpuOnline(idCpu))
63 return RTMpIsCpuPossible(idCpu)
64 ? VERR_CPU_OFFLINE
65 : VERR_CPU_NOT_FOUND;
66
67 /*
68 * Construct the description string in a temporary buffer.
69 */
70 char szString[4*4*3+1];
71 RT_ZERO(szString);
72#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
73 if (!ASMHasCpuId())
74 return rtMpGetDescriptionUnknown(pszBuf, cbBuf);
75
76 uint32_t uMax;
77 uint32_t uEBX, uECX, uEDX;
78 ASMCpuId(0x80000000, &uMax, &uEBX, &uECX, &uEDX);
79 if (uMax >= 0x80000002)
80 {
81 ASMCpuId(0x80000002, &szString[0 + 0], &szString[0 + 4], &szString[0 + 8], &szString[0 + 12]);
82 if (uMax >= 0x80000003)
83 ASMCpuId(0x80000003, &szString[16 + 0], &szString[16 + 4], &szString[16 + 8], &szString[16 + 12]);
84 if (uMax >= 0x80000004)
85 ASMCpuId(0x80000004, &szString[32 + 0], &szString[32 + 4], &szString[32 + 8], &szString[32 + 12]);
86 }
87 else
88 {
89 ASMCpuId(0x00000000, &uMax, &uEBX, &uECX, &uEDX);
90 ((uint32_t *)&szString[0])[0] = uEBX;
91 ((uint32_t *)&szString[0])[1] = uEDX;
92 ((uint32_t *)&szString[0])[2] = uECX;
93 }
94
95#else
96# error "PORTME or use RTMpGetDescription-generic-stub.cpp."
97#endif
98
99 /*
100 * Copy it out into the buffer supplied by the caller.
101 */
102 char *pszSrc = RTStrStrip(szString);
103 size_t cchSrc = strlen(pszSrc);
104 if (cchSrc >= cbBuf)
105 return VERR_BUFFER_OVERFLOW;
106 memcpy(pszBuf, pszSrc, cchSrc + 1);
107 return VINF_SUCCESS;
108}
109RT_EXPORT_SYMBOL(RTMpGetDescription);
110
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette