forked from L1L1/cardpeek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lua_ext.c
597 lines (526 loc) · 15.1 KB
/
lua_ext.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
/**********************************************************************
*
* This file is part of Cardpeek, the smart card reader utility.
*
* Copyright 2009-2014 by Alain Pannetrat <L1L1@gmx.com>
*
* Cardpeek is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Cardpeek is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cardpeek. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <unistd.h>
#include <glib/gstdio.h>
#include "pathconfig.h"
#include "iso7816.h"
#include "misc.h"
#include "lua_ext.h"
#include <stdarg.h>
/****************************************/
#include "lua_log.h"
#include "lua_bytes.h"
#include "lua_asn1.h"
#include "lua_card.h"
#include "lua_bit.h"
#include "lua_crypto.h"
#include "lua_ui.h"
#include "lua_nodes.h"
#include "lua_iconv.h"
/****************************************/
/* FIXME: this whole file needs cleanup */
/****************************************/
static int print_debug_message(lua_State* L)
{
const char* err_msg = lua_tostring(L,1);
lua_Debug ar;
int depth = 1;
log_printf(LOG_ERROR,"%s",err_msg);
while (lua_getstack(L,depth++,&ar))
{
if (lua_getinfo(L,"lnS",&ar))
{
if (ar.name)
{
if (ar.currentline>=0)
log_printf(LOG_ERROR,"backtrace: called from %s() in %s[%i]",ar.name,ar.short_src,ar.currentline);
else
log_printf(LOG_ERROR,"backtrace: called from %s()",ar.name);
}
else
log_printf(LOG_ERROR,"backtrace: called at %s",ar.short_src);
}
else
log_printf(LOG_ERROR,"backtrace: no further information available");
}
return 0;
}
unsigned line_num = 0;
char line_buf[1024];
static const char* read_chunk(lua_State* L, void* input, size_t* sz)
{
UNUSED(L);
if (fgets(line_buf,1024,(FILE*)input)==NULL)
{
*sz=0;
return NULL;
}
line_num++;
*sz=strlen(line_buf);
return line_buf;
}
static int run_file(lua_State* L, const char *filename)
{
FILE* input = g_fopen(filename,"r");
if (input==NULL)
{
log_printf(LOG_ERROR,"Could not load %s (%s)",filename,strerror(errno));
return 0;
}
luax_card_reset_values(L);
line_num = 0;
lua_pushcfunction(L,print_debug_message);
if (lua_load(L,read_chunk,input,filename,NULL)!=0)
{
log_printf(LOG_ERROR,"Syntax error on line %i in %s",line_num,filename);
return 0;
}
fclose(input);
if (lua_pcall(L, 0, LUA_MULTRET, -2)!=0)
{
lua_pop(L,1);
return 0;
}
lua_pop(L,1);
return 1;
}
/******************************************************************/
static lua_State* x_lua_begin(void)
{
lua_State* L = luaL_newstate();
luaL_openlibs(L);
log_printf(LOG_DEBUG,"Lua is loaded.");
return L;
}
static int x_lua_end(lua_State* L)
{
lua_close(L);
log_printf(LOG_DEBUG,"Lua has stopped.");
return 1;
}
/******************************************************************/
lua_State* LUA_STATE= NULL;
void luax_run_script(const char* scriptname)
{
if (chdir(path_config_get_string(PATH_CONFIG_FOLDER_SCRIPTS))==-1)
{
log_printf(LOG_ERROR,"Could not change director to '%s'",path_config_get_string(PATH_CONFIG_FOLDER_SCRIPTS));
return;
}
log_printf(LOG_INFO,"Running script %s (please wait)",scriptname);
run_file(LUA_STATE,scriptname);
}
void luax_run_command(const char* command)
{
int error;
if (chdir(path_config_get_string(PATH_CONFIG_FOLDER_SCRIPTS))==-1)
{
log_printf(LOG_ERROR,"Could not change director to '%s'",path_config_get_string(PATH_CONFIG_FOLDER_SCRIPTS));
return;
}
log_printf(LOG_DEBUG,"Executing '%s'",command);
error = luaL_loadbuffer(LUA_STATE, command, strlen(command), "command line") ||
lua_pcall(LUA_STATE, 0, 0, 0);
if (error)
{
log_printf(LOG_ERROR,"%s", lua_tostring(LUA_STATE, -1));
lua_pop(LUA_STATE, 1); /* pop error message from the stack */
}
}
int luax_init()
{
GStatBuf st;
const char *config_lua;
const char *cardpeekrc_lua;
LUA_STATE= x_lua_begin();
luaopen_bytes(LUA_STATE);
luaopen_asn1(LUA_STATE);
luaopen_bit(LUA_STATE);
luaopen_card(LUA_STATE);
luaopen_log(LUA_STATE);
luaopen_crypto(LUA_STATE);
luaopen_nodes(LUA_STATE);
luaopen_iconv(LUA_STATE);
luaopen_ui(LUA_STATE);
lua_newtable(LUA_STATE);
lua_setglobal(LUA_STATE,"cardpeek");
config_lua = path_config_get_string(PATH_CONFIG_FILE_CONFIG_LUA);
cardpeekrc_lua = path_config_get_string(PATH_CONFIG_FILE_CARDPEEK_RC);
if (chdir(path_config_get_string(PATH_CONFIG_FOLDER_CARDPEEK))==-1)
{
log_printf(LOG_ERROR,"Could not change to directory '%s'",path_config_get_string(PATH_CONFIG_FOLDER_CARDPEEK));
return -1;
}
if (g_stat(config_lua,&st)==0)
{
log_printf(LOG_DEBUG,"Loading configuration script %s",config_lua);
run_file(LUA_STATE,config_lua);
}
if (g_stat(cardpeekrc_lua,&st)==0)
{
log_printf(LOG_DEBUG,"Running user configuration script %s",cardpeekrc_lua);
run_file(LUA_STATE,cardpeekrc_lua);
}
return 0;
}
void luax_release(void)
{
x_lua_end(LUA_STATE);
}
char *luax_escape_string(const char *src)
{
char *res;
const char *s;
char *p;
unsigned alloc_count = 1;
for (s=src; *s; s++)
{
if (*s=='\\' || *s=='\'' || *s=='"')
alloc_count+=2;
else
alloc_count++;
}
p = res = g_malloc(alloc_count);
while (*src)
{
switch (*src)
{
case '\\':
*p++='\\';
*p++='\\';
break;
case '\'':
*p++='\\';
*p++='\'';
break;
case '\"':
*p++='\\';
*p++='\"';
break;
default:
*p++=*src;
}
src++;
}
*p='\0';
return res;
}
/*************************************/
const char *config_table_header =
"-- \n"
"-- This file is automatically generated by Cardpeek.\n"
"-- It holds cardpeek configuration parameters, which are stored in the\n"
"-- lua 'cardpeek' table.\n"
"-- \n"
"-- See cardpeekrc.lua for adding your own functions and variables to\n"
"-- cardpeek.\n"
"-- \n";
static void internal_save_table(FILE *cf, int depth)
{
int i;
g_assert(lua_istable(LUA_STATE,-1));
lua_pushnil(LUA_STATE);
while (lua_next(LUA_STATE,-2))
{
if (lua_type(LUA_STATE,-2)==LUA_TSTRING || lua_type(LUA_STATE,-2)==LUA_TNUMBER)
{
for (i=0; i<depth; i++) fprintf(cf," ");
if (lua_type(LUA_STATE,-2)==LUA_TSTRING)
{
char *key = luax_escape_string(lua_tostring(LUA_STATE,-2));
fprintf(cf,"['%s'] = ",key);
g_free(key);
}
else
{
fprintf(cf,"[%i] = ",(int)lua_tointeger(LUA_STATE,-2));
}
switch (lua_type(LUA_STATE,-1))
{
case LUA_TNUMBER:
fprintf(cf,"%i,\n",(int)lua_tointeger(LUA_STATE,-1));
break;
case LUA_TBOOLEAN:
if (lua_toboolean(LUA_STATE,-1))
fprintf(cf,"true,\n");
else
fprintf(cf,"false,\n");
break;
case LUA_TSTRING:
{
char *val = luax_escape_string(lua_tostring(LUA_STATE,-1));
fprintf(cf,"\"%s\",\n",val);
g_free(val);
}
break;
case LUA_TTABLE:
fprintf(cf,"{\n");
internal_save_table(cf,depth+1);
for (i=0; i<depth; i++) fprintf(cf," ");
fprintf(cf,"},\n");
break;
/* case LUA_TFUNCTION:
case LUA_TUSERDATA:
case LUA_TTHREAD:
case LUA_TLIGHTUSERDATA:
case LUA_TNIL: */
default:
fprintf(cf,"nil, -- %s is not a serializable format.\n",
lua_typename(LUA_STATE,lua_type(LUA_STATE,-1)));
break;
}
}
lua_pop(LUA_STATE,1);
}
}
gboolean luax_config_table_save(void)
{
FILE *cf = fopen(path_config_get_string(PATH_CONFIG_FILE_CONFIG_LUA),"w");
if (cf==NULL)
{
log_printf(LOG_ERROR,"Could not create file '%s' to save configuration data.",path_config_get_string(PATH_CONFIG_FILE_CONFIG_LUA));
return FALSE;
}
fprintf(cf,"%s",config_table_header);
lua_getglobal(LUA_STATE,"cardpeek");
if (!lua_istable(LUA_STATE,-1))
{
log_printf(LOG_WARNING,"Could not find 'config' table variable, no configuration data will be saved.");
lua_pop(LUA_STATE,1);
fprintf(cf,"-- empty --\n");
fclose(cf);
return FALSE;
}
fprintf(cf,"cardpeek = {\n");
internal_save_table(cf,1);
fprintf(cf,"}\n\n");
fprintf(cf,"dofile('scripts/lib/apdu.lua')\n");
fprintf(cf,"-- end --\n");
fclose(cf);
lua_pop(LUA_STATE,1); /* remove global */
return TRUE;
}
static void internal_get_variable(lua_State *L, const char *vname)
{
int i;
char **vparts = g_strsplit(vname,".",0);
for (i=0; vparts[i]!=NULL; i++)
{
if (i==0)
{
lua_getglobal(L,vparts[0]);
}
else
{
if (!lua_istable(L,-1))
{
lua_pop(L,-1);
lua_pushnil(L);
break;
}
lua_getfield(L,-1,vparts[i]);
lua_remove(L,-2);
}
}
g_strfreev(vparts);
}
static gboolean internal_set_variable(lua_State *L, const char *vname)
{
int i;
char **vparts = g_strsplit(vname,".",0);
int vindex = lua_gettop(L);
gboolean retval = FALSE;
for (i=0; vparts[i]!=NULL; i++)
{
if (i==0)
{
if (vparts[1]==NULL)
{
lua_setglobal(L,vparts[0]);
retval = TRUE;
}
else
{
lua_getglobal(L,vparts[0]);
if (lua_isnil(L,-1))
{
lua_newtable(L);
lua_setglobal(L,vparts[0]);
lua_getglobal(L,vparts[0]);
}
if (!lua_istable(L,-1))
{
break;
}
}
}
else
{
if (vparts[i+1]==NULL)
{
lua_pushvalue(L,vindex);
/* st: table, ..., table, value */
lua_setfield(L,-2,vparts[i]);
retval = TRUE;
}
else
{
lua_getfield(L,-1,vparts[i]);
if (lua_isnil(L,-1))
{
lua_pop(LUA_STATE,1);
lua_newtable(L);
lua_setfield(L,-2,vparts[i]);
lua_getfield(L,-1,vparts[i]);
}
if (!lua_istable(L,-1))
{
break;
}
}
}
}
lua_settop(L,vindex-1);
g_strfreev(vparts);
return retval;
}
char *luax_variable_get_strdup(const char *vname)
{
char *retval;
internal_get_variable(LUA_STATE,vname);
retval = g_strdup(lua_tostring(LUA_STATE,-1)); /* x==NULL => g_strdup(x)==NULL */
lua_pop(LUA_STATE,1);
return retval;
}
gboolean luax_variable_set_strval(const char *vname, const char *value)
{
lua_pushstring(LUA_STATE,value);
return internal_set_variable(LUA_STATE,vname);
}
int luax_variable_get_integer(const char *vname)
{
int retval;
internal_get_variable(LUA_STATE,vname);
retval = (int)lua_tointeger(LUA_STATE,-1);
lua_pop(LUA_STATE,1);
return retval;
}
gboolean luax_variable_set_integer(const char *vname, int value)
{
lua_pushinteger(LUA_STATE,value);
return internal_set_variable(LUA_STATE,vname);
}
gboolean luax_variable_get_boolean(const char *vname)
{
gboolean retval;
internal_get_variable(LUA_STATE,vname);
retval = lua_toboolean(LUA_STATE,-1);
lua_pop(LUA_STATE,1);
return retval;
}
gboolean luax_variable_set_boolean(const char *vname, gboolean value)
{
lua_pushboolean(LUA_STATE,value);
return internal_set_variable(LUA_STATE,vname);
}
gboolean luax_variable_call(const char *vname, const char *format, ...)
{
va_list args;
int param_count = 0;
int result_count;
int result_done = 0;
internal_get_variable(LUA_STATE,vname);
if (lua_isnil(LUA_STATE,-1))
{
lua_pop(LUA_STATE,1);
return FALSE;
}
va_start(args,format);
while (*format!=0 && *format!='>')
{
switch (*format)
{
case 'i':
lua_pushinteger(LUA_STATE,va_arg(args,int));
param_count++;
break;
case 'u':
lua_pushinteger(LUA_STATE,va_arg(args,int));
param_count++;
break;
case 's':
lua_pushstring(LUA_STATE,va_arg(args,char *));
param_count++;
break;
default:
va_end(args);
lua_pop(LUA_STATE,param_count);
log_printf(LOG_ERROR,"Invalid input format specifier '%c' for luax_varibale_call()",*format);
return FALSE;
}
format++;
}
if (*format=='>') format++;
result_count=strlen(format);
lua_call(LUA_STATE,param_count,result_count);
while (*format!=0)
{
switch (*format)
{
case 'i':
*(va_arg(args,int*)) = luaL_checkinteger(LUA_STATE,-result_count+result_done);
result_done++;
break;
case 'u':
*(va_arg(args,unsigned*)) = (unsigned)luaL_checkinteger(LUA_STATE,-result_count+result_done);
result_done++;
break;
case 's':
*(va_arg(args,char**)) = strdup(luaL_checkstring(LUA_STATE,-result_count+result_done));
result_done++;
break;
default:
va_end(args);
lua_pop(LUA_STATE,result_count);
log_printf(LOG_ERROR,"Invalid output format specifier '%c' for luax_varibale_call()",*format);
return FALSE;
}
format++;
}
lua_pop(LUA_STATE,result_count);
va_end(args);
return TRUE;
}
gboolean luax_variable_is_defined(const char *vname)
{
gboolean retval;
internal_get_variable(LUA_STATE,vname);
retval = (lua_isnoneornil(LUA_STATE,-1)==0);
lua_pop(LUA_STATE,-1);
return retval;
}