]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_privs.c
irc_string.h -> match.h, irc_string.h; includes changed
[irc/rqf/shadowircd.git] / modules / m_privs.c
CommitLineData
93d880f9
JT
1/*
2 * m_privs.c: Shows effective operator privileges
3 *
4 * Copyright (C) 2008 Jilles Tjoelker
5 * Copyright (C) 2008 charybdis development team
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * 1.Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * 2.Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3.The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include "stdinc.h"
33#include "client.h"
34#include "common.h"
35#include "numeric.h"
36#include "send.h"
37#include "msg.h"
38#include "parse.h"
39#include "modules.h"
40#include "s_conf.h"
41#include "s_newconf.h"
42
93d880f9
JT
43static int me_privs(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
44static int mo_privs(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
45
46struct Message privs_msgtab = {
47 "PRIVS", 0, 0, 0, MFLG_SLOW,
48 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, {me_privs, 0}, {mo_privs, 0}}
49};
50
51mapi_clist_av1 privs_clist[] = {
52 &privs_msgtab,
53 NULL
54};
55
56/* XXX this is a copy, not so nice */
57struct mode_table
58{
59 const char *name;
60 int mode;
61};
62
63static struct mode_table oper_table[] = {
64 /*{"encrypted", OPER_ENCRYPTED },*/
65 {"local_kill", OPER_LOCKILL },
66 {"global_kill", OPER_GLOBKILL/*|OPER_LOCKILL*/ },
67 {"remote", OPER_REMOTE },
68 {"kline", OPER_KLINE },
69 {"unkline", OPER_UNKLINE },
93d880f9
JT
70 {"nick_changes", OPER_NICKS },
71 {"rehash", OPER_REHASH },
72 {"die", OPER_DIE },
73 {"admin", OPER_ADMIN },
74 {"hidden_admin", OPER_HADMIN },
75 {"xline", OPER_XLINE },
76 {"resv", OPER_RESV },
77 {"operwall", OPER_OPERWALL },
78 {"oper_spy", OPER_SPY },
79 {"hidden_oper", OPER_INVIS },
80 {"remoteban", OPER_REMOTEBAN },
81 {"mass_notice", OPER_MASSNOTICE },
82 {NULL, 0}
83};
84
85/* there is no such table like this anywhere else */
86static struct mode_table auth_client_table[] = {
87 {"resv_exempt", FLAGS2_EXEMPTRESV },
93d880f9
JT
88 {"kline_exempt", FLAGS2_EXEMPTKLINE },
89 {"flood_exempt", FLAGS2_EXEMPTFLOOD },
93d880f9
JT
90 {"spambot_exempt", FLAGS2_EXEMPTSPAMBOT },
91 {"shide_exempt", FLAGS2_EXEMPTSHIDE },
92 {"jupe_exempt", FLAGS2_EXEMPTJUPE },
93 {NULL, 0}
94};
95
96DECLARE_MODULE_AV1(privs, NULL, NULL, privs_clist, NULL, NULL, "");
97
98static void show_privs(struct Client *source_p, struct Client *target_p)
99{
100 char buf[512];
101 struct mode_table *p;
102
103 buf[0] = '\0';
104 p = &oper_table[0];
105 while (p->name != NULL)
106 {
107 if (target_p->flags2 & p->mode)
108 {
109 if (buf[0] != '\0')
a64c5173
VY
110 rb_strlcat(buf, " ", sizeof buf);
111 rb_strlcat(buf, p->name, sizeof buf);
93d880f9
JT
112 }
113 p++;
114 }
115 if (IsOper(target_p))
116 {
117 if (buf[0] != '\0')
a64c5173
VY
118 rb_strlcat(buf, " ", sizeof buf);
119 rb_strlcat(buf, "operator:", sizeof buf);
120 rb_strlcat(buf, target_p->localClient->opername, sizeof buf);
93d880f9
JT
121 }
122 p = &auth_client_table[0];
123 while (p->name != NULL)
124 {
125 if (target_p->flags2 & p->mode)
126 {
127 if (buf[0] != '\0')
a64c5173
VY
128 rb_strlcat(buf, " ", sizeof buf);
129 rb_strlcat(buf, p->name, sizeof buf);
93d880f9
JT
130 }
131 p++;
132 }
8e0633f5
JT
133 sendto_one_numeric(source_p, RPL_PRIVS, form_str(RPL_PRIVS),
134 target_p->name, buf);
93d880f9
JT
135}
136
137static int me_privs(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
138{
139 struct Client *target_p;
140
141 if (!IsOper(source_p) || parc < 2 || EmptyString(parv[1]))
142 return 0;
143
144 /* we cannot show privs for remote clients */
145 if((target_p = find_person(parv[1])) && MyClient(target_p))
146 show_privs(source_p, target_p);
147
148 return 0;
149}
150
151static int mo_privs(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
152{
153 struct Client *target_p;
154
155 if (parc < 2 || EmptyString(parv[1]))
156 target_p = source_p;
157 else
158 {
159 target_p = find_named_person(parv[1]);
160 if (target_p == NULL)
161 {
162 sendto_one_numeric(source_p, ERR_NOSUCHNICK,
163 form_str(ERR_NOSUCHNICK), parv[1]);
164 return 0;
165 }
166 }
167
168 if (MyClient(target_p))
169 show_privs(source_p, target_p);
170 else
171 sendto_one(target_p, ":%s ENCAP %s PRIVS %s",
172 get_id(source_p, target_p),
173 target_p->servptr->name,
174 use_id(target_p));
175 return 0;
176}