Blame


1 2ee05c9a 2002-03-03 alex /*
2 2ee05c9a 2002-03-03 alex * ngIRCd -- The Next Generation IRC Daemon
3 2ee05c9a 2002-03-03 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 2ee05c9a 2002-03-03 alex *
5 490f28ff 2002-12-12 alex * This program is free software; you can redistribute it and/or modify
6 490f28ff 2002-12-12 alex * it under the terms of the GNU General Public License as published by
7 490f28ff 2002-12-12 alex * the Free Software Foundation; either version 2 of the License, or
8 490f28ff 2002-12-12 alex * (at your option) any later version.
9 490f28ff 2002-12-12 alex * Please read the file COPYING, README and AUTHORS for more information.
10 2ee05c9a 2002-03-03 alex *
11 490f28ff 2002-12-12 alex * IRC operator commands
12 2ee05c9a 2002-03-03 alex */
13 2ee05c9a 2002-03-03 alex
14 2ee05c9a 2002-03-03 alex
15 ca33cbda 2002-03-12 alex #include "portab.h"
16 2ee05c9a 2002-03-03 alex
17 fcf65bee 2005-06-12 fw static char UNUSED id[] = "$Id: irc-oper.c,v 1.22 2005/06/12 18:02:09 fw Exp $";
18 490f28ff 2002-12-12 alex
19 ca33cbda 2002-03-12 alex #include "imp.h"
20 2ee05c9a 2002-03-03 alex #include <assert.h>
21 4e485443 2002-12-31 alex #include <stdlib.h>
22 7d4e9a01 2002-04-04 alex #include <string.h>
23 2ee05c9a 2002-03-03 alex
24 2ee05c9a 2002-03-03 alex #include "ngircd.h"
25 c2f60abe 2002-05-27 alex #include "resolve.h"
26 c2f60abe 2002-05-27 alex #include "conn.h"
27 a2544e49 2002-12-30 alex #include "conf.h"
28 c2f60abe 2002-05-27 alex #include "client.h"
29 c2f60abe 2002-05-27 alex #include "channel.h"
30 2ee05c9a 2002-03-03 alex #include "irc-write.h"
31 2ee05c9a 2002-03-03 alex #include "log.h"
32 e7f87828 2005-03-03 alex #include "match.h"
33 2ee05c9a 2002-03-03 alex #include "messages.h"
34 c2f60abe 2002-05-27 alex #include "parse.h"
35 2ee05c9a 2002-03-03 alex
36 2ee05c9a 2002-03-03 alex #include <exp.h>
37 2ee05c9a 2002-03-03 alex #include "irc-oper.h"
38 2ee05c9a 2002-03-03 alex
39 2ee05c9a 2002-03-03 alex
40 fcf65bee 2005-06-12 fw LOCAL bool
41 fcf65bee 2005-06-12 fw Bad_OperPass(CLIENT *Client, char *errtoken, char *errmsg)
42 74424cb1 2005-06-12 fw {
43 fcf65bee 2005-06-12 fw Log( LOG_WARNING, "Got invalid OPER from \"%s\": \"%s\" -- %s", Client_Mask( Client ),
44 fcf65bee 2005-06-12 fw errtoken, errmsg);
45 fcf65bee 2005-06-12 fw IRC_SetPenalty(Client, 3);
46 fcf65bee 2005-06-12 fw return IRC_WriteStrClient( Client, ERR_PASSWDMISMATCH_MSG, Client_ID( Client ));
47 74424cb1 2005-06-12 fw }
48 74424cb1 2005-06-12 fw
49 74424cb1 2005-06-12 fw
50 8adff592 2005-03-19 fw GLOBAL bool
51 c2f60abe 2002-05-27 alex IRC_OPER( CLIENT *Client, REQUEST *Req )
52 2ee05c9a 2002-03-03 alex {
53 8adff592 2005-03-19 fw int i;
54 2ee05c9a 2002-03-03 alex
55 2ee05c9a 2002-03-03 alex assert( Client != NULL );
56 2ee05c9a 2002-03-03 alex assert( Req != NULL );
57 2ee05c9a 2002-03-03 alex
58 2ee05c9a 2002-03-03 alex /* Falsche Anzahl Parameter? */
59 2ee05c9a 2002-03-03 alex if( Req->argc != 2 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
60 2ee05c9a 2002-03-03 alex
61 2ee05c9a 2002-03-03 alex /* Operator suchen */
62 2ee05c9a 2002-03-03 alex for( i = 0; i < Conf_Oper_Count; i++)
63 2ee05c9a 2002-03-03 alex {
64 2ee05c9a 2002-03-03 alex if( Conf_Oper[i].name[0] && Conf_Oper[i].pwd[0] && ( strcmp( Conf_Oper[i].name, Req->argv[0] ) == 0 )) break;
65 2ee05c9a 2002-03-03 alex }
66 2ee05c9a 2002-03-03 alex if( i >= Conf_Oper_Count )
67 fcf65bee 2005-06-12 fw return Bad_OperPass(Client, Req->argv[0], "not configured");
68 2ee05c9a 2002-03-03 alex
69 2ee05c9a 2002-03-03 alex /* Stimmt das Passwort? */
70 2ee05c9a 2002-03-03 alex if( strcmp( Conf_Oper[i].pwd, Req->argv[1] ) != 0 )
71 fcf65bee 2005-06-12 fw return Bad_OperPass(Client, Conf_Oper[i].name, "Bad password");
72 2ee05c9a 2002-03-03 alex
73 490c9d04 2005-03-02 alex /* Authorized Mask? */
74 74424cb1 2005-06-12 fw if( Conf_Oper[i].mask && (! Match( Conf_Oper[i].mask, Client_Mask( Client ) )))
75 fcf65bee 2005-06-12 fw return Bad_OperPass(Client, Conf_Oper[i].mask, "hostmask check failed" );
76 490c9d04 2005-03-02 alex
77 2ee05c9a 2002-03-03 alex if( ! Client_HasMode( Client, 'o' ))
78 2ee05c9a 2002-03-03 alex {
79 2ee05c9a 2002-03-03 alex /* noch kein o-Mode gesetzt */
80 2ee05c9a 2002-03-03 alex Client_ModeAdd( Client, 'o' );
81 2ee05c9a 2002-03-03 alex if( ! IRC_WriteStrClient( Client, "MODE %s :+o", Client_ID( Client ))) return DISCONNECTED;
82 2ee05c9a 2002-03-03 alex IRC_WriteStrServersPrefix( NULL, Client, "MODE %s :+o", Client_ID( Client ));
83 2ee05c9a 2002-03-03 alex }
84 2ee05c9a 2002-03-03 alex
85 6b58ab84 2002-03-27 alex if( ! Client_OperByMe( Client )) Log( LOG_NOTICE|LOG_snotice, "Got valid OPER from \"%s\", user is an IRC operator now.", Client_Mask( Client ));
86 2ee05c9a 2002-03-03 alex
87 8adff592 2005-03-19 fw Client_SetOperByMe( Client, true);
88 2ee05c9a 2002-03-03 alex return IRC_WriteStrClient( Client, RPL_YOUREOPER_MSG, Client_ID( Client ));
89 2ee05c9a 2002-03-03 alex } /* IRC_OPER */
90 2ee05c9a 2002-03-03 alex
91 2ee05c9a 2002-03-03 alex
92 8adff592 2005-03-19 fw GLOBAL bool
93 c2f60abe 2002-05-27 alex IRC_DIE( CLIENT *Client, REQUEST *Req )
94 2ee05c9a 2002-03-03 alex {
95 4e485443 2002-12-31 alex /* Shut down server */
96 4e485443 2002-12-31 alex
97 2ee05c9a 2002-03-03 alex assert( Client != NULL );
98 2ee05c9a 2002-03-03 alex assert( Req != NULL );
99 2ee05c9a 2002-03-03 alex
100 4e485443 2002-12-31 alex /* Not a local IRC operator? */
101 4e485443 2002-12-31 alex if(( ! Client_HasMode( Client, 'o' )) || ( ! Client_OperByMe( Client ))) return IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
102 4e485443 2002-12-31 alex
103 4e485443 2002-12-31 alex /* Bad number of parameters? */
104 2ee05c9a 2002-03-03 alex if( Req->argc != 0 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
105 2ee05c9a 2002-03-03 alex
106 15e4f674 2002-12-27 alex Log( LOG_NOTICE|LOG_snotice, "Got DIE command from \"%s\" ...", Client_Mask( Client ));
107 8adff592 2005-03-19 fw NGIRCd_SignalQuit = true;
108 2ee05c9a 2002-03-03 alex return CONNECTED;
109 2ee05c9a 2002-03-03 alex } /* IRC_DIE */
110 2ee05c9a 2002-03-03 alex
111 2ee05c9a 2002-03-03 alex
112 8adff592 2005-03-19 fw GLOBAL bool
113 4eb57b59 2002-11-22 alex IRC_REHASH( CLIENT *Client, REQUEST *Req )
114 a5c92290 2002-11-22 alex {
115 4e485443 2002-12-31 alex /* Reload configuration file */
116 4e485443 2002-12-31 alex
117 a5c92290 2002-11-22 alex assert( Client != NULL );
118 a5c92290 2002-11-22 alex assert( Req != NULL );
119 a5c92290 2002-11-22 alex
120 4e485443 2002-12-31 alex /* Not a local IRC operator? */
121 a5c92290 2002-11-22 alex if(( ! Client_HasMode( Client, 'o' )) || ( ! Client_OperByMe( Client ))) return IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
122 a5c92290 2002-11-22 alex
123 4e485443 2002-12-31 alex /* Bad number of parameters? */
124 4e485443 2002-12-31 alex if( Req->argc != 0 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
125 4e485443 2002-12-31 alex
126 15e4f674 2002-12-27 alex Log( LOG_NOTICE|LOG_snotice, "Got REHASH command from \"%s\" ...", Client_Mask( Client ));
127 8adff592 2005-03-19 fw NGIRCd_SignalRehash = true;
128 a5c92290 2002-11-22 alex
129 a5c92290 2002-11-22 alex return CONNECTED;
130 4eb57b59 2002-11-22 alex } /* IRC_REHASH */
131 a5c92290 2002-11-22 alex
132 a5c92290 2002-11-22 alex
133 8adff592 2005-03-19 fw GLOBAL bool
134 c2f60abe 2002-05-27 alex IRC_RESTART( CLIENT *Client, REQUEST *Req )
135 2ee05c9a 2002-03-03 alex {
136 4e485443 2002-12-31 alex /* Restart IRC server (fork a new process) */
137 4e485443 2002-12-31 alex
138 2ee05c9a 2002-03-03 alex assert( Client != NULL );
139 2ee05c9a 2002-03-03 alex assert( Req != NULL );
140 2ee05c9a 2002-03-03 alex
141 4e485443 2002-12-31 alex /* Not a local IRC operator? */
142 2ee05c9a 2002-03-03 alex if(( ! Client_HasMode( Client, 'o' )) || ( ! Client_OperByMe( Client ))) return IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
143 2ee05c9a 2002-03-03 alex
144 4e485443 2002-12-31 alex /* Bad number of parameters? */
145 4e485443 2002-12-31 alex if( Req->argc != 0 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
146 4e485443 2002-12-31 alex
147 15e4f674 2002-12-27 alex Log( LOG_NOTICE|LOG_snotice, "Got RESTART command from \"%s\" ...", Client_Mask( Client ));
148 8adff592 2005-03-19 fw NGIRCd_SignalRestart = true;
149 2ee05c9a 2002-03-03 alex return CONNECTED;
150 2ee05c9a 2002-03-03 alex } /* IRC_RESTART */
151 2ee05c9a 2002-03-03 alex
152 2ee05c9a 2002-03-03 alex
153 8adff592 2005-03-19 fw GLOBAL bool
154 1256f347 2002-09-03 alex IRC_CONNECT(CLIENT *Client, REQUEST *Req )
155 1256f347 2002-09-03 alex {
156 4e485443 2002-12-31 alex /* Connect configured or new server */
157 1256f347 2002-09-03 alex
158 1256f347 2002-09-03 alex assert( Client != NULL );
159 1256f347 2002-09-03 alex assert( Req != NULL );
160 1256f347 2002-09-03 alex
161 4e485443 2002-12-31 alex /* Not a local IRC operator? */
162 1256f347 2002-09-03 alex if(( ! Client_HasMode( Client, 'o' )) || ( ! Client_OperByMe( Client ))) return IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
163 1256f347 2002-09-03 alex
164 4e485443 2002-12-31 alex /* Bad number of parameters? */
165 4e485443 2002-12-31 alex if(( Req->argc != 2 ) && ( Req->argc != 5 )) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
166 4e485443 2002-12-31 alex
167 4e485443 2002-12-31 alex /* Invalid port number? */
168 4e485443 2002-12-31 alex if( atoi( Req->argv[1] ) < 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
169 4e485443 2002-12-31 alex
170 4e485443 2002-12-31 alex Log( LOG_NOTICE|LOG_snotice, "Got CONNECT command from \"%s\" for \"%s\".", Client_Mask( Client ), Req->argv[0]);
171 4e485443 2002-12-31 alex
172 4e485443 2002-12-31 alex if( Req->argc == 2 )
173 4e485443 2002-12-31 alex {
174 4e485443 2002-12-31 alex /* Connect configured server */
175 4e485443 2002-12-31 alex if( ! Conf_EnableServer( Req->argv[0], atoi( Req->argv[1] ))) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[0] );
176 4e485443 2002-12-31 alex }
177 4e485443 2002-12-31 alex else
178 4e485443 2002-12-31 alex {
179 4e485443 2002-12-31 alex /* Add server */
180 4e485443 2002-12-31 alex if( ! Conf_AddServer( Req->argv[0], atoi( Req->argv[1] ), Req->argv[2], Req->argv[3], Req->argv[4] )) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[0] );
181 4e485443 2002-12-31 alex }
182 1256f347 2002-09-03 alex return CONNECTED;
183 1256f347 2002-09-03 alex } /* IRC_CONNECT */
184 1256f347 2002-09-03 alex
185 1256f347 2002-09-03 alex
186 8adff592 2005-03-19 fw GLOBAL bool
187 4e485443 2002-12-31 alex IRC_DISCONNECT(CLIENT *Client, REQUEST *Req )
188 4e485443 2002-12-31 alex {
189 4e485443 2002-12-31 alex /* Disconnect and disable configured server */
190 4e485443 2002-12-31 alex
191 4e485443 2002-12-31 alex CONN_ID my_conn;
192 4e485443 2002-12-31 alex
193 4e485443 2002-12-31 alex assert( Client != NULL );
194 4e485443 2002-12-31 alex assert( Req != NULL );
195 4e485443 2002-12-31 alex
196 4e485443 2002-12-31 alex /* Not a local IRC operator? */
197 4e485443 2002-12-31 alex if(( ! Client_HasMode( Client, 'o' )) || ( ! Client_OperByMe( Client ))) return IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client ));
198 4e485443 2002-12-31 alex
199 4e485443 2002-12-31 alex /* Bad number of parameters? */
200 4e485443 2002-12-31 alex if( Req->argc != 1 ) return IRC_WriteStrClient( Client, ERR_NEEDMOREPARAMS_MSG, Client_ID( Client ), Req->command );
201 4e485443 2002-12-31 alex
202 4e485443 2002-12-31 alex Log( LOG_NOTICE|LOG_snotice, "Got DISCONNECT command from \"%s\" for0 \"%s\".", Client_Mask( Client ), Req->argv[0]);
203 4e485443 2002-12-31 alex
204 4e485443 2002-12-31 alex /* Save ID of this connection */
205 4e485443 2002-12-31 alex my_conn = Client_Conn( Client );
206 4e485443 2002-12-31 alex
207 4e485443 2002-12-31 alex /* Connect configured server */
208 4e485443 2002-12-31 alex if( ! Conf_DisableServer( Req->argv[0] )) return IRC_WriteStrClient( Client, ERR_NOSUCHSERVER_MSG, Client_ID( Client ), Req->argv[0] );
209 4e485443 2002-12-31 alex
210 4e485443 2002-12-31 alex /* Are we still connected or were we killed, too? */
211 4e485443 2002-12-31 alex if( Client_GetFromConn( my_conn )) return CONNECTED;
212 4e485443 2002-12-31 alex else return DISCONNECTED;
213 4e485443 2002-12-31 alex } /* IRC_CONNECT */
214 4e485443 2002-12-31 alex
215 4e485443 2002-12-31 alex
216 2ee05c9a 2002-03-03 alex /* -eof- */