]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Fixed bug #85
[user/henk/code/inspircd.git] / src / users.cpp
index d4e87780c9addfbfb4d36e012adbcbc3c7d57bd6..1920e8dcdf9c070a7700fdf3877f8fddff412721 100644 (file)
@@ -18,10 +18,16 @@ using namespace std;
 
 #include "inspircd_config.h" 
 #include "channels.h"
+#include "connection.h"
 #include "users.h"
 #include "inspircd.h"
 #include <stdio.h>
+#ifdef THREADED_DNS
+#include <pthread.h>
+#include <signal.h>
+#endif
 #include "inspstring.h"
+#include "commands.h"
 #include "helperfuncs.h"
 
 extern std::stringstream config_f;
@@ -59,6 +65,10 @@ userrec::userrec()
        invites.clear();
 }
 
+userrec::~userrec()
+{
+}
+
 void userrec::CloseSocket()
 {
        shutdown(this->fd,2);
@@ -76,6 +86,7 @@ int userrec::ReadData(void* buffer, size_t size)
 {
        if (this->fd > -1)
        {
+               log(DEBUG,"userrec::ReadData on fd %d",this->fd);
                return read(this->fd, buffer, size);
        }
        else return 0;
@@ -144,36 +155,38 @@ bool userrec::HasPermission(char* command)
        char* savept;
        char* savept2;
        
+       // users on u-lined servers can completely bypass
+       // all permissions based checks.
+       //
+       // of course, if this is sent to a remote server and this
+       // server is not ulined there, then that other server
+       // silently drops the command.
+       if (is_uline(this->server))
+               return true;
+       
        // are they even an oper at all?
        if (strchr(this->modes,'o'))
        {
-               log(DEBUG,"*** HasPermission: %s is an oper",this->nick);
                for (int j =0; j < ConfValueEnum("type",&config_f); j++)
                {
                        ConfValue("type","name",j,TypeName,&config_f);
                        if (!strcmp(TypeName,this->oper))
                        {
-                               log(DEBUG,"*** HasPermission: %s is an oper of type '%s'",this->nick,this->oper);
                                ConfValue("type","classes",j,Classes,&config_f);
                                char* myclass = strtok_r(Classes," ",&savept);
                                while (myclass)
                                {
-                                       log(DEBUG,"*** HasPermission: checking classtype '%s'",myclass);
                                        for (int k =0; k < ConfValueEnum("class",&config_f); k++)
                                        {
                                                ConfValue("class","name",k,ClassName,&config_f);
                                                if (!strcmp(ClassName,myclass))
                                                {
                                                        ConfValue("class","commands",k,CommandList,&config_f);
-                                                       log(DEBUG,"*** HasPermission: found class named %s with commands: '%s'",ClassName,CommandList);
-                                                       
-                                                       
                                                        mycmd = strtok_r(CommandList," ",&savept2);
                                                        while (mycmd)
                                                        {
-                                                               if (!strcasecmp(mycmd,command))
+                                                               if ((!strcasecmp(mycmd,command)) || (*mycmd == '*'))
                                                                {
-                                                                       log(DEBUG,"*** Command %s found, returning true",command);
                                                                        return true;
                                                                }
                                                                mycmd = strtok_r(NULL," ",&savept2);