-
Notifications
You must be signed in to change notification settings - Fork 8
/
mei-disable.c
88 lines (72 loc) · 1.65 KB
/
mei-disable.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <inttypes.h>
#include <sys/ioctl.h>
#include <linux/mei.h>
#include <unistd.h>
#include <errno.h>
// Disable Intel ME engine.
// This was tested on Z87 board.
// Payload data taken from reverse-engineered fpt.exe v9.5.
#define _countof(a) (sizeof(a)/sizeof(*(a)))
static const char *DEV_NAME[] = { "/dev/mei", "/dev/mei0", "/dev/mei1", "/dev/mei2" };
struct guid
{
uint32_t data1;
uint16_t data2;
uint16_t data3;
uint8_t data4[8];
};
static const struct guid mkhi_guid = {
0x8E6A6715,
0x9ABC,
0x4043,
{0x88, 0xEF, 0x9E, 0x39, 0xC6, 0xF6, 0x3E, 0x0F}
};
uint8_t disable_cmd[] = {0xff,0x10,0x00,0x00};
int main(int argc, char *argv[])
{
int fd;
int rc;
int i;
struct mei_connect_client_data meidata;
for(int i=0;i<_countof(DEV_NAME);i++)
{
printf("Opening %s ... ",DEV_NAME[i]);
fd = open(DEV_NAME[i], O_RDWR);
if (fd < 0) {
printf("%s\n", strerror(errno));
}
}
if (fd<0)
{
printf("ME device not found\n");
return 1;
}
printf("opened\n");
memcpy(&meidata.in_client_uuid,&mkhi_guid,sizeof(mkhi_guid));
printf("Sending IOCTL_MEI_CONNECT_CLIENT .. ");
rc = ioctl(fd, IOCTL_MEI_CONNECT_CLIENT, &meidata);
if (rc < 0) {
printf("error\n"); fflush(stdout);
perror("ioctl");
close(fd);
return 1;
}
printf("ok\n");
printf("Writing disableme payload .. ");
rc = write(fd, disable_cmd, sizeof(disable_cmd));
if (rc < 0) {
printf("error\n"); fflush(stdout);
perror("write");
close(fd);
return 1;
}
fsync(fd);
printf("written %d bytes\n",rc);
printf("Sleep 1 sec\n",rc);
sleep(1);
close(fd);
return 0;
}