ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/ihost-perl/ihost.pl
Revision: 1.18
Committed: Tue Feb 27 19:26:51 2001 UTC (23 years, 6 months ago) by pjm2
Content type: text/plain
Branch: MAIN
Changes since 1.17: +4 -22 lines
Log Message:
Removed the now unneccessary code to work out the domain name, etc.
The FQDN is provided by the server.

File Contents

# User Rev Content
1 pjm2 1.6 #!/usr/bin/perl -w
2 pjm2 1.1
3     # -----------------------------------------------------------
4     # Perl i-scream Host.
5 pjm2 1.12 # http://www.i-scream.org.uk
6 pjm2 1.1 #
7     # An all-in-one script to act as an i-scream host on
8     # a typical Unix/Linux box. You may adapt the data-gathering
9     # methods as you see fit.
10     # - pjm2@ukc.ac.uk
11     #
12 pjm2 1.18 # $Author: pjm2 $
13     # $Id: ihost.pl,v 1.17 2001/02/27 19:14:26 pjm2 Exp $
14 pjm2 1.1 #------------------------------------------------------------
15    
16     $| = 1;
17    
18     use strict;
19     use IO::Socket;
20     use Sys::Hostname;
21    
22     use vars qw (
23     $filter_manager_addr
24     $filter_manager_port
25     $seq_no
26     $udp_update_time
27     $tcp_update_time
28     $last_udp_time
29     $last_tcp_time
30     $last_modified
31     $udp_port
32     $tcp_port
33     $filter_addr
34     $file_list
35 pjm2 1.17 $fqdn
36 pjm2 1.1 );
37    
38     if (@ARGV != 2) {
39     die "Usage: ihost.pl [i-scream filter manager] [TCP port]\n";
40     }
41    
42     $filter_manager_addr = $ARGV[0];
43     $filter_manager_port = $ARGV[1];
44    
45     $seq_no = 1;
46    
47     &tcp_configure();
48     &send_udp_packet();
49    
50     $last_udp_time = time;
51     $last_tcp_time = time;
52     while (1) {
53 pjm2 1.9 my($time) = time;
54     if ($time >= $last_udp_time + $udp_update_time) {
55 pjm2 1.1 &send_udp_packet();
56 pjm2 1.9 $last_udp_time = $time;
57 pjm2 1.1 }
58 pjm2 1.9 if ($time >= $last_tcp_time + $tcp_update_time) {
59 pjm2 1.1 &send_tcp_heartbeat();
60 pjm2 1.9 $last_tcp_time = $time;
61 pjm2 1.1 }
62 pjm2 1.9 my($next_udp) = $udp_update_time - $time + $last_udp_time;
63     my($next_tcp) = $tcp_update_time - $time + $last_tcp_time;
64     my($delay);
65     if ($next_udp < $next_tcp) {
66     $delay = $next_udp
67     }
68     else {
69     $delay = $next_tcp;
70     }
71     `sleep $delay`;
72 pjm2 1.1 }
73    
74     exit(0);
75    
76 pjm2 1.12
77     #-----------------------------------------------------------------------
78     # tcp_configure
79     # Establishes a TCP connection to the specified i-scream filter manager.
80     # The host then requests details from the server, such as the intervals
81     # at which to send UDP packets.
82     #-----------------------------------------------------------------------
83 pjm2 1.1 sub tcp_configure() {
84    
85     my($sock) = new IO::Socket::INET(
86     PeerAddr => $filter_manager_addr,
87     PeerPort => $filter_manager_port,
88     Proto => 'tcp'
89 pjm2 1.11 );
90     if (!defined $sock) {
91     print "IHOST ERROR: Could not connect to $filter_manager_addr:$filter_manager_port.\n";
92     print "Please check that there is an i-scream server at this address.\n";
93     print "Program ended.\n";
94     exit(1);
95     }
96 pjm2 1.1
97 pjm2 1.12 # Now run through the configuration process...
98 pjm2 1.1 my($response);
99    
100     print $sock "STARTCONFIG\n";
101     $response = <$sock>;
102     if (!chop $response eq "OK") {
103     print "The i-scream server rejected the STARTCONFIG command. Terminated.";
104     exit(1);
105     }
106    
107     print "Config started okay.\n";
108    
109     print $sock "LASTMODIFIED\n";
110     $response = <$sock>;
111     chop $response;
112     $last_modified = $response;
113    
114 pjm2 1.7 print "Config last modified: ". (scalar localtime $last_modified/1000) . "\n";
115 pjm2 1.1
116     print $sock "FILELIST\n";
117     $response = <$sock>;
118     chop $response;
119     $file_list = $response;
120    
121     print "File list obtained: $file_list\n";
122 pjm2 1.17
123     print $sock "FQDN\n";
124     $response = <$sock>;
125     chop $response;
126     $fqdn = $response;
127    
128     print "FQDN returned: $fqdn\n";
129 pjm2 1.1
130     print $sock "UDPUpdateTime\n";
131     $response = <$sock>;
132     chop $response;
133     $udp_update_time = $response;
134    
135     print $sock "TCPUpdateTime\n";
136     $response = <$sock>;
137     chop $response;
138     $tcp_update_time = $response;
139    
140 pjm2 1.7 print "UDP packet period: $udp_update_time seconds.\nTCP heartbeat period: $tcp_update_time seconds.\n";
141 pjm2 1.1
142     print $sock "ENDCONFIG\n";
143     $response = <$sock>;
144     chomp $response;
145     if (!$response eq "OK") {
146     print "ENDCONFIG command to server failed. Terminated.\n";
147     exit(1);
148     }
149    
150     print "Config ended.\n";
151    
152     print $sock "FILTER\n";
153     $response = <$sock>;
154     chop $response;
155     $response =~ /(.*);(.*);(.*)/;
156     ($filter_addr, $udp_port, $tcp_port) = ($1, $2, $3);
157    
158     print "Got filter data ($filter_addr, $udp_port, $tcp_port)\n";
159    
160     print $sock "END\n";
161     $response = <$sock>;
162     chop $response;
163     if ($response eq "OK") {
164     print "Host successfully configured via TCP.\n"
165     }
166     else {
167     print "The server failed the host configuration on the END command.";
168     exit(1);
169     }
170    
171     close($sock);
172    
173     print "Configuration finished sucessfully!\n";
174 pjm2 1.12
175     return;
176 pjm2 1.1 }
177    
178 pjm2 1.12
179    
180    
181     #-----------------------------------------------------------------------
182     # send_udp_packet
183     # Sends a UDP packet to an i-scream filter.
184     # The packet contains XML markup describing some of the machine's state.
185     # Receipt of UDP packets is not guaranteed.
186     #-----------------------------------------------------------------------
187 pjm2 1.1 sub send_udp_packet() {
188    
189     my(@statgrab) = `./statgrab.pl`;
190     my(%packet);
191 pjm2 1.13 for (my($i) = 0; $i <= $#statgrab; $i++) {
192 pjm2 1.1 $statgrab[$i] =~ /^([^\s]*) (.*)$/;
193     $packet{$1} = $2;
194     }
195    
196     my($date) = time;
197    
198     my($disk_info) = "<disk>";
199     my($i) = 0;
200     while (defined $packet{"packet.disk.p$i.attributes.mount"}) {
201 pjm2 1.15 $disk_info .= "<p$i";
202     $disk_info .= " name=\"" . $packet{"packet.disk.p$i.attributes.name"} . "\"";
203     $disk_info .= " kbytes=\"" . $packet{"packet.disk.p$i.attributes.kbytes"} . "\"";
204     $disk_info .= " used=\"" . $packet{"packet.disk.p$i.attributes.used"} . "\"";
205     $disk_info .= " avail=\"" . $packet{"packet.disk.p$i.attributes.avail"} . "\"";
206     $disk_info .= " mount=\"" . $packet{"packet.disk.p$i.attributes.mount"} . "\"";
207     $disk_info .= "></p$i>";
208 pjm2 1.1 ++$i;
209     }
210     $disk_info .= "</disk>";
211 pjm2 1.13
212 pjm2 1.18 my($machine_name) = hostname();
213     my($ip) = inet_ntoa(scalar(gethostbyname($machine_name)) || 'localhost');
214 pjm2 1.1
215     # Build the XML packet this way, as we can clearly
216     # see the structure and contents... I like this ;-)
217 pjm2 1.12 # [Note that the server rejects UDP packets that are
218     # larger than 8196 bytes]
219 pjm2 1.1 my($xml) = <<EOF;
220    
221     <packet seq_no="$seq_no" machine_name="$machine_name" date="$date" type="data" ip="$ip">
222     <load>
223     <load1>$packet{"packet.load.load1"}</load1>
224     <load5>$packet{"packet.load.load5"}</load5>
225     <load15>$packet{"packet.load.load15"}</load15>
226     </load>
227     <os>
228     <name>$packet{"packet.os.name"}</name>
229     <release>$packet{"packet.os.release"}</release>
230     <platform>$packet{"packet.os.platform"}</platform>
231     <sysname>$packet{"packet.os.sysname"}</sysname>
232     <version>$packet{"packet.os.version"}</version>
233 tdb 1.10 <uptime>$packet{"packet.os.uptime"}</uptime>
234 pjm2 1.1 </os>
235     <users>
236     <count>$packet{"packet.users.count"}</count>
237     <list>$packet{"packet.users.list"}</list>
238     </users>
239     <processes>
240     <total>$packet{"packet.processes.total"}</total>
241     <sleeping>$packet{"packet.processes.sleeping"}</sleeping>
242     <zombie>$packet{"packet.processes.zombie"}</zombie>
243     <stopped>$packet{"packet.processes.stopped"}</stopped>
244     <cpu>$packet{"packet.processes.cpu"}</cpu>
245     </processes>
246     <cpu>
247     <idle>$packet{"packet.cpu.idle"}</idle>
248     <user>$packet{"packet.cpu.user"}</user>
249     <kernel>$packet{"packet.cpu.kernel"}</kernel>
250     <iowait>$packet{"packet.cpu.iowait"}</iowait>
251     <swap>$packet{"packet.cpu.swap"}</swap>
252     </cpu>
253     <memory>
254 pjm2 1.13 <total>$packet{"packet.memory.total"}</total>
255 pjm2 1.1 <free>$packet{"packet.memory.free"}</free>
256     </memory>
257     <swap>
258 pjm2 1.13 <total>$packet{"packet.swap.total"}</total>
259     <free>$packet{"packet.swap.free"}</free>
260 pjm2 1.1 </swap>
261     $disk_info
262     </packet>
263    
264     EOF
265    
266 pjm2 1.12 # Make the packet smaller by stripping out newlines and leading spaces.
267 pjm2 1.1 $xml =~ s/\n\s*//g;
268    
269     my($sock) = new IO::Socket::INET (
270     PeerPort => $udp_port,
271     PeerAddr => $filter_addr,
272     Proto => 'udp'
273     ) or die "Socket: $!\n";
274    
275     print $sock $xml or die "Could not send UDP packet: $!\n";
276     close($sock);
277     $seq_no++;
278     print "-";
279 pjm2 1.12
280     return;
281 pjm2 1.1 }
282    
283 pjm2 1.12
284    
285    
286     #-----------------------------------------------------------------------
287     # send_tcp_heartbeat
288     # Establishes a TCP connection to an i-scream filter.
289     # The heartbeat is used as a guaranteed "I'm alive" delivery mechanism.
290     #-----------------------------------------------------------------------
291 pjm2 1.1 sub send_tcp_heartbeat() {
292    
293     my($sock) = new IO::Socket::INET(
294     PeerAddr => $filter_addr,
295     PeerPort => $tcp_port,
296     Proto => 'tcp'
297 pjm2 1.11 );
298     if (!defined $sock) {
299     print "IHOST WARNING: Failed to deliver a heartbeat to the i-scream filter.\n";
300     return;
301     }
302 pjm2 1.1
303     # Now run through the configuration process.
304     my($response);
305    
306     print $sock "HEARTBEAT\n";
307     $response = <$sock>;
308     chop $response;
309     if (!$response eq "OK") {
310     close($sock);
311     print "Server gave wrong response to HEARTBEAT: $response\n";
312     return;
313     }
314    
315     print $sock "CONFIG\n";
316     $response = <$sock>;
317     chop $response;
318     if (!$response eq "OK") {
319     close($sock);
320     print "Server gave wrong response to CONFIG: $response\n";
321     return;
322     }
323    
324     print $sock "$file_list\n";
325     $response = <$sock>;
326     chop $response;
327     if (!$response eq "OK") {
328     close($sock);
329     print "Server gave wrong response to file list: $response\n";
330     return;
331     }
332    
333     print $sock "$last_modified\n";
334     $response = <$sock>;
335     chop $response;
336     if ($response eq "ERROR") {
337     close($sock);
338     &tcp_configure();
339     return;
340     }
341     if (!$response eq "OK") {
342     close($sock);
343     print "Server gave wrong response to HEARTBEAT: $response\n";
344     return;
345     }
346    
347     print $sock "ENDHEARTBEAT\n";
348     $response = <$sock>;
349     chop $response;
350     if (!$response eq "OK") {
351     close($sock);
352     print "Server gave wrong response to ENDHEARTBEAT: $response\n";
353     return;
354     }
355    
356     close($sock);
357     print "^";
358 pjm2 1.12
359     return;
360 pjm2 1.1 }