X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=adu.c;h=02bfa302779ccdf5bc299e8a6a81f5b3c2fb8f60;hp=c35c535c436957795892c38fb6478bf2c335605d;hb=cecbe8525740b4a899cb1a6c91064e195ae1ada2;hpb=07469b2e348eb034fa12cc6b4b448f68f7b8e93b diff --git a/adu.c b/adu.c index c35c535..02bfa30 100644 --- a/adu.c +++ b/adu.c @@ -8,6 +8,7 @@ #include "string.h" #include "error.h" #include "portable_io.h" +#include "select.cmdline.h" DEFINE_ERRLIST; int osl_errno; @@ -18,16 +19,15 @@ static int signum; /** Command line and config file options. */ struct gengetopt_args_info conf; -/** Global dir count. */ -uint64_t num_dirs = 0; -/** Global files count. */ -uint64_t num_files = 0; -/** Global bytes count. */ -uint64_t num_bytes = 0; +/** Options passed to --select-options. */ +struct select_args_info select_conf; /** The number of different uids found so far. */ uint32_t num_uids = 0; +/** This is always a power of two. It is set in create_hash_table(). */ +static uint32_t uid_hash_table_size; + /** * Contains info for each user that owns at least one regular file. * @@ -35,21 +35,23 @@ uint32_t num_uids = 0; * option occupy a slot in this hash table. This allows to find out * quicky whether a uid is admissible. And yes, this has to be fast. */ -struct user_info *uid_hash_table = NULL; +static struct user_info *uid_hash_table; + +static inline int ui_used(struct user_info *ui) +{ + return ui->flags & UI_FL_SLOT_USED; +} + +static inline int ui_admissible(struct user_info *ui) +{ + return ui->flags & UI_FL_ADMISSIBLE; +} /** * The table containing the directory names and statistics. */ struct osl_table *dir_table = NULL; -/** - * The array of all uid ranges that were given at the command line. - */ -struct uid_range *admissible_uids; - -/** Evaluates to 1 if x < y, to -1 if x > y and to 0 if x == y. */ -#define NUM_COMPARE(x, y) ((int)((x) < (y)) - (int)((x) > (y))) - /** * Compare the size of two directories * @@ -162,61 +164,6 @@ static struct osl_column_description user_table_cols[] = { }, }; -static int check_uid_arg(const char *arg, uint32_t *uid) -{ - const uint32_t max = ~0U; - /* - * we need an 64-bit int for string -> uid conversion because strtoll() - * returns a signed value. - */ - int64_t val; - int ret = atoi64(arg, &val); - - if (ret < 0) - return ret; - if (val < 0 || val > max) - return -ERRNO_TO_ERROR(EINVAL); - *uid = val; - return 1; -} - -static int parse_uid_range(const char *orig_arg, struct uid_range *ur) -{ - int ret; - char *arg = adu_strdup(orig_arg), *p = strchr(arg, '-'); - - if (!p || p == arg) { /* -42 or 42 */ - ret = check_uid_arg(p? p + 1 : arg, &ur->high); - if (ret < 0) - goto out; - ur->low = p? 0 : ur->high; - ret = 1; - goto out; - } - /* 42- or 42-4711 */ - *p = '\0'; - p++; - ret = check_uid_arg(arg, &ur->low); - if (ret < 0) - goto out; - ur->high = ~0U; - if (*p) { /* 42-4711 */ - ret = check_uid_arg(p, &ur->high); - if (ret < 0) - goto out; - } - if (ur->low > ur->high) - ret = -ERRNO_TO_ERROR(EINVAL); -out: - if (ret < 0) - ERROR_LOG("bad uid option: %s\n", orig_arg); - else - INFO_LOG("admissible uid range: %u - %u\n", ur->low, - ur->high); - free(arg); - return ret; -} - /** * The log function. * @@ -285,15 +232,34 @@ err: return ret; } -#define uid_hash_bits 8 -uint32_t uid_hash_table_size = 1 << uid_hash_bits; -#define PRIME1 0x811c9dc5 +int for_each_admissible_user(int (*func)(struct user_info *, void *), + void *data) +{ + struct user_info *ui = uid_hash_table; + + if (!ui) + return -ERRNO_TO_ERROR(EFAULT); + + for (; ui < uid_hash_table + uid_hash_table_size; ui++) { + int ret; + + if (!ui_used(ui) || !ui_admissible(ui)) + continue; + ret = func(ui, data); + if (ret < 0) + return ret; + } + return 1; +} + +#define PRIME1 0xb11924e1 #define PRIME2 0x01000193 -void create_hash_table(void) +void create_hash_table(unsigned bits) { - uid_hash_table = adu_calloc(uid_hash_table_size - * sizeof(struct user_info)); + uid_hash_table_size = 1 << bits; + uid_hash_table = adu_calloc(uid_hash_table_size * + sizeof(struct user_info)); } static void free_hash_table(void) @@ -315,12 +281,10 @@ static void close_dir_table(void) dir_table = NULL; } -static void close_user_table(struct user_info *ui) +static int close_user_table(struct user_info *ui, __a_unused void *data) { int ret; - if (!ui || !ui_used(ui) || !ui_admissible(ui)) - return; ret = osl(osl_close_table(ui->table, OSL_MARK_CLEAN)); if (ret < 0) ERROR_LOG("failed to close user table %u: %s\n", @@ -335,14 +299,12 @@ static void close_user_table(struct user_info *ui) ui->desc = NULL; ui->table = NULL; ui->flags = 0; + return 1; } static void close_user_tables(void) { - struct user_info *ui; - - FOR_EACH_USER(ui) - close_user_table(ui); + for_each_admissible_user(close_user_table, NULL); } void close_all_tables(void) @@ -372,6 +334,8 @@ static int init_signals(void) return -E_SIGNAL_SIG_ERR; if (signal(SIGTERM, &signal_handler) == SIG_ERR) return -E_SIGNAL_SIG_ERR; + if (signal(SIGPIPE, &signal_handler) == SIG_ERR) + return -E_SIGNAL_SIG_ERR; return 1; } @@ -397,24 +361,25 @@ static uint32_t double_hash(uint32_t uid, uint32_t probe_num) % uid_hash_table_size; } -static int uid_is_admissible(uint32_t uid) +static int uid_is_admissible(uint32_t uid, struct uid_range *urs) { - int i; - - for (i = 0; i < conf.uid_given; i++) { - struct uid_range *ur = admissible_uids + i; + struct uid_range *ur; + int ret = 1; + if (!urs) /* empty array means all uids are allowed */ + return 1; + FOR_EACH_UID_RANGE(ur, urs) if (ur->low <= uid && ur->high >= uid) - break; - } - i = !conf.uid_given || i < conf.uid_given; + goto out; + ret = 0; +out: DEBUG_LOG("uid %u is %sadmissible\n", (unsigned)uid, - i? "" : "not "); - return i; + ret? "" : "not "); + return ret; } -int search_uid(uint32_t uid, enum search_uid_flags flags, - struct user_info **ui_ptr) +int search_uid(uint32_t uid, struct uid_range *urs, + enum search_uid_flags flags, struct user_info **ui_ptr) { uint32_t p; @@ -427,7 +392,7 @@ int search_uid(uint32_t uid, enum search_uid_flags flags, return -E_BAD_UID; ui->uid = uid; ui->flags |= UI_FL_SLOT_USED; - if (!uid_is_admissible(uid)) + if (!uid_is_admissible(uid, urs)) return 0; ui->flags |= UI_FL_ADMISSIBLE; ret = open_user_table(ui, flags & CREATE_USER_TABLE); @@ -452,6 +417,12 @@ char *get_uid_list_name(void) return make_message("%s/uid_list", conf.database_dir_arg); } +void sort_hash_table(int (*comp)(const void *, const void *)) +{ + qsort(uid_hash_table, uid_hash_table_size, sizeof(struct user_info), + comp); +} + int open_dir_table(int create) { dir_table_desc.dir = adu_strdup(conf.database_dir_arg); @@ -468,7 +439,8 @@ int open_dir_table(int create) static int check_args(void) { - int i, ret; + if (conf.create_given && !conf.base_dir_given) + return -E_SYNTAX; /* remove trailing slashes from base-dir arg */ if (conf.base_dir_given) { @@ -483,19 +455,7 @@ static int check_args(void) conf.base_dir_arg[len] = '\0'; } } - if (!conf.uid_given) - return 0; - admissible_uids = adu_malloc(conf.uid_given * sizeof(*admissible_uids)); - for (i = 0; i < conf.uid_given; i++) { - ret = parse_uid_range(conf.uid_arg[i], admissible_uids + i); - if (ret < 0) - goto err; - } return 1; -err: - free(admissible_uids); - admissible_uids = NULL; - return ret; } int main(int argc, char **argv) @@ -504,8 +464,8 @@ int main(int argc, char **argv) struct cmdline_parser_params params = { .override = 0, .initialize = 1, - .check_required = 0, - .check_ambiguity = 0, + .check_required = 1, + .check_ambiguity = 1, .print_errors = 1 }; @@ -519,12 +479,13 @@ int main(int argc, char **argv) ret = -E_SYNTAX; if (conf.select_given) ret = com_select(); - else + else if (conf.create_given) ret = com_create(); + else + ret = com_interactive(); if (ret < 0) goto out; out: - free(admissible_uids); if (ret < 0) { ERROR_LOG("%s\n", adu_strerror(-ret)); return -EXIT_FAILURE;