ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/m_svsmode.c
Revision: 4564
Committed: Sun Aug 24 10:24:47 2014 UTC (11 years ago) by michael
Content type: text/x-csrc
File size: 5138 byte(s)
Log Message:
- Update GPL 2 license headers

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1999 Bahamut development team.
5 * Copyright (c) 2011-2014 ircd-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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
20 * USA
21 */
22
23 /*! \file m_svsmode.c
24 * \brief Includes required functions for processing the SVSMODE command.
25 * \version $Id$
26 */
27
28 #include "stdinc.h"
29 #include "client.h"
30 #include "ircd.h"
31 #include "server.h"
32 #include "send.h"
33 #include "channel_mode.h"
34 #include "parse.h"
35 #include "modules.h"
36 #include "irc_string.h"
37 #include "user.h"
38 #include "conf.h"
39
40
41 /*! \brief SVSMODE command handler
42 *
43 * \param source_p Pointer to allocated Client struct from which the message
44 * originally comes from. This can be a local or remote client.
45 * \param parc Integer holding the number of supplied arguments.
46 * \param parv Argument vector where parv[0] .. parv[parc-1] are non-NULL
47 * pointers.
48 * \note Valid arguments for this command are:
49 * - parv[0] = command
50 * - parv[1] = nickname
51 * - parv[2] = TS
52 * - parv[3] = mode
53 * - parv[4] = optional argument (services id, vhost)
54 */
55 static int
56 ms_svsmode(struct Client *source_p, int parc, char *parv[])
57 {
58 struct Client *target_p = NULL;
59 int what = MODE_ADD;
60 unsigned int flag = 0, setmodes = 0;
61 const char *modes = NULL, *extarg = NULL;
62 time_t ts = 0;
63
64 if (!HasFlag(source_p, FLAGS_SERVICE))
65 return 0;
66
67 ts = atol(parv[2]);
68 modes = parv[3];
69 extarg = (parc > 4) ? parv[4] : NULL;
70
71 if ((target_p = find_person(source_p, parv[1])) == NULL)
72 return 0;
73
74 if (ts && (ts != target_p->tsinfo))
75 return 0;
76
77 setmodes = target_p->umodes;
78
79 for (const char *m = modes; *m; ++m)
80 {
81 switch (*m)
82 {
83 case '+':
84 what = MODE_ADD;
85 break;
86 case '-':
87 what = MODE_DEL;
88 break;
89
90 case 'd':
91 if (!EmptyString(extarg))
92 strlcpy(target_p->svid, extarg, sizeof(target_p->svid));
93 break;
94
95 case 'x':
96 if (!EmptyString(extarg) && valid_hostname(extarg))
97 user_set_hostmask(target_p, extarg, what);
98 break;
99
100 case 'o':
101 if (what == MODE_DEL && HasUMode(target_p, UMODE_OPER))
102 {
103 ClearOper(target_p);
104 --Count.oper;
105
106 if (MyConnect(target_p))
107 {
108 dlink_node *dm = NULL;
109
110 detach_conf(target_p, CONF_OPER);
111 ClrOFlag(target_p);
112 DelUMode(target_p, ConfigGeneral.oper_only_umodes);
113
114 if ((dm = dlinkFindDelete(&oper_list, target_p)))
115 free_dlink_node(dm);
116 }
117 }
118
119 break;
120
121 case 'i':
122 if (what == MODE_ADD && !HasUMode(target_p, UMODE_INVISIBLE))
123 {
124 AddUMode(target_p, UMODE_INVISIBLE);
125 ++Count.invisi;
126 }
127
128 if (what == MODE_DEL && HasUMode(target_p, UMODE_INVISIBLE))
129 {
130 DelUMode(target_p, UMODE_INVISIBLE);
131 --Count.invisi;
132 }
133
134 break;
135
136 case 'S': /* Only servers may set +S in a burst */
137 case 'W': /* Only servers may set +W in a burst */
138 break;
139
140 default:
141 if ((flag = user_modes[(unsigned char)*m]))
142 {
143 if (what == MODE_ADD)
144 AddUMode(target_p, flag);
145 else
146 DelUMode(target_p, flag);
147 }
148
149 break;
150 }
151 }
152
153 if (extarg)
154 sendto_server(source_p, NOCAPS, NOCAPS, ":%s SVSMODE %s %lu %s %s",
155 source_p->id,
156 target_p->id, (unsigned long)target_p->tsinfo, modes, extarg);
157 else
158 sendto_server(source_p, NOCAPS, NOCAPS, ":%s SVSMODE %s %lu %s",
159 source_p->id,
160 target_p->id, (unsigned long)target_p->tsinfo, modes);
161
162 if (MyConnect(target_p) && (setmodes != target_p->umodes))
163 {
164 char modebuf[IRCD_BUFSIZE] = "";
165
166 send_umode(target_p, target_p, setmodes, modebuf);
167 }
168
169 return 0;
170 }
171
172 static struct Message svsmode_msgtab =
173 {
174 "SVSMODE", NULL, 0, 0, 4, MAXPARA, MFLG_SLOW, 0,
175 { m_ignore, m_ignore, ms_svsmode, m_ignore, m_ignore, m_ignore }
176 };
177
178 static void
179 module_init(void)
180 {
181 mod_add_cmd(&svsmode_msgtab);
182 }
183
184 static void
185 module_exit(void)
186 {
187 mod_del_cmd(&svsmode_msgtab);
188 }
189
190 struct module module_entry =
191 {
192 .node = { NULL, NULL, NULL },
193 .name = NULL,
194 .version = "$Revision$",
195 .handle = NULL,
196 .modinit = module_init,
197 .modexit = module_exit,
198 .flags = 0
199 };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision