]> git.draconx.ca Git - upkg.git/blob - src/upkg.c
upkg: Add some error checking around upkg_export_get_class.
[upkg.git] / src / upkg.c
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright © 2009-2011 Nick Bowler
4  *
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <config.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <errno.h>
24 #include <assert.h>
25 #include <getopt.h>
26
27 #include <glib-object.h>
28
29 #include "upkg.h"
30 #include <uobject/uobject.h>
31 #include <uobject/exportable.h>
32 #include <uobject/loadable.h>
33 #include <uobject/module.h>
34 #include <uobject/package.h>
35 #include <uobject/vfs.h>
36
37 enum {
38         MODE_INFO,
39         MODE_LIST,
40         MODE_EXPORT,
41         MODE_MAX
42 };
43
44 int verbose = 0;
45
46 static const char *progname = "upkg";
47 static const char *sopts = "ilxvf:VH";
48 static const struct option lopts[] = {
49         { "info",     0, NULL, 'i' },
50         { "list",     0, NULL, 'l' },
51         { "export",   0, NULL, 'x' },
52         { "file",     1, NULL, 'f' },
53         { "verbose",  0, NULL, 'v' },
54         { "version",  0, NULL, 'V' },
55         { "help",     0, NULL, 'H' },
56         { 0 }
57 };
58
59 void print_version(void)
60 {
61         printf("%s\n", PACKAGE_STRING);
62         puts("\
63 Copyright (C) 2009 Nick Bowler.\n\
64 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n\
65 This is free software: you are free to change and redistribute it.\n\
66 There is NO WARRANTY, to the extent permitted by law."
67         );
68 }
69
70 void print_usage(FILE *f)
71 {
72         fprintf(f, "Usage: %s [options] [object ...]\n", progname);
73 }
74
75 void print_help(void)
76 {
77         print_usage(stdout);
78         puts("Detailed help coming soon.  Until then, I'll just list my options.");
79         for (unsigned i = 0; lopts[i].name; i++) {
80                 const struct option *o = &lopts[i];
81                 printf("\t--%s", o->name);
82
83                 if (o->has_arg == 1) {
84                         printf("=val");
85                 } else if (o->has_arg == 2) {
86                         printf("[=val]");
87                 }
88
89                 printf(" (-%c)\n", o->val);
90         }
91 }
92
93 static void print_upkg_flags(const char *prefix, unsigned long flags)
94 {
95         if (flags & UPKG_FLAG_ALLOW_DOWNLOAD)
96                 printf("%sAllowDownload\n", prefix);
97         if (flags & UPKG_FLAG_CLIENT_OPTIONAL)
98                 printf("%sClientOptional\n", prefix);
99         if (flags & UPKG_FLAG_SERVER_ONLY)
100                 printf("%sServerOnly\n", prefix);
101         if (flags & UPKG_FLAG_BROKEN_LINKS)
102                 printf("%sBrokenLinks\n", prefix);
103         if (flags & UPKG_FLAG_INSECURE)
104                 printf("%sInsecure\n", prefix);
105         if (flags & UPKG_FLAG_REQUIRED)
106                 printf("%sRequired\n", prefix);
107 }
108
109 static void print_upkg_object_flags(const char *prefix, unsigned long flags)
110 {
111         if (flags & UPKG_OBJ_FLAG_TRANSACTIONAL)
112                 printf("%sTransactional\n", prefix);
113         if (flags & UPKG_OBJ_FLAG_UNREACHABLE)
114                 printf("%sUnreachable\n", prefix);
115         if (flags & UPKG_OBJ_FLAG_PUBLIC)
116                 printf("%sPublic\n", prefix);
117         if (flags & UPKG_OBJ_FLAG_TAG_IMPORT)
118                 printf("%sImport\n", prefix);
119         if (flags & UPKG_OBJ_FLAG_TAG_EXPORT)
120                 printf("%sTagExport\n", prefix);
121         if (flags & UPKG_OBJ_FLAG_SOURCE_MODIFIED)
122                 printf("%sSourceModified\n", prefix);
123         if (flags & UPKG_OBJ_FLAG_TAG_GARBAGE)
124                 printf("%sTagGarbage\n", prefix);
125         if (flags & UPKG_OBJ_FLAG_NEED_LOAD)
126                 printf("%sNeedLoad\n", prefix);
127         if (flags & UPKG_OBJ_FLAG_HIGHLIGHT_NAME)
128                 printf("%sHighlightName\n", prefix);
129         if (flags & UPKG_OBJ_FLAG_IN_SINGULAR_FUNC)
130                 printf("%sInSingularFunc\n", prefix);
131         if (flags & UPKG_OBJ_FLAG_SUPPRESSED)
132                 printf("%sSuppressed\n", prefix);
133         if (flags & UPKG_OBJ_FLAG_IN_END_STATE)
134                 printf("%sInEndState\n", prefix);
135         if (flags & UPKG_OBJ_FLAG_TRANSIENT)
136                 printf("%sTransient\n", prefix);
137         if (flags & UPKG_OBJ_FLAG_PRELOADING)
138                 printf("%sPreloading\n", prefix);
139         if (flags & UPKG_OBJ_FLAG_LOAD_FOR_CLIENT)
140                 printf("%sLoadForClient\n", prefix);
141         if (flags & UPKG_OBJ_FLAG_LOAD_FOR_SERVER)
142                 printf("%sLoadForServer\n", prefix);
143         if (flags & UPKG_OBJ_FLAG_LOAD_FOR_EDIT)
144                 printf("%sLoadForEdit\n", prefix);
145         if (flags & UPKG_OBJ_FLAG_STANDALONE)
146                 printf("%sStandalone\n", prefix);
147         if (flags & UPKG_OBJ_FLAG_NOT_FOR_CLIENT)
148                 printf("%sNotForClient\n", prefix);
149         if (flags & UPKG_OBJ_FLAG_NOT_FOR_SERVER)
150                 printf("%sNotForServer\n", prefix);
151         if (flags & UPKG_OBJ_FLAG_NOT_FOR_EDIT)
152                 printf("%sNotForEdit\n", prefix);
153         if (flags & UPKG_OBJ_FLAG_DESTROYED)
154                 printf("%sDestroyed\n", prefix);
155         if (flags & UPKG_OBJ_FLAG_NEED_POST_LOAD)
156                 printf("%sNeedPostLoad\n", prefix);
157         if (flags & UPKG_OBJ_FLAG_HAS_STACK)
158                 printf("%sHasStack\n", prefix);
159         if (flags & UPKG_OBJ_FLAG_NATIVE)
160                 printf("%sNative\n", prefix);
161         if (flags & UPKG_OBJ_FLAG_MARKED)
162                 printf("%sMarked\n", prefix);
163         if (flags & UPKG_OBJ_FLAG_ERROR_SHUTDOWN)
164                 printf("%sErrorShutdown\n", prefix);
165         if (flags & UPKG_OBJ_FLAG_DEBUG_POST_LOAD)
166                 printf("%sDebugPostLoad\n", prefix);
167         if (flags & UPKG_OBJ_FLAG_DEBUG_SERIALIZE)
168                 printf("%sDebugSerialize\n", prefix);
169         if (flags & UPKG_OBJ_FLAG_DEBUG_DESTROY)
170                 printf("%sDebugDestroy\n", prefix);
171 }
172
173 void print_guid(unsigned char guid[static 16])
174 {
175         for (unsigned i = 0; i < 16; i++) {
176                 printf("%02hhx", guid[i]);
177                 if (i == 15)
178                         putchar('\n');
179                 else
180                         putchar(' ');
181         }
182 }
183
184 static void export_print_name(const struct upkg_export *e)
185 {
186         if (e) {
187                 export_print_name(e->parent);
188                 printf(".%s", e->name);
189         }
190 }
191
192 static void
193 export_print_fullname(GTypeModule *pkg, const struct upkg_export *export)
194 {
195         printf("%s", pkg->name);
196         export_print_name(export);
197 }
198
199 static void import_print_fullname(const struct upkg_import *import)
200 {
201         if (import) {
202                 import_print_fullname(import->parent);
203                 if (import->parent)
204                         putchar('.');
205                 printf("%s", import->name);
206         }
207 }
208
209 void print_upkg_exports(struct upkg *pkg)
210 {
211         for (unsigned i = 0; i < pkg->export_count; i++) {
212                 const struct upkg_export *export = upkg_get_export(pkg, i);
213                 const char *package, *class;
214
215                 class = upkg_export_class(pkg, i, &package);
216
217                 if (!class)
218                         continue;
219
220                 printf("%u - %s (%s.%s)\n", i+1, export->name, package, class);
221                 printf("  Flags: %lx\n", export->flags);
222                 if (verbose >= 2) {
223                         print_upkg_object_flags("    ", export->flags);
224                 }
225         }
226 }
227
228 void print_upkg_imports(struct upkg *pkg)
229 {
230         for (unsigned i = 0; i < pkg->import_count; i++) {
231                 const struct upkg_import *import = upkg_get_import(pkg, i);
232
233                 printf("%u - ", i);
234                 import_print_fullname(import);
235                 printf(" (%s.%s)\n", import->class_package, import->class_name);
236         }
237 }
238
239 int package_info(struct upkg *pkg)
240 {
241         printf("Version: %u\n",  pkg->version);
242         printf("License: %u\n",  pkg->license);
243         printf("GUID: ");
244         print_guid(pkg->guid);
245
246         printf("Flags:   %lx\n", pkg->flags);
247         if (verbose >= 2) {
248                 print_upkg_flags("        ", pkg->flags);
249         }
250
251         printf("Names:   %lu\n", pkg->name_count);
252         if (verbose >= 3) {
253                 for (unsigned long i = 0; i < pkg->name_count; i++) {
254                         printf("%lu - %s\n", i, upkg_get_name(pkg, i));
255                 }
256         }
257
258         printf("Exports: %lu\n", pkg->export_count);
259         if (verbose >= 1) print_upkg_exports(pkg);
260         printf("Imports: %lu\n", pkg->import_count);
261         if (verbose >= 1) print_upkg_imports(pkg);
262
263         return 0;
264 }
265
266 static int package_list(GTypeModule *pkg, long current)
267 {
268         struct upkg *upkg = U_PKG(pkg)->pkg;
269         const struct upkg_export *parent = NULL;
270
271         if (current >= 0) {
272                 parent = upkg_get_export(upkg, current);
273                 assert(parent != NULL);
274         }
275
276         for (unsigned i = 0; i < upkg->export_count; i++) {
277                 const struct upkg_export *export = upkg_get_export(upkg, i);
278
279                 if (export->parent != parent)
280                         continue;
281
282                 export_print_fullname(pkg, export);
283
284                 if (verbose >= 1) {
285                         const char *class, *package;
286
287                         class = upkg_export_class(upkg, i, &package);
288                         printf(" (%s.%s)", package, class);
289                 }
290
291                 putchar('\n');
292         }
293
294         return 0;
295 }
296
297 static int object_dump_properties(GTypeModule *pkg, unsigned long idx)
298 {
299         GParamSpec **props;
300         GObject *obj;
301         unsigned n;
302
303         obj = u_object_new_from_package(pkg, idx);
304         if (!obj) {
305                 fprintf(stderr, "%s: failed to load object.\n", progname);
306                 return -1;
307         }
308
309         props = g_object_class_list_properties(G_OBJECT_GET_CLASS(obj), &n);
310         for (unsigned i = 0; i < n; i++) {
311                 GValue val = {0};
312                 char *valstr;
313
314                 printf("  property %s:", props[i]->name);
315                 fflush(stdout);
316
317                 g_value_init(&val, props[i]->value_type);
318                 g_object_get_property(obj, props[i]->name, &val);
319
320                 if (G_VALUE_HOLDS(&val, U_TYPE_OBJECT)) {
321                         UObject *obj = g_value_get_object(&val);
322
323                         if (obj && obj->pkg_name) {
324                                 printf(" %s", obj->pkg_name);
325                         }
326                 }
327
328                 valstr = g_strdup_value_contents(&val);
329                 printf(" %s\n", valstr);
330                 g_free(valstr);
331         }
332
333         g_free(props);
334         g_object_unref(obj);
335
336         return 0;
337 }
338
339 static int object_dump_offsets(GTypeModule *pkg, unsigned long idx)
340 {
341         struct upkg_file *f;
342
343         f = upkg_export_open(U_PKG(pkg)->pkg, idx);
344         if (!f) {
345                 fprintf(stderr, "%s: failed to open export.\n", progname);
346                 return -1;
347         }
348
349         printf("  file size: %lu\n", f->len);
350         printf("  file start: %#lx\n", f->base);
351         printf("  file end: %#lx\n", f->base + f->len);
352
353         upkg_export_close(f);
354
355         return 0;
356 }
357
358 static int object_info(GTypeModule *pkg, unsigned long idx)
359 {
360         struct upkg *upkg = U_PKG(pkg)->pkg;
361         const struct upkg_export *export;
362         const char *class, *package;
363         int ret = 0;
364
365         export = upkg_get_export(upkg, idx);
366         export_print_fullname(pkg, export);
367
368         class = upkg_export_class(upkg, idx, &package);
369         if (class)
370                 printf(" (%s.%s)\n", package, class);
371         else
372                 printf(" (failed to get class)\n");
373
374         if (verbose >= 1 && object_dump_properties(pkg, idx) != 0)
375                 ret = -1;
376
377         if (verbose >= 3 && object_dump_offsets(pkg, idx))
378                 ret = -1;
379
380         return ret;
381 }
382
383 static int export(GTypeModule *pkg, GObject *obj, unsigned idx)
384 {
385         struct upkg *upkg = U_PKG(pkg)->pkg;
386         char name[256];
387         FILE *of;
388         int rc;
389
390         if (U_OBJECT_IS_LOADABLE(obj) && u_object_load(obj) != 0) {
391                 fprintf(stderr, "%s: failed to load export data.\n", progname);
392                 return -1;
393         }
394
395         rc = u_object_export_name(obj, name, sizeof name);
396         if (rc <= 0) {
397                 /* XXX: We could use a default name here. */
398                 fprintf(stderr, "%s: failed to determine export filename.\n",
399                                 progname);
400                 return -1;
401         }
402
403         printf("exporting ");
404         export_print_fullname(pkg, upkg_get_export(upkg, idx));
405         printf(" to %s\n", name);
406
407         of = fopen(name, "wb");
408         if (!of) {
409                 perror(name);
410                 return -1;
411         }
412
413         u_object_export(obj, of);
414
415         if (fclose(of) != 0) {
416                 perror(name);
417                 return -1;
418         }
419
420         if (U_OBJECT_IS_LOADABLE(obj)) {
421                 u_object_unload(obj);
422         }
423
424         return 0;
425 }
426
427 static int object_export(GTypeModule *pkg, unsigned long idx)
428 {
429         GObject *obj;
430         int ret = -1;
431
432         obj = u_object_new_from_package(pkg, idx);
433         if (!obj) {
434                 fprintf(stderr, "%s: failed to load object.\n", progname);
435                 return -1;
436         }
437
438         if (!U_OBJECT_IS_EXPORTABLE(obj)) {
439                 fprintf(stderr, "%s: object is not exportable.\n", progname);
440                 goto out;
441         }
442
443         ret = export(pkg, obj, idx);
444 out:
445         g_object_unref(obj);
446         return ret;
447 }
448
449 int package_export(GTypeModule *pkg)
450 {
451         struct upkg *upkg = U_PKG(pkg)->pkg;
452         GObject *obj;
453         int ret = 0;
454
455         for (unsigned i = 0; i < upkg->export_count; i++) {
456                 obj = u_object_new_from_package(pkg, i);
457                 if (U_OBJECT_IS_EXPORTABLE(obj) && export(pkg, obj, i) != 0) {
458                         ret = -1;
459                 }
460                 g_object_unref(obj);
461         }
462
463         return ret;
464 }
465
466 static int process_object(int mode, const char *objname)
467 {
468         char work[strlen(objname)+1], *p = work, *c;
469         GTypeModule *pkg;
470         long current = -1;
471         int ret = 0;
472
473         strcpy(work, objname);
474
475         /* First, find and open the actual package. */
476         c = strchr(p, '.');
477         if (c) *c = 0;
478
479         pkg = u_pkg_open(p);
480         if (!pkg || !g_type_module_use(pkg)) {
481                 fprintf(stderr, "%s: %s: failed to open package.\n",
482                                 progname, work);
483                 goto out;
484         }
485
486         if (!U_PKG(pkg)->pkg) {
487                 if (u_pkg_is_native(pkg)) {
488                         fprintf(stderr, "%s: %s: not a UObject package.\n",
489                                         progname, work);
490                 } else {
491                         fprintf(stderr, "%s: %s: package not found.\n",
492                                         progname, work);
493                 }
494
495                 goto out_unuse;
496         }
497
498         /* Resolve the hierarchical reference. */
499         while (c) {
500                 p = c+1;
501                 c = strchr(p, '.');
502                 if (c) *c = 0;
503
504                 current = upkg_export_find(U_PKG(pkg)->pkg, current, p);
505                 if (current == -1) {
506                         /* We want to print the full name up to this point. */
507                         strcpy(work, objname);
508                         if (c) *c = 0;
509
510                         fprintf(stderr, "%s: %s: object not found.\n",
511                                         progname, work);
512                         goto out_unuse;
513                 }
514         }
515
516         switch (mode) {
517         case MODE_INFO:
518                 if (current < 0)
519                         ret = package_info(U_PKG(pkg)->pkg);
520                 else
521                         ret = object_info(pkg, current);
522                 break;
523         case MODE_LIST:
524                 ret = package_list(pkg, current);
525                 break;
526         case MODE_EXPORT:
527                 if (current < 0)
528                         ret = package_export(pkg);
529                 else
530                         ret = object_export(pkg, current);
531                 break;
532         default:
533                 abort();
534         }
535
536 out_unuse:
537         g_type_module_unuse(pkg);
538 out:
539         return ret;
540 }
541
542 int main(int argc, char **argv)
543 {
544         const char *pkgname = NULL;
545         unsigned mode = MODE_INFO;
546         int opt, rc;
547
548         if (argc > 0) progname = argv[0];
549
550         if (u_pkg_vfs_init() != 0)
551                 return EXIT_FAILURE;
552         if (u_object_module_init() != 0)
553                 return EXIT_FAILURE;
554
555         while ((opt = getopt_long(argc, argv, sopts, lopts, NULL)) != -1) {
556                 switch (opt) {
557                 case 'f':
558                         pkgname = u_pkg_vfs_add_local(NULL, optarg);
559                         if (!pkgname) {
560                                 fprintf(stderr, "failed to add package `%s'.\n", optarg);
561                                 return EXIT_FAILURE;
562                         }
563                         break;
564                 case 'i':
565                         mode = MODE_INFO;
566                         break;
567                 case 'l':
568                         mode = MODE_LIST;
569                         break;
570                 case 'x':
571                         mode = MODE_EXPORT;
572                         break;
573                 case 'v':
574                         verbose++;
575                         break;
576                 case 'V':
577                         print_version();
578                         return EXIT_SUCCESS;
579                 case 'H':
580                         print_help();
581                         return EXIT_SUCCESS;
582                 default:
583                         print_usage(stderr);
584                         return EXIT_FAILURE;
585                 }
586         }
587
588         if (!pkgname && !argv[optind]) {
589                 print_usage(stderr);
590                 return EXIT_FAILURE;
591         }
592
593         rc = EXIT_SUCCESS;
594         if (argv[optind]) {
595                 for (int i = optind; i < argc; i++) {
596                         if (process_object(mode, argv[i]) != 0)
597                                 rc = EXIT_FAILURE;
598                 }
599         } else {
600                 if (process_object(mode, pkgname) != 0)
601                         rc = EXIT_FAILURE;
602         }
603
604         u_object_module_exit();
605         u_pkg_vfs_exit();
606         return rc;
607 }