aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-09-22 01:13:11 -0500
committerEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-09-22 01:13:11 -0500
commitf4c980e4b38165322ad005e032cfbda40471b9ed (patch)
tree605f39e4398dcc85cfd5d7e1db89fba7bb1e1811
parent7f82cd9b726f69f01c243833058e438c4e22b84f (diff)
downloadsegfault-f4c980e4b38165322ad005e032cfbda40471b9ed.tar.gz
segfault-f4c980e4b38165322ad005e032cfbda40471b9ed.zip
deleted the compile.sh shit. using makefiles now.
added %~ to point to the bot's cwd. updated README to include useful info about env vars he uses. fixed runme.sh to use libhashtable's directory in LD_LIBRARY_PATH
-rw-r--r--Makefile2
-rw-r--r--README18
-rw-r--r--TODO9
-rwxr-xr-xcompile.sh5
-rwxr-xr-xlibirc/compile.sh3
-rwxr-xr-xrunme.sh2
-rw-r--r--segfault.c45
7 files changed, 54 insertions, 30 deletions
diff --git a/Makefile b/Makefile
index eedeed0..07ac98c 100644
--- a/Makefile
+++ b/Makefile
@@ -7,4 +7,6 @@ all:
$(MAKE) segfault
clean:
+ cd libirc && $(MAKE) clean
+ cd libhashtable && $(MAKE) clean
rm -f segfault
diff --git a/README b/README
index 4c1ae66..4c289a9 100644
--- a/README
+++ b/README
@@ -1,3 +1,21 @@
This bot expects a homedir and a user account just like any other
person. If you use daemontools you can just make the run file a symlink
to segfault.
+
+:running segfault:
+::arguments:
+argv[1]: nick
+
+::env vars:
+segserver:
+ IP or hostname of where segfault should connect to.
+ default: 127.0.0.1
+segport:
+ port of the plaintext IRC server segfault should connect to.
+ default: 6667
+seguser:
+ user that segfault should drop its root privs to.
+ default: segfault
+seghome:
+ home directory where segfault looks for its files.
+ default: home dir of seguser
diff --git a/TODO b/TODO
index 5b38e30..2004d11 100644
--- a/TODO
+++ b/TODO
@@ -2,11 +2,18 @@
each bucket. so O(whatever), much fast, many speed, wow.
o fix the ugly stuff that is casted to void in returns.
o make segfault use a hashtable for builtins too
+ o delete compile.sh and stick to using Makefiles.
+ o document the env vars that segfault uses
--- ^^^ done ^^^ ---
+ o update seghome repo more often and reference it in segfault's repo
+ o make a way to reference env vars from aliases %${seghome}?
+ OR make new %stuff to reference specific values in segfault
+ since env vars aren't always set but defaults might be used.
+ otherwise I'll have to set those env vars.
o add stuff to libirc to buffer stuff being written to the socket so that
it can put a speed limit on that kind of stuff. (but why would the bot
get an fd from the runit function?)
o make the source code smaller or something.
-
+ o port to windows eventually.
diff --git a/compile.sh b/compile.sh
deleted file mode 100755
index ced7354..0000000
--- a/compile.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-cd libirc
-./compile.sh
-cd ..
-gcc -pedantic -Wall -o segfault segfault.c -lirc -Llibirc -Ilibirc
diff --git a/libirc/compile.sh b/libirc/compile.sh
deleted file mode 100755
index 0ff547d..0000000
--- a/libirc/compile.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-gcc -fpic -c libirc.c
-gcc -shared -o libirc.so *.o
diff --git a/runme.sh b/runme.sh
index ffc77c6..639e5f8 100755
--- a/runme.sh
+++ b/runme.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-export LD_LIBRARY_PATH=`pwd`/libirc
+export LD_LIBRARY_PATH=`pwd`/libirc:`pwd`/libhashtable
cd /home/segfault
while true;do /root/services/segfault/shell;done& 2>&1 > /dev/null
while true;do su segfault -c /root/services/segfault/segfault;done 2>&1 > /dev/null
diff --git a/segfault.c b/segfault.c
index e4819d2..ed9818e 100644
--- a/segfault.c
+++ b/segfault.c
@@ -16,23 +16,24 @@
#define TSIZE 65535
#define SERVER "127.0.0.1"
#define PORT "6667"
-#define NICK "SegFault" //override with argv[0]
+#define NICK "SegFault" //override with argv[1]
#define MYUSER "segfault"
#define LINES_SENT_LIMIT 1
#define LINELEN 400
+#define SEGHOMELEN 1024
#define RAWLOG "./files/rawlog"
#define LOG "./files/log"
#define MAXTAILS 400 //just to have it more than the system default.
#define BS 4096
// !c uses 56 for its tail.
// 56 == 32 + 16 + 8 == 0x38 == 0x20+0x10+0x8 == SPAM | BEGIN | MSG
-#define TAILO_RAW (0x1) // r output gets sent directly to server
-#define TAILO_EVAL (0x2) // e interpret the lines read from the tail as if they were messages to segfault
-#define TAILO_CLOSE (0x4) // c close the file at EOF, default is to leave it open.
-#define TAILO_MSG (0x8) // m output gets sent as a PM to the place the tail was made.
-#define TAILO_BEGIN (0x10) //b start the tail at the beginning of the file instead of the end.
-#define TAILO_SPAM (0x20) //s Spam control is enabled for this stream.
-#define TAILO_ENDMSG (0x40) //n show a message when the tail reaches the end of a chunk
+#define TAILO_RAW 1 // r output gets sent directly to server
+#define TAILO_EVAL 2 // e interpret the lines read from the tail as if they were messages to segfault
+#define TAILO_CLOSE 4 // c close the file at EOF, default is to leave it open.
+#define TAILO_MSG 8 // m output gets sent as a PM to the place the tail was made.
+#define TAILO_BEGIN 16 //b start the tail at the beginning of the file instead of the end.
+#define TAILO_SPAM 32 //s Spam control is enabled for this stream.
+#define TAILO_ENDMSG 64 //n show a message when the tail reaches the end of a chunk
#define TAILO_Q_EVAL (TAILO_EVAL|TAILO_CLOSE|TAILO_BEGIN) //0x2+0x4+0x10 = 2+4+16 = 22
#define TAILO_Q_COUT (TAILO_SPAM|TAILO_BEGIN|TAILO_MSG) //0x20+0x10+0x8 = 32+16+8 = 56
@@ -157,6 +158,7 @@ void privmsg(int fd,char *who,char *msg) {
//try to shorten this up sometime...
char *format_magic(int fd,char *from,struct user *user,char *orig_fmt,char *arg) {
int i,j,sz=0,c=1;
+ char seghome[SEGHOMELEN];
char *output,*fmt;
char **args,**notargs;
if(!(fmt=strdup(orig_fmt))) return 0;
@@ -164,7 +166,7 @@ char *format_magic(int fd,char *from,struct user *user,char *orig_fmt,char *arg)
if(fmt[i] == '%') {
i++;
switch(fmt[i]) {
- case 'p':case 'n':case 'h':case 'u':case 'f':case 's':case 'm':case '%'://when adding new format things add here and...
+ case '~':case 'p':case 'n':case 'h':case 'u':case 'f':case 's':case 'm':case '%'://when adding new format things add here and...
c++;
}
}
@@ -176,15 +178,16 @@ char *format_magic(int fd,char *from,struct user *user,char *orig_fmt,char *arg)
if(fmt[i] == '%') {
i++;
switch(fmt[i]) {
- case 'p':case 'n':case 'h':case 'u':case 'f':case 's':case 'm':case '%'://here.
+ case '~':case 'p':case 'n':case 'h':case 'u':case 'f':case 's':case 'm':case '%'://here.
args[c]=((fmt[i]=='u')?user->nick:
((fmt[i]=='n')?user->name:
- ((fmt[i]=='h')?user->host:
- ((fmt[i]=='f')?from:
- ((fmt[i]=='p')?pid:
- ((fmt[i]=='m')?myuser->nick://and here.
- ((fmt[i]=='s')?arg:"%"
- )))))));
+ ((fmt[i]=='~')?getcwd(seghome,SEGHOMELEN):
+ ((fmt[i]=='h')?user->host:
+ ((fmt[i]=='f')?from:
+ ((fmt[i]=='p')?pid:
+ ((fmt[i]=='m')?myuser->nick://and here.
+ ((fmt[i]=='s')?arg:"%"
+ ))))))));
fmt[i-1]=0;
notargs[c]=strdup(fmt+j);
sz+=strlen(args[c]);
@@ -703,7 +706,7 @@ void c_tails(int fd,char *from,...) {
return;
}
x=tailmode_to_txt(tailf[i].opt);
- snprintf(tmp,l,"%s [i:%d] @ %ld (%d) --[%s(%02x)]--> %s",tailf[i].file,tailf[i].inode,ftell(tailf[i].fp),tailf[i].lines,x,tailf[i].opt,tailf[i].to);
+ snprintf(tmp,l,"%s [i:%d] @ %ld (%d) --[%s(%02d)]--> %s",tailf[i].file,tailf[i].inode,ftell(tailf[i].fp),tailf[i].lines,x,tailf[i].opt,tailf[i].to);
free(x);
privmsg(fd,from,tmp);
free(tmp);
@@ -782,7 +785,7 @@ void c_linelimit(int fd,char *from,char *msg,...) {
privmsg(fd,from,"hidden feature! negative line limit flips debug bit.");
debug^=1;
} else {
- //???? I dunno.
+ privmsg(fd,from,"something else!");
}
}
}
@@ -888,8 +891,10 @@ void message_handler(int fd,char *from,struct user *user,char *msg,int redones)
}
debug_time(fd,from,"finished checking aliases. not found.");
redo=0;
- snprintf(tmp,sizeof(tmp),"unknown command: '%s' with args '%s'",command,args);
- privmsg(fd,from,tmp);
+ if(debug) {
+ snprintf(tmp,sizeof(tmp)-1,"command not found: '%s' with args '%s'",command,args);
+ privmsg(fd,from,tmp);
+ }
}
if(redones >5) {
privmsg(fd,from,"I don't know if I'll ever get out of this alias hole you're telling me to dig. Fuck this.");