| 1 |
michael |
1159 |
/* |
| 2 |
|
|
* ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). |
| 3 |
|
|
* |
| 4 |
|
|
* Copyright (C) 1999 by the Bahamut Development Team. |
| 5 |
|
|
* Copyright (C) 2011 by the Hybrid Development Team. |
| 6 |
|
|
* |
| 7 |
|
|
* This program is free software; you can redistribute it and/or modify |
| 8 |
|
|
* it under the terms of the GNU General Public License as published by |
| 9 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
| 10 |
|
|
* (at your option) any later version. |
| 11 |
|
|
* |
| 12 |
|
|
* This program is distributed in the hope that it will be useful, |
| 13 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 |
|
|
* GNU General Public License for more details. |
| 16 |
|
|
* |
| 17 |
|
|
* You should have received a copy of the GNU General Public License |
| 18 |
|
|
* along with this program; if not, write to the Free Software |
| 19 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 |
| 20 |
|
|
* USA |
| 21 |
|
|
*/ |
| 22 |
|
|
|
| 23 |
|
|
/*! \file m_svsmode.c |
| 24 |
|
|
* \brief Includes required functions for processing the SVSMODE command. |
| 25 |
michael |
1160 |
* \version $Id$ |
| 26 |
michael |
1159 |
*/ |
| 27 |
|
|
|
| 28 |
|
|
#include "stdinc.h" |
| 29 |
|
|
#include "client.h" |
| 30 |
|
|
#include "ircd.h" |
| 31 |
|
|
#include "numeric.h" |
| 32 |
|
|
#include "s_serv.h" |
| 33 |
|
|
#include "send.h" |
| 34 |
|
|
#include "channel_mode.h" |
| 35 |
|
|
#include "parse.h" |
| 36 |
|
|
#include "modules.h" |
| 37 |
|
|
#include "irc_string.h" |
| 38 |
|
|
#include "s_user.h" |
| 39 |
michael |
1309 |
#include "conf.h" |
| 40 |
michael |
1243 |
#include "hook.h" |
| 41 |
michael |
1159 |
|
| 42 |
|
|
|
| 43 |
michael |
1221 |
/*! \brief SVSMODE command handler (called by services) |
| 44 |
michael |
1159 |
* |
| 45 |
|
|
* \param client_p Pointer to allocated Client struct with physical connection |
| 46 |
|
|
* to this server, i.e. with an open socket connected. |
| 47 |
|
|
* \param source_p Pointer to allocated Client struct from which the message |
| 48 |
|
|
* originally comes from. This can be a local or remote client. |
| 49 |
|
|
* \param parc Integer holding the number of supplied arguments. |
| 50 |
|
|
* \param parv Argument vector where parv[0] .. parv[parc-1] are non-NULL |
| 51 |
|
|
* pointers. |
| 52 |
|
|
* \note Valid arguments for this command are: |
| 53 |
|
|
* - parv[0] = sender prefix |
| 54 |
|
|
* - parv[1] = nickname |
| 55 |
|
|
* - parv[2] = TS (or mode, depending on svs version) |
| 56 |
|
|
* - parv[3] = mode (or services id if old svs version) |
| 57 |
michael |
1274 |
* - parv[4] = optional argument (services id) |
| 58 |
michael |
1159 |
*/ |
| 59 |
|
|
static void |
| 60 |
|
|
ms_svsmode(struct Client *client_p, struct Client *source_p, |
| 61 |
|
|
int parc, char *parv[]) |
| 62 |
|
|
{ |
| 63 |
|
|
struct Client *target_p = NULL; |
| 64 |
|
|
int what = MODE_ADD; |
| 65 |
|
|
unsigned int flag = 0, setflags = 0; |
| 66 |
|
|
char *m = NULL, *modes = NULL, *extarg = NULL; |
| 67 |
|
|
time_t ts = 0; |
| 68 |
|
|
|
| 69 |
michael |
1221 |
if (!HasFlag(source_p, FLAGS_SERVICE)) |
| 70 |
michael |
1159 |
return; |
| 71 |
|
|
|
| 72 |
|
|
if ((parc >= 4) && ((*parv[3] == '+') || (*parv[3] == '-'))) |
| 73 |
|
|
{ |
| 74 |
|
|
ts = atol(parv[2]); |
| 75 |
|
|
modes = parv[3]; |
| 76 |
|
|
extarg = (parc > 4) ? parv[4] : NULL; |
| 77 |
|
|
} |
| 78 |
|
|
else |
| 79 |
|
|
{ |
| 80 |
|
|
modes = parv[2]; |
| 81 |
|
|
extarg = (parc > 3) ? parv[3] : NULL; |
| 82 |
|
|
} |
| 83 |
|
|
|
| 84 |
|
|
if ((target_p = find_person(client_p, parv[1])) == NULL) |
| 85 |
|
|
return; |
| 86 |
|
|
|
| 87 |
|
|
if (ts && (ts != target_p->tsinfo)) |
| 88 |
|
|
return; |
| 89 |
|
|
|
| 90 |
|
|
setflags = target_p->umodes; |
| 91 |
|
|
|
| 92 |
|
|
for (m = modes; *m; ++m) |
| 93 |
|
|
{ |
| 94 |
|
|
switch (*m) |
| 95 |
|
|
{ |
| 96 |
|
|
case '+': |
| 97 |
|
|
what = MODE_ADD; |
| 98 |
|
|
break; |
| 99 |
|
|
case '-': |
| 100 |
|
|
what = MODE_DEL; |
| 101 |
|
|
break; |
| 102 |
michael |
1163 |
|
| 103 |
|
|
case 'd': |
| 104 |
|
|
if (extarg && IsDigit(*extarg)) |
| 105 |
|
|
target_p->servicestamp = strtoul(extarg, NULL, 0); |
| 106 |
|
|
break; |
| 107 |
|
|
|
| 108 |
michael |
1159 |
case 'o': |
| 109 |
michael |
1219 |
if (what == MODE_DEL && HasUMode(target_p, UMODE_OPER)) |
| 110 |
michael |
1159 |
{ |
| 111 |
|
|
ClearOper(target_p); |
| 112 |
|
|
Count.oper--; |
| 113 |
|
|
|
| 114 |
|
|
if (MyConnect(target_p)) |
| 115 |
|
|
{ |
| 116 |
|
|
dlink_node *dm = NULL; |
| 117 |
|
|
|
| 118 |
|
|
detach_conf(target_p, OPER_TYPE); |
| 119 |
michael |
1219 |
ClrOFlag(target_p); |
| 120 |
michael |
1159 |
DelUMode(target_p, ConfigFileEntry.oper_only_umodes); |
| 121 |
|
|
|
| 122 |
|
|
if ((dm = dlinkFindDelete(&oper_list, target_p)) != NULL) |
| 123 |
|
|
free_dlink_node(dm); |
| 124 |
|
|
} |
| 125 |
|
|
} |
| 126 |
|
|
|
| 127 |
|
|
break; |
| 128 |
|
|
|
| 129 |
michael |
1163 |
case 'i': |
| 130 |
|
|
if (what == MODE_ADD && !HasUMode(target_p, UMODE_INVISIBLE)) |
| 131 |
|
|
{ |
| 132 |
|
|
AddUMode(target_p, UMODE_INVISIBLE); |
| 133 |
|
|
++Count.invisi; |
| 134 |
|
|
} |
| 135 |
|
|
|
| 136 |
|
|
if (what == MODE_DEL && HasUMode(target_p, UMODE_INVISIBLE)) |
| 137 |
|
|
{ |
| 138 |
|
|
DelUMode(target_p, UMODE_INVISIBLE); |
| 139 |
|
|
--Count.invisi; |
| 140 |
|
|
} |
| 141 |
|
|
|
| 142 |
|
|
break; |
| 143 |
|
|
|
| 144 |
michael |
1159 |
case ' ': |
| 145 |
|
|
case '\n': |
| 146 |
|
|
case '\r': |
| 147 |
|
|
case '\t': |
| 148 |
|
|
break; |
| 149 |
|
|
default: |
| 150 |
|
|
if ((flag = user_modes[(unsigned char)*m])) |
| 151 |
|
|
execute_callback(umode_cb, client_p, target_p, what, flag); |
| 152 |
|
|
break; |
| 153 |
|
|
} |
| 154 |
|
|
} |
| 155 |
|
|
|
| 156 |
|
|
if (extarg) |
| 157 |
|
|
{ |
| 158 |
|
|
sendto_server(client_p, NULL, CAP_TS6, NOCAPS, |
| 159 |
|
|
":%s SVSMODE %s %lu %s %s", ID(source_p), |
| 160 |
|
|
ID(target_p), (unsigned long)target_p->tsinfo, modes, extarg); |
| 161 |
|
|
sendto_server(client_p, NULL, NOCAPS, CAP_TS6, |
| 162 |
|
|
":%s SVSMODE %s %lu %s %s", source_p->name, |
| 163 |
|
|
target_p->name, (unsigned long)target_p->tsinfo, modes, extarg); |
| 164 |
|
|
} |
| 165 |
|
|
else |
| 166 |
|
|
{ |
| 167 |
|
|
sendto_server(client_p, NULL, CAP_TS6, NOCAPS, |
| 168 |
|
|
":%s SVSMODE %s %lu %s", ID(source_p), |
| 169 |
|
|
ID(target_p), (unsigned long)target_p->tsinfo, modes); |
| 170 |
|
|
sendto_server(client_p, NULL, NOCAPS, CAP_TS6, |
| 171 |
|
|
":%s SVSMODE %s %lu %s", source_p->name, |
| 172 |
|
|
target_p->name, (unsigned long)target_p->tsinfo, modes); |
| 173 |
|
|
} |
| 174 |
|
|
|
| 175 |
michael |
1161 |
if (MyConnect(target_p) && (setflags != target_p->umodes)) |
| 176 |
michael |
1159 |
{ |
| 177 |
|
|
char modebuf[IRCD_BUFSIZE]; |
| 178 |
|
|
|
| 179 |
|
|
send_umode(target_p, target_p, setflags, 0xffffffff, modebuf); |
| 180 |
|
|
} |
| 181 |
|
|
} |
| 182 |
michael |
1230 |
|
| 183 |
|
|
static struct Message svsmode_msgtab = { |
| 184 |
|
|
"SVSMODE", 0, 0, 3, MAXPARA, MFLG_SLOW | MFLG_UNREG, 0, |
| 185 |
|
|
{m_ignore, m_ignore, ms_svsmode, m_ignore, m_ignore, m_ignore} |
| 186 |
|
|
}; |
| 187 |
|
|
|
| 188 |
|
|
static void |
| 189 |
|
|
module_init(void) |
| 190 |
|
|
{ |
| 191 |
|
|
mod_add_cmd(&svsmode_msgtab); |
| 192 |
|
|
} |
| 193 |
|
|
|
| 194 |
|
|
static void |
| 195 |
|
|
module_exit(void) |
| 196 |
|
|
{ |
| 197 |
|
|
mod_del_cmd(&svsmode_msgtab); |
| 198 |
|
|
} |
| 199 |
|
|
|
| 200 |
|
|
struct module module_entry = { |
| 201 |
|
|
.node = { NULL, NULL, NULL }, |
| 202 |
|
|
.name = NULL, |
| 203 |
|
|
.version = "$Revision$", |
| 204 |
|
|
.handle = NULL, |
| 205 |
|
|
.modinit = module_init, |
| 206 |
|
|
.modexit = module_exit, |
| 207 |
|
|
.flags = 0 |
| 208 |
|
|
}; |