3 eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'
4 if 0; # not running under some shell
7 # MogileFS storage node daemon
10 # (c) 2004, Brad Fitzpatrick, <brad@danga.com>
11 # (c) 2006-2007, Six Apart, Ltd.
15 use Mogstored
::HTTPServer
;
17 # based on where we found Mogstored::HTTPServer (a pure-perl module),
18 # add the mogdeps/ subdirectory of that base to our @INC search
19 # path, where all the misc Mogile dependencies are installed.
22 if (! $ENV{MOGILE_NO_BUILTIN_DEPS
} &&
23 ($libpath = $INC{"Mogstored/HTTPServer.pm"}) &&
24 $libpath =~ s!Mogstored/HTTPServer.pm$!!)
26 my $dep_dir = "${libpath}mogdeps";
28 unless (($ENV{PERL5LIB
} || "") =~ /$dep_dir/) {
29 $ENV{PERL5LIB
} = join(":",
30 split(/:/, $ENV{PERL5LIB
} || ""),
37 use POSIX
qw(WNOHANG);
39 use FindBin
qw($Bin $RealScript);
40 use Gearman::Server 1.08;
41 use Gearman::Client::Async 0.93;
43 use Mogstored::HTTPServer::Perlbal;
44 use Mogstored::HTTPServer::Lighttpd;
45 use Mogstored::HTTPServer::None;
46 use Mogstored::HTTPServer::Apache;
47 use Mogstored::SideChannelListener;
48 use Mogstored::SideChannelClient;
50 my $selfexe = "$Bin/$RealScript";
53 my %on_death; # pid -> subref (to run when pid dies)
54 my %devnum_to_device; # mogile device number (eg. 'dev1' would be '1') -> os device path (eg. '/dev/rd0')
55 my %osdevnum_to_device; # os device number (fetched via stat(file)[0]) -> os device path (ec. '/dev/rd0')
56 my %iostat_listeners; # fd => SideChannel client: clients interested in iostat data.
57 my $iostat_available = 1; # bool: iostat working. assume working to start.
58 my ($iostat_pipe_r, $iostat_pipe_w); # pipes for talking to iostat process
63 my $opt_iostat = 1; # default to on now
64 my $max_conns = 10000;
65 my $http_listen = "0.0.0.0:7500";
66 my $mgmt_listen = "0.0.0.0:7501";
67 my $docroot = "/var/mogdata";
68 my $default_config = "/etc/mogilefs/mogstored.conf";
69 my $server = $ENV{MOGSTORED_SERVER_TYPE} || "perlbal";
73 # Rename binary in process list to make init scripts saner
77 'iostat' => \$opt_iostat,
78 'daemonize|d' => \$opt_daemonize,
79 'config=s' => \$opt_config,
80 'httplisten=s' => \$http_listen,
81 'mgmtlisten=s' => \$mgmt_listen,
82 'docroot=s' => \$docroot,
83 'maxconns=i' => \$max_conns,
84 'server=s' => \$server,
85 'serverbin=s' => \$serverbin,
86 'pidfile=s' => \$pidfile,
88 usage() unless Getopt::Long::GetOptions(%config_opts);
90 die "Unknown server type. Valid options: --server={perlbal,lighttpd,apache,none}"
91 unless $server =~ /^perlbal|lighttpd|apache|none$/;
93 $opt_config = $default_config if ! $opt_config && -e $default_config;
94 load_config_file($opt_config => \%config_opts) if $opt_config;
96 # initialize basic required Perlbal machinery, for any HTTP server
97 my $perlbal_init = qq{
98 CREATE SERVICE mogstored
100 SET docroot = $docroot
102 # don't listen... this is just a stub service.
104 SET role = management
107 $perlbal_init .= "\nSERVER pidfile = $pidfile" if defined($pidfile);
108 Perlbal::run_manage_commands($perlbal_init , sub { print STDERR "$_[0]\n"; });
111 my $httpsrv_class = "Mogstored::HTTPServer::" . ucfirst($server);
112 my $httpsrv = $httpsrv_class->new(
113 listen => $http_listen,
115 maxconns => $max_conns,
120 if ($opt_daemonize) {
121 $httpsrv->pre_daemonize;
122 Perlbal::daemonize();
127 $httpsrv->post_daemonize;
129 # kill our children processes on exit:
132 $SIG{TERM} = $SIG{INT} = sub {
133 return unless $$ == $parent_pid; # don't let this be inherited
134 kill 'TERM', grep { $_ } keys %on_death;
138 setup_iostat_pipes();
139 start_disk_usage_process();
140 start_iostat_process() if $opt_iostat;
141 harvest_dead_children(); # every 2 seconds, it reschedules itself
142 setup_sidechannel_listener();
143 start_fidsizes_worker();
145 # now start the main loop
148 ############################################################################
152 $note = $note ? "NOTE: $note\n\n" : "";
154 die "${note}Usage: mogstored [OPTS]
157 --daemonize -d Daemonize
158 --config=<file> Set config file (default is /etc/mogilefs/mogstored.conf)
159 --httplisten=<ip:port> IP/Port HTTP server listens on
160 --mgmtlisten=<ip:port> IP/Port management/sidechannel listens on
161 --docroot=<path> Docroot above device mount points. Defaults to /var/mogdata
166 # accessor for SideChannelClient:
167 sub Mogstored::iostat_available {
168 return $iostat_available;
171 sub load_config_file {
172 my ($conffile, $opts) = @_;
174 # parse the mogstored config file, which is just lines of comments and
175 # "key = value" lines, where keys are just the same as command line
177 die "Config file $opt_config doesn't exist.\n" unless -e $conffile;
178 open my $fh, $conffile or die "Couldn't open config file for reading: $!";
182 if (/SERVER max_connect/i || /CREATE SERVICE/i) {
183 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.");
186 die "Unknown config syntax: $_\n" unless /^\s*(\w+)\s*=\s*(.+?)\s*$/;
187 my ($key, $val) = ($1, $2);
189 foreach my $ck (keys %$opts) {
190 next unless $ck =~ /^$key\b/;
191 $dest = $opts->{$ck};
193 die "Unknown config setting: $key\n" unless $dest;
198 sub harvest_dead_children {
199 my $dead = waitpid(-1, WNOHANG);
201 my $code = delete $on_death{$dead};
204 Danga::Socket->AddTimer(2, \&harvest_dead_children);
207 sub start_fidsizes_worker {
209 # Note: in this case, this load is *before* the fork (which happens
210 # in Gearman::Server's start_worker), so be careful nothing
211 # heavy/gross is added to the FIDSizes worker.
212 require Mogstored::ChildProcess::FIDSizes;
213 my $class = "Mogstored::ChildProcess::FIDSizes";
214 $class->pre_exec_init;
216 my $pid = Mogstored->gearman_server->start_worker(sub {
220 # old Gearman::Servers didn't return pid integers
221 if ($pid =~ /^\d+$/) {
222 Mogstored->on_pid_death($pid, \&start_fidsizes_worker);
226 sub Mogstored::on_pid_death {
227 my ($class, $pid, $code) = @_;
228 $on_death{$pid} = $code;
231 # returns $pid of child, if parent, else runs child.
232 sub start_disk_usage_process {
234 unless (defined $child) {
235 Perlbal::log('crit', "Fork error creating disk usage tracking process");
239 # if we're the parent.
241 $on_death{$child} = sub {
242 start_disk_usage_process(); # start a new one
247 require Mogstored::ChildProcess::DiskUsage;
248 my $class = "Mogstored::ChildProcess::DiskUsage";
249 $class->pre_exec_init;
253 sub Mogstored::iostat_subscribe {
254 my ($class, $sock) = @_;
255 $iostat_listeners{fileno($sock->sock)} = $sock;
258 sub Mogstored::iostat_unsubscribe {
259 my ($class, $sock) = @_;
260 my $fdno = fileno($sock->sock);
261 return unless defined $fdno;
262 delete $iostat_listeners{$fdno};
265 # to be honest, I have no clue why this exists. I just had to move it
266 # around for multi-server refactoring, and I felt better not
267 # understanding it but preserving than killing it. in particular, why
268 # is this "graceful"? (gets called from SideChannelClient's
270 sub Mogstored::on_sidechannel_die_gracefully {
271 if ($$ == $parent_pid) {
272 kill 'TERM', grep { $_ } keys %on_death;
276 sub setup_sidechannel_listener {
277 Mogstored::SideChannelListener->new($mgmt_listen);
280 my $iostat_read_buf = "";
281 sub setup_iostat_pipes {
282 pipe ($iostat_pipe_r, $iostat_pipe_w);
283 IO::Handle::blocking($iostat_pipe_r, 0);
284 IO::Handle::blocking($iostat_pipe_w, 0);
286 Danga::Socket->AddOtherFds(fileno($iostat_pipe_r), sub {
287 read_from_iostat_child();
291 sub start_iostat_process {
293 unless (defined $pid) {
294 warn "Fork for iostat failed: $!";
300 $on_death{$pid} = sub {
301 start_iostat_process();
306 require Mogstored::ChildProcess::IOStat;
307 my $class = "Mogstored::ChildProcess::IOStat";
308 $class->pre_exec_init;
312 sub Mogstored::get_iostat_writer_pipe { $iostat_pipe_w }
314 # (runs in parent event-loop process)
315 sub read_from_iostat_child {
317 my $rv = sysread($iostat_pipe_r, $data, 10240);
318 return unless $rv && $rv > 0;
320 $iostat_read_buf .= $data;
322 # only write complete lines to sockets (in case for some reason we get
323 # a partial read and child process dies...)
324 while ($iostat_read_buf =~ s/(.+)\r?\n//) {
326 foreach my $out_sock (values %iostat_listeners) {
327 # where $line will be like "dev53\t53.23" or a "." to signal end of a group of devices.
328 $out_sock->write("$line\n");
334 sub Mogstored::gearman_server {
335 return $gearman_server ||= Gearman::Server->new;
339 sub Mogstored::gearman_client {
340 return $gearman_client ||=
341 Gearman::Client::Async->new(job_servers => [ Mogstored->gearman_server ]);
347 # indent-tabs-mode: nil
354 mogstored -- MogileFS storage daemon
358 This is the MogileFS storage daemon, which is just an HTTP server that
359 supports PUT, DELETE, etc. It's actually a wrapper around L<Perlbal>,
360 doing all the proper Perlbal config for you.
362 In addition, it monitors disk usage, I/O activity, etc, which are
363 checked from the L<MogileFS tracker|mogilefsd>.
367 Brad Fitzpatrick E<lt>brad@danga.comE<gt>
369 Mark Smith E<lt>junior@danga.comE<gt>
371 Jonathan Steinert E<lt>jsteinert@sixapart.comE<gt>
377 =item PERLBAL_XS_HEADERS
379 If defined and 0, Perlbal::XS::HTTPHeaders will not be used, if
380 present. Otherwise, it will be enabled by default, if installed and
387 Copyright 2004, Danga Interactive
388 Copyright 2005-2006, Six Apart Ltd.
392 Same terms as Perl itself. Artistic/GPLv2, at your choosing.
396 L<MogileFS::Overview> -- high level overview of MogileFS
398 L<mogilefsd> -- MogileFS daemon
400 L<http://danga.com/mogilefs/>