29#include <ws_log_defs.h>
59#include <epan/wslua/declare_wslua.h>
65#define WSLUA_INIT_ROUTINES "init_routines"
66#define WSLUA_PREFS_CHANGED "prefs_changed"
92#define wslua_toint(L,i) (int) ( lua_tointeger(L,i) )
93#define wslua_toint32(L,i) (int32_t) ( lua_tointeger(L,i) )
94#define wslua_toint64(L,i) (int64_t) ( lua_tonumber(L,i) )
95#define wslua_touint64(L,i) (uint64_t) ( lua_tonumber(L,i) )
97#define wslua_checkint(L,i) (int) ( luaL_checkinteger(L,i) )
98#define wslua_checkint32(L,i) (int32_t) ( luaL_checkinteger(L,i) )
99#define wslua_checkint64(L,i) (int64_t) ( luaL_checknumber(L,i) )
100#define wslua_checkuint64(L,i) (uint64_t) ( luaL_checknumber(L,i) )
102#define wslua_optint(L,i,d) (int) ( luaL_optinteger(L,i,d) )
103#define wslua_optint32(L,i,d) (int32_t) ( luaL_optinteger(L,i,d) )
104#define wslua_optint64(L,i,d) (int64_t) ( luaL_optnumber(L,i,d) )
105#define wslua_optuint64(L,i,d) (uint64_t) ( luaL_optnumber(L,i,d) )
112#if LUA_VERSION_NUM < 503
113#define wslua_touint(L,i) (unsigned) ( lua_tounsigned(L,i) )
114#define wslua_touint32(L,i) (uint32_t) ( lua_tounsigned(L,i) )
115#define wslua_checkuint(L,i) (unsigned) ( luaL_checkunsigned(L,i) )
116#define wslua_checkuint32(L,i) (uint32_t) ( luaL_checkunsigned(L,i) )
117#define wslua_optuint(L,i,d) (unsigned) ( luaL_optunsigned(L,i,d) )
118#define wslua_optuint32(L,i,d) (uint32_t) ( luaL_optunsigned(L,i,d) )
120#define wslua_touint(L,i) (unsigned) ( lua_tointeger(L,i) )
121#define wslua_touint32(L,i) (uint32_t) ( lua_tointeger(L,i) )
122#define wslua_checkuint(L,i) (unsigned) ( luaL_checkinteger(L,i) )
123#define wslua_checkuint32(L,i) (uint32_t) ( luaL_checkinteger(L,i) )
124#define wslua_optuint(L,i,d) (unsigned) ( luaL_optinteger(L,i,d) )
125#define wslua_optuint32(L,i,d) (uint32_t) ( luaL_optinteger(L,i,d) )
213 int expert_info_table_ref;
220 bool is_postdissector;
275typedef void (*tap_extractor_t)(lua_State*,
const void*);
280 tap_extractor_t extractor;
321 char* internal_description;
329 int seq_read_close_ref;
330 int can_write_encap_ref;
351typedef struct {
const char* name; tap_extractor_t extractor; }
tappable_t;
363typedef GByteArray* ByteArray;
364typedef gcry_cipher_hd_t* GcryptCipher;
373typedef int64_t Int64;
374typedef uint64_t UInt64;
391typedef tvbparse_action_t* Shortcut;
406#define WSLUA_CLASS_DEFINE(C,check_code) \
407 WSLUA_CLASS_DEFINE_BASE(C,check_code,NULL)
409#define WSLUA_CLASS_DEFINE_BASE(C,check_code,retval) \
410C to##C(lua_State* L, int idx) { \
411 C* v = (C*)lua_touserdata (L, idx); \
412 if (!v) luaL_error(L, "bad argument %d (%s expected, got %s)", idx, #C, lua_typename(L, lua_type(L, idx))); \
413 return v ? *v : retval; \
415C check##C(lua_State* L, int idx) { \
417 luaL_checktype(L,idx,LUA_TUSERDATA); \
418 p = (C*)luaL_checkudata(L, idx, #C); \
420 return p ? *p : retval; \
422C* push##C(lua_State* L, C v) { \
424 luaL_checkstack(L,2,"Unable to grow stack\n"); \
425 p = (C*)lua_newuserdata(L,sizeof(C)); *p = v; \
426 luaL_getmetatable(L, #C); lua_setmetatable(L, -2); \
429bool is##C(lua_State* L,int i) { \
431 if(!lua_isuserdata(L,i)) return false; \
432 p = lua_touserdata(L, i); \
433 lua_getfield(L, LUA_REGISTRYINDEX, #C); \
434 if (p == NULL || !lua_getmetatable(L, i) || !lua_rawequal(L, -1, -2)) p=NULL; \
436 return p ? true : false; \
438C shift##C(lua_State* L,int i) { \
440 if(!lua_isuserdata(L,i)) return retval; \
441 p = (C*)lua_touserdata(L, i); \
442 lua_getfield(L, LUA_REGISTRYINDEX, #C); \
443 if (p == NULL || !lua_getmetatable(L, i) || !lua_rawequal(L, -1, -2)) p=NULL; \
445 if (p) { lua_remove(L,i); return *p; }\
451 const char *fieldname;
452 lua_CFunction getfunc;
453 lua_CFunction setfunc;
457#define WSLUA_TYPEOF_FIELD "__typeof"
462#define WSLUA_REGISTER_GC(C) \
463 luaL_getmetatable(L, #C); \
466 lua_pushcfunction(L, C ## __gc); \
467 lua_setfield(L, -2, "__gc"); \
471#define __WSLUA_REGISTER_META(C, ATTRS) { \
472 const wslua_class C ## _class = { \
474 .instance_meta = C ## _meta, \
477 wslua_register_classinstance_meta(L, &C ## _class); \
478 WSLUA_REGISTER_GC(C); \
481#define WSLUA_REGISTER_META(C) __WSLUA_REGISTER_META(C, NULL)
482#define WSLUA_REGISTER_META_WITH_ATTRS(C) \
483 __WSLUA_REGISTER_META(C, C ## _attributes)
485#define __WSLUA_REGISTER_CLASS(C, ATTRS) { \
486 const wslua_class C ## _class = { \
488 .class_methods = C ## _methods, \
489 .class_meta = C ## _meta, \
490 .instance_methods = C ## _methods, \
491 .instance_meta = C ## _meta, \
494 wslua_register_class(L, &C ## _class); \
495 WSLUA_REGISTER_GC(C); \
498#define WSLUA_REGISTER_CLASS(C) __WSLUA_REGISTER_CLASS(C, NULL)
499#define WSLUA_REGISTER_CLASS_WITH_ATTRS(C) \
500 __WSLUA_REGISTER_CLASS(C, C ## _attributes)
502#define WSLUA_INIT(L) \
504 wslua_register_classes(L); \
505 wslua_register_functions(L);
509#define WSLUA_FUNCTION extern int
511#define WSLUA_INTERNAL_FUNCTION extern int
513#define WSLUA_REGISTER_FUNCTION(name) { lua_pushcfunction(L, wslua_## name); lua_setglobal(L, #name); }
515#define WSLUA_REGISTER extern int
517#define WSLUA_METHOD static int
518#define WSLUA_CONSTRUCTOR static int
519#define WSLUA_ATTR_SET static int
520#define WSLUA_ATTR_GET static int
521#define WSLUA_METAMETHOD static int
523#define WSLUA_METHODS static const luaL_Reg
524#define WSLUA_META static const luaL_Reg
525#define WSLUA_CLASS_FNREG(class,name) { #name, class##_##name }
526#define WSLUA_CLASS_FNREG_ALIAS(class,aliasname,name) { #aliasname, class##_##name }
527#define WSLUA_CLASS_MTREG(class,name) { "__" #name, class##__##name }
529#define WSLUA_ATTRIBUTES static const wslua_attribute_table
531#define WSLUA_ATTRIBUTE_RWREG(class,name) { #name, class##_get_##name, class##_set_##name }
532#define WSLUA_ATTRIBUTE_ROREG(class,name) { #name, class##_get_##name, NULL }
533#define WSLUA_ATTRIBUTE_WOREG(class,name) { #name, NULL, class##_set_##name }
535#define WSLUA_ATTRIBUTE_FUNC_SETTER(C,field) \
536 static int C##_set_##field (lua_State* L) { \
537 C obj = check##C (L,1); \
538 if (! lua_isfunction(L,-1) ) \
539 return luaL_error(L, "%s's attribute `%s' must be a function", #C , #field ); \
540 if (obj->field##_ref != LUA_NOREF) \
542 luaL_unref(L, LUA_REGISTRYINDEX, obj->field##_ref); \
543 obj->field##_ref = luaL_ref(L, LUA_REGISTRYINDEX); \
547 typedef void __dummy##C##_set_##field
549#define WSLUA_ATTRIBUTE_GET(C,name,block) \
550 static int C##_get_##name (lua_State* L) { \
551 C obj = check##C (L,1); \
556 typedef void __dummy##C##_get_##name
558#define WSLUA_ATTRIBUTE_NAMED_BOOLEAN_GETTER(C,name,member) \
559 WSLUA_ATTRIBUTE_GET(C,name,{lua_pushboolean(L, obj->member );})
561#define WSLUA_ATTRIBUTE_NAMED_INTEGER_GETTER(C,name,member) \
562 WSLUA_ATTRIBUTE_GET(C,name,{lua_pushinteger(L,(lua_Integer)(obj->member));})
564#define WSLUA_ATTRIBUTE_INTEGER_GETTER(C,member) \
565 WSLUA_ATTRIBUTE_NAMED_INTEGER_GETTER(C,member,member)
567#define WSLUA_ATTRIBUTE_BLOCK_NUMBER_GETTER(C,name,block) \
568 WSLUA_ATTRIBUTE_GET(C,name,{lua_pushnumber(L,(lua_Number)(block));})
570#define WSLUA_ATTRIBUTE_NAMED_STRING_GETTER(C,name,member) \
571 WSLUA_ATTRIBUTE_GET(C,name, { \
572 lua_pushstring(L,obj->member); \
575#define WSLUA_ATTRIBUTE_STRING_GETTER(C,member) \
576 WSLUA_ATTRIBUTE_NAMED_STRING_GETTER(C,member,member)
578#define WSLUA_ATTRIBUTE_NAMED_OPT_BLOCK_STRING_GETTER(C,name,member,option) \
579 WSLUA_ATTRIBUTE_GET(C,name, { \
581 if ((obj->member) && (obj->member->len > 0)) { \
582 if (wtap_block_get_string_option_value(g_array_index(obj->member, wtap_block_t, 0), option, &str) == WTAP_OPTTYPE_SUCCESS) { \
583 lua_pushstring(L,str); \
592#define WSLUA_ATTRIBUTE_NAMED_OPT_BLOCK_NTH_STRING_GETTER(C,name,member,option) \
593 WSLUA_ATTRIBUTE_GET(C,name, { \
595 if ((obj->member) && (obj->member->len > 0)) { \
596 if (wtap_block_get_nth_string_option_value(g_array_index(obj->member, wtap_block_t, 0), option, 0, &str) == WTAP_OPTTYPE_SUCCESS) { \
597 lua_pushstring(L,str); \
602#define WSLUA_ATTRIBUTE_SET(C,name,block) \
603 static int C##_set_##name (lua_State* L) { \
604 C obj = check##C (L,1); \
609 typedef void __dummy##C##_set_##name
611#define WSLUA_ATTRIBUTE_NAMED_BOOLEAN_SETTER(C,name,member) \
612 WSLUA_ATTRIBUTE_SET(C,name, { \
613 if (! lua_isboolean(L,-1) ) \
614 return luaL_error(L, "%s's attribute `%s' must be a boolean", #C , #name ); \
615 obj->member = lua_toboolean(L,-1); \
620#define WSLUA_ATTRIBUTE_NAMED_INTEGER_SETTER(C,name,member,cast) \
621 WSLUA_ATTRIBUTE_SET(C,name, { \
622 if (! lua_isinteger(L,-1) ) \
623 return luaL_error(L, "%s's attribute `%s' must be an integer", #C , #name ); \
624 obj->member = (cast) wslua_toint32(L,-1); \
627#define WSLUA_ATTRIBUTE_INTEGER_SETTER(C,member,cast) \
628 WSLUA_ATTRIBUTE_NAMED_INTEGER_SETTER(C,member,member,cast)
630#define WSLUA_ATTRIBUTE_NAMED_STRING_SETTER(C,field,member,need_free) \
631 static int C##_set_##field (lua_State* L) { \
632 C obj = check##C (L,1); \
634 if (lua_isstring(L,-1) || lua_isnil(L,-1)) { \
635 s = g_strdup(lua_tostring(L,-1)); \
637 return luaL_error(L, "%s's attribute `%s' must be a string or nil", #C , #field ); \
639 if (obj->member != NULL && need_free) \
640 g_free((void*) obj->member); \
645 typedef void __dummy##C##_set_##field
647#define WSLUA_ATTRIBUTE_STRING_SETTER(C,field,need_free) \
648 WSLUA_ATTRIBUTE_NAMED_STRING_SETTER(C,field,field,need_free)
650#define WSLUA_ATTRIBUTE_NAMED_OPT_BLOCK_STRING_SETTER(C,field,member,option) \
651 static int C##_set_##field (lua_State* L) { \
652 C obj = check##C (L,1); \
654 if (lua_isstring(L,-1) || lua_isnil(L,-1)) { \
655 s = g_strdup(lua_tostring(L,-1)); \
657 return luaL_error(L, "%s's attribute `%s' must be a string or nil", #C , #field ); \
659 if ((obj->member) && (obj->member->len > 0)) { \
660 wtap_block_set_string_option_value(g_array_index(obj->member, wtap_block_t, 0), option, s, strlen(s)); \
666 typedef void __dummy##C##_set_##field
668#define WSLUA_ATTRIBUTE_NAMED_OPT_BLOCK_NTH_STRING_SETTER(C,field,member,option) \
669 static int C##_set_##field (lua_State* L) { \
670 C obj = check##C (L,1); \
672 if (lua_isstring(L,-1) || lua_isnil(L,-1)) { \
673 s = g_strdup(lua_tostring(L,-1)); \
675 return luaL_error(L, "%s's attribute `%s' must be a string or nil", #C , #field ); \
677 if ((obj->member) && (obj->member->len > 0)) { \
678 wtap_block_set_nth_string_option_value(g_array_index(obj->member, wtap_block_t, 0), option, 0, s, strlen(s)); \
684 typedef void __dummy##C##_set_##field
686#define WSLUA_ERROR(name,error) { luaL_error(L, "%s%s", #name ": ", error); }
687#define WSLUA_ARG_ERROR(name,attr,error) { luaL_argerror(L,WSLUA_ARG_ ## name ## _ ## attr, #name ": " error); }
688#define WSLUA_OPTARG_ERROR(name,attr,error) { luaL_argerror(L,WSLUA_OPTARG_##name##_ ##attr, #name ": " error); }
690#define WSLUA_REG_GLOBAL_BOOL(L,n,v) { lua_pushboolean(L,v); lua_setglobal(L,n); }
691#define WSLUA_REG_GLOBAL_STRING(L,n,v) { lua_pushstring(L,v); lua_setglobal(L,n); }
692#define WSLUA_REG_GLOBAL_INTEGER(L,n,v) { lua_pushinteger(L,v); lua_setglobal(L,n); }
694#define WSLUA_RETURN(i) return (i)
696#define WSLUA_API extern
701#define FAIL_ON_NULL(s) if (! *p) luaL_argerror(L,idx,"null " s)
703#define FAIL_ON_NULL_OR_EXPIRED(s) if (!*p) { \
704 luaL_argerror(L,idx,"null " s); \
705 } else if ((*p)->expired) { \
706 luaL_argerror(L,idx,"expired " s); \
710#define CLEAR_OUTSTANDING(C, marker, marker_val) void clear_outstanding_##C(void) { \
711 while (outstanding_##C->len) { \
712 C p = (C)g_ptr_array_remove_index_fast(outstanding_##C,0); \
714 if (p->marker != marker_val) \
715 p->marker = marker_val; \
722#define WSLUA_CLASS_DECLARE(C) \
723extern C to##C(lua_State* L, int idx); \
724extern C check##C(lua_State* L, int idx); \
725extern C* push##C(lua_State* L, C v); \
726extern int C##_register(lua_State* L); \
727extern bool is##C(lua_State* L,int i); \
728extern C shift##C(lua_State* L,int i)
732#define THROW_LUA_ERROR(...) \
733 THROW_FORMATTED(DissectorError, __VA_ARGS__)
754#define WRAP_NON_LUA_EXCEPTIONS(code) \
756 volatile bool has_error = false; \
759 } CATCH3(BoundsError, FragmentBoundsError, ScsiBoundsError) { \
760 show_exception(lua_tvb, lua_pinfo, lua_tree->tree, EXCEPT_CODE, GET_MESSAGE); \
762 show_exception(lua_tvb, lua_pinfo, lua_tree->tree, EXCEPT_CODE, GET_MESSAGE); \
763 lua_pushfstring(L, "%s: %s", __func__, GET_MESSAGE ? GET_MESSAGE : "Malformed packet"); \
766 if (has_error) { lua_error(L); } \
773extern bool lua_initialized;
774extern int lua_dissectors_table_ref;
775extern int lua_heur_dissectors_table_ref;
777WSLUA_DECLARE_CLASSES()
778WSLUA_DECLARE_FUNCTIONS()
780extern lua_State* wslua_state(
void);
801extern int wslua__concat(lua_State* L);
802extern bool wslua_toboolean(lua_State* L,
int n);
803extern bool wslua_checkboolean(lua_State* L,
int n);
804extern bool wslua_optbool(lua_State* L,
int n,
bool def);
805extern lua_Integer wslua_tointeger(lua_State* L,
int n);
806extern int wslua_optboolint(lua_State* L,
int n,
int def);
807extern const char* wslua_checklstring_only(lua_State* L,
int n,
size_t *l);
808extern const char* wslua_checkstring_only(lua_State* L,
int n);
809extern void wslua_setfuncs(lua_State *L,
const luaL_Reg *l,
int nup);
810extern const char* wslua_typeof_unknown;
811extern const char* wslua_typeof(lua_State *L,
int idx);
812extern bool wslua_get_table(lua_State *L,
int idx,
const char *name);
813extern bool wslua_get_field(lua_State *L,
int idx,
const char *name);
816extern expert_field* wslua_get_expert_field(
const int group,
const int severity);
817extern void wslua_prefs_changed(
void);
818extern void proto_register_lua(
void);
819extern GString* lua_register_all_taps(
void);
821extern bool wslua_has_field_extractors(
void);
822extern void lua_prime_all_fields(
proto_tree* tree);
824extern int Proto_commit(lua_State* L);
828extern void clear_outstanding_FuncSavers(
void);
830extern void Int64_pack(lua_State* L, luaL_Buffer *b,
int idx,
bool asLittleEndian);
831extern int Int64_unpack(lua_State* L,
const char *buff,
bool asLittleEndian);
832extern void UInt64_pack(lua_State* L, luaL_Buffer *b,
int idx,
bool asLittleEndian);
833extern int UInt64_unpack(lua_State* L,
const char *buff,
bool asLittleEndian);
834extern uint64_t getUInt64(lua_State *L,
int i);
837extern int push_wsluaTvb(lua_State* L,
Tvb t);
838extern bool push_TvbRange(lua_State* L,
tvbuff_t* tvb,
int offset,
int len);
839extern void clear_outstanding_Tvb(
void);
840extern void clear_outstanding_TvbRange(
void);
843extern void clear_outstanding_Pinfo(
void);
844extern void clear_outstanding_Column(
void);
845extern void clear_outstanding_Columns(
void);
846extern void clear_outstanding_PrivateTable(
void);
848extern int get_hf_wslua_text(
void);
850extern void clear_outstanding_TreeItem(
void);
853extern void clear_outstanding_FieldInfo(
void);
855extern void wslua_print_stack(
char* s, lua_State* L);
857extern void wslua_init(register_cb cb,
void *client_data);
858extern void wslua_early_cleanup(
void);
859extern void wslua_cleanup(
void);
861extern tap_extractor_t wslua_get_tap_extractor(
const char* name);
862extern int wslua_set_tap_enums(lua_State* L);
866extern char* wslua_get_actual_filename(
const char* fname);
868extern int wslua_bin2hex(lua_State* L,
const uint8_t* data,
const unsigned len,
const bool lowercase,
const char* sep);
869extern int wslua_hex2bin(lua_State* L,
const char* data,
const unsigned len,
const char* sep);
870extern int luaopen_rex_pcre2(lua_State *L);
872extern const char* get_current_plugin_version(
void);
873extern void clear_current_plugin_version(
void);
875extern int wslua_deregister_heur_dissectors(lua_State* L);
876extern int wslua_deregister_protocols(lua_State* L);
877extern int wslua_deregister_dissector_tables(lua_State* L);
878extern int wslua_deregister_listeners(lua_State* L);
879extern int wslua_deregister_fields(lua_State* L);
880extern int wslua_deregister_filehandlers(lua_State* L);
881extern void wslua_deregister_menus(
void);
883extern void wslua_init_wtap_filetypes(lua_State* L);
Definition tap-funnel.c:27
Definition packet_info.h:43
Definition tvbparse.h:142
Definition tvbparse.h:130
Type for defining new classes.
Definition wslua.h:790
const wslua_attribute_table * attrs
Definition wslua.h:796
const luaL_Reg * class_meta
Definition wslua.h:793
const char * name
Definition wslua.h:791
const luaL_Reg * class_methods
Definition wslua.h:792
const luaL_Reg * instance_methods
Definition wslua.h:794
const luaL_Reg * instance_meta
Definition wslua.h:795
uat_field_t * uat_field_list
Definition wslua.h:195
bool radio_buttons
Definition wslua.h:189
struct _wslua_pref_t::@503::@505 uat_field_list_info
char * default_s
Definition wslua.h:197
uint32_t max_value
Definition wslua.h:186
struct _wslua_pref_t::@503::@504 enum_info
union _wslua_pref_t::@503 info
const enum_val_t * enumvals
Definition wslua.h:188
Definition conversation.h:230
Definition column-info.h:62
Definition epan_dissect.h:28
Definition prefs-int.h:27
Definition progress_frame.h:31
Definition tvbuff-int.h:35
Definition file_wrappers.c:215
void wslua_register_class(lua_State *L, const wslua_class *cls_def)
Definition wslua_internals.c:547
ProtoField wslua_is_field_available(lua_State *L, const char *field_abbr)
Definition wslua_proto.c:714
void wslua_register_classinstance_meta(lua_State *L, const wslua_class *cls_def)
Definition wslua_internals.c:470
struct _wslua_class wslua_class
Type for defining new classes.