Coverage Report

Created: 2023-09-15 06:13

/src/testdir/build/lua-master/source/lstate.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
** $Id: lstate.c $
3
** Global State
4
** See Copyright Notice in lua.h
5
*/
6
7
#define lstate_c
8
#define LUA_CORE
9
10
#include "lprefix.h"
11
12
13
#include <stddef.h>
14
#include <string.h>
15
16
#include "lua.h"
17
18
#include "lapi.h"
19
#include "ldebug.h"
20
#include "ldo.h"
21
#include "lfunc.h"
22
#include "lgc.h"
23
#include "llex.h"
24
#include "lmem.h"
25
#include "lstate.h"
26
#include "lstring.h"
27
#include "ltable.h"
28
#include "ltm.h"
29
30
31
32
/*
33
** thread state + extra space
34
*/
35
typedef struct LX {
36
  lu_byte extra_[LUA_EXTRASPACE];
37
  lua_State l;
38
} LX;
39
40
41
/*
42
** Main thread combines a thread state and the global state
43
*/
44
typedef struct LG {
45
  LX l;
46
  global_State g;
47
} LG;
48
49
50
51
9.18k
#define fromstate(L)  (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l)))
52
53
54
/*
55
** A macro to create a "random" seed when a state is created;
56
** the seed is used to randomize string hashes.
57
*/
58
#if !defined(luai_makeseed)
59
60
#include <time.h>
61
62
/*
63
** Compute an initial seed with some level of randomness.
64
** Rely on Address Space Layout Randomization (if present) and
65
** current time.
66
*/
67
#define addbuff(b,p,e) \
68
27.5k
  { size_t t = cast_sizet(e); \
69
27.5k
    memcpy(b + p, &t, sizeof(t)); p += sizeof(t); }
70
71
9.18k
static unsigned int luai_makeseed (lua_State *L) {
72
9.18k
  char buff[3 * sizeof(size_t)];
73
9.18k
  unsigned int h = cast_uint(time(NULL));
74
9.18k
  int p = 0;
75
9.18k
  addbuff(buff, p, L);  /* heap variable */
76
9.18k
  addbuff(buff, p, &h);  /* local variable */
77
9.18k
  addbuff(buff, p, &lua_newstate);  /* public function */
78
9.18k
  lua_assert(p == sizeof(buff));
79
9.18k
  return luaS_hash(buff, p, h);
80
9.18k
}
81
82
#endif
83
84
85
/*
86
** set GCdebt to a new value keeping the value (totalbytes + GCdebt)
87
** invariant (and avoiding underflows in 'totalbytes')
88
*/
89
10.7k
void luaE_setdebt (global_State *g, l_mem debt) {
90
10.7k
  l_mem tb = gettotalbytes(g);
91
10.7k
  lua_assert(tb > 0);
92
10.7k
  if (debt < tb - MAX_LMEM)
93
0
    debt = tb - MAX_LMEM;  /* will make 'totalbytes == MAX_LMEM' */
94
10.7k
  g->totalbytes = tb - debt;
95
10.7k
  g->GCdebt = debt;
96
10.7k
}
97
98
99
0
LUA_API int lua_setcstacklimit (lua_State *L, unsigned int limit) {
100
0
  UNUSED(L); UNUSED(limit);
101
0
  return LUAI_MAXCCALLS;  /* warning?? */
102
0
}
103
104
105
0
CallInfo *luaE_extendCI (lua_State *L) {
106
0
  CallInfo *ci;
107
0
  lua_assert(L->ci->next == NULL);
108
0
  ci = luaM_new(L, CallInfo);
109
0
  lua_assert(L->ci->next == NULL);
110
0
  L->ci->next = ci;
111
0
  ci->previous = L->ci;
112
0
  ci->next = NULL;
113
0
  ci->u.l.trap = 0;
114
0
  L->nci++;
115
0
  return ci;
116
0
}
117
118
119
/*
120
** free all CallInfo structures not in use by a thread
121
*/
122
9.18k
static void freeCI (lua_State *L) {
123
9.18k
  CallInfo *ci = L->ci;
124
9.18k
  CallInfo *next = ci->next;
125
9.18k
  ci->next = NULL;
126
9.18k
  while ((ci = next) != NULL) {
127
0
    next = ci->next;
128
0
    luaM_free(L, ci);
129
0
    L->nci--;
130
0
  }
131
9.18k
}
132
133
134
/*
135
** free half of the CallInfo structures not in use by a thread,
136
** keeping the first one.
137
*/
138
16.8k
void luaE_shrinkCI (lua_State *L) {
139
16.8k
  CallInfo *ci = L->ci->next;  /* first free CallInfo */
140
16.8k
  CallInfo *next;
141
16.8k
  if (ci == NULL)
142
16.8k
    return;  /* no extra elements */
143
0
  while ((next = ci->next) != NULL) {  /* two extra elements? */
144
0
    CallInfo *next2 = next->next;  /* next's next */
145
0
    ci->next = next2;  /* remove next from the list */
146
0
    L->nci--;
147
0
    luaM_free(L, next);  /* free next */
148
0
    if (next2 == NULL)
149
0
      break;  /* no more elements */
150
0
    else {
151
0
      next2->previous = ci;
152
0
      ci = next2;  /* continue */
153
0
    }
154
0
  }
155
0
}
156
157
158
/*
159
** Called when 'getCcalls(L)' larger or equal to LUAI_MAXCCALLS.
160
** If equal, raises an overflow error. If value is larger than
161
** LUAI_MAXCCALLS (which means it is handling an overflow) but
162
** not much larger, does not report an error (to allow overflow
163
** handling to work).
164
*/
165
36
void luaE_checkcstack (lua_State *L) {
166
36
  if (getCcalls(L) == LUAI_MAXCCALLS)
167
36
    luaG_runerror(L, "C stack overflow");
168
0
  else if (getCcalls(L) >= (LUAI_MAXCCALLS / 10 * 11))
169
0
    luaD_throw(L, LUA_ERRERR);  /* error while handling stack error */
170
36
}
171
172
173
10.9M
LUAI_FUNC void luaE_incCstack (lua_State *L) {
174
10.9M
  L->nCcalls++;
175
10.9M
  if (l_unlikely(getCcalls(L) >= LUAI_MAXCCALLS))
176
36
    luaE_checkcstack(L);
177
10.9M
}
178
179
180
9.18k
static void stack_init (lua_State *L1, lua_State *L) {
181
9.18k
  int i; CallInfo *ci;
182
  /* initialize stack array */
183
9.18k
  L1->stack.p = luaM_newvector(L, BASIC_STACK_SIZE + EXTRA_STACK, StackValue);
184
9.18k
  L1->tbclist.p = L1->stack.p;
185
422k
  for (i = 0; i < BASIC_STACK_SIZE + EXTRA_STACK; i++)
186
413k
    setnilvalue(s2v(L1->stack.p + i));  /* erase new stack */
187
9.18k
  L1->top.p = L1->stack.p;
188
9.18k
  L1->stack_last.p = L1->stack.p + BASIC_STACK_SIZE;
189
  /* initialize first ci */
190
9.18k
  ci = &L1->base_ci;
191
9.18k
  ci->next = ci->previous = NULL;
192
9.18k
  ci->callstatus = CIST_C;
193
9.18k
  ci->func.p = L1->top.p;
194
9.18k
  ci->u.c.k = NULL;
195
9.18k
  ci->nresults = 0;
196
9.18k
  setnilvalue(s2v(L1->top.p));  /* 'function' entry for this 'ci' */
197
9.18k
  L1->top.p++;
198
9.18k
  ci->top.p = L1->top.p + LUA_MINSTACK;
199
9.18k
  L1->ci = ci;
200
9.18k
}
201
202
203
9.18k
static void freestack (lua_State *L) {
204
9.18k
  if (L->stack.p == NULL)
205
0
    return;  /* stack not completely built yet */
206
9.18k
  L->ci = &L->base_ci;  /* free the entire 'ci' list */
207
9.18k
  freeCI(L);
208
9.18k
  lua_assert(L->nci == 0);
209
9.18k
  luaM_freearray(L, L->stack.p, stacksize(L) + EXTRA_STACK);  /* free stack */
210
9.18k
}
211
212
213
/*
214
** Create registry table and its predefined values
215
*/
216
9.18k
static void init_registry (lua_State *L, global_State *g) {
217
  /* create registry */
218
9.18k
  Table *registry = luaH_new(L);
219
9.18k
  sethvalue(L, &g->l_registry, registry);
220
9.18k
  luaH_resize(L, registry, LUA_RIDX_LAST, 0);
221
  /* registry[LUA_RIDX_MAINTHREAD] = L */
222
9.18k
  setthvalue(L, &registry->array[LUA_RIDX_MAINTHREAD - 1], L);
223
  /* registry[LUA_RIDX_GLOBALS] = new table (table of globals) */
224
9.18k
  sethvalue(L, &registry->array[LUA_RIDX_GLOBALS - 1], luaH_new(L));
225
9.18k
}
226
227
228
/*
229
** open parts of the state that may cause memory-allocation errors.
230
*/
231
9.18k
static void f_luaopen (lua_State *L, void *ud) {
232
9.18k
  global_State *g = G(L);
233
9.18k
  UNUSED(ud);
234
9.18k
  stack_init(L, L);  /* init stack */
235
9.18k
  init_registry(L, g);
236
9.18k
  luaS_init(L);
237
9.18k
  luaT_init(L);
238
9.18k
  luaX_init(L);
239
9.18k
  g->gcstp = 0;  /* allow gc */
240
9.18k
  setnilvalue(&g->nilvalue);  /* now state is complete */
241
9.18k
  luai_userstateopen(L);
242
9.18k
}
243
244
245
/*
246
** preinitialize a thread with consistent values without allocating
247
** any memory (to avoid errors)
248
*/
249
9.18k
static void preinit_thread (lua_State *L, global_State *g) {
250
9.18k
  G(L) = g;
251
9.18k
  L->stack.p = NULL;
252
9.18k
  L->ci = NULL;
253
9.18k
  L->nci = 0;
254
9.18k
  L->twups = L;  /* thread has no upvalues */
255
9.18k
  L->nCcalls = 0;
256
9.18k
  L->errorJmp = NULL;
257
9.18k
  L->hook = NULL;
258
9.18k
  L->hookmask = 0;
259
9.18k
  L->basehookcount = 0;
260
9.18k
  L->allowhook = 1;
261
9.18k
  resethookcount(L);
262
9.18k
  L->openupval = NULL;
263
9.18k
  L->status = LUA_OK;
264
9.18k
  L->errfunc = 0;
265
9.18k
  L->oldpc = 0;
266
9.18k
}
267
268
269
9.18k
static void close_state (lua_State *L) {
270
9.18k
  global_State *g = G(L);
271
9.18k
  if (!completestate(g))  /* closing a partially built state? */
272
0
    luaC_freeallobjects(L);  /* just collect its objects */
273
9.18k
  else {  /* closing a fully built state */
274
9.18k
    L->ci = &L->base_ci;  /* unwind CallInfo list */
275
9.18k
    luaD_closeprotected(L, 1, LUA_OK);  /* close all upvalues */
276
9.18k
    luaC_freeallobjects(L);  /* collect all objects */
277
9.18k
    luai_userstateclose(L);
278
9.18k
  }
279
9.18k
  luaM_freearray(L, G(L)->strt.hash, G(L)->strt.size);
280
9.18k
  freestack(L);
281
9.18k
  lua_assert(gettotalbytes(g) == sizeof(LG));
282
9.18k
  (*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0);  /* free main block */
283
9.18k
}
284
285
286
0
LUA_API lua_State *lua_newthread (lua_State *L) {
287
0
  global_State *g = G(L);
288
0
  GCObject *o;
289
0
  lua_State *L1;
290
0
  lua_lock(L);
291
0
  luaC_checkGC(L);
292
  /* create new thread */
293
0
  o = luaC_newobjdt(L, LUA_TTHREAD, sizeof(LX), offsetof(LX, l));
294
0
  L1 = gco2th(o);
295
  /* anchor it on L stack */
296
0
  setthvalue2s(L, L->top.p, L1);
297
0
  api_incr_top(L);
298
0
  preinit_thread(L1, g);
299
0
  L1->hookmask = L->hookmask;
300
0
  L1->basehookcount = L->basehookcount;
301
0
  L1->hook = L->hook;
302
0
  resethookcount(L1);
303
  /* initialize L1 extra space */
304
0
  memcpy(lua_getextraspace(L1), lua_getextraspace(g->mainthread),
305
0
         LUA_EXTRASPACE);
306
0
  luai_userstatethread(L, L1);
307
0
  stack_init(L1, L);  /* init stack */
308
0
  lua_unlock(L);
309
0
  return L1;
310
0
}
311
312
313
0
void luaE_freethread (lua_State *L, lua_State *L1) {
314
0
  LX *l = fromstate(L1);
315
0
  luaF_closeupval(L1, L1->stack.p);  /* close all upvalues */
316
0
  lua_assert(L1->openupval == NULL);
317
0
  luai_userstatefree(L, L1);
318
0
  freestack(L1);
319
0
  luaM_free(L, l);
320
0
}
321
322
323
0
int luaE_resetthread (lua_State *L, int status) {
324
0
  CallInfo *ci = L->ci = &L->base_ci;  /* unwind CallInfo list */
325
0
  setnilvalue(s2v(L->stack.p));  /* 'function' entry for basic 'ci' */
326
0
  ci->func.p = L->stack.p;
327
0
  ci->callstatus = CIST_C;
328
0
  if (status == LUA_YIELD)
329
0
    status = LUA_OK;
330
0
  L->status = LUA_OK;  /* so it can run __close metamethods */
331
0
  status = luaD_closeprotected(L, 1, status);
332
0
  if (status != LUA_OK)  /* errors? */
333
0
    luaD_seterrorobj(L, status, L->stack.p + 1);
334
0
  else
335
0
    L->top.p = L->stack.p + 1;
336
0
  ci->top.p = L->top.p + LUA_MINSTACK;
337
0
  luaD_reallocstack(L, cast_int(ci->top.p - L->stack.p), 0);
338
0
  return status;
339
0
}
340
341
342
0
LUA_API int lua_closethread (lua_State *L, lua_State *from) {
343
0
  int status;
344
0
  lua_lock(L);
345
0
  L->nCcalls = (from) ? getCcalls(from) : 0;
346
0
  status = luaE_resetthread(L, L->status);
347
0
  lua_unlock(L);
348
0
  return status;
349
0
}
350
351
352
/*
353
** Deprecated! Use 'lua_closethread' instead.
354
*/
355
0
LUA_API int lua_resetthread (lua_State *L) {
356
0
  return lua_closethread(L, NULL);
357
0
}
358
359
360
9.18k
LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
361
9.18k
  int i;
362
9.18k
  lua_State *L;
363
9.18k
  global_State *g;
364
9.18k
  LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, sizeof(LG)));
365
9.18k
  if (l == NULL) return NULL;
366
9.18k
  L = &l->l.l;
367
9.18k
  g = &l->g;
368
9.18k
  L->tt = LUA_VTHREAD;
369
9.18k
  g->currentwhite = bitmask(WHITE0BIT);
370
9.18k
  L->marked = luaC_white(g);
371
9.18k
  preinit_thread(L, g);
372
9.18k
  g->allgc = obj2gco(L);  /* by now, only object is the main thread */
373
9.18k
  L->next = NULL;
374
9.18k
  incnny(L);  /* main thread is always non yieldable */
375
9.18k
  g->frealloc = f;
376
9.18k
  g->ud = ud;
377
9.18k
  g->warnf = NULL;
378
9.18k
  g->ud_warn = NULL;
379
9.18k
  g->mainthread = L;
380
9.18k
  g->seed = luai_makeseed(L);
381
9.18k
  g->gcstp = GCSTPGC;  /* no GC while building state */
382
9.18k
  g->strt.size = g->strt.nuse = 0;
383
9.18k
  g->strt.hash = NULL;
384
9.18k
  setnilvalue(&g->l_registry);
385
9.18k
  g->panic = NULL;
386
9.18k
  g->gcstate = GCSpause;
387
9.18k
  g->gckind = KGC_INC;
388
9.18k
  g->gcstopem = 0;
389
9.18k
  g->gcemergency = 0;
390
9.18k
  g->finobj = g->tobefnz = g->fixedgc = NULL;
391
9.18k
  g->firstold1 = g->survival = g->old1 = g->reallyold = NULL;
392
9.18k
  g->finobjsur = g->finobjold1 = g->finobjrold = NULL;
393
9.18k
  g->sweepgc = NULL;
394
9.18k
  g->gray = g->grayagain = NULL;
395
9.18k
  g->weak = g->ephemeron = g->allweak = NULL;
396
9.18k
  g->twups = NULL;
397
9.18k
  g->totalbytes = sizeof(LG);
398
9.18k
  g->GCdebt = 0;
399
9.18k
  g->lastatomic = 0;
400
9.18k
  setivalue(&g->nilvalue, 0);  /* to signal that state is not yet built */
401
9.18k
  setgcparam(g->gcpause, LUAI_GCPAUSE);
402
9.18k
  setgcparam(g->gcstepmul, LUAI_GCMUL);
403
9.18k
  g->gcstepsize = LUAI_GCSTEPSIZE;
404
9.18k
  setgcparam(g->genmajormul, LUAI_GENMAJORMUL);
405
9.18k
  g->genminormul = LUAI_GENMINORMUL;
406
91.8k
  for (i=0; i < LUA_NUMTAGS; i++) g->mt[i] = NULL;
407
9.18k
  if (luaD_rawrunprotected(L, f_luaopen, NULL) != LUA_OK) {
408
    /* memory allocation error: free partial state */
409
0
    close_state(L);
410
0
    L = NULL;
411
0
  }
412
9.18k
  return L;
413
9.18k
}
414
415
416
9.18k
LUA_API void lua_close (lua_State *L) {
417
9.18k
  lua_lock(L);
418
9.18k
  L = G(L)->mainthread;  /* only the main thread can be closed */
419
9.18k
  close_state(L);
420
9.18k
}
421
422
423
0
void luaE_warning (lua_State *L, const char *msg, int tocont) {
424
0
  lua_WarnFunction wf = G(L)->warnf;
425
0
  if (wf != NULL)
426
0
    wf(G(L)->ud_warn, msg, tocont);
427
0
}
428
429
430
/*
431
** Generate a warning from an error message
432
*/
433
0
void luaE_warnerror (lua_State *L, const char *where) {
434
0
  TValue *errobj = s2v(L->top.p - 1);  /* error object */
435
0
  const char *msg = (ttisstring(errobj))
436
0
                  ? getstr(tsvalue(errobj))
437
0
                  : "error object is not a string";
438
  /* produce warning "error in %s (%s)" (where, msg) */
439
0
  luaE_warning(L, "error in ", 1);
440
0
  luaE_warning(L, where, 1);
441
0
  luaE_warning(L, " (", 1);
442
0
  luaE_warning(L, msg, 1);
443
0
  luaE_warning(L, ")", 0);
444
0
}
445