2007-11-28 12:19:42 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Applet table generator.
|
|
|
|
* Runs on host and produces include/applet_tables.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Denys Vlasenko <vda.linux@googlemail.com>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2, see file License in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "../include/autoconf.h"
|
|
|
|
#include "../include/busybox.h"
|
|
|
|
|
|
|
|
struct bb_applet {
|
|
|
|
const char *name;
|
|
|
|
const char *main;
|
|
|
|
enum bb_install_loc_t install_loc;
|
|
|
|
enum bb_suid_t need_suid;
|
|
|
|
/* true if instead of fork(); exec("applet"); waitpid();
|
|
|
|
* one can do fork(); exit(applet_main(argc,argv)); waitpid(); */
|
|
|
|
unsigned char noexec;
|
|
|
|
/* Even nicer */
|
|
|
|
/* true if instead of fork(); exec("applet"); waitpid();
|
|
|
|
* one can simply call applet_main(argc,argv); */
|
|
|
|
unsigned char nofork;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Define struct bb_applet applets[] */
|
|
|
|
#include "../include/applets.h"
|
|
|
|
|
2008-02-23 04:13:22 +05:30
|
|
|
enum { NUM_APPLETS = ARRAY_SIZE(applets) };
|
2007-11-28 12:19:42 +05:30
|
|
|
|
|
|
|
static int offset[NUM_APPLETS];
|
|
|
|
|
|
|
|
static int cmp_name(const void *a, const void *b)
|
|
|
|
{
|
|
|
|
const struct bb_applet *aa = a;
|
|
|
|
const struct bb_applet *bb = b;
|
|
|
|
return strcmp(aa->name, bb->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int ofs;
|
2008-04-09 02:43:28 +05:30
|
|
|
unsigned MAX_APPLET_NAME_LEN = 1;
|
2007-11-28 12:19:42 +05:30
|
|
|
|
|
|
|
qsort(applets, NUM_APPLETS, sizeof(applets[0]), cmp_name);
|
|
|
|
|
|
|
|
ofs = 0;
|
|
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
|
|
|
offset[i] = ofs;
|
|
|
|
ofs += strlen(applets[i].name) + 1;
|
2007-11-29 09:01:20 +05:30
|
|
|
}
|
|
|
|
/* We reuse 4 high-order bits of offset array for other purposes,
|
|
|
|
* so if they are indeed needed, refuse to proceed */
|
|
|
|
if (ofs > 0xfff)
|
|
|
|
return 1;
|
|
|
|
if (!argv[1])
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
i = open(argv[1], O_WRONLY | O_TRUNC | O_CREAT, 0666);
|
|
|
|
if (i < 0)
|
|
|
|
return 1;
|
2007-12-24 19:39:19 +05:30
|
|
|
dup2(i, 1);
|
2007-11-29 09:01:20 +05:30
|
|
|
|
|
|
|
/* Keep in sync with include/busybox.h! */
|
|
|
|
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("/* This is a generated file, don't edit */\n\n");
|
2007-11-29 09:01:20 +05:30
|
|
|
|
2008-04-09 02:43:28 +05:30
|
|
|
printf("#define NUM_APPLETS %u\n", NUM_APPLETS);
|
2008-04-01 20:17:57 +05:30
|
|
|
if (NUM_APPLETS == 1) {
|
|
|
|
printf("#define SINGLE_APPLET_STR \"%s\"\n", applets[0].name);
|
2008-04-09 02:43:28 +05:30
|
|
|
printf("#define SINGLE_APPLET_MAIN %s_main\n", applets[0].name);
|
2008-04-01 20:17:57 +05:30
|
|
|
}
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("\n");
|
2008-04-01 20:17:57 +05:30
|
|
|
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("const char applet_names[] ALIGN1 = \"\"\n");
|
2007-11-29 09:01:20 +05:30
|
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
2007-11-28 12:19:42 +05:30
|
|
|
printf("\"%s\" \"\\0\"\n", applets[i].name);
|
2008-04-09 02:43:28 +05:30
|
|
|
if (MAX_APPLET_NAME_LEN < strlen(applets[i].name))
|
|
|
|
MAX_APPLET_NAME_LEN = strlen(applets[i].name);
|
2007-11-28 12:19:42 +05:30
|
|
|
}
|
2009-10-02 04:40:32 +05:30
|
|
|
printf(";\n\n");
|
2007-11-28 12:19:42 +05:30
|
|
|
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("#ifndef SKIP_applet_main\n");
|
|
|
|
printf("int (*const applet_main[])(int argc, char **argv) = {\n");
|
2007-11-28 12:19:42 +05:30
|
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
|
|
|
printf("%s_main,\n", applets[i].main);
|
|
|
|
}
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("};\n");
|
|
|
|
printf("#endif\n\n");
|
2007-11-28 12:19:42 +05:30
|
|
|
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("const uint16_t applet_nameofs[] ALIGN2 = {\n");
|
2007-11-28 12:19:42 +05:30
|
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
2007-11-29 09:01:20 +05:30
|
|
|
printf("0x%04x,\n",
|
2007-11-28 12:19:42 +05:30
|
|
|
offset[i]
|
2007-11-29 09:01:20 +05:30
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS
|
|
|
|
+ (applets[i].nofork << 12)
|
|
|
|
+ (applets[i].noexec << 13)
|
|
|
|
#endif
|
2007-11-28 12:19:42 +05:30
|
|
|
#if ENABLE_FEATURE_SUID
|
2008-02-23 04:13:22 +05:30
|
|
|
+ (applets[i].need_suid << 14) /* 2 bits */
|
2007-11-28 12:19:42 +05:30
|
|
|
#endif
|
|
|
|
);
|
|
|
|
}
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("};\n\n");
|
2007-11-28 12:19:42 +05:30
|
|
|
|
2007-11-29 09:01:20 +05:30
|
|
|
#if ENABLE_FEATURE_INSTALLER
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("const uint8_t applet_install_loc[] ALIGN1 = {\n");
|
2007-11-29 09:01:20 +05:30
|
|
|
i = 0;
|
|
|
|
while (i < NUM_APPLETS) {
|
|
|
|
int v = applets[i].install_loc; /* 3 bits */
|
|
|
|
if (++i < NUM_APPLETS)
|
|
|
|
v |= applets[i].install_loc << 4; /* 3 bits */
|
|
|
|
printf("0x%02x,\n", v);
|
|
|
|
i++;
|
|
|
|
}
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("};\n\n");
|
2007-11-29 09:01:20 +05:30
|
|
|
#endif
|
|
|
|
|
2008-04-09 02:43:28 +05:30
|
|
|
printf("#define MAX_APPLET_NAME_LEN %u\n", MAX_APPLET_NAME_LEN);
|
|
|
|
|
2007-11-28 12:19:42 +05:30
|
|
|
return 0;
|
|
|
|
}
|