468aea2d88
just build relevant source and use xxx_main functions. build system: add a special case when we have exactly one applet enabled (makes "true", "false", "basename" REALLY tiny). getopt32: do not use stdio. function old new delta getopt32 1385 1412 +27 make_device 1187 1200 +13 basename_main 120 127 +7 tcpudpsvd_main 1922 1926 +4 testcmd 5 - -5 echocmd 5 - -5 fuser_main 1243 1231 -12 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 4/1 up/down: 51/-22) Total: 29 bytes
121 lines
2.8 KiB
C
121 lines
2.8 KiB
C
/* 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"
|
|
|
|
enum { NUM_APPLETS = ARRAY_SIZE(applets) };
|
|
|
|
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;
|
|
|
|
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;
|
|
}
|
|
/* 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;
|
|
dup2(i, 1);
|
|
|
|
/* Keep in sync with include/busybox.h! */
|
|
|
|
puts("/* This is a generated file, don't edit */\n");
|
|
|
|
if (NUM_APPLETS == 1) {
|
|
printf("#define SINGLE_APPLET_STR \"%s\"\n", applets[0].name);
|
|
printf("#define SINGLE_APPLET_MAIN %s_main\n\n", applets[0].name);
|
|
}
|
|
|
|
puts("const char applet_names[] ALIGN1 = \"\"");
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
|
printf("\"%s\" \"\\0\"\n", applets[i].name);
|
|
}
|
|
puts(";");
|
|
|
|
puts("int (*const applet_main[])(int argc, char **argv) = {");
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
|
printf("%s_main,\n", applets[i].main);
|
|
}
|
|
puts("};");
|
|
|
|
puts("const uint16_t applet_nameofs[] ALIGN2 = {");
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
|
printf("0x%04x,\n",
|
|
offset[i]
|
|
#if ENABLE_FEATURE_PREFER_APPLETS
|
|
+ (applets[i].nofork << 12)
|
|
+ (applets[i].noexec << 13)
|
|
#endif
|
|
#if ENABLE_FEATURE_SUID
|
|
+ (applets[i].need_suid << 14) /* 2 bits */
|
|
#endif
|
|
);
|
|
}
|
|
puts("};");
|
|
|
|
#if ENABLE_FEATURE_INSTALLER
|
|
puts("const uint8_t applet_install_loc[] ALIGN1 = {");
|
|
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++;
|
|
}
|
|
puts("};");
|
|
#endif
|
|
|
|
return 0;
|
|
}
|