X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=user_list.c;h=030865fad614a3a9b2b190da0e3cf1d9ceb94a25;hp=dfd8248c7f21940d7a94b9fe79442f02693a070a;hb=089fb2fb2d9e2a3473aa6fac91681ca8ddfffff3;hpb=6a2dbfdb87b3036085ce664a847fc9eb419f65d4 diff --git a/user_list.c b/user_list.c index dfd8248c..030865fa 100644 --- a/user_list.c +++ b/user_list.c @@ -39,25 +39,49 @@ again: goto again; } -/* - * Fill the list of users known to para_server. +/** + * Remove all entries from the user list. + * + * This is called on shutdown and when the user list is reloaded because the + * server received SIGHUP. + */ +void user_list_deplete(void) +{ + struct user *u, *tmpu; + + list_for_each_entry_safe(u, tmpu, &user_list, node) { + list_del(&u->node); + free(u->name); + free_public_key(u->pubkey); + free(u); + } +} + +/** + * Initialize the list of users allowed to connect to para_server. + * + * \param user_list_file The file containing access information. + * + * If this function is called for the second time, the contents of the + * previous call are discarded, i.e. the user list is reloaded. * - * Populates a linked list of all users in \a user_list_file. Returns on - * success, calls exit() on errors. + * This function either succeeds or calls exit(3). */ -static void populate(char *user_list_file) +void user_list_init(const char *user_list_file) { int ret = -E_USERLIST; FILE *file_ptr = fopen(user_list_file, "r"); + struct user *u; if (!file_ptr) goto err; + + user_list_deplete(); for (;;) { int num; char line[255]; /* keyword, name, key, perms */ char w[255], n[255], k[255], p[255], tmp[4][255]; - struct user *u; struct asymmetric_key *pubkey; ret = xfgets(line, sizeof(line), file_ptr); @@ -117,27 +141,6 @@ err: exit(EXIT_FAILURE); } -/** - * Initialize the list of users allowed to connect to para_server. - * - * \param user_list_file The file containing access information. - * - * If this function is called for the second time, the contents of the - * previous call are discarded, i.e. the user list is reloaded. - */ -void user_list_init(char *user_list_file) -{ - struct user *u, *tmp; - - list_for_each_entry_safe(u, tmp, &user_list, node) { - list_del(&u->node); - free(u->name); - free_public_key(u->pubkey); - free(u); - } - populate(user_list_file); -} - /** * Lookup a user in the user list. *