]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_testmask.c
[svn] - the new plan:
[irc/rqf/shadowircd.git] / modules / m_testmask.c
CommitLineData
212380e3 1/*
2 * m_testmask.c: Shows the number of matching local and global clients
3 * for a user@host mask, helpful when setting GLINE's
4 *
5 * Copyright (C) 2003 by W. Campbell
6 * Coypright (C) 2004 ircd-ratbox development team
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * 1.Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 * 2.Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3.The name of the author may not be used to endorse or promote products
18 * derived from this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $Id: m_testmask.c 2775 2006-11-27 11:45:31Z jilles $
33 *
34 */
35
36/* List of ircd includes from ../include/ */
37#include "stdinc.h"
38#include "client.h"
39#include "common.h" /* FALSE bleah */
40#include "ircd.h"
41#include "irc_string.h"
42#include "numeric.h"
43#include "s_conf.h"
44#include "s_log.h"
45#include "s_serv.h"
46#include "send.h"
47#include "msg.h"
48#include "parse.h"
49#include "modules.h"
50
51static int mo_testmask(struct Client *client_p, struct Client *source_p,
52 int parc, const char *parv[]);
53
54struct Message testmask_msgtab = {
55 "TESTMASK", 0, 0, 0, MFLG_SLOW,
56 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_testmask, 2}}
57};
58
59mapi_clist_av1 testmask_clist[] = { &testmask_msgtab, NULL };
60DECLARE_MODULE_AV1(testmask, NULL, NULL, testmask_clist, NULL, NULL, "$Revision: 2775 $");
61
62static const char *empty_sockhost = "255.255.255.255";
63static const char *spoofed_sockhost = "0";
64
65static int
66mo_testmask(struct Client *client_p, struct Client *source_p,
67 int parc, const char *parv[])
68{
69 struct Client *target_p;
70 int lcount = 0;
71 int gcount = 0;
72 char *name, *username, *hostname;
73 const char *sockhost;
74 char *gecos = NULL, *mangle_gecos = NULL;
75 dlink_node *ptr;
76
77 name = LOCAL_COPY(parv[1]);
78 collapse(name);
79
80 /* username is required */
81 if((hostname = strchr(name, '@')) == NULL)
82 {
83 sendto_one(source_p, ":%s NOTICE %s :Invalid parameters",
84 me.name, source_p->name);
85 return 0;
86 }
87
88 *hostname++ = '\0';
89
90 /* nickname is optional */
91 if((username = strchr(name, '!')) == NULL)
92 {
93 username = name;
94 name = NULL;
95 }
96 else
97 *username++ = '\0';
98
99 if(EmptyString(username) || EmptyString(hostname))
100 {
101 sendto_one(source_p, ":%s NOTICE %s :Invalid parameters",
102 me.name, source_p->name);
103 return 0;
104 }
105
106 if(parc > 2 && !EmptyString(parv[2]))
107 {
108 gecos = LOCAL_COPY(parv[2]);
109 collapse_esc(gecos);
110 if(strstr(gecos, "\\s"))
111 {
112 char *tmp = LOCAL_COPY(gecos);
113 char *orig = tmp;
114 char *new = tmp;
115 while(*orig)
116 {
117 if(*orig == '\\' && *(orig + 1) != '\0')
118 {
119 if(*(orig + 1) == 's')
120 {
121 *new++ = ' ';
122 orig += 2;
123 }
124 /* otherwise skip that and the escaped
125 * character after it, so we dont mistake
126 * \\s as \s --fl
127 */
128 else
129 {
130 *new++ = *orig++;
131 *new++ = *orig++;
132 }
133 }
134 else
135 *new++ = *orig++;
136 }
137
138 *new = '\0';
139 mangle_gecos = LOCAL_COPY(tmp);
140 } else
141 mangle_gecos = gecos;
142 }
143
144 DLINK_FOREACH(ptr, global_client_list.head)
145 {
146 target_p = ptr->data;
147
148 if(!IsPerson(target_p))
149 continue;
150
151 if(EmptyString(target_p->sockhost))
152 sockhost = empty_sockhost;
153 else if(!show_ip(source_p, target_p))
154 sockhost = spoofed_sockhost;
155 else
156 sockhost = target_p->sockhost;
157
158 if(match(username, target_p->username) &&
159 (match(hostname, target_p->host) ||
160 match(hostname, target_p->orighost) ||
161 match(hostname, sockhost) || match_ips(hostname, sockhost)))
162 {
163 if(name && !match(name, target_p->name))
164 continue;
165
166 if(mangle_gecos && !match_esc(mangle_gecos, target_p->info))
167 continue;
168
169 if(MyClient(target_p))
170 lcount++;
171 else
172 gcount++;
173 }
174 }
175
176 sendto_one(source_p, form_str(RPL_TESTMASKGECOS),
177 me.name, source_p->name,
178 lcount, gcount, name ? name : "*",
179 username, hostname, gecos ? gecos : "*");
180 return 0;
181}