X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=blobdiff_plain;f=adu.h;h=f8ef9c2ddf53af4a6c44ff9b3193487cbf8c9838;hp=775af7faef3c85bfc3890e87426b044f161a552b;hb=b01ff57775258c8df4c486b0962fc67cfdfef439;hpb=f732616f8be8b2c8b4137108faa25eeaccb77499 diff --git a/adu.h b/adu.h index 775af7f..f8ef9c2 100644 --- a/adu.h +++ b/adu.h @@ -4,11 +4,11 @@ * Licensed under the GPL v2. For licencing details see COPYING. */ -/** \file para.h global paraslash definitions */ +/** \file adu.h Global definitions. */ #include #include -#include +#include #include #include #include /* time(), localtime() */ @@ -16,23 +16,12 @@ #include #include #include -#include -#include -#include -#include -#include /* needed by create_pf_socket */ +#include #include #include #include #include "gcc-compat.h" -/** compute the minimum of \a a and \a b */ -#define MIN(a,b) ((a) < (b) ? (a) : (b)) -/** compute the maximum of \a a and \a b */ -#define MAX(a,b) ((a) > (b) ? (a) : (b)) -/** compute the absolute value of \a a */ -#define ABS(a) ((a) > 0 ? (a) : -(a)) - /** debug loglevel, gets really noisy */ #define DEBUG 1 /** still noisy, but won't fill your disk */ @@ -94,7 +83,6 @@ #define EMERG_LOG(...) #endif /** \endcond */ -__printf_2_3 void __log(int, const char*, ...); /** * Write a log message to a dynamically allocated string. @@ -125,3 +113,86 @@ __printf_2_3 void __log(int, const char*, ...); p = adu_realloc(p, size); \ } \ } + +/** 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 columns of the directory table. */ +enum dir_table_columns { + /** The name of the directory. */ + 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. */ + DT_FILES, + /** Number of columns in this table. */ + NUM_DT_COLUMNS +}; + +/** The columns of the id table. */ +enum user_table_columns { + /** The numer of the directory. */ + UT_DIR_NUM, + /** The number of bytes of all regular files in this dir owned by this id. */ + UT_BYTES, + /** The number of files in this dir owned by this id. */ + UT_FILES, + /** Number of columns in this table. */ + NUM_UT_COLUMNS +}; + +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; + char *pw_name; + struct osl_table *table; + uint64_t files; + uint64_t bytes; + uint64_t dirs; + struct osl_table_description *desc; +}; + +struct uid_range { + uint32_t low; + uint32_t high; +}; + +enum search_uid_flags { + OPEN_USER_TABLE = 1, + CREATE_USER_TABLE = 2, +}; + +extern uint32_t num_uids; +extern struct osl_table *dir_table; +extern struct gengetopt_args_info conf; + +/* adu.c */ +__printf_2_3 void __log(int, const char*, ...); +int open_dir_table(int create); +void check_signals(void); +void close_all_tables(void); +char *get_uid_list_name(void); +void create_hash_table(unsigned bits); +int search_uid(uint32_t uid, enum search_uid_flags flags, + struct user_info **ui_ptr); +int for_each_admissible_user(int (*func)(struct user_info *, void *), + void *data); +void sort_hash_table(int (*comp)(const void *, const void *)); + +/* select.c */ +int com_select(void); + +/* create.h */ +int com_create(void); +int com_interactive(void);