ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/branches/8.2.x/modules/m_svsnick.c
Revision: 4021
Committed: Fri Jun 20 16:19:28 2014 UTC (11 years, 2 months ago) by michael
Content type: text/x-csrc
File size: 4467 byte(s)
Log Message:
- Got rid of SEND_UMODES. We now propagate all modes.

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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 * USA
21 */
22
23 /*! \file m_svsnick.c
24 * \brief Includes required functions for processing the SVSNICK command.
25 * \version $Id$
26 */
27
28
29 #include "stdinc.h"
30 #include "client.h"
31 #include "ircd.h"
32 #include "channel_mode.h"
33 #include "numeric.h"
34 #include "server.h"
35 #include "send.h"
36 #include "parse.h"
37 #include "modules.h"
38 #include "irc_string.h"
39 #include "user.h"
40 #include "hash.h"
41 #include "watch.h"
42 #include "whowas.h"
43
44
45 /*! \brief SVSNICK command handler
46 *
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] = command
54 * - parv[1] = old nickname
55 * - parv[2] = new nickname
56 * - parv[3] = timestamp
57 */
58 static int
59 ms_svsnick(struct Client *source_p, int parc, char *parv[])
60 {
61 struct Client *target_p = NULL, *exists_p = NULL;
62
63 if (!HasFlag(source_p, FLAGS_SERVICE) || !valid_nickname(parv[2], 1))
64 return 0;
65
66 if ((target_p = find_person(source_p, parv[1])) == NULL)
67 return 0;
68
69 if (!MyConnect(target_p))
70 {
71 if (target_p->from == source_p->from)
72 {
73 sendto_realops_flags(UMODE_DEBUG, L_ALL, SEND_NOTICE,
74 "Received wrong-direction SVSNICK "
75 "for %s (behind %s) from %s",
76 target_p->name, source_p->from->name,
77 get_client_name(source_p, HIDE_IP));
78 return 0;
79 }
80
81 sendto_one(target_p, ":%s SVSNICK %s %s %s", source_p->id,
82 target_p->id, parv[2], parv[3]);
83 return 0;
84 }
85
86 if ((exists_p = hash_find_client(parv[2])))
87 {
88 if (target_p == exists_p)
89 {
90 if (!strcmp(target_p->name, parv[2]))
91 return 0;
92 }
93 else if (IsUnknown(exists_p))
94 exit_client(exists_p, "SVSNICK Override");
95 else
96 {
97 exit_client(target_p, "SVSNICK Collide");
98 return 0;
99 }
100 }
101
102 target_p->tsinfo = atoi(parv[3]);
103 clear_ban_cache_client(target_p);
104 watch_check_hash(target_p, RPL_LOGOFF);
105
106 if (HasUMode(target_p, UMODE_REGISTERED))
107 {
108 unsigned int oldmodes = target_p->umodes;
109 char modebuf[IRCD_BUFSIZE] = "";
110
111 DelUMode(target_p, UMODE_REGISTERED);
112 send_umode(target_p, target_p, oldmodes, modebuf);
113 }
114
115 sendto_common_channels_local(target_p, 1, 0, ":%s!%s@%s NICK :%s",
116 target_p->name, target_p->username,
117 target_p->host, parv[2]);
118
119 whowas_add_history(target_p, 1);
120
121 sendto_server(NULL, NOCAPS, NOCAPS, ":%s NICK %s :%lu",
122 target_p->id, parv[2], (unsigned long)target_p->tsinfo);
123 hash_del_client(target_p);
124 strlcpy(target_p->name, parv[2], sizeof(target_p->name));
125 hash_add_client(target_p);
126
127 watch_check_hash(target_p, RPL_LOGON);
128
129 fd_note(&target_p->localClient->fd, "Nick: %s", parv[2]);
130 return 0;
131 }
132
133 static struct Message svsnick_msgtab =
134 {
135 "SVSNICK", 0, 0, 4, MAXPARA, MFLG_SLOW, 0,
136 { m_ignore, m_ignore, ms_svsnick, m_ignore, m_ignore, m_ignore }
137 };
138
139 static void
140 module_init(void)
141 {
142 mod_add_cmd(&svsnick_msgtab);
143 }
144
145 static void
146 module_exit(void)
147 {
148 mod_del_cmd(&svsnick_msgtab);
149 }
150
151 struct module module_entry =
152 {
153 .node = { NULL, NULL, NULL },
154 .name = NULL,
155 .version = "$Revision$",
156 .handle = NULL,
157 .modinit = module_init,
158 .modexit = module_exit,
159 .flags = 0
160 };

Properties

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