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
|
// Copyright 2024 Huawei Cloud Computing Technology Co., Ltd.
//
// 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.
#ifndef BOOTSTRAP_BUILD_TOOL
#include "src/buildtool/main/archive.hpp"
#include <unistd.h>
#include "src/buildtool/file_system/git_repo.hpp"
#include "src/buildtool/logging/log_level.hpp"
#include "src/buildtool/logging/logger.hpp"
#include "src/utils/cpp/hex_string.hpp"
extern "C" {
#include <archive.h>
#include <archive_entry.h>
}
namespace {
void archive_write_closer(archive* a) {
if (a != nullptr) {
archive_write_close(a);
archive_write_free(a);
}
}
void archive_entry_cleanup(archive_entry* entry) {
if (entry != nullptr) {
archive_entry_free(entry);
}
}
// NOLINTNEXTLINE(misc-no-recursion)
auto add_to_archive(archive* archive,
gsl::not_null<IExecutionApi*> const& api,
const Artifact::ObjectInfo& artifact,
const std::filesystem::path& location) -> bool {
auto constexpr kExecutable = 0555;
auto constexpr kFile = 0444;
auto payload = api->RetrieveToMemory(artifact);
if (not payload) {
Logger::Log(LogLevel::Error,
"Failed to retrieve artifact {}",
artifact.ToString());
return false;
}
switch (artifact.type) {
case ObjectType::File:
case ObjectType::Executable: {
std::unique_ptr<archive_entry, decltype(&archive_entry_cleanup)>
entry{archive_entry_new(), archive_entry_cleanup};
archive_entry_set_pathname(entry.get(), location.string().c_str());
archive_entry_set_size(entry.get(), payload->size());
archive_entry_set_filetype(entry.get(), AE_IFREG);
archive_entry_set_perm(
entry.get(),
artifact.type == ObjectType::Executable ? kExecutable : kFile);
archive_write_header(archive, entry.get());
auto data = *payload;
archive_write_data(archive, data.c_str(), data.size());
} break;
case ObjectType::Symlink: {
std::unique_ptr<archive_entry, decltype(&archive_entry_cleanup)>
entry{archive_entry_new(), archive_entry_cleanup};
archive_entry_set_pathname(entry.get(), location.string().c_str());
archive_entry_set_filetype(entry.get(), AE_IFLNK);
archive_entry_set_symlink(entry.get(), payload->c_str());
archive_write_header(archive, entry.get());
} break;
case ObjectType::Tree: {
auto git_tree = GitRepo::ReadTreeData(
*payload,
artifact.digest.hash(),
[](auto const& /*unused*/) { return true; },
/*is_hex_id=*/true);
if (not git_tree) {
Logger::Log(LogLevel::Error,
"Failed to parse {} as git tree for path {}",
artifact.ToString(),
location.string());
return false;
}
// Reorder entries to be keyed and sorted by name
std::map<std::string, Artifact::ObjectInfo> tree{};
for (auto const& [hash, entries] : *git_tree) {
auto hex_hash = ToHexString(hash);
for (auto const& entry : entries) {
tree[entry.name] = Artifact::ObjectInfo{
.digest = ArtifactDigest(
hex_hash, 0, entry.type == ObjectType::Tree),
.type = entry.type,
.failed = false};
}
}
for (auto const& [name, obj] : tree) {
if (not add_to_archive(archive, api, obj, location / name)) {
return false;
}
}
} break;
}
return true;
}
} // namespace
[[nodiscard]] auto GenerateArchive(
gsl::not_null<IExecutionApi*> const& api,
const Artifact::ObjectInfo& artifact,
const std::optional<std::filesystem::path>& output_path) -> bool {
constexpr int kTarBlockSize = 512;
std::unique_ptr<archive, decltype(&archive_write_closer)> archive{
archive_write_new(), archive_write_closer};
if (archive == nullptr) {
Logger::Log(LogLevel::Error,
"Internal error: Call to archive_write_new() failed");
return false;
}
if (archive_write_set_format_pax_restricted(archive.get()) != ARCHIVE_OK) {
Logger::Log(LogLevel::Error,
"Internal error: Call to "
"archive_write_set_format_pax_restriced() failed");
return false;
}
if (archive_write_set_bytes_per_block(archive.get(), kTarBlockSize) !=
ARCHIVE_OK) {
Logger::Log(LogLevel::Error,
"Internal error: Call to "
"archive_write_set_bytes_per_block() failed");
return false;
}
if (output_path) {
if (archive_write_open_filename(
archive.get(), output_path->string().c_str()) != ARCHIVE_OK) {
Logger::Log(LogLevel::Error,
"Failed to open archive for writing at {}",
output_path->string());
return false;
}
}
else {
if (archive_write_open_fd(archive.get(), STDOUT_FILENO) != ARCHIVE_OK) {
Logger::Log(LogLevel::Error,
"Failed to open stdout for writing archive to");
return false;
}
}
if (not add_to_archive(
archive.get(), api, artifact, std::filesystem::path{""})) {
return false;
}
if (output_path) {
Logger::Log(LogLevel::Info,
"Archive of {} was installed to {}",
artifact.ToString(),
output_path->string());
}
return true;
}
#endif
|