]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/scripting.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2013 m h swende <martin at swende.se>
3 // Modified 2015,2016, iceman
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // Some lua scripting glue to proxmark core.
10 //-----------------------------------------------------------------------------
11 #include "scripting.h"
14 * The following params expected:
20 static int l_SendCommand(lua_State
*L
){
24 The SendCommand (native) expects the following structure:
27 uint64_t cmd; //8 bytes
28 uint64_t arg[3]; // 8*3 bytes = 24 bytes
30 uint8_t asBytes[USB_CMD_DATA_SIZE]; // 1 byte * 512 = 512 bytes (OR)
31 uint32_t asDwords[USB_CMD_DATA_SIZE/4]; // 4 byte * 128 = 512 bytes
35 ==> A 544 byte buffer will do.
39 const char *data
= luaL_checklstring(L
, 1, &size
);
40 if(size
!= sizeof(UsbCommand
))
42 printf("Got data size %d, expected %d" , (int) size
,(int) sizeof(UsbCommand
));
43 lua_pushstring(L
,"Wrong data size");
47 SendCommand((UsbCommand
* )data
);
48 return 0; // no return values
51 * @brief The following params expected:
57 static int l_WaitForResponseTimeout(lua_State
*L
){
60 size_t ms_timeout
= -1;
62 //Check number of arguments
63 int n
= lua_gettop(L
);
66 //signal error by returning Nil, errorstring
68 lua_pushstring(L
,"You need to supply at least command to wait for");
69 return 2; // two return values
74 cmd
= luaL_checkunsigned(L
,1);
78 //Did the user send a timeout ?
79 //Check if the current top of stack is an integer
80 ms_timeout
= luaL_checkunsigned(L
,2);
81 //printf("Timeout set to %dms\n" , (int) ms_timeout);
86 if(WaitForResponseTimeout(cmd
, &response
, ms_timeout
))
89 lua_pushlstring(L
,(const char *)&response
, sizeof(UsbCommand
));
91 return 1;// return 1 to signal one return value
95 return 1;// one return value
99 static int returnToLuaWithError(lua_State
*L
, const char* fmt
, ...)
104 vsnprintf(buffer
, sizeof(buffer
), fmt
,args
);
108 lua_pushstring(L
,buffer
);
112 static int l_nonce2key(lua_State
*L
){
115 const char *p_uid
= luaL_checklstring(L
, 1, &size
);
116 if(size
!= 4) return returnToLuaWithError(L
,"Wrong size of uid, got %d bytes, expected 4", (int) size
);
118 const char *p_nt
= luaL_checklstring(L
, 2, &size
);
119 if(size
!= 4) return returnToLuaWithError(L
,"Wrong size of nt, got %d bytes, expected 4", (int) size
);
121 const char *p_nr
= luaL_checklstring(L
, 3, &size
);
122 if(size
!= 4) return returnToLuaWithError(L
,"Wrong size of nr, got %d bytes, expected 4", (int) size
);
124 const char *p_par_info
= luaL_checklstring(L
, 4, &size
);
125 if(size
!= 8) return returnToLuaWithError(L
,"Wrong size of par_info, got %d bytes, expected 8", (int) size
);
127 const char *p_pks_info
= luaL_checklstring(L
, 5, &size
);
128 if(size
!= 8) return returnToLuaWithError(L
,"Wrong size of ks_info, got %d bytes, expected 8", (int) size
);
131 uint32_t uid
= bytes_to_num(( uint8_t *)p_uid
,4);
132 uint32_t nt
= bytes_to_num(( uint8_t *)p_nt
,4);
134 uint32_t nr
= bytes_to_num(( uint8_t*)p_nr
,4);
135 uint64_t par_info
= bytes_to_num(( uint8_t *)p_par_info
,8);
136 uint64_t ks_info
= bytes_to_num(( uint8_t *)p_pks_info
,8);
140 int retval
= nonce2key(uid
,nt
, nr
, par_info
,ks_info
, &key
);
142 //Push the retval on the stack
143 lua_pushinteger(L
,retval
);
145 //Push the key onto the stack
147 num_to_bytes(key
,sizeof(dest_key
),dest_key
);
149 //printf("Pushing to lua stack: %012"llx"\n",key);
150 lua_pushlstring(L
,(const char *) dest_key
,sizeof(dest_key
));
152 return 2; //Two return values
154 //static int l_PrintAndLog(lua_State *L){ return CmdHF14AMfDump(luaL_checkstring(L, 1));}
155 static int l_clearCommandBuffer(lua_State
*L
){
156 clearCommandBuffer();
160 * @brief l_foobar is a dummy function to test lua-integration with
164 static int l_foobar(lua_State
*L
)
166 //Check number of arguments
167 int n
= lua_gettop(L
);
168 printf("foobar called with %d arguments" , n
);
170 printf("Arguments discarded, stack now contains %d elements", lua_gettop(L
));
172 // todo: this is not used, where was it intended for?
173 // UsbCommand response = {CMD_MIFARE_READBL, {1337, 1338, 1339}};
175 printf("Now returning a uint64_t as a string");
176 uint64_t x
= 0xDEADBEEF;
177 uint8_t destination
[8];
178 num_to_bytes(x
,sizeof(x
),destination
);
179 lua_pushlstring(L
,(const char *)&x
,sizeof(x
));
180 lua_pushlstring(L
,(const char *)destination
,sizeof(destination
));
187 * @brief Utility to check if a key has been pressed by the user. This method does not block.
189 * @return boolean, true if kbhit, false otherwise.
191 static int l_ukbhit(lua_State
*L
)
193 lua_pushboolean(L
,ukbhit() ? true : false);
197 * @brief Calls the command line parser to deal with the command. This enables
198 * lua-scripts to do stuff like "core.console('hf mf mifare')"
202 static int l_CmdConsole(lua_State
*L
)
204 CommandReceived((char *)luaL_checkstring(L
, 1));
208 static int l_iso15693_crc(lua_State
*L
)
210 // uint16_t Iso15693Crc(uint8_t *v, int n);
212 const char *v
= luaL_checklstring(L
, 1, &size
);
213 uint16_t retval
= Iso15693Crc((uint8_t *) v
, size
);
214 lua_pushinteger(L
, (int) retval
);
218 static int l_iso14443b_crc(lua_State
*L
)
220 /* void ComputeCrc14443(int CrcType,
221 const unsigned char *Data, int Length,
222 unsigned char *TransmitFirst,
223 unsigned char *TransmitSecond)
225 unsigned char buf
[USB_CMD_DATA_SIZE
];
227 const char *data
= luaL_checklstring(L
, 1, &len
);
228 if (USB_CMD_DATA_SIZE
< len
)
229 len
= USB_CMD_DATA_SIZE
-2;
231 for (int i
= 0; i
< len
; i
+= 2) {
232 sscanf(&data
[i
], "%02x", (unsigned int *)&buf
[i
/ 2]);
234 ComputeCrc14443(CRC_14443_B
, buf
, len
, &buf
[len
], &buf
[len
+1]);
236 lua_pushlstring(L
, (const char *)&buf
, len
+2);
241 Simple AES 128 cbc hook up to OpenSSL.
244 static int l_aes128decrypt_cbc(lua_State
*L
)
246 //Check number of arguments
249 const char *p_key
= luaL_checklstring(L
, 1, &size
);
250 if(size
!= 32) return returnToLuaWithError(L
,"Wrong size of key, got %d bytes, expected 32", (int) size
);
252 const char *p_encTxt
= luaL_checklstring(L
, 2, &size
);
254 unsigned char indata
[16] = {0x00};
255 unsigned char outdata
[16] = {0x00};
256 unsigned char aes_key
[16] = {0x00};
257 unsigned char iv
[16] = {0x00};
259 // convert key to bytearray and convert input to bytearray
260 for (i
= 0; i
< 32; i
+= 2) {
261 sscanf(&p_encTxt
[i
], "%02x", (unsigned int *)&indata
[i
/ 2]);
262 sscanf(&p_key
[i
], "%02x", (unsigned int *)&aes_key
[i
/ 2]);
267 aes_setkey_dec(&ctx
, aes_key
, 128);
268 aes_crypt_cbc(&ctx
, AES_DECRYPT
, sizeof(indata
), iv
, indata
, outdata
);
269 //Push decrypted array as a string
270 lua_pushlstring(L
,(const char *)&outdata
, sizeof(outdata
));
271 return 1;// return 1 to signal one return value
273 static int l_aes128decrypt_ecb(lua_State
*L
)
275 //Check number of arguments
278 const char *p_key
= luaL_checklstring(L
, 1, &size
);
279 if(size
!= 32) return returnToLuaWithError(L
,"Wrong size of key, got %d bytes, expected 32", (int) size
);
281 const char *p_encTxt
= luaL_checklstring(L
, 2, &size
);
283 unsigned char indata
[16] = {0x00};
284 unsigned char outdata
[16] = {0x00};
285 unsigned char aes_key
[16] = {0x00};
287 // convert key to bytearray and convert input to bytearray
288 for (i
= 0; i
< 32; i
+= 2) {
289 sscanf(&p_encTxt
[i
], "%02x", (unsigned int *)&indata
[i
/ 2]);
290 sscanf(&p_key
[i
], "%02x", (unsigned int *)&aes_key
[i
/ 2]);
294 aes_setkey_dec(&ctx
, aes_key
, 128);
295 aes_crypt_ecb(&ctx
, AES_DECRYPT
, indata
, outdata
);
297 //Push decrypted array as a string
298 lua_pushlstring(L
,(const char *)&outdata
, sizeof(outdata
));
299 return 1;// return 1 to signal one return value
302 static int l_aes128encrypt_cbc(lua_State
*L
)
304 //Check number of arguments
307 const char *p_key
= luaL_checklstring(L
, 1, &size
);
308 if(size
!= 32) return returnToLuaWithError(L
,"Wrong size of key, got %d bytes, expected 32", (int) size
);
310 const char *p_txt
= luaL_checklstring(L
, 2, &size
);
312 unsigned char indata
[16] = {0x00};
313 unsigned char outdata
[16] = {0x00};
314 unsigned char aes_key
[16] = {0x00};
315 unsigned char iv
[16] = {0x00};
317 for (i
= 0; i
< 32; i
+= 2) {
318 sscanf(&p_txt
[i
], "%02x", (unsigned int *)&indata
[i
/ 2]);
319 sscanf(&p_key
[i
], "%02x", (unsigned int *)&aes_key
[i
/ 2]);
324 aes_setkey_enc(&ctx
, aes_key
, 128);
325 aes_crypt_cbc(&ctx
, AES_ENCRYPT
, sizeof(indata
), iv
, indata
, outdata
);
326 //Push encrypted array as a string
327 lua_pushlstring(L
,(const char *)&outdata
, sizeof(outdata
));
328 return 1;// return 1 to signal one return value
331 static int l_aes128encrypt_ecb(lua_State
*L
)
333 //Check number of arguments
336 const char *p_key
= luaL_checklstring(L
, 1, &size
);
337 if(size
!= 32) return returnToLuaWithError(L
,"Wrong size of key, got %d bytes, expected 32", (int) size
);
339 const char *p_txt
= luaL_checklstring(L
, 2, &size
);
341 unsigned char indata
[16] = {0x00};
342 unsigned char outdata
[16] = {0x00};
343 unsigned char aes_key
[16] = {0x00};
345 for (i
= 0; i
< 32; i
+= 2) {
346 sscanf(&p_txt
[i
], "%02x", (unsigned int *)&indata
[i
/ 2]);
347 sscanf(&p_key
[i
], "%02x", (unsigned int *)&aes_key
[i
/ 2]);
351 aes_setkey_enc(&ctx
, aes_key
, 128);
352 aes_crypt_ecb(&ctx
, AES_ENCRYPT
, indata
, outdata
);
353 //Push encrypted array as a string
354 lua_pushlstring(L
,(const char *)&outdata
, sizeof(outdata
));
355 return 1;// return 1 to signal one return value
358 static int l_crc8legic(lua_State
*L
)
361 const char *p_str
= luaL_checklstring(L
, 1, &size
);
363 uint16_t retval
= CRC8Legic( (uint8_t*) p_str
, size
);
364 lua_pushinteger(L
, (int) retval
);
368 static int l_crc16(lua_State
*L
)
371 const char *p_str
= luaL_checklstring(L
, 1, &size
);
373 uint16_t retval
= crc16_ccitt( (uint8_t*) p_str
, size
);
374 lua_pushinteger(L
, (int) retval
);
378 static int l_crc64(lua_State
*L
)
382 unsigned char outdata
[8] = {0x00};
384 const char *p_str
= luaL_checklstring(L
, 1, &size
);
386 crc64( (uint8_t*) p_str
, size
, &crc
);
388 outdata
[0] = (uint8_t)(crc
>> 56) & 0xff;
389 outdata
[1] = (uint8_t)(crc
>> 48) & 0xff;
390 outdata
[2] = (uint8_t)(crc
>> 40) & 0xff;
391 outdata
[3] = (uint8_t)(crc
>> 32) & 0xff;
392 outdata
[4] = (uint8_t)(crc
>> 24) & 0xff;
393 outdata
[5] = (uint8_t)(crc
>> 16) & 0xff;
394 outdata
[6] = (uint8_t)(crc
>> 8) & 0xff;
395 outdata
[7] = crc
& 0xff;
396 lua_pushlstring(L
,(const char *)&outdata
, sizeof(outdata
));
400 static int l_sha1(lua_State
*L
)
403 const char *p_str
= luaL_checklstring(L
, 1, &size
);
404 unsigned char outdata
[20] = {0x00};
405 sha1( (uint8_t*) p_str
, size
, outdata
);
406 lua_pushlstring(L
,(const char *)&outdata
, sizeof(outdata
));
410 static int l_reveng_models(lua_State
*L
){
414 int in_width
= luaL_checkinteger(L
, 1);
416 if( in_width
> 89 ) return returnToLuaWithError(L
,"Width cannot exceed 89, got %d", in_width
);
419 width
[0] = (uint8_t)in_width
;
420 int ans
= GetModels(models
, &count
, width
);
425 for (int i
= 0; i
< count
; i
++){
426 lua_pushstring(L
, (const char*)models
[i
]);
427 lua_rawseti(L
,-2,i
+1);
434 //Called with 4 parameters.
435 // inModel ,string containing the crc model name: 'CRC-8'
436 // inHexStr ,string containing the hex representation of the data that will be used for CRC calculations.
437 // reverse ,int 0/1 (bool) if 1, calculate the reverse CRC
438 // endian ,char, 'B','b','L','l','t','r' describing if Big-Endian or Little-Endian should be used in different combinations.
440 // outputs: string with hex representation of the CRC result
441 static int l_reveng_RunModel(lua_State
*L
){
443 //inModel = valid model name string - CRC-8
444 //inHexStr = input hex string to calculate crc on
445 //reverse = reverse calc option if true
446 //endian = {0 = calc default endian input and output, b = big endian input and output, B = big endian output, r = right justified
447 // l = little endian input and output, L = little endian output only, t = left justified}
448 //result = calculated crc hex string
451 const char *inModel
= luaL_checkstring(L
, 1);
452 const char *inHexStr
= luaL_checkstring(L
, 2);
453 bool reverse
= lua_toboolean(L
, 3);
454 const char endian
= luaL_checkstring(L
, 4)[0];
456 //PrintAndLog("mod: %s, hex: %s, rev %d", inModel, inHexStr, reverse);
457 // int RunModel(char *inModel, char *inHexStr, bool reverse, char endian, char *result)
458 int ans
= RunModel( (char *)inModel
, (char *)inHexStr
, reverse
, endian
, result
);
460 return returnToLuaWithError(L
,"Reveng failed");
462 lua_pushstring(L
, (const char*)result
);
467 * @brief Sets the lua path to include "./lualibs/?.lua", in order for a script to be
468 * able to do "require('foobar')" if foobar.lua is within lualibs folder.
469 * Taken from http://stackoverflow.com/questions/4125971/setting-the-global-lua-path-variable-from-c-c
474 int setLuaPath( lua_State
* L
, const char* path
)
476 lua_getglobal( L
, "package" );
477 lua_getfield( L
, -1, "path" ); // get field "path" from table at top of stack (-1)
478 const char* cur_path
= lua_tostring( L
, -1 ); // grab path string from top of stack
479 int requiredLength
= strlen(cur_path
)+ strlen(path
)+10; //A few bytes too many, whatever we can afford it
480 char * buf
= malloc(requiredLength
);
481 snprintf(buf
, requiredLength
, "%s;%s", cur_path
, path
);
482 lua_pop( L
, 1 ); // get rid of the string on the stack we just pushed on line 5
483 lua_pushstring( L
, buf
); // push the new one
484 lua_setfield( L
, -2, "path" ); // set the field "path" in table at -2 with value at top of stack
485 lua_pop( L
, 1 ); // get rid of package table from top of stack
487 return 0; // all done!
491 int set_pm3_libraries(lua_State
*L
)
494 static const luaL_Reg libs
[] = {
495 {"SendCommand", l_SendCommand
},
496 {"WaitForResponseTimeout", l_WaitForResponseTimeout
},
497 {"nonce2key", l_nonce2key
},
498 //{"PrintAndLog", l_PrintAndLog},
499 {"foobar", l_foobar
},
500 {"ukbhit", l_ukbhit
},
501 {"clearCommandBuffer", l_clearCommandBuffer
},
502 {"console", l_CmdConsole
},
503 {"iso15693_crc", l_iso15693_crc
},
504 {"iso14443b_crc", l_iso14443b_crc
},
505 {"aes128_decrypt", l_aes128decrypt_cbc
},
506 {"aes128_decrypt_ecb", l_aes128decrypt_ecb
},
507 {"aes128_encrypt", l_aes128encrypt_cbc
},
508 {"aes128_encrypt_ecb", l_aes128encrypt_ecb
},
509 {"crc8legic", l_crc8legic
},
513 {"reveng_models", l_reveng_models
},
514 {"reveng_runmodel", l_reveng_RunModel
},
518 lua_pushglobaltable(L
);
519 // Core library is in this table. Contains '
520 //this is 'pm3' table
523 //Put the function into the hash table.
524 for (int i
= 0; libs
[i
].name
; i
++) {
525 lua_pushcfunction(L
, libs
[i
].func
);
526 lua_setfield(L
, -2, libs
[i
].name
);//set the name, pop stack
529 lua_setfield(L
, -2, "core");
531 //-- remove the global environment table from the stack
534 //-- Last but not least, add to the LUA_PATH (package.path in lua)
535 // so we can load libraries from the ./lualib/ - directory
536 setLuaPath(L
,"./lualibs/?.lua");