blob: e8068f268074b1c290c0e8fb173d7b64695c8736 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* Tokenizer implementation */
3
Jack Jansen7b8c7542002-04-14 20:12:41 +00004#include "Python.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00005
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006#include <ctype.h>
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00007#include <assert.h>
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00009#include "tokenizer.h"
10#include "errcode.h"
11
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +000012#include "unicodeobject.h"
Christian Heimes2c9c7a52008-05-26 13:42:13 +000013#include "bytesobject.h"
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +000014#include "fileobject.h"
15#include "codecs.h"
16#include "abstract.h"
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +000017
Victor Stinnerf2ddc6a2017-11-17 01:25:47 -080018/* Alternate tab spacing */
19#define ALTTABSIZE 1
20
Martin v. Löwis5b222132007-06-10 09:51:05 +000021#define is_potential_identifier_start(c) (\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000022 (c >= 'a' && c <= 'z')\
23 || (c >= 'A' && c <= 'Z')\
24 || c == '_'\
25 || (c >= 128))
Martin v. Löwis5b222132007-06-10 09:51:05 +000026
27#define is_potential_identifier_char(c) (\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000028 (c >= 'a' && c <= 'z')\
29 || (c >= 'A' && c <= 'Z')\
30 || (c >= '0' && c <= '9')\
31 || c == '_'\
32 || (c >= 128))
Martin v. Löwis5b222132007-06-10 09:51:05 +000033
Serhiy Storchakac6792272013-10-19 21:03:34 +030034extern char *PyOS_Readline(FILE *, FILE *, const char *);
Guido van Rossumf4b1a641994-08-29 12:43:07 +000035/* Return malloc'ed string including trailing \n;
36 empty malloc'ed string for EOF;
37 NULL if interrupted */
38
Guido van Rossum4fe87291992-02-26 15:24:44 +000039/* Don't ever change this -- it would break the portability of Python code */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000040#define TABSIZE 8
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000041
Guido van Rossum3f5da241990-12-20 15:06:42 +000042/* Forward */
Tim Petersdbd9ba62000-07-09 03:09:57 +000043static struct tok_state *tok_new(void);
44static int tok_nextc(struct tok_state *tok);
45static void tok_backup(struct tok_state *tok, int c);
Guido van Rossum3f5da241990-12-20 15:06:42 +000046
Brett Cannond5ec98c2007-10-20 02:54:14 +000047
Guido van Rossumdcfcd142019-01-31 03:40:27 -080048/* Spaces in this constant are treated as "zero or more spaces or tabs" when
49 tokenizing. */
50static const char* type_comment_prefix = "# type: ";
51
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000052/* Create and initialize a new tok_state structure */
53
54static struct tok_state *
Thomas Wouters23c9e002000-07-22 19:20:54 +000055tok_new(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000056{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000057 struct tok_state *tok = (struct tok_state *)PyMem_MALLOC(
58 sizeof(struct tok_state));
59 if (tok == NULL)
60 return NULL;
61 tok->buf = tok->cur = tok->end = tok->inp = tok->start = NULL;
62 tok->done = E_OK;
63 tok->fp = NULL;
64 tok->input = NULL;
65 tok->tabsize = TABSIZE;
66 tok->indent = 0;
67 tok->indstack[0] = 0;
Yury Selivanov75445082015-05-11 22:57:16 -040068
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000069 tok->atbol = 1;
70 tok->pendin = 0;
71 tok->prompt = tok->nextprompt = NULL;
72 tok->lineno = 0;
73 tok->level = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000074 tok->altindstack[0] = 0;
75 tok->decoding_state = STATE_INIT;
76 tok->decoding_erred = 0;
77 tok->read_coding_spec = 0;
78 tok->enc = NULL;
79 tok->encoding = NULL;
80 tok->cont_line = 0;
Victor Stinner7f2fee32011-04-05 00:39:01 +020081 tok->filename = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000082 tok->decoding_readline = NULL;
83 tok->decoding_buffer = NULL;
Guido van Rossumdcfcd142019-01-31 03:40:27 -080084 tok->type_comments = 0;
Yury Selivanov96ec9342015-07-23 15:01:58 +030085
Guido van Rossum495da292019-03-07 12:38:08 -080086 tok->async_hacks = 0;
87 tok->async_def = 0;
88 tok->async_def_indent = 0;
89 tok->async_def_nl = 0;
90
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000091 return tok;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000092}
93
Benjamin Petersonaeaa5922009-11-13 00:17:59 +000094static char *
Benjamin Peterson2dbfd882013-07-15 19:15:34 -070095new_string(const char *s, Py_ssize_t len, struct tok_state *tok)
Benjamin Petersonaeaa5922009-11-13 00:17:59 +000096{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000097 char* result = (char *)PyMem_MALLOC(len + 1);
Benjamin Peterson2dbfd882013-07-15 19:15:34 -070098 if (!result) {
99 tok->done = E_NOMEM;
100 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000101 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700102 memcpy(result, s, len);
103 result[len] = '\0';
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000104 return result;
Benjamin Petersonaeaa5922009-11-13 00:17:59 +0000105}
106
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000107static char *
108error_ret(struct tok_state *tok) /* XXX */
109{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000110 tok->decoding_erred = 1;
111 if (tok->fp != NULL && tok->buf != NULL) /* see PyTokenizer_Free */
112 PyMem_FREE(tok->buf);
Serhiy Storchaka0d441112015-11-14 15:10:35 +0200113 tok->buf = tok->cur = tok->end = tok->inp = tok->start = NULL;
114 tok->done = E_DECODE;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000115 return NULL; /* as if it were EOF */
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000116}
117
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000118
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200119static const char *
120get_normal_name(const char *s) /* for utf-8 and latin-1 */
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000121{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000122 char buf[13];
123 int i;
124 for (i = 0; i < 12; i++) {
125 int c = s[i];
126 if (c == '\0')
127 break;
128 else if (c == '_')
129 buf[i] = '-';
130 else
131 buf[i] = tolower(c);
132 }
133 buf[i] = '\0';
134 if (strcmp(buf, "utf-8") == 0 ||
135 strncmp(buf, "utf-8-", 6) == 0)
136 return "utf-8";
137 else if (strcmp(buf, "latin-1") == 0 ||
138 strcmp(buf, "iso-8859-1") == 0 ||
139 strcmp(buf, "iso-latin-1") == 0 ||
140 strncmp(buf, "latin-1-", 8) == 0 ||
141 strncmp(buf, "iso-8859-1-", 11) == 0 ||
142 strncmp(buf, "iso-latin-1-", 12) == 0)
143 return "iso-8859-1";
144 else
145 return s;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000146}
147
148/* Return the coding spec in S, or NULL if none is found. */
149
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700150static int
151get_coding_spec(const char *s, char **spec, Py_ssize_t size, struct tok_state *tok)
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000152{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000153 Py_ssize_t i;
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700154 *spec = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000155 /* Coding spec must be in a comment, and that comment must be
156 * the only statement on the source code line. */
157 for (i = 0; i < size - 6; i++) {
158 if (s[i] == '#')
159 break;
160 if (s[i] != ' ' && s[i] != '\t' && s[i] != '\014')
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700161 return 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000162 }
163 for (; i < size - 6; i++) { /* XXX inefficient search */
164 const char* t = s + i;
165 if (strncmp(t, "coding", 6) == 0) {
166 const char* begin = NULL;
167 t += 6;
168 if (t[0] != ':' && t[0] != '=')
169 continue;
170 do {
171 t++;
172 } while (t[0] == '\x20' || t[0] == '\t');
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000173
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 begin = t;
175 while (Py_ISALNUM(t[0]) ||
176 t[0] == '-' || t[0] == '_' || t[0] == '.')
177 t++;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000178
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000179 if (begin < t) {
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700180 char* r = new_string(begin, t - begin, tok);
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200181 const char* q;
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700182 if (!r)
183 return 0;
Benjamin Peterson265fba42013-07-15 20:50:22 -0700184 q = get_normal_name(r);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000185 if (r != q) {
186 PyMem_FREE(r);
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700187 r = new_string(q, strlen(q), tok);
188 if (!r)
189 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000190 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700191 *spec = r;
Serhiy Storchakae431d3c2016-03-20 23:36:29 +0200192 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000193 }
194 }
195 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700196 return 1;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000197}
198
199/* Check whether the line contains a coding spec. If it does,
200 invoke the set_readline function for the new encoding.
201 This function receives the tok_state and the new encoding.
202 Return 1 on success, 0 on failure. */
203
204static int
Martin v. Löwis18e16552006-02-15 17:27:45 +0000205check_coding_spec(const char* line, Py_ssize_t size, struct tok_state *tok,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000206 int set_readline(struct tok_state *, const char *))
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000207{
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700208 char *cs;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000209 int r = 1;
Tim Peters17db21f2002-09-03 15:39:58 +0000210
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200211 if (tok->cont_line) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000212 /* It's a continuation line, so it can't be a coding spec. */
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200213 tok->read_coding_spec = 1;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000214 return 1;
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200215 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700216 if (!get_coding_spec(line, &cs, size, tok))
217 return 0;
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200218 if (!cs) {
219 Py_ssize_t i;
220 for (i = 0; i < size; i++) {
221 if (line[i] == '#' || line[i] == '\n' || line[i] == '\r')
222 break;
223 if (line[i] != ' ' && line[i] != '\t' && line[i] != '\014') {
224 /* Stop checking coding spec after a line containing
225 * anything except a comment. */
226 tok->read_coding_spec = 1;
227 break;
228 }
229 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700230 return 1;
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200231 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700232 tok->read_coding_spec = 1;
233 if (tok->encoding == NULL) {
234 assert(tok->decoding_state == STATE_RAW);
235 if (strcmp(cs, "utf-8") == 0) {
236 tok->encoding = cs;
237 } else {
238 r = set_readline(tok, cs);
239 if (r) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000240 tok->encoding = cs;
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700241 tok->decoding_state = STATE_NORMAL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000242 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700243 else {
Serhiy Storchaka3af14aa2013-06-09 16:51:52 +0300244 PyErr_Format(PyExc_SyntaxError,
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700245 "encoding problem: %s", cs);
246 PyMem_FREE(cs);
247 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000248 }
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700249 } else { /* then, compare cs with BOM */
250 r = (strcmp(tok->encoding, cs) == 0);
251 if (!r)
252 PyErr_Format(PyExc_SyntaxError,
253 "encoding problem: %s with BOM", cs);
254 PyMem_FREE(cs);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000255 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000256 return r;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000257}
258
259/* See whether the file starts with a BOM. If it does,
260 invoke the set_readline function with the new encoding.
261 Return 1 on success, 0 on failure. */
262
263static int
264check_bom(int get_char(struct tok_state *),
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000265 void unget_char(int, struct tok_state *),
266 int set_readline(struct tok_state *, const char *),
267 struct tok_state *tok)
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000268{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000269 int ch1, ch2, ch3;
270 ch1 = get_char(tok);
271 tok->decoding_state = STATE_RAW;
272 if (ch1 == EOF) {
273 return 1;
274 } else if (ch1 == 0xEF) {
275 ch2 = get_char(tok);
276 if (ch2 != 0xBB) {
277 unget_char(ch2, tok);
278 unget_char(ch1, tok);
279 return 1;
280 }
281 ch3 = get_char(tok);
282 if (ch3 != 0xBF) {
283 unget_char(ch3, tok);
284 unget_char(ch2, tok);
285 unget_char(ch1, tok);
286 return 1;
287 }
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000288#if 0
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000289 /* Disable support for UTF-16 BOMs until a decision
290 is made whether this needs to be supported. */
291 } else if (ch1 == 0xFE) {
292 ch2 = get_char(tok);
293 if (ch2 != 0xFF) {
294 unget_char(ch2, tok);
295 unget_char(ch1, tok);
296 return 1;
297 }
298 if (!set_readline(tok, "utf-16-be"))
299 return 0;
300 tok->decoding_state = STATE_NORMAL;
301 } else if (ch1 == 0xFF) {
302 ch2 = get_char(tok);
303 if (ch2 != 0xFE) {
304 unget_char(ch2, tok);
305 unget_char(ch1, tok);
306 return 1;
307 }
308 if (!set_readline(tok, "utf-16-le"))
309 return 0;
310 tok->decoding_state = STATE_NORMAL;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000311#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000312 } else {
313 unget_char(ch1, tok);
314 return 1;
315 }
316 if (tok->encoding != NULL)
317 PyMem_FREE(tok->encoding);
Benjamin Peterson2dbfd882013-07-15 19:15:34 -0700318 tok->encoding = new_string("utf-8", 5, tok);
319 if (!tok->encoding)
320 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000321 /* No need to set_readline: input is already utf-8 */
322 return 1;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000323}
324
325/* Read a line of text from TOK into S, using the stream in TOK.
Walter Dörwaldc1f5fff2005-07-12 21:53:43 +0000326 Return NULL on failure, else S.
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000327
Walter Dörwaldc1f5fff2005-07-12 21:53:43 +0000328 On entry, tok->decoding_buffer will be one of:
329 1) NULL: need to call tok->decoding_readline to get a new line
330 2) PyUnicodeObject *: decoding_feof has called tok->decoding_readline and
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000331 stored the result in tok->decoding_buffer
Christian Heimes9c4756e2008-05-26 13:22:05 +0000332 3) PyByteArrayObject *: previous call to fp_readl did not have enough room
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000333 (in the s buffer) to copy entire contents of the line read
334 by tok->decoding_readline. tok->decoding_buffer has the overflow.
335 In this case, fp_readl is called in a loop (with an expanded buffer)
336 until the buffer ends with a '\n' (or until the end of the file is
337 reached): see tok_nextc and its calls to decoding_fgets.
Walter Dörwaldc1f5fff2005-07-12 21:53:43 +0000338*/
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000339
340static char *
341fp_readl(char *s, int size, struct tok_state *tok)
342{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000343 PyObject* bufobj;
344 const char *buf;
345 Py_ssize_t buflen;
Walter Dörwaldc1f5fff2005-07-12 21:53:43 +0000346
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000347 /* Ask for one less byte so we can terminate it */
348 assert(size > 0);
349 size--;
Walter Dörwaldc1f5fff2005-07-12 21:53:43 +0000350
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 if (tok->decoding_buffer) {
352 bufobj = tok->decoding_buffer;
353 Py_INCREF(bufobj);
354 }
355 else
356 {
Victor Stinnera5ed5f02016-12-06 18:45:50 +0100357 bufobj = _PyObject_CallNoArg(tok->decoding_readline);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000358 if (bufobj == NULL)
359 goto error;
360 }
361 if (PyUnicode_CheckExact(bufobj))
362 {
Serhiy Storchaka06515832016-11-20 09:13:07 +0200363 buf = PyUnicode_AsUTF8AndSize(bufobj, &buflen);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000364 if (buf == NULL) {
365 goto error;
366 }
367 }
368 else
369 {
370 buf = PyByteArray_AsString(bufobj);
371 if (buf == NULL) {
372 goto error;
373 }
374 buflen = PyByteArray_GET_SIZE(bufobj);
375 }
Amaury Forgeot d'Arc65f9ace2007-11-15 23:19:43 +0000376
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000377 Py_XDECREF(tok->decoding_buffer);
378 if (buflen > size) {
379 /* Too many chars, the rest goes into tok->decoding_buffer */
380 tok->decoding_buffer = PyByteArray_FromStringAndSize(buf+size,
381 buflen-size);
382 if (tok->decoding_buffer == NULL)
383 goto error;
384 buflen = size;
385 }
386 else
387 tok->decoding_buffer = NULL;
Amaury Forgeot d'Arc65f9ace2007-11-15 23:19:43 +0000388
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000389 memcpy(s, buf, buflen);
390 s[buflen] = '\0';
391 if (buflen == 0) /* EOF */
392 s = NULL;
393 Py_DECREF(bufobj);
394 return s;
Neal Norwitz41eaedd2007-08-12 00:03:22 +0000395
396error:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000397 Py_XDECREF(bufobj);
398 return error_ret(tok);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000399}
400
401/* Set the readline function for TOK to a StreamReader's
402 readline function. The StreamReader is named ENC.
403
404 This function is called from check_bom and check_coding_spec.
405
406 ENC is usually identical to the future value of tok->encoding,
407 except for the (currently unsupported) case of UTF-16.
408
409 Return 1 on success, 0 on failure. */
410
411static int
412fp_setreadl(struct tok_state *tok, const char* enc)
413{
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700414 PyObject *readline, *io, *stream;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200415 _Py_IDENTIFIER(open);
416 _Py_IDENTIFIER(readline);
Victor Stinner22a351a2010-10-14 12:04:34 +0000417 int fd;
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200418 long pos;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000419
Victor Stinner22a351a2010-10-14 12:04:34 +0000420 fd = fileno(tok->fp);
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200421 /* Due to buffering the file offset for fd can be different from the file
Martin v. Löwis815b41b2014-02-28 15:27:29 +0100422 * position of tok->fp. If tok->fp was opened in text mode on Windows,
423 * its file position counts CRLF as one char and can't be directly mapped
424 * to the file offset for fd. Instead we step back one byte and read to
425 * the end of line.*/
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200426 pos = ftell(tok->fp);
Martin v. Löwis815b41b2014-02-28 15:27:29 +0100427 if (pos == -1 ||
428 lseek(fd, (off_t)(pos > 0 ? pos - 1 : pos), SEEK_SET) == (off_t)-1) {
Victor Stinner22a351a2010-10-14 12:04:34 +0000429 PyErr_SetFromErrnoWithFilename(PyExc_OSError, NULL);
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700430 return 0;
Victor Stinner22a351a2010-10-14 12:04:34 +0000431 }
432
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700433 io = PyImport_ImportModuleNoBlock("io");
434 if (io == NULL)
435 return 0;
436
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200437 stream = _PyObject_CallMethodId(io, &PyId_open, "isisOOO",
Victor Stinner22a351a2010-10-14 12:04:34 +0000438 fd, "r", -1, enc, Py_None, Py_None, Py_False);
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700439 Py_DECREF(io);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000440 if (stream == NULL)
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700441 return 0;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000442
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +0200443 readline = _PyObject_GetAttrId(stream, &PyId_readline);
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700444 Py_DECREF(stream);
445 if (readline == NULL)
446 return 0;
Serhiy Storchaka48842712016-04-06 09:45:48 +0300447 Py_XSETREF(tok->decoding_readline, readline);
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700448
Martin v. Löwis815b41b2014-02-28 15:27:29 +0100449 if (pos > 0) {
Victor Stinnera5ed5f02016-12-06 18:45:50 +0100450 PyObject *bufobj = _PyObject_CallNoArg(readline);
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700451 if (bufobj == NULL)
452 return 0;
453 Py_DECREF(bufobj);
Martin v. Löwis815b41b2014-02-28 15:27:29 +0100454 }
Guido van Rossum9cbfffd2007-06-07 00:54:15 +0000455
Benjamin Peterson35ee9482016-09-12 22:06:58 -0700456 return 1;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000457}
458
459/* Fetch the next byte from TOK. */
460
461static int fp_getc(struct tok_state *tok) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000462 return getc(tok->fp);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000463}
464
465/* Unfetch the last byte back into TOK. */
466
467static void fp_ungetc(int c, struct tok_state *tok) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000468 ungetc(c, tok->fp);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000469}
470
Martin v. Löwis447d33e2007-07-29 18:10:01 +0000471/* Check whether the characters at s start a valid
472 UTF-8 sequence. Return the number of characters forming
473 the sequence if yes, 0 if not. */
474static int valid_utf8(const unsigned char* s)
475{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000476 int expected = 0;
477 int length;
478 if (*s < 0x80)
479 /* single-byte code */
480 return 1;
481 if (*s < 0xc0)
482 /* following byte */
483 return 0;
484 if (*s < 0xE0)
485 expected = 1;
486 else if (*s < 0xF0)
487 expected = 2;
488 else if (*s < 0xF8)
489 expected = 3;
490 else
491 return 0;
492 length = expected + 1;
493 for (; expected; expected--)
494 if (s[expected] < 0x80 || s[expected] >= 0xC0)
495 return 0;
496 return length;
Martin v. Löwis447d33e2007-07-29 18:10:01 +0000497}
498
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000499/* Read a line of input from TOK. Determine encoding
500 if necessary. */
501
502static char *
503decoding_fgets(char *s, int size, struct tok_state *tok)
504{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000505 char *line = NULL;
506 int badchar = 0;
507 for (;;) {
508 if (tok->decoding_state == STATE_NORMAL) {
509 /* We already have a codec associated with
510 this input. */
511 line = fp_readl(s, size, tok);
512 break;
513 } else if (tok->decoding_state == STATE_RAW) {
514 /* We want a 'raw' read. */
515 line = Py_UniversalNewlineFgets(s, size,
516 tok->fp, NULL);
517 break;
518 } else {
519 /* We have not yet determined the encoding.
520 If an encoding is found, use the file-pointer
521 reader functions from now on. */
522 if (!check_bom(fp_getc, fp_ungetc, fp_setreadl, tok))
523 return error_ret(tok);
524 assert(tok->decoding_state != STATE_INIT);
525 }
526 }
527 if (line != NULL && tok->lineno < 2 && !tok->read_coding_spec) {
528 if (!check_coding_spec(line, strlen(line), tok, fp_setreadl)) {
529 return error_ret(tok);
530 }
531 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000532 /* The default encoding is UTF-8, so make sure we don't have any
533 non-UTF-8 sequences in it. */
534 if (line && !tok->encoding) {
535 unsigned char *c;
536 int length;
537 for (c = (unsigned char *)line; *c; c += length)
538 if (!(length = valid_utf8(c))) {
539 badchar = *c;
540 break;
541 }
542 }
543 if (badchar) {
544 /* Need to add 1 to the line number, since this line
545 has not been counted, yet. */
Jesus Ceac1935d22011-04-25 04:03:58 +0200546 PyErr_Format(PyExc_SyntaxError,
547 "Non-UTF-8 code starting with '\\x%.2x' "
548 "in file %U on line %i, "
549 "but no encoding declared; "
550 "see http://python.org/dev/peps/pep-0263/ for details",
551 badchar, tok->filename, tok->lineno + 1);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000552 return error_ret(tok);
553 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000554 return line;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000555}
556
557static int
558decoding_feof(struct tok_state *tok)
559{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 if (tok->decoding_state != STATE_NORMAL) {
561 return feof(tok->fp);
562 } else {
563 PyObject* buf = tok->decoding_buffer;
564 if (buf == NULL) {
Victor Stinnera5ed5f02016-12-06 18:45:50 +0100565 buf = _PyObject_CallNoArg(tok->decoding_readline);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000566 if (buf == NULL) {
567 error_ret(tok);
568 return 1;
569 } else {
570 tok->decoding_buffer = buf;
571 }
572 }
573 return PyObject_Length(buf) == 0;
574 }
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000575}
576
577/* Fetch a byte from TOK, using the string buffer. */
578
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000579static int
580buf_getc(struct tok_state *tok) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000581 return Py_CHARMASK(*tok->str++);
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000582}
583
584/* Unfetch a byte from TOK, using the string buffer. */
585
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000586static void
587buf_ungetc(int c, struct tok_state *tok) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000588 tok->str--;
589 assert(Py_CHARMASK(*tok->str) == c); /* tok->cur may point to read-only segment */
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000590}
591
592/* Set the readline function for TOK to ENC. For the string-based
593 tokenizer, this means to just record the encoding. */
594
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000595static int
596buf_setreadl(struct tok_state *tok, const char* enc) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000597 tok->enc = enc;
598 return 1;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000599}
600
601/* Return a UTF-8 encoding Python string object from the
602 C byte string STR, which is encoded with ENC. */
603
604static PyObject *
605translate_into_utf8(const char* str, const char* enc) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000606 PyObject *utf8;
607 PyObject* buf = PyUnicode_Decode(str, strlen(str), enc, NULL);
608 if (buf == NULL)
609 return NULL;
610 utf8 = PyUnicode_AsUTF8String(buf);
611 Py_DECREF(buf);
612 return utf8;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000613}
614
Benjamin Petersonaeaa5922009-11-13 00:17:59 +0000615
616static char *
617translate_newlines(const char *s, int exec_input, struct tok_state *tok) {
Victor Stinner79697732013-06-05 00:44:00 +0200618 int skip_next_lf = 0;
619 size_t needed_length = strlen(s) + 2, final_length;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000620 char *buf, *current;
621 char c = '\0';
622 buf = PyMem_MALLOC(needed_length);
623 if (buf == NULL) {
624 tok->done = E_NOMEM;
625 return NULL;
626 }
627 for (current = buf; *s; s++, current++) {
628 c = *s;
629 if (skip_next_lf) {
630 skip_next_lf = 0;
631 if (c == '\n') {
632 c = *++s;
633 if (!c)
634 break;
635 }
636 }
637 if (c == '\r') {
638 skip_next_lf = 1;
639 c = '\n';
640 }
641 *current = c;
642 }
643 /* If this is exec input, add a newline to the end of the string if
644 there isn't one already. */
645 if (exec_input && c != '\n') {
646 *current = '\n';
647 current++;
648 }
649 *current = '\0';
650 final_length = current - buf + 1;
Pablo Galindocb90c892019-03-19 17:17:58 +0000651 if (final_length < needed_length && final_length) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000652 /* should never fail */
Pablo Galindocb90c892019-03-19 17:17:58 +0000653 char* result = PyMem_REALLOC(buf, final_length);
654 if (result == NULL) {
655 PyMem_FREE(buf);
656 }
657 buf = result;
658 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000659 return buf;
Benjamin Petersonaeaa5922009-11-13 00:17:59 +0000660}
661
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000662/* Decode a byte string STR for use as the buffer of TOK.
663 Look for encoding declarations inside STR, and record them
664 inside TOK. */
665
666static const char *
Benjamin Petersonaeaa5922009-11-13 00:17:59 +0000667decode_str(const char *input, int single, struct tok_state *tok)
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000668{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000669 PyObject* utf8 = NULL;
670 const char *str;
671 const char *s;
672 const char *newl[2] = {NULL, NULL};
673 int lineno = 0;
674 tok->input = str = translate_newlines(input, single, tok);
675 if (str == NULL)
676 return NULL;
677 tok->enc = NULL;
678 tok->str = str;
679 if (!check_bom(buf_getc, buf_ungetc, buf_setreadl, tok))
680 return error_ret(tok);
681 str = tok->str; /* string after BOM if any */
682 assert(str);
683 if (tok->enc != NULL) {
684 utf8 = translate_into_utf8(str, tok->enc);
685 if (utf8 == NULL)
686 return error_ret(tok);
687 str = PyBytes_AsString(utf8);
688 }
689 for (s = str;; s++) {
690 if (*s == '\0') break;
691 else if (*s == '\n') {
692 assert(lineno < 2);
693 newl[lineno] = s;
694 lineno++;
695 if (lineno == 2) break;
696 }
697 }
698 tok->enc = NULL;
699 /* need to check line 1 and 2 separately since check_coding_spec
700 assumes a single line as input */
701 if (newl[0]) {
702 if (!check_coding_spec(str, newl[0] - str, tok, buf_setreadl))
703 return error_ret(tok);
Serhiy Storchaka768c16c2014-01-09 18:36:09 +0200704 if (tok->enc == NULL && !tok->read_coding_spec && newl[1]) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000705 if (!check_coding_spec(newl[0]+1, newl[1] - newl[0],
706 tok, buf_setreadl))
707 return error_ret(tok);
708 }
709 }
710 if (tok->enc != NULL) {
711 assert(utf8 == NULL);
712 utf8 = translate_into_utf8(str, tok->enc);
713 if (utf8 == NULL)
714 return error_ret(tok);
715 str = PyBytes_AS_STRING(utf8);
716 }
717 assert(tok->decoding_buffer == NULL);
718 tok->decoding_buffer = utf8; /* CAUTION */
719 return str;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +0000720}
721
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000722/* Set up tokenizer for string */
723
724struct tok_state *
Benjamin Petersonaeaa5922009-11-13 00:17:59 +0000725PyTokenizer_FromString(const char *str, int exec_input)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000726{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000727 struct tok_state *tok = tok_new();
728 if (tok == NULL)
729 return NULL;
Serhiy Storchakac6792272013-10-19 21:03:34 +0300730 str = decode_str(str, exec_input, tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000731 if (str == NULL) {
732 PyTokenizer_Free(tok);
733 return NULL;
734 }
Neal Norwitzdee2fd52005-11-16 05:12:59 +0000735
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000736 /* XXX: constify members. */
737 tok->buf = tok->cur = tok->end = tok->inp = (char*)str;
738 return tok;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000739}
740
Benjamin Petersonf5b52242009-03-02 23:31:26 +0000741struct tok_state *
Benjamin Petersonaeaa5922009-11-13 00:17:59 +0000742PyTokenizer_FromUTF8(const char *str, int exec_input)
Benjamin Petersonf5b52242009-03-02 23:31:26 +0000743{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000744 struct tok_state *tok = tok_new();
745 if (tok == NULL)
746 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000747 tok->input = str = translate_newlines(str, exec_input, tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000748 if (str == NULL) {
749 PyTokenizer_Free(tok);
750 return NULL;
751 }
752 tok->decoding_state = STATE_RAW;
753 tok->read_coding_spec = 1;
754 tok->enc = NULL;
755 tok->str = str;
756 tok->encoding = (char *)PyMem_MALLOC(6);
757 if (!tok->encoding) {
758 PyTokenizer_Free(tok);
759 return NULL;
760 }
761 strcpy(tok->encoding, "utf-8");
Benjamin Petersonf5b52242009-03-02 23:31:26 +0000762
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000763 /* XXX: constify members. */
764 tok->buf = tok->cur = tok->end = tok->inp = (char*)str;
765 return tok;
Benjamin Petersonf5b52242009-03-02 23:31:26 +0000766}
767
Guido van Rossum8c11a5c1991-07-27 21:42:56 +0000768/* Set up tokenizer for file */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000769
770struct tok_state *
Serhiy Storchakac6792272013-10-19 21:03:34 +0300771PyTokenizer_FromFile(FILE *fp, const char* enc,
772 const char *ps1, const char *ps2)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000773{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000774 struct tok_state *tok = tok_new();
775 if (tok == NULL)
776 return NULL;
777 if ((tok->buf = (char *)PyMem_MALLOC(BUFSIZ)) == NULL) {
778 PyTokenizer_Free(tok);
779 return NULL;
780 }
781 tok->cur = tok->inp = tok->buf;
782 tok->end = tok->buf + BUFSIZ;
783 tok->fp = fp;
784 tok->prompt = ps1;
785 tok->nextprompt = ps2;
786 if (enc != NULL) {
787 /* Must copy encoding declaration since it
788 gets copied into the parse tree. */
789 tok->encoding = PyMem_MALLOC(strlen(enc)+1);
790 if (!tok->encoding) {
791 PyTokenizer_Free(tok);
792 return NULL;
793 }
794 strcpy(tok->encoding, enc);
795 tok->decoding_state = STATE_NORMAL;
796 }
797 return tok;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000798}
799
800
801/* Free a tok_state structure */
802
803void
Thomas Wouters23c9e002000-07-22 19:20:54 +0000804PyTokenizer_Free(struct tok_state *tok)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000805{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000806 if (tok->encoding != NULL)
807 PyMem_FREE(tok->encoding);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000808 Py_XDECREF(tok->decoding_readline);
809 Py_XDECREF(tok->decoding_buffer);
Victor Stinner7f2fee32011-04-05 00:39:01 +0200810 Py_XDECREF(tok->filename);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000811 if (tok->fp != NULL && tok->buf != NULL)
812 PyMem_FREE(tok->buf);
813 if (tok->input)
814 PyMem_FREE((char *)tok->input);
815 PyMem_FREE(tok);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000816}
817
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000818/* Get next char, updating state; error code goes into tok->done */
819
820static int
Antoine Pitrou9ed5f272013-08-13 20:18:52 +0200821tok_nextc(struct tok_state *tok)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000822{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000823 for (;;) {
824 if (tok->cur != tok->inp) {
825 return Py_CHARMASK(*tok->cur++); /* Fast path */
826 }
827 if (tok->done != E_OK)
828 return EOF;
829 if (tok->fp == NULL) {
830 char *end = strchr(tok->inp, '\n');
831 if (end != NULL)
832 end++;
833 else {
834 end = strchr(tok->inp, '\0');
835 if (end == tok->inp) {
836 tok->done = E_EOF;
837 return EOF;
838 }
839 }
840 if (tok->start == NULL)
841 tok->buf = tok->cur;
842 tok->line_start = tok->cur;
843 tok->lineno++;
844 tok->inp = end;
845 return Py_CHARMASK(*tok->cur++);
846 }
847 if (tok->prompt != NULL) {
848 char *newtok = PyOS_Readline(stdin, stdout, tok->prompt);
Victor Stinner89e34362011-01-07 18:47:22 +0000849 if (newtok != NULL) {
850 char *translated = translate_newlines(newtok, 0, tok);
851 PyMem_FREE(newtok);
852 if (translated == NULL)
853 return EOF;
854 newtok = translated;
855 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000856 if (tok->encoding && newtok && *newtok) {
857 /* Recode to UTF-8 */
858 Py_ssize_t buflen;
859 const char* buf;
860 PyObject *u = translate_into_utf8(newtok, tok->encoding);
861 PyMem_FREE(newtok);
862 if (!u) {
863 tok->done = E_DECODE;
864 return EOF;
865 }
866 buflen = PyBytes_GET_SIZE(u);
867 buf = PyBytes_AS_STRING(u);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000868 newtok = PyMem_MALLOC(buflen+1);
Zackery Spytz4c49da02018-12-07 03:11:30 -0700869 if (newtok == NULL) {
870 Py_DECREF(u);
871 tok->done = E_NOMEM;
872 return EOF;
873 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000874 strcpy(newtok, buf);
875 Py_DECREF(u);
876 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000877 if (tok->nextprompt != NULL)
878 tok->prompt = tok->nextprompt;
879 if (newtok == NULL)
880 tok->done = E_INTR;
881 else if (*newtok == '\0') {
882 PyMem_FREE(newtok);
883 tok->done = E_EOF;
884 }
885 else if (tok->start != NULL) {
886 size_t start = tok->start - tok->buf;
887 size_t oldlen = tok->cur - tok->buf;
888 size_t newlen = oldlen + strlen(newtok);
889 char *buf = tok->buf;
890 buf = (char *)PyMem_REALLOC(buf, newlen+1);
891 tok->lineno++;
892 if (buf == NULL) {
893 PyMem_FREE(tok->buf);
894 tok->buf = NULL;
895 PyMem_FREE(newtok);
896 tok->done = E_NOMEM;
897 return EOF;
898 }
899 tok->buf = buf;
900 tok->cur = tok->buf + oldlen;
901 tok->line_start = tok->cur;
902 strcpy(tok->buf + oldlen, newtok);
903 PyMem_FREE(newtok);
904 tok->inp = tok->buf + newlen;
905 tok->end = tok->inp + 1;
906 tok->start = tok->buf + start;
907 }
908 else {
909 tok->lineno++;
910 if (tok->buf != NULL)
911 PyMem_FREE(tok->buf);
912 tok->buf = newtok;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000913 tok->cur = tok->buf;
914 tok->line_start = tok->buf;
915 tok->inp = strchr(tok->buf, '\0');
916 tok->end = tok->inp + 1;
917 }
918 }
919 else {
920 int done = 0;
921 Py_ssize_t cur = 0;
922 char *pt;
923 if (tok->start == NULL) {
924 if (tok->buf == NULL) {
925 tok->buf = (char *)
926 PyMem_MALLOC(BUFSIZ);
927 if (tok->buf == NULL) {
928 tok->done = E_NOMEM;
929 return EOF;
930 }
931 tok->end = tok->buf + BUFSIZ;
932 }
933 if (decoding_fgets(tok->buf, (int)(tok->end - tok->buf),
934 tok) == NULL) {
Serhiy Storchaka0d441112015-11-14 15:10:35 +0200935 if (!tok->decoding_erred)
936 tok->done = E_EOF;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000937 done = 1;
938 }
939 else {
940 tok->done = E_OK;
941 tok->inp = strchr(tok->buf, '\0');
Benjamin Peterson26d998c2016-09-18 23:41:11 -0700942 done = tok->inp == tok->buf || tok->inp[-1] == '\n';
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 }
944 }
945 else {
946 cur = tok->cur - tok->buf;
947 if (decoding_feof(tok)) {
948 tok->done = E_EOF;
949 done = 1;
950 }
951 else
952 tok->done = E_OK;
953 }
954 tok->lineno++;
955 /* Read until '\n' or EOF */
956 while (!done) {
957 Py_ssize_t curstart = tok->start == NULL ? -1 :
958 tok->start - tok->buf;
959 Py_ssize_t curvalid = tok->inp - tok->buf;
960 Py_ssize_t newsize = curvalid + BUFSIZ;
961 char *newbuf = tok->buf;
962 newbuf = (char *)PyMem_REALLOC(newbuf,
963 newsize);
964 if (newbuf == NULL) {
965 tok->done = E_NOMEM;
966 tok->cur = tok->inp;
967 return EOF;
968 }
969 tok->buf = newbuf;
Serhiy Storchaka0d441112015-11-14 15:10:35 +0200970 tok->cur = tok->buf + cur;
971 tok->line_start = tok->cur;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000972 tok->inp = tok->buf + curvalid;
973 tok->end = tok->buf + newsize;
974 tok->start = curstart < 0 ? NULL :
975 tok->buf + curstart;
976 if (decoding_fgets(tok->inp,
977 (int)(tok->end - tok->inp),
978 tok) == NULL) {
979 /* Break out early on decoding
980 errors, as tok->buf will be NULL
981 */
982 if (tok->decoding_erred)
983 return EOF;
984 /* Last line does not end in \n,
985 fake one */
986 strcpy(tok->inp, "\n");
987 }
988 tok->inp = strchr(tok->inp, '\0');
989 done = tok->inp[-1] == '\n';
990 }
991 if (tok->buf != NULL) {
992 tok->cur = tok->buf + cur;
993 tok->line_start = tok->cur;
994 /* replace "\r\n" with "\n" */
995 /* For Mac leave the \r, giving a syntax error */
996 pt = tok->inp - 2;
997 if (pt >= tok->buf && *pt == '\r') {
998 *pt++ = '\n';
999 *pt = '\0';
1000 tok->inp = pt;
1001 }
1002 }
1003 }
1004 if (tok->done != E_OK) {
1005 if (tok->prompt != NULL)
1006 PySys_WriteStderr("\n");
1007 tok->cur = tok->inp;
1008 return EOF;
1009 }
1010 }
1011 /*NOTREACHED*/
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001012}
1013
1014
1015/* Back-up one character */
1016
1017static void
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02001018tok_backup(struct tok_state *tok, int c)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001019{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001020 if (c != EOF) {
1021 if (--tok->cur < tok->buf)
1022 Py_FatalError("tok_backup: beginning of buffer");
1023 if (*tok->cur != c)
1024 *tok->cur = c;
1025 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001026}
1027
1028
Guido van Rossum926f13a1998-04-09 21:38:06 +00001029static int
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001030syntaxerror(struct tok_state *tok, const char *format, ...)
1031{
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001032 va_list vargs;
1033#ifdef HAVE_STDARG_PROTOTYPES
1034 va_start(vargs, format);
1035#else
1036 va_start(vargs);
1037#endif
1038 PyErr_FormatV(PyExc_SyntaxError, format, vargs);
1039 va_end(vargs);
1040 PyErr_SyntaxLocationObject(tok->filename,
1041 tok->lineno,
Victor Stinnerc8846162018-07-21 03:36:06 +02001042 (int)(tok->cur - tok->line_start));
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001043 tok->done = E_ERROR;
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001044 return ERRORTOKEN;
1045}
1046
1047static int
Thomas Wouters23c9e002000-07-22 19:20:54 +00001048indenterror(struct tok_state *tok)
Guido van Rossum926f13a1998-04-09 21:38:06 +00001049{
Victor Stinnerf2ddc6a2017-11-17 01:25:47 -08001050 tok->done = E_TABSPACE;
1051 tok->cur = tok->inp;
1052 return ERRORTOKEN;
Guido van Rossum926f13a1998-04-09 21:38:06 +00001053}
1054
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02001055/* Verify that the identifier follows PEP 3131.
1056 All identifier strings are guaranteed to be "ready" unicode objects.
1057 */
Martin v. Löwis47383402007-08-15 07:32:56 +00001058static int
Victor Stinner52f6dd72010-03-12 14:45:56 +00001059verify_identifier(struct tok_state *tok)
Martin v. Löwis47383402007-08-15 07:32:56 +00001060{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001061 PyObject *s;
1062 int result;
Benjamin Petersond73aca72015-04-21 12:05:19 -04001063 if (tok->decoding_erred)
1064 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001065 s = PyUnicode_DecodeUTF8(tok->start, tok->cur - tok->start, NULL);
Zackery Spytz5061a742018-09-10 00:27:31 -06001066 if (s == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001067 if (PyErr_ExceptionMatches(PyExc_UnicodeDecodeError)) {
1068 PyErr_Clear();
1069 tok->done = E_IDENTIFIER;
1070 } else {
1071 tok->done = E_ERROR;
1072 }
1073 return 0;
1074 }
1075 result = PyUnicode_IsIdentifier(s);
1076 Py_DECREF(s);
1077 if (result == 0)
1078 tok->done = E_IDENTIFIER;
1079 return result;
Martin v. Löwis47383402007-08-15 07:32:56 +00001080}
Guido van Rossum926f13a1998-04-09 21:38:06 +00001081
Brett Cannona721aba2016-09-09 14:57:09 -07001082static int
1083tok_decimal_tail(struct tok_state *tok)
1084{
1085 int c;
1086
1087 while (1) {
1088 do {
1089 c = tok_nextc(tok);
1090 } while (isdigit(c));
1091 if (c != '_') {
1092 break;
1093 }
1094 c = tok_nextc(tok);
1095 if (!isdigit(c)) {
Brett Cannona721aba2016-09-09 14:57:09 -07001096 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001097 syntaxerror(tok, "invalid decimal literal");
Brett Cannona721aba2016-09-09 14:57:09 -07001098 return 0;
1099 }
1100 }
1101 return c;
1102}
1103
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001104/* Get next token, after space stripping etc. */
1105
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001106static int
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02001107tok_get(struct tok_state *tok, char **p_start, char **p_end)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001108{
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02001109 int c;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001110 int blankline, nonascii;
Guido van Rossum8c11a5c1991-07-27 21:42:56 +00001111
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001112 *p_start = *p_end = NULL;
Guido van Rossum8c11a5c1991-07-27 21:42:56 +00001113 nextline:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001114 tok->start = NULL;
1115 blankline = 0;
Guido van Rossum8c11a5c1991-07-27 21:42:56 +00001116
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001117 /* Get indentation level */
1118 if (tok->atbol) {
Antoine Pitrou9ed5f272013-08-13 20:18:52 +02001119 int col = 0;
1120 int altcol = 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001121 tok->atbol = 0;
1122 for (;;) {
1123 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001124 if (c == ' ') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001125 col++, altcol++;
Brett Cannona721aba2016-09-09 14:57:09 -07001126 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001127 else if (c == '\t') {
Victor Stinnerf2ddc6a2017-11-17 01:25:47 -08001128 col = (col / tok->tabsize + 1) * tok->tabsize;
1129 altcol = (altcol / ALTTABSIZE + 1) * ALTTABSIZE;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001130 }
Brett Cannona721aba2016-09-09 14:57:09 -07001131 else if (c == '\014') {/* Control-L (formfeed) */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001132 col = altcol = 0; /* For Emacs users */
Brett Cannona721aba2016-09-09 14:57:09 -07001133 }
1134 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001135 break;
Brett Cannona721aba2016-09-09 14:57:09 -07001136 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001137 }
1138 tok_backup(tok, c);
1139 if (c == '#' || c == '\n') {
1140 /* Lines with only whitespace and/or comments
1141 shouldn't affect the indentation and are
1142 not passed to the parser as NEWLINE tokens,
1143 except *totally* empty lines in interactive
1144 mode, which signal the end of a command group. */
Brett Cannona721aba2016-09-09 14:57:09 -07001145 if (col == 0 && c == '\n' && tok->prompt != NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001146 blankline = 0; /* Let it through */
Brett Cannona721aba2016-09-09 14:57:09 -07001147 }
1148 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001149 blankline = 1; /* Ignore completely */
Brett Cannona721aba2016-09-09 14:57:09 -07001150 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001151 /* We can't jump back right here since we still
1152 may need to skip to the end of a comment */
1153 }
1154 if (!blankline && tok->level == 0) {
1155 if (col == tok->indstack[tok->indent]) {
1156 /* No change */
1157 if (altcol != tok->altindstack[tok->indent]) {
Victor Stinnerf2ddc6a2017-11-17 01:25:47 -08001158 return indenterror(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001159 }
1160 }
1161 else if (col > tok->indstack[tok->indent]) {
1162 /* Indent -- always one */
1163 if (tok->indent+1 >= MAXINDENT) {
1164 tok->done = E_TOODEEP;
1165 tok->cur = tok->inp;
1166 return ERRORTOKEN;
1167 }
1168 if (altcol <= tok->altindstack[tok->indent]) {
Victor Stinnerf2ddc6a2017-11-17 01:25:47 -08001169 return indenterror(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001170 }
1171 tok->pendin++;
1172 tok->indstack[++tok->indent] = col;
1173 tok->altindstack[tok->indent] = altcol;
1174 }
1175 else /* col < tok->indstack[tok->indent] */ {
1176 /* Dedent -- any number, must be consistent */
1177 while (tok->indent > 0 &&
1178 col < tok->indstack[tok->indent]) {
1179 tok->pendin--;
1180 tok->indent--;
1181 }
1182 if (col != tok->indstack[tok->indent]) {
1183 tok->done = E_DEDENT;
1184 tok->cur = tok->inp;
1185 return ERRORTOKEN;
1186 }
1187 if (altcol != tok->altindstack[tok->indent]) {
Victor Stinnerf2ddc6a2017-11-17 01:25:47 -08001188 return indenterror(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001189 }
1190 }
1191 }
1192 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001193
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001194 tok->start = tok->cur;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001195
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001196 /* Return pending indents/dedents */
1197 if (tok->pendin != 0) {
1198 if (tok->pendin < 0) {
1199 tok->pendin++;
1200 return DEDENT;
1201 }
1202 else {
1203 tok->pendin--;
1204 return INDENT;
1205 }
1206 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001207
Guido van Rossum495da292019-03-07 12:38:08 -08001208 /* Peek ahead at the next character */
1209 c = tok_nextc(tok);
1210 tok_backup(tok, c);
1211 /* Check if we are closing an async function */
1212 if (tok->async_def
1213 && !blankline
1214 /* Due to some implementation artifacts of type comments,
1215 * a TYPE_COMMENT at the start of a function won't set an
1216 * indentation level and it will produce a NEWLINE after it.
1217 * To avoid spuriously ending an async function due to this,
1218 * wait until we have some non-newline char in front of us. */
1219 && c != '\n'
1220 && tok->level == 0
1221 /* There was a NEWLINE after ASYNC DEF,
1222 so we're past the signature. */
1223 && tok->async_def_nl
1224 /* Current indentation level is less than where
1225 the async function was defined */
1226 && tok->async_def_indent >= tok->indent)
1227 {
1228 tok->async_def = 0;
1229 tok->async_def_indent = 0;
1230 tok->async_def_nl = 0;
1231 }
1232
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001233 again:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001234 tok->start = NULL;
1235 /* Skip spaces */
1236 do {
1237 c = tok_nextc(tok);
1238 } while (c == ' ' || c == '\t' || c == '\014');
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001239
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001240 /* Set start of current token */
1241 tok->start = tok->cur - 1;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001242
Guido van Rossumdcfcd142019-01-31 03:40:27 -08001243 /* Skip comment, unless it's a type comment */
Brett Cannona721aba2016-09-09 14:57:09 -07001244 if (c == '#') {
Guido van Rossumdcfcd142019-01-31 03:40:27 -08001245 const char *prefix, *p, *type_start;
1246
Brett Cannona721aba2016-09-09 14:57:09 -07001247 while (c != EOF && c != '\n') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001248 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001249 }
Guido van Rossumdcfcd142019-01-31 03:40:27 -08001250
1251 if (tok->type_comments) {
1252 p = tok->start;
1253 prefix = type_comment_prefix;
1254 while (*prefix && p < tok->cur) {
1255 if (*prefix == ' ') {
1256 while (*p == ' ' || *p == '\t') {
1257 p++;
1258 }
1259 } else if (*prefix == *p) {
1260 p++;
1261 } else {
1262 break;
1263 }
1264
1265 prefix++;
1266 }
1267
1268 /* This is a type comment if we matched all of type_comment_prefix. */
1269 if (!*prefix) {
1270 int is_type_ignore = 1;
1271 tok_backup(tok, c); /* don't eat the newline or EOF */
1272
1273 type_start = p;
1274
1275 is_type_ignore = tok->cur >= p + 6 && memcmp(p, "ignore", 6) == 0;
1276 p += 6;
1277 while (is_type_ignore && p < tok->cur) {
1278 if (*p == '#')
1279 break;
1280 is_type_ignore = is_type_ignore && (*p == ' ' || *p == '\t');
1281 p++;
1282 }
1283
1284 if (is_type_ignore) {
1285 /* If this type ignore is the only thing on the line, consume the newline also. */
1286 if (blankline) {
1287 tok_nextc(tok);
1288 tok->atbol = 1;
1289 }
1290 return TYPE_IGNORE;
1291 } else {
1292 *p_start = (char *) type_start; /* after type_comment_prefix */
1293 *p_end = tok->cur;
1294 return TYPE_COMMENT;
1295 }
1296 }
1297 }
Brett Cannona721aba2016-09-09 14:57:09 -07001298 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001299
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001300 /* Check for EOF and errors now */
1301 if (c == EOF) {
1302 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN;
1303 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001304
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001305 /* Identifier (most frequent token!) */
1306 nonascii = 0;
1307 if (is_potential_identifier_start(c)) {
Berker Peksag6f805622017-02-05 04:32:39 +03001308 /* Process the various legal combinations of b"", r"", u"", and f"". */
Eric V. Smith235a6f02015-09-19 14:51:32 -04001309 int saw_b = 0, saw_r = 0, saw_u = 0, saw_f = 0;
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001310 while (1) {
Eric V. Smith235a6f02015-09-19 14:51:32 -04001311 if (!(saw_b || saw_u || saw_f) && (c == 'b' || c == 'B'))
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001312 saw_b = 1;
Armin Ronacher6ecf77b2012-03-04 12:04:06 +00001313 /* Since this is a backwards compatibility support literal we don't
1314 want to support it in arbitrary order like byte literals. */
Brett Cannona721aba2016-09-09 14:57:09 -07001315 else if (!(saw_b || saw_u || saw_r || saw_f)
1316 && (c == 'u'|| c == 'U')) {
Armin Ronacher6ecf77b2012-03-04 12:04:06 +00001317 saw_u = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001318 }
Christian Heimes0b3847d2012-06-20 11:17:58 +02001319 /* ur"" and ru"" are not supported */
Brett Cannona721aba2016-09-09 14:57:09 -07001320 else if (!(saw_r || saw_u) && (c == 'r' || c == 'R')) {
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001321 saw_r = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001322 }
1323 else if (!(saw_f || saw_b || saw_u) && (c == 'f' || c == 'F')) {
Eric V. Smith235a6f02015-09-19 14:51:32 -04001324 saw_f = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001325 }
1326 else {
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001327 break;
Brett Cannona721aba2016-09-09 14:57:09 -07001328 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001329 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001330 if (c == '"' || c == '\'') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001331 goto letter_quote;
Brett Cannona721aba2016-09-09 14:57:09 -07001332 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001333 }
1334 while (is_potential_identifier_char(c)) {
Brett Cannona721aba2016-09-09 14:57:09 -07001335 if (c >= 128) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001336 nonascii = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001337 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001338 c = tok_nextc(tok);
1339 }
1340 tok_backup(tok, c);
Brett Cannona721aba2016-09-09 14:57:09 -07001341 if (nonascii && !verify_identifier(tok)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001342 return ERRORTOKEN;
Brett Cannona721aba2016-09-09 14:57:09 -07001343 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001344 *p_start = tok->start;
1345 *p_end = tok->cur;
Yury Selivanov75445082015-05-11 22:57:16 -04001346
Guido van Rossum495da292019-03-07 12:38:08 -08001347 /* async/await parsing block. */
1348 if (tok->cur - tok->start == 5 && tok->start[0] == 'a') {
1349 /* May be an 'async' or 'await' token. For Python 3.7 or
1350 later we recognize them unconditionally. For Python
1351 3.5 or 3.6 we recognize 'async' in front of 'def', and
1352 either one inside of 'async def'. (Technically we
1353 shouldn't recognize these at all for 3.4 or earlier,
1354 but there's no *valid* Python 3.4 code that would be
1355 rejected, and async functions will be rejected in a
1356 later phase.) */
1357 if (!tok->async_hacks || tok->async_def) {
1358 /* Always recognize the keywords. */
1359 if (memcmp(tok->start, "async", 5) == 0) {
1360 return ASYNC;
1361 }
1362 if (memcmp(tok->start, "await", 5) == 0) {
1363 return AWAIT;
1364 }
1365 }
1366 else if (memcmp(tok->start, "async", 5) == 0) {
1367 /* The current token is 'async'.
1368 Look ahead one token to see if that is 'def'. */
1369
1370 struct tok_state ahead_tok;
1371 char *ahead_tok_start = NULL, *ahead_tok_end = NULL;
1372 int ahead_tok_kind;
1373
1374 memcpy(&ahead_tok, tok, sizeof(ahead_tok));
1375 ahead_tok_kind = tok_get(&ahead_tok, &ahead_tok_start,
1376 &ahead_tok_end);
1377
1378 if (ahead_tok_kind == NAME
1379 && ahead_tok.cur - ahead_tok.start == 3
1380 && memcmp(ahead_tok.start, "def", 3) == 0)
1381 {
1382 /* The next token is going to be 'def', so instead of
1383 returning a plain NAME token, return ASYNC. */
1384 tok->async_def_indent = tok->indent;
1385 tok->async_def = 1;
1386 return ASYNC;
1387 }
1388 }
1389 }
1390
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001391 return NAME;
1392 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001393
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001394 /* Newline */
1395 if (c == '\n') {
1396 tok->atbol = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001397 if (blankline || tok->level > 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001398 goto nextline;
Brett Cannona721aba2016-09-09 14:57:09 -07001399 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001400 *p_start = tok->start;
1401 *p_end = tok->cur - 1; /* Leave '\n' out of the string */
1402 tok->cont_line = 0;
Guido van Rossum495da292019-03-07 12:38:08 -08001403 if (tok->async_def) {
1404 /* We're somewhere inside an 'async def' function, and
1405 we've encountered a NEWLINE after its signature. */
1406 tok->async_def_nl = 1;
1407 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001408 return NEWLINE;
1409 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001410
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001411 /* Period or number starting with period? */
1412 if (c == '.') {
1413 c = tok_nextc(tok);
1414 if (isdigit(c)) {
1415 goto fraction;
1416 } else if (c == '.') {
1417 c = tok_nextc(tok);
1418 if (c == '.') {
1419 *p_start = tok->start;
1420 *p_end = tok->cur;
1421 return ELLIPSIS;
Brett Cannona721aba2016-09-09 14:57:09 -07001422 }
1423 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001424 tok_backup(tok, c);
1425 }
1426 tok_backup(tok, '.');
Brett Cannona721aba2016-09-09 14:57:09 -07001427 }
1428 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001429 tok_backup(tok, c);
1430 }
1431 *p_start = tok->start;
1432 *p_end = tok->cur;
1433 return DOT;
1434 }
Guido van Rossumf595fde1996-01-12 01:31:58 +00001435
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001436 /* Number */
1437 if (isdigit(c)) {
1438 if (c == '0') {
1439 /* Hex, octal or binary -- maybe. */
1440 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001441 if (c == 'x' || c == 'X') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001442 /* Hex */
1443 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001444 do {
Brett Cannona721aba2016-09-09 14:57:09 -07001445 if (c == '_') {
1446 c = tok_nextc(tok);
1447 }
1448 if (!isxdigit(c)) {
Brett Cannona721aba2016-09-09 14:57:09 -07001449 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001450 return syntaxerror(tok, "invalid hexadecimal literal");
Brett Cannona721aba2016-09-09 14:57:09 -07001451 }
1452 do {
1453 c = tok_nextc(tok);
1454 } while (isxdigit(c));
1455 } while (c == '_');
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001456 }
1457 else if (c == 'o' || c == 'O') {
1458 /* Octal */
1459 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001460 do {
Brett Cannona721aba2016-09-09 14:57:09 -07001461 if (c == '_') {
1462 c = tok_nextc(tok);
1463 }
1464 if (c < '0' || c >= '8') {
Brett Cannona721aba2016-09-09 14:57:09 -07001465 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001466 if (isdigit(c)) {
1467 return syntaxerror(tok,
1468 "invalid digit '%c' in octal literal", c);
1469 }
1470 else {
1471 return syntaxerror(tok, "invalid octal literal");
1472 }
Brett Cannona721aba2016-09-09 14:57:09 -07001473 }
1474 do {
1475 c = tok_nextc(tok);
1476 } while ('0' <= c && c < '8');
1477 } while (c == '_');
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001478 if (isdigit(c)) {
1479 return syntaxerror(tok,
1480 "invalid digit '%c' in octal literal", c);
1481 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001482 }
1483 else if (c == 'b' || c == 'B') {
1484 /* Binary */
1485 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001486 do {
Brett Cannona721aba2016-09-09 14:57:09 -07001487 if (c == '_') {
1488 c = tok_nextc(tok);
1489 }
1490 if (c != '0' && c != '1') {
Brett Cannona721aba2016-09-09 14:57:09 -07001491 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001492 if (isdigit(c)) {
1493 return syntaxerror(tok,
1494 "invalid digit '%c' in binary literal", c);
1495 }
1496 else {
1497 return syntaxerror(tok, "invalid binary literal");
1498 }
Brett Cannona721aba2016-09-09 14:57:09 -07001499 }
1500 do {
1501 c = tok_nextc(tok);
1502 } while (c == '0' || c == '1');
1503 } while (c == '_');
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001504 if (isdigit(c)) {
1505 return syntaxerror(tok,
1506 "invalid digit '%c' in binary literal", c);
1507 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001508 }
1509 else {
1510 int nonzero = 0;
1511 /* maybe old-style octal; c is first char of it */
1512 /* in any case, allow '0' as a literal */
Brett Cannona721aba2016-09-09 14:57:09 -07001513 while (1) {
1514 if (c == '_') {
1515 c = tok_nextc(tok);
1516 if (!isdigit(c)) {
Brett Cannona721aba2016-09-09 14:57:09 -07001517 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001518 return syntaxerror(tok, "invalid decimal literal");
Brett Cannona721aba2016-09-09 14:57:09 -07001519 }
1520 }
1521 if (c != '0') {
1522 break;
1523 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001524 c = tok_nextc(tok);
1525 }
Brett Cannona721aba2016-09-09 14:57:09 -07001526 if (isdigit(c)) {
1527 nonzero = 1;
1528 c = tok_decimal_tail(tok);
1529 if (c == 0) {
1530 return ERRORTOKEN;
1531 }
1532 }
1533 if (c == '.') {
1534 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001535 goto fraction;
Brett Cannona721aba2016-09-09 14:57:09 -07001536 }
1537 else if (c == 'e' || c == 'E') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001538 goto exponent;
Brett Cannona721aba2016-09-09 14:57:09 -07001539 }
1540 else if (c == 'j' || c == 'J') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001541 goto imaginary;
Brett Cannona721aba2016-09-09 14:57:09 -07001542 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001543 else if (nonzero) {
Brett Cannona721aba2016-09-09 14:57:09 -07001544 /* Old-style octal: now disallowed. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001545 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001546 return syntaxerror(tok,
1547 "leading zeros in decimal integer "
1548 "literals are not permitted; "
1549 "use an 0o prefix for octal integers");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001550 }
1551 }
1552 }
1553 else {
1554 /* Decimal */
Brett Cannona721aba2016-09-09 14:57:09 -07001555 c = tok_decimal_tail(tok);
1556 if (c == 0) {
1557 return ERRORTOKEN;
1558 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001559 {
1560 /* Accept floating point numbers. */
1561 if (c == '.') {
Brett Cannona721aba2016-09-09 14:57:09 -07001562 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001563 fraction:
1564 /* Fraction */
Brett Cannona721aba2016-09-09 14:57:09 -07001565 if (isdigit(c)) {
1566 c = tok_decimal_tail(tok);
1567 if (c == 0) {
1568 return ERRORTOKEN;
1569 }
1570 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001571 }
1572 if (c == 'e' || c == 'E') {
Benjamin Petersonc4161622014-06-07 12:36:39 -07001573 int e;
1574 exponent:
1575 e = c;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001576 /* Exponent part */
1577 c = tok_nextc(tok);
Benjamin Petersonc4161622014-06-07 12:36:39 -07001578 if (c == '+' || c == '-') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001579 c = tok_nextc(tok);
Benjamin Petersonc4161622014-06-07 12:36:39 -07001580 if (!isdigit(c)) {
Benjamin Petersonc4161622014-06-07 12:36:39 -07001581 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001582 return syntaxerror(tok, "invalid decimal literal");
Benjamin Petersonc4161622014-06-07 12:36:39 -07001583 }
1584 } else if (!isdigit(c)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001585 tok_backup(tok, c);
Benjamin Petersonc4161622014-06-07 12:36:39 -07001586 tok_backup(tok, e);
1587 *p_start = tok->start;
1588 *p_end = tok->cur;
1589 return NUMBER;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001590 }
Brett Cannona721aba2016-09-09 14:57:09 -07001591 c = tok_decimal_tail(tok);
1592 if (c == 0) {
1593 return ERRORTOKEN;
1594 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001595 }
Brett Cannona721aba2016-09-09 14:57:09 -07001596 if (c == 'j' || c == 'J') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001597 /* Imaginary part */
1598 imaginary:
1599 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001600 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001601 }
1602 }
1603 tok_backup(tok, c);
1604 *p_start = tok->start;
1605 *p_end = tok->cur;
1606 return NUMBER;
1607 }
Guido van Rossum24dacb31997-04-06 03:46:20 +00001608
1609 letter_quote:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001610 /* String */
1611 if (c == '\'' || c == '"') {
1612 int quote = c;
1613 int quote_size = 1; /* 1 or 3 */
1614 int end_quote_size = 0;
Guido van Rossumcf171a72007-11-16 00:51:45 +00001615
Anthony Sottile995d9b92019-01-12 20:05:13 -08001616 /* Nodes of type STRING, especially multi line strings
1617 must be handled differently in order to get both
1618 the starting line number and the column offset right.
1619 (cf. issue 16806) */
1620 tok->first_lineno = tok->lineno;
1621 tok->multi_line_start = tok->line_start;
1622
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001623 /* Find the quote size and start of string */
1624 c = tok_nextc(tok);
1625 if (c == quote) {
1626 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001627 if (c == quote) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001628 quote_size = 3;
Brett Cannona721aba2016-09-09 14:57:09 -07001629 }
1630 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001631 end_quote_size = 1; /* empty string found */
Brett Cannona721aba2016-09-09 14:57:09 -07001632 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001633 }
Brett Cannona721aba2016-09-09 14:57:09 -07001634 if (c != quote) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001635 tok_backup(tok, c);
Brett Cannona721aba2016-09-09 14:57:09 -07001636 }
Guido van Rossumcf171a72007-11-16 00:51:45 +00001637
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001638 /* Get rest of string */
1639 while (end_quote_size != quote_size) {
1640 c = tok_nextc(tok);
1641 if (c == EOF) {
Brett Cannona721aba2016-09-09 14:57:09 -07001642 if (quote_size == 3) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001643 tok->done = E_EOFS;
Brett Cannona721aba2016-09-09 14:57:09 -07001644 }
1645 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001646 tok->done = E_EOLS;
Brett Cannona721aba2016-09-09 14:57:09 -07001647 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001648 tok->cur = tok->inp;
1649 return ERRORTOKEN;
1650 }
1651 if (quote_size == 1 && c == '\n') {
1652 tok->done = E_EOLS;
1653 tok->cur = tok->inp;
1654 return ERRORTOKEN;
1655 }
Brett Cannona721aba2016-09-09 14:57:09 -07001656 if (c == quote) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001657 end_quote_size += 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001658 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001659 else {
1660 end_quote_size = 0;
Brett Cannona721aba2016-09-09 14:57:09 -07001661 if (c == '\\') {
Christian Heimesc6cc23d2016-09-09 00:09:45 +02001662 tok_nextc(tok); /* skip escaped char */
Brett Cannona721aba2016-09-09 14:57:09 -07001663 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001664 }
1665 }
Guido van Rossumcf171a72007-11-16 00:51:45 +00001666
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001667 *p_start = tok->start;
1668 *p_end = tok->cur;
1669 return STRING;
1670 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001671
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001672 /* Line continuation */
1673 if (c == '\\') {
1674 c = tok_nextc(tok);
1675 if (c != '\n') {
1676 tok->done = E_LINECONT;
1677 tok->cur = tok->inp;
1678 return ERRORTOKEN;
1679 }
1680 tok->cont_line = 1;
1681 goto again; /* Read next line */
1682 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001683
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001684 /* Check for two-character token */
1685 {
1686 int c2 = tok_nextc(tok);
1687 int token = PyToken_TwoChars(c, c2);
1688 if (token != OP) {
1689 int c3 = tok_nextc(tok);
1690 int token3 = PyToken_ThreeChars(c, c2, c3);
1691 if (token3 != OP) {
1692 token = token3;
Brett Cannona721aba2016-09-09 14:57:09 -07001693 }
1694 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001695 tok_backup(tok, c3);
1696 }
1697 *p_start = tok->start;
1698 *p_end = tok->cur;
1699 return token;
1700 }
1701 tok_backup(tok, c2);
1702 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001703
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001704 /* Keep track of parentheses nesting level */
1705 switch (c) {
1706 case '(':
1707 case '[':
1708 case '{':
Serhiy Storchaka94cf3082018-12-17 17:34:14 +02001709 if (tok->level >= MAXLEVEL) {
1710 return syntaxerror(tok, "too many nested parentheses");
1711 }
1712 tok->parenstack[tok->level] = c;
1713 tok->parenlinenostack[tok->level] = tok->lineno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001714 tok->level++;
1715 break;
1716 case ')':
1717 case ']':
1718 case '}':
Serhiy Storchaka94cf3082018-12-17 17:34:14 +02001719 if (!tok->level) {
1720 return syntaxerror(tok, "unmatched '%c'", c);
1721 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001722 tok->level--;
Serhiy Storchaka94cf3082018-12-17 17:34:14 +02001723 int opening = tok->parenstack[tok->level];
1724 if (!((opening == '(' && c == ')') ||
1725 (opening == '[' && c == ']') ||
1726 (opening == '{' && c == '}')))
1727 {
1728 if (tok->parenlinenostack[tok->level] != tok->lineno) {
1729 return syntaxerror(tok,
1730 "closing parenthesis '%c' does not match "
1731 "opening parenthesis '%c' on line %d",
1732 c, opening, tok->parenlinenostack[tok->level]);
1733 }
1734 else {
1735 return syntaxerror(tok,
1736 "closing parenthesis '%c' does not match "
1737 "opening parenthesis '%c'",
1738 c, opening);
1739 }
1740 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001741 break;
1742 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001743
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001744 /* Punctuation character */
1745 *p_start = tok->start;
1746 *p_end = tok->cur;
1747 return PyToken_OneChar(c);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001748}
1749
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001750int
1751PyTokenizer_Get(struct tok_state *tok, char **p_start, char **p_end)
1752{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001753 int result = tok_get(tok, p_start, p_end);
1754 if (tok->decoding_erred) {
1755 result = ERRORTOKEN;
1756 tok->done = E_DECODE;
1757 }
1758 return result;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001759}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001760
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001761/* Get the encoding of a Python file. Check for the coding cookie and check if
1762 the file starts with a BOM.
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001763
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001764 PyTokenizer_FindEncodingFilename() returns NULL when it can't find the
1765 encoding in the first or second line of the file (in which case the encoding
1766 should be assumed to be UTF-8).
Brett Cannone4539892007-10-20 03:46:49 +00001767
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001768 The char* returned is malloc'ed via PyMem_MALLOC() and thus must be freed
1769 by the caller. */
1770
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001771char *
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001772PyTokenizer_FindEncodingFilename(int fd, PyObject *filename)
Guido van Rossum40d20bc2007-10-22 00:09:51 +00001773{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001774 struct tok_state *tok;
1775 FILE *fp;
1776 char *p_start =NULL , *p_end =NULL , *encoding = NULL;
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001777
Victor Stinnerdaf45552013-08-28 00:53:59 +02001778 fd = _Py_dup(fd);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001779 if (fd < 0) {
1780 return NULL;
1781 }
Victor Stinnerdaf45552013-08-28 00:53:59 +02001782
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001783 fp = fdopen(fd, "r");
1784 if (fp == NULL) {
1785 return NULL;
1786 }
1787 tok = PyTokenizer_FromFile(fp, NULL, NULL, NULL);
1788 if (tok == NULL) {
1789 fclose(fp);
1790 return NULL;
1791 }
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001792 if (filename != NULL) {
1793 Py_INCREF(filename);
1794 tok->filename = filename;
1795 }
1796 else {
1797 tok->filename = PyUnicode_FromString("<string>");
1798 if (tok->filename == NULL) {
1799 fclose(fp);
1800 PyTokenizer_Free(tok);
1801 return encoding;
1802 }
1803 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001804 while (tok->lineno < 2 && tok->done == E_OK) {
1805 PyTokenizer_Get(tok, &p_start, &p_end);
1806 }
1807 fclose(fp);
1808 if (tok->encoding) {
1809 encoding = (char *)PyMem_MALLOC(strlen(tok->encoding) + 1);
1810 if (encoding)
1811 strcpy(encoding, tok->encoding);
1812 }
1813 PyTokenizer_Free(tok);
1814 return encoding;
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001815}
Thomas Wouters89d996e2007-09-08 17:39:28 +00001816
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001817char *
1818PyTokenizer_FindEncoding(int fd)
1819{
1820 return PyTokenizer_FindEncodingFilename(fd, NULL);
1821}
1822
Guido van Rossum408027e1996-12-30 16:17:54 +00001823#ifdef Py_DEBUG
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001824
1825void
Thomas Wouters23c9e002000-07-22 19:20:54 +00001826tok_dump(int type, char *start, char *end)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001827{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001828 printf("%s", _PyParser_TokenNames[type]);
1829 if (type == NAME || type == NUMBER || type == STRING || type == OP)
1830 printf("(%.*s)", (int)(end - start), start);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001831}
1832
1833#endif