2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* charybdis: A slightly useful ircd.
|
|
|
|
* chmode.c: channel mode management
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Copyright (C) 2005-2006 charybdis development team
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
2007-11-08 00:45:14 +01:00
|
|
|
* $Id: chmode.c 3580 2007-11-07 23:45:14Z jilles $
|
2007-01-25 07:40:21 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "channel.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "common.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"
|
2008-04-08 21:39:35 +02:00
|
|
|
#include "chmode.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* bitmasks for error returns, so we send once per call */
|
|
|
|
#define SM_ERR_NOTS 0x00000001 /* No TS on channel */
|
|
|
|
#define SM_ERR_NOOPS 0x00000002 /* No chan ops */
|
|
|
|
#define SM_ERR_UNKNOWN 0x00000004
|
|
|
|
#define SM_ERR_RPL_C 0x00000008
|
|
|
|
#define SM_ERR_RPL_B 0x00000010
|
|
|
|
#define SM_ERR_RPL_E 0x00000020
|
|
|
|
#define SM_ERR_NOTONCHANNEL 0x00000040 /* Not on channel */
|
|
|
|
#define SM_ERR_RPL_I 0x00000100
|
|
|
|
#define SM_ERR_RPL_D 0x00000200
|
|
|
|
#define SM_ERR_NOPRIVS 0x00000400
|
|
|
|
#define SM_ERR_RPL_Q 0x00000800
|
|
|
|
#define SM_ERR_RPL_F 0x00001000
|
2010-08-24 23:03:23 +02:00
|
|
|
#define SM_ERR_MLOCK 0x00002000
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-06-25 19:27:30 +02:00
|
|
|
#define MAXMODES_SIMPLE 46 /* a-zA-Z except bqeIov */
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
static struct ChModeChange mode_changes[BUFSIZE];
|
|
|
|
static int mode_count;
|
|
|
|
static int mode_limit;
|
2008-06-25 19:27:30 +02:00
|
|
|
static int mode_limit_simple;
|
2007-01-25 07:40:21 +01:00
|
|
|
static int mask_pos;
|
|
|
|
|
2008-06-25 05:51:32 +02:00
|
|
|
char cflagsbuf[256];
|
|
|
|
char cflagsmyinfo[256];
|
|
|
|
|
2008-06-24 18:45:19 +02:00
|
|
|
int chmode_flags[256];
|
2008-07-27 10:10:48 +02:00
|
|
|
|
2010-12-07 05:57:28 +01:00
|
|
|
extern int h_get_channel_access;
|
|
|
|
|
2008-06-25 05:13:58 +02:00
|
|
|
/* OPTIMIZE ME! -- dwr */
|
2008-06-24 18:45:19 +02:00
|
|
|
void
|
2010-04-01 01:16:16 +02:00
|
|
|
construct_cflags_strings(void)
|
2008-06-24 18:45:19 +02:00
|
|
|
{
|
|
|
|
int i;
|
2008-06-25 05:51:32 +02:00
|
|
|
char *ptr = cflagsbuf;
|
|
|
|
char *ptr2 = cflagsmyinfo;
|
|
|
|
|
|
|
|
*ptr = '\0';
|
|
|
|
*ptr2 = '\0';
|
2008-06-24 18:45:19 +02:00
|
|
|
|
|
|
|
for(i = 0; i < 256; i++)
|
|
|
|
{
|
2008-06-24 20:21:26 +02:00
|
|
|
if( !(chmode_table[i].set_func == chm_ban) &&
|
|
|
|
!(chmode_table[i].set_func == chm_forward) &&
|
|
|
|
!(chmode_table[i].set_func == chm_throttle) &&
|
|
|
|
!(chmode_table[i].set_func == chm_key) &&
|
|
|
|
!(chmode_table[i].set_func == chm_limit) &&
|
|
|
|
!(chmode_table[i].set_func == chm_op) &&
|
|
|
|
!(chmode_table[i].set_func == chm_voice))
|
2008-06-24 18:45:19 +02:00
|
|
|
{
|
|
|
|
chmode_flags[i] = chmode_table[i].mode_type;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
chmode_flags[i] = 0;
|
|
|
|
}
|
2008-06-25 05:13:58 +02:00
|
|
|
|
2008-06-25 05:51:32 +02:00
|
|
|
switch (chmode_flags[i])
|
|
|
|
{
|
|
|
|
case MODE_EXLIMIT:
|
|
|
|
case MODE_DISFORWARD:
|
|
|
|
if(ConfigChannel.use_forward)
|
|
|
|
{
|
|
|
|
*ptr++ = (char) i;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case MODE_REGONLY:
|
|
|
|
if(rb_dlink_list_length(&service_list))
|
|
|
|
{
|
|
|
|
*ptr++ = (char) i;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if(chmode_flags[i] != 0)
|
|
|
|
{
|
|
|
|
*ptr++ = (char) i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Should we leave orphaned check here? -- dwr */
|
|
|
|
if(!(chmode_table[i].set_func == chm_nosuch) && !(chmode_table[i].set_func == chm_orphaned))
|
|
|
|
{
|
|
|
|
*ptr2++ = (char) i;
|
|
|
|
}
|
2008-06-24 18:45:19 +02:00
|
|
|
}
|
2008-06-25 05:51:32 +02:00
|
|
|
|
|
|
|
*ptr++ = '\0';
|
|
|
|
*ptr2++ = '\0';
|
2008-06-24 19:26:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* find_umode_slot
|
|
|
|
*
|
|
|
|
* inputs - NONE
|
|
|
|
* outputs - an available cflag bitmask or
|
|
|
|
* 0 if no cflags are available
|
|
|
|
* side effects - NONE
|
|
|
|
*/
|
2010-04-01 01:16:16 +02:00
|
|
|
static unsigned int
|
2008-06-24 19:26:49 +02:00
|
|
|
find_cflag_slot(void)
|
|
|
|
{
|
|
|
|
unsigned int all_cflags = 0, my_cflag = 0, i;
|
|
|
|
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
all_cflags |= chmode_flags[i];
|
|
|
|
|
|
|
|
for (my_cflag = 1; my_cflag && (all_cflags & my_cflag);
|
|
|
|
my_cflag <<= 1);
|
|
|
|
|
|
|
|
return my_cflag;
|
2008-06-24 18:45:19 +02:00
|
|
|
}
|
|
|
|
|
2010-04-01 01:16:16 +02:00
|
|
|
unsigned int
|
|
|
|
cflag_add(char c_, ChannelModeFunc function)
|
|
|
|
{
|
|
|
|
int c = (unsigned char)c_;
|
|
|
|
|
|
|
|
if (chmode_table[c].set_func != chm_nosuch &&
|
|
|
|
chmode_table[c].set_func != chm_orphaned)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (chmode_table[c].set_func == chm_nosuch)
|
|
|
|
chmode_table[c].mode_type = find_cflag_slot();
|
|
|
|
if (chmode_table[c].mode_type == 0)
|
|
|
|
return 0;
|
|
|
|
chmode_table[c].set_func = function;
|
|
|
|
construct_cflags_strings();
|
|
|
|
return chmode_table[c].mode_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
cflag_orphan(char c_)
|
|
|
|
{
|
|
|
|
int c = (unsigned char)c_;
|
|
|
|
|
|
|
|
s_assert(chmode_flags[c] != 0);
|
|
|
|
chmode_table[c].set_func = chm_orphaned;
|
|
|
|
construct_cflags_strings();
|
|
|
|
}
|
|
|
|
|
2010-12-07 07:12:36 +01:00
|
|
|
int
|
2011-07-06 19:35:11 +02:00
|
|
|
get_channel_access(struct Client *source_p, struct membership *msptr, int role)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2010-12-07 05:57:28 +01:00
|
|
|
hook_data_channel_approval moduledata;
|
|
|
|
|
|
|
|
if(!MyClient(source_p))
|
2007-01-25 07:40:21 +01:00
|
|
|
return CHFL_CHANOP;
|
|
|
|
|
2010-12-15 06:04:11 +01:00
|
|
|
if (msptr == NULL)
|
|
|
|
return CHFL_PEON;
|
|
|
|
|
2010-12-07 05:57:28 +01:00
|
|
|
moduledata.client = source_p;
|
|
|
|
moduledata.chptr = msptr->chptr;
|
|
|
|
moduledata.msptr = msptr;
|
|
|
|
moduledata.target = NULL;
|
2011-07-06 19:35:11 +02:00
|
|
|
|
|
|
|
/* Check if they have the proper role */
|
|
|
|
if(HasChanRole(msptr, role))
|
|
|
|
moduledata.approved = CHFL_CHANOP;
|
|
|
|
else
|
|
|
|
moduledata.approved = CHFL_PEON;
|
|
|
|
|
2010-12-07 05:57:28 +01:00
|
|
|
call_hook(h_get_channel_access, &moduledata);
|
|
|
|
|
|
|
|
return moduledata.approved;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* add_id()
|
|
|
|
*
|
|
|
|
* inputs - client, channel, id to add, type
|
|
|
|
* outputs - 0 on failure, 1 on success
|
|
|
|
* side effects - given id is added to the appropriate list
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
add_id(struct Client *source_p, struct Channel *chptr, const char *banid,
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_list * list, long mode_type)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
struct Ban *actualBan;
|
2007-11-08 00:45:14 +01:00
|
|
|
static char who[USERHOST_REPLYLEN];
|
2007-01-25 07:40:21 +01:00
|
|
|
char *realban = LOCAL_COPY(banid);
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* dont let local clients overflow the banlist, or set redundant
|
|
|
|
* bans
|
|
|
|
*/
|
|
|
|
if(MyClient(source_p))
|
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
if((rb_dlink_list_length(&chptr->banlist) + rb_dlink_list_length(&chptr->exceptlist) + rb_dlink_list_length(&chptr->invexlist) + rb_dlink_list_length(&chptr->quietlist)) >= (chptr->mode.mode & MODE_EXLIMIT ? ConfigChannel.max_bans_large : ConfigChannel.max_bans))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_BANLISTFULL),
|
|
|
|
me.name, source_p->name, chptr->chname, realban);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, list->head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
actualBan = ptr->data;
|
2007-07-14 15:34:50 +02:00
|
|
|
if(mask_match(actualBan->banstr, realban))
|
2007-01-25 07:40:21 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* dont let remotes set duplicates */
|
|
|
|
else
|
|
|
|
{
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, list->head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
actualBan = ptr->data;
|
|
|
|
if(!irccmp(actualBan->banstr, realban))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(IsPerson(source_p))
|
2008-04-01 22:38:40 +02:00
|
|
|
rb_sprintf(who, "%s!%s@%s", source_p->name, source_p->username, source_p->host);
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2008-04-20 06:40:40 +02:00
|
|
|
rb_strlcpy(who, source_p->name, sizeof(who));
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
actualBan = allocate_ban(realban, who);
|
2008-04-02 01:53:20 +02:00
|
|
|
actualBan->when = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkAdd(actualBan, &actualBan->node, list);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* invalidate the can_send() cache */
|
|
|
|
if(mode_type == CHFL_BAN || mode_type == CHFL_QUIET || mode_type == CHFL_EXCEPTION)
|
|
|
|
chptr->bants++;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* del_id()
|
|
|
|
*
|
|
|
|
* inputs - channel, id to remove, type
|
|
|
|
* outputs - 0 on failure, 1 on success
|
|
|
|
* side effects - given id is removed from the appropriate list
|
|
|
|
*/
|
|
|
|
int
|
2008-04-01 22:41:52 +02:00
|
|
|
del_id(struct Channel *chptr, const char *banid, rb_dlink_list * list, long mode_type)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Ban *banptr;
|
|
|
|
|
|
|
|
if(EmptyString(banid))
|
|
|
|
return 0;
|
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, list->head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
banptr = ptr->data;
|
|
|
|
|
|
|
|
if(irccmp(banid, banptr->banstr) == 0)
|
|
|
|
{
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlinkDelete(&banptr->node, list);
|
2007-01-25 07:40:21 +01:00
|
|
|
free_ban(banptr);
|
|
|
|
|
|
|
|
/* invalidate the can_send() cache */
|
|
|
|
if(mode_type == CHFL_BAN || mode_type == CHFL_QUIET || mode_type == CHFL_EXCEPTION)
|
|
|
|
chptr->bants++;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check_string()
|
|
|
|
*
|
|
|
|
* input - string to check
|
|
|
|
* output - pointer to 'fixed' string, or "*" if empty
|
|
|
|
* side effects - any white space found becomes \0
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
check_string(char *s)
|
|
|
|
{
|
|
|
|
char *str = s;
|
|
|
|
static char splat[] = "*";
|
|
|
|
if(!(s && *s))
|
|
|
|
return splat;
|
|
|
|
|
|
|
|
for(; *s; ++s)
|
|
|
|
{
|
|
|
|
if(IsSpace(*s))
|
|
|
|
{
|
|
|
|
*s = '\0';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pretty_mask()
|
|
|
|
*
|
|
|
|
* inputs - mask to pretty
|
|
|
|
* outputs - better version of the mask
|
|
|
|
* side effects - mask is chopped to limits, and transformed:
|
|
|
|
* x!y@z => x!y@z
|
|
|
|
* y@z => *!y@z
|
|
|
|
* x!y => x!y@*
|
|
|
|
* x => x!*@*
|
|
|
|
* z.d => *!*@z.d
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
pretty_mask(const char *idmask)
|
|
|
|
{
|
|
|
|
static char mask_buf[BUFSIZE];
|
|
|
|
int old_mask_pos;
|
|
|
|
char *nick, *user, *host;
|
|
|
|
char splat[] = "*";
|
|
|
|
char *t, *at, *ex;
|
|
|
|
char ne = 0, ue = 0, he = 0; /* save values at nick[NICKLEN], et all */
|
|
|
|
char *mask;
|
|
|
|
|
|
|
|
mask = LOCAL_COPY(idmask);
|
|
|
|
mask = check_string(mask);
|
|
|
|
collapse(mask);
|
|
|
|
|
|
|
|
nick = user = host = splat;
|
|
|
|
|
|
|
|
if((size_t) BUFSIZE - mask_pos < strlen(mask) + 5)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
old_mask_pos = mask_pos;
|
|
|
|
|
|
|
|
if (*mask == '$')
|
|
|
|
{
|
2008-04-01 22:38:40 +02:00
|
|
|
mask_pos += rb_sprintf(mask_buf + mask_pos, "%s", mask) + 1;
|
2007-01-25 07:40:21 +01:00
|
|
|
t = mask_buf + old_mask_pos + 1;
|
|
|
|
if (*t == '!')
|
|
|
|
*t = '~';
|
|
|
|
if (*t == '~')
|
|
|
|
t++;
|
|
|
|
*t = ToLower(*t);
|
|
|
|
return mask_buf + old_mask_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
at = ex = NULL;
|
|
|
|
if((t = strchr(mask, '@')) != NULL)
|
|
|
|
{
|
|
|
|
at = t;
|
|
|
|
*t++ = '\0';
|
|
|
|
if(*t != '\0')
|
|
|
|
host = t;
|
|
|
|
|
|
|
|
if((t = strchr(mask, '!')) != NULL)
|
|
|
|
{
|
|
|
|
ex = t;
|
|
|
|
*t++ = '\0';
|
|
|
|
if(*t != '\0')
|
|
|
|
user = t;
|
|
|
|
if(*mask != '\0')
|
|
|
|
nick = mask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(*mask != '\0')
|
|
|
|
user = mask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if((t = strchr(mask, '!')) != NULL)
|
|
|
|
{
|
|
|
|
ex = t;
|
|
|
|
*t++ = '\0';
|
|
|
|
if(*mask != '\0')
|
|
|
|
nick = mask;
|
|
|
|
if(*t != '\0')
|
|
|
|
user = t;
|
|
|
|
}
|
2009-04-20 15:42:41 +02:00
|
|
|
else if(strchr(mask, '.') != NULL || strchr(mask, ':') != NULL || strchr(mask, '/') != NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
if(*mask != '\0')
|
|
|
|
host = mask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(*mask != '\0')
|
|
|
|
nick = mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* truncate values to max lengths */
|
|
|
|
if(strlen(nick) > NICKLEN - 1)
|
|
|
|
{
|
|
|
|
ne = nick[NICKLEN - 1];
|
|
|
|
nick[NICKLEN - 1] = '\0';
|
|
|
|
}
|
|
|
|
if(strlen(user) > USERLEN)
|
|
|
|
{
|
|
|
|
ue = user[USERLEN];
|
|
|
|
user[USERLEN] = '\0';
|
|
|
|
}
|
|
|
|
if(strlen(host) > HOSTLEN)
|
|
|
|
{
|
|
|
|
he = host[HOSTLEN];
|
|
|
|
host[HOSTLEN] = '\0';
|
|
|
|
}
|
|
|
|
|
2008-04-01 22:38:40 +02:00
|
|
|
mask_pos += rb_sprintf(mask_buf + mask_pos, "%s!%s@%s", nick, user, host) + 1;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* restore mask, since we may need to use it again later */
|
|
|
|
if(at)
|
|
|
|
*at = '@';
|
|
|
|
if(ex)
|
|
|
|
*ex = '!';
|
|
|
|
if(ne)
|
|
|
|
nick[NICKLEN - 1] = ne;
|
|
|
|
if(ue)
|
|
|
|
user[USERLEN] = ue;
|
|
|
|
if(he)
|
|
|
|
host[HOSTLEN] = he;
|
|
|
|
|
|
|
|
return mask_buf + old_mask_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fix_key()
|
|
|
|
*
|
|
|
|
* input - key to fix
|
|
|
|
* output - the same key, fixed
|
|
|
|
* side effects - anything below ascii 13 is discarded, ':' discarded,
|
|
|
|
* high ascii is dropped to lower half of ascii table
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
fix_key(char *arg)
|
|
|
|
{
|
|
|
|
u_char *s, *t, c;
|
|
|
|
|
|
|
|
for(s = t = (u_char *) arg; (c = *s); s++)
|
|
|
|
{
|
|
|
|
c &= 0x7f;
|
|
|
|
if(c != ':' && c != ',' && c > ' ')
|
|
|
|
*t++ = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
*t = '\0';
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* fix_key_remote()
|
|
|
|
*
|
|
|
|
* input - key to fix
|
|
|
|
* ouput - the same key, fixed
|
|
|
|
* side effects - high ascii dropped to lower half of table,
|
|
|
|
* CR/LF/':' are dropped
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
fix_key_remote(char *arg)
|
|
|
|
{
|
|
|
|
u_char *s, *t, c;
|
|
|
|
|
|
|
|
for(s = t = (u_char *) arg; (c = *s); s++)
|
|
|
|
{
|
|
|
|
c &= 0x7f;
|
|
|
|
if((c != 0x0a) && (c != ':') && (c != ',') && (c != 0x0d) && (c != ' '))
|
|
|
|
*t++ = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
*t = '\0';
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* chm_*()
|
|
|
|
*
|
|
|
|
* The handlers for each specific mode.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
chm_nosuch(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
if(*errors & SM_ERR_UNKNOWN)
|
|
|
|
return;
|
|
|
|
*errors |= SM_ERR_UNKNOWN;
|
|
|
|
sendto_one(source_p, form_str(ERR_UNKNOWNMODE), me.name, source_p->name, c);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_simple(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-06-25 19:27:30 +02:00
|
|
|
if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE))
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* setting + */
|
2010-04-30 23:01:21 +02:00
|
|
|
if((dir == MODE_ADD) && !(chptr->mode.mode & mode_type))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
/* if +f is disabled, ignore an attempt to set +QF locally */
|
|
|
|
if(!ConfigChannel.use_forward && MyClient(source_p) &&
|
|
|
|
(c == 'Q' || c == 'F'))
|
|
|
|
return;
|
|
|
|
|
|
|
|
chptr->mode.mode |= mode_type;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
2008-06-24 20:00:41 +02:00
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
2010-04-30 23:01:21 +02:00
|
|
|
else if((dir == MODE_DEL) && (chptr->mode.mode & mode_type))
|
2008-06-24 20:00:41 +02:00
|
|
|
{
|
|
|
|
chptr->mode.mode &= ~mode_type;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_orphaned(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
if(MyClient(source_p))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if((dir == MODE_ADD) && !(chptr->mode.mode & mode_type))
|
|
|
|
{
|
|
|
|
chptr->mode.mode |= mode_type;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
2007-01-25 07:40:21 +01:00
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
else if((dir == MODE_DEL) && (chptr->mode.mode & mode_type))
|
|
|
|
{
|
|
|
|
chptr->mode.mode &= ~mode_type;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_staff(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
if(!IsOper(source_p) && !IsServer(source_p))
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOPRIVS))
|
|
|
|
sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES));
|
|
|
|
*errors |= SM_ERR_NOPRIVS;
|
|
|
|
return;
|
|
|
|
}
|
2007-12-18 00:24:05 +01:00
|
|
|
if(MyClient(source_p) && !IsOperResv(source_p))
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOPRIVS))
|
|
|
|
sendto_one(source_p, form_str(ERR_NOPRIVS), me.name,
|
|
|
|
source_p->name, "resv");
|
|
|
|
*errors |= SM_ERR_NOPRIVS;
|
|
|
|
return;
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2008-06-25 19:27:30 +02:00
|
|
|
if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE))
|
|
|
|
return;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
/* setting + */
|
|
|
|
if((dir == MODE_ADD) && !(chptr->mode.mode & mode_type))
|
|
|
|
{
|
|
|
|
chptr->mode.mode |= mode_type;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
else if((dir == MODE_DEL) && (chptr->mode.mode & mode_type))
|
|
|
|
{
|
|
|
|
chptr->mode.mode &= ~mode_type;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_ban(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
const char *mask;
|
|
|
|
const char *raw_mask;
|
2008-04-01 22:41:52 +02:00
|
|
|
rb_dlink_list *list;
|
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Ban *banptr;
|
|
|
|
int errorval;
|
|
|
|
int rpl_list;
|
|
|
|
int rpl_endlist;
|
|
|
|
int caps;
|
|
|
|
int mems;
|
|
|
|
|
|
|
|
switch (mode_type)
|
|
|
|
{
|
|
|
|
case CHFL_BAN:
|
|
|
|
list = &chptr->banlist;
|
|
|
|
errorval = SM_ERR_RPL_B;
|
|
|
|
rpl_list = RPL_BANLIST;
|
|
|
|
rpl_endlist = RPL_ENDOFBANLIST;
|
|
|
|
mems = ALL_MEMBERS;
|
|
|
|
caps = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CHFL_EXCEPTION:
|
|
|
|
/* if +e is disabled, allow all but +e locally */
|
|
|
|
if(!ConfigChannel.use_except && MyClient(source_p) &&
|
|
|
|
((dir == MODE_ADD) && (parc > *parn)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
list = &chptr->exceptlist;
|
|
|
|
errorval = SM_ERR_RPL_E;
|
|
|
|
rpl_list = RPL_EXCEPTLIST;
|
|
|
|
rpl_endlist = RPL_ENDOFEXCEPTLIST;
|
|
|
|
caps = CAP_EX;
|
|
|
|
|
|
|
|
if(ConfigChannel.use_except || (dir == MODE_DEL))
|
|
|
|
mems = ONLY_CHANOPS;
|
|
|
|
else
|
|
|
|
mems = ONLY_SERVERS;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CHFL_INVEX:
|
|
|
|
/* if +I is disabled, allow all but +I locally */
|
|
|
|
if(!ConfigChannel.use_invex && MyClient(source_p) &&
|
|
|
|
(dir == MODE_ADD) && (parc > *parn))
|
|
|
|
return;
|
|
|
|
|
|
|
|
list = &chptr->invexlist;
|
|
|
|
errorval = SM_ERR_RPL_I;
|
|
|
|
rpl_list = RPL_INVITELIST;
|
|
|
|
rpl_endlist = RPL_ENDOFINVITELIST;
|
|
|
|
caps = CAP_IE;
|
|
|
|
|
|
|
|
if(ConfigChannel.use_invex || (dir == MODE_DEL))
|
|
|
|
mems = ONLY_CHANOPS;
|
|
|
|
else
|
|
|
|
mems = ONLY_SERVERS;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CHFL_QUIET:
|
|
|
|
list = &chptr->quietlist;
|
|
|
|
errorval = SM_ERR_RPL_Q;
|
2010-02-27 01:08:41 +01:00
|
|
|
rpl_list = RPL_QUIETLIST;
|
|
|
|
rpl_endlist = RPL_ENDOFQUIETLIST;
|
2007-01-25 07:40:21 +01:00
|
|
|
mems = ALL_MEMBERS;
|
|
|
|
caps = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
sendto_realops_snomask(SNO_GENERAL, L_ALL, "chm_ban() called with unknown type!");
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dir == 0 || parc <= *parn)
|
|
|
|
{
|
|
|
|
if((*errors & errorval) != 0)
|
|
|
|
return;
|
|
|
|
*errors |= errorval;
|
|
|
|
|
|
|
|
/* non-ops cant see +eI lists.. */
|
|
|
|
if(alevel != CHFL_CHANOP && mode_type != CHFL_BAN &&
|
|
|
|
mode_type != CHFL_QUIET)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-04-01 22:43:10 +02:00
|
|
|
RB_DLINK_FOREACH(ptr, list->head)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
banptr = ptr->data;
|
|
|
|
sendto_one(source_p, form_str(rpl_list),
|
|
|
|
me.name, source_p->name, chptr->chname,
|
|
|
|
banptr->banstr, banptr->who, banptr->when);
|
|
|
|
}
|
2010-02-27 01:08:41 +01:00
|
|
|
sendto_one(source_p, form_str(rpl_endlist), me.name, source_p->name, chptr->chname);
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
|
|
|
|
return;
|
|
|
|
|
|
|
|
raw_mask = parv[(*parn)];
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
/* empty ban, or starts with ':' which messes up s2s, ignore it */
|
|
|
|
if(EmptyString(raw_mask) || *raw_mask == ':')
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(!MyClient(source_p))
|
|
|
|
{
|
|
|
|
if(strchr(raw_mask, ' '))
|
|
|
|
return;
|
|
|
|
|
|
|
|
mask = raw_mask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mask = pretty_mask(raw_mask);
|
|
|
|
|
2007-11-08 00:45:14 +01:00
|
|
|
/* we'd have problems parsing this, hyb6 does it too
|
|
|
|
* also make sure it will always fit on a line with channel
|
|
|
|
* name etc.
|
|
|
|
*/
|
|
|
|
if(strlen(mask) > IRCD_MIN(BANLEN, MODEBUFLEN - 5))
|
2007-01-25 07:40:21 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* if we're adding a NEW id */
|
|
|
|
if(dir == MODE_ADD)
|
|
|
|
{
|
|
|
|
if (*mask == '$' && MyClient(source_p))
|
|
|
|
{
|
|
|
|
if (!valid_extban(mask, source_p, chptr, mode_type))
|
|
|
|
/* XXX perhaps return an error message here */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* dont allow local clients to overflow the banlist, dont
|
|
|
|
* let remote servers set duplicate bans
|
|
|
|
*/
|
|
|
|
if(!add_id(source_p, chptr, mask, list, mode_type))
|
|
|
|
return;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = caps;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = mems;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = mask;
|
|
|
|
}
|
|
|
|
else if(dir == MODE_DEL)
|
|
|
|
{
|
|
|
|
if(del_id(chptr, mask, list, mode_type) == 0)
|
|
|
|
{
|
|
|
|
/* mask isn't a valid ban, check raw_mask */
|
|
|
|
if(del_id(chptr, raw_mask, list, mode_type))
|
|
|
|
mask = raw_mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = caps;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = mems;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = mask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_op(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
struct membership *mstptr;
|
|
|
|
const char *opnick;
|
|
|
|
struct Client *targ_p;
|
|
|
|
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((dir == MODE_QUERY) || (parc <= *parn))
|
|
|
|
return;
|
|
|
|
|
|
|
|
opnick = parv[(*parn)];
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
/* empty nick */
|
|
|
|
if(EmptyString(opnick))
|
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), "*");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((targ_p = find_chasing(source_p, opnick, NULL)) == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mstptr = find_channel_membership(chptr, targ_p);
|
|
|
|
|
|
|
|
if(mstptr == NULL)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOTONCHANNEL) && MyClient(source_p))
|
|
|
|
sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
|
|
|
|
form_str(ERR_USERNOTINCHANNEL), opnick, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOTONCHANNEL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(dir == MODE_ADD)
|
|
|
|
{
|
2010-12-31 02:43:16 +01:00
|
|
|
if(targ_p == source_p && mstptr->flags & CHFL_CHANOP)
|
|
|
|
return;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = targ_p->id;
|
|
|
|
mode_changes[mode_count].arg = targ_p->name;
|
|
|
|
mode_changes[mode_count++].client = targ_p;
|
|
|
|
|
|
|
|
mstptr->flags |= CHFL_CHANOP;
|
2011-07-06 22:12:46 +02:00
|
|
|
if (msptr->roles & CHANROLE_UNSET)
|
|
|
|
{
|
|
|
|
mstptr->roles &= ~CHANROLE_UNSET;
|
|
|
|
mstptr->roles = CHANROLE_INITIAL | CHANROLE_INHERIT;
|
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(MyClient(source_p) && IsService(targ_p))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_ISCHANSERVICE),
|
|
|
|
me.name, source_p->name, targ_p->name, chptr->chname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = targ_p->id;
|
|
|
|
mode_changes[mode_count].arg = targ_p->name;
|
|
|
|
mode_changes[mode_count++].client = targ_p;
|
|
|
|
|
|
|
|
mstptr->flags &= ~CHFL_CHANOP;
|
2011-07-06 22:12:46 +02:00
|
|
|
if (mstptr->roles & CHANROLE_INHERIT)
|
|
|
|
mstptr->roles = CHANROLE_UNSET;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_voice(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
struct membership *mstptr;
|
|
|
|
const char *opnick;
|
|
|
|
struct Client *targ_p;
|
|
|
|
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((dir == MODE_QUERY) || parc <= *parn)
|
|
|
|
return;
|
|
|
|
|
|
|
|
opnick = parv[(*parn)];
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
/* empty nick */
|
|
|
|
if(EmptyString(opnick))
|
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOSUCHNICK, form_str(ERR_NOSUCHNICK), "*");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if((targ_p = find_chasing(source_p, opnick, NULL)) == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mstptr = find_channel_membership(chptr, targ_p);
|
|
|
|
|
|
|
|
if(mstptr == NULL)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOTONCHANNEL) && MyClient(source_p))
|
|
|
|
sendto_one_numeric(source_p, ERR_USERNOTINCHANNEL,
|
|
|
|
form_str(ERR_USERNOTINCHANNEL), opnick, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOTONCHANNEL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(MyClient(source_p) && (++mode_limit > MAXMODEPARAMS))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(dir == MODE_ADD)
|
|
|
|
{
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = targ_p->id;
|
|
|
|
mode_changes[mode_count].arg = targ_p->name;
|
|
|
|
mode_changes[mode_count++].client = targ_p;
|
|
|
|
|
|
|
|
mstptr->flags |= CHFL_VOICE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
mode_changes[mode_count].letter = 'v';
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = targ_p->id;
|
|
|
|
mode_changes[mode_count].arg = targ_p->name;
|
|
|
|
mode_changes[mode_count++].client = targ_p;
|
|
|
|
|
|
|
|
mstptr->flags &= ~CHFL_VOICE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_limit(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
const char *lstr;
|
|
|
|
static char limitstr[30];
|
|
|
|
int limit;
|
|
|
|
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dir == MODE_QUERY)
|
|
|
|
return;
|
|
|
|
|
2008-06-25 19:27:30 +02:00
|
|
|
if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE))
|
|
|
|
return;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if((dir == MODE_ADD) && parc > *parn)
|
|
|
|
{
|
|
|
|
lstr = parv[(*parn)];
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
if(EmptyString(lstr) || (limit = atoi(lstr)) <= 0)
|
|
|
|
return;
|
|
|
|
|
2008-04-01 22:38:40 +02:00
|
|
|
rb_sprintf(limitstr, "%d", limit);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = limitstr;
|
|
|
|
|
|
|
|
chptr->mode.limit = limit;
|
|
|
|
}
|
|
|
|
else if(dir == MODE_DEL)
|
|
|
|
{
|
|
|
|
if(!chptr->mode.limit)
|
|
|
|
return;
|
|
|
|
|
|
|
|
chptr->mode.limit = 0;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_throttle(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
int joins = 0, timeslice = 0;
|
|
|
|
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dir == MODE_QUERY)
|
|
|
|
return;
|
|
|
|
|
2008-06-25 19:27:30 +02:00
|
|
|
if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE))
|
|
|
|
return;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if((dir == MODE_ADD) && parc > *parn)
|
|
|
|
{
|
|
|
|
sscanf(parv[(*parn)], "%d:%d", &joins, ×lice);
|
|
|
|
|
|
|
|
if(!joins || !timeslice)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = parv[(*parn)];
|
|
|
|
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
chptr->mode.join_num = joins;
|
|
|
|
chptr->mode.join_time = timeslice;
|
|
|
|
}
|
|
|
|
else if(dir == MODE_DEL)
|
|
|
|
{
|
|
|
|
if(!chptr->mode.join_num)
|
|
|
|
return;
|
|
|
|
|
|
|
|
chptr->mode.join_num = 0;
|
|
|
|
chptr->mode.join_time = 0;
|
|
|
|
chptr->join_count = 0;
|
|
|
|
chptr->join_delta = 0;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_forward(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
struct Channel *targptr = NULL;
|
|
|
|
struct membership *msptr;
|
|
|
|
const char *forward;
|
|
|
|
|
|
|
|
/* if +f is disabled, ignore local attempts to set it */
|
|
|
|
if(!ConfigChannel.use_forward && MyClient(source_p) &&
|
|
|
|
(dir == MODE_ADD) && (parc > *parn))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(dir == MODE_QUERY || (dir == MODE_ADD && parc <= *parn))
|
|
|
|
{
|
|
|
|
if (!(*errors & SM_ERR_RPL_F))
|
|
|
|
{
|
|
|
|
if (*chptr->mode.forward == '\0')
|
2007-01-25 08:23:01 +01:00
|
|
|
sendto_one_notice(source_p, ":%s has no forward channel", chptr->chname);
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2007-01-25 08:23:01 +01:00
|
|
|
sendto_one_notice(source_p, ":%s forward channel is %s", chptr->chname, chptr->mode.forward);
|
2007-01-25 07:40:21 +01:00
|
|
|
*errors |= SM_ERR_RPL_F;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef FORWARD_OPERONLY
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if(!IsOper(source_p) && !IsServer(source_p))
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOPRIVS))
|
|
|
|
sendto_one_numeric(source_p, ERR_NOPRIVILEGES, form_str(ERR_NOPRIVILEGES));
|
|
|
|
*errors |= SM_ERR_NOPRIVS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-06-25 19:27:30 +02:00
|
|
|
if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE))
|
|
|
|
return;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if(dir == MODE_ADD && parc > *parn)
|
|
|
|
{
|
|
|
|
forward = parv[(*parn)];
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
if(EmptyString(forward))
|
|
|
|
return;
|
|
|
|
if(!check_channel_name(forward) ||
|
|
|
|
(MyClient(source_p) && (strlen(forward) > LOC_CHANNELLEN || hash_find_resv(forward))))
|
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_BADCHANNAME, form_str(ERR_BADCHANNAME), forward);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* don't forward to inconsistent target -- jilles */
|
|
|
|
if(chptr->chname[0] == '#' && forward[0] == '&')
|
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_BADCHANNAME,
|
|
|
|
form_str(ERR_BADCHANNAME), forward);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(MyClient(source_p) && (targptr = find_channel(forward)) == NULL)
|
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
|
|
|
|
form_str(ERR_NOSUCHCHANNEL), forward);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(MyClient(source_p) && !(targptr->mode.mode & MODE_FREETARGET))
|
|
|
|
{
|
|
|
|
if((msptr = find_channel_membership(targptr, source_p)) == NULL ||
|
2011-07-06 19:35:11 +02:00
|
|
|
get_channel_access(source_p, msptr, CHANROLE_MODE) != CHFL_CHANOP)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, targptr->chname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-20 06:40:40 +02:00
|
|
|
rb_strlcpy(chptr->mode.forward, forward, sizeof(chptr->mode.forward));
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ConfigChannel.use_forward ? ALL_MEMBERS : ONLY_SERVERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = forward;
|
|
|
|
}
|
|
|
|
else if(dir == MODE_DEL)
|
|
|
|
{
|
|
|
|
if(!(*chptr->mode.forward))
|
|
|
|
return;
|
|
|
|
|
|
|
|
*chptr->mode.forward = '\0';
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
chm_key(struct Client *source_p, struct Channel *chptr,
|
|
|
|
int alevel, int parc, int *parn,
|
|
|
|
const char **parv, int *errors, int dir, char c, long mode_type)
|
|
|
|
{
|
|
|
|
char *key;
|
|
|
|
|
|
|
|
if(alevel != CHFL_CHANOP)
|
|
|
|
{
|
|
|
|
if(!(*errors & SM_ERR_NOOPS))
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
|
|
|
*errors |= SM_ERR_NOOPS;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dir == MODE_QUERY)
|
|
|
|
return;
|
|
|
|
|
2008-06-25 19:27:30 +02:00
|
|
|
if(MyClient(source_p) && (++mode_limit_simple > MAXMODES_SIMPLE))
|
|
|
|
return;
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if((dir == MODE_ADD) && parc > *parn)
|
|
|
|
{
|
|
|
|
key = LOCAL_COPY(parv[(*parn)]);
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
if(MyClient(source_p))
|
|
|
|
fix_key(key);
|
|
|
|
else
|
|
|
|
fix_key_remote(key);
|
|
|
|
|
|
|
|
if(EmptyString(key))
|
|
|
|
return;
|
|
|
|
|
|
|
|
s_assert(key[0] != ' ');
|
2008-04-20 06:40:40 +02:00
|
|
|
rb_strlcpy(chptr->mode.key, key, sizeof(chptr->mode.key));
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_ADD;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = chptr->mode.key;
|
|
|
|
}
|
|
|
|
else if(dir == MODE_DEL)
|
|
|
|
{
|
|
|
|
static char splat[] = "*";
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if(parc > *parn)
|
|
|
|
(*parn)++;
|
|
|
|
|
|
|
|
if(!(*chptr->mode.key))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* hack time. when we get a +k-k mode, the +k arg is
|
|
|
|
* chptr->mode.key, which the -k sets to \0, so hunt for a
|
|
|
|
* +k when we get a -k, and set the arg to splat. --anfl
|
|
|
|
*/
|
|
|
|
for(i = 0; i < mode_count; i++)
|
|
|
|
{
|
|
|
|
if(mode_changes[i].letter == 'k' && mode_changes[i].dir == MODE_ADD)
|
|
|
|
mode_changes[i].arg = splat;
|
|
|
|
}
|
|
|
|
|
|
|
|
*chptr->mode.key = 0;
|
|
|
|
|
|
|
|
mode_changes[mode_count].letter = c;
|
|
|
|
mode_changes[mode_count].dir = MODE_DEL;
|
|
|
|
mode_changes[mode_count].caps = 0;
|
|
|
|
mode_changes[mode_count].nocaps = 0;
|
|
|
|
mode_changes[mode_count].mems = ALL_MEMBERS;
|
|
|
|
mode_changes[mode_count].id = NULL;
|
|
|
|
mode_changes[mode_count++].arg = "*";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
struct ChannelMode chmode_table[256] =
|
|
|
|
{
|
|
|
|
{chm_nosuch, 0 }, /* 0x00 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x01 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x02 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x03 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x04 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x05 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x06 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x07 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x08 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x09 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x0a */
|
|
|
|
{chm_nosuch, 0 }, /* 0x0b */
|
|
|
|
{chm_nosuch, 0 }, /* 0x0c */
|
|
|
|
{chm_nosuch, 0 }, /* 0x0d */
|
|
|
|
{chm_nosuch, 0 }, /* 0x0e */
|
|
|
|
{chm_nosuch, 0 }, /* 0x0f */
|
|
|
|
{chm_nosuch, 0 }, /* 0x10 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x11 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x12 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x13 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x14 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x15 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x16 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x17 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x18 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x19 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x1a */
|
|
|
|
{chm_nosuch, 0 }, /* 0x1b */
|
|
|
|
{chm_nosuch, 0 }, /* 0x1c */
|
|
|
|
{chm_nosuch, 0 }, /* 0x1d */
|
|
|
|
{chm_nosuch, 0 }, /* 0x1e */
|
|
|
|
{chm_nosuch, 0 }, /* 0x1f */
|
|
|
|
{chm_nosuch, 0 }, /* 0x20 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x21 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x22 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x23 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x24 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x25 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x26 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x27 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x28 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x29 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x2a */
|
|
|
|
{chm_nosuch, 0 }, /* 0x2b */
|
|
|
|
{chm_nosuch, 0 }, /* 0x2c */
|
|
|
|
{chm_nosuch, 0 }, /* 0x2d */
|
|
|
|
{chm_nosuch, 0 }, /* 0x2e */
|
|
|
|
{chm_nosuch, 0 }, /* 0x2f */
|
|
|
|
{chm_nosuch, 0 }, /* 0x30 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x31 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x32 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x33 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x34 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x35 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x36 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x37 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x38 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x39 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x3a */
|
|
|
|
{chm_nosuch, 0 }, /* 0x3b */
|
|
|
|
{chm_nosuch, 0 }, /* 0x3c */
|
|
|
|
{chm_nosuch, 0 }, /* 0x3d */
|
|
|
|
{chm_nosuch, 0 }, /* 0x3e */
|
|
|
|
{chm_nosuch, 0 }, /* 0x3f */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* @ */
|
|
|
|
{chm_nosuch, 0 }, /* A */
|
|
|
|
{chm_nosuch, 0 }, /* B */
|
2010-01-19 09:11:04 +01:00
|
|
|
{chm_simple, MODE_NOCTCP }, /* C */
|
2007-01-25 07:40:21 +01:00
|
|
|
{chm_nosuch, 0 }, /* D */
|
|
|
|
{chm_nosuch, 0 }, /* E */
|
|
|
|
{chm_simple, MODE_FREETARGET }, /* F */
|
|
|
|
{chm_nosuch, 0 }, /* G */
|
|
|
|
{chm_nosuch, 0 }, /* H */
|
|
|
|
{chm_ban, CHFL_INVEX }, /* I */
|
|
|
|
{chm_nosuch, 0 }, /* J */
|
|
|
|
{chm_nosuch, 0 }, /* K */
|
|
|
|
{chm_staff, MODE_EXLIMIT }, /* L */
|
|
|
|
{chm_nosuch, 0 }, /* M */
|
|
|
|
{chm_nosuch, 0 }, /* N */
|
|
|
|
{chm_nosuch, 0 }, /* O */
|
|
|
|
{chm_staff, MODE_PERMANENT }, /* P */
|
|
|
|
{chm_simple, MODE_DISFORWARD }, /* Q */
|
|
|
|
{chm_nosuch, 0 }, /* R */
|
|
|
|
{chm_nosuch, 0 }, /* S */
|
|
|
|
{chm_nosuch, 0 }, /* T */
|
|
|
|
{chm_nosuch, 0 }, /* U */
|
|
|
|
{chm_nosuch, 0 }, /* V */
|
|
|
|
{chm_nosuch, 0 }, /* W */
|
|
|
|
{chm_nosuch, 0 }, /* X */
|
|
|
|
{chm_nosuch, 0 }, /* Y */
|
|
|
|
{chm_nosuch, 0 }, /* Z */
|
|
|
|
{chm_nosuch, 0 },
|
|
|
|
{chm_nosuch, 0 },
|
|
|
|
{chm_nosuch, 0 },
|
|
|
|
{chm_nosuch, 0 },
|
|
|
|
{chm_nosuch, 0 },
|
|
|
|
{chm_nosuch, 0 },
|
|
|
|
{chm_nosuch, 0 }, /* a */
|
|
|
|
{chm_ban, CHFL_BAN }, /* b */
|
|
|
|
{chm_simple, MODE_NOCOLOR }, /* c */
|
|
|
|
{chm_nosuch, 0 }, /* d */
|
|
|
|
{chm_ban, CHFL_EXCEPTION }, /* e */
|
|
|
|
{chm_forward, 0 }, /* f */
|
|
|
|
{chm_simple, MODE_FREEINVITE }, /* g */
|
|
|
|
{chm_nosuch, 0 }, /* h */
|
|
|
|
{chm_simple, MODE_INVITEONLY }, /* i */
|
|
|
|
{chm_throttle, 0 }, /* j */
|
|
|
|
{chm_key, 0 }, /* k */
|
|
|
|
{chm_limit, 0 }, /* l */
|
|
|
|
{chm_simple, MODE_MODERATED }, /* m */
|
|
|
|
{chm_simple, MODE_NOPRIVMSGS }, /* n */
|
|
|
|
{chm_op, 0 }, /* o */
|
|
|
|
{chm_simple, MODE_PRIVATE }, /* p */
|
|
|
|
{chm_ban, CHFL_QUIET }, /* q */
|
2010-12-07 05:46:37 +01:00
|
|
|
{chm_simple, MODE_REGONLY }, /* r */
|
2007-01-25 07:40:21 +01:00
|
|
|
{chm_simple, MODE_SECRET }, /* s */
|
|
|
|
{chm_simple, MODE_TOPICLIMIT }, /* t */
|
|
|
|
{chm_nosuch, 0 }, /* u */
|
|
|
|
{chm_voice, 0 }, /* v */
|
|
|
|
{chm_nosuch, 0 }, /* w */
|
|
|
|
{chm_nosuch, 0 }, /* x */
|
|
|
|
{chm_nosuch, 0 }, /* y */
|
|
|
|
{chm_simple, MODE_OPMODERATE }, /* z */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0x7b */
|
|
|
|
{chm_nosuch, 0 }, /* 0x7c */
|
|
|
|
{chm_nosuch, 0 }, /* 0x7d */
|
|
|
|
{chm_nosuch, 0 }, /* 0x7e */
|
|
|
|
{chm_nosuch, 0 }, /* 0x7f */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0x80 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x81 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x82 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x83 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x84 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x85 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x86 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x87 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x88 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x89 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x8a */
|
|
|
|
{chm_nosuch, 0 }, /* 0x8b */
|
|
|
|
{chm_nosuch, 0 }, /* 0x8c */
|
|
|
|
{chm_nosuch, 0 }, /* 0x8d */
|
|
|
|
{chm_nosuch, 0 }, /* 0x8e */
|
|
|
|
{chm_nosuch, 0 }, /* 0x8f */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0x90 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x91 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x92 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x93 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x94 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x95 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x96 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x97 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x98 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x99 */
|
|
|
|
{chm_nosuch, 0 }, /* 0x9a */
|
|
|
|
{chm_nosuch, 0 }, /* 0x9b */
|
|
|
|
{chm_nosuch, 0 }, /* 0x9c */
|
|
|
|
{chm_nosuch, 0 }, /* 0x9d */
|
|
|
|
{chm_nosuch, 0 }, /* 0x9e */
|
|
|
|
{chm_nosuch, 0 }, /* 0x9f */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0xa0 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa1 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa2 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa3 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa4 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa5 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa6 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa7 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa8 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xa9 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xaa */
|
|
|
|
{chm_nosuch, 0 }, /* 0xab */
|
|
|
|
{chm_nosuch, 0 }, /* 0xac */
|
|
|
|
{chm_nosuch, 0 }, /* 0xad */
|
|
|
|
{chm_nosuch, 0 }, /* 0xae */
|
|
|
|
{chm_nosuch, 0 }, /* 0xaf */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0xb0 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb1 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb2 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb3 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb4 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb5 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb6 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb7 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb8 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xb9 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xba */
|
|
|
|
{chm_nosuch, 0 }, /* 0xbb */
|
|
|
|
{chm_nosuch, 0 }, /* 0xbc */
|
|
|
|
{chm_nosuch, 0 }, /* 0xbd */
|
|
|
|
{chm_nosuch, 0 }, /* 0xbe */
|
|
|
|
{chm_nosuch, 0 }, /* 0xbf */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0xc0 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc1 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc2 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc3 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc4 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc5 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc6 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc7 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc8 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xc9 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xca */
|
|
|
|
{chm_nosuch, 0 }, /* 0xcb */
|
|
|
|
{chm_nosuch, 0 }, /* 0xcc */
|
|
|
|
{chm_nosuch, 0 }, /* 0xcd */
|
|
|
|
{chm_nosuch, 0 }, /* 0xce */
|
|
|
|
{chm_nosuch, 0 }, /* 0xcf */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0xd0 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd1 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd2 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd3 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd4 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd5 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd6 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd7 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd8 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xd9 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xda */
|
|
|
|
{chm_nosuch, 0 }, /* 0xdb */
|
|
|
|
{chm_nosuch, 0 }, /* 0xdc */
|
|
|
|
{chm_nosuch, 0 }, /* 0xdd */
|
|
|
|
{chm_nosuch, 0 }, /* 0xde */
|
|
|
|
{chm_nosuch, 0 }, /* 0xdf */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0xe0 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe1 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe2 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe3 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe4 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe5 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe6 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe7 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe8 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xe9 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xea */
|
|
|
|
{chm_nosuch, 0 }, /* 0xeb */
|
|
|
|
{chm_nosuch, 0 }, /* 0xec */
|
|
|
|
{chm_nosuch, 0 }, /* 0xed */
|
|
|
|
{chm_nosuch, 0 }, /* 0xee */
|
|
|
|
{chm_nosuch, 0 }, /* 0xef */
|
|
|
|
|
|
|
|
{chm_nosuch, 0 }, /* 0xf0 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf1 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf2 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf3 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf4 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf5 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf6 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf7 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf8 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xf9 */
|
|
|
|
{chm_nosuch, 0 }, /* 0xfa */
|
|
|
|
{chm_nosuch, 0 }, /* 0xfb */
|
|
|
|
{chm_nosuch, 0 }, /* 0xfc */
|
|
|
|
{chm_nosuch, 0 }, /* 0xfd */
|
|
|
|
{chm_nosuch, 0 }, /* 0xfe */
|
|
|
|
{chm_nosuch, 0 }, /* 0xff */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
/* set_channel_mode()
|
|
|
|
*
|
|
|
|
* inputs - client, source, channel, membership pointer, params
|
|
|
|
* output -
|
|
|
|
* side effects - channel modes/memberships are changed, MODE is issued
|
|
|
|
*
|
|
|
|
* Extensively modified to be hotpluggable, 03/09/06 -- nenolod
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
set_channel_mode(struct Client *client_p, struct Client *source_p,
|
|
|
|
struct Channel *chptr, struct membership *msptr, int parc, const char *parv[])
|
|
|
|
{
|
|
|
|
static char modebuf[BUFSIZE];
|
|
|
|
static char parabuf[BUFSIZE];
|
|
|
|
char *mbuf;
|
|
|
|
char *pbuf;
|
|
|
|
int cur_len, mlen, paralen, paracount, arglen, len;
|
|
|
|
int i, j, flags;
|
|
|
|
int dir = MODE_ADD;
|
|
|
|
int parn = 1;
|
|
|
|
int errors = 0;
|
|
|
|
int alevel;
|
|
|
|
const char *ml = parv[0];
|
|
|
|
char c;
|
|
|
|
struct Client *fakesource_p;
|
|
|
|
|
|
|
|
mask_pos = 0;
|
|
|
|
mode_count = 0;
|
|
|
|
mode_limit = 0;
|
2008-06-25 19:27:30 +02:00
|
|
|
mode_limit_simple = 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-07-06 19:35:11 +02:00
|
|
|
alevel = get_channel_access(source_p, msptr, CHANROLE_MODE);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* Hide connecting server on netburst -- jilles */
|
|
|
|
if (ConfigServerHide.flatten_links && IsServer(source_p) && !has_id(source_p) && !HasSentEob(source_p))
|
|
|
|
fakesource_p = &me;
|
|
|
|
else
|
|
|
|
fakesource_p = source_p;
|
|
|
|
|
|
|
|
for(; (c = *ml) != 0; ml++)
|
|
|
|
{
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case '+':
|
|
|
|
dir = MODE_ADD;
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
dir = MODE_DEL;
|
|
|
|
break;
|
|
|
|
case '=':
|
|
|
|
dir = MODE_QUERY;
|
|
|
|
break;
|
|
|
|
default:
|
2010-04-30 23:01:21 +02:00
|
|
|
/* If this mode char is locked, don't allow local users to change it. */
|
|
|
|
if (MyClient(source_p) && chptr->mode_lock && strchr(chptr->mode_lock, c))
|
2010-08-24 02:04:46 +02:00
|
|
|
{
|
2010-08-24 23:03:23 +02:00
|
|
|
if (!(errors & SM_ERR_MLOCK))
|
|
|
|
sendto_one_numeric(source_p,
|
|
|
|
ERR_MLOCKRESTRICTED,
|
|
|
|
form_str(ERR_MLOCKRESTRICTED),
|
|
|
|
chptr->chname,
|
|
|
|
c,
|
|
|
|
chptr->mode_lock);
|
|
|
|
errors |= SM_ERR_MLOCK;
|
2010-04-30 23:01:21 +02:00
|
|
|
continue;
|
2010-08-24 02:04:46 +02:00
|
|
|
}
|
2007-01-25 07:40:21 +01:00
|
|
|
chmode_table[(unsigned char) c].set_func(fakesource_p, chptr, alevel,
|
|
|
|
parc, &parn, parv,
|
|
|
|
&errors, dir, c,
|
|
|
|
chmode_table[(unsigned char) c].mode_type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* bail out if we have nothing to do... */
|
|
|
|
if(!mode_count)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(IsServer(source_p))
|
2008-04-01 22:38:40 +02:00
|
|
|
mlen = rb_sprintf(modebuf, ":%s MODE %s ", fakesource_p->name, chptr->chname);
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
2008-04-01 22:38:40 +02:00
|
|
|
mlen = rb_sprintf(modebuf, ":%s!%s@%s MODE %s ",
|
2007-01-25 07:40:21 +01:00
|
|
|
source_p->name, source_p->username,
|
|
|
|
source_p->host, chptr->chname);
|
|
|
|
|
|
|
|
for(j = 0, flags = ALL_MEMBERS; j < 2; j++, flags = ONLY_CHANOPS)
|
|
|
|
{
|
|
|
|
cur_len = mlen;
|
|
|
|
mbuf = modebuf + mlen;
|
|
|
|
pbuf = parabuf;
|
|
|
|
parabuf[0] = '\0';
|
|
|
|
paracount = paralen = 0;
|
|
|
|
dir = MODE_QUERY;
|
|
|
|
|
|
|
|
for(i = 0; i < mode_count; i++)
|
|
|
|
{
|
|
|
|
if(mode_changes[i].letter == 0 || mode_changes[i].mems != flags)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if(mode_changes[i].arg != NULL)
|
|
|
|
{
|
|
|
|
arglen = strlen(mode_changes[i].arg);
|
|
|
|
|
|
|
|
if(arglen > MODEBUFLEN - 5)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
arglen = 0;
|
|
|
|
|
|
|
|
/* if we're creeping over MAXMODEPARAMSSERV, or over
|
|
|
|
* bufsize (4 == +/-,modechar,two spaces) send now.
|
|
|
|
*/
|
|
|
|
if(mode_changes[i].arg != NULL &&
|
|
|
|
((paracount == MAXMODEPARAMSSERV) ||
|
|
|
|
((cur_len + paralen + arglen + 4) > (BUFSIZE - 3))))
|
|
|
|
{
|
|
|
|
*mbuf = '\0';
|
|
|
|
|
|
|
|
if(cur_len > mlen)
|
|
|
|
sendto_channel_local(flags, chptr, "%s %s", modebuf,
|
|
|
|
parabuf);
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
|
|
|
|
paracount = paralen = 0;
|
|
|
|
cur_len = mlen;
|
|
|
|
mbuf = modebuf + mlen;
|
|
|
|
pbuf = parabuf;
|
|
|
|
parabuf[0] = '\0';
|
|
|
|
dir = MODE_QUERY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(dir != mode_changes[i].dir)
|
|
|
|
{
|
|
|
|
*mbuf++ = (mode_changes[i].dir == MODE_ADD) ? '+' : '-';
|
|
|
|
cur_len++;
|
|
|
|
dir = mode_changes[i].dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
*mbuf++ = mode_changes[i].letter;
|
|
|
|
cur_len++;
|
|
|
|
|
|
|
|
if(mode_changes[i].arg != NULL)
|
|
|
|
{
|
|
|
|
paracount++;
|
2008-04-01 22:38:40 +02:00
|
|
|
len = rb_sprintf(pbuf, "%s ", mode_changes[i].arg);
|
2007-01-25 07:40:21 +01:00
|
|
|
pbuf += len;
|
|
|
|
paralen += len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(paralen && parabuf[paralen - 1] == ' ')
|
|
|
|
parabuf[paralen - 1] = '\0';
|
|
|
|
|
|
|
|
*mbuf = '\0';
|
|
|
|
if(cur_len > mlen)
|
|
|
|
sendto_channel_local(flags, chptr, "%s %s", modebuf, parabuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* only propagate modes originating locally, or if we're hubbing */
|
2008-04-01 22:41:52 +02:00
|
|
|
if(MyClient(source_p) || rb_dlink_list_length(&serv_list) > 1)
|
2007-01-25 07:40:21 +01:00
|
|
|
send_cap_mode_changes(client_p, source_p, chptr, mode_changes, mode_count);
|
|
|
|
}
|
2010-03-08 06:13:39 +01:00
|
|
|
|
|
|
|
/* set_channel_mlock()
|
|
|
|
*
|
|
|
|
* inputs - client, source, channel, params
|
|
|
|
* output -
|
|
|
|
* side effects - channel mlock is changed / MLOCK is propagated
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
set_channel_mlock(struct Client *client_p, struct Client *source_p,
|
2010-08-24 03:22:59 +02:00
|
|
|
struct Channel *chptr, const char *newmlock, int propagate)
|
2010-03-08 06:13:39 +01:00
|
|
|
{
|
2010-04-30 23:01:21 +02:00
|
|
|
rb_free(chptr->mode_lock);
|
2010-05-02 21:42:46 +02:00
|
|
|
chptr->mode_lock = newmlock ? rb_strdup(newmlock) : NULL;
|
2010-03-08 06:13:39 +01:00
|
|
|
|
2010-08-24 03:22:59 +02:00
|
|
|
if (propagate)
|
|
|
|
{
|
|
|
|
sendto_server(client_p, NULL, CAP_TS6 | CAP_MLOCK, NOCAPS, ":%s MLOCK %ld %s :%s",
|
|
|
|
source_p->id, (long) chptr->channelts, chptr->chname,
|
|
|
|
chptr->mode_lock ? chptr->mode_lock : "");
|
|
|
|
}
|
2010-03-08 06:13:39 +01:00
|
|
|
}
|