VirtualBox

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

Last change on this file since 28800 was 28800, checked in by vboxsync, 14 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1/* $Id: RTMpGetDescription-generic.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * IPRT - Multiprocessor, Generic RTMpGetDescription.
4 */
5
6/*
7 * Copyright (C) 2009 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#include <iprt/asm.h>
34#include <iprt/string.h>
35
36
37
38/**
39 * Returns "Unknown" as description.
40 *
41 * @returns VERR_BUFFER_OVERFLOW or VINF_SUCCESS.
42 * @param pszBuf Output buffer.
43 * @param cbBuf Buffer size.
44 */
45static int rtMpGetDescriptionUnknown(char *pszBuf, size_t cbBuf)
46{
47 static const char s_szUnknown[] = "Unknown";
48 if (cbBuf < sizeof(s_szUnknown))
49 return VERR_BUFFER_OVERFLOW;
50 memcpy(pszBuf, s_szUnknown, sizeof(s_szUnknown));
51 return VINF_SUCCESS;
52}
53
54
55RTDECL(int) RTMpGetDescription(RTCPUID idCpu, char *pszBuf, size_t cbBuf)
56{
57 /*
58 * Check that the specified cpu is valid & online.
59 */
60 if (!RTMpIsCpuOnline(idCpu))
61 return RTMpIsCpuPossible(idCpu)
62 ? VERR_CPU_OFFLINE
63 : VERR_CPU_NOT_FOUND;
64
65 /*
66 * Construct the description string in a temporary buffer.
67 */
68 char szString[4*4*3+1];
69 RT_ZERO(szString);
70#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
71 if (!ASMHasCpuId())
72 return rtMpGetDescriptionUnknown(pszBuf, cbBuf);
73
74 uint32_t uMax;
75 uint32_t uEBX, uECX, uEDX;
76 ASMCpuId(0x80000000, &uMax, &uEBX, &uECX, &uEDX);
77 if (uMax >= 0x80000002)
78 {
79 ASMCpuId(0x80000002, &szString[0 + 0], &szString[0 + 4], &szString[0 + 8], &szString[0 + 12]);
80 if (uMax >= 0x80000003)
81 ASMCpuId(0x80000003, &szString[16 + 0], &szString[16 + 4], &szString[16 + 8], &szString[16 + 12]);
82 if (uMax >= 0x80000004)
83 ASMCpuId(0x80000004, &szString[32 + 0], &szString[32 + 4], &szString[32 + 8], &szString[32 + 12]);
84 }
85 else
86 {
87 ASMCpuId(0x00000000, &uMax, &uEBX, &uECX, &uEDX);
88 ((uint32_t *)&szString[0])[0] = uEBX;
89 ((uint32_t *)&szString[0])[1] = uEDX;
90 ((uint32_t *)&szString[0])[2] = uECX;
91 }
92
93#else
94# error "PORTME or use RTMpGetDescription-generic-stub.cpp."
95#endif
96
97 /*
98 * Copy it out into the buffer supplied by the caller.
99 */
100 size_t cch = strlen(szString);
101 if (cch >= cbBuf)
102 return VERR_BUFFER_OVERFLOW;
103 memcpy(pszBuf, szString, cch + 1);
104 return VINF_SUCCESS;
105}
106RT_EXPORT_SYMBOL(RTMpGetDescription);
107
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