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
|
//
// Copyright (C) 2017 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
#include "update_engine/payload_consumer/fec_file_descriptor.h"
#include <base/logging.h>
namespace chromeos_update_engine {
bool FecFileDescriptor::Open(const char* path, int flags) {
return Open(path, flags, 0600);
}
bool FecFileDescriptor::Open(const char* path, int flags, mode_t mode) {
if (!fh_.open(path, flags, mode))
return false;
if (!fh_.has_ecc()) {
LOG(ERROR) << "No ECC data in the passed file";
fh_.close();
return false;
}
fec_status status;
if (!fh_.get_status(status)) {
LOG(ERROR) << "Couldn't load ECC status";
fh_.close();
return false;
}
dev_size_ = status.data_size;
return true;
}
ssize_t FecFileDescriptor::Read(void* buf, size_t count) {
return fh_.read(buf, count);
}
ssize_t FecFileDescriptor::Write(const void* buf, size_t count) {
errno = EROFS;
return -1;
}
off64_t FecFileDescriptor::Seek(off64_t offset, int whence) {
if (fh_.seek(offset, whence)) {
return offset;
}
return -1;
}
uint64_t FecFileDescriptor::BlockDevSize() {
return dev_size_;
}
bool FecFileDescriptor::BlkIoctl(int request,
uint64_t start,
uint64_t length,
int* result) {
// No IOCTL pass-through in this mode.
return false;
}
bool FecFileDescriptor::Close() {
return fh_.close();
}
} // namespace chromeos_update_engine
|