3 Routines for handling Flash2 AVM2 ABC Actionscript
5 Extension module for the rfxswf library.
6 Part of the swftools package.
8 Copyright (c) 2008 Matthias Kramm <kramm@quiss.org>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
26 #include "../rfxswf.h"
30 char stringbuffer[2048];
32 int abc_RegisterNameSpace(abc_file_t*file, const char*name);
33 int abc_RegisterPackageNameSpace(abc_file_t*file, const char*name);
34 int abc_RegisterPackageInternalNameSpace(abc_file_t*file, const char*name);
35 int abc_RegisterProtectedNameSpace(abc_file_t*file, const char*name);
36 int abc_RegisterExplicitNameSpace(abc_file_t*file, const char*name);
37 int abc_RegisterStaticProtectedNameSpace(abc_file_t*file, const char*name);
38 int abc_RegisterPrivateNameSpace(abc_file_t*file, const char*name);
40 /* TODO: switch to a datastructure with just values */
43 static void params_dump(FILE*fo, multiname_list_t*l, constant_list_t*o)
45 int n = list_length(l);
46 int no = list_length(o);
51 char*s = multiname_tostring(l->multiname);
55 s = constant_tostring(o->constant);
72 static void parse_metadata(TAG*tag, abc_file_t*file, pool_t*pool)
75 int num_metadata = swf_GetU30(tag);
77 DEBUG printf("%d metadata\n");
78 for(t=0;t<num_metadata;t++) {
79 const char*entry_name = pool_lookup_string(pool, swf_GetU30(tag));
80 int num = swf_GetU30(tag);
82 DEBUG printf(" %s\n", entry_name);
83 array_t*items = array_new();
85 int i1 = swf_GetU30(tag);
86 int i2 = swf_GetU30(tag);
87 const char*key = i1?pool_lookup_string(pool, i1):"";
88 const char*value = i2?pool_lookup_string(pool, i2):"";
89 DEBUG printf(" %s=%s\n", key, value);
90 array_append(items, key, strdup(value));
92 array_append(file->metadata, entry_name, items);
96 void swf_CopyData(TAG*to, TAG*from, int len)
98 unsigned char*data = malloc(len);
99 swf_GetBlock(from, data, len);
100 swf_SetBlock(to, data, len);
104 abc_file_t*abc_file_new()
106 abc_file_t*f = malloc(sizeof(abc_file_t));
107 memset(f, 0, sizeof(abc_file_t));
108 f->metadata = array_new();
110 f->methods = array_new();
111 f->classes = array_new();
112 f->scripts = array_new();
113 f->method_bodies = array_new();
114 f->flags = ABCFILE_LAZY;
119 abc_class_t* abc_class_new(abc_file_t*file, multiname_t*classname, multiname_t*superclass) {
123 array_append(file->classes, NO_KEY, c);
126 c->classname = multiname_clone(classname);
127 c->superclass = multiname_clone(superclass);
130 c->static_constructor = 0;
131 c->traits = list_new();
134 abc_class_t* abc_class_new2(abc_file_t*pool, char*classname, char*superclass)
136 return abc_class_new(pool, multiname_fromstring(classname), multiname_fromstring(superclass));
139 void abc_class_sealed(abc_class_t*c)
141 c->flags |= CLASS_SEALED;
143 void abc_class_final(abc_class_t*c)
145 c->flags |= CLASS_FINAL;
147 void abc_class_interface(abc_class_t*c)
149 c->flags |= CLASS_INTERFACE;
151 void abc_class_protectedNS(abc_class_t*c, char*namespace)
153 c->protectedNS = namespace_new_protected(namespace);
154 c->flags |= CLASS_PROTECTED_NS;
156 void abc_class_add_interface(abc_class_t*c, multiname_t*interface)
158 list_append(c->interfaces, multiname_clone(interface));
161 void abc_method_init(abc_method_t*m, abc_file_t*file, multiname_t*returntype, char body)
163 /* construct method object */
164 m->index = array_length(file->methods);
165 array_append(file->methods, NO_KEY, m);
166 m->return_type = returntype;
169 /* construct code (method body) object */
170 NEW(abc_method_body_t,c);
171 array_append(file->method_bodies, NO_KEY, c);
172 c->index = array_length(file->method_bodies);
174 c->traits = list_new();
177 /* crosslink the two objects */
182 abc_method_t* abc_method_new(abc_file_t*file, multiname_t*returntype, char body)
185 abc_method_init(m, file, returntype, body);
189 abc_method_t* abc_class_getconstructor(abc_class_t*cls, multiname_t*returntype)
191 if(cls->constructor) {
192 return cls->constructor;
194 abc_method_t* m = abc_method_new(cls->file, returntype, 1);
195 cls->constructor = m;
199 abc_method_t* abc_class_getstaticconstructor(abc_class_t*cls, multiname_t*returntype)
201 if(cls->static_constructor) {
202 return cls->static_constructor;
204 abc_method_t* m = abc_method_new(cls->file, returntype, 1);
205 cls->static_constructor = m;
209 trait_t*trait_new(int type, multiname_t*name, int data1, int data2, constant_t*v)
211 trait_t*trait = malloc(sizeof(trait_t));
212 memset(trait, 0, sizeof(trait_t));
213 trait->kind = type&0x0f;
214 trait->attributes = type&0xf0;
216 trait->data1 = data1;
217 trait->data2 = data2;
222 trait_t*trait_new_member(trait_list_t**traits, multiname_t*type, multiname_t*name,constant_t*v)
224 int kind = TRAIT_SLOT;
225 trait_t*trait = malloc(sizeof(trait_t));
226 memset(trait, 0, sizeof(trait_t));
227 trait->kind = kind&0x0f;
228 trait->attributes = kind&0xf0;
230 trait->type_name = type;
232 trait->slot_id = list_length(*traits)+1;
233 trait_list_t*l = *traits;
234 list_append_(traits, trait);
237 trait_t*trait_new_method(trait_list_t**traits, multiname_t*name, abc_method_t*m)
239 int type = TRAIT_METHOD;
240 trait_t*trait = malloc(sizeof(trait_t));
241 memset(trait, 0, sizeof(trait_t));
242 trait->kind = type&0x0f;
243 trait->attributes = type&0xf0;
247 /* start assigning traits at position #1.
248 Weird things happen when assigning slot 0- slot 0 and 1 seem
250 trait->slot_id = list_length(*traits)+1;
251 list_append_(traits, trait);
255 abc_method_t* abc_class_method(abc_class_t*cls, multiname_t*returntype, multiname_t*name)
257 abc_file_t*file = cls->file;
258 abc_method_t* m = abc_method_new(cls->file, returntype, !(cls->flags&CLASS_INTERFACE));
259 m->trait = trait_new_method(&cls->traits, multiname_clone(name), m);
262 abc_method_t* abc_class_staticmethod(abc_class_t*cls, multiname_t*returntype, multiname_t*name)
264 abc_file_t*file = cls->file;
265 abc_method_t* m = abc_method_new(cls->file, returntype, !(cls->flags&CLASS_INTERFACE));
266 m->trait = trait_new_method(&cls->static_traits, multiname_clone(name), m);
270 trait_t* abc_class_slot(abc_class_t*cls, multiname_t*name, multiname_t*type)
272 abc_file_t*file = cls->file;
273 multiname_t*m_name = multiname_clone(name);
274 multiname_t*m_type = multiname_clone(type);
275 trait_t*t = trait_new_member(&cls->traits, m_type, m_name, 0);
278 trait_t* abc_class_staticslot(abc_class_t*cls, multiname_t*name, multiname_t*type)
280 abc_file_t*file = cls->file;
281 multiname_t*m_name = multiname_clone(name);
282 multiname_t*m_type = multiname_clone(type);
283 trait_t*t = trait_new_member(&cls->static_traits, m_type, m_name, 0);
288 trait_t* traits_find_slotid(trait_list_t*traits, int slotid)
292 for(l=traits;l;l=l->next) {
293 if(l->trait->slot_id==slotid) {
301 void abc_method_body_addClassTrait(abc_method_body_t*code, char*multiname, int slotid, abc_class_t*cls)
303 abc_file_t*file = code->file;
304 multiname_t*m = multiname_fromstring(multiname);
305 trait_t*trait = trait_new(TRAIT_CLASS, m, slotid, 0, 0);
307 list_append(code->traits, trait);
310 /* notice: traits of a method (body) belonging to an init script
311 and traits of the init script are *not* the same thing */
312 int abc_initscript_addClassTrait(abc_script_t*script, multiname_t*multiname, abc_class_t*cls)
314 abc_file_t*file = script->file;
315 multiname_t*m = multiname_clone(multiname);
316 int slotid = list_length(script->traits)+1;
317 trait_t*trait = trait_new(TRAIT_CLASS, m, slotid, 0, 0);
319 list_append(script->traits, trait);
323 abc_script_t* abc_initscript(abc_file_t*file)
325 abc_method_t*m = abc_method_new(file, 0, 1);
326 abc_script_t* s = malloc(sizeof(abc_script_t));
328 s->traits = list_new();
330 array_append(file->scripts, NO_KEY, s);
334 static void traits_dump(FILE*fo, const char*prefix, trait_list_t*traits, abc_file_t*file, dict_t*methods_seen);
336 static void dump_method(FILE*fo, const char*prefix,
340 abc_method_t*m, abc_file_t*file, dict_t*methods_seen)
343 dict_put(methods_seen, m, 0);
345 char*return_type = 0;
347 return_type = multiname_tostring(m->return_type);
349 return_type = strdup("*");
351 fprintf(fo, "%s", prefix);
352 fprintf(fo, "%s %s ", attr, type);
353 fprintf(fo, "%s %s=%s", return_type, name, m->name);
354 params_dump(fo, m->parameters, m->optional_parameters);
355 fprintf(fo, "(%d params, %d optional)\n", list_length(m->parameters), list_length(m->optional_parameters));
357 free(return_type);return_type=0;
359 abc_method_body_t*c = m->body;
364 fprintf(fo, "%s[stack:%d locals:%d scope:%d-%d flags:",
365 prefix, c->old.max_stack, c->old.local_count, c->old.init_scope_depth,
366 c->old.max_scope_depth);
369 int flags = c->method->flags;
370 if(flags&METHOD_NEED_ARGUMENTS) {fprintf(fo, " need_arguments");flags&=~METHOD_NEED_ARGUMENTS;}
371 if(flags&METHOD_NEED_ACTIVATION) {fprintf(fo, " need_activation");flags&=~METHOD_NEED_ACTIVATION;}
372 if(flags&METHOD_NEED_REST) {fprintf(fo, " need_rest");flags&=~METHOD_NEED_REST;}
373 if(flags&METHOD_HAS_OPTIONAL) {fprintf(fo, " has_optional");flags&=~METHOD_HAS_OPTIONAL;}
374 if(flags&METHOD_SET_DXNS) {fprintf(fo, " set_dxns");flags&=~METHOD_SET_DXNS;}
375 if(flags&METHOD_HAS_PARAM_NAMES) {fprintf(fo, " has_param_names");flags&=~METHOD_HAS_PARAM_NAMES;}
376 if(flags) fprintf(fo, " %02x", flags);
380 fprintf(fo, " slot:%d", m->trait->slot_id);
386 sprintf(prefix2, "%s ", prefix);
388 traits_dump(fo, prefix, c->traits, file, methods_seen);
389 fprintf(fo, "%s{\n", prefix);
390 code_dump2(c->code, c->exceptions, file, prefix2, fo);
391 fprintf(fo, "%s}\n\n", prefix);
394 static void traits_free(trait_list_t*traits)
396 trait_list_t*t = traits;
399 multiname_destroy(t->trait->name);t->trait->name = 0;
401 if(t->trait->kind == TRAIT_SLOT || t->trait->kind == TRAIT_CONST) {
402 multiname_destroy(t->trait->type_name);
404 if(t->trait->value) {
405 constant_free(t->trait->value);t->trait->value = 0;
407 free(t->trait);t->trait = 0;
413 static char trait_is_method(trait_t*trait)
415 return (trait->kind == TRAIT_METHOD || trait->kind == TRAIT_GETTER ||
416 trait->kind == TRAIT_SETTER || trait->kind == TRAIT_FUNCTION);
419 static trait_list_t* traits_parse(TAG*tag, pool_t*pool, abc_file_t*file)
421 int num_traits = swf_GetU30(tag);
422 trait_list_t*traits = list_new();
425 DEBUG printf("%d traits\n", num_traits);
428 for(t=0;t<num_traits;t++) {
430 list_append(traits, trait);
432 trait->name = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag))); // always a QName (ns,name)
435 DEBUG name = multiname_tostring(trait->name);
436 U8 kind = swf_GetU8(tag);
437 U8 attributes = kind&0xf0;
440 trait->attributes = attributes;
441 DEBUG printf(" trait %d) %s type=%02x\n", t, name, kind);
442 if(kind == TRAIT_METHOD || kind == TRAIT_GETTER || kind == TRAIT_SETTER) { // method / getter / setter
443 trait->disp_id = swf_GetU30(tag);
444 trait->method = (abc_method_t*)array_getvalue(file->methods, swf_GetU30(tag));
445 trait->method->trait = trait;
446 DEBUG printf(" method/getter/setter\n");
447 } else if(kind == TRAIT_FUNCTION) { // function
448 trait->slot_id = swf_GetU30(tag);
449 trait->method = (abc_method_t*)array_getvalue(file->methods, swf_GetU30(tag));
450 trait->method->trait = trait;
451 } else if(kind == TRAIT_CLASS) { // class
452 trait->slot_id = swf_GetU30(tag);
453 trait->cls = (abc_class_t*)array_getvalue(file->classes, swf_GetU30(tag));
454 DEBUG printf(" class %s %d %d\n", name, trait->slot_id, trait->cls);
455 } else if(kind == TRAIT_SLOT || kind == TRAIT_CONST) { // slot, const
456 trait->slot_id = swf_GetU30(tag);
457 trait->type_name = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag)));
458 int vindex = swf_GetU30(tag);
460 int vkind = swf_GetU8(tag);
461 trait->value = constant_fromindex(pool, vindex, vkind);
463 DEBUG printf(" slot %s %d %s (%s)\n", name, trait->slot_id, trait->type_name->name, constant_tostring(trait->value));
465 fprintf(stderr, "Can't parse trait type %d\n", kind);
467 if(attributes&0x40) {
468 int num = swf_GetU30(tag);
471 swf_GetU30(tag); //index into metadata array
478 void traits_skip(TAG*tag)
480 int num_traits = swf_GetU30(tag);
482 for(t=0;t<num_traits;t++) {
484 U8 kind = swf_GetU8(tag);
485 U8 attributes = kind&0xf0;
489 if(kind == TRAIT_SLOT || kind == TRAIT_CONST) {
490 if(swf_GetU30(tag)) swf_GetU8(tag);
491 } else if(kind>TRAIT_CONST) {
492 fprintf(stderr, "Can't parse trait type %d\n", kind);
494 if(attributes&0x40) {
495 int s, num = swf_GetU30(tag);
496 for(s=0;s<num;s++) swf_GetU30(tag);
502 static void traits_write(pool_t*pool, TAG*tag, trait_list_t*traits)
508 swf_SetU30(tag, list_length(traits));
512 trait_t*trait = traits->trait;
514 swf_SetU30(tag, pool_register_multiname(pool, trait->name));
515 swf_SetU8(tag, trait->kind|trait->attributes);
517 swf_SetU30(tag, trait->data1);
519 if(trait->kind == TRAIT_CLASS) {
520 swf_SetU30(tag, trait->cls->index);
521 } else if(trait->kind == TRAIT_GETTER ||
522 trait->kind == TRAIT_SETTER ||
523 trait->kind == TRAIT_METHOD) {
524 swf_SetU30(tag, trait->method->index);
525 } else if(trait->kind == TRAIT_SLOT ||
526 trait->kind == TRAIT_CONST) {
527 int index = pool_register_multiname(pool, trait->type_name);
528 swf_SetU30(tag, index);
530 swf_SetU30(tag, trait->data2);
533 if(trait->kind == TRAIT_SLOT || trait->kind == TRAIT_CONST) {
534 int vindex = constant_get_index(pool, trait->value);
535 swf_SetU30(tag, vindex);
537 swf_SetU8(tag, trait->value->type);
540 if(trait->attributes&0x40) {
544 traits = traits->next;
549 static void traits_dump(FILE*fo, const char*prefix, trait_list_t*traits, abc_file_t*file, dict_t*methods_seen)
553 trait_t*trait = traits->trait;
554 char*name = multiname_tostring(trait->name);
555 U8 kind = trait->kind;
556 U8 attributes = trait->attributes;
558 char a = attributes & (TRAIT_ATTR_OVERRIDE|TRAIT_ATTR_FINAL);
560 if(a==TRAIT_ATTR_FINAL)
562 else if(a==TRAIT_ATTR_OVERRIDE)
564 else if(a==(TRAIT_ATTR_OVERRIDE|TRAIT_ATTR_FINAL))
565 type = "final override ";
567 if(attributes&TRAIT_ATTR_METADATA)
568 fprintf(fo, "<metadata>");
570 if(kind == TRAIT_METHOD) {
571 abc_method_t*m = trait->method;
572 dump_method(fo, prefix, type, "method", name, m, file, methods_seen);
573 } else if(kind == TRAIT_GETTER) {
574 abc_method_t*m = trait->method;
575 dump_method(fo, prefix, type, "getter", name, m, file, methods_seen);
576 } else if(kind == TRAIT_SETTER) {
577 abc_method_t*m = trait->method;
578 dump_method(fo, prefix, type, "setter", name, m, file, methods_seen);
579 } else if(kind == TRAIT_FUNCTION) { // function
580 abc_method_t*m = trait->method;
581 dump_method(fo, prefix, type, "function", name, m, file, methods_seen);
582 } else if(kind == TRAIT_CLASS) { // class
583 abc_class_t*cls = trait->cls;
585 fprintf(fo, "%sslot %d: class %s=00000000\n", prefix, trait->slot_id, name);
587 fprintf(fo, "%sslot %d: class %s=%s\n", prefix, trait->slot_id, name, cls->classname->name);
589 } else if(kind == TRAIT_SLOT || kind == TRAIT_CONST) { // slot, const
590 int slot_id = trait->slot_id;
591 char*type_name = multiname_tostring(trait->type_name);
592 char*value = constant_tostring(trait->value);
593 fprintf(fo, "%sslot %d: %s %s:%s %s %s\n", prefix, trait->slot_id,
594 kind==TRAIT_CONST?"const":"var", name, type_name,
595 trait->value?"=":"", trait->value?value:"");
596 if(value) free(value);
599 fprintf(fo, "%s can't dump trait type %d\n", prefix, kind);
606 void* swf_DumpABC(FILE*fo, void*code, char*prefix)
608 abc_file_t* file = (abc_file_t*)code;
611 fprintf(fo, "%s#\n", prefix);
612 fprintf(fo, "%s#name: %s\n", prefix, file->name);
613 fprintf(fo, "%s#\n", prefix);
617 for(t=0;t<file->metadata->num;t++) {
618 const char*entry_name = array_getkey(file->metadata, t);
619 fprintf(fo, "%s#Metadata \"%s\":\n", prefix, entry_name);
621 array_t*items = (array_t*)array_getvalue(file->metadata, t);
622 for(s=0;s<items->num;s++) {
623 fprintf(fo, "%s# %s=%s\n", prefix, array_getkey(items, s), array_getvalue(items,s));
625 fprintf(fo, "%s#\n", prefix);
628 dict_t*methods_seen = dict_new2(&ptr_type);
629 for(t=0;t<file->classes->num;t++) {
630 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
632 sprintf(prefix2, "%s ", prefix);
634 fprintf(fo, "%s", prefix);
635 if(cls->flags&1) fprintf(fo, "sealed ");
636 if(cls->flags&2) fprintf(fo, "final ");
637 if(cls->flags&4) fprintf(fo, "interface ");
639 char*s = namespace_tostring(cls->protectedNS);
640 fprintf(fo, "protectedNS(%s) ", s);
644 char*classname = multiname_tostring(cls->classname);
645 fprintf(fo, "class %s", classname);
647 if(cls->superclass) {
648 char*supername = multiname_tostring(cls->superclass);
649 fprintf(fo, " extends %s", supername);
652 if(cls->interfaces) {
653 multiname_list_t*ilist = cls->interfaces;
655 fprintf(fo, " implements");
657 char*s = multiname_tostring(ilist->multiname);
658 fprintf(fo, " %s", s);
665 fprintf(fo, "extra flags=%02x\n", cls->flags&0xf0);
666 fprintf(fo, "%s{\n", prefix);
668 dict_put(methods_seen, cls->static_constructor, 0);
669 dict_put(methods_seen, cls->constructor, 0);
671 if(cls->static_constructor) {
672 dump_method(fo, prefix2, "", "staticconstructor", "", cls->static_constructor, file, methods_seen);
674 traits_dump(fo, prefix2, cls->static_traits, file, methods_seen);
676 char*n = multiname_tostring(cls->classname);
678 dump_method(fo, prefix2, "", "constructor", n, cls->constructor, file, methods_seen);
680 traits_dump(fo, prefix2,cls->traits, file, methods_seen);
681 fprintf(fo, "%s}\n", prefix);
683 fprintf(fo, "%s\n", prefix);
685 for(t=0;t<file->scripts->num;t++) {
686 abc_script_t*s = (abc_script_t*)array_getvalue(file->scripts, t);
687 dump_method(fo, prefix, "", "initmethod", "init", s->method, file, methods_seen);
688 traits_dump(fo, prefix, s->traits, file, methods_seen);
692 for(t=0;t<file->methods->num;t++) {
693 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, t);
694 if(!dict_contains(methods_seen, m)) {
698 fprintf(fo, "%s//internal (non-class non-script) methods:\n", prefix);
701 sprintf(name, "%08x ", m->index);
702 dump_method(fo, prefix, "", "internalmethod", name, m, file, methods_seen);
705 dict_destroy(methods_seen);
710 void* swf_ReadABC(TAG*tag)
712 abc_file_t* file = abc_file_new();
713 pool_t*pool = pool_new();
715 swf_SetTagPos(tag, 0);
717 if(tag->id == ST_DOABC) {
718 U32 abcflags = swf_GetU32(tag);
719 DEBUG printf("flags=%08x\n", abcflags);
720 char*name= swf_GetString(tag);
721 file->name = (name&&name[0])?strdup(name):0;
723 U32 version = swf_GetU32(tag);
724 if(version!=0x002e0010) {
725 fprintf(stderr, "Warning: unknown AVM2 version %08x\n", version);
728 pool_read(pool, tag);
730 int num_methods = swf_GetU30(tag);
731 DEBUG printf("%d methods\n", num_methods);
732 for(t=0;t<num_methods;t++) {
734 int param_count = swf_GetU30(tag);
735 int return_type_index = swf_GetU30(tag);
736 if(return_type_index)
737 m->return_type = multiname_clone(pool_lookup_multiname(pool, return_type_index));
742 for(s=0;s<param_count;s++) {
743 int type_index = swf_GetU30(tag);
745 /* type_index might be 0 ("*") */
746 multiname_t*param = type_index?multiname_clone(pool_lookup_multiname(pool, type_index)):0;
747 list_append(m->parameters, param);
750 int namenr = swf_GetU30(tag);
752 m->name = strdup(pool_lookup_string(pool, namenr));
754 m->name = strdup("");
756 m->flags = swf_GetU8(tag);
758 DEBUG printf("method %d) %s ", m->name);
759 DEBUG params_dump(stdout, m->parameters, m->optional_parameters);
760 DEBUG printf("flags=%02x\n", t, m->flags);
763 m->optional_parameters = list_new();
764 int num = swf_GetU30(tag);
767 int vindex = swf_GetU30(tag);
768 U8 vkind = swf_GetU8(tag); // specifies index type for "val"
769 constant_t*c = constant_fromindex(pool, vindex, vkind);
770 list_append(m->optional_parameters, c);
775 /* debug information- not used by avm2 */
776 multiname_list_t*l = m->parameters;
778 const char*name = pool_lookup_string(pool, swf_GetU30(tag));
782 m->index = array_length(file->methods);
783 array_append(file->methods, NO_KEY, m);
786 parse_metadata(tag, file, pool);
788 /* skip classes, and scripts for now, and do the real parsing later */
789 int num_classes = swf_GetU30(tag);
790 int classes_pos = tag->pos;
791 DEBUG printf("%d classes\n", num_classes);
792 for(t=0;t<num_classes;t++) {
793 abc_class_t*cls = malloc(sizeof(abc_class_t));
794 memset(cls, 0, sizeof(abc_class_t));
796 swf_GetU30(tag); //classname
797 swf_GetU30(tag); //supername
799 array_append(file->classes, NO_KEY, cls);
801 cls->flags = swf_GetU8(tag);
802 DEBUG printf("class %d %02x\n", t, cls->flags);
804 swf_GetU30(tag); //protectedNS
806 int inum = swf_GetU30(tag); //interface count
808 for(s=0;s<inum;s++) {
809 int interface_index = swf_GetU30(tag);
810 multiname_t* m = multiname_clone(pool_lookup_multiname(pool, interface_index));
811 list_append(cls->interfaces, m);
812 DEBUG printf(" class %d interface: %s\n", t, m->name);
815 int iinit = swf_GetU30(tag); //iinit
816 DEBUG printf("--iinit-->%d\n", iinit);
819 for(t=0;t<num_classes;t++) {
820 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
821 int cinit = swf_GetU30(tag);
822 DEBUG printf("--cinit(%d)-->%d\n", t, cinit);
823 cls->static_constructor = (abc_method_t*)array_getvalue(file->methods, cinit);
826 int num_scripts = swf_GetU30(tag);
827 DEBUG printf("%d scripts\n", num_scripts);
828 for(t=0;t<num_scripts;t++) {
829 int init = swf_GetU30(tag);
833 int num_method_bodies = swf_GetU30(tag);
834 DEBUG printf("%d method bodies\n", num_method_bodies);
835 for(t=0;t<num_method_bodies;t++) {
836 int methodnr = swf_GetU30(tag);
837 if(methodnr >= file->methods->num) {
838 printf("Invalid method number: %d\n", methodnr);
841 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, methodnr);
842 abc_method_body_t*c = malloc(sizeof(abc_method_body_t));
843 memset(c, 0, sizeof(abc_method_body_t));
844 c->old.max_stack = swf_GetU30(tag);
845 c->old.local_count = swf_GetU30(tag);
846 c->old.init_scope_depth = swf_GetU30(tag);
847 c->old.max_scope_depth = swf_GetU30(tag);
849 c->init_scope_depth = c->old.init_scope_depth;
850 int code_length = swf_GetU30(tag);
855 int pos = tag->pos + code_length;
856 codelookup_t*codelookup = 0;
857 c->code = code_parse(tag, code_length, file, pool, &codelookup);
860 int exception_count = swf_GetU30(tag);
862 c->exceptions = list_new();
863 for(s=0;s<exception_count;s++) {
864 abc_exception_t*e = malloc(sizeof(abc_exception_t));
866 e->from = code_atposition(codelookup, swf_GetU30(tag));
867 e->to = code_atposition(codelookup, swf_GetU30(tag));
868 e->target = code_atposition(codelookup, swf_GetU30(tag));
870 e->exc_type = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag)));
871 e->var_name = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag)));
872 //e->var_name = pool_lookup_string(pool, swf_GetU30(tag));
873 //if(e->var_name) e->var_name = strdup(e->var_name);
874 list_append(c->exceptions, e);
876 codelookup_free(codelookup);
877 c->traits = traits_parse(tag, pool, file);
879 DEBUG printf("method_body %d) (method %d), %d bytes of code\n", t, methodnr, code_length);
881 array_append(file->method_bodies, NO_KEY, c);
883 if(tag->len - tag->pos) {
884 fprintf(stderr, "ERROR: %d unparsed bytes remaining in ABC block\n", tag->len - tag->pos);
888 swf_SetTagPos(tag, classes_pos);
889 for(t=0;t<num_classes;t++) {
890 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
892 int classname_index = swf_GetU30(tag);
893 int superclass_index = swf_GetU30(tag);
894 cls->classname = multiname_clone(pool_lookup_multiname(pool, classname_index));
895 cls->superclass = multiname_clone(pool_lookup_multiname(pool, superclass_index));
896 cls->flags = swf_GetU8(tag);
899 int ns_index = swf_GetU30(tag);
900 cls->protectedNS = namespace_clone(pool_lookup_namespace(pool, ns_index));
903 int num_interfaces = swf_GetU30(tag); //interface count
905 for(s=0;s<num_interfaces;s++) {
908 int iinit = swf_GetU30(tag);
909 cls->constructor = (abc_method_t*)array_getvalue(file->methods, iinit);
910 cls->traits = traits_parse(tag, pool, file);
912 for(t=0;t<num_classes;t++) {
913 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
915 swf_GetU30(tag); // cindex
916 cls->static_traits = traits_parse(tag, pool, file);
918 int num_scripts2 = swf_GetU30(tag);
919 for(t=0;t<num_scripts2;t++) {
920 int init = swf_GetU30(tag);
921 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, init);
923 abc_script_t*s = malloc(sizeof(abc_script_t));
924 memset(s, 0, sizeof(abc_script_t));
926 s->traits = traits_parse(tag, pool, file);
927 array_append(file->scripts, NO_KEY, s);
934 static pool_t*writeABC(TAG*abctag, void*code, pool_t*pool)
936 abc_file_t*file = (abc_file_t*)code;
940 file = abc_file_new();
942 TAG*tmp = swf_InsertTag(0,0);
946 /* add method bodies where needed */
947 for(t=0;t<file->classes->num;t++) {
948 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
949 if(!c->constructor) {
950 if(!(c->flags&CLASS_INTERFACE)) {
951 NEW(abc_method_t,m);array_append(file->methods, NO_KEY, m);
952 NEW(abc_method_body_t,body);array_append(file->method_bodies, NO_KEY, body);
953 // don't bother to set m->index
954 body->method = m; m->body = body;
955 if(c->superclass && c->superclass->name && strcmp(c->superclass->name,"Object")) {
956 body->code = abc_getlocal_0(body->code);
957 body->code = abc_constructsuper(body->code, 0);
959 body->code = abc_returnvoid(body->code);
962 NEW(abc_method_t,m);array_append(file->methods, NO_KEY, m);
966 if(!c->static_constructor) {
967 NEW(abc_method_t,m);array_append(file->methods, NO_KEY, m);
968 NEW(abc_method_body_t,body);array_append(file->method_bodies, NO_KEY, body);
969 body->method = m; m->body = body;
970 body->code = abc_returnvoid(0);
971 c->static_constructor = m;
976 swf_SetU30(tag, file->methods->num);
977 /* enumerate classes, methods and method bodies */
978 for(t=0;t<file->methods->num;t++) {
979 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, t);
982 for(t=0;t<file->classes->num;t++) {
983 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
986 for(t=0;t<file->method_bodies->num;t++) {
987 abc_method_body_t*m = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
991 /* generate code statistics */
992 for(t=0;t<file->method_bodies->num;t++) {
993 abc_method_body_t*m = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
994 m->stats = code_get_statistics(m->code, m->exceptions);
997 /* level init scope depths: The init scope depth of a method is
998 always as least as high as the init scope depth of it's surrounding
1000 A method has it's own init_scope_depth if it's an init method
1001 (then its init scope depth is zero), or if it's used as a closure.
1003 Not sure yet what to do with methods which are used at different
1004 locations- e.g. the nullmethod is used all over the place.
1005 EDIT: flashplayer doesn't allow this anyway- a method can only
1008 Also, I have the strong suspicion that flash player uses only
1009 the difference between max_scope_stack and init_scope_stack, anyway.
1011 for(t=0;t<file->classes->num;t++) {
1012 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
1013 trait_list_t*traits = c->traits;
1014 if(c->constructor && c->constructor->body &&
1015 c->constructor->body->init_scope_depth < c->init_scope_depth) {
1016 c->constructor->body->init_scope_depth = c->init_scope_depth;
1018 if(c->static_constructor && c->static_constructor->body &&
1019 c->static_constructor->body->init_scope_depth < c->init_scope_depth) {
1020 c->static_constructor->body->init_scope_depth = c->init_scope_depth;
1023 trait_t*trait = traits->trait;
1024 if(trait_is_method(trait) && trait->method->body) {
1025 abc_method_body_t*body = trait->method->body;
1026 if(body->init_scope_depth < c->init_scope_depth) {
1027 body->init_scope_depth = c->init_scope_depth;
1030 traits = traits->next;
1034 for(t=0;t<file->methods->num;t++) {
1035 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, t);
1037 multiname_list_t*l = m->parameters;
1038 int num_params = list_length(m->parameters);
1039 swf_SetU30(tag, num_params);
1041 swf_SetU30(tag, pool_register_multiname(pool, m->return_type));
1046 swf_SetU30(tag, pool_register_multiname(pool, l->multiname));
1050 swf_SetU30(tag, pool_register_string(pool, m->name));
1055 U8 flags = m->flags&(METHOD_NEED_REST|METHOD_NEED_ARGUMENTS);
1056 if(m->optional_parameters)
1057 flags |= METHOD_HAS_OPTIONAL;
1059 flags |= m->body->stats->flags;
1062 swf_SetU8(tag, flags);
1063 if(flags&METHOD_HAS_OPTIONAL) {
1064 swf_SetU30(tag, list_length(m->optional_parameters));
1065 constant_list_t*l = m->optional_parameters;
1067 int i = constant_get_index(pool, l->constant);
1070 swf_SetU8(tag, CONSTANT_NULL);
1072 swf_SetU8(tag, l->constant->type);
1079 /* write metadata */
1080 swf_SetU30(tag, file->metadata->num);
1081 for(t=0;t<file->metadata->num;t++) {
1082 const char*entry_name = array_getkey(file->metadata, t);
1083 swf_SetU30(tag, pool_register_string(pool, entry_name));
1084 array_t*items = (array_t*)array_getvalue(file->metadata, t);
1085 swf_SetU30(tag, items->num);
1087 for(s=0;s<items->num;s++) {
1088 int i1 = pool_register_string(pool, array_getkey(items, s));
1089 int i2 = pool_register_string(pool, array_getvalue(items, s));
1090 swf_SetU30(tag, i1);
1091 swf_SetU30(tag, i2);
1095 swf_SetU30(tag, file->classes->num);
1096 for(t=0;t<file->classes->num;t++) {
1097 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
1099 int classname_index = pool_register_multiname(pool, c->classname);
1100 int superclass_index = pool_register_multiname(pool, c->superclass);
1102 swf_SetU30(tag, classname_index);
1103 swf_SetU30(tag, superclass_index);
1105 swf_SetU8(tag, c->flags); // flags
1107 int ns_index = pool_register_namespace(pool, c->protectedNS);
1108 swf_SetU30(tag, ns_index);
1111 swf_SetU30(tag, list_length(c->interfaces));
1112 multiname_list_t*interface= c->interfaces;
1114 swf_SetU30(tag, pool_register_multiname(pool, interface->multiname));
1115 interface = interface->next;
1118 assert(c->constructor);
1119 swf_SetU30(tag, c->constructor->index);
1121 traits_write(pool, tag, c->traits);
1123 for(t=0;t<file->classes->num;t++) {
1124 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
1125 assert(c->static_constructor);
1126 swf_SetU30(tag, c->static_constructor->index);
1128 traits_write(pool, tag, c->static_traits);
1131 swf_SetU30(tag, file->scripts->num);
1132 for(t=0;t<file->scripts->num;t++) {
1133 abc_script_t*s = (abc_script_t*)array_getvalue(file->scripts, t);
1134 if(!s->method->body || !s->method->body->code) {
1135 fprintf(stderr, "Internal Error: initscript has no body\n");
1137 swf_SetU30(tag, s->method->index); //!=t!
1138 traits_write(pool, tag, s->traits);
1141 swf_SetU30(tag, file->method_bodies->num);
1142 for(t=0;t<file->method_bodies->num;t++) {
1143 abc_method_body_t*c = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
1144 abc_method_t*m = c->method;
1145 swf_SetU30(tag, m->index);
1147 //swf_SetU30(tag, c->old.max_stack);
1148 //swf_SetU30(tag, c->old.local_count);
1149 //swf_SetU30(tag, c->old.init_scope_depth);
1150 //swf_SetU30(tag, c->old.max_scope_depth);
1152 swf_SetU30(tag, c->stats->max_stack);
1153 int param_num = list_length(c->method->parameters)+1;
1154 if(c->method->flags&METHOD_NEED_REST)
1156 if(param_num <= c->stats->local_count)
1157 swf_SetU30(tag, c->stats->local_count);
1159 swf_SetU30(tag, param_num);
1161 swf_SetU30(tag, c->init_scope_depth);
1162 swf_SetU30(tag, c->stats->max_scope_depth+
1163 c->init_scope_depth);
1165 code_write(tag, c->code, pool, file);
1167 swf_SetU30(tag, list_length(c->exceptions));
1168 abc_exception_list_t*l = c->exceptions;
1170 // warning: assumes "pos" in each code_t is up-to-date
1171 swf_SetU30(tag, l->abc_exception->from->pos);
1172 swf_SetU30(tag, l->abc_exception->to->pos);
1173 swf_SetU30(tag, l->abc_exception->target->pos);
1174 swf_SetU30(tag, pool_register_multiname(pool, l->abc_exception->exc_type));
1175 swf_SetU30(tag, pool_register_multiname(pool, l->abc_exception->var_name));
1179 traits_write(pool, tag, c->traits);
1182 /* free temporary codestat data again. Notice: If we were to write this
1183 file multiple times, this can also be shifted to abc_file_free() */
1184 for(t=0;t<file->method_bodies->num;t++) {
1185 abc_method_body_t*m = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
1186 codestats_free(m->stats);m->stats=0;
1189 // --- start to write real tag --
1193 if(tag->id == ST_DOABC) {
1194 swf_SetU32(tag, file->flags); // flags
1195 swf_SetString(tag, file->name);
1198 swf_SetU16(tag, 0x10); //version
1199 swf_SetU16(tag, 0x2e);
1201 pool_write(pool, tag);
1203 swf_SetBlock(tag, tmp->data, tmp->len);
1205 swf_DeleteTag(0, tmp);
1209 void swf_WriteABC(TAG*abctag, void*code)
1211 pool_t*pool = writeABC(abctag, code, 0);
1212 pool_optimize(pool);
1213 swf_ResetTag(abctag, abctag->id);
1214 writeABC(abctag, code, pool);
1218 void abc_file_free(abc_file_t*file)
1223 if(file->metadata) {
1224 for(t=0;t<file->metadata->num;t++) {
1225 array_t*items = (array_t*)array_getvalue(file->metadata, t);
1227 for(s=0;s<items->num;s++) {
1228 free(array_getvalue(items, s));
1232 array_free(file->metadata);file->metadata=0;
1235 for(t=0;t<file->methods->num;t++) {
1236 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, t);
1238 multiname_list_t*param = m->parameters;
1240 multiname_destroy(param->multiname);param->multiname=0;
1241 param = param->next;
1243 list_free(m->parameters);m->parameters=0;
1245 constant_list_t*opt = m->optional_parameters;
1247 constant_free(opt->constant);opt->constant=0;
1250 list_free(m->optional_parameters);m->optional_parameters=0;
1253 free((void*)m->name);m->name=0;
1255 if(m->return_type) {
1256 multiname_destroy(m->return_type);
1260 array_free(file->methods);file->methods=0;
1262 for(t=0;t<file->classes->num;t++) {
1263 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
1264 traits_free(cls->traits);cls->traits=0;
1265 traits_free(cls->static_traits);cls->static_traits=0;
1267 if(cls->classname) {
1268 multiname_destroy(cls->classname);
1270 if(cls->superclass) {
1271 multiname_destroy(cls->superclass);
1274 multiname_list_t*i = cls->interfaces;
1276 multiname_destroy(i->multiname);i->multiname=0;
1279 list_free(cls->interfaces);cls->interfaces=0;
1281 if(cls->protectedNS) {
1282 namespace_destroy(cls->protectedNS);
1286 array_free(file->classes);file->classes=0;
1288 for(t=0;t<file->scripts->num;t++) {
1289 abc_script_t*s = (abc_script_t*)array_getvalue(file->scripts, t);
1290 traits_free(s->traits);s->traits=0;
1293 array_free(file->scripts);file->scripts=0;
1295 for(t=0;t<file->method_bodies->num;t++) {
1296 abc_method_body_t*body = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
1297 code_free(body->code);body->code=0;
1298 traits_free(body->traits);body->traits=0;
1300 abc_exception_list_t*ee = body->exceptions;
1302 abc_exception_t*e=ee->abc_exception;ee->abc_exception=0;
1303 e->from = e->to = e->target = 0;
1304 multiname_destroy(e->exc_type);e->exc_type=0;
1305 multiname_destroy(e->var_name);e->var_name=0;
1309 list_free(body->exceptions);body->exceptions=0;
1313 array_free(file->method_bodies);file->method_bodies=0;
1316 free((void*)file->name);file->name=0;
1322 void swf_FreeABC(void*code)
1324 abc_file_t*file= (abc_file_t*)code;
1325 abc_file_free(file);