1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2008 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
16 /* $ModDesc: Povides support for the /DCCALLOW command */
18 static ConfigReader *Conf;
20 class BannedFileList : public classbase
27 class DCCAllow : public classbase
37 DCCAllow(const std::string &nick, const std::string &hm, const time_t so, const long ln) : nickname(nick), hostmask(hm), set_on(so), length(ln) { }
40 typedef std::vector<User *> userlist;
42 typedef std::vector<DCCAllow> dccallowlist;
44 typedef std::vector<BannedFileList> bannedfilelist;
47 class CommandDccallow : public Command
50 CommandDccallow(InspIRCd* Me) : Command(Me, "DCCALLOW", 0, 0)
52 this->source = "m_dccallow.so";
53 syntax = "{[+|-]<nick> <time>|HELP|LIST}";
54 /* XXX we need to fix this so it can work with translation stuff (i.e. move +- into a seperate param */
57 CmdResult Handle(const std::vector<std::string> ¶meters, User *user)
59 /* syntax: DCCALLOW [+|-]<nick> (<time>) */
60 if (!parameters.size())
62 // display current DCCALLOW list
63 DisplayDCCAllowList(user);
66 else if (parameters.size() > 0)
68 char action = *parameters[0].c_str();
70 // if they didn't specify an action, this is probably a command
71 if (action != '+' && action != '-')
73 if (!strcasecmp(parameters[0].c_str(), "LIST"))
75 // list current DCCALLOW list
76 DisplayDCCAllowList(user);
79 else if (!strcasecmp(parameters[0].c_str(), "HELP"))
87 std::string nick = parameters[0].substr(1);
88 User *target = ServerInstance->FindNick(nick);
95 // check if it contains any entries
96 if (user->GetExt("dccallow_list", dl))
98 for (dccallowlist::iterator i = dl->begin(); i != dl->end(); ++i)
100 // search through list
101 if (i->nickname == target->nick)
104 user->WriteNumeric(995, "%s %s :Removed %s from your DCCALLOW list", user->nick, user->nick, target->nick);
112 user->Shrink("dccallow_list");
114 // remove from userlist
115 for (userlist::iterator j = ul.begin(); j != ul.end(); ++j)
117 User* u = (User*)(*j);
126 else if (action == '+')
128 if (!user->GetExt("dccallow_list", dl))
130 dl = new dccallowlist;
131 user->Extend("dccallow_list", dl);
132 // add this user to the userlist
135 for (dccallowlist::const_iterator k = dl->begin(); k != dl->end(); ++k)
137 if (k->nickname == target->nick)
139 user->WriteNumeric(996, "%s %s :%s is already on your DCCALLOW list", user->nick, user->nick, target->nick);
142 else if (ServerInstance->MatchText(user->GetFullHost(), k->hostmask))
144 user->WriteNumeric(996, "%s %s :You cannot add yourself to your own DCCALLOW list!", user->nick, user->nick);
149 std::string mask = std::string(target->nick)+"!"+std::string(target->ident)+"@"+std::string(target->dhost);
150 std::string default_length = Conf->ReadValue("dccallow", "length", 0);
153 if (parameters.size() < 2)
155 length = ServerInstance->Duration(default_length);
157 else if (!atoi(parameters[1].c_str()))
163 length = ServerInstance->Duration(parameters[1]);
166 if (!ServerInstance->IsValidMask(mask.c_str()))
171 dl->push_back(DCCAllow(target->nick, mask, ServerInstance->Time(), length));
175 user->WriteNumeric(993, "%s %s :Added %s to DCCALLOW list for %ld seconds", user->nick, user->nick, target->nick, length);
179 user->WriteNumeric(994, "%s %s :Added %s to DCCALLOW list for this session", user->nick, user->nick, target->nick);
188 // nick doesn't exist
189 user->WriteNumeric(401, "%s %s :No such nick/channel", user->nick, nick.c_str());
196 void DisplayHelp(User* user)
198 user->WriteNumeric(998, "%s :DCCALLOW [<+|->nick [time]] [list] [help]", user->nick);
199 user->WriteNumeric(998, "%s :You may allow DCCs from specific users by specifying a", user->nick);
200 user->WriteNumeric(998, "%s :DCC allow for the user you want to receive DCCs from.", user->nick);
201 user->WriteNumeric(998, "%s :For example, to allow the user Brain to send you inspircd.exe", user->nick);
202 user->WriteNumeric(998, "%s :you would type:", user->nick);
203 user->WriteNumeric(998, "%s :/DCCALLOW +Brain", user->nick);
204 user->WriteNumeric(998, "%s :Brain would then be able to send you files. They would have to", user->nick);
205 user->WriteNumeric(998, "%s :resend the file again if the server gave them an error message", user->nick);
206 user->WriteNumeric(998, "%s :before you added them to your DCCALLOW list.", user->nick);
207 user->WriteNumeric(998, "%s :DCCALLOW entries will be temporary by default, if you want to add", user->nick);
208 user->WriteNumeric(998, "%s :them to your DCCALLOW list until you leave IRC, type:", user->nick);
209 user->WriteNumeric(998, "%s :/DCCALLOW +Brain 0", user->nick);
210 user->WriteNumeric(998, "%s :To remove the user from your DCCALLOW list, type:", user->nick);
211 user->WriteNumeric(998, "%s :/DCCALLOW -Brain", user->nick);
212 user->WriteNumeric(998, "%s :To see the users in your DCCALLOW list, type:", user->nick);
213 user->WriteNumeric(998, "%s :/DCCALLOW LIST", user->nick);
214 user->WriteNumeric(998, "%s :NOTE: If the user leaves IRC or changes their nickname", user->nick);
215 user->WriteNumeric(998, "%s : they will be removed from your DCCALLOW list.", user->nick);
216 user->WriteNumeric(998, "%s : your DCCALLOW list will be deleted when you leave IRC.", user->nick);
217 user->WriteNumeric(999, "%s :End of DCCALLOW HELP", user->nick);
220 void DisplayDCCAllowList(User* user)
222 // display current DCCALLOW list
223 user->WriteNumeric(990, "%s :Users on your DCCALLOW list:", user->nick);
225 if (user->GetExt("dccallow_list", dl))
227 for (dccallowlist::const_iterator c = dl->begin(); c != dl->end(); ++c)
229 user->WriteNumeric(991, "%s %s :%s (%s)", user->nick, user->nick, c->nickname.c_str(), c->hostmask.c_str());
233 user->WriteNumeric(992, "%s :End of DCCALLOW list", user->nick);
238 class ModuleDCCAllow : public Module
240 CommandDccallow* mycommand;
243 ModuleDCCAllow(InspIRCd* Me)
246 Conf = new ConfigReader(ServerInstance);
247 mycommand = new CommandDccallow(ServerInstance);
248 ServerInstance->AddCommand(mycommand);
250 Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserQuit, I_OnUserPreNick, I_OnRehash };
251 ServerInstance->Modules->Attach(eventlist, this, 5);
255 virtual void OnRehash(User* user, const std::string ¶meter)
258 Conf = new ConfigReader(ServerInstance);
261 virtual void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
265 // remove their DCCALLOW list if they have one
266 if (user->GetExt("dccallow_list", udl))
269 user->Shrink("dccallow_list");
270 RemoveFromUserlist(user);
273 // remove them from any DCCALLOW lists
274 // they are currently on
279 virtual int OnUserPreNick(User* user, const std::string &newnick)
285 virtual int OnUserPreMessage(User* user, void* dest, int target_type, std::string &text, char status, CUList &exempt_list)
287 return OnUserPreNotice(user, dest, target_type, text, status, exempt_list);
290 virtual int OnUserPreNotice(User* user, void* dest, int target_type, std::string &text, char status, CUList &exempt_list)
295 if (target_type == TYPE_USER)
297 User* u = (User*)dest;
299 /* Always allow a user to dcc themselves (although... why?) */
303 if ((text.length()) && (text[0] == '\1'))
307 // :jamie!jamie@test-D4457903BA652E0F.silverdream.org PRIVMSG eimaj :DCC SEND m_dnsbl.cpp 3232235786 52650 9676
308 // :jamie!jamie@test-D4457903BA652E0F.silverdream.org PRIVMSG eimaj :VERSION
310 if (strncmp(text.c_str(), "\1DCC ", 5) == 0)
312 if (u->GetExt("dccallow_list", dl) && dl->size())
314 for (dccallowlist::const_iterator iter = dl->begin(); iter != dl->end(); ++iter)
315 if (ServerInstance->MatchText(user->GetFullHost(), iter->hostmask))
320 std::stringstream ss(text);
322 std::vector<std::string> tokens;
325 tokens.push_back(buf);
327 irc::string type = tokens[1].c_str();
329 bool blockchat = Conf->ReadFlag("dccallow", "blockchat", 0);
333 std::string defaultaction = Conf->ReadValue("dccallow", "action", 0);
334 std::string filename = tokens[2];
336 if (defaultaction == "allow")
339 for (unsigned int i = 0; i < bfl.size(); i++)
341 if (ServerInstance->MatchText(filename, bfl[i].filemask))
343 if (bfl[i].action == "allow")
348 if (defaultaction == "allow")
351 user->WriteServ("NOTICE %s :The user %s is not accepting DCC SENDs from you. Your file %s was not sent.", user->nick, u->nick, filename.c_str());
352 u->WriteServ("NOTICE %s :%s (%s@%s) attempted to send you a file named %s, which was blocked.", u->nick, user->nick, user->ident, user->dhost, filename.c_str());
353 u->WriteServ("NOTICE %s :If you trust %s and were expecting this, you can type /DCCALLOW HELP for information on the DCCALLOW system.", u->nick, user->nick);
357 else if ((type == "CHAT") && (blockchat))
359 user->WriteServ("NOTICE %s :The user %s is not accepting DCC CHAT requests from you.", user->nick, u->nick);
360 u->WriteServ("NOTICE %s :%s (%s@%s) attempted to initiate a DCC CHAT session, which was blocked.", u->nick, user->nick, user->ident, user->dhost);
361 u->WriteServ("NOTICE %s :If you trust %s and were expecting this, you can type /DCCALLOW HELP for information on the DCCALLOW system.", u->nick, user->nick);
372 for (userlist::iterator iter = ul.begin(); iter != ul.end(); ++iter)
374 User* u = (User*)(*iter);
375 if (u->GetExt("dccallow_list", dl))
379 dccallowlist::iterator iter2 = dl->begin();
380 while (iter2 != dl->end())
382 if (iter2->length != 0 && (iter2->set_on + iter2->length) <= ServerInstance->Time())
384 u->WriteNumeric(997, "%s %s :DCCALLOW entry for %s has expired", u->nick, u->nick, iter2->nickname.c_str());
385 iter2 = dl->erase(iter2);
396 RemoveFromUserlist(u);
401 void RemoveNick(User* user)
403 /* Iterate through all DCCALLOW lists and remove user */
404 for (userlist::iterator iter = ul.begin(); iter != ul.end(); ++iter)
406 User *u = (User*)(*iter);
407 if (u->GetExt("dccallow_list", dl))
411 for (dccallowlist::iterator i = dl->begin(); i != dl->end(); ++i)
413 if (i->nickname == user->nick)
416 u->WriteServ("NOTICE %s :%s left the network or changed their nickname and has been removed from your DCCALLOW list", u->nick, i->nickname.c_str());
417 u->WriteNumeric(995, "%s %s :Removed %s from your DCCALLOW list", u->nick, u->nick, i->nickname.c_str());
426 RemoveFromUserlist(u);
431 void RemoveFromUserlist(User *user)
433 // remove user from userlist
434 for (userlist::iterator j = ul.begin(); j != ul.end(); ++j)
436 User* u = (User*)(*j);
448 for (int i = 0; i < Conf->Enumerate("banfile"); i++)
451 std::string fileglob = Conf->ReadValue("banfile", "pattern", i);
452 std::string action = Conf->ReadValue("banfile", "action", i);
453 bf.filemask = fileglob;
460 virtual ~ModuleDCCAllow()
464 virtual Version GetVersion()
466 return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
470 MODULE_INIT(ModuleDCCAllow)