1 /*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include "Preprocessor.h"
18
19 #include <err.h>
20 #include <fcntl.h>
21 #include <fts.h>
22 #include <libgen.h>
23 #include <string.h>
24 #include <sys/stat.h>
25 #include <sys/types.h>
26 #include <unistd.h>
27
28 #include <deque>
29 #include <fstream>
30 #include <string>
31 #include <unordered_map>
32
33 #include <llvm/ADT/StringRef.h>
34 #include <llvm/ADT/Twine.h>
35 #include <llvm/Support/FileSystem.h>
36 #include <llvm/Support/Path.h>
37
38 #include "Arch.h"
39 #include "DeclarationDatabase.h"
40 #include "versioner.h"
41
42 using namespace std::string_literals;
43
calculateRequiredGuard(const Declaration & declaration)44 static DeclarationAvailability calculateRequiredGuard(const Declaration& declaration) {
45 // To avoid redundant macro guards, the availability calculated by this function is the set
46 // difference of 'targets marked-available' from 'targets the declaration is visible in'.
47 // For example, a declaration that is visible always and introduced in 9 would return introduced
48 // in 9, but the same declaration, except only visible in 9+ would return an empty
49 // DeclarationAvailability.
50
51 // This currently only handles __INTRODUCED_IN.
52 // TODO: Do the same for __REMOVED_IN.
53 int global_min_api_visible = 0;
54 ArchMap<int> arch_visibility;
55
56 for (const auto& it : declaration.availability) {
57 const CompilationType& type = it.first;
58
59 if (global_min_api_visible == 0 || global_min_api_visible > type.api_level) {
60 global_min_api_visible = type.api_level;
61 }
62
63 if (arch_visibility[type.arch] == 0 || arch_visibility[type.arch] > type.api_level) {
64 arch_visibility[type.arch] = type.api_level;
65 }
66 }
67
68 DeclarationAvailability decl_av;
69 if (!declaration.calculateAvailability(&decl_av)) {
70 fprintf(stderr, "versioner: failed to calculate availability while preprocessing:\n");
71 declaration.dump("", stderr, 2);
72 exit(1);
73 }
74
75 D("Calculating required guard for %s:\n", declaration.name.c_str());
76 D(" Declaration availability: %s\n", to_string(decl_av).c_str());
77
78 if (verbose) {
79 std::string arch_visibility_str;
80 for (Arch arch : supported_archs) {
81 if (arch_visibility[arch] != 0) {
82 arch_visibility_str += to_string(arch);
83 arch_visibility_str += ": ";
84 arch_visibility_str += std::to_string(arch_visibility[arch]);
85 arch_visibility_str += ", ";
86 }
87 }
88 if (!arch_visibility_str.empty()) {
89 arch_visibility_str.resize(arch_visibility_str.size() - 2);
90 }
91 D(" Declaration visibility: global = %d, arch = %s\n", global_min_api_visible,
92 arch_visibility_str.c_str());
93 }
94
95 DeclarationAvailability result = decl_av;
96 if (result.global_availability.introduced <= global_min_api_visible) {
97 result.global_availability.introduced = 0;
98 }
99
100 for (Arch arch : supported_archs) {
101 if (result.arch_availability[arch].introduced <= arch_visibility[arch]) {
102 result.arch_availability[arch].introduced = 0;
103 }
104 }
105
106 D(" Calculated result: %s\n", to_string(result).c_str());
107 D("\n");
108
109 return result;
110 }
111
readFileLines(const std::string & path)112 static std::deque<std::string> readFileLines(const std::string& path) {
113 std::ifstream is(path.c_str());
114 std::deque<std::string> result;
115 std::string line;
116
117 while (std::getline(is, line)) {
118 result.push_back(std::move(line));
119 }
120
121 return result;
122 }
123
writeFileLines(const std::string & path,const std::deque<std::string> & lines)124 static void writeFileLines(const std::string& path, const std::deque<std::string>& lines) {
125 if (!mkdirs(dirname(path))) {
126 err(1, "failed to create directory '%s'", dirname(path).c_str());
127 }
128
129 std::ofstream os(path.c_str(), std::ios_base::out | std::ios_base::trunc);
130
131 for (const std::string& line : lines) {
132 os << line << "\n";
133 }
134 }
135
136 using GuardMap = std::map<Location, DeclarationAvailability>;
137
generateGuardCondition(const DeclarationAvailability & avail)138 static std::string generateGuardCondition(const DeclarationAvailability& avail) {
139 // Logically orred expressions that constitute the macro guard.
140 std::vector<std::string> expressions;
141 static const std::vector<std::pair<std::string, std::set<Arch>>> arch_sets = {
142 { "", supported_archs },
143 { "!defined(__LP64__)", { Arch::arm, Arch::x86 } },
144 { "defined(__LP64__)", { Arch::arm64, Arch::x86_64 } },
145 };
146 std::map<Arch, std::string> individual_archs = {
147 { Arch::arm, "defined(__arm__)" },
148 { Arch::arm64, "defined(__aarch64__)" },
149 { Arch::x86, "defined(__i386__)" },
150 { Arch::x86_64, "defined(__x86_64__)" },
151 };
152
153 auto generate_guard = [](const std::string& arch_expr, int min_version) {
154 if (min_version == 0) {
155 return arch_expr;
156 }
157 return arch_expr + " && __ANDROID_API__ >= " + std::to_string(min_version);
158 };
159
160 D("Generating guard for availability: %s\n", to_string(avail).c_str());
161 if (!avail.global_availability.empty()) {
162 for (Arch arch : supported_archs) {
163 if (!avail.arch_availability[arch].empty()) {
164 errx(1, "attempted to generate guard with global and per-arch values: %s",
165 to_string(avail).c_str());
166 }
167 }
168
169 if (avail.global_availability.introduced == 0) {
170 fprintf(stderr, "warning: attempted to generate guard with empty availability: %s\n",
171 to_string(avail).c_str());
172 return "";
173 }
174
175 if (avail.global_availability.introduced <= 9) {
176 return "";
177 }
178
179 return "__ANDROID_API__ >= "s + std::to_string(avail.global_availability.introduced);
180 }
181
182 for (const auto& it : arch_sets) {
183 const std::string& arch_expr = it.first;
184 const std::set<Arch>& archs = it.second;
185
186 D(" Checking arch set '%s'\n", arch_expr.c_str());
187
188 int version = avail.arch_availability[*it.second.begin()].introduced;
189
190 // The maximum min_version of the set.
191 int max_min_version = 0;
192 for (Arch arch : archs) {
193 if (arch_min_api[arch] > max_min_version) {
194 max_min_version = arch_min_api[arch];
195 }
196
197 if (avail.arch_availability[arch].introduced != version) {
198 D(" Skipping arch set, availability for %s doesn't match %s\n",
199 to_string(*it.second.begin()).c_str(), to_string(arch).c_str());
200 goto skip;
201 }
202 }
203
204 // If all of the archs in the set have a min_api that satifies version, elide the check.
205 if (max_min_version >= version) {
206 version = 0;
207 }
208
209 expressions.emplace_back(generate_guard(arch_expr, version));
210
211 D(" Generated expression '%s'\n", expressions.rbegin()->c_str());
212
213 for (Arch arch : archs) {
214 individual_archs.erase(arch);
215 }
216
217 skip:
218 continue;
219 }
220
221 for (const auto& it : individual_archs) {
222 const std::string& arch_expr = it.second;
223 int introduced = avail.arch_availability[it.first].introduced;
224 if (introduced == 0) {
225 expressions.emplace_back(arch_expr);
226 } else {
227 expressions.emplace_back(generate_guard(arch_expr, introduced));
228 }
229 }
230
231 if (expressions.size() == 0) {
232 errx(1, "generated empty guard for availability %s", to_string(avail).c_str());
233 } else if (expressions.size() == 1) {
234 return expressions[0];
235 }
236
237 return "("s + Join(expressions, ") || (") + ")";
238 }
239
240 // Assumes that nothing weird is happening (e.g. having the semicolon be in a macro).
findNextSemicolon(const std::deque<std::string> & lines,FileLocation start)241 static FileLocation findNextSemicolon(const std::deque<std::string>& lines, FileLocation start) {
242 unsigned current_line = start.line;
243 unsigned current_column = start.column;
244 while (current_line <= lines.size()) {
245 size_t result = lines[current_line - 1].find_first_of(';', current_column - 1);
246
247 if (result != std::string::npos) {
248 FileLocation loc = {
249 .line = current_line,
250 .column = unsigned(result) + 1,
251 };
252
253 return loc;
254 }
255
256 ++current_line;
257 current_column = 0;
258 }
259
260 errx(1, "failed to find semicolon starting from %u:%u", start.line, start.column);
261 }
262
263 // Merge adjacent blocks with identical guards.
mergeGuards(std::deque<std::string> & file_lines,GuardMap & guard_map)264 static void mergeGuards(std::deque<std::string>& file_lines, GuardMap& guard_map) {
265 if (guard_map.size() < 2) {
266 return;
267 }
268
269 auto current = guard_map.begin();
270 auto next = current;
271 ++next;
272
273 while (next != guard_map.end()) {
274 if (current->second != next->second) {
275 ++current;
276 ++next;
277 continue;
278 }
279
280 // Scan from the end of current to the beginning of next.
281 bool in_block_comment = false;
282 bool valid = true;
283
284 FileLocation current_location = current->first.end;
285 FileLocation end_location = next->first.start;
286
287 auto nextLine = [¤t_location]() {
288 ++current_location.line;
289 current_location.column = 1;
290 };
291
292 auto nextCol = [&file_lines, ¤t_location, &nextLine]() {
293 if (current_location.column == file_lines[current_location.line - 1].length()) {
294 nextLine();
295 } else {
296 ++current_location.column;
297 }
298 };
299
300 // The end location will point to the semicolon, which we don't want to read, so skip it.
301 nextCol();
302
303 while (current_location < end_location) {
304 const std::string& line = file_lines[current_location.line - 1];
305 size_t line_index = current_location.column - 1;
306
307 if (in_block_comment) {
308 size_t pos = line.find("*/", line_index);
309 if (pos == std::string::npos) {
310 D("Didn't find block comment terminator, skipping line\n");
311 nextLine();
312 continue;
313 } else {
314 D("Found block comment terminator\n");
315 in_block_comment = false;
316 current_location.column = pos + 2;
317 nextCol();
318 continue;
319 }
320 } else {
321 size_t pos = line.find_first_not_of(" \t", line_index);
322 if (pos == std::string::npos) {
323 nextLine();
324 continue;
325 }
326
327 current_location.column = pos + 1;
328 if (line[pos] != '/') {
329 valid = false;
330 break;
331 }
332
333 nextCol();
334 if (line.length() <= pos + 1) {
335 // Trailing slash at the end of a line?
336 D("Trailing slash at end of line\n");
337 valid = false;
338 break;
339 }
340
341 if (line[pos + 1] == '/') {
342 // C++ style comment
343 nextLine();
344 } else if (line[pos + 1] == '*') {
345 // Block comment
346 nextCol();
347 in_block_comment = true;
348 D("In a block comment\n");
349 } else {
350 // Garbage?
351 D("Unexpected output after /: %s\n", line.substr(pos).c_str());
352 valid = false;
353 break;
354 }
355 }
356 }
357
358 if (!valid) {
359 D("Not merging blocks %s and %s\n", to_string(current->first).c_str(),
360 to_string(next->first).c_str());
361 ++current;
362 ++next;
363 continue;
364 }
365
366 D("Merging blocks %s and %s\n", to_string(current->first).c_str(),
367 to_string(next->first).c_str());
368
369 Location merged = current->first;
370 merged.end = next->first.end;
371
372 DeclarationAvailability avail = current->second;
373
374 guard_map.erase(current);
375 guard_map.erase(next);
376 bool unused;
377 std::tie(current, unused) = guard_map.insert(std::make_pair(merged, avail));
378 next = current;
379 ++next;
380 }
381 }
382
rewriteFile(const std::string & output_path,std::deque<std::string> & file_lines,const GuardMap & guard_map)383 static void rewriteFile(const std::string& output_path, std::deque<std::string>& file_lines,
384 const GuardMap& guard_map) {
385 for (auto it = guard_map.rbegin(); it != guard_map.rend(); ++it) {
386 const Location& loc = it->first;
387 const DeclarationAvailability& avail = it->second;
388
389 std::string condition = generateGuardCondition(avail);
390 if (condition.empty()) {
391 continue;
392 }
393
394 std::string prologue = "\n#if "s + condition + "\n";
395 std::string epilogue = "\n#endif /* " + condition + " */\n";
396
397 file_lines[loc.end.line - 1].insert(loc.end.column, epilogue);
398 file_lines[loc.start.line - 1].insert(loc.start.column - 1, prologue);
399 }
400
401 if (verbose) {
402 printf("Preprocessing %s...\n", output_path.c_str());
403 }
404 writeFileLines(output_path, file_lines);
405 }
406
preprocessHeaders(const std::string & dst_dir,const std::string & src_dir,HeaderDatabase * database)407 bool preprocessHeaders(const std::string& dst_dir, const std::string& src_dir,
408 HeaderDatabase* database) {
409 std::unordered_map<std::string, GuardMap> guards;
410 std::unordered_map<std::string, std::deque<std::string>> file_lines;
411
412 for (const auto& symbol_it : database->symbols) {
413 const Symbol& symbol = symbol_it.second;
414
415 for (const auto& decl_it : symbol.declarations) {
416 const Location& location = decl_it.first;
417 const Declaration& decl = decl_it.second;
418
419 if (decl.no_guard) {
420 // No guard required.
421 continue;
422 }
423
424 DeclarationAvailability macro_guard = calculateRequiredGuard(decl);
425 if (!macro_guard.empty()) {
426 guards[location.filename][location] = macro_guard;
427 }
428 }
429 }
430
431 // Copy over the original headers before preprocessing.
432 char* fts_paths[2] = { const_cast<char*>(src_dir.c_str()), nullptr };
433 std::unique_ptr<FTS, decltype(&fts_close)> fts(fts_open(fts_paths, FTS_LOGICAL, nullptr),
434 fts_close);
435 if (!fts) {
436 err(1, "failed to open directory %s", src_dir.c_str());
437 }
438
439 while (FTSENT* ent = fts_read(fts.get())) {
440 llvm::StringRef path = ent->fts_path;
441 if (!path.startswith(src_dir)) {
442 err(1, "path '%s' doesn't start with source dir '%s'", ent->fts_path, src_dir.c_str());
443 }
444
445 if (ent->fts_info != FTS_F) {
446 continue;
447 }
448
449 std::string rel_path = path.substr(src_dir.length() + 1).str();
450 std::string dst_path = dst_dir + "/" + rel_path;
451 llvm::StringRef parent_path = llvm::sys::path::parent_path(dst_path);
452 if (llvm::sys::fs::create_directories(parent_path)) {
453 errx(1, "failed to ensure existence of directory '%s'", parent_path.str().c_str());
454 }
455 if (llvm::sys::fs::copy_file(path, dst_path)) {
456 errx(1, "failed to copy '%s/%s' to '%s'", src_dir.c_str(), path.str().c_str(),
457 dst_path.c_str());
458 }
459 }
460
461 for (const auto& file_it : guards) {
462 file_lines[file_it.first] = readFileLines(file_it.first);
463 }
464
465 for (auto& file_it : guards) {
466 llvm::StringRef file_path = file_it.first;
467 GuardMap& orig_guard_map = file_it.second;
468
469 // The end positions given to us are the end of the declaration, which is some point before the
470 // semicolon. Fix up the end positions by scanning for the next semicolon.
471 GuardMap guard_map;
472 for (const auto& it : orig_guard_map) {
473 Location loc = it.first;
474 loc.end = findNextSemicolon(file_lines[file_path.str()], loc.end);
475 guard_map[loc] = it.second;
476 }
477
478 // TODO: Make sure that the Locations don't overlap.
479 // TODO: Merge adjacent non-identical guards.
480 mergeGuards(file_lines[file_path.str()], guard_map);
481
482 if (!file_path.startswith(src_dir)) {
483 errx(1, "input file %s is not in %s\n", file_path.str().c_str(), src_dir.c_str());
484 }
485
486 // rel_path has a leading slash.
487 llvm::StringRef rel_path = file_path.substr(src_dir.size(), file_path.size() - src_dir.size());
488 std::string output_path = (llvm::Twine(dst_dir) + rel_path).str();
489
490 rewriteFile(output_path, file_lines[file_path.str()], guard_map);
491 }
492
493 return true;
494 }
495