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>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2007-11-28 12:19:42 +05:30
|
|
|
*/
|
2011-03-28 04:53:38 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
2018-04-12 14:06:54 +05:30
|
|
|
#include <limits.h>
|
2007-11-28 12:19:42 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
2011-03-28 04:53:38 +05:30
|
|
|
#include <unistd.h>
|
2014-09-18 04:17:05 +05:30
|
|
|
#include <ctype.h>
|
2011-03-28 04:53:38 +05:30
|
|
|
|
|
|
|
#undef ARRAY_SIZE
|
|
|
|
#define ARRAY_SIZE(x) ((unsigned)(sizeof(x) / sizeof((x)[0])))
|
2007-11-28 12:19:42 +05:30
|
|
|
|
2020-12-17 15:52:44 +05:30
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 1024
|
|
|
|
#endif
|
|
|
|
|
2007-11-28 12:19:42 +05:30
|
|
|
#include "../include/autoconf.h"
|
2011-03-28 04:53:38 +05:30
|
|
|
#include "../include/applet_metadata.h"
|
2007-11-28 12:19:42 +05:30
|
|
|
|
|
|
|
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 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);
|
|
|
|
}
|
|
|
|
|
2014-09-18 04:17:05 +05:30
|
|
|
static int str_isalnum_(const char *s)
|
|
|
|
{
|
|
|
|
while (*s) {
|
2021-04-14 22:42:43 +05:30
|
|
|
if (!isalnum((unsigned char)*s) && *s != '_')
|
2014-09-18 04:17:05 +05:30
|
|
|
return 0;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-11-28 12:19:42 +05:30
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2016-03-30 04:12:05 +05:30
|
|
|
int i, j;
|
2018-04-12 14:06:54 +05:30
|
|
|
char tmp1[PATH_MAX], tmp2[PATH_MAX];
|
2007-11-28 12:19:42 +05:30
|
|
|
|
2016-04-02 18:48:26 +05:30
|
|
|
// In find_applet_by_name(), before linear search, narrow it down
|
|
|
|
// by looking at N "equidistant" names. With ~350 applets:
|
|
|
|
// KNOWN_APPNAME_OFFSETS cycles
|
|
|
|
// 0 9057
|
|
|
|
// 2 4604 + ~100 bytes of code
|
|
|
|
// 4 2407 + 4 bytes
|
|
|
|
// 8 1342 + 8 bytes
|
|
|
|
// 16 908 + 16 bytes
|
|
|
|
// 32 884 + 32 bytes
|
|
|
|
// With 8, int16_t applet_nameofs[] table has 7 elements.
|
|
|
|
int KNOWN_APPNAME_OFFSETS = 8;
|
|
|
|
// With 128 applets we do two linear searches, with 1..7 strcmp's in the first one
|
|
|
|
// and 1..16 strcmp's in the second. With 256 apps, second search does 1..32 strcmp's.
|
|
|
|
if (NUM_APPLETS < 128)
|
|
|
|
KNOWN_APPNAME_OFFSETS = 4;
|
|
|
|
if (NUM_APPLETS < 32)
|
|
|
|
KNOWN_APPNAME_OFFSETS = 0;
|
2007-11-28 12:19:42 +05:30
|
|
|
|
2016-04-02 18:48:26 +05:30
|
|
|
qsort(applets, NUM_APPLETS, sizeof(applets[0]), cmp_name);
|
2016-03-30 04:12:05 +05:30
|
|
|
|
2018-11-25 17:16:39 +05:30
|
|
|
for (i = j = 0; i < NUM_APPLETS-1; ++i) {
|
|
|
|
if (cmp_name(applets+i, applets+i+1) == 0) {
|
|
|
|
fprintf(stderr, "%s: duplicate applet name '%s'\n", argv[0],
|
|
|
|
applets[i].name);
|
|
|
|
j = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (j != 0 || !argv[1])
|
2007-11-29 09:01:20 +05:30
|
|
|
return 1;
|
2018-04-12 14:06:54 +05:30
|
|
|
snprintf(tmp1, PATH_MAX, "%s.%u.new", argv[1], (int) getpid());
|
|
|
|
i = open(tmp1, O_WRONLY | O_TRUNC | O_CREAT, 0666);
|
2007-11-29 09:01:20 +05:30
|
|
|
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);
|
2012-03-19 09:08:00 +05:30
|
|
|
printf("#define SINGLE_APPLET_MAIN %s_main\n", applets[0].main);
|
2008-04-01 20:17:57 +05:30
|
|
|
}
|
2016-03-30 04:12:05 +05:30
|
|
|
|
2016-04-02 18:48:26 +05:30
|
|
|
printf("#define KNOWN_APPNAME_OFFSETS %u\n\n", KNOWN_APPNAME_OFFSETS);
|
|
|
|
if (KNOWN_APPNAME_OFFSETS > 0) {
|
|
|
|
int ofs, offset[KNOWN_APPNAME_OFFSETS], index[KNOWN_APPNAME_OFFSETS];
|
|
|
|
for (i = 0; i < KNOWN_APPNAME_OFFSETS; i++)
|
|
|
|
index[i] = i * NUM_APPLETS / KNOWN_APPNAME_OFFSETS;
|
|
|
|
ofs = 0;
|
|
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
|
|
|
for (j = 0; j < KNOWN_APPNAME_OFFSETS; j++)
|
|
|
|
if (i == index[j])
|
|
|
|
offset[j] = ofs;
|
|
|
|
ofs += strlen(applets[i].name) + 1;
|
|
|
|
}
|
|
|
|
/* If the list of names is too long refuse to proceed */
|
|
|
|
if (ofs > 0xffff)
|
|
|
|
return 1;
|
2016-03-30 04:12:05 +05:30
|
|
|
printf("const uint16_t applet_nameofs[] ALIGN2 = {\n");
|
|
|
|
for (i = 1; i < KNOWN_APPNAME_OFFSETS; i++)
|
|
|
|
printf("%d,\n", offset[i]);
|
|
|
|
printf("};\n\n");
|
|
|
|
}
|
2008-04-01 20:17:57 +05:30
|
|
|
|
2010-06-26 06:10:08 +05:30
|
|
|
//printf("#ifndef SKIP_definitions\n");
|
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);
|
2013-11-26 16:33:24 +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
|
|
|
|
2014-09-18 04:17:05 +05:30
|
|
|
for (i = 0; i < NUM_APPLETS; i++) {
|
|
|
|
if (str_isalnum_(applets[i].name))
|
|
|
|
printf("#define APPLET_NO_%s %d\n", applets[i].name, i);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
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
|
|
|
|
2016-07-22 22:18:38 +05:30
|
|
|
#if ENABLE_FEATURE_PREFER_APPLETS \
|
|
|
|
|| ENABLE_FEATURE_SH_STANDALONE \
|
|
|
|
|| ENABLE_FEATURE_SH_NOFORK
|
2016-03-30 04:12:05 +05:30
|
|
|
printf("const uint8_t applet_flags[] ALIGN1 = {\n");
|
|
|
|
i = 0;
|
|
|
|
while (i < NUM_APPLETS) {
|
|
|
|
int v = applets[i].nofork + (applets[i].noexec << 1);
|
|
|
|
if (++i < NUM_APPLETS)
|
|
|
|
v |= (applets[i].nofork + (applets[i].noexec << 1)) << 2;
|
|
|
|
if (++i < NUM_APPLETS)
|
|
|
|
v |= (applets[i].nofork + (applets[i].noexec << 1)) << 4;
|
|
|
|
if (++i < NUM_APPLETS)
|
|
|
|
v |= (applets[i].nofork + (applets[i].noexec << 1)) << 6;
|
|
|
|
printf("0x%02x,\n", v);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
printf("};\n\n");
|
2007-11-29 09:01:20 +05:30
|
|
|
#endif
|
2016-03-30 04:12:05 +05:30
|
|
|
|
2007-11-28 12:19:42 +05:30
|
|
|
#if ENABLE_FEATURE_SUID
|
2016-03-30 04:12:05 +05:30
|
|
|
printf("const uint8_t applet_suid[] ALIGN1 = {\n");
|
|
|
|
i = 0;
|
|
|
|
while (i < NUM_APPLETS) {
|
|
|
|
int v = applets[i].need_suid; /* 2 bits */
|
|
|
|
if (++i < NUM_APPLETS)
|
|
|
|
v |= applets[i].need_suid << 2;
|
|
|
|
if (++i < NUM_APPLETS)
|
|
|
|
v |= applets[i].need_suid << 4;
|
|
|
|
if (++i < NUM_APPLETS)
|
|
|
|
v |= applets[i].need_suid << 6;
|
|
|
|
printf("0x%02x,\n", v);
|
|
|
|
i++;
|
2007-11-28 12:19:42 +05:30
|
|
|
}
|
2009-10-02 04:40:32 +05:30
|
|
|
printf("};\n\n");
|
2016-03-30 04:12:05 +05:30
|
|
|
#endif
|
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++;
|
|
|
|
}
|
2010-03-23 05:38:26 +05:30
|
|
|
printf("};\n");
|
2007-11-29 09:01:20 +05:30
|
|
|
#endif
|
2010-06-26 06:10:08 +05:30
|
|
|
//printf("#endif /* SKIP_definitions */\n");
|
2016-08-23 23:51:36 +05:30
|
|
|
|
2013-11-26 16:33:24 +05:30
|
|
|
// printf("\n");
|
|
|
|
// printf("#define MAX_APPLET_NAME_LEN %u\n", MAX_APPLET_NAME_LEN);
|
2008-04-09 02:43:28 +05:30
|
|
|
|
2010-06-26 06:10:08 +05:30
|
|
|
if (argv[2]) {
|
|
|
|
FILE *fp;
|
2016-08-23 23:51:36 +05:30
|
|
|
char line_new[80];
|
|
|
|
// char line_old[80];
|
2010-06-26 06:10:08 +05:30
|
|
|
|
|
|
|
sprintf(line_new, "#define NUM_APPLETS %u\n", NUM_APPLETS);
|
2016-08-23 23:51:36 +05:30
|
|
|
// line_old[0] = 0;
|
|
|
|
// fp = fopen(argv[2], "r");
|
|
|
|
// if (fp) {
|
|
|
|
// fgets(line_old, sizeof(line_old), fp);
|
|
|
|
// fclose(fp);
|
|
|
|
// }
|
|
|
|
// if (strcmp(line_old, line_new) != 0) {
|
2018-04-12 14:06:54 +05:30
|
|
|
snprintf(tmp2, PATH_MAX, "%s.%u.new", argv[2], (int) getpid());
|
|
|
|
fp = fopen(tmp2, "w");
|
2010-06-26 06:10:08 +05:30
|
|
|
if (!fp)
|
|
|
|
return 1;
|
|
|
|
fputs(line_new, fp);
|
2018-04-12 14:06:54 +05:30
|
|
|
if (fclose(fp))
|
|
|
|
return 1;
|
2016-08-23 23:51:36 +05:30
|
|
|
// }
|
2010-06-26 06:10:08 +05:30
|
|
|
}
|
|
|
|
|
2018-04-12 14:06:54 +05:30
|
|
|
if (fclose(stdout))
|
|
|
|
return 1;
|
|
|
|
if (rename(tmp1, argv[1]))
|
|
|
|
return 1;
|
|
|
|
if (rename(tmp2, argv[2]))
|
|
|
|
return 1;
|
2007-11-28 12:19:42 +05:30
|
|
|
return 0;
|
|
|
|
}
|