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 char* params_tostring(multiname_list_t*list)
46 int n = list_length(list);
47 char**names = (char**)malloc(sizeof(char*)*n);
53 names[n] = multiname_tostring(l->multiname);
54 size += strlen(names[n]) + 2;
58 char* params = malloc(size+15);
67 strcat(params, names[n]);
75 sprintf(num, "[%d params]", n);
76 strcat(params, num);*/
85 static void parse_metadata(TAG*tag, abc_file_t*file, pool_t*pool)
88 int num_metadata = swf_GetU30(tag);
90 DEBUG printf("%d metadata\n");
91 for(t=0;t<num_metadata;t++) {
92 const char*entry_name = pool_lookup_string(pool, swf_GetU30(tag));
93 int num = swf_GetU30(tag);
95 DEBUG printf(" %s\n", entry_name);
96 array_t*items = array_new();
98 int i1 = swf_GetU30(tag);
99 int i2 = swf_GetU30(tag);
100 char*key = i1?pool_lookup_string(pool, i1):"";
101 char*value = i2?pool_lookup_string(pool, i2):"";
102 DEBUG printf(" %s=%s\n", key, value);
103 array_append(items, key, strdup(value));
105 array_append(file->metadata, entry_name, items);
109 void swf_CopyData(TAG*to, TAG*from, int len)
111 unsigned char*data = malloc(len);
112 swf_GetBlock(from, data, len);
113 swf_SetBlock(to, data, len);
117 abc_file_t*abc_file_new()
119 abc_file_t*f = malloc(sizeof(abc_file_t));
120 memset(f, 0, sizeof(abc_file_t));
121 f->metadata = array_new();
123 f->methods = array_new();
124 f->classes = array_new();
125 f->scripts = array_new();
126 f->method_bodies = array_new();
127 f->flags = ABCFILE_LAZY;
132 abc_class_t* abc_class_new(abc_file_t*file, multiname_t*classname, multiname_t*superclass) {
135 array_append(file->classes, NO_KEY, c);
138 c->classname = multiname_clone(classname);
139 c->superclass = multiname_clone(superclass);
142 c->static_constructor = 0;
143 c->traits = list_new();
146 abc_class_t* abc_class_new2(abc_file_t*pool, char*classname, char*superclass)
148 return abc_class_new(pool, multiname_fromstring(classname), multiname_fromstring(superclass));
151 void abc_class_sealed(abc_class_t*c)
153 c->flags |= CLASS_SEALED;
155 void abc_class_final(abc_class_t*c)
157 c->flags |= CLASS_FINAL;
159 void abc_class_interface(abc_class_t*c)
161 c->flags |= CLASS_INTERFACE;
163 void abc_class_protectedNS(abc_class_t*c, char*namespace)
165 c->protectedNS = namespace_new_protected(namespace);
166 c->flags |= CLASS_PROTECTED_NS;
168 void abc_class_add_interface(abc_class_t*c, multiname_t*interface)
170 list_append(c->interfaces, multiname_clone(interface));
173 abc_method_body_t* add_method(abc_file_t*file, abc_class_t*cls, multiname_t*returntype, int num_params, va_list va)
175 /* construct code (method body) object */
176 NEW(abc_method_body_t,c);
177 array_append(file->method_bodies, NO_KEY, c);
178 c->index = array_length(file->method_bodies);
180 c->traits = list_new();
183 /* construct method object */
185 m->index = array_length(file->methods);
186 array_append(file->methods, NO_KEY, m);
188 m->return_type = returntype;
191 for(t=0;t<num_params;t++) {
192 const char*param = va_arg(va, const char*);
193 list_append(m->parameters, multiname_fromstring(param));
196 /* crosslink the two objects */
203 abc_method_body_t* abc_class_constructor(abc_class_t*cls, multiname_t*returntype, int num_params, ...)
206 va_start(va, num_params);
207 abc_method_body_t* c = add_method(cls->file, cls, returntype, num_params, va);
209 cls->constructor = c->method;
213 abc_method_body_t* abc_class_staticconstructor(abc_class_t*cls, multiname_t*returntype, int num_params, ...)
216 va_start(va, num_params);
217 abc_method_body_t* c = add_method(cls->file, cls, returntype, num_params, va);
219 cls->static_constructor = c->method;
223 trait_t*trait_new(int type, multiname_t*name, int data1, int data2, constant_t*v)
225 trait_t*trait = malloc(sizeof(trait_t));
226 memset(trait, 0, sizeof(trait_t));
227 trait->kind = type&0x0f;
228 trait->attributes = type&0xf0;
230 trait->data1 = data1;
231 trait->data2 = data2;
235 trait_t*trait_new_member(multiname_t*type, multiname_t*name,constant_t*v)
237 int kind = TRAIT_SLOT;
238 trait_t*trait = malloc(sizeof(trait_t));
239 memset(trait, 0, sizeof(trait_t));
240 trait->kind = kind&0x0f;
241 trait->attributes = kind&0xf0;
243 trait->type_name = type;
246 trait_t*trait_new_method(multiname_t*name, abc_method_t*m)
248 int type = TRAIT_METHOD;
249 trait_t*trait = malloc(sizeof(trait_t));
250 memset(trait, 0, sizeof(trait_t));
251 trait->kind = type&0x0f;
252 trait->attributes = type&0xf0;
258 abc_method_body_t* abc_class_method(abc_class_t*cls, multiname_t*returntype, char*name, int num_params, ...)
260 abc_file_t*file = cls->file;
262 va_start(va, num_params);
263 abc_method_body_t* c = add_method(cls->file, cls, returntype, num_params, va);
265 trait_t*t = trait_new_method(multiname_fromstring(name), c->method);
266 c->method->trait = t;
267 /* start assigning traits at position #1.
268 Weird things happen when assigning slot 0- slot 0 and 1 seem
270 t->slot_id = list_length(cls->traits)+1;
271 list_append(cls->traits, t);
275 trait_t* abc_class_slot(abc_class_t*cls, char*name, multiname_t*type)
277 abc_file_t*file = cls->file;
278 multiname_t*m_name = multiname_fromstring(name);
279 multiname_t*m_type = multiname_clone(type);
280 trait_t*t = trait_new_member(m_type, m_name, 0);
281 t->slot_id = list_length(cls->traits)+1;
282 list_append(cls->traits, t);
286 trait_t* abc_class_find_slotid(abc_class_t*cls, int slotid)
290 for(l=cls->traits;l;l=l->next) {
291 if(l->trait->slot_id==slotid) {
299 void abc_method_body_addClassTrait(abc_method_body_t*code, char*multiname, int slotid, abc_class_t*cls)
301 abc_file_t*file = code->file;
302 multiname_t*m = multiname_fromstring(multiname);
303 trait_t*trait = trait_new(TRAIT_CLASS, m, slotid, 0, 0);
305 list_append(code->traits, trait);
308 /* notice: traits of a method (body) belonging to an init script
309 and traits of the init script are *not* the same thing */
310 int abc_initscript_addClassTrait(abc_script_t*script, multiname_t*multiname, abc_class_t*cls)
312 abc_file_t*file = script->file;
313 multiname_t*m = multiname_clone(multiname);
314 int slotid = list_length(script->traits)+1;
315 trait_t*trait = trait_new(TRAIT_CLASS, m, slotid, 0, 0);
317 list_append(script->traits, trait);
321 abc_script_t* abc_initscript(abc_file_t*file, multiname_t*returntype, int num_params, ...)
324 va_start(va, num_params);
325 abc_method_body_t* c = add_method(file, 0, returntype, num_params, va);
326 abc_script_t* s = malloc(sizeof(abc_script_t));
327 s->method = c->method;
328 s->traits = list_new();
330 array_append(file->scripts, NO_KEY, s);
335 static void traits_dump(FILE*fo, const char*prefix, trait_list_t*traits, abc_file_t*file);
337 static void dump_method(FILE*fo, const char*prefix, const char*type, const char*name, abc_method_t*m, abc_file_t*file)
339 char*return_type = 0;
341 return_type = multiname_tostring(m->return_type);
343 return_type = strdup("void");
344 char*paramstr = params_tostring(m->parameters);
345 fprintf(fo, "%s%s %s %s=%s %s (%d params)\n", prefix, type, return_type, name, m->name, paramstr, list_length(m->parameters));
346 free(paramstr);paramstr=0;
347 free(return_type);return_type=0;
349 abc_method_body_t*c = m->body;
354 fprintf(fo, "%s[stack:%d locals:%d scope:%d-%d flags:",
355 prefix, c->old.max_stack, c->old.local_count, c->old.init_scope_depth,
356 c->old.max_scope_depth);
359 int flags = c->method->flags;
360 if(flags&METHOD_NEED_ARGUMENTS) {fprintf(fo, " need_arguments");flags&=~METHOD_NEED_ARGUMENTS;}
361 if(flags&METHOD_NEED_ACTIVATION) {fprintf(fo, " need_activation");flags&=~METHOD_NEED_ACTIVATION;}
362 if(flags&METHOD_NEED_REST) {fprintf(fo, " need_rest");flags&=~METHOD_NEED_REST;}
363 if(flags&METHOD_HAS_OPTIONAL) {fprintf(fo, " has_optional");flags&=~METHOD_HAS_OPTIONAL;}
364 if(flags&METHOD_SET_DXNS) {fprintf(fo, " set_dxns");flags&=~METHOD_SET_DXNS;}
365 if(flags&METHOD_HAS_PARAM_NAMES) {fprintf(fo, " has_param_names");flags&=~METHOD_HAS_PARAM_NAMES;}
366 if(flags) fprintf(fo, " %02x", flags);
370 fprintf(fo, " slot:%d", m->trait->slot_id);
376 sprintf(prefix2, "%s ", prefix);
378 traits_dump(fo, prefix, c->traits, file);
379 fprintf(fo, "%s{\n", prefix);
380 code_dump(c->code, c->exceptions, file, prefix2, fo);
381 fprintf(fo, "%s}\n\n", prefix);
384 static void traits_free(trait_list_t*traits)
386 trait_list_t*t = traits;
389 multiname_destroy(t->trait->name);t->trait->name = 0;
391 if(t->trait->kind == TRAIT_SLOT || t->trait->kind == TRAIT_CONST) {
392 multiname_destroy(t->trait->type_name);
394 if(t->trait->value) {
395 constant_free(t->trait->value);t->trait->value = 0;
397 free(t->trait);t->trait = 0;
403 static char trait_is_method(trait_t*trait)
405 return (trait->kind == TRAIT_METHOD || trait->kind == TRAIT_GETTER ||
406 trait->kind == TRAIT_SETTER || trait->kind == TRAIT_FUNCTION);
409 static trait_list_t* traits_parse(TAG*tag, pool_t*pool, abc_file_t*file)
411 int num_traits = swf_GetU30(tag);
412 trait_list_t*traits = list_new();
415 DEBUG printf("%d traits\n", num_traits);
418 for(t=0;t<num_traits;t++) {
420 list_append(traits, trait);
422 trait->name = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag))); // always a QName (ns,name)
425 DEBUG name = multiname_tostring(trait->name);
426 U8 kind = swf_GetU8(tag);
427 U8 attributes = kind&0xf0;
430 trait->attributes = attributes;
431 DEBUG printf(" trait %d) %s type=%02x\n", t, name, kind);
432 if(kind == TRAIT_METHOD || kind == TRAIT_GETTER || kind == TRAIT_SETTER) { // method / getter / setter
433 trait->disp_id = swf_GetU30(tag);
434 trait->method = (abc_method_t*)array_getvalue(file->methods, swf_GetU30(tag));
435 trait->method->trait = trait;
436 DEBUG printf(" method/getter/setter\n");
437 } else if(kind == TRAIT_FUNCTION) { // function
438 trait->slot_id = swf_GetU30(tag);
439 trait->method = (abc_method_t*)array_getvalue(file->methods, swf_GetU30(tag));
440 trait->method->trait = trait;
441 } else if(kind == TRAIT_CLASS) { // class
442 trait->slot_id = swf_GetU30(tag);
443 trait->cls = (abc_class_t*)array_getvalue(file->classes, swf_GetU30(tag));
444 DEBUG printf(" class %s %d %d\n", name, trait->slot_id, trait->cls);
445 } else if(kind == TRAIT_SLOT || kind == TRAIT_CONST) { // slot, const
446 /* a slot is a variable in a class that is shared amonst all instances
447 of the same type, but which has a unique location in each object
448 (in other words, slots are non-static, traits are static)
450 trait->slot_id = swf_GetU30(tag);
451 trait->type_name = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag)));
452 int vindex = swf_GetU30(tag);
454 int vkind = swf_GetU8(tag);
455 trait->value = constant_fromindex(pool, vindex, vkind);
457 DEBUG printf(" slot %s %d %s (%s)\n", name, trait->slot_id, trait->type_name->name, constant_tostring(trait->value));
459 fprintf(stderr, "Can't parse trait type %d\n", kind);
461 if(attributes&0x40) {
462 int num = swf_GetU30(tag);
465 swf_GetU30(tag); //index into metadata array
472 void traits_skip(TAG*tag)
474 int num_traits = swf_GetU30(tag);
476 for(t=0;t<num_traits;t++) {
478 U8 kind = swf_GetU8(tag);
479 U8 attributes = kind&0xf0;
483 if(kind == TRAIT_SLOT || kind == TRAIT_CONST) {
484 if(swf_GetU30(tag)) swf_GetU8(tag);
485 } else if(kind>TRAIT_CONST) {
486 fprintf(stderr, "Can't parse trait type %d\n", kind);
488 if(attributes&0x40) {
489 int s, num = swf_GetU30(tag);
490 for(s=0;s<num;s++) swf_GetU30(tag);
496 static void traits_write(pool_t*pool, TAG*tag, trait_list_t*traits)
502 swf_SetU30(tag, list_length(traits));
506 trait_t*trait = traits->trait;
508 swf_SetU30(tag, pool_register_multiname(pool, trait->name));
509 swf_SetU8(tag, trait->kind|trait->attributes);
511 swf_SetU30(tag, trait->data1);
513 if(trait->kind == TRAIT_CLASS) {
514 swf_SetU30(tag, trait->cls->index);
515 } else if(trait->kind == TRAIT_GETTER ||
516 trait->kind == TRAIT_SETTER ||
517 trait->kind == TRAIT_METHOD) {
518 swf_SetU30(tag, trait->method->index);
519 } else if(trait->kind == TRAIT_SLOT ||
520 trait->kind == TRAIT_CONST) {
521 int index = pool_register_multiname(pool, trait->type_name);
522 swf_SetU30(tag, index);
524 swf_SetU30(tag, trait->data2);
527 if(trait->kind == TRAIT_SLOT || trait->kind == TRAIT_CONST) {
528 int vindex = constant_get_index(pool, trait->value);
529 swf_SetU30(tag, vindex);
531 swf_SetU8(tag, trait->value->type);
534 if(trait->attributes&0x40) {
538 traits = traits->next;
543 static void traits_dump(FILE*fo, const char*prefix, trait_list_t*traits, abc_file_t*file)
547 trait_t*trait = traits->trait;
548 char*name = multiname_tostring(trait->name);
549 U8 kind = trait->kind;
550 U8 attributes = trait->attributes;
551 if(kind == TRAIT_METHOD) {
552 abc_method_t*m = trait->method;
553 dump_method(fo, prefix, "method", name, m, file);
554 } else if(kind == TRAIT_GETTER) {
555 abc_method_t*m = trait->method;
556 dump_method(fo, prefix, "getter", name, m, file);
557 } else if(kind == TRAIT_SETTER) {
558 abc_method_t*m = trait->method;
559 dump_method(fo, prefix, "setter", name, m, file);
560 } else if(kind == TRAIT_FUNCTION) { // function
561 abc_method_t*m = trait->method;
562 dump_method(fo, prefix, "function", name, m, file);
563 } else if(kind == TRAIT_CLASS) { // class
564 abc_class_t*cls = trait->cls;
566 fprintf(fo, "%sslot %d: class %s=00000000\n", prefix, trait->slot_id, name);
568 fprintf(fo, "%sslot %d: class %s=%s\n", prefix, trait->slot_id, name, cls->classname->name);
570 } else if(kind == TRAIT_SLOT || kind == TRAIT_CONST) { // slot, const
571 int slot_id = trait->slot_id;
572 char*type_name = multiname_tostring(trait->type_name);
573 char*value = constant_tostring(trait->value);
574 fprintf(fo, "%sslot %d: %s%s %s %s %s\n", prefix, trait->slot_id,
575 kind==TRAIT_CONST?"const ":"", type_name, name,
576 value?"=":"", value);
577 if(value) free(value);
580 fprintf(fo, "%s can't dump trait type %d\n", prefix, kind);
587 void* swf_DumpABC(FILE*fo, void*code, char*prefix)
589 abc_file_t* file = (abc_file_t*)code;
592 fprintf(fo, "%s#\n", prefix);
593 fprintf(fo, "%s#name: %s\n", prefix, file->name);
594 fprintf(fo, "%s#\n", prefix);
598 for(t=0;t<file->metadata->num;t++) {
599 const char*entry_name = array_getkey(file->metadata, t);
600 fprintf(fo, "%s#Metadata \"%s\":\n", prefix, entry_name);
602 array_t*items = (array_t*)array_getvalue(file->metadata, t);
603 for(s=0;s<items->num;s++) {
604 fprintf(fo, "%s# %s=%s\n", prefix, array_getkey(items, s), array_getvalue(items,s));
606 fprintf(fo, "%s#\n", prefix);
609 for(t=0;t<file->classes->num;t++) {
610 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
612 sprintf(prefix2, "%s ", prefix);
614 fprintf(fo, "%s", prefix);
615 if(cls->flags&1) fprintf(fo, "sealed ");
616 if(cls->flags&2) fprintf(fo, "final ");
617 if(cls->flags&4) fprintf(fo, "interface ");
619 char*s = namespace_tostring(cls->protectedNS);
620 fprintf(fo, "protectedNS(%s) ", s);
624 char*classname = multiname_tostring(cls->classname);
625 fprintf(fo, "class %s", classname);
627 if(cls->superclass) {
628 char*supername = multiname_tostring(cls->superclass);
629 fprintf(fo, " extends %s", supername);
631 multiname_list_t*ilist = cls->interfaces;
633 fprintf(fo, " implements");
635 char*s = multiname_tostring(ilist->multiname);
636 fprintf(fo, " %s", s);
643 fprintf(fo, "extra flags=%02x\n", cls->flags&0xf0);
644 fprintf(fo, "%s{\n", prefix);
646 if(cls->static_constructor)
647 dump_method(fo, prefix2,"staticconstructor", "", cls->static_constructor, file);
648 traits_dump(fo, prefix2, cls->static_traits, file);
650 char*n = multiname_tostring(cls->classname);
652 dump_method(fo, prefix2, "constructor", n, cls->constructor, file);
654 traits_dump(fo, prefix2,cls->traits, file);
655 fprintf(fo, "%s}\n", prefix);
658 fprintf(fo, "%s\n", prefix);
660 for(t=0;t<file->scripts->num;t++) {
661 abc_script_t*s = (abc_script_t*)array_getvalue(file->scripts, t);
662 dump_method(fo, prefix,"initmethod", "init", s->method, file);
663 traits_dump(fo, prefix, s->traits, file);
668 void* swf_ReadABC(TAG*tag)
670 abc_file_t* file = abc_file_new();
671 pool_t*pool = pool_new();
673 swf_SetTagPos(tag, 0);
675 if(tag->id == ST_DOABC) {
676 U32 abcflags = swf_GetU32(tag);
677 DEBUG printf("flags=%08x\n", abcflags);
678 char*name= swf_GetString(tag);
679 file->name = (name&&name[0])?strdup(name):0;
681 U32 version = swf_GetU32(tag);
682 if(version!=0x002e0010) {
683 fprintf(stderr, "Warning: unknown AVM2 version %08x\n", version);
686 pool_read(pool, tag);
688 int num_methods = swf_GetU30(tag);
689 DEBUG printf("%d methods\n", num_methods);
690 for(t=0;t<num_methods;t++) {
692 int param_count = swf_GetU30(tag);
693 int return_type_index = swf_GetU30(tag);
694 if(return_type_index)
695 m->return_type = multiname_clone(pool_lookup_multiname(pool, return_type_index));
700 for(s=0;s<param_count;s++) {
701 int type_index = swf_GetU30(tag);
703 /* type_index might be 0, which probably means "..." (varargs) */
704 multiname_t*param = type_index?multiname_clone(pool_lookup_multiname(pool, type_index)):0;
705 list_append(m->parameters, param);
708 int namenr = swf_GetU30(tag);
710 m->name = strdup(pool_lookup_string(pool, namenr));
712 m->name = strdup("");
714 m->flags = swf_GetU8(tag);
716 DEBUG printf("method %d) %s %s flags=%02x\n", t, m->name, params_tostring(m->parameters), m->flags);
719 /* TODO optional parameters */
720 m->optional_parameters = list_new();
721 int num = swf_GetU30(tag);
724 int vindex = swf_GetU30(tag);
725 U8 vkind = swf_GetU8(tag); // specifies index type for "val"
726 constant_t*c = constant_fromindex(pool, vindex, vkind);
727 list_append(m->optional_parameters, c);
731 /* debug information- not used by avm2 */
732 multiname_list_t*l = m->parameters;
734 char*name = pool_lookup_string(pool, swf_GetU30(tag));
738 m->index = array_length(file->methods);
739 array_append(file->methods, NO_KEY, m);
742 parse_metadata(tag, file, pool);
744 /* skip classes, and scripts for now, and do the real parsing later */
745 int num_classes = swf_GetU30(tag);
746 int classes_pos = tag->pos;
747 DEBUG printf("%d classes\n", num_classes);
748 for(t=0;t<num_classes;t++) {
749 abc_class_t*cls = malloc(sizeof(abc_class_t));
750 memset(cls, 0, sizeof(abc_class_t));
752 swf_GetU30(tag); //classname
753 swf_GetU30(tag); //supername
755 array_append(file->classes, NO_KEY, cls);
757 cls->flags = swf_GetU8(tag);
758 DEBUG printf("class %d %02x\n", t, cls->flags);
760 swf_GetU30(tag); //protectedNS
762 int inum = swf_GetU30(tag); //interface count
764 for(s=0;s<inum;s++) {
765 int interface_index = swf_GetU30(tag);
766 multiname_t* m = multiname_clone(pool_lookup_multiname(pool, interface_index));
767 list_append(cls->interfaces, m);
768 DEBUG printf(" class %d interface: %s\n", t, m->name);
771 int iinit = swf_GetU30(tag); //iinit
772 DEBUG printf("--iinit-->%d\n", iinit);
775 for(t=0;t<num_classes;t++) {
776 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
777 int cinit = swf_GetU30(tag);
778 DEBUG printf("--cinit(%d)-->%d\n", t, cinit);
779 cls->static_constructor = (abc_method_t*)array_getvalue(file->methods, cinit);
782 int num_scripts = swf_GetU30(tag);
783 DEBUG printf("%d scripts\n", num_scripts);
784 for(t=0;t<num_scripts;t++) {
785 int init = swf_GetU30(tag);
789 int num_method_bodies = swf_GetU30(tag);
790 DEBUG printf("%d method bodies\n", num_method_bodies);
791 for(t=0;t<num_method_bodies;t++) {
792 int methodnr = swf_GetU30(tag);
793 if(methodnr >= file->methods->num) {
794 printf("Invalid method number: %d\n", methodnr);
797 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, methodnr);
798 abc_method_body_t*c = malloc(sizeof(abc_method_body_t));
799 memset(c, 0, sizeof(abc_method_body_t));
800 c->old.max_stack = swf_GetU30(tag);
801 c->old.local_count = swf_GetU30(tag);
802 c->old.init_scope_depth = swf_GetU30(tag);
803 c->old.max_scope_depth = swf_GetU30(tag);
805 c->init_scope_depth = c->old.init_scope_depth;
806 int code_length = swf_GetU30(tag);
811 int pos = tag->pos + code_length;
812 codelookup_t*codelookup = 0;
813 c->code = code_parse(tag, code_length, file, pool, &codelookup);
816 int exception_count = swf_GetU30(tag);
818 c->exceptions = list_new();
819 for(s=0;s<exception_count;s++) {
820 abc_exception_t*e = malloc(sizeof(abc_exception_t));
822 e->from = code_atposition(codelookup, swf_GetU30(tag));
823 e->to = code_atposition(codelookup, swf_GetU30(tag));
824 e->target = code_atposition(codelookup, swf_GetU30(tag));
826 e->exc_type = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag)));
827 e->var_name = multiname_clone(pool_lookup_multiname(pool, swf_GetU30(tag)));
828 //e->var_name = pool_lookup_string(pool, swf_GetU30(tag));
829 //if(e->var_name) e->var_name = strdup(e->var_name);
830 list_append(c->exceptions, e);
832 codelookup_free(codelookup);
833 c->traits = traits_parse(tag, pool, file);
835 DEBUG printf("method_body %d) (method %d), %d bytes of code\n", t, methodnr, code_length);
837 array_append(file->method_bodies, NO_KEY, c);
839 if(tag->len - tag->pos) {
840 fprintf(stderr, "%d unparsed bytes remaining in ABC block\n", tag->len - tag->pos);
844 swf_SetTagPos(tag, classes_pos);
845 for(t=0;t<num_classes;t++) {
846 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
848 int classname_index = swf_GetU30(tag);
849 int superclass_index = swf_GetU30(tag);
850 cls->classname = multiname_clone(pool_lookup_multiname(pool, classname_index));
851 cls->superclass = multiname_clone(pool_lookup_multiname(pool, superclass_index));
852 cls->flags = swf_GetU8(tag);
855 int ns_index = swf_GetU30(tag);
856 cls->protectedNS = namespace_clone(pool_lookup_namespace(pool, ns_index));
859 int num_interfaces = swf_GetU30(tag); //interface count
861 for(s=0;s<num_interfaces;s++) {
864 int iinit = swf_GetU30(tag);
865 cls->constructor = (abc_method_t*)array_getvalue(file->methods, iinit);
866 cls->traits = traits_parse(tag, pool, file);
868 for(t=0;t<num_classes;t++) {
869 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
871 swf_GetU30(tag); // cindex
872 cls->static_traits = traits_parse(tag, pool, file);
874 int num_scripts2 = swf_GetU30(tag);
875 for(t=0;t<num_scripts2;t++) {
876 int init = swf_GetU30(tag);
877 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, init);
879 abc_script_t*s = malloc(sizeof(abc_script_t));
880 memset(s, 0, sizeof(abc_script_t));
882 s->traits = traits_parse(tag, pool, file);
883 array_append(file->scripts, NO_KEY, s);
890 void swf_WriteABC(TAG*abctag, void*code)
892 abc_file_t*file = (abc_file_t*)code;
893 pool_t*pool = pool_new();
895 TAG*tmp = swf_InsertTag(0,0);
899 /* add method bodies where needed */
900 for(t=0;t<file->classes->num;t++) {
901 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
902 if(!c->constructor) {
903 if(!(c->flags&CLASS_INTERFACE)) {
904 NEW(abc_method_t,m);array_append(file->methods, NO_KEY, m);
905 NEW(abc_method_body_t,body);array_append(file->method_bodies, NO_KEY, body);
906 // don't bother to set m->index
907 body->method = m; m->body = body;
911 NEW(abc_method_t,m);array_append(file->methods, NO_KEY, m);
915 if(!c->static_constructor) {
916 NEW(abc_method_t,m);array_append(file->methods, NO_KEY, m);
917 NEW(abc_method_body_t,body);array_append(file->method_bodies, NO_KEY, body);
918 body->method = m; m->body = body;
920 c->static_constructor = m;
925 swf_SetU30(tag, file->methods->num);
926 /* enumerate classes, methods and method bodies */
927 for(t=0;t<file->methods->num;t++) {
928 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, t);
931 for(t=0;t<file->classes->num;t++) {
932 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
935 for(t=0;t<file->method_bodies->num;t++) {
936 abc_method_body_t*m = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
940 /* generate code statistics */
941 for(t=0;t<file->method_bodies->num;t++) {
942 abc_method_body_t*m = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
943 m->stats = code_get_statistics(m->code, m->exceptions);
946 /* level init scope depths: The init scope depth of a method is
947 always as least as high as the init scope depth of it's surrounding
949 A method has it's own init_scope_depth if it's an init method
950 (then its init scope depth is zero), or if it's used as a closure.
952 Not sure yet what to do with methods which are used at different
953 locations- e.g. the nullmethod is used all over the place.
954 EDIT: flashplayer doesn't allow this anyway- a method can only
957 Also, I have the strong suspicion that flash player uses only
958 the difference between max_scope_stack and init_scope_stack, anyway.
960 for(t=0;t<file->classes->num;t++) {
961 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
962 trait_list_t*traits = c->traits;
963 if(c->constructor && c->constructor->body &&
964 c->constructor->body->init_scope_depth < c->init_scope_depth) {
965 c->constructor->body->init_scope_depth = c->init_scope_depth;
967 if(c->static_constructor && c->static_constructor->body &&
968 c->static_constructor->body->init_scope_depth < c->init_scope_depth) {
969 c->static_constructor->body->init_scope_depth = c->init_scope_depth;
972 trait_t*trait = traits->trait;
973 if(trait_is_method(trait) && trait->method->body) {
974 abc_method_body_t*body = trait->method->body;
975 if(body->init_scope_depth < c->init_scope_depth) {
976 body->init_scope_depth = c->init_scope_depth;
979 traits = traits->next;
983 for(t=0;t<file->methods->num;t++) {
984 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, t);
986 multiname_list_t*l = m->parameters;
987 int num_params = list_length(m->parameters);
988 swf_SetU30(tag, num_params);
990 swf_SetU30(tag, pool_register_multiname(pool, m->return_type));
995 swf_SetU30(tag, pool_register_multiname(pool, l->multiname));
999 swf_SetU30(tag, pool_register_string(pool, m->name));
1004 U8 flags = m->flags&(METHOD_NEED_REST|METHOD_NEED_ARGUMENTS);
1005 if(m->optional_parameters)
1006 flags |= METHOD_HAS_OPTIONAL;
1008 flags |= m->body->stats->flags;
1011 swf_SetU8(tag, flags);
1012 if(flags&METHOD_HAS_OPTIONAL) {
1013 swf_SetU30(tag, list_length(m->optional_parameters));
1014 constant_list_t*l = m->optional_parameters;
1016 swf_SetU30(tag, constant_get_index(pool, l->constant));
1017 swf_SetU8(tag, l->constant->type);
1023 /* write metadata */
1024 swf_SetU30(tag, file->metadata->num);
1025 for(t=0;t<file->metadata->num;t++) {
1026 const char*entry_name = array_getkey(file->metadata, t);
1027 swf_SetU30(tag, pool_register_string(pool, entry_name));
1028 array_t*items = (array_t*)array_getvalue(file->metadata, t);
1029 swf_SetU30(tag, items->num);
1031 for(s=0;s<items->num;s++) {
1032 int i1 = pool_register_string(pool, array_getkey(items, s));
1033 int i2 = pool_register_string(pool, array_getvalue(items, s));
1034 swf_SetU30(tag, i1);
1035 swf_SetU30(tag, i2);
1039 swf_SetU30(tag, file->classes->num);
1040 for(t=0;t<file->classes->num;t++) {
1041 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
1043 int classname_index = pool_register_multiname(pool, c->classname);
1044 int superclass_index = pool_register_multiname(pool, c->superclass);
1046 swf_SetU30(tag, classname_index);
1047 swf_SetU30(tag, superclass_index);
1049 swf_SetU8(tag, c->flags); // flags
1051 int ns_index = pool_register_namespace(pool, c->protectedNS);
1052 swf_SetU30(tag, ns_index);
1055 swf_SetU30(tag, list_length(c->interfaces));
1056 multiname_list_t*interface= c->interfaces;
1058 swf_SetU30(tag, pool_register_multiname(pool, interface->multiname));
1059 interface = interface->next;
1062 assert(c->constructor);
1063 swf_SetU30(tag, c->constructor->index);
1065 traits_write(pool, tag, c->traits);
1067 for(t=0;t<file->classes->num;t++) {
1068 abc_class_t*c = (abc_class_t*)array_getvalue(file->classes, t);
1069 assert(c->static_constructor);
1070 swf_SetU30(tag, c->static_constructor->index);
1072 traits_write(pool, tag, c->static_traits);
1075 swf_SetU30(tag, file->scripts->num);
1076 for(t=0;t<file->scripts->num;t++) {
1077 abc_script_t*s = (abc_script_t*)array_getvalue(file->scripts, t);
1078 swf_SetU30(tag, s->method->index); //!=t!
1079 traits_write(pool, tag, s->traits);
1082 swf_SetU30(tag, file->method_bodies->num);
1083 for(t=0;t<file->method_bodies->num;t++) {
1084 abc_method_body_t*c = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
1085 abc_method_t*m = c->method;
1086 swf_SetU30(tag, m->index);
1088 //swf_SetU30(tag, c->old.max_stack);
1089 //swf_SetU30(tag, c->old.local_count);
1090 //swf_SetU30(tag, c->old.init_scope_depth);
1091 //swf_SetU30(tag, c->old.max_scope_depth);
1093 swf_SetU30(tag, c->stats->max_stack);
1095 int param_num = list_length(c->method->parameters)+1;
1096 if(c->method->flags&METHOD_NEED_REST)
1098 if(param_num <= c->stats->local_count)
1099 swf_SetU30(tag, c->stats->local_count);
1101 swf_SetU30(tag, param_num);
1103 swf_SetU30(tag, c->init_scope_depth);
1104 swf_SetU30(tag, c->stats->max_scope_depth+
1105 c->init_scope_depth);
1107 code_write(tag, c->code, pool, file);
1109 swf_SetU30(tag, list_length(c->exceptions));
1110 abc_exception_list_t*l = c->exceptions;
1112 // warning: assumes "pos" in each code_t is up-to-date
1113 swf_SetU30(tag, l->abc_exception->from->pos);
1114 swf_SetU30(tag, l->abc_exception->to->pos);
1115 swf_SetU30(tag, l->abc_exception->target->pos);
1116 swf_SetU30(tag, pool_register_multiname(pool, l->abc_exception->exc_type));
1117 swf_SetU30(tag, pool_register_multiname(pool, l->abc_exception->var_name));
1121 traits_write(pool, tag, c->traits);
1124 /* free temporary codestat data again. Notice: If we were to write this
1125 file multiple times, this can also be shifted to abc_file_free() */
1126 for(t=0;t<file->method_bodies->num;t++) {
1127 abc_method_body_t*m = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
1128 codestats_free(m->stats);m->stats=0;
1131 // --- start to write real tag --
1135 if(tag->id == ST_DOABC) {
1136 swf_SetU32(tag, file->flags); // flags
1137 swf_SetString(tag, file->name);
1140 swf_SetU16(tag, 0x10); //version
1141 swf_SetU16(tag, 0x2e);
1143 pool_write(pool, tag);
1145 swf_SetBlock(tag, tmp->data, tmp->len);
1147 swf_DeleteTag(0, tmp);
1151 void abc_file_free(abc_file_t*file)
1154 if(file->metadata) {
1155 for(t=0;t<file->metadata->num;t++) {
1156 array_t*items = (array_t*)array_getvalue(file->metadata, t);
1158 for(s=0;s<items->num;s++) {
1159 free(array_getvalue(items, s));
1163 array_free(file->metadata);file->metadata=0;
1166 for(t=0;t<file->methods->num;t++) {
1167 abc_method_t*m = (abc_method_t*)array_getvalue(file->methods, t);
1169 multiname_list_t*param = m->parameters;
1171 multiname_destroy(param->multiname);param->multiname=0;
1172 param = param->next;
1174 list_free(m->parameters);m->parameters=0;
1176 constant_list_t*opt = m->optional_parameters;
1178 constant_free(opt->constant);opt->constant=0;
1181 list_free(m->optional_parameters);m->optional_parameters=0;
1184 free((void*)m->name);m->name=0;
1186 if(m->return_type) {
1187 multiname_destroy(m->return_type);
1191 array_free(file->methods);file->methods=0;
1193 for(t=0;t<file->classes->num;t++) {
1194 abc_class_t*cls = (abc_class_t*)array_getvalue(file->classes, t);
1195 traits_free(cls->traits);cls->traits=0;
1196 traits_free(cls->static_traits);cls->static_traits=0;
1198 if(cls->classname) {
1199 multiname_destroy(cls->classname);
1201 if(cls->superclass) {
1202 multiname_destroy(cls->superclass);
1205 multiname_list_t*i = cls->interfaces;
1207 multiname_destroy(i->multiname);i->multiname=0;
1210 list_free(cls->interfaces);cls->interfaces=0;
1212 if(cls->protectedNS) {
1213 namespace_destroy(cls->protectedNS);
1217 array_free(file->classes);file->classes=0;
1219 for(t=0;t<file->scripts->num;t++) {
1220 abc_script_t*s = (abc_script_t*)array_getvalue(file->scripts, t);
1221 traits_free(s->traits);s->traits=0;
1224 array_free(file->scripts);file->scripts=0;
1226 for(t=0;t<file->method_bodies->num;t++) {
1227 abc_method_body_t*body = (abc_method_body_t*)array_getvalue(file->method_bodies, t);
1228 code_free(body->code);body->code=0;
1229 traits_free(body->traits);body->traits=0;
1231 abc_exception_list_t*ee = body->exceptions;
1233 abc_exception_t*e=ee->abc_exception;ee->abc_exception=0;
1234 e->from = e->to = e->target = 0;
1235 multiname_destroy(e->exc_type);e->exc_type=0;
1236 multiname_destroy(e->var_name);e->var_name=0;
1240 list_free(body->exceptions);body->exceptions=0;
1244 array_free(file->method_bodies);file->method_bodies=0;
1247 free((void*)file->name);file->name=0;
1253 void swf_FreeABC(void*code)
1255 abc_file_t*file= (abc_file_t*)code;
1256 abc_file_free(file);
1259 void swf_AddButtonLinks(SWF*swf, char stop_each_frame, char events)
1262 int has_buttons = 0;
1263 TAG*tag=swf->firstTag;
1265 if(tag->id == ST_SHOWFRAME)
1267 if(tag->id == ST_DEFINEBUTTON || tag->id == ST_DEFINEBUTTON2)
1272 abc_file_t*file = abc_file_new();
1273 abc_method_body_t*c = 0;
1275 abc_class_t*cls = abc_class_new2(file, "rfx::MainTimeline", "flash.display::MovieClip");
1276 abc_class_protectedNS(cls, "rfx:MainTimeline");
1278 TAG*abctag = swf_InsertTagBefore(swf, swf->firstTag, ST_DOABC);
1280 tag = swf_InsertTag(abctag, ST_SYMBOLCLASS);
1283 swf_SetString(tag, "rfx.MainTimeline");
1285 c = abc_class_staticconstructor(cls, 0, 0);
1286 c->old.max_stack = 1;
1287 c->old.local_count = 1;
1288 c->old.init_scope_depth = 9;
1289 c->old.max_scope_depth = 10;
1295 c = abc_class_constructor(cls, 0, 0);
1296 c->old.max_stack = 3;
1297 c->old.local_count = 1;
1298 c->old.init_scope_depth = 10;
1299 c->old.max_scope_depth = 11;
1301 debugfile(c, "constructor.as");
1307 __ constructsuper(c,0);
1309 __ getlex(c, "[package]flash.system::Security");
1310 __ pushstring(c, "*");
1311 __ callpropvoid(c, "[package]::allowDomain", 1);
1313 if(stop_each_frame || has_buttons) {
1315 tag = swf->firstTag;
1316 abc_method_body_t*f = 0; //frame script
1317 while(tag && tag->id!=ST_END) {
1319 char needs_framescript=0;
1320 char buttonname[80];
1321 char functionname[80];
1322 sprintf(framename, "[packageinternal]rfx::frame%d", frame);
1324 if(!f && (tag->id == ST_DEFINEBUTTON || tag->id == ST_DEFINEBUTTON2 || stop_each_frame)) {
1325 /* make the contructor add a frame script */
1326 __ findpropstrict(c,"[package]::addFrameScript");
1327 __ pushbyte(c,frame);
1328 __ getlex(c,framename);
1329 __ callpropvoid(c,"[package]::addFrameScript",2);
1331 f = abc_class_method(cls, 0, framename, 0);
1332 f->old.max_stack = 3;
1333 f->old.local_count = 1;
1334 f->old.init_scope_depth = 10;
1335 f->old.max_scope_depth = 11;
1336 __ debugfile(f, "framescript.as");
1340 if(stop_each_frame) {
1341 __ findpropstrict(f, "[package]::stop");
1342 __ callpropvoid(f, "[package]::stop", 0);
1346 if(tag->id == ST_DEFINEBUTTON || tag->id == ST_DEFINEBUTTON2) {
1347 U16 id = swf_GetDefineID(tag);
1348 sprintf(buttonname, "::button%d", swf_GetDefineID(tag));
1349 __ getlex(f,buttonname);
1350 __ getlex(f,"flash.events::MouseEvent");
1351 __ getproperty(f, "::CLICK");
1352 sprintf(functionname, "::clickbutton%d", swf_GetDefineID(tag));
1353 __ getlex(f,functionname);
1354 __ callpropvoid(f, "::addEventListener" ,2);
1356 needs_framescript = 1;
1358 abc_method_body_t*h =
1359 abc_class_method(cls, 0, functionname, 1, "flash.events::MouseEvent");
1360 h->old.max_stack = 6;
1361 h->old.local_count = 2;
1362 h->old.init_scope_depth = 10;
1363 h->old.max_scope_depth = 11;
1367 ActionTAG*oldaction = swf_ButtonGetAction(tag);
1368 if(oldaction && oldaction->op == ACTION__GOTOFRAME) {
1369 int framenr = GET16(oldaction->data);
1371 fprintf(stderr, "Warning: Couldn't translate jump to frame %d to flash 9 actionscript\n", framenr);
1374 __ findpropstrict(h,"[package]::gotoAndStop");
1375 __ pushbyte(h,framenr+1);
1376 __ callpropvoid(h,"[package]::gotoAndStop", 1);
1379 sprintf(framename, "frame%d", framenr);
1380 __ getlocal_0(h); //this
1381 __ findpropstrict(h, "[package]flash.events::TextEvent");
1382 __ pushstring(h, "link");
1385 __ pushstring(h, framename);
1386 __ constructprop(h,"[package]flash.events::TextEvent", 4);
1387 __ callpropvoid(h,"[package]::dispatchEvent", 1);
1389 } else if(oldaction && oldaction->op == ACTION__GETURL) {
1391 __ findpropstrict(h,"flash.net::navigateToURL");
1392 __ findpropstrict(h,"flash.net::URLRequest");
1393 // TODO: target _blank
1394 __ pushstring(h,oldaction->data); //url
1395 __ constructprop(h,"flash.net::URLRequest", 1);
1396 __ callpropvoid(h,"flash.net::navigateToURL", 1);
1398 __ getlocal_0(h); //this
1399 __ findpropstrict(h, "[package]flash.events::TextEvent");
1400 __ pushstring(h, "link");
1403 __ pushstring(h,oldaction->data); //url
1404 __ constructprop(h,"[package]flash.events::TextEvent", 4);
1405 __ callpropvoid(h,"[package]::dispatchEvent", 1);
1407 } else if(oldaction) {
1408 fprintf(stderr, "Warning: Couldn't translate button code of button %d to flash 9 abc action\n", id);
1411 swf_ActionFree(oldaction);
1413 if(tag->id == ST_SHOWFRAME) {
1428 tag = swf->firstTag;
1430 if(tag->id == ST_DEFINEBUTTON || tag->id == ST_DEFINEBUTTON2) {
1431 char buttonname[80];
1432 sprintf(buttonname, "::button%d", swf_GetDefineID(tag));
1433 multiname_t*s = multiname_fromstring(buttonname);
1434 abc_class_slot(cls, buttonname, s);
1440 abc_script_t*s = abc_initscript(file, 0, 0);
1441 c = s->method->body;
1442 c->old.max_stack = 2;
1443 c->old.local_count = 1;
1444 c->old.init_scope_depth = 1;
1445 c->old.max_scope_depth = 9;
1449 __ getscopeobject(c, 0);
1450 __ getlex(c,"::Object");
1452 __ getlex(c,"flash.events::EventDispatcher");
1454 __ getlex(c,"flash.display::DisplayObject");
1456 __ getlex(c,"flash.display::InteractiveObject");
1458 __ getlex(c,"flash.display::DisplayObjectContainer");
1460 __ getlex(c,"flash.display::Sprite");
1462 __ getlex(c,"flash.display::MovieClip");
1464 __ getlex(c,"flash.display::MovieClip");
1473 __ initproperty(c,"rfx::MainTimeline");
1476 //abc_method_body_addClassTrait(c, "rfx:MainTimeline", 1, cls);
1477 multiname_t*classname = multiname_fromstring("rfx::MainTimeline");
1478 abc_initscript_addClassTrait(s, classname, cls);
1479 multiname_destroy(classname);
1481 swf_WriteABC(abctag, file);