2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* channel.c: Controls channels.
|
|
|
|
*
|
2014-03-03 05:25:47 +01:00
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 ircd-ratbox development team
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "channel.h"
|
2008-08-04 19:51:15 +02:00
|
|
|
#include "chmode.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "client.h"
|
|
|
|
#include "hash.h"
|
|
|
|
#include "hook.h"
|
2008-04-20 07:47:38 +02:00
|
|
|
#include "match.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "ircd.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "s_serv.h" /* captab */
|
|
|
|
#include "s_user.h"
|
|
|
|
#include "send.h"
|
|
|
|
#include "whowas.h"
|
|
|
|
#include "s_conf.h" /* ConfigFileEntry, ConfigChannel */
|
|
|
|
#include "s_newconf.h"
|
2008-04-03 04:52:01 +02:00
|
|
|
#include "logger.h"
|
2012-01-08 16:39:11 +01:00
|
|
|
#include "ipv4_from_ipv6.h"
|
2013-09-10 07:35:56 +02:00
|
|
|
#include "s_assert.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-06-28 10:02:51 +02:00
|
|
|
struct config_channel_entry ConfigChannel;
|
2008-06-28 10:00:01 +02:00
|
|
|
rb_dlink_list global_channel_list;
|
2008-06-28 09:54:51 +02:00
|
|
|
static rb_bh *channel_heap;
|
|
|
|
static rb_bh *ban_heap;
|
|
|
|
static rb_bh *topic_heap;
|
|
|
|
static rb_bh *member_heap;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
static void free_topic(struct Channel *chptr);
|
|
|
|
|
|
|
|
static int h_can_join;
|
2010-12-07 07:09:46 +01:00
|
|
|
static int h_can_send;
|
2010-12-07 05:57:28 +01:00
|
|
|
int h_get_channel_access;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* init_channels()
|
|
|
|
*
|
|
|
|
* input -
|
|
|
|
* output -
|
|
|
|
* side effects - initialises the various blockheaps
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
init_channels(void)
|
|
|
|
{
|
2008-04-02 02:56:51 +02:00
|
|
|
channel_heap = rb_bh_create(sizeof(struct Channel), CHANNEL_HEAP_SIZE, "channel_heap");
|
|
|
|
ban_heap = rb_bh_create(sizeof(struct Ban), BAN_HEAP_SIZE, "ban_heap");
|
|
|
|
topic_heap = rb_bh_create(TOPICLEN + 1 + USERHOST_REPLYLEN, TOPIC_HEAP_SIZE, "topic_heap");
|
|
|
|
member_heap = rb_bh_create(sizeof(struct membership), MEMBER_HEAP_SIZE, "member_heap");
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
h_can_join = register_hook("can_join");
|
2010-12-07 07:09:46 +01:00
|
|
|
h_can_send = register_hook("can_send");
|
2010-12-07 05:57:28 +01:00
|
|
|
h_get_channel_access = register_hook("get_channel_access");
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* allocate_channel - Allocates a channel
|
|
|
|
*/
|
|
|
|
struct Channel *
|
|
|
|
allocate_channel(const char *chname)
|
|
|
|
{
|
|
|
|
struct Channel *chptr;
|
2008-04-02 02:28:05 +02:00
|
|
|
chptr = rb_bh_alloc(channel_heap);
|
2008-04-02 01:26:34 +02:00
|
|
|
chptr->chname = rb_strdup(chname);
|
2007-01-25 07:40:21 +01:00
|
|
|
return (chptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
free_channel(struct Channel *chptr)
|
|
|
|
{
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_free(chptr->chname);
|
2010-04-30 23:01:21 +02:00
|
|
|
rb_free(chptr->mode_lock);
|
2008-04-02 02:28:05 +02:00
|
|
|
rb_bh_free(channel_heap, chptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Ban *
|
2011-08-13 02:33:10 +02:00
|
|
|
allocate_ban(const char *banstr, const char *who, const char *forward)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
struct Ban *bptr;
|
2008-04-02 02:28:05 +02:00
|
|
|
bptr = rb_bh_alloc(ban_heap);
|
2008-04-02 01:26:34 +02:00
|
|
|
bptr->banstr = rb_strdup(banstr);
|
|
|
|
bptr->who = rb_strdup(who);
|
2011-08-13 02:33:10 +02:00
|
|
|
bptr->forward = forward ? rb_strdup(forward) : NULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
return (bptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
free_ban(struct Ban *bptr)
|
|
|
|
{
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_free(bptr->banstr);
|
|
|
|
rb_free(bptr->who);
|
2011-08-13 02:33:10 +02:00
|
|
|
rb_free(bptr->forward);
|
2008-04-02 02:28:05 +02:00
|
|
|
rb_bh_free(ban_heap, bptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2010-12-16 07:09:29 +01:00
|
|
|
/*
|
|
|
|
* send_channel_join()
|
|
|
|
*
|
|
|
|
* input - channel to join, client joining.
|
|
|
|
* output - none
|
|
|
|
* side effects - none
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
send_channel_join(struct Channel *chptr, struct Client *client_p)
|
|
|
|
{
|
|
|
|
if (!IsClient(client_p))
|
|
|
|
return;
|
|
|
|
|
2010-12-16 07:24:54 +01:00
|
|
|
sendto_channel_local_with_capability(ALL_MEMBERS, NOCAPS, CLICAP_EXTENDED_JOIN, chptr, ":%s!%s@%s JOIN %s",
|
|
|
|
client_p->name, client_p->username, client_p->host, chptr->chname);
|
|
|
|
|
2011-01-11 00:26:15 +01:00
|
|
|
sendto_channel_local_with_capability(ALL_MEMBERS, CLICAP_EXTENDED_JOIN, NOCAPS, chptr, ":%s!%s@%s JOIN %s %s :%s",
|
2010-12-16 07:24:54 +01:00
|
|
|
client_p->name, client_p->username, client_p->host, chptr->chname,
|
|
|
|
EmptyString(client_p->user->suser) ? "*" : client_p->user->suser,
|
2011-01-11 00:26:15 +01:00
|
|
|
client_p->info);
|
2012-02-14 15:15:44 +01:00
|
|
|
|
|
|
|
/* Send away message to away-notify enabled clients. */
|
|
|
|
if (client_p->user->away)
|
|
|
|
sendto_channel_local_with_capability_butone(client_p, ALL_MEMBERS, CLICAP_AWAY_NOTIFY, NOCAPS, chptr,
|
|
|
|
":%s!%s@%s AWAY :%s", client_p->name, client_p->username,
|
|
|
|
client_p->host, client_p->user->away);
|
2010-12-16 07:09:29 +01:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* find_channel_membership()
|
|
|
|
*
|
|
|
|
* input - channel to find them in, client to find
|
|
|
|
* output - membership of client in channel, else NULL
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
struct membership *
|
|
|
|
find_channel_membership(struct Channel *chptr, struct Client *client_p)
|
|
|
|
{
|
|
|
|
struct membership *msptr;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(!IsClient(client_p))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Pick the most efficient list to use to be nice to things like
|
|
|
|
* CHANSERV which could be in a large number of channels
|
|
|
|
*/
|
2008-04-01 22:41:52 +02:00
|
|
|
if(rb_dlink_list_length(&chptr->members) < rb_dlink_list_length(&client_p->user->channel))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, chptr->members.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
msptr = ptr->data;
|
|
|
|
|
|
|
|
if(msptr->client_p == client_p)
|
|
|
|
return msptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
msptr = ptr->data;
|
|
|
|
|
|
|
|
if(msptr->chptr == chptr)
|
|
|
|
return msptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find_channel_status()
|
|
|
|
*
|
|
|
|
* input - membership to get status for, whether we can combine flags
|
|
|
|
* output - flags of user on channel
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
find_channel_status(struct membership *msptr, int combine)
|
|
|
|
{
|
|
|
|
static char buffer[3];
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = buffer;
|
|
|
|
|
|
|
|
if(is_chanop(msptr))
|
|
|
|
{
|
|
|
|
if(!combine)
|
|
|
|
return "@";
|
|
|
|
*p++ = '@';
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_voiced(msptr))
|
|
|
|
*p++ = '+';
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add_user_to_channel()
|
|
|
|
*
|
|
|
|
* input - channel to add client to, client to add, channel flags
|
2014-03-03 05:25:47 +01:00
|
|
|
* output -
|
2007-01-25 07:40:21 +01:00
|
|
|
* side effects - user is added to channel
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
add_user_to_channel(struct Channel *chptr, struct Client *client_p, int flags)
|
|
|
|
{
|
|
|
|
struct membership *msptr;
|
|
|
|
|
|
|
|
s_assert(client_p->user != NULL);
|
|
|
|
if(client_p->user == NULL)
|
|
|
|
return;
|
|
|
|
|
2008-04-02 02:28:05 +02:00
|
|
|
msptr = rb_bh_alloc(member_heap);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
msptr->chptr = chptr;
|
|
|
|
msptr->client_p = client_p;
|
|
|
|
msptr->flags = flags;
|
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkAdd(msptr, &msptr->usernode, &client_p->user->channel);
|
|
|
|
rb_dlinkAdd(msptr, &msptr->channode, &chptr->members);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(MyClient(client_p))
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkAdd(msptr, &msptr->locchannode, &chptr->locmembers);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* remove_user_from_channel()
|
|
|
|
*
|
|
|
|
* input - membership pointer to remove from channel
|
|
|
|
* output -
|
|
|
|
* side effects - membership (thus user) is removed from channel
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
remove_user_from_channel(struct membership *msptr)
|
|
|
|
{
|
|
|
|
struct Client *client_p;
|
|
|
|
struct Channel *chptr;
|
|
|
|
s_assert(msptr != NULL);
|
|
|
|
if(msptr == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
client_p = msptr->client_p;
|
|
|
|
chptr = msptr->chptr;
|
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkDelete(&msptr->usernode, &client_p->user->channel);
|
|
|
|
rb_dlinkDelete(&msptr->channode, &chptr->members);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(client_p->servptr == &me)
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
|
2007-01-25 07:40:21 +01:00
|
|
|
destroy_channel(chptr);
|
|
|
|
|
2008-04-02 02:28:05 +02:00
|
|
|
rb_bh_free(member_heap, msptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* remove_user_from_channels()
|
|
|
|
*
|
|
|
|
* input - user to remove from all channels
|
|
|
|
* output -
|
|
|
|
* side effects - user is removed from all channels
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
remove_user_from_channels(struct Client *client_p)
|
|
|
|
{
|
|
|
|
struct Channel *chptr;
|
|
|
|
struct membership *msptr;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(client_p == NULL)
|
|
|
|
return;
|
|
|
|
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, client_p->user->channel.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
msptr = ptr->data;
|
|
|
|
chptr = msptr->chptr;
|
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkDelete(&msptr->channode, &chptr->members);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(client_p->servptr == &me)
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkDelete(&msptr->locchannode, &chptr->locmembers);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
if(!(chptr->mode.mode & MODE_PERMANENT) && rb_dlink_list_length(&chptr->members) <= 0)
|
2007-01-25 07:40:21 +01:00
|
|
|
destroy_channel(chptr);
|
|
|
|
|
2008-04-02 02:28:05 +02:00
|
|
|
rb_bh_free(member_heap, msptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
client_p->user->channel.head = client_p->user->channel.tail = NULL;
|
|
|
|
client_p->user->channel.length = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* invalidate_bancache_user()
|
|
|
|
*
|
|
|
|
* input - user to invalidate ban cache for
|
|
|
|
* output -
|
|
|
|
* side effects - ban cache is invalidated for all memberships of that user
|
|
|
|
* to be used after a nick change
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
invalidate_bancache_user(struct Client *client_p)
|
|
|
|
{
|
|
|
|
struct membership *msptr;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(client_p == NULL)
|
|
|
|
return;
|
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
msptr = ptr->data;
|
|
|
|
msptr->bants = 0;
|
|
|
|
msptr->flags &= ~CHFL_BANNED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check_channel_name()
|
|
|
|
*
|
|
|
|
* input - channel name
|
2016-03-24 07:14:03 +01:00
|
|
|
* output - true if valid channel name, else false
|
2007-01-25 07:40:21 +01:00
|
|
|
* side effects -
|
|
|
|
*/
|
2016-03-24 06:54:39 +01:00
|
|
|
bool
|
2007-01-25 07:40:21 +01:00
|
|
|
check_channel_name(const char *name)
|
|
|
|
{
|
|
|
|
s_assert(name != NULL);
|
|
|
|
if(name == NULL)
|
2016-03-24 06:54:39 +01:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
for (; *name; ++name)
|
|
|
|
{
|
|
|
|
if(!IsChanChar(*name))
|
2016-03-24 06:54:39 +01:00
|
|
|
return false;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-03-24 06:54:39 +01:00
|
|
|
return true;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* free_channel_list()
|
|
|
|
*
|
2008-04-01 22:41:52 +02:00
|
|
|
* input - rb_dlink list to free
|
2007-01-25 07:40:21 +01:00
|
|
|
* output -
|
|
|
|
* side effects - list of b/e/I modes is cleared
|
|
|
|
*/
|
|
|
|
void
|
2008-04-01 22:41:52 +02:00
|
|
|
free_channel_list(rb_dlink_list * list)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Ban *actualBan;
|
|
|
|
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, list->head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
actualBan = ptr->data;
|
|
|
|
free_ban(actualBan);
|
|
|
|
}
|
|
|
|
|
|
|
|
list->head = list->tail = NULL;
|
|
|
|
list->length = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* destroy_channel()
|
|
|
|
*
|
|
|
|
* input - channel to destroy
|
|
|
|
* output -
|
|
|
|
* side effects - channel is obliterated
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
destroy_channel(struct Channel *chptr)
|
|
|
|
{
|
2008-04-02 00:47:17 +02:00
|
|
|
rb_dlink_node *ptr, *next_ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-02 00:47:17 +02:00
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->invites.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
del_invite(chptr, ptr->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free all bans/exceptions/denies */
|
|
|
|
free_channel_list(&chptr->banlist);
|
|
|
|
free_channel_list(&chptr->exceptlist);
|
|
|
|
free_channel_list(&chptr->invexlist);
|
2007-10-27 23:56:53 +02:00
|
|
|
free_channel_list(&chptr->quietlist);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* Free the topic */
|
|
|
|
free_topic(chptr);
|
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkDelete(&chptr->node, &global_channel_list);
|
2007-01-25 07:40:21 +01:00
|
|
|
del_from_channel_hash(chptr->chname, chptr);
|
|
|
|
free_channel(chptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* channel_pub_or_secret()
|
|
|
|
*
|
|
|
|
* input - channel
|
|
|
|
* output - "=" if public, "@" if secret, else "*"
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
static const char *
|
|
|
|
channel_pub_or_secret(struct Channel *chptr)
|
|
|
|
{
|
|
|
|
if(PubChannel(chptr))
|
|
|
|
return ("=");
|
|
|
|
else if(SecretChannel(chptr))
|
|
|
|
return ("@");
|
|
|
|
return ("*");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* channel_member_names()
|
|
|
|
*
|
|
|
|
* input - channel to list, client to list to, show endofnames
|
|
|
|
* output -
|
|
|
|
* side effects - client is given list of users on channel
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
channel_member_names(struct Channel *chptr, struct Client *client_p, int show_eon)
|
|
|
|
{
|
|
|
|
struct membership *msptr;
|
|
|
|
struct Client *target_p;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
char lbuf[BUFSIZE];
|
|
|
|
char *t;
|
|
|
|
int mlen;
|
|
|
|
int tlen;
|
|
|
|
int cur_len;
|
|
|
|
int is_member;
|
|
|
|
int stack = IsCapable(client_p, CLICAP_MULTI_PREFIX);
|
|
|
|
|
|
|
|
if(ShowChannel(client_p, chptr))
|
|
|
|
{
|
|
|
|
is_member = IsMember(client_p, chptr);
|
|
|
|
|
2016-02-10 02:25:32 +01:00
|
|
|
cur_len = mlen = sprintf(lbuf, form_str(RPL_NAMREPLY),
|
2007-01-25 07:40:21 +01:00
|
|
|
me.name, client_p->name,
|
|
|
|
channel_pub_or_secret(chptr), chptr->chname);
|
|
|
|
|
|
|
|
t = lbuf + cur_len;
|
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, chptr->members.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
msptr = ptr->data;
|
|
|
|
target_p = msptr->client_p;
|
|
|
|
|
|
|
|
if(IsInvisible(target_p) && !is_member)
|
|
|
|
continue;
|
|
|
|
|
2015-02-28 08:06:38 +01:00
|
|
|
if (IsCapable(client_p, CLICAP_USERHOST_IN_NAMES))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2015-02-28 08:06:38 +01:00
|
|
|
/* space, possible "@+" prefix */
|
|
|
|
if (cur_len + strlen(target_p->name) + strlen(target_p->username) + strlen(target_p->host) + 5 >= BUFSIZE - 5)
|
|
|
|
{
|
|
|
|
*(t - 1) = '\0';
|
|
|
|
sendto_one(client_p, "%s", lbuf);
|
|
|
|
cur_len = mlen;
|
|
|
|
t = lbuf + mlen;
|
|
|
|
}
|
|
|
|
|
2016-02-10 02:25:32 +01:00
|
|
|
tlen = sprintf(t, "%s%s!%s@%s ", find_channel_status(msptr, stack),
|
2015-02-28 08:06:38 +01:00
|
|
|
target_p->name, target_p->username, target_p->host);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* space, possible "@+" prefix */
|
|
|
|
if(cur_len + strlen(target_p->name) + 3 >= BUFSIZE - 3)
|
|
|
|
{
|
|
|
|
*(t - 1) = '\0';
|
|
|
|
sendto_one(client_p, "%s", lbuf);
|
|
|
|
cur_len = mlen;
|
|
|
|
t = lbuf + mlen;
|
|
|
|
}
|
|
|
|
|
2016-02-10 02:25:32 +01:00
|
|
|
tlen = sprintf(t, "%s%s ", find_channel_status(msptr, stack),
|
2015-02-28 08:06:38 +01:00
|
|
|
target_p->name);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cur_len += tlen;
|
|
|
|
t += tlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The old behaviour here was to always output our buffer,
|
|
|
|
* even if there are no clients we can show. This happens
|
|
|
|
* when a client does "NAMES" with no parameters, and all
|
|
|
|
* the clients on a -sp channel are +i. I dont see a good
|
|
|
|
* reason for keeping that behaviour, as it just wastes
|
|
|
|
* bandwidth. --anfl
|
|
|
|
*/
|
|
|
|
if(cur_len != mlen)
|
|
|
|
{
|
|
|
|
*(t - 1) = '\0';
|
|
|
|
sendto_one(client_p, "%s", lbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(show_eon)
|
|
|
|
sendto_one(client_p, form_str(RPL_ENDOFNAMES),
|
|
|
|
me.name, client_p->name, chptr->chname);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* del_invite()
|
|
|
|
*
|
|
|
|
* input - channel to remove invite from, client to remove
|
|
|
|
* output -
|
|
|
|
* side effects - user is removed from invite list, if exists
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
del_invite(struct Channel *chptr, struct Client *who)
|
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkFindDestroy(who, &chptr->invites);
|
|
|
|
rb_dlinkFindDestroy(chptr, &who->user->invited);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2012-01-08 16:21:07 +01:00
|
|
|
/* is_banned_list()
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
2012-01-08 16:21:07 +01:00
|
|
|
* input - channel to check bans for, ban list (banlist or quietlist),
|
|
|
|
* user to check bans against, optional prebuilt buffers,
|
|
|
|
* optional forward channel pointer
|
2007-01-25 07:40:21 +01:00
|
|
|
* output - 1 if banned, else 0
|
|
|
|
* side effects -
|
|
|
|
*/
|
2012-01-08 16:21:07 +01:00
|
|
|
static int
|
|
|
|
is_banned_list(struct Channel *chptr, rb_dlink_list *list,
|
|
|
|
struct Client *who, struct membership *msptr,
|
|
|
|
const char *s, const char *s2, const char **forward)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
|
|
|
|
char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
|
|
|
|
char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
|
2012-01-08 16:39:11 +01:00
|
|
|
char src_ip4host[NICKLEN + USERLEN + HOSTLEN + 6];
|
2007-01-25 07:40:21 +01:00
|
|
|
char *s3 = NULL;
|
2012-01-08 16:39:11 +01:00
|
|
|
char *s4 = NULL;
|
|
|
|
struct sockaddr_in ip4;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Ban *actualBan = NULL;
|
|
|
|
struct Ban *actualExcept = NULL;
|
|
|
|
|
|
|
|
if(!MyClient(who))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* if the buffers havent been built, do it here */
|
|
|
|
if(s == NULL)
|
|
|
|
{
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_host, "%s!%s@%s", who->name, who->username, who->host);
|
|
|
|
sprintf(src_iphost, "%s!%s@%s", who->name, who->username, who->sockhost);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
s = src_host;
|
|
|
|
s2 = src_iphost;
|
|
|
|
}
|
|
|
|
if(who->localClient->mangledhost != NULL)
|
|
|
|
{
|
|
|
|
/* if host mangling mode enabled, also check their real host */
|
|
|
|
if(!strcmp(who->host, who->localClient->mangledhost))
|
|
|
|
{
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->orighost);
|
2007-01-25 07:40:21 +01:00
|
|
|
s3 = src_althost;
|
|
|
|
}
|
|
|
|
/* if host mangling mode not enabled and no other spoof,
|
|
|
|
* also check the mangled form of their host */
|
|
|
|
else if (!IsDynSpoof(who))
|
|
|
|
{
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_althost, "%s!%s@%s", who->name, who->username, who->localClient->mangledhost);
|
2007-01-25 07:40:21 +01:00
|
|
|
s3 = src_althost;
|
|
|
|
}
|
|
|
|
}
|
2012-01-08 16:39:11 +01:00
|
|
|
#ifdef RB_IPV6
|
2016-03-20 07:54:24 +01:00
|
|
|
if(GET_SS_FAMILY(&who->localClient->ip) == AF_INET6 &&
|
2012-01-08 16:39:11 +01:00
|
|
|
ipv4_from_ipv6((const struct sockaddr_in6 *)&who->localClient->ip, &ip4))
|
|
|
|
{
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_ip4host, "%s!%s@", who->name, who->username);
|
2012-01-08 16:39:11 +01:00
|
|
|
s4 = src_ip4host + strlen(src_ip4host);
|
|
|
|
rb_inet_ntop_sock((struct sockaddr *)&ip4,
|
|
|
|
s4, src_ip4host + sizeof src_ip4host - s4);
|
|
|
|
s4 = src_ip4host;
|
|
|
|
}
|
|
|
|
#endif
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-01-08 16:21:07 +01:00
|
|
|
RB_DLINK_FOREACH(ptr, list->head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
actualBan = ptr->data;
|
|
|
|
if(match(actualBan->banstr, s) ||
|
|
|
|
match(actualBan->banstr, s2) ||
|
|
|
|
match_cidr(actualBan->banstr, s2) ||
|
|
|
|
match_extban(actualBan->banstr, who, chptr, CHFL_BAN) ||
|
2012-01-08 16:39:11 +01:00
|
|
|
(s3 != NULL && match(actualBan->banstr, s3))
|
|
|
|
#ifdef RB_IPV6
|
|
|
|
||
|
|
|
|
(s4 != NULL && (match(actualBan->banstr, s4) || match_cidr(actualBan->banstr, s4)))
|
|
|
|
#endif
|
|
|
|
)
|
2007-01-25 07:40:21 +01:00
|
|
|
break;
|
|
|
|
else
|
|
|
|
actualBan = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((actualBan != NULL) && ConfigChannel.use_except)
|
|
|
|
{
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, chptr->exceptlist.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
actualExcept = ptr->data;
|
|
|
|
|
|
|
|
/* theyre exempted.. */
|
|
|
|
if(match(actualExcept->banstr, s) ||
|
|
|
|
match(actualExcept->banstr, s2) ||
|
|
|
|
match_cidr(actualExcept->banstr, s2) ||
|
|
|
|
match_extban(actualExcept->banstr, who, chptr, CHFL_EXCEPTION) ||
|
|
|
|
(s3 != NULL && match(actualExcept->banstr, s3)))
|
|
|
|
{
|
|
|
|
/* cache the fact theyre not banned */
|
|
|
|
if(msptr != NULL)
|
|
|
|
{
|
|
|
|
msptr->bants = chptr->bants;
|
|
|
|
msptr->flags &= ~CHFL_BANNED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CHFL_EXCEPTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* cache the banned/not banned status */
|
|
|
|
if(msptr != NULL)
|
|
|
|
{
|
|
|
|
msptr->bants = chptr->bants;
|
|
|
|
|
|
|
|
if(actualBan != NULL)
|
|
|
|
{
|
|
|
|
msptr->flags |= CHFL_BANNED;
|
|
|
|
return CHFL_BAN;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
msptr->flags &= ~CHFL_BANNED;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-13 02:33:10 +02:00
|
|
|
if (actualBan && actualBan->forward && forward)
|
|
|
|
*forward = actualBan->forward;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
return ((actualBan ? CHFL_BAN : 0));
|
|
|
|
}
|
|
|
|
|
2012-01-08 16:21:07 +01:00
|
|
|
/* is_banned()
|
|
|
|
*
|
|
|
|
* input - channel to check bans for, user to check bans against
|
|
|
|
* optional prebuilt buffers, optional forward channel pointer
|
|
|
|
* output - 1 if banned, else 0
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
is_banned(struct Channel *chptr, struct Client *who, struct membership *msptr,
|
|
|
|
const char *s, const char *s2, const char **forward)
|
|
|
|
{
|
2015-12-13 15:13:52 +01:00
|
|
|
if (chptr->last_checked_client != NULL &&
|
|
|
|
who == chptr->last_checked_client &&
|
|
|
|
chptr->last_checked_type == CHFL_BAN &&
|
2015-12-13 15:17:04 +01:00
|
|
|
chptr->last_checked_ts > chptr->bants)
|
2015-12-13 15:13:52 +01:00
|
|
|
return chptr->last_checked_result;
|
|
|
|
|
2015-12-13 18:25:15 +01:00
|
|
|
chptr->last_checked_client = who;
|
2015-12-13 15:13:52 +01:00
|
|
|
chptr->last_checked_type = CHFL_BAN;
|
|
|
|
chptr->last_checked_result = is_banned_list(chptr, &chptr->banlist, who, msptr, s, s2, forward);
|
|
|
|
chptr->last_checked_ts = rb_current_time();
|
|
|
|
|
|
|
|
return chptr->last_checked_result;
|
2012-01-08 16:21:07 +01:00
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/* is_quieted()
|
|
|
|
*
|
|
|
|
* input - channel to check bans for, user to check bans against
|
|
|
|
* optional prebuilt buffers
|
|
|
|
* output - 1 if banned, else 0
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
is_quieted(struct Channel *chptr, struct Client *who, struct membership *msptr,
|
|
|
|
const char *s, const char *s2)
|
|
|
|
{
|
2015-12-13 15:13:52 +01:00
|
|
|
if (chptr->last_checked_client != NULL &&
|
|
|
|
who == chptr->last_checked_client &&
|
|
|
|
chptr->last_checked_type == CHFL_QUIET &&
|
2015-12-13 15:17:04 +01:00
|
|
|
chptr->last_checked_ts > chptr->bants)
|
2015-12-13 15:13:52 +01:00
|
|
|
return chptr->last_checked_result;
|
|
|
|
|
2015-12-13 18:25:15 +01:00
|
|
|
chptr->last_checked_client = who;
|
2015-12-13 15:13:52 +01:00
|
|
|
chptr->last_checked_type = CHFL_QUIET;
|
|
|
|
chptr->last_checked_result = is_banned_list(chptr, &chptr->quietlist, who, msptr, s, s2, NULL);
|
|
|
|
chptr->last_checked_ts = rb_current_time();
|
|
|
|
|
|
|
|
return chptr->last_checked_result;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* can_join()
|
|
|
|
*
|
|
|
|
* input - client to check, channel to check for, key
|
2011-08-13 02:33:10 +02:00
|
|
|
* output - reason for not being able to join, else 0, channel name to forward to
|
2007-01-25 07:40:21 +01:00
|
|
|
* side effects -
|
2010-08-29 21:07:44 +02:00
|
|
|
* caveats - this function should only be called on a local user.
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
int
|
2012-01-08 16:25:34 +01:00
|
|
|
can_join(struct Client *source_p, struct Channel *chptr, const char *key, const char **forward)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *invite = NULL;
|
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Ban *invex = NULL;
|
|
|
|
char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
|
|
|
|
char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
|
|
|
|
char src_althost[NICKLEN + USERLEN + HOSTLEN + 6];
|
|
|
|
int use_althost = 0;
|
2007-03-15 19:09:08 +01:00
|
|
|
int i = 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
hook_data_channel moduledata;
|
|
|
|
|
|
|
|
s_assert(source_p->localClient != NULL);
|
|
|
|
|
2010-12-07 06:52:44 +01:00
|
|
|
moduledata.client = source_p;
|
|
|
|
moduledata.chptr = chptr;
|
|
|
|
moduledata.approved = 0;
|
|
|
|
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_host, "%s!%s@%s", source_p->name, source_p->username, source_p->host);
|
|
|
|
sprintf(src_iphost, "%s!%s@%s", source_p->name, source_p->username, source_p->sockhost);
|
2007-01-25 07:40:21 +01:00
|
|
|
if(source_p->localClient->mangledhost != NULL)
|
|
|
|
{
|
|
|
|
/* if host mangling mode enabled, also check their real host */
|
|
|
|
if(!strcmp(source_p->host, source_p->localClient->mangledhost))
|
|
|
|
{
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->orighost);
|
2007-01-25 07:40:21 +01:00
|
|
|
use_althost = 1;
|
|
|
|
}
|
|
|
|
/* if host mangling mode not enabled and no other spoof,
|
|
|
|
* also check the mangled form of their host */
|
|
|
|
else if (!IsDynSpoof(source_p))
|
|
|
|
{
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_althost, "%s!%s@%s", source_p->name, source_p->username, source_p->localClient->mangledhost);
|
2007-01-25 07:40:21 +01:00
|
|
|
use_althost = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-13 02:33:10 +02:00
|
|
|
if((is_banned(chptr, source_p, NULL, src_host, src_iphost, forward)) == CHFL_BAN)
|
2010-12-07 06:52:44 +01:00
|
|
|
{
|
|
|
|
moduledata.approved = ERR_BANNEDFROMCHAN;
|
|
|
|
goto finish_join_check;
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-08-13 02:33:10 +02:00
|
|
|
if(*chptr->mode.key && (EmptyString(key) || irccmp(chptr->mode.key, key)))
|
|
|
|
{
|
|
|
|
moduledata.approved = ERR_BADCHANNELKEY;
|
|
|
|
goto finish_join_check;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All checks from this point on will forward... */
|
|
|
|
if(forward)
|
|
|
|
*forward = chptr->mode.forward;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if(chptr->mode.mode & MODE_INVITEONLY)
|
|
|
|
{
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(invite, source_p->user->invited.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2007-03-15 19:09:08 +01:00
|
|
|
if(invite->data == chptr)
|
2007-01-25 07:40:21 +01:00
|
|
|
break;
|
|
|
|
}
|
2007-03-15 19:09:08 +01:00
|
|
|
if(invite == NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
if(!ConfigChannel.use_invex)
|
2010-12-07 06:52:44 +01:00
|
|
|
moduledata.approved = ERR_INVITEONLYCHAN;
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, chptr->invexlist.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
invex = ptr->data;
|
|
|
|
if(match(invex->banstr, src_host)
|
|
|
|
|| match(invex->banstr, src_iphost)
|
|
|
|
|| match_cidr(invex->banstr, src_iphost)
|
|
|
|
|| match_extban(invex->banstr, source_p, chptr, CHFL_INVEX)
|
|
|
|
|| (use_althost && match(invex->banstr, src_althost)))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(ptr == NULL)
|
2010-12-07 06:52:44 +01:00
|
|
|
moduledata.approved = ERR_INVITEONLYCHAN;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(chptr->mode.limit &&
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_list_length(&chptr->members) >= (unsigned long) chptr->mode.limit)
|
2007-03-15 19:09:08 +01:00
|
|
|
i = ERR_CHANNELISFULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
if(chptr->mode.mode & MODE_REGONLY && EmptyString(source_p->user->suser))
|
2007-03-15 19:09:08 +01:00
|
|
|
i = ERR_NEEDREGGEDNICK;
|
2007-01-25 07:40:21 +01:00
|
|
|
/* join throttling stuff --nenolod */
|
2007-03-15 19:09:08 +01:00
|
|
|
else if(chptr->mode.join_num > 0 && chptr->mode.join_time > 0)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2014-03-03 05:25:47 +01:00
|
|
|
if ((rb_current_time() - chptr->join_delta <=
|
2007-01-25 07:40:21 +01:00
|
|
|
chptr->mode.join_time) && (chptr->join_count >=
|
|
|
|
chptr->mode.join_num))
|
2007-03-15 19:09:08 +01:00
|
|
|
i = ERR_THROTTLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allow /invite to override +l/+r/+j also -- jilles */
|
|
|
|
if (i != 0 && invite == NULL)
|
|
|
|
{
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(invite, source_p->user->invited.head)
|
2007-03-15 19:09:08 +01:00
|
|
|
{
|
|
|
|
if(invite->data == chptr)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (invite == NULL)
|
2010-12-07 06:52:44 +01:00
|
|
|
moduledata.approved = i;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2010-12-07 06:52:44 +01:00
|
|
|
finish_join_check:
|
2007-01-25 07:40:21 +01:00
|
|
|
call_hook(h_can_join, &moduledata);
|
|
|
|
|
|
|
|
return moduledata.approved;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* can_send()
|
|
|
|
*
|
|
|
|
* input - user to check in channel, membership pointer
|
|
|
|
* output - whether can explicitly send or not, else CAN_SEND_NONOP
|
|
|
|
* side effects -
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
can_send(struct Channel *chptr, struct Client *source_p, struct membership *msptr)
|
|
|
|
{
|
2010-12-07 07:09:46 +01:00
|
|
|
hook_data_channel_approval moduledata;
|
|
|
|
|
|
|
|
moduledata.approved = CAN_SEND_NONOP;
|
2015-12-10 08:00:32 +01:00
|
|
|
moduledata.dir = MODE_QUERY;
|
2010-12-07 07:09:46 +01:00
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if(IsServer(source_p) || IsService(source_p))
|
|
|
|
return CAN_SEND_OPV;
|
|
|
|
|
|
|
|
if(MyClient(source_p) && hash_find_resv(chptr->chname) &&
|
|
|
|
!IsOper(source_p) && !IsExemptResv(source_p))
|
2010-12-07 07:09:46 +01:00
|
|
|
moduledata.approved = CAN_SEND_NO;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(msptr == NULL)
|
|
|
|
{
|
|
|
|
msptr = find_channel_membership(chptr, source_p);
|
|
|
|
|
|
|
|
if(msptr == NULL)
|
|
|
|
{
|
|
|
|
/* if its +m or +n and theyre not in the channel,
|
|
|
|
* they cant send. we dont check bans here because
|
|
|
|
* theres no possibility of caching them --fl
|
|
|
|
*/
|
|
|
|
if(chptr->mode.mode & MODE_NOPRIVMSGS || chptr->mode.mode & MODE_MODERATED)
|
2010-12-07 07:09:46 +01:00
|
|
|
moduledata.approved = CAN_SEND_NO;
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2010-12-07 07:09:46 +01:00
|
|
|
moduledata.approved = CAN_SEND_NONOP;
|
2010-12-15 05:57:23 +01:00
|
|
|
|
|
|
|
return moduledata.approved;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(chptr->mode.mode & MODE_MODERATED)
|
2010-12-07 07:09:46 +01:00
|
|
|
moduledata.approved = CAN_SEND_NO;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(MyClient(source_p))
|
|
|
|
{
|
|
|
|
/* cached can_send */
|
|
|
|
if(msptr->bants == chptr->bants)
|
|
|
|
{
|
|
|
|
if(can_send_banned(msptr))
|
2010-12-07 07:09:46 +01:00
|
|
|
moduledata.approved = CAN_SEND_NO;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2011-08-13 02:33:10 +02:00
|
|
|
else if(is_banned(chptr, source_p, msptr, NULL, NULL, NULL) == CHFL_BAN
|
2007-01-25 07:40:21 +01:00
|
|
|
|| is_quieted(chptr, source_p, msptr, NULL, NULL) == CHFL_BAN)
|
2010-12-07 07:09:46 +01:00
|
|
|
moduledata.approved = CAN_SEND_NO;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2010-12-12 03:21:47 +01:00
|
|
|
if(is_chanop_voiced(msptr))
|
|
|
|
moduledata.approved = CAN_SEND_OPV;
|
|
|
|
|
2011-02-13 15:50:25 +01:00
|
|
|
moduledata.client = source_p;
|
|
|
|
moduledata.chptr = msptr->chptr;
|
|
|
|
moduledata.msptr = msptr;
|
|
|
|
moduledata.target = NULL;
|
2015-12-10 08:00:32 +01:00
|
|
|
moduledata.dir = (moduledata.approved == CAN_SEND_NO) ? MODE_ADD : MODE_QUERY;
|
2011-02-13 15:50:25 +01:00
|
|
|
|
2010-12-07 07:09:46 +01:00
|
|
|
call_hook(h_can_send, &moduledata);
|
|
|
|
|
|
|
|
return moduledata.approved;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2010-12-10 00:29:56 +01:00
|
|
|
/*
|
|
|
|
* flood_attack_channel
|
|
|
|
* inputs - flag 0 if PRIVMSG 1 if NOTICE. RFC
|
|
|
|
* says NOTICE must not auto reply
|
2014-03-03 05:25:47 +01:00
|
|
|
* - pointer to source Client
|
2016-03-24 07:19:30 +01:00
|
|
|
* - pointer to target channel
|
|
|
|
* output - true if target is under flood attack
|
2010-12-10 00:29:56 +01:00
|
|
|
* side effects - check for flood attack on target chptr
|
|
|
|
*/
|
2016-03-24 07:19:30 +01:00
|
|
|
bool
|
2010-12-10 00:29:56 +01:00
|
|
|
flood_attack_channel(int p_or_n, struct Client *source_p, struct Channel *chptr, char *chname)
|
|
|
|
{
|
|
|
|
int delta;
|
|
|
|
|
|
|
|
if(GlobalSetOptions.floodcount && MyClient(source_p))
|
|
|
|
{
|
|
|
|
if((chptr->first_received_message_time + 1) < rb_current_time())
|
|
|
|
{
|
|
|
|
delta = rb_current_time() - chptr->first_received_message_time;
|
|
|
|
chptr->received_number_of_privmsgs -= delta;
|
|
|
|
chptr->first_received_message_time = rb_current_time();
|
|
|
|
if(chptr->received_number_of_privmsgs <= 0)
|
|
|
|
{
|
|
|
|
chptr->received_number_of_privmsgs = 0;
|
|
|
|
chptr->flood_noticed = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if((chptr->received_number_of_privmsgs >= GlobalSetOptions.floodcount)
|
|
|
|
|| chptr->flood_noticed)
|
|
|
|
{
|
|
|
|
if(chptr->flood_noticed == 0)
|
|
|
|
{
|
|
|
|
sendto_realops_snomask(SNO_BOTS, *chptr->chname == '&' ? L_ALL : L_NETWIDE,
|
|
|
|
"Possible Flooder %s[%s@%s] on %s target: %s",
|
|
|
|
source_p->name, source_p->username,
|
|
|
|
source_p->orighost,
|
|
|
|
source_p->servptr->name, chptr->chname);
|
|
|
|
chptr->flood_noticed = 1;
|
|
|
|
|
|
|
|
/* Add a bit of penalty */
|
|
|
|
chptr->received_number_of_privmsgs += 2;
|
|
|
|
}
|
|
|
|
if(MyClient(source_p) && (p_or_n != 1))
|
|
|
|
sendto_one(source_p,
|
|
|
|
":%s NOTICE %s :*** Message to %s throttled due to flooding",
|
|
|
|
me.name, source_p->name, chptr->chname);
|
2016-03-24 07:19:30 +01:00
|
|
|
return true;
|
2010-12-10 00:29:56 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
chptr->received_number_of_privmsgs++;
|
|
|
|
}
|
|
|
|
|
2016-03-24 07:19:30 +01:00
|
|
|
return false;
|
2010-12-10 00:29:56 +01:00
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/* find_bannickchange_channel()
|
|
|
|
* Input: client to check
|
|
|
|
* Output: channel preventing nick change
|
|
|
|
*/
|
|
|
|
struct Channel *
|
|
|
|
find_bannickchange_channel(struct Client *client_p)
|
|
|
|
{
|
|
|
|
struct Channel *chptr;
|
|
|
|
struct membership *msptr;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
char src_host[NICKLEN + USERLEN + HOSTLEN + 6];
|
|
|
|
char src_iphost[NICKLEN + USERLEN + HOSTLEN + 6];
|
|
|
|
|
|
|
|
if (!MyClient(client_p))
|
|
|
|
return NULL;
|
|
|
|
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(src_host, "%s!%s@%s", client_p->name, client_p->username, client_p->host);
|
|
|
|
sprintf(src_iphost, "%s!%s@%s", client_p->name, client_p->username, client_p->sockhost);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, client_p->user->channel.head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
msptr = ptr->data;
|
|
|
|
chptr = msptr->chptr;
|
|
|
|
if (is_chanop_voiced(msptr))
|
|
|
|
continue;
|
|
|
|
/* cached can_send */
|
|
|
|
if (msptr->bants == chptr->bants)
|
|
|
|
{
|
|
|
|
if (can_send_banned(msptr))
|
|
|
|
return chptr;
|
|
|
|
}
|
2011-08-13 02:33:10 +02:00
|
|
|
else if (is_banned(chptr, client_p, msptr, src_host, src_iphost, NULL) == CHFL_BAN
|
2007-01-25 07:40:21 +01:00
|
|
|
|| is_quieted(chptr, client_p, msptr, src_host, src_iphost) == CHFL_BAN)
|
|
|
|
return chptr;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void check_spambot_warning(struct Client *source_p)
|
|
|
|
* Input: Client to check, channel name or NULL if this is a part.
|
|
|
|
* Output: none
|
|
|
|
* Side-effects: Updates the client's oper_warn_count_down, warns the
|
|
|
|
* IRC operators if necessary, and updates join_leave_countdown as
|
|
|
|
* needed.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
check_spambot_warning(struct Client *source_p, const char *name)
|
|
|
|
{
|
|
|
|
int t_delta;
|
|
|
|
int decrement_count;
|
|
|
|
if((GlobalSetOptions.spam_num &&
|
|
|
|
(source_p->localClient->join_leave_count >= GlobalSetOptions.spam_num)))
|
|
|
|
{
|
|
|
|
if(source_p->localClient->oper_warn_count_down > 0)
|
|
|
|
source_p->localClient->oper_warn_count_down--;
|
|
|
|
else
|
|
|
|
source_p->localClient->oper_warn_count_down = 0;
|
2008-11-08 17:22:41 +01:00
|
|
|
if(source_p->localClient->oper_warn_count_down == 0 &&
|
|
|
|
name != NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
/* Its already known as a possible spambot */
|
2008-11-08 17:22:41 +01:00
|
|
|
sendto_realops_snomask(SNO_BOTS, L_NETWIDE,
|
|
|
|
"User %s (%s@%s) trying to join %s is a possible spambot",
|
|
|
|
source_p->name,
|
|
|
|
source_p->username, source_p->orighost, name);
|
2007-01-25 07:40:21 +01:00
|
|
|
source_p->localClient->oper_warn_count_down = OPER_SPAM_COUNTDOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if((t_delta =
|
2008-04-02 01:53:20 +02:00
|
|
|
(rb_current_time() - source_p->localClient->last_leave_time)) >
|
2007-01-25 07:40:21 +01:00
|
|
|
JOIN_LEAVE_COUNT_EXPIRE_TIME)
|
|
|
|
{
|
|
|
|
decrement_count = (t_delta / JOIN_LEAVE_COUNT_EXPIRE_TIME);
|
2010-02-21 01:29:41 +01:00
|
|
|
if(name != NULL)
|
|
|
|
;
|
|
|
|
else if(decrement_count > source_p->localClient->join_leave_count)
|
2007-01-25 07:40:21 +01:00
|
|
|
source_p->localClient->join_leave_count = 0;
|
|
|
|
else
|
|
|
|
source_p->localClient->join_leave_count -= decrement_count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-04-02 01:53:20 +02:00
|
|
|
if((rb_current_time() -
|
2007-01-25 07:40:21 +01:00
|
|
|
(source_p->localClient->last_join_time)) < GlobalSetOptions.spam_time)
|
|
|
|
{
|
|
|
|
/* oh, its a possible spambot */
|
|
|
|
source_p->localClient->join_leave_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(name != NULL)
|
2008-04-02 01:53:20 +02:00
|
|
|
source_p->localClient->last_join_time = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2008-04-02 01:53:20 +02:00
|
|
|
source_p->localClient->last_leave_time = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check_splitmode()
|
|
|
|
*
|
|
|
|
* input -
|
|
|
|
* output -
|
|
|
|
* side effects - compares usercount and servercount against their split
|
|
|
|
* values and adjusts splitmode accordingly
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
check_splitmode(void *unused)
|
|
|
|
{
|
|
|
|
if(splitchecking && (ConfigChannel.no_join_on_split || ConfigChannel.no_create_on_split))
|
|
|
|
{
|
|
|
|
/* not split, we're being asked to check now because someone
|
|
|
|
* has left
|
|
|
|
*/
|
|
|
|
if(!splitmode)
|
|
|
|
{
|
|
|
|
if(eob_count < split_servers || Count.total < split_users)
|
|
|
|
{
|
|
|
|
splitmode = 1;
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Network split, activating splitmode");
|
2008-04-02 02:56:51 +02:00
|
|
|
check_splitmode_ev = rb_event_addish("check_splitmode", check_splitmode, NULL, 2);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* in splitmode, check whether its finished */
|
|
|
|
else if(eob_count >= split_servers && Count.total >= split_users)
|
|
|
|
{
|
|
|
|
splitmode = 0;
|
|
|
|
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Network rejoined, deactivating splitmode");
|
|
|
|
|
2008-04-02 02:56:51 +02:00
|
|
|
rb_event_delete(check_splitmode_ev);
|
2008-06-29 01:37:11 +02:00
|
|
|
check_splitmode_ev = NULL;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* allocate_topic()
|
|
|
|
*
|
|
|
|
* input - channel to allocate topic for
|
|
|
|
* output - 1 on success, else 0
|
|
|
|
* side effects - channel gets a topic allocated
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
allocate_topic(struct Channel *chptr)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if(chptr == NULL)
|
|
|
|
return;
|
|
|
|
|
2008-04-02 02:28:05 +02:00
|
|
|
ptr = rb_bh_alloc(topic_heap);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* Basically we allocate one large block for the topic and
|
|
|
|
* the topic info. We then split it up into two and shove it
|
2014-03-03 05:25:47 +01:00
|
|
|
* in the chptr
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
chptr->topic = ptr;
|
|
|
|
chptr->topic_info = (char *) ptr + TOPICLEN + 1;
|
|
|
|
*chptr->topic = '\0';
|
|
|
|
*chptr->topic_info = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* free_topic()
|
|
|
|
*
|
|
|
|
* input - channel which has topic to free
|
|
|
|
* output -
|
|
|
|
* side effects - channels topic is free'd
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
free_topic(struct Channel *chptr)
|
|
|
|
{
|
|
|
|
void *ptr;
|
|
|
|
|
|
|
|
if(chptr == NULL || chptr->topic == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* This is safe for now - If you change allocate_topic you
|
|
|
|
* MUST change this as well
|
|
|
|
*/
|
|
|
|
ptr = chptr->topic;
|
2008-04-02 02:28:05 +02:00
|
|
|
rb_bh_free(topic_heap, ptr);
|
2007-01-25 07:40:21 +01:00
|
|
|
chptr->topic = NULL;
|
|
|
|
chptr->topic_info = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set_channel_topic()
|
|
|
|
*
|
|
|
|
* input - channel, topic to set, topic info and topic ts
|
|
|
|
* output -
|
|
|
|
* side effects - channels topic, topic info and TS are set.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
set_channel_topic(struct Channel *chptr, const char *topic, const char *topic_info, time_t topicts)
|
|
|
|
{
|
|
|
|
if(strlen(topic) > 0)
|
|
|
|
{
|
|
|
|
if(chptr->topic == NULL)
|
|
|
|
allocate_topic(chptr);
|
2008-04-20 06:40:40 +02:00
|
|
|
rb_strlcpy(chptr->topic, topic, TOPICLEN + 1);
|
|
|
|
rb_strlcpy(chptr->topic_info, topic_info, USERHOST_REPLYLEN);
|
2007-01-25 07:40:21 +01:00
|
|
|
chptr->topic_time = topicts;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(chptr->topic != NULL)
|
|
|
|
free_topic(chptr);
|
|
|
|
chptr->topic_time = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-02 22:29:22 +02:00
|
|
|
/* channel_modes()
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
|
|
|
* inputs - pointer to channel
|
|
|
|
* - pointer to client
|
2007-04-27 01:01:16 +02:00
|
|
|
* output - string with simple modes
|
|
|
|
* side effects - result from previous calls overwritten
|
2007-01-25 07:40:21 +01:00
|
|
|
*
|
|
|
|
* Stolen from ShadowIRCd 4 --nenolod
|
|
|
|
*/
|
|
|
|
const char *
|
2010-05-02 22:29:22 +02:00
|
|
|
channel_modes(struct Channel *chptr, struct Client *client_p)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
char buf1[BUFSIZE];
|
|
|
|
char buf2[BUFSIZE];
|
|
|
|
static char final[BUFSIZE];
|
|
|
|
char *mbuf = buf1;
|
|
|
|
char *pbuf = buf2;
|
|
|
|
|
|
|
|
*mbuf++ = '+';
|
|
|
|
*pbuf = '\0';
|
|
|
|
|
2008-06-24 18:45:19 +02:00
|
|
|
for (i = 0; i < 256; i++)
|
2016-01-13 23:34:27 +01:00
|
|
|
{
|
|
|
|
if(chmode_table[i].set_func == chm_hidden && (!IsOper(client_p) || !IsClient(client_p)))
|
|
|
|
continue;
|
2010-05-02 22:29:22 +02:00
|
|
|
if(chptr->mode.mode & chmode_flags[i])
|
2008-06-24 18:45:19 +02:00
|
|
|
*mbuf++ = i;
|
2016-01-13 23:34:27 +01:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2010-05-02 22:29:22 +02:00
|
|
|
if(chptr->mode.limit)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
*mbuf++ = 'l';
|
|
|
|
|
2007-04-27 01:01:16 +02:00
|
|
|
if(!IsClient(client_p) || IsMember(client_p, chptr))
|
2016-02-10 02:25:32 +01:00
|
|
|
pbuf += sprintf(pbuf, " %d", chptr->mode.limit);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2010-05-02 22:29:22 +02:00
|
|
|
if(*chptr->mode.key)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
*mbuf++ = 'k';
|
|
|
|
|
2007-04-27 01:01:16 +02:00
|
|
|
if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
|
2016-02-10 02:25:32 +01:00
|
|
|
pbuf += sprintf(pbuf, " %s", chptr->mode.key);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2010-05-02 22:29:22 +02:00
|
|
|
if(chptr->mode.join_num)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
*mbuf++ = 'j';
|
|
|
|
|
2007-04-27 01:01:16 +02:00
|
|
|
if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
|
2016-02-10 02:25:32 +01:00
|
|
|
pbuf += sprintf(pbuf, " %d:%d", chptr->mode.join_num,
|
2010-05-02 22:29:22 +02:00
|
|
|
chptr->mode.join_time);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2011-09-25 16:22:29 +02:00
|
|
|
if(*chptr->mode.forward &&
|
|
|
|
(ConfigChannel.use_forward || !IsClient(client_p)))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
*mbuf++ = 'f';
|
|
|
|
|
2007-04-27 01:01:16 +02:00
|
|
|
if(pbuf > buf2 || !IsClient(client_p) || IsMember(client_p, chptr))
|
2016-02-10 02:25:32 +01:00
|
|
|
pbuf += sprintf(pbuf, " %s", chptr->mode.forward);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
*mbuf = '\0';
|
|
|
|
|
2008-04-20 06:40:40 +02:00
|
|
|
rb_strlcpy(final, buf1, sizeof final);
|
2008-04-20 06:44:04 +02:00
|
|
|
rb_strlcat(final, buf2, sizeof final);
|
2007-01-25 07:40:21 +01:00
|
|
|
return final;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* void send_cap_mode_changes(struct Client *client_p,
|
|
|
|
* struct Client *source_p,
|
|
|
|
* struct Channel *chptr, int cap, int nocap)
|
|
|
|
* Input: The client sending(client_p), the source client(source_p),
|
|
|
|
* the channel to send mode changes for(chptr)
|
|
|
|
* Output: None.
|
|
|
|
* Side-effects: Sends the appropriate mode changes to capable servers.
|
|
|
|
*
|
|
|
|
* Reverted back to my original design, except that we now keep a count
|
|
|
|
* of the number of servers which each combination as an optimisation, so
|
|
|
|
* the capabs combinations which are not needed are not worked out. -A1kmm
|
2012-02-04 08:47:46 +01:00
|
|
|
*
|
|
|
|
* Removed most code here because we don't need to be compatible with ircd
|
|
|
|
* 2.8.21+CSr and stuff. --nenolod
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
send_cap_mode_changes(struct Client *client_p, struct Client *source_p,
|
|
|
|
struct Channel *chptr, struct ChModeChange mode_changes[], int mode_count)
|
|
|
|
{
|
|
|
|
static char modebuf[BUFSIZE];
|
|
|
|
static char parabuf[BUFSIZE];
|
|
|
|
int i, mbl, pbl, nc, mc, preflen, len;
|
|
|
|
char *pbuf;
|
|
|
|
const char *arg;
|
2012-02-04 08:47:46 +01:00
|
|
|
int dir;
|
2007-01-25 07:40:21 +01:00
|
|
|
int arglen;
|
|
|
|
|
|
|
|
/* Now send to servers... */
|
2012-02-04 08:47:46 +01:00
|
|
|
mc = 0;
|
|
|
|
nc = 0;
|
|
|
|
pbl = 0;
|
|
|
|
parabuf[0] = 0;
|
|
|
|
pbuf = parabuf;
|
|
|
|
dir = MODE_QUERY;
|
|
|
|
|
2016-02-10 02:25:32 +01:00
|
|
|
mbl = preflen = sprintf(modebuf, ":%s TMODE %ld %s ",
|
2012-02-04 08:47:46 +01:00
|
|
|
use_id(source_p), (long) chptr->channelts,
|
|
|
|
chptr->chname);
|
|
|
|
|
|
|
|
/* loop the list of - modes we have */
|
|
|
|
for (i = 0; i < mode_count; i++)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2012-02-04 08:47:46 +01:00
|
|
|
/* if they dont support the cap we need, or they do support a cap they
|
|
|
|
* cant have, then dont add it to the modebuf.. that way they wont see
|
|
|
|
* the mode
|
|
|
|
*/
|
|
|
|
if (mode_changes[i].letter == 0)
|
2007-01-25 07:40:21 +01:00
|
|
|
continue;
|
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
if (!EmptyString(mode_changes[i].id))
|
|
|
|
arg = mode_changes[i].id;
|
|
|
|
else
|
|
|
|
arg = mode_changes[i].arg;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
if(arg)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2012-02-04 08:47:46 +01:00
|
|
|
arglen = strlen(arg);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
/* dont even think about it! --fl */
|
|
|
|
if(arglen > MODEBUFLEN - 5)
|
|
|
|
continue;
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
/* if we're creeping past the buf size, we need to send it and make
|
|
|
|
* another line for the other modes
|
|
|
|
* XXX - this could give away server topology with uids being
|
|
|
|
* different lengths, but not much we can do, except possibly break
|
|
|
|
* them as if they were the longest of the nick or uid at all times,
|
|
|
|
* which even then won't work as we don't always know the uid -A1kmm.
|
|
|
|
*/
|
|
|
|
if(arg && ((mc == MAXMODEPARAMSSERV) ||
|
|
|
|
((mbl + pbl + arglen + 4) > (BUFSIZE - 3))))
|
|
|
|
{
|
|
|
|
if(nc != 0)
|
2014-05-29 16:07:45 +02:00
|
|
|
sendto_server(client_p, chptr, NOCAPS, NOCAPS,
|
2012-02-04 08:47:46 +01:00
|
|
|
"%s %s", modebuf, parabuf);
|
|
|
|
nc = 0;
|
|
|
|
mc = 0;
|
|
|
|
|
|
|
|
mbl = preflen;
|
|
|
|
pbl = 0;
|
|
|
|
pbuf = parabuf;
|
|
|
|
parabuf[0] = 0;
|
|
|
|
dir = MODE_QUERY;
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
if(dir != mode_changes[i].dir)
|
|
|
|
{
|
|
|
|
modebuf[mbl++] = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
|
|
|
|
dir = mode_changes[i].dir;
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
modebuf[mbl++] = mode_changes[i].letter;
|
|
|
|
modebuf[mbl] = 0;
|
|
|
|
nc++;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
if(arg != NULL)
|
|
|
|
{
|
2016-02-10 02:25:32 +01:00
|
|
|
len = sprintf(pbuf, "%s ", arg);
|
2012-02-04 08:47:46 +01:00
|
|
|
pbuf += len;
|
|
|
|
pbl += len;
|
|
|
|
mc++;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2012-02-04 08:47:46 +01:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
if(pbl && parabuf[pbl - 1] == ' ')
|
|
|
|
parabuf[pbl - 1] = 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
if(nc != 0)
|
2014-05-29 16:07:45 +02:00
|
|
|
sendto_server(client_p, chptr, NOCAPS, NOCAPS, "%s %s", modebuf, parabuf);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2010-03-27 16:13:57 +01:00
|
|
|
|
2012-02-04 08:47:46 +01:00
|
|
|
void
|
2010-03-27 16:13:57 +01:00
|
|
|
resv_chan_forcepart(const char *name, const char *reason, int temp_time)
|
|
|
|
{
|
|
|
|
rb_dlink_node *ptr;
|
|
|
|
rb_dlink_node *next_ptr;
|
|
|
|
struct Channel *chptr;
|
|
|
|
struct membership *msptr;
|
|
|
|
struct Client *target_p;
|
|
|
|
|
|
|
|
if(!ConfigChannel.resv_forcepart)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* for each user on our server in the channel list
|
|
|
|
* send them a PART, and notify opers.
|
|
|
|
*/
|
|
|
|
chptr = find_channel(name);
|
|
|
|
if(chptr != NULL)
|
|
|
|
{
|
|
|
|
RB_DLINK_FOREACH_SAFE(ptr, next_ptr, chptr->locmembers.head)
|
|
|
|
{
|
|
|
|
msptr = ptr->data;
|
|
|
|
target_p = msptr->client_p;
|
|
|
|
|
|
|
|
if(IsExemptResv(target_p))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sendto_server(target_p, chptr, CAP_TS6, NOCAPS,
|
|
|
|
":%s PART %s", target_p->id, chptr->chname);
|
|
|
|
|
|
|
|
sendto_channel_local(ALL_MEMBERS, chptr, ":%s!%s@%s PART %s :%s",
|
|
|
|
target_p->name, target_p->username,
|
|
|
|
target_p->host, chptr->chname, target_p->name);
|
|
|
|
|
|
|
|
remove_user_from_channel(msptr);
|
|
|
|
|
|
|
|
/* notify opers & user they were removed from the channel */
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
|
|
|
"Forced PART for %s!%s@%s from %s (%s)",
|
2014-03-03 05:25:47 +01:00
|
|
|
target_p->name, target_p->username,
|
2010-03-27 16:13:57 +01:00
|
|
|
target_p->host, name, reason);
|
|
|
|
|
|
|
|
if(temp_time > 0)
|
|
|
|
sendto_one_notice(target_p, ":*** Channel %s is temporarily unavailable on this server.",
|
|
|
|
name);
|
|
|
|
else
|
|
|
|
sendto_one_notice(target_p, ":*** Channel %s is no longer available on this server.",
|
|
|
|
name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|