blob: 5dc2ae65c42daf67aa6fbd9066ec6aa9aacfb347 [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
Michael J. Sullivand8320ec2019-05-11 11:17:24 -07001275 /* A TYPE_IGNORE is "type: ignore" followed by the end of the token
1276 * or anything non-alphanumeric. */
1277 is_type_ignore = (
1278 tok->cur >= p + 6 && memcmp(p, "ignore", 6) == 0
1279 && !(tok->cur > p + 6 && isalnum(p[6])));
Guido van Rossumdcfcd142019-01-31 03:40:27 -08001280
1281 if (is_type_ignore) {
1282 /* If this type ignore is the only thing on the line, consume the newline also. */
1283 if (blankline) {
1284 tok_nextc(tok);
1285 tok->atbol = 1;
1286 }
1287 return TYPE_IGNORE;
1288 } else {
1289 *p_start = (char *) type_start; /* after type_comment_prefix */
1290 *p_end = tok->cur;
1291 return TYPE_COMMENT;
1292 }
1293 }
1294 }
Brett Cannona721aba2016-09-09 14:57:09 -07001295 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001296
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001297 /* Check for EOF and errors now */
1298 if (c == EOF) {
1299 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN;
1300 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001301
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001302 /* Identifier (most frequent token!) */
1303 nonascii = 0;
1304 if (is_potential_identifier_start(c)) {
Berker Peksag6f805622017-02-05 04:32:39 +03001305 /* Process the various legal combinations of b"", r"", u"", and f"". */
Eric V. Smith235a6f02015-09-19 14:51:32 -04001306 int saw_b = 0, saw_r = 0, saw_u = 0, saw_f = 0;
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001307 while (1) {
Eric V. Smith235a6f02015-09-19 14:51:32 -04001308 if (!(saw_b || saw_u || saw_f) && (c == 'b' || c == 'B'))
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001309 saw_b = 1;
Armin Ronacher6ecf77b2012-03-04 12:04:06 +00001310 /* Since this is a backwards compatibility support literal we don't
1311 want to support it in arbitrary order like byte literals. */
Brett Cannona721aba2016-09-09 14:57:09 -07001312 else if (!(saw_b || saw_u || saw_r || saw_f)
1313 && (c == 'u'|| c == 'U')) {
Armin Ronacher6ecf77b2012-03-04 12:04:06 +00001314 saw_u = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001315 }
Christian Heimes0b3847d2012-06-20 11:17:58 +02001316 /* ur"" and ru"" are not supported */
Brett Cannona721aba2016-09-09 14:57:09 -07001317 else if (!(saw_r || saw_u) && (c == 'r' || c == 'R')) {
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001318 saw_r = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001319 }
1320 else if (!(saw_f || saw_b || saw_u) && (c == 'f' || c == 'F')) {
Eric V. Smith235a6f02015-09-19 14:51:32 -04001321 saw_f = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001322 }
1323 else {
Antoine Pitrou3a5d4cb2012-01-12 22:46:19 +01001324 break;
Brett Cannona721aba2016-09-09 14:57:09 -07001325 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001326 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001327 if (c == '"' || c == '\'') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001328 goto letter_quote;
Brett Cannona721aba2016-09-09 14:57:09 -07001329 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001330 }
1331 while (is_potential_identifier_char(c)) {
Brett Cannona721aba2016-09-09 14:57:09 -07001332 if (c >= 128) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001333 nonascii = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001334 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001335 c = tok_nextc(tok);
1336 }
1337 tok_backup(tok, c);
Brett Cannona721aba2016-09-09 14:57:09 -07001338 if (nonascii && !verify_identifier(tok)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001339 return ERRORTOKEN;
Brett Cannona721aba2016-09-09 14:57:09 -07001340 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001341 *p_start = tok->start;
1342 *p_end = tok->cur;
Yury Selivanov75445082015-05-11 22:57:16 -04001343
Guido van Rossum495da292019-03-07 12:38:08 -08001344 /* async/await parsing block. */
1345 if (tok->cur - tok->start == 5 && tok->start[0] == 'a') {
1346 /* May be an 'async' or 'await' token. For Python 3.7 or
1347 later we recognize them unconditionally. For Python
1348 3.5 or 3.6 we recognize 'async' in front of 'def', and
1349 either one inside of 'async def'. (Technically we
1350 shouldn't recognize these at all for 3.4 or earlier,
1351 but there's no *valid* Python 3.4 code that would be
1352 rejected, and async functions will be rejected in a
1353 later phase.) */
1354 if (!tok->async_hacks || tok->async_def) {
1355 /* Always recognize the keywords. */
1356 if (memcmp(tok->start, "async", 5) == 0) {
1357 return ASYNC;
1358 }
1359 if (memcmp(tok->start, "await", 5) == 0) {
1360 return AWAIT;
1361 }
1362 }
1363 else if (memcmp(tok->start, "async", 5) == 0) {
1364 /* The current token is 'async'.
1365 Look ahead one token to see if that is 'def'. */
1366
1367 struct tok_state ahead_tok;
1368 char *ahead_tok_start = NULL, *ahead_tok_end = NULL;
1369 int ahead_tok_kind;
1370
1371 memcpy(&ahead_tok, tok, sizeof(ahead_tok));
1372 ahead_tok_kind = tok_get(&ahead_tok, &ahead_tok_start,
1373 &ahead_tok_end);
1374
1375 if (ahead_tok_kind == NAME
1376 && ahead_tok.cur - ahead_tok.start == 3
1377 && memcmp(ahead_tok.start, "def", 3) == 0)
1378 {
1379 /* The next token is going to be 'def', so instead of
1380 returning a plain NAME token, return ASYNC. */
1381 tok->async_def_indent = tok->indent;
1382 tok->async_def = 1;
1383 return ASYNC;
1384 }
1385 }
1386 }
1387
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001388 return NAME;
1389 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001390
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001391 /* Newline */
1392 if (c == '\n') {
1393 tok->atbol = 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001394 if (blankline || tok->level > 0) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001395 goto nextline;
Brett Cannona721aba2016-09-09 14:57:09 -07001396 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001397 *p_start = tok->start;
1398 *p_end = tok->cur - 1; /* Leave '\n' out of the string */
1399 tok->cont_line = 0;
Guido van Rossum495da292019-03-07 12:38:08 -08001400 if (tok->async_def) {
1401 /* We're somewhere inside an 'async def' function, and
1402 we've encountered a NEWLINE after its signature. */
1403 tok->async_def_nl = 1;
1404 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001405 return NEWLINE;
1406 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001407
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001408 /* Period or number starting with period? */
1409 if (c == '.') {
1410 c = tok_nextc(tok);
1411 if (isdigit(c)) {
1412 goto fraction;
1413 } else if (c == '.') {
1414 c = tok_nextc(tok);
1415 if (c == '.') {
1416 *p_start = tok->start;
1417 *p_end = tok->cur;
1418 return ELLIPSIS;
Brett Cannona721aba2016-09-09 14:57:09 -07001419 }
1420 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001421 tok_backup(tok, c);
1422 }
1423 tok_backup(tok, '.');
Brett Cannona721aba2016-09-09 14:57:09 -07001424 }
1425 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001426 tok_backup(tok, c);
1427 }
1428 *p_start = tok->start;
1429 *p_end = tok->cur;
1430 return DOT;
1431 }
Guido van Rossumf595fde1996-01-12 01:31:58 +00001432
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001433 /* Number */
1434 if (isdigit(c)) {
1435 if (c == '0') {
1436 /* Hex, octal or binary -- maybe. */
1437 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001438 if (c == 'x' || c == 'X') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001439 /* Hex */
1440 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001441 do {
Brett Cannona721aba2016-09-09 14:57:09 -07001442 if (c == '_') {
1443 c = tok_nextc(tok);
1444 }
1445 if (!isxdigit(c)) {
Brett Cannona721aba2016-09-09 14:57:09 -07001446 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001447 return syntaxerror(tok, "invalid hexadecimal literal");
Brett Cannona721aba2016-09-09 14:57:09 -07001448 }
1449 do {
1450 c = tok_nextc(tok);
1451 } while (isxdigit(c));
1452 } while (c == '_');
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001453 }
1454 else if (c == 'o' || c == 'O') {
1455 /* Octal */
1456 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001457 do {
Brett Cannona721aba2016-09-09 14:57:09 -07001458 if (c == '_') {
1459 c = tok_nextc(tok);
1460 }
1461 if (c < '0' || c >= '8') {
Brett Cannona721aba2016-09-09 14:57:09 -07001462 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001463 if (isdigit(c)) {
1464 return syntaxerror(tok,
1465 "invalid digit '%c' in octal literal", c);
1466 }
1467 else {
1468 return syntaxerror(tok, "invalid octal literal");
1469 }
Brett Cannona721aba2016-09-09 14:57:09 -07001470 }
1471 do {
1472 c = tok_nextc(tok);
1473 } while ('0' <= c && c < '8');
1474 } while (c == '_');
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001475 if (isdigit(c)) {
1476 return syntaxerror(tok,
1477 "invalid digit '%c' in octal literal", c);
1478 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001479 }
1480 else if (c == 'b' || c == 'B') {
1481 /* Binary */
1482 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001483 do {
Brett Cannona721aba2016-09-09 14:57:09 -07001484 if (c == '_') {
1485 c = tok_nextc(tok);
1486 }
1487 if (c != '0' && c != '1') {
Brett Cannona721aba2016-09-09 14:57:09 -07001488 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001489 if (isdigit(c)) {
1490 return syntaxerror(tok,
1491 "invalid digit '%c' in binary literal", c);
1492 }
1493 else {
1494 return syntaxerror(tok, "invalid binary literal");
1495 }
Brett Cannona721aba2016-09-09 14:57:09 -07001496 }
1497 do {
1498 c = tok_nextc(tok);
1499 } while (c == '0' || c == '1');
1500 } while (c == '_');
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001501 if (isdigit(c)) {
1502 return syntaxerror(tok,
1503 "invalid digit '%c' in binary literal", c);
1504 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001505 }
1506 else {
1507 int nonzero = 0;
1508 /* maybe old-style octal; c is first char of it */
1509 /* in any case, allow '0' as a literal */
Brett Cannona721aba2016-09-09 14:57:09 -07001510 while (1) {
1511 if (c == '_') {
1512 c = tok_nextc(tok);
1513 if (!isdigit(c)) {
Brett Cannona721aba2016-09-09 14:57:09 -07001514 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001515 return syntaxerror(tok, "invalid decimal literal");
Brett Cannona721aba2016-09-09 14:57:09 -07001516 }
1517 }
1518 if (c != '0') {
1519 break;
1520 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001521 c = tok_nextc(tok);
1522 }
Brett Cannona721aba2016-09-09 14:57:09 -07001523 if (isdigit(c)) {
1524 nonzero = 1;
1525 c = tok_decimal_tail(tok);
1526 if (c == 0) {
1527 return ERRORTOKEN;
1528 }
1529 }
1530 if (c == '.') {
1531 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001532 goto fraction;
Brett Cannona721aba2016-09-09 14:57:09 -07001533 }
1534 else if (c == 'e' || c == 'E') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001535 goto exponent;
Brett Cannona721aba2016-09-09 14:57:09 -07001536 }
1537 else if (c == 'j' || c == 'J') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001538 goto imaginary;
Brett Cannona721aba2016-09-09 14:57:09 -07001539 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001540 else if (nonzero) {
Brett Cannona721aba2016-09-09 14:57:09 -07001541 /* Old-style octal: now disallowed. */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001542 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001543 return syntaxerror(tok,
1544 "leading zeros in decimal integer "
1545 "literals are not permitted; "
1546 "use an 0o prefix for octal integers");
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001547 }
1548 }
1549 }
1550 else {
1551 /* Decimal */
Brett Cannona721aba2016-09-09 14:57:09 -07001552 c = tok_decimal_tail(tok);
1553 if (c == 0) {
1554 return ERRORTOKEN;
1555 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001556 {
1557 /* Accept floating point numbers. */
1558 if (c == '.') {
Brett Cannona721aba2016-09-09 14:57:09 -07001559 c = tok_nextc(tok);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001560 fraction:
1561 /* Fraction */
Brett Cannona721aba2016-09-09 14:57:09 -07001562 if (isdigit(c)) {
1563 c = tok_decimal_tail(tok);
1564 if (c == 0) {
1565 return ERRORTOKEN;
1566 }
1567 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001568 }
1569 if (c == 'e' || c == 'E') {
Benjamin Petersonc4161622014-06-07 12:36:39 -07001570 int e;
1571 exponent:
1572 e = c;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001573 /* Exponent part */
1574 c = tok_nextc(tok);
Benjamin Petersonc4161622014-06-07 12:36:39 -07001575 if (c == '+' || c == '-') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001576 c = tok_nextc(tok);
Benjamin Petersonc4161622014-06-07 12:36:39 -07001577 if (!isdigit(c)) {
Benjamin Petersonc4161622014-06-07 12:36:39 -07001578 tok_backup(tok, c);
Serhiy Storchakacf7303e2018-07-09 15:09:35 +03001579 return syntaxerror(tok, "invalid decimal literal");
Benjamin Petersonc4161622014-06-07 12:36:39 -07001580 }
1581 } else if (!isdigit(c)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001582 tok_backup(tok, c);
Benjamin Petersonc4161622014-06-07 12:36:39 -07001583 tok_backup(tok, e);
1584 *p_start = tok->start;
1585 *p_end = tok->cur;
1586 return NUMBER;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001587 }
Brett Cannona721aba2016-09-09 14:57:09 -07001588 c = tok_decimal_tail(tok);
1589 if (c == 0) {
1590 return ERRORTOKEN;
1591 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001592 }
Brett Cannona721aba2016-09-09 14:57:09 -07001593 if (c == 'j' || c == 'J') {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001594 /* Imaginary part */
1595 imaginary:
1596 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001597 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001598 }
1599 }
1600 tok_backup(tok, c);
1601 *p_start = tok->start;
1602 *p_end = tok->cur;
1603 return NUMBER;
1604 }
Guido van Rossum24dacb31997-04-06 03:46:20 +00001605
1606 letter_quote:
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001607 /* String */
1608 if (c == '\'' || c == '"') {
1609 int quote = c;
1610 int quote_size = 1; /* 1 or 3 */
1611 int end_quote_size = 0;
Guido van Rossumcf171a72007-11-16 00:51:45 +00001612
Anthony Sottile995d9b92019-01-12 20:05:13 -08001613 /* Nodes of type STRING, especially multi line strings
1614 must be handled differently in order to get both
1615 the starting line number and the column offset right.
1616 (cf. issue 16806) */
1617 tok->first_lineno = tok->lineno;
1618 tok->multi_line_start = tok->line_start;
1619
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001620 /* Find the quote size and start of string */
1621 c = tok_nextc(tok);
1622 if (c == quote) {
1623 c = tok_nextc(tok);
Brett Cannona721aba2016-09-09 14:57:09 -07001624 if (c == quote) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001625 quote_size = 3;
Brett Cannona721aba2016-09-09 14:57:09 -07001626 }
1627 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001628 end_quote_size = 1; /* empty string found */
Brett Cannona721aba2016-09-09 14:57:09 -07001629 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001630 }
Brett Cannona721aba2016-09-09 14:57:09 -07001631 if (c != quote) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001632 tok_backup(tok, c);
Brett Cannona721aba2016-09-09 14:57:09 -07001633 }
Guido van Rossumcf171a72007-11-16 00:51:45 +00001634
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001635 /* Get rest of string */
1636 while (end_quote_size != quote_size) {
1637 c = tok_nextc(tok);
1638 if (c == EOF) {
Brett Cannona721aba2016-09-09 14:57:09 -07001639 if (quote_size == 3) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001640 tok->done = E_EOFS;
Brett Cannona721aba2016-09-09 14:57:09 -07001641 }
1642 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001643 tok->done = E_EOLS;
Brett Cannona721aba2016-09-09 14:57:09 -07001644 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001645 tok->cur = tok->inp;
1646 return ERRORTOKEN;
1647 }
1648 if (quote_size == 1 && c == '\n') {
1649 tok->done = E_EOLS;
1650 tok->cur = tok->inp;
1651 return ERRORTOKEN;
1652 }
Brett Cannona721aba2016-09-09 14:57:09 -07001653 if (c == quote) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001654 end_quote_size += 1;
Brett Cannona721aba2016-09-09 14:57:09 -07001655 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001656 else {
1657 end_quote_size = 0;
Brett Cannona721aba2016-09-09 14:57:09 -07001658 if (c == '\\') {
Christian Heimesc6cc23d2016-09-09 00:09:45 +02001659 tok_nextc(tok); /* skip escaped char */
Brett Cannona721aba2016-09-09 14:57:09 -07001660 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001661 }
1662 }
Guido van Rossumcf171a72007-11-16 00:51:45 +00001663
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001664 *p_start = tok->start;
1665 *p_end = tok->cur;
1666 return STRING;
1667 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001668
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001669 /* Line continuation */
1670 if (c == '\\') {
1671 c = tok_nextc(tok);
1672 if (c != '\n') {
1673 tok->done = E_LINECONT;
1674 tok->cur = tok->inp;
1675 return ERRORTOKEN;
1676 }
1677 tok->cont_line = 1;
1678 goto again; /* Read next line */
1679 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001680
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001681 /* Check for two-character token */
1682 {
1683 int c2 = tok_nextc(tok);
1684 int token = PyToken_TwoChars(c, c2);
1685 if (token != OP) {
1686 int c3 = tok_nextc(tok);
1687 int token3 = PyToken_ThreeChars(c, c2, c3);
1688 if (token3 != OP) {
1689 token = token3;
Brett Cannona721aba2016-09-09 14:57:09 -07001690 }
1691 else {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001692 tok_backup(tok, c3);
1693 }
1694 *p_start = tok->start;
1695 *p_end = tok->cur;
1696 return token;
1697 }
1698 tok_backup(tok, c2);
1699 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001700
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001701 /* Keep track of parentheses nesting level */
1702 switch (c) {
1703 case '(':
1704 case '[':
1705 case '{':
Serhiy Storchaka94cf3082018-12-17 17:34:14 +02001706 if (tok->level >= MAXLEVEL) {
1707 return syntaxerror(tok, "too many nested parentheses");
1708 }
1709 tok->parenstack[tok->level] = c;
1710 tok->parenlinenostack[tok->level] = tok->lineno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001711 tok->level++;
1712 break;
1713 case ')':
1714 case ']':
1715 case '}':
Serhiy Storchaka94cf3082018-12-17 17:34:14 +02001716 if (!tok->level) {
1717 return syntaxerror(tok, "unmatched '%c'", c);
1718 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001719 tok->level--;
Serhiy Storchaka94cf3082018-12-17 17:34:14 +02001720 int opening = tok->parenstack[tok->level];
1721 if (!((opening == '(' && c == ')') ||
1722 (opening == '[' && c == ']') ||
1723 (opening == '{' && c == '}')))
1724 {
1725 if (tok->parenlinenostack[tok->level] != tok->lineno) {
1726 return syntaxerror(tok,
1727 "closing parenthesis '%c' does not match "
1728 "opening parenthesis '%c' on line %d",
1729 c, opening, tok->parenlinenostack[tok->level]);
1730 }
1731 else {
1732 return syntaxerror(tok,
1733 "closing parenthesis '%c' does not match "
1734 "opening parenthesis '%c'",
1735 c, opening);
1736 }
1737 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001738 break;
1739 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001740
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001741 /* Punctuation character */
1742 *p_start = tok->start;
1743 *p_end = tok->cur;
1744 return PyToken_OneChar(c);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001745}
1746
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001747int
1748PyTokenizer_Get(struct tok_state *tok, char **p_start, char **p_end)
1749{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001750 int result = tok_get(tok, p_start, p_end);
1751 if (tok->decoding_erred) {
1752 result = ERRORTOKEN;
1753 tok->done = E_DECODE;
1754 }
1755 return result;
Martin v. Löwis00f1e3f2002-08-04 17:29:52 +00001756}
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001757
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001758/* Get the encoding of a Python file. Check for the coding cookie and check if
1759 the file starts with a BOM.
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001760
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001761 PyTokenizer_FindEncodingFilename() returns NULL when it can't find the
1762 encoding in the first or second line of the file (in which case the encoding
1763 should be assumed to be UTF-8).
Brett Cannone4539892007-10-20 03:46:49 +00001764
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001765 The char* returned is malloc'ed via PyMem_MALLOC() and thus must be freed
1766 by the caller. */
1767
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001768char *
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001769PyTokenizer_FindEncodingFilename(int fd, PyObject *filename)
Guido van Rossum40d20bc2007-10-22 00:09:51 +00001770{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001771 struct tok_state *tok;
1772 FILE *fp;
1773 char *p_start =NULL , *p_end =NULL , *encoding = NULL;
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001774
Victor Stinnerdaf45552013-08-28 00:53:59 +02001775 fd = _Py_dup(fd);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001776 if (fd < 0) {
1777 return NULL;
1778 }
Victor Stinnerdaf45552013-08-28 00:53:59 +02001779
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001780 fp = fdopen(fd, "r");
1781 if (fp == NULL) {
1782 return NULL;
1783 }
1784 tok = PyTokenizer_FromFile(fp, NULL, NULL, NULL);
1785 if (tok == NULL) {
1786 fclose(fp);
1787 return NULL;
1788 }
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001789 if (filename != NULL) {
1790 Py_INCREF(filename);
1791 tok->filename = filename;
1792 }
1793 else {
1794 tok->filename = PyUnicode_FromString("<string>");
1795 if (tok->filename == NULL) {
1796 fclose(fp);
1797 PyTokenizer_Free(tok);
1798 return encoding;
1799 }
1800 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001801 while (tok->lineno < 2 && tok->done == E_OK) {
1802 PyTokenizer_Get(tok, &p_start, &p_end);
1803 }
1804 fclose(fp);
1805 if (tok->encoding) {
1806 encoding = (char *)PyMem_MALLOC(strlen(tok->encoding) + 1);
1807 if (encoding)
1808 strcpy(encoding, tok->encoding);
1809 }
1810 PyTokenizer_Free(tok);
1811 return encoding;
Guido van Rossumce3a72a2007-10-19 23:16:50 +00001812}
Thomas Wouters89d996e2007-09-08 17:39:28 +00001813
Victor Stinnerfe7c5b52011-04-05 01:48:03 +02001814char *
1815PyTokenizer_FindEncoding(int fd)
1816{
1817 return PyTokenizer_FindEncodingFilename(fd, NULL);
1818}
1819
Guido van Rossum408027e1996-12-30 16:17:54 +00001820#ifdef Py_DEBUG
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001821
1822void
Thomas Wouters23c9e002000-07-22 19:20:54 +00001823tok_dump(int type, char *start, char *end)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001824{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001825 printf("%s", _PyParser_TokenNames[type]);
1826 if (type == NAME || type == NUMBER || type == STRING || type == OP)
1827 printf("(%.*s)", (int)(end - start), start);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001828}
1829
1830#endif