]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - .inspircd.inc
Added ./inspircd version, requested and written by Mitch
[user/henk/code/inspircd.git] / .inspircd.inc
1 #!/usr/bin/perl
2 #       +------------------------------------+
3 #       | Inspire Internet Relay Chat Daemon |
4 #       +------------------------------------+
5 #
6 #  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
7 #                       E-mail:
8 #                <brain@chatspike.net>
9 #                <Craig@chatspike.net>
10 #
11 # Written by Craig Edwards, Craig McLure, and others.
12 # This program is free but copyrighted software; see
13 #            the file COPYING for details.
14 #
15 #               I HATE PERL.. kthxbye
16 # ---------------------------------------------------
17
18 my $basepath = "@BASE_DIR@";
19 my $confpath = "@CONFIG_DIR@/";
20 my $binpath = "@BINARY_DIR@";
21 my $libpath = "@LIBRARY_DIR@";
22 my $executable = "@EXECUTABLE@";
23 my @filesparsed;
24
25 # Lets see what they want to do.. Set the variable (Cause i'm a lazy coder)
26 my $arg = $ARGV[0];
27 getpidfile($confpath."inspircd.conf");
28
29 if ($arg eq "start") { start(); exit(); }
30 if ($arg eq "debug") { debug(); exit(); }
31 if ($arg eq "screendebug") { screendebug(); exit() }
32 if ($arg eq "valdebug") { valdebug(); exit(); }
33 if ($arg eq "screenvaldebug") { screenvaldebug(); exit(); }
34 if ($arg eq "stop") { stop(); exit(); }
35 if ($arg eq "status") {
36         if (getstatus() == 1) { 
37                 my $pid = getprocessid();
38                 print "InspIRCd is running (PID: $pid)\n";
39                 exit();
40         } else {
41                 print "InspIRCd is not running. (Or PID File not found)\n";
42                 exit();
43         }
44 }
45 if ($arg eq "rehash") {
46         if (getstatus() == 1) {
47                 my $pid = getprocessid();
48                 system("kill -HUP $pid >/dev/null 2>&1");
49                 print "InspIRCd rehashed.\n";
50                 exit();
51         } else {
52                 print "InspIRCd is not running. (Or PID File not found)\n";
53                 exit();
54         }
55 }
56
57 if ($arg eq "cron") {
58         if (getstatus() == 0) { start(); }
59         exit();
60 }
61
62 if ($arg eq "restart") {
63         stop();
64         unlink($pidfile) if (-e $pidfile);
65         start();
66         # kthxbye();
67         exit();
68 }
69
70 if ($arg eq "version") {
71         system("sh src/version.sh");
72         system("svn info | grep Revision");
73         exit();
74 }
75
76 if ($arg eq "Cheese-Sandwich") {
77         print "Creating Cheese Sandwich..\n";
78         print "Done.\n";
79         exit();
80 }
81
82 ###
83 # If we get here.. bad / no parameters.
84 ###
85 print "Invalid Argument: $arg\n";
86 print "Usage: inspircd (start|stop|restart|rehash|status|cron|version)\n";
87 exit();
88
89 ###
90 # Generic Helper Functions.
91 ###
92
93 sub start {
94         # Check to see its not 'running' already.
95         if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; }
96         # If we are still alive here.. Try starting the IRCd..
97         print "$binpath/$executable doesn't exist\n" and return 0 unless(-e "$binpath/$executable");
98
99         system("$binpath/$executable");
100         return 1;
101 }
102
103 sub debug {
104         # Check to see its not 'running' already.
105         if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; }
106         
107         print "$binpath/$executable doesn't exist\n" and return 0 unless(-e "$binpath/$executable");
108         
109         # Check we have gdb
110         checkgdb();
111                 
112         # If we are still alive here.. Try starting the IRCd..
113         system("gdb --command=$basepath/.gdbargs --args $binpath/$executable -nofork -debug -nolog");
114 }
115
116 sub screendebug
117 {
118         # Check to see its not 'running' already.
119         if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; }
120         
121         print "$binpath/$executable doesn't exist\n" and return 0 unless(-e "$binpath/$executable");
122
123         #Check we have gdb
124         checkgdb();
125         checkscreen();
126         
127         # If we are still alive here.. Try starting the IRCd..
128         print "Starting InspIRCd in `screen`, type `screen -r` when the ircd crashes to view the gdb output and get a backtrace.\n";
129         print "Once you're inside the screen session press ^C + d to re-detach from the session\n";
130         system("screen -m -d gdb --command=$basepath/.gdbargs --args $binpath/$executable -nofork -debug -nolog");
131 }
132
133 sub valdebug
134 {
135         # Check to see its not 'running' already.
136         if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; }
137
138         print "$binpath/$executable doesn't exist\n" and return 0 unless(-e "$binpath/$executable");
139
140         # Check we have valgrind and gdb
141         checkvalgrind();
142         checkgdb();
143         
144         # If we are still alive here.. Try starting the IRCd..
145         # May want to do something with these args at some point: --suppressions=.inspircd.sup --gen-suppressions=yes
146         # Could be useful when we want to stop it complaining about things we're sure aren't issues.
147         system("valgrind -v --tool=memcheck --leak-check=yes --db-attach=yes --num-callers=10 $binpath/$executable -nofork -debug -nolog");
148 }
149
150 sub screenvaldebug
151 {
152         # Check to see its not 'running' already.
153         if (getstatus() == 1) { print "InspIRCd is already running.\n"; return 0; }
154         
155         print "$binpath/$executable doesn't exist\n" and return 0 unless(-e "$binpath/$executable");
156
157         #Check we have gdb
158         checkvalgrind();
159         checkgdb();
160         checkscreen();
161         
162         # If we are still alive here.. Try starting the IRCd..
163         print "Starting InspIRCd in `screen`, type `screen -r` when the ircd crashes to view the valgrind and gdb output and get a backtrace.\n";
164         print "Once you're inside the screen session press ^C + d to re-detach from the session\n";
165         system("screen -m -d valgrind -v --tool=memcheck --leak-check=yes --db-attach=yes --num-callers=10 $binpath/$executable -nofork -debug -nolog");
166 }
167
168 sub stop {
169         if (getstatus() == 0) { print "InspIRCd is not running. (Or PID File not found)\n"; return 0; }
170         # Get to here, we have something to kill.
171         my $pid = getprocessid();
172         print "Stopping InspIRCd...\n";
173         system("kill -TERM $pid >/dev/null 2>&1");
174         if (getstatus() == 1)
175         {
176                 print "InspIRCd not dying Quietly -- Forcing Kill\n";
177                 system("kill -9 $pid >/dev/null 2>&1");
178         }
179         print "InspIRCd Stopped.\n";
180 }
181
182 # GetPidfile Version 2 - Now With Include Support..
183 # I beg for months for include support in insp, then.. 
184 # when it is added, it comes around and BITES ME IN THE ASS,
185 # because i then have to code support into this script.. Evil.
186
187 sub getpidfile {
188   my ($file) = @_;
189   # Before we start, do we have a PID already? (Should never occur)
190   if ($pid ne "") {
191     return;
192   }
193   # Are We using a relative path?
194   if ($file !~ /^\//) {
195     # Convert it to a full path..
196     $file = $confpath . $file;
197   }
198
199   # Have we checked this file before?
200   for (my $i = 0; $i < $filesparsed; $i++) {
201     if ($filesparsed[$i] eq $file) {
202       # Already Parsed, Possible recursive loop..
203       return;
204     }
205   }
206   
207   # If we get here, Mark as 'Read'
208   $filesparsed[$filesparsed] = $file;
209
210   # Open the File..
211   open INFILE, "< $file" or die "Unable to Open file $file\n";
212   # Grab entire file contents..
213   my(@lines) = <INFILE>;
214   # Close the file
215   close INFILE;
216
217   # Clean up the file, no newlines etc..
218   chomp(@lines);
219   foreach $i (@lines) {
220     $i =~ s/[^=]+=\s(.*)/\1/;
221   }
222   my $tmp = join("",@lines);
223
224   # Does this file have a pid?
225   if ($tmp =~ /<pid file=\"(\S+)\">/i) {
226     # Set the PID file and return.
227     $pidfile = $1;
228     return;
229   }
230
231   # If we get here, NO PID FILE! -- Check for includes (Seeing as we will eventually return,
232   # The while (1) is safe.)
233   while (1) {
234     if ($tmp =~ s/\<include file=\"(.+?)\"\>//i)
235     {
236       # Decend into that file, and check for PIDs.. (that sounds like an STD ;/)
237       getpidfile($1);
238       # Was a PID found?
239       if ($pidfile ne "") {
240         # Yes, Return.
241         return;
242       }
243     } else {
244       # End of includes / No includes found.
245       return $confpath . "inspircd.pid";
246     }
247   }
248 }
249
250 sub getstatus {
251         my $pid = getprocessid();
252         if ($pid == 0) { return 0; }
253         $status = system("kill -0 $pid >/dev/null 2>&1") / 256;
254         if ($status == 0) { return 1; }
255         else { return 0; }
256 }
257
258
259 sub getprocessid {
260         my $pid;
261         open PIDFILE, "< $pidfile" or return 0;
262         while($i = <PIDFILE>)
263         {
264                 $pid = $i;
265         }
266         close PIDFILE;
267         return $pid;
268 }
269
270 sub checkvalgrind
271 {
272         unless(`valgrind --version`)
273         {
274                 print "Couldn't start valgrind: $!\n";
275                 exit;
276         }
277 }
278
279 sub checkgdb
280 {
281         unless(`gdb --version`)
282         {
283                 print "Couldn't start gdb: $!\n";
284                 exit;
285         }
286 }
287
288 sub checkscreen
289 {
290         unless(`screen --version`)
291         {
292                 print "Couldn't start screen: $!\n";
293                 exit;
294         }
295 }