1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
/*
* ircd-ratbox: A slightly useful ircd.
* m_accept.c: Allows a user to talk to a +g user.
*
* 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
*
* 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
*
* $Id: m_accept.c 254 2005-09-21 23:35:12Z nenolod $
*/
#include "stdinc.h"
#include "client.h"
#include "hash.h"
#include "ircd.h"
#include "numeric.h"
#include "s_conf.h"
#include "s_serv.h"
#include "send.h"
#include "msg.h"
#include "parse.h"
#include "modules.h"
static int m_accept(struct Client *, struct Client *, int, const char **);
static void build_nicklist(struct Client *, char *, char *, const char *);
static void add_accept(struct Client *, struct Client *);
static void list_accepts(struct Client *);
struct Message accept_msgtab = {
"ACCEPT", 0, 0, 0, MFLG_SLOW | MFLG_UNREG,
{mg_unreg, {m_accept, 2}, mg_ignore, mg_ignore, mg_ignore, {m_accept, 2}}
};
mapi_clist_av1 accept_clist[] = {
&accept_msgtab, NULL
};
DECLARE_MODULE_AV1(accept, NULL, NULL, accept_clist, NULL, NULL, "$Revision: 254 $");
/*
* m_accept - ACCEPT command handler
* parv[1] = servername
*/
static int
m_accept(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
{
char *nick;
char *p = NULL;
static char addbuf[BUFSIZE];
static char delbuf[BUFSIZE];
struct Client *target_p;
int accept_num;
if(*parv[1] == '*')
{
list_accepts(source_p);
return 0;
}
build_nicklist(source_p, addbuf, delbuf, parv[1]);
/* parse the delete list */
for (nick = rb_strtok_r(delbuf, ",", &p); nick != NULL; nick = rb_strtok_r(NULL, ",", &p))
{
/* shouldnt happen, but lets be paranoid */
if((target_p = find_named_person(nick)) == NULL)
{
sendto_one_numeric(source_p, ERR_NOSUCHNICK,
form_str(ERR_NOSUCHNICK), nick);
continue;
}
/* user isnt on clients accept list */
if(!accept_message(target_p, source_p))
{
sendto_one(source_p, form_str(ERR_ACCEPTNOT),
me.name, source_p->name, target_p->name);
continue;
}
rb_dlinkFindDestroy(target_p, &source_p->localClient->allow_list);
rb_dlinkFindDestroy(source_p, &target_p->on_allow_list);
}
/* get the number of accepts they have */
accept_num = rb_dlink_list_length(&source_p->localClient->allow_list);
/* parse the add list */
for (nick = rb_strtok_r(addbuf, ",", &p); nick; nick = rb_strtok_r(NULL, ",", &p), accept_num++)
{
/* shouldnt happen, but lets be paranoid */
if((target_p = find_named_person(nick)) == NULL)
{
sendto_one_numeric(source_p, ERR_NOSUCHNICK,
form_str(ERR_NOSUCHNICK), nick);
continue;
}
/* user is already on clients accept list */
if(accept_message(target_p, source_p))
{
sendto_one(source_p, form_str(ERR_ACCEPTEXIST),
me.name, source_p->name, target_p->name);
continue;
}
if(accept_num >= ConfigFileEntry.max_accept)
{
sendto_one(source_p, form_str(ERR_ACCEPTFULL), me.name, source_p->name);
return 0;
}
/* why is this here? */
/* del_from accept(target_p, source_p); */
add_accept(source_p, target_p);
}
return 0;
}
/*
* build_nicklist()
*
* input - pointer to client
* - pointer to addbuffer
* - pointer to remove buffer
* - pointer to list of nicks
* output -
* side effects - addbuf/delbuf are modified to give valid nicks
*/
static void
build_nicklist(struct Client *source_p, char *addbuf, char *delbuf, const char *nicks)
{
char *name;
char *p;
int lenadd;
int lendel;
int del;
char *n = LOCAL_COPY(nicks);
*addbuf = *delbuf = '\0';
del = lenadd = lendel = 0;
/* build list of clients to add into addbuf, clients to remove in delbuf */
for (name = rb_strtok_r(n, ",", &p); name; name = rb_strtok_r(NULL, ",", &p), del = 0)
{
if(*name == '-')
{
del = 1;
name++;
}
if(find_named_person(name) == NULL)
{
sendto_one_numeric(source_p, ERR_NOSUCHNICK,
form_str(ERR_NOSUCHNICK), name);
continue;
}
/* we're deleting a client */
if(del)
{
if(*delbuf)
(void) strcat(delbuf, ",");
(void) strncat(delbuf, name, BUFSIZE - lendel - 1);
lendel += strlen(name) + 1;
}
/* adding a client */
else
{
if(*addbuf)
(void) strcat(addbuf, ",");
(void) strncat(addbuf, name, BUFSIZE - lenadd - 1);
lenadd += strlen(name) + 1;
}
}
}
/*
* add_accept()
*
* input - pointer to clients accept list to add to
* - pointer to client to add
* output - none
* side effects - target is added to clients list
*/
static void
add_accept(struct Client *source_p, struct Client *target_p)
{
rb_dlinkAddAlloc(target_p, &source_p->localClient->allow_list);
rb_dlinkAddAlloc(source_p, &target_p->on_allow_list);
}
/*
* list_accepts()
*
* input - pointer to client
* output - none
* side effects - print accept list to client
*/
static void
list_accepts(struct Client *source_p)
{
rb_dlink_node *ptr;
struct Client *target_p;
char nicks[BUFSIZE];
int len = 0;
int len2 = 0;
int count = 0;
*nicks = '\0';
len2 = strlen(source_p->name) + 10;
RB_DLINK_FOREACH(ptr, source_p->localClient->allow_list.head)
{
target_p = ptr->data;
if(target_p)
{
if((len + strlen(target_p->name) + len2 > BUFSIZE) || count > 14)
{
sendto_one(source_p, form_str(RPL_ACCEPTLIST),
me.name, source_p->name, nicks);
len = count = 0;
*nicks = '\0';
}
len += rb_snprintf(nicks + len, sizeof(nicks) - len, "%s ", target_p->name);
count++;
}
}
if(*nicks)
sendto_one(source_p, form_str(RPL_ACCEPTLIST),
me.name, source_p->name, nicks);
sendto_one(source_p, form_str(RPL_ENDOFACCEPT),
me.name, source_p->name);
}
|