1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
|
/* ----------------------------------------------------------------------- *
*
* Copyright 2000 Transmeta Corporation - All Rights Reserved
* Copyright 2004-2008 H. Peter Anvin - All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston MA 02110-1301, USA; either version 2 of the License, or
* (at your option) any later version; incorporated herein by reference.
*
* ----------------------------------------------------------------------- */
/*
* rdmsr.c
*
* Utility to read an MSR.
*/
#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <getopt.h>
#include <inttypes.h>
#include <sys/types.h>
#include <dirent.h>
#include <ctype.h>
#include "version.h"
static const struct option long_options[] = {
{"help", 0, 0, 'h'},
{"version", 0, 0, 'V'},
{"hexadecimal", 0, 0, 'x'},
{"capital-hexadecimal", 0, 0, 'X'},
{"decimal", 0, 0, 'd'},
{"signed-decimal", 0, 0, 'd'},
{"unsigned-decimal", 0, 0, 'u'},
{"octal", 0, 0, 'o'},
{"c-language", 0, 0, 'c'},
{"zero-fill", 0, 0, '0'},
{"zero-pad", 0, 0, '0'},
{"raw", 0, 0, 'r'},
{"all", 0, 0, 'a'},
{"processor", 1, 0, 'p'},
{"cpu", 1, 0, 'p'},
{"bitfield", 1, 0, 'f'},
{0, 0, 0, 0}
};
static const char short_options[] = "hVxXdoruc0ap:f:";
static int doing_for_all = 0;
/* Number of decimal digits for a certain number of bits */
/* (int) ceil(log(2^n)/log(10)) */
int decdigits[] = {
1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5,
5, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10, 10,
10, 10, 11, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 15,
15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 19, 19, 19, 19,
20
};
#define mo_hex 0x01
#define mo_dec 0x02
#define mo_oct 0x03
#define mo_raw 0x04
#define mo_uns 0x05
#define mo_chx 0x06
#define mo_mask 0x0f
#define mo_fill 0x40
#define mo_c 0x80
const char *program;
void usage(void)
{
fprintf(stderr,
"Usage: %s [options] regno\n"
" --help -h Print this help\n"
" --version -V Print current version\n"
" --hexadecimal -x Hexadecimal output (lower case)\n"
" --capital-hex -X Hexadecimal output (upper case)\n"
" --decimal -d Signed decimal output\n"
" --unsigned -u Unsigned decimal output\n"
" --octal -o Octal output\n"
" --c-language -c Format output as a C language constant\n"
" --zero-pad -0 Output leading zeroes\n"
" --raw -r Raw binary output\n"
" --all -a all processors\n"
" --processor # -p Select processor number (default 0)\n"
" --bitfield h:l -f Output bits [h:l] only\n", program);
}
void rdmsr_on_cpu(uint32_t reg, int cpu);
/* filter out ".", "..", "microcode" in /dev/cpu */
int dir_filter(const struct dirent *dirp) {
if (isdigit(dirp->d_name[0]))
return 1;
else
return 0;
}
void rdmsr_on_all_cpus(uint32_t reg)
{
struct dirent **namelist;
int dir_entries;
dir_entries = scandir("/dev/cpu", &namelist, dir_filter, 0);
while (dir_entries--) {
rdmsr_on_cpu(reg, atoi(namelist[dir_entries]->d_name));
free(namelist[dir_entries]);
}
free(namelist);
}
unsigned int highbit = 63, lowbit = 0;
int mode = mo_hex;
int main(int argc, char *argv[])
{
uint32_t reg;
int c;
int cpu = 0;
unsigned long arg;
char *endarg;
program = argv[0];
while ((c =
getopt_long(argc, argv, short_options, long_options,
NULL)) != -1) {
switch (c) {
case 'h':
usage();
exit(0);
case 'V':
fprintf(stderr, "%s: version %s\n", program,
VERSION_STRING);
exit(0);
case 'x':
mode = (mode & ~mo_mask) | mo_hex;
break;
case 'X':
mode = (mode & ~mo_mask) | mo_chx;
break;
case 'o':
mode = (mode & ~mo_mask) | mo_oct;
break;
case 'd':
mode = (mode & ~mo_mask) | mo_dec;
break;
case 'r':
mode = (mode & ~mo_mask) | mo_raw;
break;
case 'u':
mode = (mode & ~mo_mask) | mo_uns;
break;
case 'c':
mode |= mo_c;
break;
case '0':
mode |= mo_fill;
break;
case 'a':
cpu = -1;
break;
case 'p':
arg = strtoul(optarg, &endarg, 0);
if (*endarg || arg > 5119) {
usage();
exit(127);
}
cpu = (int)arg;
break;
case 'f':
if (sscanf(optarg, "%u:%u", &highbit, &lowbit) != 2 ||
highbit > 63 || lowbit > highbit) {
usage();
exit(127);
}
break;
default:
usage();
exit(127);
}
}
if (optind != argc - 1) {
/* Should have exactly one argument */
usage();
exit(127);
}
reg = strtoul(argv[optind], &endarg, 0);
if (*endarg) {
printf("Failed to parse register number.\n");
exit(127);
}
if (cpu == -1) {
doing_for_all = 1;
rdmsr_on_all_cpus(reg);
}
else
rdmsr_on_cpu(reg, cpu);
exit(0);
}
void rdmsr_on_cpu(uint32_t reg, int cpu)
{
uint64_t data;
int fd;
char *pat;
int width;
char msr_file_name[64];
unsigned int bits;
sprintf(msr_file_name, "/dev/cpu/%d/msr", cpu);
fd = open(msr_file_name, O_RDONLY);
if (fd < 0) {
if (errno == ENXIO) {
if (doing_for_all)
return;
fprintf(stderr, "rdmsr: No CPU %d\n", cpu);
exit(2);
} else if (errno == EIO) {
fprintf(stderr, "rdmsr: CPU %d doesn't support MSRs\n",
cpu);
exit(3);
} else {
perror("rdmsr: open");
exit(127);
}
}
if (pread(fd, &data, sizeof data, reg) != sizeof data) {
if (errno == EIO) {
fprintf(stderr, "rdmsr: CPU %d cannot read "
"MSR 0x%08"PRIx32"\n",
cpu, reg);
exit(4);
} else {
perror("rdmsr: pread");
exit(127);
}
}
close(fd);
bits = highbit - lowbit + 1;
if (bits < 64) {
/* Show only part of register */
data >>= lowbit;
data &= (1ULL << bits) - 1;
}
pat = NULL;
width = 1; /* Default */
switch (mode) {
case mo_hex:
pat = "%*llx\n";
break;
case mo_chx:
pat = "%*llX\n";
break;
case mo_dec:
case mo_dec | mo_c:
case mo_dec | mo_fill | mo_c:
/* Make sure we get sign correct */
if (data & (1ULL << (bits - 1))) {
data &= ~(1ULL << (bits - 1));
data = -data;
}
pat = "%*lld\n";
break;
case mo_uns:
pat = "%*llu\n";
break;
case mo_oct:
pat = "%*llo\n";
break;
case mo_hex | mo_c:
pat = "0x%*llx\n";
break;
case mo_chx | mo_c:
pat = "0x%*llX\n";
break;
case mo_oct | mo_c:
pat = "0%*llo\n";
break;
case mo_uns | mo_c:
case mo_uns | mo_fill | mo_c:
pat = "%*lluU\n";
break;
case mo_hex | mo_fill:
pat = "%0*llx\n";
width = (bits + 3) / 4;
break;
case mo_chx | mo_fill:
pat = "%0*llX\n";
width = (bits + 3) / 4;
break;
case mo_dec | mo_fill:
/* Make sure we get sign correct */
if (data & (1ULL << (bits - 1))) {
data &= ~(1ULL << (bits - 1));
data = -data;
}
pat = "%0*lld\n";
width = decdigits[bits - 1] + 1;
break;
case mo_uns | mo_fill:
pat = "%0*llu\n";
width = decdigits[bits];
break;
case mo_oct | mo_fill:
pat = "%0*llo\n";
width = (bits + 2) / 3;
break;
case mo_hex | mo_fill | mo_c:
pat = "0x%0*llx\n";
width = (bits + 3) / 4;
break;
case mo_chx | mo_fill | mo_c:
pat = "0x%0*llX\n";
width = (bits + 3) / 4;
break;
case mo_oct | mo_fill | mo_c:
pat = "0%0*llo\n";
width = (bits + 2) / 3;
break;
case mo_raw:
case mo_raw | mo_fill:
fwrite(&data, sizeof data, 1, stdout);
break;
case mo_raw | mo_c:
case mo_raw | mo_fill | mo_c:
{
unsigned char *p = (unsigned char *)&data;
int i;
for (i = 0; i < sizeof data; i++) {
printf("%s0x%02x", i ? "," : "{",
(unsigned int)(*p++));
}
printf("}\n");
}
break;
default:
fprintf(stderr, "%s: Impossible case, line %d\n", program,
__LINE__);
exit(127);
}
if (width < 1)
width = 1;
if (pat) {
if (doing_for_all)
printf("CPU %d: ", cpu);
printf(pat, width, data);
}
return;
}
|