-
Notifications
You must be signed in to change notification settings - Fork 109
/
mogstored
executable file
·383 lines (309 loc) · 10.9 KB
/
mogstored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
#!/usr/bin/perl
eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'
if 0; # not running under some shell
#
# MogileFS storage node daemon
# (perlbal front-end)
#
# (c) 2004, Brad Fitzpatrick, <[email protected]>
# (c) 2006-2007, Six Apart, Ltd.
use strict;
use lib 'lib';
use Mogstored::HTTPServer;
# based on where we found Mogstored::HTTPServer (a pure-perl module),
# add the mogdeps/ subdirectory of that base to our @INC search
# path, where all the misc Mogile dependencies are installed.
BEGIN {
my $libpath;
if (! $ENV{MOGILE_NO_BUILTIN_DEPS} &&
($libpath = $INC{"Mogstored/HTTPServer.pm"}) &&
$libpath =~ s!Mogstored/HTTPServer.pm$!!)
{
my $dep_dir = "${libpath}mogdeps";
push @INC, $dep_dir;
unless (($ENV{PERL5LIB} || "") =~ /$dep_dir/) {
$ENV{PERL5LIB} = join(":",
split(/:/, $ENV{PERL5LIB} || ""),
$dep_dir);
}
}
}
use IO::Socket::INET;
use POSIX qw(WNOHANG);
use Perlbal 1.73;
use FindBin qw($Bin $RealScript);
use Mogstored::HTTPServer::Perlbal;
use Mogstored::HTTPServer::Lighttpd;
use Mogstored::HTTPServer::None;
use Mogstored::HTTPServer::Apache;
use Mogstored::SideChannelListener;
use Mogstored::SideChannelClient;
my $selfexe = "$Bin/$RealScript";
# State:
my %on_death; # pid -> subref (to run when pid dies)
my %devnum_to_device; # mogile device number (eg. 'dev1' would be '1') -> os device path (eg. '/dev/rd0')
my %osdevnum_to_device; # os device number (fetched via stat(file)[0]) -> os device path (ec. '/dev/rd0')
my %iostat_listeners; # fd => SideChannel client: clients interested in iostat data.
my $iostat_available = 1; # bool: iostat working. assume working to start.
my ($iostat_pipe_r, $iostat_pipe_w); # pipes for talking to iostat process
# Config:
my $opt_daemonize;
my $opt_config;
my $opt_iostat = 1; # default to on now
my $max_conns = 10000;
my $http_listen = "0.0.0.0:7500";
my $mgmt_listen = "0.0.0.0:7501";
my $docroot = "/var/mogdata";
my $default_config = "/etc/mogilefs/mogstored.conf";
my $server = $ENV{MOGSTORED_SERVER_TYPE} || "perlbal";
my $serverbin = "";
my $pidfile = undef;
# Rename binary in process list to make init scripts saner
$0 = "mogstored";
my %config_opts = (
'iostat' => \$opt_iostat,
'daemonize|d' => \$opt_daemonize,
'config=s' => \$opt_config,
'httplisten=s' => \$http_listen,
'mgmtlisten=s' => \$mgmt_listen,
'docroot=s' => \$docroot,
'maxconns=i' => \$max_conns,
'server=s' => \$server,
'serverbin=s' => \$serverbin,
'pidfile=s' => \$pidfile,
);
usage() unless Getopt::Long::GetOptions(%config_opts);
die "Unknown server type. Valid options: --server={perlbal,lighttpd,apache,none}"
unless $server =~ /^perlbal|lighttpd|apache|none$/;
$opt_config = $default_config if ! $opt_config && -e $default_config;
load_config_file($opt_config => \%config_opts) if $opt_config;
# initialize basic required Perlbal machinery, for any HTTP server
my $perlbal_init = qq{
CREATE SERVICE mogstored
SET role = web_server
SET docroot = $docroot
# don't listen... this is just a stub service.
CREATE SERVICE mgmt
SET role = management
ENABLE mgmt
};
$perlbal_init .= "\nSERVER pidfile = $pidfile" if defined($pidfile);
Perlbal::run_manage_commands($perlbal_init , sub { print STDERR "$_[0]\n"; });
# start HTTP server
my $httpsrv_class = "Mogstored::HTTPServer::" . ucfirst($server);
my $httpsrv = $httpsrv_class->new(
listen => $http_listen,
docroot => $docroot,
maxconns => $max_conns,
bin => $serverbin,
);
$httpsrv->start;
if ($opt_daemonize) {
$httpsrv->pre_daemonize;
Perlbal::daemonize();
} else {
print "Running.\n";
}
$httpsrv->post_daemonize;
# kill our children processes on exit:
my $parent_pid = $$;
$SIG{TERM} = $SIG{INT} = sub {
return unless $$ == $parent_pid; # don't let this be inherited
kill 'TERM', grep { $_ } keys %on_death;
POSIX::_exit(0);
};
setup_iostat_pipes();
start_disk_usage_process();
start_iostat_process() if $opt_iostat;
harvest_dead_children(); # every 2 seconds, it reschedules itself
setup_sidechannel_listener();
# now start the main loop
Perlbal::run();
############################################################################
sub usage {
my $note = shift;
$note = $note ? "NOTE: $note\n\n" : "";
die "${note}Usage: mogstored [OPTS]
OPTS:
--daemonize -d Daemonize
--config=<file> Set config file (default is /etc/mogilefs/mogstored.conf)
--httplisten=<ip:port> IP/Port HTTP server listens on
--mgmtlisten=<ip:port> IP/Port management/sidechannel listens on
--docroot=<path> Docroot above device mount points. Defaults to /var/mogdata
--maxconns=<number> Number of simultaneous clients to serve. Default 10000
";
}
# accessor for SideChannelClient:
sub Mogstored::iostat_available {
return $iostat_available;
}
sub load_config_file {
my ($conffile, $opts) = @_;
# parse the mogstored config file, which is just lines of comments and
# "key = value" lines, where keys are just the same as command line
# options.
die "Config file $opt_config doesn't exist.\n" unless -e $conffile;
open my $fh, $conffile or die "Couldn't open config file for reading: $!";
while (<$fh>) {
s/\#.*//;
next unless /\S/;
if (/SERVER max_connect/i || /CREATE SERVICE/i) {
usage("Your $opt_config file is the old syntax. The new format is simply lines of <key> = <value> where keys are the same as mogstored's command line options.");
}
die "Unknown config syntax: $_\n" unless /^\s*(\w+)\s*=\s*(.+?)\s*$/;
my ($key, $val) = ($1, $2);
my $dest;
foreach my $ck (keys %$opts) {
next unless $ck =~ /^$key\b/;
$dest = $opts->{$ck};
}
die "Unknown config setting: $key\n" unless $dest;
$$dest = $val;
}
}
sub harvest_dead_children {
my $dead = waitpid(-1, WNOHANG);
if ($dead > 0) {
my $code = delete $on_death{$dead};
$code->() if $code;
}
Danga::Socket->AddTimer(2, \&harvest_dead_children);
}
sub Mogstored::on_pid_death {
my ($class, $pid, $code) = @_;
$on_death{$pid} = $code;
}
# returns $pid of child, if parent, else runs child.
sub start_disk_usage_process {
my $child = fork;
unless (defined $child) {
Perlbal::log('crit', "Fork error creating disk usage tracking process");
return undef;
}
# if we're the parent.
if ($child) {
$on_death{$child} = sub {
start_disk_usage_process(); # start a new one
};
return $child;
}
require Mogstored::ChildProcess::DiskUsage;
my $class = "Mogstored::ChildProcess::DiskUsage";
$class->pre_exec_init;
$class->exec;
}
sub Mogstored::iostat_subscribe {
my ($class, $sock) = @_;
$iostat_listeners{fileno($sock->sock)} = $sock;
}
sub Mogstored::iostat_unsubscribe {
my ($class, $sock) = @_;
my $fdno = fileno($sock->sock);
return unless defined $fdno;
delete $iostat_listeners{$fdno};
}
# to be honest, I have no clue why this exists. I just had to move it
# around for multi-server refactoring, and I felt better not
# understanding it but preserving than killing it. in particular, why
# is this "graceful"? (gets called from SideChannelClient's
# die_gracefully)
sub Mogstored::on_sidechannel_die_gracefully {
if ($$ == $parent_pid) {
kill 'TERM', grep { $_ } keys %on_death;
}
}
sub setup_sidechannel_listener {
Mogstored::SideChannelListener->new($mgmt_listen);
}
my $iostat_read_buf = "";
sub setup_iostat_pipes {
pipe ($iostat_pipe_r, $iostat_pipe_w);
IO::Handle::blocking($iostat_pipe_r, 0);
IO::Handle::blocking($iostat_pipe_w, 0);
Danga::Socket->AddOtherFds(fileno($iostat_pipe_r), sub {
read_from_iostat_child();
});
}
sub start_iostat_process {
my $pid = fork;
unless (defined $pid) {
warn "Fork for iostat failed: $!";
return;
}
if ($pid) {
# Parent
$on_death{$pid} = sub {
# Try a final read from data on the socket.
# Note that this doesn't internally loop... so it might miss data.
read_from_iostat_child();
# Kill any buffer so partial reads don't hurt us later.
drain_iostat_child_pipe();
start_iostat_process();
};
return;
}
require Mogstored::ChildProcess::IOStat;
my $class = "Mogstored::ChildProcess::IOStat";
$class->pre_exec_init;
$class->exec;
}
sub Mogstored::get_iostat_writer_pipe { $iostat_pipe_w }
sub drain_iostat_child_pipe {
my $data;
while (1) {
last unless sysread($iostat_pipe_r, $data, 10240) > 0;
}
$iostat_read_buf = '';
}
# (runs in parent event-loop process)
sub read_from_iostat_child {
my $data;
my $rv = sysread($iostat_pipe_r, $data, 10240);
return unless $rv && $rv > 0;
$iostat_read_buf .= $data;
# only write complete lines to sockets (in case for some reason we get
# a partial read and child process dies...)
while ($iostat_read_buf =~ s/(.+)\r?\n//) {
my $line = $1;
foreach my $out_sock (values %iostat_listeners) {
# where $line will be like "dev53\t53.23" or a "." to signal end of a group of devices.
# stop writing to the socket if the listener isn't picking it up.
next if $out_sock->{write_buf_size};
$out_sock->write("$line\n");
}
}
}
# Local Variables:
# mode: perl
# c-basic-indent: 4
# indent-tabs-mode: nil
# End:
__END__
=head1 NAME
mogstored -- MogileFS storage daemon
=head1 USAGE
This is the MogileFS storage daemon, which is just an HTTP server that
supports PUT, DELETE, etc. It's actually a wrapper around L<Perlbal>,
doing all the proper Perlbal config for you.
In addition, it monitors disk usage, I/O activity, etc, which are
checked from the L<MogileFS tracker|mogilefsd>.
=head1 AUTHORS
Brad Fitzpatrick E<lt>[email protected]<gt>
Mark Smith E<lt>[email protected]<gt>
Jonathan Steinert E<lt>[email protected]<gt>
=head1 ENVIRONMENT
=over 4
=item PERLBAL_XS_HEADERS
If defined and 0, Perlbal::XS::HTTPHeaders will not be used, if
present. Otherwise, it will be enabled by default, if installed and
loadable.
=back
=head1 COPYRIGHT
Copyright 2004, Danga Interactive
Copyright 2005-2006, Six Apart Ltd.
=head1 LICENSE
Same terms as Perl itself. Artistic/GPLv2, at your choosing.
=head1 SEE ALSO
L<MogileFS::Overview> -- high level overview of MogileFS
L<mogilefsd> -- MogileFS daemon
L<http://danga.com/mogilefs/>