acpi/
builder.rs

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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use std::num::Wrapping;
use zerocopy::IntoBytes;

#[derive(Copy, Clone)]
pub struct OemInfo {
    pub oem_id: [u8; 6],
    pub oem_tableid: [u8; 8],
    pub oem_revision: u32,
    pub creator_id: [u8; 4],
    pub creator_revision: u32,
}

pub struct Table<'a> {
    revision: u8,
    oem_tableid: Option<[u8; 8]>,
    signature: [u8; 4],
    base: &'a [u8],
    extra: &'a [&'a [u8]],
}

impl<'a> Table<'a> {
    pub fn new<T: acpi_spec::Table>(revision: u8, oem_tableid: Option<[u8; 8]>, t: &'a T) -> Self {
        Self {
            revision,
            oem_tableid,
            signature: T::SIGNATURE,
            base: t.as_bytes(),
            extra: &[],
        }
    }

    pub fn new_dyn<T: acpi_spec::Table>(
        revision: u8,
        oem_tableid: Option<[u8; 8]>,
        t: &'a T,
        extra: &'a [&'a [u8]],
    ) -> Self {
        Self {
            revision,
            oem_tableid,
            signature: T::SIGNATURE,
            base: t.as_bytes(),
            extra,
        }
    }

    pub fn append_to_vec(&self, oem: &OemInfo, v: &mut Vec<u8>) -> usize {
        let len = size_of::<acpi_spec::Header>()
            + self.base.len()
            + self.extra.iter().fold(0, |x, y| x + y.len());
        let mut header = acpi_spec::Header {
            signature: self.signature,
            length: (len as u32).into(),
            revision: self.revision,
            checksum: 0,
            oem_id: oem.oem_id,
            oem_tableid: self.oem_tableid.unwrap_or(oem.oem_tableid),
            oem_revision: oem.oem_revision.into(),
            creator_id: u32::from_le_bytes(oem.creator_id).into(),
            creator_revision: oem.creator_revision.into(),
        };
        let sum = checksum(header.as_bytes())
            + checksum(self.base.as_bytes())
            + self.extra.iter().fold(Wrapping(0), |x, y| x + checksum(y));
        header.checksum = (-sum).0;
        let orig_len = v.len();
        v.extend_from_slice(header.as_bytes());
        v.extend_from_slice(self.base.as_bytes());
        for x in self.extra.iter() {
            v.extend_from_slice(x);
        }
        assert_eq!(checksum(&v[orig_len..]), Wrapping(0));
        len
    }

    pub fn to_vec(&self, oem: &OemInfo) -> Vec<u8> {
        let mut v = Vec::new();
        self.append_to_vec(oem, &mut v);
        v
    }
}

pub struct Builder {
    v: Vec<u8>,
    tables: Vec<u64>,
    base_addr: u64,
    oem: OemInfo,
}

fn checksum(data: &[u8]) -> Wrapping<u8> {
    let mut sum = Wrapping(0u8);
    for i in data.iter() {
        sum += Wrapping(*i);
    }
    sum
}

impl Builder {
    pub fn new(base_addr: u64, oem: OemInfo) -> Self {
        Builder {
            v: Vec::new(),
            tables: Vec::new(),
            base_addr,
            oem,
        }
    }

    pub fn append(&mut self, table: &Table<'_>) -> u64 {
        let addr = self.base_addr + self.v.len() as u64;
        let len = table.append_to_vec(&self.oem, &mut self.v);
        if len % 8 != 0 {
            self.v.extend_from_slice(&[0; 8][..8 - len % 8]);
        }
        if table.signature != *b"XSDT" && table.signature != *b"DSDT" {
            self.tables.push(addr);
        }
        addr
    }

    pub fn append_raw(&mut self, data: &[u8]) -> u64 {
        let offset = self.v.len() as u64;
        let signature = &data[0..4];
        if signature != *b"XSDT" && signature != *b"DSDT" {
            self.tables.push(self.base_addr + offset);
        }
        self.v.extend_from_slice(data);
        if data.len() % 8 != 0 {
            self.v.extend_from_slice(&[0; 8][..8 - data.len() % 8]);
        }
        self.base_addr + offset
    }

    fn rsdp(&self, xsdt: u64) -> acpi_spec::Rsdp {
        let mut r = acpi_spec::Rsdp {
            signature: *b"RSD PTR ",                     // [u8; 8], // "RSD PTR "
            checksum: 0,                                 // u8, // first 20 bytes
            oem_id: self.oem.oem_id,                     // [u8; 6],
            revision: 2,                                 // u8, // 2
            rsdt: 0,                                     // u32,
            length: size_of::<acpi_spec::Rsdp>() as u32, // u32,
            xsdt,                                        // u64,
            xchecksum: 0,                                // u8, // full checksum
            rsvd: [0, 0, 0],                             // [u8; 3],
        };
        let sum = checksum(&r.as_bytes()[0..20]);
        r.checksum = (-sum).0;
        let xsum = checksum(r.as_bytes());
        r.xchecksum = (-xsum).0;
        assert_eq!(checksum(&r.as_bytes()[0..20]), Wrapping(0));
        assert_eq!(checksum(r.as_bytes()), Wrapping(0));
        r
    }

    pub fn build(mut self) -> (Vec<u8>, Vec<u8>) {
        let tables = std::mem::take(&mut self.tables);
        let xsdt = self.append(&Table {
            signature: *b"XSDT",
            revision: 1,
            oem_tableid: None,
            base: tables.as_slice().as_bytes(),
            extra: &[],
        });
        let rsdp = self.rsdp(xsdt);
        (rsdp.as_bytes().to_vec(), self.v)
    }
}