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 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
|
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2016-2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package ubootenv_test
import (
"bytes"
"hash/crc32"
"io"
"os"
"path/filepath"
"strings"
"testing"
. "gopkg.in/check.v1"
"github.com/snapcore/snapd/bootloader/ubootenv"
)
// Hook up check.v1 into the "go test" runner
func Test(t *testing.T) { TestingT(t) }
type uenvTestSuite struct {
envFile string
}
var _ = Suite(&uenvTestSuite{})
func (u *uenvTestSuite) SetUpTest(c *C) {
u.envFile = filepath.Join(c.MkDir(), "uboot.env")
}
func (u *uenvTestSuite) TestSetNoDuplicate(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
env.Set("foo", "bar")
env.Set("foo", "bar")
c.Assert(env.String(), Equals, "foo=bar\n")
}
func (u *uenvTestSuite) TestOpenEnv(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
env.Set("foo", "bar")
c.Assert(env.String(), Equals, "foo=bar\n")
err = env.Save()
c.Assert(err, IsNil)
env2, err := ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env2.String(), Equals, "foo=bar\n")
}
func (u *uenvTestSuite) TestOpenEnvNoHeaderFlagByte(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: false})
c.Assert(err, IsNil)
env.Set("foo", "bar")
c.Assert(env.String(), Equals, "foo=bar\n")
err = env.Save()
c.Assert(err, IsNil)
env2, err := ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env2.String(), Equals, "foo=bar\n")
}
func (u *uenvTestSuite) TestOpenEnvBadEmpty(c *C) {
empty := filepath.Join(c.MkDir(), "empty.env")
err := os.WriteFile(empty, nil, 0644)
c.Assert(err, IsNil)
_, err = ubootenv.Open(empty)
c.Assert(err, ErrorMatches, `cannot open ".*": smaller than expected environment block`)
}
func (u *uenvTestSuite) TestOpenEnvBadCRC(c *C) {
corrupted := filepath.Join(c.MkDir(), "corrupted.env")
buf := make([]byte, 4096)
err := os.WriteFile(corrupted, buf, 0644)
c.Assert(err, IsNil)
_, err = ubootenv.Open(corrupted)
c.Assert(err, ErrorMatches, `cannot open ".*": bad CRC 0 != .*`)
}
func (u *uenvTestSuite) TestGetSimple(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
env.Set("foo", "bar")
c.Assert(env.Get("foo"), Equals, "bar")
}
func (u *uenvTestSuite) TestGetNoSuchEntry(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
c.Assert(env.Get("no-such-entry"), Equals, "")
}
func (u *uenvTestSuite) TestImport(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
r := strings.NewReader("foo=bar\n#comment\n\nbaz=baz")
err = env.Import(r)
c.Assert(err, IsNil)
// order is alphabetic
c.Assert(env.String(), Equals, "baz=baz\nfoo=bar\n")
}
func (u *uenvTestSuite) TestImportHasError(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
r := strings.NewReader("foxy")
err = env.Import(r)
c.Assert(err, ErrorMatches, "Invalid line: \"foxy\"")
}
func (u *uenvTestSuite) TestSetEmptyUnsets(c *C) {
env, err := ubootenv.Create(u.envFile, 4096, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
env.Set("foo", "bar")
c.Assert(env.String(), Equals, "foo=bar\n")
env.Set("foo", "")
c.Assert(env.String(), Equals, "")
}
func (u *uenvTestSuite) makeUbootEnvFromData(c *C, mockData []byte, useHeaderFlagByte bool) {
w := bytes.NewBuffer(nil)
crc := crc32.ChecksumIEEE(mockData)
w.Write(ubootenv.WriteUint32(crc))
if useHeaderFlagByte {
w.Write([]byte{0})
}
w.Write(mockData)
f, err := os.Create(u.envFile)
c.Assert(err, IsNil)
defer f.Close()
_, err = f.Write(w.Bytes())
c.Assert(err, IsNil)
}
// ensure that the data after \0\0 is discarded (except for crc)
func (u *uenvTestSuite) TestReadStopsAfterDoubleNull(c *C) {
mockData := []byte{
// foo=bar
0x66, 0x6f, 0x6f, 0x3d, 0x62, 0x61, 0x72,
// eof
0x00, 0x00,
// junk after eof as written by fw_setenv sometimes
// =b
0x3d, 62,
// empty
0xff, 0xff,
}
u.makeUbootEnvFromData(c, mockData, true)
env, err := ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "foo=bar\n")
c.Assert(env.HeaderFlagByte(), Equals, true)
u.makeUbootEnvFromData(c, mockData, false)
env, err = ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "foo=bar\n")
c.Assert(env.HeaderFlagByte(), Equals, false)
}
// ensure that the malformed data is not causing us to panic.
func (u *uenvTestSuite) TestErrorOnMalformedData(c *C) {
mockData := []byte{
// foo
0x66, 0x6f, 0x6f,
// eof
0x00, 0x00,
}
u.makeUbootEnvFromData(c, mockData, true)
env, err := ubootenv.Open(u.envFile)
c.Assert(err, ErrorMatches, `cannot open ".*": cannot parse line "foo" as key=value pair`)
c.Assert(env, IsNil)
u.makeUbootEnvFromData(c, mockData, false)
env, err = ubootenv.Open(u.envFile)
c.Assert(err, ErrorMatches, `cannot open ".*": cannot parse line "foo" as key=value pair`)
c.Assert(env, IsNil)
}
// ensure that the malformed data is not causing us to panic.
func (u *uenvTestSuite) TestOpenBestEffort(c *C) {
testCases := map[string][]byte{"noise": {
// key1=value1
0x6b, 0x65, 0x79, 0x31, 0x3d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x31, 0x00,
// foo
0x66, 0x6f, 0x6f, 0x00,
// key2=value2
0x6b, 0x65, 0x79, 0x32, 0x3d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x32, 0x00,
// eof
0x00, 0x00,
}, "no-eof": {
// key1=value1
0x6b, 0x65, 0x79, 0x31, 0x3d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x31, 0x00,
// key2=value2
0x6b, 0x65, 0x79, 0x32, 0x3d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x32, 0x00,
// NO EOF!
}, "noise-eof": {
// key1=value1
0x6b, 0x65, 0x79, 0x31, 0x3d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x31, 0x00,
// key2=value2
0x6b, 0x65, 0x79, 0x32, 0x3d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x32, 0x00,
// foo
0x66, 0x6f, 0x6f, 0x00,
}}
for testName, mockData := range testCases {
u.makeUbootEnvFromData(c, mockData, true)
env, err := ubootenv.OpenWithFlags(u.envFile, ubootenv.OpenBestEffort)
c.Assert(err, IsNil, Commentf(testName))
c.Check(env.String(), Equals, "key1=value1\nkey2=value2\n", Commentf(testName))
c.Assert(env.HeaderFlagByte(), Equals, true)
u.makeUbootEnvFromData(c, mockData, false)
env, err = ubootenv.OpenWithFlags(u.envFile, ubootenv.OpenBestEffort)
c.Assert(err, IsNil, Commentf(testName))
c.Check(env.String(), Equals, "key1=value1\nkey2=value2\n", Commentf(testName))
c.Assert(env.HeaderFlagByte(), Equals, false)
}
}
func (u *uenvTestSuite) TestErrorOnMissingKeyInKeyValuePair(c *C) {
mockData := []byte{
// =foo
0x3d, 0x66, 0x6f, 0x6f,
// eof
0x00, 0x00,
}
u.makeUbootEnvFromData(c, mockData, true)
env, err := ubootenv.Open(u.envFile)
c.Assert(err, ErrorMatches, `cannot open ".*": cannot parse line "=foo" as key=value pair`)
c.Assert(env, IsNil)
u.makeUbootEnvFromData(c, mockData, false)
env, err = ubootenv.Open(u.envFile)
c.Assert(err, ErrorMatches, `cannot open ".*": cannot parse line "=foo" as key=value pair`)
c.Assert(env, IsNil)
}
func (u *uenvTestSuite) TestReadEmptyFile(c *C) {
mockData := []byte{
// eof
0x00, 0x00,
// empty
0xff, 0xff,
}
u.makeUbootEnvFromData(c, mockData, true)
env, err := ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "")
c.Assert(env.HeaderFlagByte(), Equals, true)
u.makeUbootEnvFromData(c, mockData, false)
env, err = ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "")
c.Assert(env.HeaderFlagByte(), Equals, false)
}
func (u *uenvTestSuite) TestWritesEmptyFileWithDoubleNewline(c *C) {
env, err := ubootenv.Create(u.envFile, 12, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
err = env.Save()
c.Assert(err, IsNil)
r, err := os.Open(u.envFile)
c.Assert(err, IsNil)
defer r.Close()
content, err := io.ReadAll(r)
c.Assert(err, IsNil)
c.Assert(content, DeepEquals, []byte{
// crc
0x11, 0x38, 0xb3, 0x89,
// redundant
0x0,
// eof
0x0, 0x0,
// footer
0xff, 0xff, 0xff, 0xff, 0xff,
})
env, err = ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "")
c.Assert(env.HeaderFlagByte(), Equals, true)
}
func (u *uenvTestSuite) TestWritesEmptyFileWithDoubleNewlineNoHeaderFlagByte(c *C) {
env, err := ubootenv.Create(u.envFile, 11, ubootenv.CreateOptions{HeaderFlagByte: false})
c.Assert(err, IsNil)
err = env.Save()
c.Assert(err, IsNil)
r, err := os.Open(u.envFile)
c.Assert(err, IsNil)
defer r.Close()
content, err := io.ReadAll(r)
c.Assert(err, IsNil)
c.Assert(content, DeepEquals, []byte{
// crc
0x11, 0x38, 0xb3, 0x89,
// eof
0x0, 0x0,
// footer
0xff, 0xff, 0xff, 0xff, 0xff,
})
env, err = ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "")
c.Assert(env.HeaderFlagByte(), Equals, false)
}
func (u *uenvTestSuite) TestWritesContentCorrectly(c *C) {
totalSize := 16
env, err := ubootenv.Create(u.envFile, totalSize, ubootenv.CreateOptions{HeaderFlagByte: true})
c.Assert(err, IsNil)
env.Set("a", "b")
env.Set("c", "d")
err = env.Save()
c.Assert(err, IsNil)
r, err := os.Open(u.envFile)
c.Assert(err, IsNil)
defer r.Close()
content, err := io.ReadAll(r)
c.Assert(err, IsNil)
c.Assert(content, DeepEquals, []byte{
// crc
0xc7, 0xd9, 0x6b, 0xc5,
// redundant
0x0,
// a=b
0x61, 0x3d, 0x62,
// eol
0x0,
// c=d
0x63, 0x3d, 0x64,
// eof
0x0, 0x0,
// footer
0xff, 0xff,
})
env, err = ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "a=b\nc=d\n")
c.Assert(env.Size(), Equals, totalSize)
c.Assert(env.HeaderFlagByte(), Equals, true)
}
func (u *uenvTestSuite) TestWritesContentCorrectlyNoHeaderFlagByte(c *C) {
totalSize := 15
env, err := ubootenv.Create(u.envFile, totalSize, ubootenv.CreateOptions{HeaderFlagByte: false})
c.Assert(err, IsNil)
env.Set("a", "b")
env.Set("c", "d")
err = env.Save()
c.Assert(err, IsNil)
r, err := os.Open(u.envFile)
c.Assert(err, IsNil)
defer r.Close()
content, err := io.ReadAll(r)
c.Assert(err, IsNil)
c.Assert(content, DeepEquals, []byte{
// crc
0xc7, 0xd9, 0x6b, 0xc5,
// a=b
0x61, 0x3d, 0x62,
// eol
0x0,
// c=d
0x63, 0x3d, 0x64,
// eof
0x0, 0x0,
// footer
0xff, 0xff,
})
env, err = ubootenv.Open(u.envFile)
c.Assert(err, IsNil)
c.Assert(env.String(), Equals, "a=b\nc=d\n")
c.Assert(env.Size(), Equals, totalSize)
c.Assert(env.HeaderFlagByte(), Equals, false)
}
|