X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Flists.c;h=21058a03116298b6cc81ff98f40b40d0c9caa502;hp=cc50dc1202ff0667399071f52bb131db4c713f34;hb=a14eb495b75c8c2a2a32ddb6eecf50dc174f811c;hpb=6d28127154459360f55337ebc9dcc070e9ebf0b5 diff --git a/src/ngircd/lists.c b/src/ngircd/lists.c index cc50dc12..21058a03 100644 --- a/src/ngircd/lists.c +++ b/src/ngircd/lists.c @@ -1,97 +1,421 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) + * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors. * - * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen - * der GNU General Public License (GPL), wie von der Free Software Foundation - * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 - * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. - * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste - * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. - * - * $Id: lists.c,v 1.2 2002/06/02 15:23:16 alex Exp $ - * - * lists.c: Verwaltung der "IRC-Listen": Ban, Invite, ... + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * Please read the file COPYING, README and AUTHORS for more information. */ - #include "portab.h" +/** + * @file + * Management of IRC lists: ban, invite, etc. + */ + #include "imp.h" #include +#include "defines.h" #include "conn.h" -#include "client.h" #include "channel.h" +#include "log.h" +#include "match.h" +#include "messages.h" +#include "irc-write.h" + +#include +#include +#include #include "exp.h" #include "lists.h" +#define MASK_LEN (2*CLIENT_HOST_LEN) -typedef struct _C2C -{ - struct _C2C *next; - CLIENT *client; - CHANNEL *channel; -} C2C; +struct list_elem { + struct list_elem *next; /** pointer to next list element */ + char mask[MASK_LEN]; /** IRC mask */ + char *reason; /** Optional "reason" text */ + time_t valid_until; /** 0: unlimited; 1: once; t(>1): until t */ +}; +/** + * Get IRC mask stored in list element. + * + * @param list_elem List element. + * @return Pointer to IRC mask + */ +GLOBAL const char * +Lists_GetMask(const struct list_elem *e) +{ + assert(e != NULL); + return e->mask; +} -LOCAL C2C *My_Invites, *My_Bans; +/** + * Get optional "reason" text stored in list element. + * + * @param list_elem List element. + * @return Pointer to "reason" text or empty string (""). + */ +GLOBAL const char * +Lists_GetReason(const struct list_elem *e) +{ + assert(e != NULL); + return e->reason ? e->reason : ""; +} +/** + * Get "validity" value stored in list element. + * + * @param list_elem List element. + * @return Validity: 0=unlimited, 1=once, >1 until this time stamp. + */ +GLOBAL time_t +Lists_GetValidity(const struct list_elem *e) +{ + assert(e != NULL); + return e->valid_until; +} -LOCAL C2C *New_C2C PARAMS(( CLIENT *Client, CHANNEL *Chan )); +/** + * Get first list element of a list. + * + * @param h List head. + * @return Pointer to first list element. + */ +GLOBAL struct list_elem* +Lists_GetFirst(const struct list_head *h) +{ + assert(h != NULL); + return h->first; +} +/** + * Get next list element of a list. + * + * @param e Current list element. + * @return Pointer to next list element. + */ +GLOBAL struct list_elem* +Lists_GetNext(const struct list_elem *e) +{ + assert(e != NULL); + return e->next; +} -GLOBAL VOID -Lists_Init( VOID ) +/** + * Add a new mask to a list. + * + * @param h List head. + * @param Mask The IRC mask to add to the list. + * @param ValidUntil 0: unlimited, 1: only once, t>1: until given time_t. + * @param Reason Reason string or NULL, if no reason should be saved. + * @return true on success, false otherwise. + */ +bool +Lists_Add(struct list_head *h, const char *Mask, time_t ValidUntil, + const char *Reason) { - /* Modul initialisieren */ + struct list_elem *e, *newelem; + + assert(h != NULL); + assert(Mask != NULL); + + e = Lists_CheckDupeMask(h, Mask); + if (e) { + e->valid_until = ValidUntil; + if (Reason) { + free(e->reason); + e->reason = strdup(Reason); + } + return true; + } + + e = Lists_GetFirst(h); - My_Invites = My_Bans = NULL; -} /* Lists_Init */ + newelem = malloc(sizeof(struct list_elem)); + if (!newelem) { + Log(LOG_EMERG, + "Can't allocate memory for new list entry!"); + return false; + } + strlcpy(newelem->mask, Mask, sizeof(newelem->mask)); + if (Reason) { + newelem->reason = strdup(Reason); + if (!newelem->reason) + Log(LOG_EMERG, + "Can't allocate memory for new list reason text!"); + } + else + newelem->reason = NULL; + newelem->valid_until = ValidUntil; + newelem->next = e; + h->first = newelem; -GLOBAL VOID -Lists_Exit( VOID ) + return true; +} + +/** + * Delete a list element from a list. + * + * @param h List head. + * @param p Pointer to previous list element or NULL, if there is none. + * @param victim List element to delete. + */ +static void +Lists_Unlink(struct list_head *h, struct list_elem *p, struct list_elem *victim) { - /* Modul abmelden */ -} /* Lists_Exit */ + assert(victim != NULL); + assert(h != NULL); + + if (p) + p->next = victim->next; + else + h->first = victim->next; + + if (victim->reason) + free(victim->reason); + free(victim); +} -GLOBAL BOOLEAN -Lists_CheckInvited( CLIENT *Client, CHANNEL *Chan ) +/** + * Delete a given IRC mask from a list. + * + * @param h List head. + * @param Mask IRC mask to delete from the list. + */ +GLOBAL void +Lists_Del(struct list_head *h, const char *Mask) { - assert( Client != NULL ); - assert( Chan != NULL ); + struct list_elem *e, *last, *victim; - return FALSE; -} /* Lists_CheckInvited */ + assert(h != NULL); + assert(Mask != NULL); + last = NULL; + e = Lists_GetFirst(h); + while (e) { + if (strcasecmp(e->mask, Mask) == 0) { + LogDebug("Deleted \"%s\" from list", e->mask); + victim = e; + e = victim->next; + Lists_Unlink(h, last, victim); + continue; + } + last = e; + e = e->next; + } +} -GLOBAL VOID -Lists_AddInvited( CHAR *Pattern, CHANNEL *Chan ) +/** + * Free a complete list. + * + * @param head List head. + */ +GLOBAL void +Lists_Free(struct list_head *head) { -} /* Lists_AddInvited */ + struct list_elem *e, *victim; + assert(head != NULL); -GLOBAL BOOLEAN -Lists_CheckBanned( CLIENT *Client, CHANNEL *Chan ) + e = head->first; + head->first = NULL; + while (e) { + LogDebug("Deleted \"%s\" from list" , e->mask); + victim = e; + e = e->next; + if (victim->reason) + free(victim->reason); + free(victim); + } +} + +/** + * Check if an IRC mask is already contained in a list. + * + * @param h List head. + * @param Mask IRC mask to test. + * @return true if mask is already stored in the list, false otherwise. + */ +GLOBAL struct list_elem * +Lists_CheckDupeMask(const struct list_head *h, const char *Mask ) +{ + struct list_elem *e; + e = h->first; + while (e) { + if (strcasecmp(e->mask, Mask) == 0) + return e; + e = e->next; + } + return NULL; +} + +/** + * Generate a valid IRC mask from "any" string given. + * + * Attention: This mask is only valid until the next call to Lists_MakeMask(), + * because a single global buffer ist used! You have to copy the generated + * mask to some sane location yourself! + * + * @param Pattern Source string to generate an IRC mask for. + * @return Pointer to global result buffer. + */ +GLOBAL const char * +Lists_MakeMask(const char *Pattern) { - assert( Client != NULL ); - assert( Chan != NULL ); + static char TheMask[MASK_LEN]; + char *excl, *at; - return FALSE; -} /* Lists_CheckBanned */ + assert(Pattern != NULL); + excl = strchr(Pattern, '!'); + at = strchr(Pattern, '@'); -LOCAL C2C * -New_C2C( CLIENT *Client, CHANNEL *Chan ) + if (at && at < excl) + excl = NULL; + + if (!at && !excl) { + /* Neither "!" nor "@" found: use string as nickname */ + strlcpy(TheMask, Pattern, sizeof(TheMask) - 5); + strlcat(TheMask, "!*@*", sizeof(TheMask)); + return TheMask; + } + + if (!at && excl) { + /* Domain part is missing */ + strlcpy(TheMask, Pattern, sizeof(TheMask) - 3); + strlcat(TheMask, "@*", sizeof(TheMask)); + return TheMask; + } + + if (at && !excl) { + /* User name is missing */ + *at = '\0'; at++; + strlcpy(TheMask, Pattern, sizeof(TheMask) - 5); + strlcat(TheMask, "!*@", sizeof(TheMask)); + strlcat(TheMask, at, sizeof(TheMask)); + return TheMask; + } + + /* All parts (nick, user and domain name) are given */ + strlcpy(TheMask, Pattern, sizeof(TheMask)); + return TheMask; +} /* Lists_MakeMask */ + +/** + * Check if a client is listed in a list. + * + * @param h List head. + * @param Client Client to check. + * @return true if client is listed, false if not. + */ +bool +Lists_Check(struct list_head *h, CLIENT *Client) { - assert( Client != NULL ); - assert( Chan != NULL ); + return Lists_CheckReason(h, Client) != NULL; +} + +/** + * Check if a client is listed in a list and return the "reason". + * + * @param h List head. + * @param Client Client to check. + * @return true if client is listed, false if not. + */ +char * +Lists_CheckReason(struct list_head *h, CLIENT *Client) +{ + struct list_elem *e, *last, *next; + + assert(h != NULL); + + e = h->first; + last = NULL; + + while (e) { + next = e->next; + if (Match(e->mask, Client_MaskCloaked(Client))) { + if (e->valid_until == 1) { + /* Entry is valid only once, delete it */ + LogDebug("Deleted \"%s\" from list (used).", + e->mask); + Lists_Unlink(h, last, e); + } + return e->reason ? e->reason : ""; + } + last = e; + e = next; + } return NULL; -} /* New_C2C */ +} + +/** + * Check list and purge expired entries. + * + * @param h List head. + */ +GLOBAL void +Lists_Expire(struct list_head *h, const char *ListName) +{ + struct list_elem *e, *last, *next; + time_t now; + + assert(h != NULL); + + e = h->first; + last = NULL; + now = time(NULL); + + while (e) { + next = e->next; + if (e->valid_until > 1 && e->valid_until < now) { + /* Entry is expired, delete it */ + if (e->reason) + Log(LOG_INFO, + "Deleted \"%s\" (\"%s\") from %s list (expired).", + e->mask, e->reason, ListName); + else + Log(LOG_INFO, + "Deleted \"%s\" from %s list (expired).", + e->mask, ListName); + Lists_Unlink(h, last, e); + e = next; + continue; + } + last = e; + e = next; + } +} + +/** + * Return the number of entries of a list. + * + * @param h List head. + * @return Number of items. + */ +GLOBAL unsigned long +Lists_Count(struct list_head *h) +{ + struct list_elem *e; + unsigned long count = 0; + + assert(h != NULL); + e = h->first; + while (e) { + count++; + e = e->next; + } + return count; +} /* -eof- */