1 //===- ScriptLexer.cpp ----------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines a lexer for the linker script.
10 //
11 // The linker script's grammar is not complex but ambiguous due to the
12 // lack of the formal specification of the language. What we are trying to
13 // do in this and other files in LLD is to make a "reasonable" linker
14 // script processor.
15 //
16 // Among simplicity, compatibility and efficiency, we put the most
17 // emphasis on simplicity when we wrote this lexer. Compatibility with the
18 // GNU linkers is important, but we did not try to clone every tiny corner
19 // case of their lexers, as even ld.bfd and ld.gold are subtly different
20 // in various corner cases. We do not care much about efficiency because
21 // the time spent in parsing linker scripts is usually negligible.
22 //
23 // Our grammar of the linker script is LL(2), meaning that it needs at
24 // most two-token lookahead to parse. The only place we need two-token
25 // lookahead is labels in version scripts, where we need to parse "local :"
26 // as if "local:".
27 //
28 // Overall, this lexer works fine for most linker scripts. There might
29 // be room for improving compatibility, but that's probably not at the
30 // top of our todo list.
31 //
32 //===----------------------------------------------------------------------===//
33 
34 #include "ScriptLexer.h"
35 #include "lld/Common/ErrorHandler.h"
36 #include "llvm/ADT/Twine.h"
37 
38 using namespace llvm;
39 using namespace lld;
40 using namespace lld::elf;
41 
42 // Returns a whole line containing the current token.
43 StringRef ScriptLexer::getLine() {
44   StringRef S = getCurrentMB().getBuffer();
45   StringRef Tok = Tokens[Pos - 1];
46 
47   size_t Pos = S.rfind('\n', Tok.data() - S.data());
48   if (Pos != StringRef::npos)
49     S = S.substr(Pos + 1);
50   return S.substr(0, S.find_first_of("\r\n"));
51 }
52 
53 // Returns 1-based line number of the current token.
54 size_t ScriptLexer::getLineNumber() {
55   StringRef S = getCurrentMB().getBuffer();
56   StringRef Tok = Tokens[Pos - 1];
57   return S.substr(0, Tok.data() - S.data()).count('\n') + 1;
58 }
59 
60 // Returns 0-based column number of the current token.
61 size_t ScriptLexer::getColumnNumber() {
62   StringRef Tok = Tokens[Pos - 1];
63   return Tok.data() - getLine().data();
64 }
65 
66 std::string ScriptLexer::getCurrentLocation() {
67   std::string Filename = getCurrentMB().getBufferIdentifier();
68   return (Filename + ":" + Twine(getLineNumber())).str();
69 }
70 
71 ScriptLexer::ScriptLexer(MemoryBufferRef MB) { tokenize(MB); }
72 
73 // We don't want to record cascading errors. Keep only the first one.
74 void ScriptLexer::setError(const Twine &Msg) {
75   if (errorCount())
76     return;
77 
78   std::string S = (getCurrentLocation() + ": " + Msg).str();
79   if (Pos)
80     S += "\n>>> " + getLine().str() + "\n>>> " +
81          std::string(getColumnNumber(), ' ') + "^";
82   error(S);
83 }
84 
85 // Split S into linker script tokens.
86 void ScriptLexer::tokenize(MemoryBufferRef MB) {
87   std::vector<StringRef> Vec;
88   MBs.push_back(MB);
89   StringRef S = MB.getBuffer();
90   StringRef Begin = S;
91 
92   for (;;) {
93     S = skipSpace(S);
94     if (S.empty())
95       break;
96 
97     // Quoted token. Note that double-quote characters are parts of a token
98     // because, in a glob match context, only unquoted tokens are interpreted
99     // as glob patterns. Double-quoted tokens are literal patterns in that
100     // context.
101     if (S.startswith("\"")) {
102       size_t E = S.find("\"", 1);
103       if (E == StringRef::npos) {
104         StringRef Filename = MB.getBufferIdentifier();
105         size_t Lineno = Begin.substr(0, S.data() - Begin.data()).count('\n');
106         error(Filename + ":" + Twine(Lineno + 1) + ": unclosed quote");
107         return;
108       }
109 
110       Vec.push_back(S.take_front(E + 1));
111       S = S.substr(E + 1);
112       continue;
113     }
114 
115     // ">foo" is parsed to ">" and "foo", but ">>" is parsed to ">>".
116     // "|", "||", "&" and "&&" are different operators.
117     if (S.startswith("<<") || S.startswith("<=") || S.startswith(">>") ||
118         S.startswith(">=") || S.startswith("||") || S.startswith("&&")) {
119       Vec.push_back(S.substr(0, 2));
120       S = S.substr(2);
121       continue;
122     }
123 
124     // Unquoted token. This is more relaxed than tokens in C-like language,
125     // so that you can write "file-name.cpp" as one bare token, for example.
126     size_t Pos = S.find_first_not_of(
127         "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
128         "0123456789_.$/\\~=+[]*?-!^:");
129 
130     // A character that cannot start a word (which is usually a
131     // punctuation) forms a single character token.
132     if (Pos == 0)
133       Pos = 1;
134     Vec.push_back(S.substr(0, Pos));
135     S = S.substr(Pos);
136   }
137 
138   Tokens.insert(Tokens.begin() + Pos, Vec.begin(), Vec.end());
139 }
140 
141 // Skip leading whitespace characters or comments.
142 StringRef ScriptLexer::skipSpace(StringRef S) {
143   for (;;) {
144     if (S.startswith("/*")) {
145       size_t E = S.find("*/", 2);
146       if (E == StringRef::npos) {
147         error("unclosed comment in a linker script");
148         return "";
149       }
150       S = S.substr(E + 2);
151       continue;
152     }
153     if (S.startswith("#")) {
154       size_t E = S.find('\n', 1);
155       if (E == StringRef::npos)
156         E = S.size() - 1;
157       S = S.substr(E + 1);
158       continue;
159     }
160     size_t Size = S.size();
161     S = S.ltrim();
162     if (S.size() == Size)
163       return S;
164   }
165 }
166 
167 // An erroneous token is handled as if it were the last token before EOF.
168 bool ScriptLexer::atEOF() { return errorCount() || Tokens.size() == Pos; }
169 
170 // Split a given string as an expression.
171 // This function returns "3", "*" and "5" for "3*5" for example.
172 static std::vector<StringRef> tokenizeExpr(StringRef S) {
173   StringRef Ops = "+-*/:!~=<>"; // List of operators
174 
175   // Quoted strings are literal strings, so we don't want to split it.
176   if (S.startswith("\""))
177     return {S};
178 
179   // Split S with operators as separators.
180   std::vector<StringRef> Ret;
181   while (!S.empty()) {
182     size_t E = S.find_first_of(Ops);
183 
184     // No need to split if there is no operator.
185     if (E == StringRef::npos) {
186       Ret.push_back(S);
187       break;
188     }
189 
190     // Get a token before the opreator.
191     if (E != 0)
192       Ret.push_back(S.substr(0, E));
193 
194     // Get the operator as a token.
195     // Keep !=, ==, >=, <=, << and >> operators as a single tokens.
196     if (S.substr(E).startswith("!=") || S.substr(E).startswith("==") ||
197         S.substr(E).startswith(">=") || S.substr(E).startswith("<=") ||
198         S.substr(E).startswith("<<") || S.substr(E).startswith(">>")) {
199       Ret.push_back(S.substr(E, 2));
200       S = S.substr(E + 2);
201     } else {
202       Ret.push_back(S.substr(E, 1));
203       S = S.substr(E + 1);
204     }
205   }
206   return Ret;
207 }
208 
209 // In contexts where expressions are expected, the lexer should apply
210 // different tokenization rules than the default one. By default,
211 // arithmetic operator characters are regular characters, but in the
212 // expression context, they should be independent tokens.
213 //
214 // For example, "foo*3" should be tokenized to "foo", "*" and "3" only
215 // in the expression context.
216 //
217 // This function may split the current token into multiple tokens.
218 void ScriptLexer::maybeSplitExpr() {
219   if (!InExpr || errorCount() || atEOF())
220     return;
221 
222   std::vector<StringRef> V = tokenizeExpr(Tokens[Pos]);
223   if (V.size() == 1)
224     return;
225   Tokens.erase(Tokens.begin() + Pos);
226   Tokens.insert(Tokens.begin() + Pos, V.begin(), V.end());
227 }
228 
229 StringRef ScriptLexer::next() {
230   maybeSplitExpr();
231 
232   if (errorCount())
233     return "";
234   if (atEOF()) {
235     setError("unexpected EOF");
236     return "";
237   }
238   return Tokens[Pos++];
239 }
240 
241 StringRef ScriptLexer::peek() {
242   StringRef Tok = next();
243   if (errorCount())
244     return "";
245   Pos = Pos - 1;
246   return Tok;
247 }
248 
249 StringRef ScriptLexer::peek2() {
250   skip();
251   StringRef Tok = next();
252   if (errorCount())
253     return "";
254   Pos = Pos - 2;
255   return Tok;
256 }
257 
258 bool ScriptLexer::consume(StringRef Tok) {
259   if (peek() == Tok) {
260     skip();
261     return true;
262   }
263   return false;
264 }
265 
266 // Consumes Tok followed by ":". Space is allowed between Tok and ":".
267 bool ScriptLexer::consumeLabel(StringRef Tok) {
268   if (consume((Tok + ":").str()))
269     return true;
270   if (Tokens.size() >= Pos + 2 && Tokens[Pos] == Tok &&
271       Tokens[Pos + 1] == ":") {
272     Pos += 2;
273     return true;
274   }
275   return false;
276 }
277 
278 void ScriptLexer::skip() { (void)next(); }
279 
280 void ScriptLexer::expect(StringRef Expect) {
281   if (errorCount())
282     return;
283   StringRef Tok = next();
284   if (Tok != Expect)
285     setError(Expect + " expected, but got " + Tok);
286 }
287 
288 // Returns true if S encloses T.
289 static bool encloses(StringRef S, StringRef T) {
290   return S.bytes_begin() <= T.bytes_begin() && T.bytes_end() <= S.bytes_end();
291 }
292 
293 MemoryBufferRef ScriptLexer::getCurrentMB() {
294   // Find input buffer containing the current token.
295   assert(!MBs.empty() && Pos > 0);
296   for (MemoryBufferRef MB : MBs)
297     if (encloses(MB.getBuffer(), Tokens[Pos - 1]))
298       return MB;
299   llvm_unreachable("getCurrentMB: failed to find a token");
300 }
301