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. Keep != as one token.
195     if (S.substr(E).startswith("!=")) {
196       Ret.push_back(S.substr(E, 2));
197       S = S.substr(E + 2);
198     } else {
199       Ret.push_back(S.substr(E, 1));
200       S = S.substr(E + 1);
201     }
202   }
203   return Ret;
204 }
205 
206 // In contexts where expressions are expected, the lexer should apply
207 // different tokenization rules than the default one. By default,
208 // arithmetic operator characters are regular characters, but in the
209 // expression context, they should be independent tokens.
210 //
211 // For example, "foo*3" should be tokenized to "foo", "*" and "3" only
212 // in the expression context.
213 //
214 // This function may split the current token into multiple tokens.
215 void ScriptLexer::maybeSplitExpr() {
216   if (!InExpr || errorCount() || atEOF())
217     return;
218 
219   std::vector<StringRef> V = tokenizeExpr(Tokens[Pos]);
220   if (V.size() == 1)
221     return;
222   Tokens.erase(Tokens.begin() + Pos);
223   Tokens.insert(Tokens.begin() + Pos, V.begin(), V.end());
224 }
225 
226 StringRef ScriptLexer::next() {
227   maybeSplitExpr();
228 
229   if (errorCount())
230     return "";
231   if (atEOF()) {
232     setError("unexpected EOF");
233     return "";
234   }
235   return Tokens[Pos++];
236 }
237 
238 StringRef ScriptLexer::peek() {
239   StringRef Tok = next();
240   if (errorCount())
241     return "";
242   Pos = Pos - 1;
243   return Tok;
244 }
245 
246 StringRef ScriptLexer::peek2() {
247   skip();
248   StringRef Tok = next();
249   if (errorCount())
250     return "";
251   Pos = Pos - 2;
252   return Tok;
253 }
254 
255 bool ScriptLexer::consume(StringRef Tok) {
256   if (peek() == Tok) {
257     skip();
258     return true;
259   }
260   return false;
261 }
262 
263 // Consumes Tok followed by ":". Space is allowed between Tok and ":".
264 bool ScriptLexer::consumeLabel(StringRef Tok) {
265   if (consume((Tok + ":").str()))
266     return true;
267   if (Tokens.size() >= Pos + 2 && Tokens[Pos] == Tok &&
268       Tokens[Pos + 1] == ":") {
269     Pos += 2;
270     return true;
271   }
272   return false;
273 }
274 
275 void ScriptLexer::skip() { (void)next(); }
276 
277 void ScriptLexer::expect(StringRef Expect) {
278   if (errorCount())
279     return;
280   StringRef Tok = next();
281   if (Tok != Expect)
282     setError(Expect + " expected, but got " + Tok);
283 }
284 
285 // Returns true if S encloses T.
286 static bool encloses(StringRef S, StringRef T) {
287   return S.bytes_begin() <= T.bytes_begin() && T.bytes_end() <= S.bytes_end();
288 }
289 
290 MemoryBufferRef ScriptLexer::getCurrentMB() {
291   // Find input buffer containing the current token.
292   assert(!MBs.empty() && Pos > 0);
293   for (MemoryBufferRef MB : MBs)
294     if (encloses(MB.getBuffer(), Tokens[Pos - 1]))
295       return MB;
296   llvm_unreachable("getCurrentMB: failed to find a token");
297 }
298