forked from dankamongmen/x86info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rdmsr-linux.c
65 lines (54 loc) · 1.11 KB
/
rdmsr-linux.c
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
/*
* Licensed under the terms of the GNU GPL License version 2.
*
* Linux specific routines for reading MSRs.
*/
#ifdef __linux__
#define _LARGEFILE64_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <x86info.h>
int read_msr(int cpu, unsigned int idx, unsigned long long *val)
{
char cpuname[16];
unsigned char buffer[8];
int fh;
static int nodriver=0;
unsigned int *ptr = (unsigned int *) buffer;
if (nodriver==1)
return 0;
(void)snprintf(cpuname, sizeof(cpuname), "/dev/cpu/%d/msr", cpu);
fh = open(cpuname, O_RDONLY);
if (fh == -1) {
perror(cpuname);
nodriver=1;
return 0;
}
if (lseek64(fh, (off64_t) idx, SEEK_CUR) == -1) {
perror("lseek");
exit(EXIT_FAILURE);
}
if (fh != -1) {
unsigned long long lo, hi;
if (read(fh, &buffer[0], 8) != 8) {
if (close(fh) == -1) {
perror("close");
exit(EXIT_FAILURE);
}
return 0;
}
lo = *ptr;
hi = *(++ptr);
*val = (hi << 32) | lo;
}
if (close(fh) == -1) {
perror("close");
exit(EXIT_FAILURE);
}
return 1;
}
#endif /* __linux__ */