X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=adu.c;h=deb3e94ccd88bf309263b57a87e307de9e00944c;hp=5728a3180d7f954714d0af64be713c435feb2f5f;hb=0fbaae7717847b41f4d1218ce44de44c755397c0;hpb=ceb399292dcec3ad15f70fbda94f2a09cbd30d7b diff --git a/adu.c b/adu.c index 5728a31..deb3e94 100644 --- a/adu.c +++ b/adu.c @@ -9,12 +9,21 @@ #include "portable_io.h" DEFINE_ERRLIST; +int osl_errno; /** Command line and config file options. */ static struct gengetopt_args_info conf; +enum uid_info_flags { + /** whether this slot of the hash table is used. */ + UI_FL_SLOT_USED = 1, + /** whether this uid should be taken into account. */ + UI_FL_ADMISSIBLE = 2, +}; + struct user_info { uint32_t uid; + uint32_t flags; struct osl_table *table; uint64_t files; uint64_t bytes; @@ -22,12 +31,93 @@ struct user_info { struct osl_table_description *desc; }; +/** + * Contains info for each user that owns at least one regular file. + * + * Even users that are not taken into account because of the --uid + * 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. + */ 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; +} + +struct uid_range { + uint32_t low; + uint32_t high; +}; + +static struct uid_range *admissible_uids; + +static inline 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 = para_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 = para_strdup(orig_arg), *p = strchr(arg, '-'); + + if (!p || p == arg) { + if (p == arg) /* -42 */ + p++; + ret = check_uid_arg(p, &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; +} + + /** 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))) - /** * The log function. * @@ -78,29 +168,6 @@ static int size_compare(const struct osl_object *obj1, const struct osl_object * return NUM_COMPARE(obj2->data, obj1->data); } -/** - * Compare two osl objects of string type. - * - * \param obj1 Pointer to the first object. - * \param obj2 Pointer to the second object. - * - * In any case, only \p MIN(obj1->size, obj2->size) characters of each string - * are taken into account. - * - * \return It returns an integer less than, equal to, or greater than zero if - * \a obj1 is found, respectively, to be less than, to match, or be greater - * than obj2. - * - * \sa strcmp(3), strncmp(3), osl_compare_func. - */ -static int string_compare(const struct osl_object *obj1, - const struct osl_object *obj2) -{ - const char *str1 = (const char *)obj1->data; - const char *str2 = (const char *)obj2->data; - return strncmp(str1, str2, MIN(obj1->size, obj2->size)); -} - /** * Compare two osl objects pointing to unsigned integers of 64 bit size. * @@ -130,6 +197,8 @@ enum dir_table_columns { DT_NAME, /** The dir count number. */ DT_NUM, + /** The number of the parent directory. */ + DT_PARENT_NUM, /** The number of bytes of all regular files. */ DT_BYTES, /** The number of all regular files. */ @@ -141,9 +210,8 @@ enum dir_table_columns { static struct osl_column_description dir_table_cols[] = { [DT_NAME] = { .storage_type = OSL_MAPPED_STORAGE, - .storage_flags = OSL_RBTREE | OSL_UNIQUE, + .storage_flags = 0, .name = "dir", - .compare_function = string_compare, }, [DT_NUM] = { .storage_type = OSL_MAPPED_STORAGE, @@ -152,6 +220,13 @@ static struct osl_column_description dir_table_cols[] = { .compare_function = uint64_compare, .data_size = sizeof(uint64_t) }, + [DT_PARENT_NUM] = { + .storage_type = OSL_MAPPED_STORAGE, + .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE | OSL_UNIQUE, + .name = "parent_num", + .compare_function = size_compare, + .data_size = sizeof(uint64_t) + }, [DT_BYTES] = { .storage_type = OSL_MAPPED_STORAGE, .storage_flags = OSL_RBTREE | OSL_FIXED_SIZE, @@ -213,22 +288,23 @@ static struct osl_column_description user_table_cols[] = { static struct osl_table *dir_table; -static int add_directory(char *dirname, uint64_t dir_num, uint64_t *dir_size, - uint64_t *dir_files) +static int add_directory(char *dirname, uint64_t *dir_num, uint64_t *parent_dir_num, + uint64_t *dir_size, uint64_t *dir_files) { struct osl_object dir_objects[NUM_DT_COLUMNS]; - INFO_LOG("adding #%llu: %s\n", (long long unsigned)dir_num, dirname); + INFO_LOG("adding #%llu: %s\n", (long long unsigned)*dir_num, dirname); dir_objects[DT_NAME].data = dirname; dir_objects[DT_NAME].size = strlen(dirname) + 1; - dir_objects[DT_NUM].data = &dir_num; - dir_objects[DT_NUM].size = sizeof(dir_num); + dir_objects[DT_NUM].data = dir_num; + dir_objects[DT_NUM].size = sizeof(*dir_num); + dir_objects[DT_PARENT_NUM].data = parent_dir_num; + dir_objects[DT_PARENT_NUM].size = sizeof(*parent_dir_num); dir_objects[DT_BYTES].data = dir_size; dir_objects[DT_BYTES].size = sizeof(*dir_size); dir_objects[DT_FILES].data = dir_files; dir_objects[DT_FILES].size = sizeof(*dir_files); - - return osl_add_row(dir_table, dir_objects); + return osl(osl_add_row(dir_table, dir_objects)); } static uint32_t num_uids; @@ -246,12 +322,12 @@ static int open_user_table(struct user_info *ui, int create) INFO_LOG(".............................uid #%u: %u\n", (unsigned)num_uids, (unsigned)ui->uid); if (create) { - ret = osl_create_table(ui->desc); + ret = osl(osl_create_table(ui->desc)); if (ret < 0) goto err; num_uids++; } - ret = osl_open_table(ui->desc, &ui->table); + ret = osl(osl_open_table(ui->desc, &ui->table)); if (ret < 0) goto err; return 1; @@ -263,6 +339,7 @@ err: ui->desc->dir = NULL; ui->desc = NULL; ui->table = NULL; + ui->flags = 0; return ret; } @@ -288,7 +365,7 @@ static int create_tables(void) int ret; dir_table_desc.dir = para_strdup(conf.database_dir_arg); - ret = osl_create_table(&dir_table_desc); + ret = osl(osl_create_table(&dir_table_desc)); if (ret < 0) return ret; create_hash_table(); @@ -308,7 +385,7 @@ static int create_tables(void) * * An odd number is sufficient to make sure each entry of the hash table gets * probed for probe_num between 0 and s-1 because s is a power of two, hence - * the second hash value never hash a common divisor with the hash table size. + * the second hash value has never a common divisor with the hash table size. * IOW: h is invertible in the ring [0..s]. */ static uint32_t double_hash(uint32_t uid, uint32_t probe_num) @@ -325,6 +402,22 @@ enum search_uid_flags { CREATE_USER_TABLE = 2, }; +static int uid_is_admissible(uint32_t uid) +{ + int i; + + for (i = 0; i < conf.uid_given; i++) { + struct uid_range *ur = admissible_uids + i; + + if (ur->low <= uid && ur->high >= uid) + break; + } + i = !conf.uid_given || i < conf.uid_given; + DEBUG_LOG("uid %u is %sadmissible\n", (unsigned)uid, + i? "" : "not "); + return i; +} + static int search_uid(uint32_t uid, enum search_uid_flags flags, struct user_info **ui_ptr) { @@ -333,15 +426,19 @@ static int search_uid(uint32_t uid, enum search_uid_flags flags, for (p = 0; p < uid_hash_table_size; p++) { struct user_info *ui = uid_hash_table + double_hash(uid, p); - if (!ui->table) { + if (!ui_used(ui)) { int ret; - if (!flags) return -E_BAD_UID; ui->uid = uid; + ui->flags |= UI_FL_SLOT_USED; + if (!uid_is_admissible(uid)) + return 0; + ui->flags |= UI_FL_ADMISSIBLE; ret = open_user_table(ui, flags & CREATE_USER_TABLE); if (ret < 0) return ret; + if (ui_ptr) *ui_ptr = ui; return 1; @@ -361,9 +458,9 @@ static int update_user_row(struct osl_table *t, uint64_t dir_num, struct osl_row *row; struct osl_object obj = {.data = &dir_num, .size = sizeof(dir_num)}; - int ret = osl_get_row(t, UT_DIR_NUM, &obj, &row); + int ret = osl(osl_get_row(t, UT_DIR_NUM, &obj, &row)); - if (ret < 0 && ret != -E_RB_KEY_NOT_FOUND) + if (ret == -E_OSL && osl_errno != E_OSL_RB_KEY_NOT_FOUND) return ret; if (ret < 0) { /* this is the first file we add */ struct osl_object objects[NUM_UT_COLUMNS]; @@ -376,25 +473,25 @@ static int update_user_row(struct osl_table *t, uint64_t dir_num, objects[UT_FILES].data = &num_files; objects[UT_FILES].size = sizeof(num_files); INFO_LOG("######################### ret: %d\n", ret); - ret = osl_add_row(t, objects); + ret = osl(osl_add_row(t, objects)); INFO_LOG("######################### ret: %d\n", ret); return ret; } else { /* add size and increment file count */ uint64_t num; struct osl_object obj1, obj2 = {.data = &num, .size = sizeof(num)}; - ret = osl_get_object(t, row, UT_BYTES, &obj1); + ret = osl(osl_get_object(t, row, UT_BYTES, &obj1)); if (ret < 0) return ret; num = *(uint64_t *)obj1.data + *add; - ret = osl_update_object(t, row, UT_BYTES, &obj2); + ret = osl(osl_update_object(t, row, UT_BYTES, &obj2)); if (ret < 0) return ret; - ret = osl_get_object(t, row, UT_FILES, &obj1); + ret = osl(osl_get_object(t, row, UT_FILES, &obj1)); if (ret < 0) return ret; num = *(uint64_t *)obj1.data + 1; - return osl_update_object(t, row, UT_FILES, &obj2); + return osl(osl_update_object(t, row, UT_FILES, &obj2)); } } @@ -402,13 +499,13 @@ static uint64_t num_dirs; static uint64_t num_files; static uint64_t num_bytes; -int scan_dir(char *dirname) +int scan_dir(char *dirname, uint64_t *parent_dir_num) { DIR *dir; struct dirent *entry; int ret, cwd_fd, ret2; uint64_t dir_size = 0, dir_files = 0; - uint64_t this_dir_num = num_dirs++; + uint64_t this_dir_num = ++num_dirs; DEBUG_LOG("----------------- %llu: %s\n", (long long unsigned)num_dirs, dirname); ret = para_opendir(dirname, &dir, &cwd_fd); @@ -420,7 +517,6 @@ int scan_dir(char *dirname) } while ((entry = readdir(dir))) { mode_t m; - char *tmp; struct stat s; uint32_t uid; uint64_t size; @@ -439,9 +535,7 @@ int scan_dir(char *dirname) if (!S_ISREG(m) && !S_ISDIR(m)) continue; if (S_ISDIR(m)) { - tmp = make_message("%s/%s", dirname, entry->d_name); - ret = scan_dir(tmp); - free(tmp); + ret = scan_dir(entry->d_name, &this_dir_num); if (ret < 0) goto out; continue; @@ -462,7 +556,8 @@ int scan_dir(char *dirname) if (ret < 0) goto out; } - ret = add_directory(dirname, this_dir_num, &dir_size, &dir_files); + ret = add_directory(dirname, &this_dir_num, parent_dir_num, + &dir_size, &dir_files); out: closedir(dir); ret2 = para_fchdir(cwd_fd); @@ -472,15 +567,69 @@ out: return ret; } -static int get_dir_name(struct osl_row *row, char **name) +static int get_dir_name_by_number(uint64_t *dirnum, char **name) +{ + char *result = NULL, *tmp; + struct osl_row *row; + uint64_t val = *dirnum; + struct osl_object obj = {.data = &val, .size = sizeof(val)}; + int ret; + +again: + ret = osl(osl_get_row(dir_table, DT_NUM, &obj, &row)); + if (ret < 0) + goto out; + ret = osl(osl_get_object(dir_table, row, DT_NAME, &obj)); + if (ret < 0) + goto out; + if (result) { + tmp = make_message("%s/%s", (char *)obj.data, result); + free(result); + result = tmp; + } else + result = para_strdup((char *)obj.data); + ret = osl(osl_get_object(dir_table, row, DT_PARENT_NUM, &obj)); + if (ret < 0) + goto out; + val = *(uint64_t *)obj.data; + if (val) + goto again; +out: + if (ret < 0) { + free(result); + *name = NULL; + } else + *name = result; + return ret; +} + +static int get_dir_name_of_row(struct osl_row *dir_table_row, char **name) { struct osl_object obj; - int ret = osl_get_object(dir_table, row, DT_NAME, &obj); + int ret; + char *this_dir, *prefix = NULL; + *name = NULL; + ret = osl(osl_get_object(dir_table, dir_table_row, DT_NAME, &obj)); if (ret < 0) return ret; - *name = obj.data; - return 1; + this_dir = para_strdup((char *)obj.data); + ret = osl(osl_get_object(dir_table, dir_table_row, DT_PARENT_NUM, &obj)); + if (ret < 0) + goto out; + if (!*(uint64_t *)obj.data) { + *name = this_dir; + return 1; + } + ret = get_dir_name_by_number((uint64_t *)obj.data, &prefix); + if (ret < 0) + goto out; + *name = make_message("%s/%s", prefix, this_dir); + free(prefix); + ret = 1; +out: + free(this_dir); + return ret; } const uint64_t size_unit_divisors[] = { @@ -541,7 +690,7 @@ static int global_stats_loop_function(struct osl_row *row, void *data) if (!gsi->count && !summary) return -E_LOOP_COMPLETE; if (gsi->count && (gsi->flags & GSF_PRINT_DIRNAME)) { - ret = get_dir_name(row, &dirname); + ret = get_dir_name_of_row(row, &dirname); if (ret < 0) return ret; printf("%s%s", dirname, @@ -551,7 +700,7 @@ static int global_stats_loop_function(struct osl_row *row, void *data) } if (summary || (gsi->count && (gsi->flags & GSF_PRINT_FILES))) { uint64_t files; - ret = osl_get_object(dir_table, row, DT_FILES, &obj); + ret = osl(osl_get_object(dir_table, row, DT_FILES, &obj)); if (ret < 0) return ret; files = *(uint64_t *)obj.data; @@ -566,7 +715,7 @@ static int global_stats_loop_function(struct osl_row *row, void *data) } if (summary || (gsi->count && (gsi->flags & GSF_PRINT_BYTES))) { uint64_t bytes; - ret = osl_get_object(dir_table, row, DT_BYTES, &obj); + ret = osl(osl_get_object(dir_table, row, DT_BYTES, &obj)); if (ret < 0) return ret; bytes = *(uint64_t *)obj.data; @@ -593,7 +742,7 @@ static void print_id_stats(void) FOR_EACH_USER(ui) { char formated_dir_count[25], formated_file_count[25], formated_bytes[25]; - if (!ui->table) + if (!ui_used(ui)) continue; format_count_value(conf.count_unit_arg, ui->dirs, formated_dir_count); @@ -625,7 +774,6 @@ struct user_stats_info { static int user_stats_loop_function(struct osl_row *row, void *data) { struct user_stats_info *usi = data; - struct osl_row *dir_row; struct osl_object obj; int ret, summary = usi->flags & GSF_COMPUTE_SUMMARY; char formated_value[25]; @@ -634,16 +782,12 @@ static int user_stats_loop_function(struct osl_row *row, void *data) return -E_LOOP_COMPLETE; if (usi->count && (usi->flags & USF_PRINT_DIRNAME)) { char *dirname; - ret = osl_get_object(usi->ui->table, row, UT_DIR_NUM, &obj); - if (ret < 0) - return ret; - ret = osl_get_row(dir_table, DT_NUM, &obj, &dir_row); + ret = osl(osl_get_object(usi->ui->table, row, UT_DIR_NUM, &obj)); if (ret < 0) return ret; - ret = osl_get_object(dir_table, dir_row, DT_NAME, &obj); + ret = get_dir_name_by_number((uint64_t *)obj.data, &dirname); if (ret < 0) return ret; - dirname = obj.data; printf("%s%s", dirname, (usi->flags & (USF_PRINT_FILES | USF_PRINT_BYTES))? @@ -652,7 +796,7 @@ static int user_stats_loop_function(struct osl_row *row, void *data) } if (summary || (usi->count && (usi->flags & USF_PRINT_FILES))) { uint64_t files; - ret = osl_get_object(usi->ui->table, row, UT_FILES, &obj); + ret = osl(osl_get_object(usi->ui->table, row, UT_FILES, &obj)); if (ret < 0) return ret; files = *(uint64_t *)obj.data; @@ -668,7 +812,7 @@ static int user_stats_loop_function(struct osl_row *row, void *data) } if (summary || (usi->count && (usi->flags & USF_PRINT_BYTES))) { uint64_t bytes; - ret = osl_get_object(usi->ui->table, row, UT_BYTES, &obj); + ret = osl(osl_get_object(usi->ui->table, row, UT_BYTES, &obj)); if (ret < 0) return ret; bytes = *(uint64_t *)obj.data; @@ -697,21 +841,19 @@ static void print_user_stats(void) .count = conf.limit_arg, .ui = ui }; - if (!ui->table) + if (!ui_used(ui) || !ui_admissible(ui)) continue; usi.flags = USF_PRINT_DIRNAME | USF_PRINT_BYTES | USF_COMPUTE_SUMMARY; printf("************************************************ uid %u\n", (unsigned) ui->uid); - if (!ui->table) - continue; printf("----------------- Largest dirs -------------------\n"); - osl_rbtree_loop_reverse(ui->table, UT_BYTES, &usi, - user_stats_loop_function); + osl(osl_rbtree_loop_reverse(ui->table, UT_BYTES, &usi, + user_stats_loop_function)); printf("---------- dirs containing most files ------------\n"); usi.count = conf.limit_arg, usi.flags = USF_PRINT_DIRNAME | USF_PRINT_FILES; - osl_rbtree_loop_reverse(ui->table, UT_FILES, &usi, - user_stats_loop_function); + osl(osl_rbtree_loop_reverse(ui->table, UT_FILES, &usi, + user_stats_loop_function)); } } @@ -724,16 +866,16 @@ static int print_statistics(void) }; printf("----------------- Largest dirs -------------------\n"); - ret = osl_rbtree_loop_reverse(dir_table, DT_BYTES, &gsi, - global_stats_loop_function); + ret = osl(osl_rbtree_loop_reverse(dir_table, DT_BYTES, &gsi, + global_stats_loop_function)); if (ret < 0 && ret != -E_LOOP_COMPLETE) return ret; gsi.count = conf.limit_arg; gsi.flags = GSF_PRINT_DIRNAME | GSF_PRINT_FILES; printf("---------- dirs containing most files ------------\n"); - ret = osl_rbtree_loop_reverse(dir_table, DT_FILES, &gsi, - global_stats_loop_function); + ret = osl(osl_rbtree_loop_reverse(dir_table, DT_FILES, &gsi, + global_stats_loop_function)); if (ret < 0 && ret != -E_LOOP_COMPLETE) return ret; @@ -763,8 +905,9 @@ static int write_uid_list(void) return 0; buf = para_malloc(size); FOR_EACH_USER(ui) { - if (!ui->table) + if (!ui_used(ui) || !ui_admissible(ui)) continue; + DEBUG_LOG("saving uid %u\n", (unsigned) ui->uid); write_u32(buf + count++ * sizeof(uint32_t), ui->uid); } filename = get_uid_list_name(); @@ -778,7 +921,7 @@ static int open_dir_table(void) { if (!dir_table_desc.dir) /* we did not create the table */ dir_table_desc.dir = para_strdup(conf.database_dir_arg); - return osl_open_table(&dir_table_desc, &dir_table); + return osl(osl_open_table(&dir_table_desc, &dir_table)); } static void close_dir_table(void) @@ -787,9 +930,9 @@ static void close_dir_table(void) if (!dir_table) return; - ret = osl_close_table(dir_table, OSL_MARK_CLEAN); + ret = osl(osl_close_table(dir_table, OSL_MARK_CLEAN)); if (ret < 0) - ERROR_LOG("failed to close dir table: %s\n", error_txt(-ret)); + ERROR_LOG("failed to close dir table: %s\n", adu_strerror(-ret)); free((char *)dir_table_desc.dir); dir_table = NULL; } @@ -798,12 +941,12 @@ static void close_user_table(struct user_info *ui) { int ret; - if (!ui || !ui->table) + if (!ui || !ui_used(ui) || !ui_admissible(ui)) return; - ret = osl_close_table(ui->table, OSL_MARK_CLEAN); + ret = osl(osl_close_table(ui->table, OSL_MARK_CLEAN)); if (ret < 0) ERROR_LOG("failed to close user table %u: %s\n", - (unsigned) ui->uid, error_txt(-ret)); + (unsigned) ui->uid, adu_strerror(-ret)); free((char *)ui->desc->name); ui->desc->name = NULL; free((char *)ui->desc->dir); @@ -811,6 +954,7 @@ static void close_user_table(struct user_info *ui) free(ui->desc); ui->desc = NULL; ui->table = NULL; + ui->flags = 0; } static void close_user_tables(void) @@ -830,13 +974,15 @@ static void close_all_tables(void) static int com_create() { + uint64_t zero = 0ULL; int ret = create_tables(); + if (ret < 0) return ret; ret = open_dir_table(); if (ret < 0) return ret; - ret = scan_dir(conf.base_dir_arg); + ret = scan_dir(conf.base_dir_arg, &zero); if (ret < 0) goto out; ret = write_uid_list(); @@ -852,10 +998,14 @@ static int read_uid_file(void) char *filename = get_uid_list_name(), *map; int ret = mmap_full_file(filename, O_RDONLY, (void **)&map, &size, NULL); - free(filename); - if (ret < 0) + if (ret < 0) { + INFO_LOG("failed to map %s\n", filename); + free(filename); return ret; + } num_uids = size / 4; + INFO_LOG("found %u uids in %s\n", (unsigned)num_uids, filename); + free(filename); /* hash table size should be a power of two and larger than the number of uids */ uid_hash_table_size = 4; while (uid_hash_table_size < num_uids) @@ -882,9 +1032,41 @@ static int com_select(void) ret = read_uid_file(); if (ret < 0) return ret; - print_statistics(); + ret = print_statistics(); close_all_tables(); + return ret; +} + +static int check_args(void) +{ + int i, ret; + + /* remove trailing slashes from base-dir arg */ + if (conf.base_dir_given) { + size_t len = strlen(conf.base_dir_arg); + for (;;) { + if (!len) /* empty string */ + return -ERRNO_TO_ERROR(EINVAL); + if (!--len) /* length 1 is always OK */ + break; + if (conf.base_dir_arg[len] != '/') + break; /* no trailing slash, also OK */ + conf.base_dir_arg[len] = '\0'; + } + } + if (!conf.uid_given) + return 0; + admissible_uids = para_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) @@ -899,6 +1081,9 @@ int main(int argc, char **argv) }; cmdline_parser_ext(argc, argv, &conf, ¶ms); /* aborts on errors */ + ret = check_args(); + if (ret < 0) + goto out; ret = -E_SYNTAX; if (conf.select_given) ret = com_select(); @@ -907,8 +1092,9 @@ int main(int argc, char **argv) if (ret < 0) goto out; out: + free(admissible_uids); if (ret < 0) { - ERROR_LOG("%s\n", error_txt(-ret)); + ERROR_LOG("%s\n", adu_strerror(-ret)); return -EXIT_FAILURE; } return EXIT_SUCCESS;