From bab9f4b4bc0f6aa0e1377745fd216ef9874b3f27 Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 9 Dec 2005 20:21:39 +0000 Subject: Added new module docs git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2301 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/modules_8cpp-source.html | 1350 +++++++++++++++--------------- 1 file changed, 694 insertions(+), 656 deletions(-) (limited to 'docs/module-doc/modules_8cpp-source.html') diff --git a/docs/module-doc/modules_8cpp-source.html b/docs/module-doc/modules_8cpp-source.html index bfedc2754..9298996f8 100644 --- a/docs/module-doc/modules_8cpp-source.html +++ b/docs/module-doc/modules_8cpp-source.html @@ -117,7 +117,7 @@ 00108 00109 extern int ports[MAXSOCKS]; 00110 -00111 +00111 class Server; 00112 00113 extern std::stringstream config_f; 00114 @@ -312,31 +312,31 @@ 00303 00304 00305 // These declarations define the behavours of the base class Module (which does nothing at all) -00306 Module::Module() { } -00307 Module::~Module() { } -00308 void Module::OnUserConnect(userrec* user) { } -00309 void Module::OnUserQuit(userrec* user) { } -00310 void Module::OnUserDisconnect(userrec* user) { } -00311 void Module::OnUserJoin(userrec* user, chanrec* channel) { } -00312 void Module::OnUserPart(userrec* user, chanrec* channel) { } -00313 void Module::OnPacketTransmit(std::string &data, std::string serv) { } -00314 void Module::OnPacketReceive(std::string &data, std::string serv) { } -00315 void Module::OnRehash() { } -00316 void Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { } -00317 int Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; } -00318 int Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; } -00319 Version Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); } -00320 void Module::OnOper(userrec* user) { }; -00321 void Module::OnInfo(userrec* user) { }; -00322 void Module::OnWhois(userrec* source, userrec* dest) { }; -00323 int Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; }; -00324 int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; }; -00325 int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; }; -00326 int Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; }; -00327 void Module::OnUserPostNick(userrec* user, std::string oldnick) { }; -00328 int Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; }; -00329 string_list Module::OnUserSync(userrec* user) { string_list empty; return empty; } -00330 string_list Module::OnChannelSync(chanrec* chan) { string_list empty; return empty; } +00306 +00307 Module::Module(Server* Me) { } +00308 Module::~Module() { } +00309 void Module::OnUserConnect(userrec* user) { } +00310 void Module::OnUserQuit(userrec* user, std::string message) { } +00311 void Module::OnUserDisconnect(userrec* user) { } +00312 void Module::OnUserJoin(userrec* user, chanrec* channel) { } +00313 void Module::OnUserPart(userrec* user, chanrec* channel) { } +00314 void Module::OnPacketTransmit(std::string &data, std::string serv) { } +00315 void Module::OnPacketReceive(std::string &data, std::string serv) { } +00316 void Module::OnRehash(std::string parameter) { } +00317 void Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { } +00318 int Module::OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) { return 0; } +00319 int Module::OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params) { return false; } +00320 void Module::OnMode(userrec* user, void* dest, int target_type, std::string text) { }; +00321 Version Module::GetVersion() { return Version(1,0,0,0,VF_VENDOR); } +00322 void Module::OnOper(userrec* user, std::string opertype) { }; +00323 void Module::OnInfo(userrec* user) { }; +00324 void Module::OnWhois(userrec* source, userrec* dest) { }; +00325 int Module::OnUserPreInvite(userrec* source,userrec* dest,chanrec* channel) { return 0; }; +00326 int Module::OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text) { return 0; }; +00327 int Module::OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text) { return 0; }; +00328 int Module::OnUserPreNick(userrec* user, std::string newnick) { return 0; }; +00329 void Module::OnUserPostNick(userrec* user, std::string oldnick) { }; +00330 int Module::OnAccessCheck(userrec* source,userrec* dest,chanrec* channel,int access_type) { return ACR_DEFAULT; }; 00331 void Module::On005Numeric(std::string &output) { }; 00332 int Module::OnKill(userrec* source, userrec* dest, std::string reason) { return 0; }; 00333 void Module::OnLoadModule(Module* mod,std::string name) { }; @@ -368,642 +368,680 @@ 00359 int Module::OnRawSocketWrite(int fd, char* buffer, int count) { return 0; }; 00360 void Module::OnRawSocketClose(int fd) { }; 00361 int Module::OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult) { return 0; }; -00362 -00363 // server is a wrapper class that provides methods to all of the C-style -00364 // exports in the core -00365 // -00366 -00367 Server::Server() -00368 { -00369 } -00370 -00371 Server::~Server() -00372 { -00373 } -00374 -00375 void Server::AddSocket(InspSocket* sock) -00376 { -00377 module_sockets.push_back(sock); -00378 } -00379 -00380 void Server::DelSocket(InspSocket* sock) -00381 { -00382 for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++) -00383 { -00384 if (*a == sock) -00385 { -00386 module_sockets.erase(a); -00387 return; -00388 } -00389 } -00390 } -00391 -00392 void Server::SendOpers(std::string s) -00393 { -00394 WriteOpers("%s",s.c_str()); -00395 } -00396 -00397 bool Server::MatchText(std::string sliteral, std::string spattern) -00398 { -00399 char literal[MAXBUF],pattern[MAXBUF]; -00400 strlcpy(literal,sliteral.c_str(),MAXBUF); -00401 strlcpy(pattern,spattern.c_str(),MAXBUF); -00402 return match(literal,pattern); -00403 } -00404 -00405 void Server::SendToModeMask(std::string modes, int flags, std::string text) -00406 { -00407 WriteMode(modes.c_str(),flags,"%s",text.c_str()); -00408 } -00409 -00410 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) -00411 { -00412 return add_channel(user,cname.c_str(),key.c_str(),false); -00413 } -00414 -00415 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) -00416 { -00417 return del_channel(user,cname.c_str(),reason.c_str(),false); -00418 } -00419 -00420 chanuserlist Server::GetUsers(chanrec* chan) -00421 { -00422 chanuserlist userl; -00423 userl.clear(); -00424 std::vector<char*> *list = chan->GetUsers(); -00425 for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++) -00426 { -00427 char* o = *i; -00428 userl.push_back((userrec*)o); -00429 } -00430 return userl; -00431 } -00432 void Server::ChangeUserNick(userrec* user, std::string nickname) -00433 { -00434 force_nickchange(user,nickname.c_str()); -00435 } -00436 -00437 void Server::QuitUser(userrec* user, std::string reason) -00438 { -00439 kill_link(user,reason.c_str()); -00440 } -00441 -00442 bool Server::IsUlined(std::string server) -00443 { -00444 return is_uline(server.c_str()); -00445 } -00446 -00447 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) -00448 { -00449 call_handler(commandname.c_str(),parameters,pcnt,user); -00450 } -00451 -00452 void Server::Log(int level, std::string s) -00453 { -00454 log(level,"%s",s.c_str()); -00455 } -00456 -00457 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) -00458 { -00459 createcommand(cmd,f,flags,minparams,source); -00460 } -00461 -00462 void Server::SendMode(char **parameters, int pcnt, userrec *user) -00463 { -00464 server_mode(parameters,pcnt,user); -00465 } -00466 -00467 void Server::Send(int Socket, std::string s) -00468 { -00469 Write(Socket,"%s",s.c_str()); -00470 } -00471 -00472 void Server::SendServ(int Socket, std::string s) -00473 { -00474 WriteServ(Socket,"%s",s.c_str()); -00475 } -00476 -00477 void Server::SendFrom(int Socket, userrec* User, std::string s) -00478 { -00479 WriteFrom(Socket,User,"%s",s.c_str()); -00480 } -00481 -00482 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) -00483 { -00484 if (!Source) -00485 { -00486 // if source is NULL, then the message originates from the local server -00487 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); -00488 } -00489 else -00490 { -00491 // otherwise it comes from the user specified -00492 WriteTo(Source,Dest,"%s",s.c_str()); -00493 } -00494 } -00495 -00496 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text) -00497 { -00498 WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str()); -00499 } -00500 -00501 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) -00502 { -00503 if (IncludeSender) -00504 { -00505 WriteChannel(Channel,User,"%s",s.c_str()); -00506 } -00507 else -00508 { -00509 ChanExceptSender(Channel,User,"%s",s.c_str()); -00510 } -00511 } -00512 -00513 bool Server::CommonChannels(userrec* u1, userrec* u2) -00514 { -00515 return (common_channels(u1,u2) != 0); -00516 } -00517 -00518 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) -00519 { -00520 if (IncludeSender) -00521 { -00522 WriteCommon(User,"%s",text.c_str()); -00523 } -00524 else -00525 { -00526 WriteCommonExcept(User,"%s",text.c_str()); -00527 } -00528 } -00529 -00530 void Server::SendWallops(userrec* User, std::string text) -00531 { -00532 WriteWallOps(User,false,"%s",text.c_str()); -00533 } -00534 -00535 void Server::ChangeHost(userrec* user, std::string host) -00536 { -00537 ChangeDisplayedHost(user,host.c_str()); -00538 } -00539 -00540 void Server::ChangeGECOS(userrec* user, std::string gecos) -00541 { -00542 ChangeName(user,gecos.c_str()); -00543 } -00544 -00545 bool Server::IsNick(std::string nick) -00546 { -00547 return (isnick(nick.c_str()) != 0); -00548 } -00549 -00550 userrec* Server::FindNick(std::string nick) -00551 { -00552 return Find(nick); -00553 } -00554 -00555 userrec* Server::FindDescriptor(int socket) -00556 { -00557 return (socket < 65536 ? fd_ref_table[socket] : NULL); -00558 } -00559 -00560 chanrec* Server::FindChannel(std::string channel) -00561 { -00562 return FindChan(channel.c_str()); -00563 } -00564 -00565 std::string Server::ChanMode(userrec* User, chanrec* Chan) -00566 { -00567 return cmode(User,Chan); -00568 } -00569 -00570 bool Server::IsOnChannel(userrec* User, chanrec* Chan) -00571 { -00572 return has_channel(User,Chan); -00573 } -00574 -00575 std::string Server::GetServerName() -00576 { -00577 return getservername(); -00578 } -00579 -00580 std::string Server::GetNetworkName() -00581 { -00582 return getnetworkname(); -00583 } -00584 -00585 std::string Server::GetServerDescription() -00586 { -00587 return getserverdesc(); -00588 } -00589 -00590 Admin Server::GetAdmin() -00591 { -00592 return Admin(getadminname(),getadminemail(),getadminnick()); -00593 } -00594 -00595 -00596 -00597 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) -00598 { -00599 if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z'))) -00600 { -00601 if (type == MT_SERVER) -00602 { -00603 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); -00604 return false; -00605 } -00606 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) -00607 { -00608 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); -00609 return false; -00610 } -00611 if ((params_when_on>1) || (params_when_off>1)) -00612 { -00613 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); -00614 return false; -00615 } -00616 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); -00617 } -00618 else -00619 { -00620 log(DEBUG,"*** API ERROR *** Muppet modechar detected."); -00621 } -00622 return false; -00623 } -00624 -00625 bool Server::AddExtendedListMode(char modechar) -00626 { -00627 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); -00628 if (res) -00629 ModeMakeList(modechar); -00630 return res; +00362 void Module::OnUserMessage(userrec* user, void* dest, int target_type, std::string text) { }; +00363 void Module::OnUserNotice(userrec* user, void* dest, int target_type, std::string text) { }; +00364 void Module::OnRemoteKill(userrec* source, userrec* dest, std::string reason) { }; +00365 void Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { }; +00366 void Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { }; +00367 void Module::OnGetServerDescription(std::string servername,std::string &description) { }; +00368 void Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { }; +00369 void Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { }; +00370 void Module::ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline) { }; +00371 void Module::OnSyncChannelMetaData(chanrec* chan, Module* proto,void* opaque, std::string extname) { }; +00372 void Module::OnSyncUserMetaData(userrec* user, Module* proto,void* opaque, std::string extname) { }; +00373 void Module::OnDecodeMetaData(int target_type, void* target, std::string extname, std::string extdata) { }; +00374 void Module::ProtoSendMetaData(void* opaque, int target_type, void* target, std::string extname, std::string extdata) { }; +00375 void Module::OnWallops(userrec* user, std::string text) { }; +00376 void Module::OnChangeHost(userrec* user, std::string newhost) { }; +00377 void Module::OnChangeName(userrec* user, std::string gecos) { }; +00378 void Module::OnAddGLine(long duration, userrec* source, std::string reason, std::string hostmask) { }; +00379 void Module::OnAddZLine(long duration, userrec* source, std::string reason, std::string ipmask) { }; +00380 void Module::OnAddKLine(long duration, userrec* source, std::string reason, std::string hostmask) { }; +00381 void Module::OnAddQLine(long duration, userrec* source, std::string reason, std::string nickmask) { }; +00382 void Module::OnAddELine(long duration, userrec* source, std::string reason, std::string hostmask) { }; +00383 void Module::OnDelGLine(userrec* source, std::string hostmask) { }; +00384 void Module::OnDelZLine(userrec* source, std::string ipmask) { }; +00385 void Module::OnDelKLine(userrec* source, std::string hostmask) { }; +00386 void Module::OnDelQLine(userrec* source, std::string nickmask) { }; +00387 void Module::OnDelELine(userrec* source, std::string hostmask) { }; +00388 void Module::OnCleanup(int target_type, void* item) { }; +00389 +00390 /* server is a wrapper class that provides methods to all of the C-style +00391 * exports in the core +00392 */ +00393 +00394 Server::Server() +00395 { +00396 } +00397 +00398 Server::~Server() +00399 { +00400 } +00401 +00402 void Server::AddSocket(InspSocket* sock) +00403 { +00404 module_sockets.push_back(sock); +00405 } +00406 +00407 void Server::RehashServer() +00408 { +00409 WriteOpers("*** Rehashing config file"); +00410 ReadConfig(false,NULL); +00411 } +00412 +00413 void Server::DelSocket(InspSocket* sock) +00414 { +00415 for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++) +00416 { +00417 if (*a == sock) +00418 { +00419 module_sockets.erase(a); +00420 return; +00421 } +00422 } +00423 } +00424 +00425 void Server::SendOpers(std::string s) +00426 { +00427 WriteOpers("%s",s.c_str()); +00428 } +00429 +00430 bool Server::MatchText(std::string sliteral, std::string spattern) +00431 { +00432 char literal[MAXBUF],pattern[MAXBUF]; +00433 strlcpy(literal,sliteral.c_str(),MAXBUF); +00434 strlcpy(pattern,spattern.c_str(),MAXBUF); +00435 return match(literal,pattern); +00436 } +00437 +00438 void Server::SendToModeMask(std::string modes, int flags, std::string text) +00439 { +00440 WriteMode(modes.c_str(),flags,"%s",text.c_str()); +00441 } +00442 +00443 chanrec* Server::JoinUserToChannel(userrec* user, std::string cname, std::string key) +00444 { +00445 return add_channel(user,cname.c_str(),key.c_str(),false); +00446 } +00447 +00448 chanrec* Server::PartUserFromChannel(userrec* user, std::string cname, std::string reason) +00449 { +00450 return del_channel(user,cname.c_str(),reason.c_str(),false); +00451 } +00452 +00453 chanuserlist Server::GetUsers(chanrec* chan) +00454 { +00455 chanuserlist userl; +00456 userl.clear(); +00457 std::vector<char*> *list = chan->GetUsers(); +00458 for (std::vector<char*>::iterator i = list->begin(); i != list->end(); i++) +00459 { +00460 char* o = *i; +00461 userl.push_back((userrec*)o); +00462 } +00463 return userl; +00464 } +00465 void Server::ChangeUserNick(userrec* user, std::string nickname) +00466 { +00467 force_nickchange(user,nickname.c_str()); +00468 } +00469 +00470 void Server::QuitUser(userrec* user, std::string reason) +00471 { +00472 kill_link(user,reason.c_str()); +00473 } +00474 +00475 bool Server::IsUlined(std::string server) +00476 { +00477 return is_uline(server.c_str()); +00478 } +00479 +00480 void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) +00481 { +00482 call_handler(commandname.c_str(),parameters,pcnt,user); +00483 } +00484 +00485 bool Server::IsValidModuleCommand(std::string commandname, int pcnt, userrec* user) +00486 { +00487 return is_valid_cmd(commandname.c_str(), pcnt, user); +00488 } +00489 +00490 void Server::Log(int level, std::string s) +00491 { +00492 log(level,"%s",s.c_str()); +00493 } +00494 +00495 void Server::AddCommand(char* cmd, handlerfunc f, char flags, int minparams, char* source) +00496 { +00497 createcommand(cmd,f,flags,minparams,source); +00498 } +00499 +00500 void Server::SendMode(char **parameters, int pcnt, userrec *user) +00501 { +00502 server_mode(parameters,pcnt,user); +00503 } +00504 +00505 void Server::Send(int Socket, std::string s) +00506 { +00507 Write(Socket,"%s",s.c_str()); +00508 } +00509 +00510 void Server::SendServ(int Socket, std::string s) +00511 { +00512 WriteServ(Socket,"%s",s.c_str()); +00513 } +00514 +00515 void Server::SendFrom(int Socket, userrec* User, std::string s) +00516 { +00517 WriteFrom(Socket,User,"%s",s.c_str()); +00518 } +00519 +00520 void Server::SendTo(userrec* Source, userrec* Dest, std::string s) +00521 { +00522 if (!Source) +00523 { +00524 // if source is NULL, then the message originates from the local server +00525 Write(Dest->fd,":%s %s",this->GetServerName().c_str(),s.c_str()); +00526 } +00527 else +00528 { +00529 // otherwise it comes from the user specified +00530 WriteTo(Source,Dest,"%s",s.c_str()); +00531 } +00532 } +00533 +00534 void Server::SendChannelServerNotice(std::string ServName, chanrec* Channel, std::string text) +00535 { +00536 WriteChannelWithServ((char*)ServName.c_str(), Channel, "%s", text.c_str()); +00537 } +00538 +00539 void Server::SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender) +00540 { +00541 if (IncludeSender) +00542 { +00543 WriteChannel(Channel,User,"%s",s.c_str()); +00544 } +00545 else +00546 { +00547 ChanExceptSender(Channel,User,"%s",s.c_str()); +00548 } +00549 } +00550 +00551 bool Server::CommonChannels(userrec* u1, userrec* u2) +00552 { +00553 return (common_channels(u1,u2) != 0); +00554 } +00555 +00556 void Server::SendCommon(userrec* User, std::string text,bool IncludeSender) +00557 { +00558 if (IncludeSender) +00559 { +00560 WriteCommon(User,"%s",text.c_str()); +00561 } +00562 else +00563 { +00564 WriteCommonExcept(User,"%s",text.c_str()); +00565 } +00566 } +00567 +00568 void Server::SendWallops(userrec* User, std::string text) +00569 { +00570 WriteWallOps(User,false,"%s",text.c_str()); +00571 } +00572 +00573 void Server::ChangeHost(userrec* user, std::string host) +00574 { +00575 ChangeDisplayedHost(user,host.c_str()); +00576 } +00577 +00578 void Server::ChangeGECOS(userrec* user, std::string gecos) +00579 { +00580 ChangeName(user,gecos.c_str()); +00581 } +00582 +00583 bool Server::IsNick(std::string nick) +00584 { +00585 return (isnick(nick.c_str()) != 0); +00586 } +00587 +00588 userrec* Server::FindNick(std::string nick) +00589 { +00590 return Find(nick); +00591 } +00592 +00593 userrec* Server::FindDescriptor(int socket) +00594 { +00595 return (socket < 65536 ? fd_ref_table[socket] : NULL); +00596 } +00597 +00598 chanrec* Server::FindChannel(std::string channel) +00599 { +00600 return FindChan(channel.c_str()); +00601 } +00602 +00603 std::string Server::ChanMode(userrec* User, chanrec* Chan) +00604 { +00605 return cmode(User,Chan); +00606 } +00607 +00608 bool Server::IsOnChannel(userrec* User, chanrec* Chan) +00609 { +00610 return has_channel(User,Chan); +00611 } +00612 +00613 std::string Server::GetServerName() +00614 { +00615 return getservername(); +00616 } +00617 +00618 std::string Server::GetNetworkName() +00619 { +00620 return getnetworkname(); +00621 } +00622 +00623 std::string Server::GetServerDescription() +00624 { +00625 return getserverdesc(); +00626 } +00627 +00628 Admin Server::GetAdmin() +00629 { +00630 return Admin(getadminname(),getadminemail(),getadminnick()); 00631 } 00632 -00633 int Server::CountUsers(chanrec* c) -00634 { -00635 return usercount(c); -00636 } -00637 -00638 -00639 bool Server::UserToPseudo(userrec* user,std::string message) -00640 { -00641 unsigned int old_fd = user->fd; -00642 user->fd = FD_MAGIC_NUMBER; -00643 user->ClearBuffer(); -00644 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); -00645 #ifdef USE_KQUEUE -00646 struct kevent ke; -00647 EV_SET(&ke, old_fd, EVFILT_READ, EV_DELETE, 0, 0, NULL); -00648 int i = kevent(kq, &ke, 1, 0, 0, NULL); -00649 if (i == -1) -00650 { -00651 log(DEBUG,"kqueue: Failed to remove user from queue!"); -00652 } -00653 #endif -00654 #ifdef USE_EPOLL -00655 struct epoll_event ev; -00656 ev.events = EPOLLIN | EPOLLET; -00657 ev.data.fd = old_fd; -00658 int i = epoll_ctl(ep, EPOLL_CTL_DEL, old_fd, &ev); -00659 if (i < 0) -00660 { -00661 log(DEBUG,"epoll: List deletion failure!"); -00662 } -00663 #endif -00664 -00665 shutdown(old_fd,2); -00666 close(old_fd); -00667 return true; -00668 } -00669 -00670 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) -00671 { -00672 zombie->fd = alive->fd; -00673 alive->fd = FD_MAGIC_NUMBER; -00674 alive->ClearBuffer(); -00675 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); -00676 kill_link(alive,message.c_str()); -00677 fd_ref_table[zombie->fd] = zombie; -00678 for (int i = 0; i != MAXCHANS; i++) -00679 { -00680 if (zombie->chans[i].channel != NULL) -00681 { -00682 if (zombie->chans[i].channel->name) -00683 { -00684 chanrec* Ptr = zombie->chans[i].channel; -00685 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); -00686 if (Ptr->topicset) -00687 { -00688 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); -00689 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); -00690 } -00691 userlist(zombie,Ptr); -00692 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); -00693 -00694 } -00695 } -00696 } -00697 return true; -00698 } -00699 -00700 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) -00701 { -00702 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00703 } -00704 -00705 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) -00706 { -00707 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); -00708 } -00709 -00710 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) -00711 { -00712 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); -00713 } -00714 -00715 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) -00716 { -00717 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00718 } -00719 -00720 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) -00721 { -00722 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); -00723 } -00724 -00725 bool Server::DelGLine(std::string hostmask) -00726 { -00727 return del_gline(hostmask.c_str()); -00728 } -00729 -00730 bool Server::DelQLine(std::string nickname) -00731 { -00732 return del_qline(nickname.c_str()); -00733 } -00734 -00735 bool Server::DelZLine(std::string ipaddr) -00736 { -00737 return del_zline(ipaddr.c_str()); -00738 } -00739 -00740 bool Server::DelKLine(std::string hostmask) -00741 { -00742 return del_kline(hostmask.c_str()); -00743 } -00744 -00745 bool Server::DelELine(std::string hostmask) -00746 { -00747 return del_eline(hostmask.c_str()); -00748 } -00749 -00750 long Server::CalcDuration(std::string delta) -00751 { -00752 return duration(delta.c_str()); -00753 } -00754 -00755 bool Server::IsValidMask(std::string mask) -00756 { -00757 const char* dest = mask.c_str(); -00758 if (strchr(dest,'!')==0) -00759 return false; -00760 if (strchr(dest,'@')==0) -00761 return false; -00762 for (unsigned int i = 0; i < strlen(dest); i++) -00763 if (dest[i] < 32) -00764 return false; -00765 for (unsigned int i = 0; i < strlen(dest); i++) -00766 if (dest[i] > 126) -00767 return false; -00768 unsigned int c = 0; -00769 for (unsigned int i = 0; i < strlen(dest); i++) -00770 if (dest[i] == '!') -00771 c++; -00772 if (c>1) -00773 return false; -00774 c = 0; -00775 for (unsigned int i = 0; i < strlen(dest); i++) -00776 if (dest[i] == '@') -00777 c++; -00778 if (c>1) -00779 return false; -00780 -00781 return true; -00782 } -00783 -00784 Module* Server::FindModule(std::string name) -00785 { -00786 for (int i = 0; i <= MODCOUNT; i++) -00787 { -00788 if (module_names[i] == name) -00789 { -00790 return modules[i]; -00791 } -00792 } -00793 return NULL; -00794 } -00795 -00796 ConfigReader::ConfigReader() -00797 { -00798 include_stack.clear(); -00799 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00800 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00801 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); -00802 if (!this->readerror) -00803 this->error = CONF_FILE_NOT_FOUND; -00804 } -00805 -00806 -00807 ConfigReader::~ConfigReader() -00808 { -00809 if (this->cache) -00810 delete this->cache; -00811 if (this->errorlog) -00812 delete this->errorlog; -00813 } -00814 -00815 -00816 ConfigReader::ConfigReader(std::string filename) -00817 { -00818 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); -00819 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); -00820 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); -00821 if (!this->readerror) -00822 this->error = CONF_FILE_NOT_FOUND; -00823 }; -00824 -00825 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) -00826 { -00827 char val[MAXBUF]; -00828 char t[MAXBUF]; -00829 char n[MAXBUF]; -00830 strlcpy(t,tag.c_str(),MAXBUF); -00831 strlcpy(n,name.c_str(),MAXBUF); -00832 int res = ReadConf(cache,t,n,index,val); -00833 if (!res) -00834 { -00835 this->error = CONF_VALUE_NOT_FOUND; -00836 return ""; -00837 } -00838 return val; -00839 } -00840 -00841 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) -00842 { -00843 char val[MAXBUF]; -00844 char t[MAXBUF]; -00845 char n[MAXBUF]; -00846 strlcpy(t,tag.c_str(),MAXBUF); -00847 strlcpy(n,name.c_str(),MAXBUF); -00848 int res = ReadConf(cache,t,n,index,val); -00849 if (!res) -00850 { -00851 this->error = CONF_VALUE_NOT_FOUND; -00852 return false; -00853 } -00854 std::string s = val; -00855 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); -00856 } -00857 -00858 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) -00859 { -00860 char val[MAXBUF]; -00861 char t[MAXBUF]; -00862 char n[MAXBUF]; -00863 strlcpy(t,tag.c_str(),MAXBUF); -00864 strlcpy(n,name.c_str(),MAXBUF); -00865 int res = ReadConf(cache,t,n,index,val); -00866 if (!res) -00867 { -00868 this->error = CONF_VALUE_NOT_FOUND; -00869 return 0; -00870 } -00871 for (unsigned int i = 0; i < strlen(val); i++) +00633 +00634 +00635 bool Server::AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off) +00636 { +00637 if (((modechar >= 'A') && (modechar <= 'Z')) || ((modechar >= 'a') && (modechar <= 'z'))) +00638 { +00639 if (type == MT_SERVER) +00640 { +00641 log(DEBUG,"*** API ERROR *** Modes of type MT_SERVER are reserved for future expansion"); +00642 return false; +00643 } +00644 if (((params_when_on>0) || (params_when_off>0)) && (type == MT_CLIENT)) +00645 { +00646 log(DEBUG,"*** API ERROR *** Parameters on MT_CLIENT modes are not supported"); +00647 return false; +00648 } +00649 if ((params_when_on>1) || (params_when_off>1)) +00650 { +00651 log(DEBUG,"*** API ERROR *** More than one parameter for an MT_CHANNEL mode is not yet supported"); +00652 return false; +00653 } +00654 return DoAddExtendedMode(modechar,type,requires_oper,params_when_on,params_when_off); +00655 } +00656 else +00657 { +00658 log(DEBUG,"*** API ERROR *** Muppet modechar detected."); +00659 } +00660 return false; +00661 } +00662 +00663 bool Server::AddExtendedListMode(char modechar) +00664 { +00665 bool res = DoAddExtendedMode(modechar,MT_CHANNEL,false,1,1); +00666 if (res) +00667 ModeMakeList(modechar); +00668 return res; +00669 } +00670 +00671 int Server::CountUsers(chanrec* c) +00672 { +00673 return usercount(c); +00674 } +00675 +00676 +00677 bool Server::UserToPseudo(userrec* user,std::string message) +00678 { +00679 unsigned int old_fd = user->fd; +00680 user->fd = FD_MAGIC_NUMBER; +00681 user->ClearBuffer(); +00682 Write(old_fd,"ERROR :Closing link (%s@%s) [%s]",user->ident,user->host,message.c_str()); +00683 #ifdef USE_KQUEUE +00684 struct kevent ke; +00685 EV_SET(&ke, old_fd, EVFILT_READ, EV_DELETE, 0, 0, NULL); +00686 int i = kevent(kq, &ke, 1, 0, 0, NULL); +00687 if (i == -1) +00688 { +00689 log(DEBUG,"kqueue: Failed to remove user from queue!"); +00690 } +00691 #endif +00692 #ifdef USE_EPOLL +00693 struct epoll_event ev; +00694 ev.events = EPOLLIN | EPOLLET; +00695 ev.data.fd = old_fd; +00696 int i = epoll_ctl(ep, EPOLL_CTL_DEL, old_fd, &ev); +00697 if (i < 0) +00698 { +00699 log(DEBUG,"epoll: List deletion failure!"); +00700 } +00701 #endif +00702 +00703 shutdown(old_fd,2); +00704 close(old_fd); +00705 return true; +00706 } +00707 +00708 bool Server::PseudoToUser(userrec* alive,userrec* zombie,std::string message) +00709 { +00710 zombie->fd = alive->fd; +00711 alive->fd = FD_MAGIC_NUMBER; +00712 alive->ClearBuffer(); +00713 Write(zombie->fd,":%s!%s@%s NICK %s",alive->nick,alive->ident,alive->host,zombie->nick); +00714 kill_link(alive,message.c_str()); +00715 fd_ref_table[zombie->fd] = zombie; +00716 for (int i = 0; i != MAXCHANS; i++) +00717 { +00718 if (zombie->chans[i].channel != NULL) +00719 { +00720 if (zombie->chans[i].channel->name) +00721 { +00722 chanrec* Ptr = zombie->chans[i].channel; +00723 WriteFrom(zombie->fd,zombie,"JOIN %s",Ptr->name); +00724 if (Ptr->topicset) +00725 { +00726 WriteServ(zombie->fd,"332 %s %s :%s", zombie->nick, Ptr->name, Ptr->topic); +00727 WriteServ(zombie->fd,"333 %s %s %s %d", zombie->nick, Ptr->name, Ptr->setby, Ptr->topicset); +00728 } +00729 userlist(zombie,Ptr); +00730 WriteServ(zombie->fd,"366 %s %s :End of /NAMES list.", zombie->nick, Ptr->name); +00731 +00732 } +00733 } +00734 } +00735 return true; +00736 } +00737 +00738 void Server::AddGLine(long duration, std::string source, std::string reason, std::string hostmask) +00739 { +00740 add_gline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00741 } +00742 +00743 void Server::AddQLine(long duration, std::string source, std::string reason, std::string nickname) +00744 { +00745 add_qline(duration, source.c_str(), reason.c_str(), nickname.c_str()); +00746 } +00747 +00748 void Server::AddZLine(long duration, std::string source, std::string reason, std::string ipaddr) +00749 { +00750 add_zline(duration, source.c_str(), reason.c_str(), ipaddr.c_str()); +00751 } +00752 +00753 void Server::AddKLine(long duration, std::string source, std::string reason, std::string hostmask) +00754 { +00755 add_kline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00756 } +00757 +00758 void Server::AddELine(long duration, std::string source, std::string reason, std::string hostmask) +00759 { +00760 add_eline(duration, source.c_str(), reason.c_str(), hostmask.c_str()); +00761 } +00762 +00763 bool Server::DelGLine(std::string hostmask) +00764 { +00765 return del_gline(hostmask.c_str()); +00766 } +00767 +00768 bool Server::DelQLine(std::string nickname) +00769 { +00770 return del_qline(nickname.c_str()); +00771 } +00772 +00773 bool Server::DelZLine(std::string ipaddr) +00774 { +00775 return del_zline(ipaddr.c_str()); +00776 } +00777 +00778 bool Server::DelKLine(std::string hostmask) +00779 { +00780 return del_kline(hostmask.c_str()); +00781 } +00782 +00783 bool Server::DelELine(std::string hostmask) +00784 { +00785 return del_eline(hostmask.c_str()); +00786 } +00787 +00788 long Server::CalcDuration(std::string delta) +00789 { +00790 return duration(delta.c_str()); +00791 } +00792 +00793 bool Server::IsValidMask(std::string mask) +00794 { +00795 const char* dest = mask.c_str(); +00796 if (strchr(dest,'!')==0) +00797 return false; +00798 if (strchr(dest,'@')==0) +00799 return false; +00800 for (unsigned int i = 0; i < strlen(dest); i++) +00801 if (dest[i] < 32) +00802 return false; +00803 for (unsigned int i = 0; i < strlen(dest); i++) +00804 if (dest[i] > 126) +00805 return false; +00806 unsigned int c = 0; +00807 for (unsigned int i = 0; i < strlen(dest); i++) +00808 if (dest[i] == '!') +00809 c++; +00810 if (c>1) +00811 return false; +00812 c = 0; +00813 for (unsigned int i = 0; i < strlen(dest); i++) +00814 if (dest[i] == '@') +00815 c++; +00816 if (c>1) +00817 return false; +00818 +00819 return true; +00820 } +00821 +00822 Module* Server::FindModule(std::string name) +00823 { +00824 for (int i = 0; i <= MODCOUNT; i++) +00825 { +00826 if (module_names[i] == name) +00827 { +00828 return modules[i]; +00829 } +00830 } +00831 return NULL; +00832 } +00833 +00834 ConfigReader::ConfigReader() +00835 { +00836 include_stack.clear(); +00837 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00838 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00839 this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog); +00840 if (!this->readerror) +00841 this->error = CONF_FILE_NOT_FOUND; +00842 } +00843 +00844 +00845 ConfigReader::~ConfigReader() +00846 { +00847 if (this->cache) +00848 delete this->cache; +00849 if (this->errorlog) +00850 delete this->errorlog; +00851 } +00852 +00853 +00854 ConfigReader::ConfigReader(std::string filename) +00855 { +00856 this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out); +00857 this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out); +00858 this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog); +00859 if (!this->readerror) +00860 this->error = CONF_FILE_NOT_FOUND; +00861 }; +00862 +00863 std::string ConfigReader::ReadValue(std::string tag, std::string name, int index) +00864 { +00865 char val[MAXBUF]; +00866 char t[MAXBUF]; +00867 char n[MAXBUF]; +00868 strlcpy(t,tag.c_str(),MAXBUF); +00869 strlcpy(n,name.c_str(),MAXBUF); +00870 int res = ReadConf(cache,t,n,index,val); +00871 if (!res) 00872 { -00873 if (!isdigit(val[i])) -00874 { -00875 this->error = CONF_NOT_A_NUMBER; -00876 return 0; -00877 } -00878 } -00879 if ((needs_unsigned) && (atoi(val)<0)) -00880 { -00881 this->error = CONF_NOT_UNSIGNED; -00882 return 0; -00883 } -00884 return atoi(val); -00885 } -00886 -00887 long ConfigReader::GetError() -00888 { -00889 long olderr = this->error; -00890 this->error = 0; -00891 return olderr; -00892 } -00893 -00894 void ConfigReader::DumpErrors(bool bail, userrec* user) -00895 { -00896 if (bail) -00897 { -00898 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); -00899 exit(0); -00900 } -00901 else -00902 { -00903 char dataline[1024]; -00904 if (user) -00905 { -00906 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); -00907 while (!errorlog->eof()) -00908 { -00909 errorlog->getline(dataline,1024); -00910 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); -00911 } -00912 } -00913 else -00914 { -00915 WriteOpers("There were errors in the configuration file:",user->nick); -00916 while (!errorlog->eof()) -00917 { -00918 errorlog->getline(dataline,1024); -00919 WriteOpers(dataline); -00920 } -00921 } -00922 return; -00923 } -00924 } -00925 -00926 -00927 int ConfigReader::Enumerate(std::string tag) -00928 { -00929 return EnumConf(cache,tag.c_str()); +00873 this->error = CONF_VALUE_NOT_FOUND; +00874 return ""; +00875 } +00876 return val; +00877 } +00878 +00879 bool ConfigReader::ReadFlag(std::string tag, std::string name, int index) +00880 { +00881 char val[MAXBUF]; +00882 char t[MAXBUF]; +00883 char n[MAXBUF]; +00884 strlcpy(t,tag.c_str(),MAXBUF); +00885 strlcpy(n,name.c_str(),MAXBUF); +00886 int res = ReadConf(cache,t,n,index,val); +00887 if (!res) +00888 { +00889 this->error = CONF_VALUE_NOT_FOUND; +00890 return false; +00891 } +00892 std::string s = val; +00893 return ((s == "yes") || (s == "YES") || (s == "true") || (s == "TRUE") || (s == "1")); +00894 } +00895 +00896 long ConfigReader::ReadInteger(std::string tag, std::string name, int index, bool needs_unsigned) +00897 { +00898 char val[MAXBUF]; +00899 char t[MAXBUF]; +00900 char n[MAXBUF]; +00901 strlcpy(t,tag.c_str(),MAXBUF); +00902 strlcpy(n,name.c_str(),MAXBUF); +00903 int res = ReadConf(cache,t,n,index,val); +00904 if (!res) +00905 { +00906 this->error = CONF_VALUE_NOT_FOUND; +00907 return 0; +00908 } +00909 for (unsigned int i = 0; i < strlen(val); i++) +00910 { +00911 if (!isdigit(val[i])) +00912 { +00913 this->error = CONF_NOT_A_NUMBER; +00914 return 0; +00915 } +00916 } +00917 if ((needs_unsigned) && (atoi(val)<0)) +00918 { +00919 this->error = CONF_NOT_UNSIGNED; +00920 return 0; +00921 } +00922 return atoi(val); +00923 } +00924 +00925 long ConfigReader::GetError() +00926 { +00927 long olderr = this->error; +00928 this->error = 0; +00929 return olderr; 00930 } 00931 -00932 int ConfigReader::EnumerateValues(std::string tag, int index) +00932 void ConfigReader::DumpErrors(bool bail, userrec* user) 00933 { -00934 return EnumValues(cache, tag.c_str(), index); -00935 } -00936 -00937 bool ConfigReader::Verify() -00938 { -00939 return this->readerror; -00940 } -00941 -00942 -00943 FileReader::FileReader(std::string filename) -00944 { -00945 file_cache c; -00946 readfile(c,filename.c_str()); -00947 this->fc = c; -00948 } -00949 -00950 FileReader::FileReader() -00951 { -00952 } -00953 -00954 void FileReader::LoadFile(std::string filename) -00955 { -00956 file_cache c; -00957 readfile(c,filename.c_str()); -00958 this->fc = c; -00959 } -00960 -00961 -00962 FileReader::~FileReader() -00963 { -00964 } -00965 -00966 bool FileReader::Exists() -00967 { -00968 if (fc.size() == 0) -00969 { -00970 return(false); -00971 } -00972 else -00973 { -00974 return(true); -00975 } -00976 } -00977 -00978 std::string FileReader::GetLine(int x) -00979 { -00980 if ((x<0) || ((unsigned)x>fc.size())) -00981 return ""; -00982 return fc[x]; -00983 } -00984 -00985 int FileReader::FileSize() -00986 { -00987 return fc.size(); -00988 } -00989 -00990 -00991 std::vector<Module*> modules(255); -00992 std::vector<ircd_module*> factory(255); -00993 -00994 int MODCOUNT = -1; -00995 -00996 -
Generated on Sun Nov 27 01:43:24 2005 for InspIRCd by  +00934 if (bail) +00935 { +00936 printf("There were errors in your configuration:\n%s",errorlog->str().c_str()); +00937 exit(0); +00938 } +00939 else +00940 { +00941 char dataline[1024]; +00942 if (user) +00943 { +00944 WriteServ(user->fd,"NOTICE %s :There were errors in the configuration file:",user->nick); +00945 while (!errorlog->eof()) +00946 { +00947 errorlog->getline(dataline,1024); +00948 WriteServ(user->fd,"NOTICE %s :%s",user->nick,dataline); +00949 } +00950 } +00951 else +00952 { +00953 WriteOpers("There were errors in the configuration file:",user->nick); +00954 while (!errorlog->eof()) +00955 { +00956 errorlog->getline(dataline,1024); +00957 WriteOpers(dataline); +00958 } +00959 } +00960 return; +00961 } +00962 } +00963 +00964 +00965 int ConfigReader::Enumerate(std::string tag) +00966 { +00967 return EnumConf(cache,tag.c_str()); +00968 } +00969 +00970 int ConfigReader::EnumerateValues(std::string tag, int index) +00971 { +00972 return EnumValues(cache, tag.c_str(), index); +00973 } +00974 +00975 bool ConfigReader::Verify() +00976 { +00977 return this->readerror; +00978 } +00979 +00980 +00981 FileReader::FileReader(std::string filename) +00982 { +00983 file_cache c; +00984 readfile(c,filename.c_str()); +00985 this->fc = c; +00986 } +00987 +00988 FileReader::FileReader() +00989 { +00990 } +00991 +00992 void FileReader::LoadFile(std::string filename) +00993 { +00994 file_cache c; +00995 readfile(c,filename.c_str()); +00996 this->fc = c; +00997 } +00998 +00999 +01000 FileReader::~FileReader() +01001 { +01002 } +01003 +01004 bool FileReader::Exists() +01005 { +01006 if (fc.size() == 0) +01007 { +01008 return(false); +01009 } +01010 else +01011 { +01012 return(true); +01013 } +01014 } +01015 +01016 std::string FileReader::GetLine(int x) +01017 { +01018 if ((x<0) || ((unsigned)x>fc.size())) +01019 return ""; +01020 return fc[x]; +01021 } +01022 +01023 int FileReader::FileSize() +01024 { +01025 return fc.size(); +01026 } +01027 +01028 +01029 std::vector<Module*> modules(255); +01030 std::vector<ircd_module*> factory(255); +01031 +01032 int MODCOUNT = -1; +01033 +01034 +
Generated on Fri Dec 9 20:20:03 2005 for InspIRCd by  doxygen 1.4.4-20050815
-- cgit v1.2.3