daemons: cd to "/" before starting
[girocco.git] / taskd / taskd.pl
blob75965a9f28e0ccb004d25e7a8ea7e122bba49437
1 #!/usr/bin/perl
3 # taskd - Clone repositories on request
5 # taskd is Girocco mirroring servant; it processes requests for clones
6 # of given URLs received over its socket.
8 # When a request is received, new process is spawned that sets up
9 # the repository and reports further progress
10 # to .clonelog within the repository. In case the clone fails,
11 # .clone_failed is touched and .clone_in_progress is removed.
13 # Clone protocol:
14 # Alice sets up repository and touches .cloning
15 # Alice opens connection to Bob
16 # Alice sends project name through the connection
17 # Bob opens the repository and sends error code if there is a problem
18 # Bob closes connection
19 # Alice polls .clonelog in case of success.
20 # If Alice reads "@OVER@" from .clonelog, it stops polling.
22 # Ref-change protocol:
23 # Alice opens connection to Bob
24 # Alice sends ref-change command for each changed ref
25 # Alice closes connection
26 # Bob sends out notifications
28 # Initially based on perlipc example.
30 use 5.008; # we need safe signals
31 use strict;
32 use warnings;
34 use Getopt::Long;
35 use Pod::Usage;
36 use Socket;
37 use Errno;
38 use Fcntl;
39 use POSIX ":sys_wait_h";
40 use File::Basename;
42 use lib dirname($0);
43 use Girocco::Config;
44 use Girocco::Notify;
45 use Girocco::Project;
46 use Girocco::User;
47 use Girocco::Util qw(noFatalsToBrowser get_git);
48 BEGIN {noFatalsToBrowser}
50 # Throttle Classes Defaults
51 # Note that any same-named classes in @Girocco::Config::throttle_classes
52 # will override (completely replacing the entire hash) these ones.
53 my @throttle_defaults = (
55 name => "ref-change",
56 maxproc => 0,
57 maxjobs => 1,
58 interval => 1
61 name => "clone",
62 maxproc => 0,
63 maxjobs => 2,
64 interval => 5
67 name => "snapshot",
68 #maxproc => max(5, cpucount + maxjobs), # this is the default
69 #maxjobs => max(1, int(cpucount / 4)) , # this is the default
70 interval => 5
74 # Options
75 my $quiet;
76 my $progress;
77 my $syslog;
78 my $stderr;
79 my $inetd;
80 my $idle_timeout;
81 my $abbrev = 8;
82 my $showff = 1;
83 my $statusintv = 60;
84 my $idleintv = 3600;
85 my $maxspawn = 8;
87 $| = 1;
89 my $progname = basename($0);
90 my $children = 0;
91 my $idlestart = time;
92 my $idlestatus = 0;
94 sub cpucount {
95 use Girocco::Util "online_cpus";
96 our $online_cpus_result;
97 $online_cpus_result = online_cpus unless $online_cpus_result;
98 return $online_cpus_result;
101 sub logmsg {
102 my $hdr = "[@{[scalar localtime]}] $progname $$: ";
103 if (tied *STDOUT) {
104 $OStream::only = 2; # STDERR only
105 print "$hdr@_\n";
106 $OStream::only = 1; # syslog only
107 print "@_\n";
108 $OStream::only = 0; # back to default
109 } else {
110 print "$hdr@_\n";
114 sub statmsg {
115 return unless $progress;
116 my $hdr = "[@{[scalar localtime]}] $progname $$: ";
117 if (tied *STDERR) {
118 $OStream::only = 2; # STDERR only
119 print STDERR "$hdr@_\n";
120 $OStream::only = 1; # syslog only
121 print STDERR "@_\n";
122 $OStream::only = 0; # back to default
123 } else {
124 print STDERR "$hdr@_\n";
128 sub duration {
129 my $secs = shift;
130 return $secs unless defined($secs) && $secs >= 0;
131 $secs = int($secs);
132 my $ans = ($secs % 60) . 's';
133 return $ans if $secs < 60;
134 $secs = int($secs / 60);
135 $ans = ($secs % 60) . 'm' . $ans;
136 return $ans if $secs < 60;
137 $secs = int($secs / 60);
138 $ans = ($secs % 24) . 'h' . $ans;
139 return $ans if $secs < 24;
140 $secs = int($secs / 24);
141 return $secs . 'd' . $ans;
144 sub setnonblock {
145 my $fd = shift;
146 my $flags = fcntl($fd, F_GETFL, 0);
147 defined($flags) or die "fcntl failed: $!";
148 fcntl($fd, F_SETFL, $flags | O_NONBLOCK) or die "fcntl failed: $!";
151 sub setblock {
152 my $fd = shift;
153 my $flags = fcntl($fd, F_GETFL, 0);
154 defined($flags) or die "fcntl failed: $!";
155 fcntl($fd, F_SETFL, $flags & ~O_NONBLOCK) or die "fcntl failed: $!";
158 package Throttle;
161 ## Throttle protocol
163 ## 1) Process needing throttle services acquire a control file descriptor
164 ## a) Either as a result of a fork + exec (the write end of a pipe)
165 ## b) Or by connecting to the taskd socket (not yet implemented)
167 ## 2) The process requesting throttle services will be referred to
168 ## as the supplicant or just "supp" for short.
170 ## 3) The supp first completes any needed setup which may include
171 ## gathering data it needs to perform the action -- if that fails
172 ## then there's no need for any throttling.
174 ## 4) The supp writes a throttle request to the control descriptor in
175 ## this format:
176 ## throttle <pid> <class>\n
177 ## for example if the supp's pid was 1234 and it was requesting throttle
178 ## control as a member of the mail class it would write this message:
179 ## throttle 1234 mail\n
180 ## Note that if the control descriptor happens to be a pipe rather than a
181 ## socket, the message should be preceded by another "\n" just be be safe.
182 ## If the control descriptor is a socket, not a pipe, the message may be
183 ## preceded by a "\n" but that's not recommended.
185 ## 5) For supplicants with a control descriptor that is a pipe
186 ## (getsockopt(SO_TYPE) returns ENOTSOCK) the (5a) protocol should be used.
187 ## If the control descriptor is a socket (getsockname succeeds) then
188 ## protocol (5b) should be used.
190 ## 5a) The supp now enters a "pause" loop awaiting either a SIGUSR1, SIGUSR2 or
191 ## SIGTERM. It should wake up periodically (SIGALRM works well) and attempt
192 ## to write a "keepalive\n" message to the control descriptor. If that
193 ## fails, the controller has gone away and it may make its own decision
194 ## whether or not to proceed at that point. If, on the other hand, it
195 ## receives a SIGTERM, the process limit for its class has been reached
196 ## and it should abort without performing its action. If it receives
197 ## SIGUSR1, it may proceed without writing anything more to the control
198 ## descriptor, any MAY even close the control descriptor. Finally, a
199 ## SIGUSR2 indicates rejection of the throttle request for some other reason
200 ## such as unrecognized class name or invalid pid in which case the supp may
201 ## make its own decision how to proceed.
203 ## 5b) The supp now enters a read wait on the socket -- it need accomodate no
204 ## more than 512 bytes and if a '\n' does not appear within that number of
205 ## bytes the read should be considered failed. Otherwise the read should
206 ## be retried until either a full line has been read or the socket is
207 ## closed from the other end. If the lone read is "proceed\n" then it may
208 ## proceed without reading or writing anything more to the control
209 ## descriptor, but MUST keep the control descriptor open and not call
210 ## shutdown on it either. Any other result (except EINTR or EAGAIN which
211 ## should be retried) constitutes failure. If a full line starting with at
212 ## least one alpha character was read but it was not "proceed" then it
213 ## should abort without performing its action. For any other failure it
214 ## may make its own decision whether or not to proceed as the controller has
215 ## gone away.
217 ## 6) The supp now performs its throttled action.
219 ## 7) The supp now closes its control descriptor (if it hasn't already in the
220 ## case of (5a)) and exits -- in the case of a socket, the other end receives
221 ## notification that the socket has been closed (read EOF). In the case of
222 ## a pipe the other end receives a SIGCHLD (multiple processes have a hold
223 ## of the other end of the pipe, so it will not reaach EOF by the supp's
224 ## exit in that case).
227 # keys are class names, values are hash refs with these fields:
228 # 'maxproc' => integer; maximum number of allowed supplicants (the sum of how
229 # many may be queued waiting plus how many may be
230 # concurrently active) with 0 meaning no limit.
231 # 'maxjobs' => integer; how many supplicants may proceed simultaneously a value
232 # of 0 is unlimited but the number of concurrent
233 # supplicants will always be limited to no more than
234 # the 'maxproc' value (if > 0) no matter what the
235 # 'maxjobs' value is.
236 # 'total' -> integer; the total number of pids belonging to this clase that
237 # can currently be found in %pid.
238 # 'active' -> integer; the number of currently active supplicants which should
239 # be the same as (the number of elements of %pid with a
240 # matching class name) - (number of my class in @queue).
241 # 'interval' -> integer; minimum number of seconds between 'proceed' responses
242 # or SIGUSR1 signals to members of this class.
243 # 'lastqueue' -> time; last time a supplicant was successfully queued.
244 # 'lastproceed' => time; last time a supplicant was allowed to proceed.
245 # 'lastthrottle' => time; last time a supplicant was throttled
246 # 'lastdied' => time; last time a supplicant in this class died/exited/etc.
247 my %classes = ();
249 # keys are pid numbers, values are array refs with these elements:
250 # [0] => name of class (key to classes hash)
251 # [1] => supplicant state (0 => queued, non-zero => time it started running)
252 # [2] => descriptive text (e.g. project name)
253 my %pid = ();
255 # minimum number of seconds between any two proceed responses no matter what
256 # class. this takes priority in that it can effectively increase the
257 # class's 'interval' value by delaying proceed notifications if the minimum
258 # interval has not yet elapsed.
259 my $interval = 1;
261 # fifo of pids awaiting notification as soon as the next $interval elapses
262 # provided interval and maxjobs requirements are satisfied
263 # for the class of the pid that will next be triggered.
264 my @queue = ();
266 # time of most recent successful call to AddSupplicant
267 my $lastqueue = 0;
269 # time of most recent proceed notification
270 my $lastproceed = 0;
272 # time of most recent throttle
273 my $lastthrottle = 0;
275 # time of most recent removal
276 my $lastdied = 0;
278 # lifetime count of how many have been queued
279 my $totalqueue = 0;
281 # lifetime count of how many have been allowed to proceed
282 my $totalproceed = 0;
284 # lifetime count of how many have been throttled
285 my $totalthrottle = 0;
287 # lifetime count of how many have died
288 # It should always be true that $totalqueued - $totaldied == $curentlyactive
289 my $totaldied = 0;
291 # Returns an unordered list of currently registered class names
292 sub GetClassList {
293 return keys(%classes);
296 sub _max {
297 return $_[0] if $_[0] >= $_[1];
298 return $_[1];
301 sub _getnum {
302 my ($min, $val, $default) = @_;
303 my $ans;
304 if (defined($val) && $val =~ /^[+-]?\d+$/) {
305 $ans = 0 + $val;
306 } else {
307 $ans = &$default;
309 return _max($min, $ans);
312 # [0] => name of class to find
313 # [1] => if true, create class if it doesn't exist, if a hashref then
314 # it contains initial values for maxproc, maxjobs and interval.
315 # Otherwise maxjobs defaults to max(cpu cores/4, 1), maxprocs
316 # defaults to the max(5, number of cpu cores + maxjobs) and interval
317 # defaults to 1.
318 # Returns a hash ref with info about the class on success
319 sub GetClassInfo {
320 my ($classname, $init) = @_;
321 defined($classname) && $classname =~ /^[a-zA-Z][a-zA-Z0-9._+-]*$/
322 or return;
323 $classname = lc($classname);
324 my %info;
325 if ($classes{$classname}) {
326 %info = %{$classes{$classname}};
327 return \%info;
329 return unless $init;
330 my %newclass = ();
331 ref($init) eq 'HASH' or $init = {};
332 $newclass{'maxjobs'} = _getnum(0, $init->{'maxjobs'}, sub{_max(1, int(::cpucount() / 4))});
333 $newclass{'maxproc'} = _getnum(0, $init->{'maxproc'}, sub{_max(5, ::cpucount() + $newclass{'maxjobs'})});
334 $newclass{'interval'} = _getnum(0, $init->{'interval'}, sub{1});
335 $newclass{'total'} = 0;
336 $newclass{'active'} = 0;
337 $newclass{'lastqueue'} = 0;
338 $newclass{'lastproceed'} = 0;
339 $newclass{'lastthrottle'} = 0;
340 $newclass{'lastdied'} = 0;
341 $classes{$classname} = \%newclass;
342 %info = %newclass;
343 return \%info;
346 # [0] => pid to look up
347 # Returns () if not found otherwise ($classname, $timestarted, $description)
348 # Where $timestarted will be 0 if it's still queued otherwise a time() value
349 sub GetPidInfo {
350 my $pid = shift;
351 return () unless exists $pid{$pid};
352 return @{$pid{$pid}};
355 # Returns array of pid numbers that are currently running sorted
356 # by time started (oldest to newest). Can return an empty array.
357 sub GetRunningPids {
358 return sort({ ${$pid{$a}}[1] <=> ${$pid{$b}}[1] }
359 grep({ ${$pid{$_}}[1] } keys(%pid)));
362 # Returns a hash with various about the current state
363 # 'interval' => global minimum interval between proceeds
364 # 'active' => how many pids are currently queued + how many are running
365 # 'queue' => how many pids are currently queued
366 # 'lastqueue' => time (epoch seconds) of last queue
367 # 'lastproceed' => time (epoch seconds) of last proceed
368 # 'lastthrottle' => time (epoch seconds) of last throttle
369 # 'lastdied' => time (epoch seconds) of last removal
370 # 'totalqueue' => lifetime total number of processes queued
371 # 'totalproceed' => lifetime total number of processes proceeded
372 # 'totalthrottle' => lifetime total number of processes throttled
373 # 'totaldied' => lifetime total number of removed processes
374 sub GetInfo {
375 return {
376 interval => $interval,
377 active => scalar(keys(%pid)) - scalar(@queue),
378 queue => scalar(@queue),
379 lastqueue => $lastqueue,
380 lastproceed => $lastproceed,
381 lastthrottle => $lastthrottle,
382 lastdied => $lastdied,
383 totalqueue => $totalqueue,
384 totalproceed => $totalproceed,
385 totalthrottle => $totalthrottle,
386 totaldied => $totaldied
390 # with no args get the global interval
391 # with one arg set it, returns previous value if set
392 sub Interval {
393 my $ans = $interval;
394 $interval = 0 + $_[0] if defined($_[0]) && $_[0] =~ /^\d+$/;
395 return $ans;
398 sub RemoveSupplicant;
400 # Perform queue service (i.e. send SIGUSR1 to any eligible queued process)
401 # Returns minimum interval until next proceed is possible
402 # Returns undef if there's nothing waiting to proceed or
403 # the 'maxjobs' limits have been reached for all queued items (in which
404 # case it won't be possible to proceed until one of them exits, hence undef)
405 # This is called automatially by AddSupplicant and RemoveSupplicant
406 sub ServiceQueue {
407 RETRY:
408 return undef unless @queue; # if there's nothing queued, nothing to do
409 my $now = time;
410 my $min = _max(0, $interval - ($now - $lastproceed));
411 my $classmin = undef;
412 my $classchecked = 0;
413 my %seenclass = ();
414 my $classcount = scalar(keys(%classes));
415 for (my $i=0; $i <= $#queue && $classchecked < $classcount; ++$i) {
416 my $pid = $queue[$i];
417 my $procinfo = $pid{$pid};
418 if (!$procinfo) {
419 RemoveSupplicant($pid, 1);
420 goto RETRY;
422 my $classinfo = $classes{$$procinfo[0]};
423 if (!$classinfo) {
424 RemoveSupplicant($pid, 1);
425 goto RETRY;
427 if (!$seenclass{$$procinfo[0]}) {
428 $seenclass{$$procinfo[0]} = 1;
429 ++$classchecked;
430 if (!$classinfo->{'maxjobs'} || $classinfo->{'active'} < $classinfo->{'maxjobs'}) {
431 my $cmin = _max(0, $classinfo->{'interval'} - ($now - $classinfo->{'lastproceed'}));
432 if (!$cmin && !$min) {
433 $now = time;
434 $$procinfo[1] = $now;
435 splice(@queue, $i, 1);
436 ++$totalproceed;
437 $lastproceed = $now;
438 $classinfo->{'lastproceed'} = $now;
439 ++$classinfo->{'active'};
440 kill("USR1", $pid) or RemoveSupplicant($pid, 1);
441 goto RETRY;
443 $classmin = $cmin unless defined($classmin) && $classmin < $cmin;
447 return defined($classmin) ? _max($min, $classmin) : undef;
450 # $1 => pid to add (must not already be in %pids)
451 # $2 => class name (must exist)
452 # Returns -1 if no such class or pid already present or invalid
453 # Returns 0 if added successfully (and possibly already SIGUSR1'd)
454 # Return 1 if throttled and cannot be added
455 sub AddSupplicant {
456 my ($pid, $classname, $text, $noservice) = @_;
457 return -1 unless $pid && $pid =~ /^[1-9][0-9]*$/;
458 $pid += 0;
459 kill(0, $pid) or return -1;
460 my $classinfo = $classes{$classname};
461 return -1 unless $classinfo;
462 return -1 if $pid{$pid};
463 $text = '' unless defined($text);
464 my $now = time;
465 if ($classinfo->{'maxproc'} && $classinfo->{'total'} >= $classinfo->{'maxproc'}) {
466 ++$totalthrottle;
467 $lastthrottle = $now;
468 $classinfo->{'lastthrottle'} = $now;
469 return 1;
471 ++$totalqueue;
472 $lastqueue = $now;
473 $pid{$pid} = [$classname, 0, $text];
474 ++$classinfo->{'total'};
475 $classinfo->{'lastqueue'} = $now;
476 push(@queue, $pid);
477 ServiceQueue unless $noservice;
478 return 0;
481 # $1 => pid to remove (died, killed, exited normally, doesn't matter)
482 # Returns 0 if removed
483 # Returns -1 if unknown pid or other error during removal
484 sub RemoveSupplicant {
485 my ($pid, $noservice) = @_;
486 return -1 unless defined($pid) && $pid =~ /^\d+$/;
487 $pid += 0;
488 my $pidinfo = $pid{$pid};
489 $pidinfo or return -1;
490 my $now = time;
491 $lastdied = $now;
492 ++$totaldied;
493 delete $pid{$pid};
494 if (!$$pidinfo[1]) {
495 for (my $i=0; $i<=$#queue; ++$i) {
496 if ($queue[$i] == $pid) {
497 splice(@queue, $i, 1);
498 --$i;
502 my $classinfo = $classes{$$pidinfo[0]};
503 ServiceQueue, return -1 unless $classinfo;
504 --$classinfo->{'active'} if $$pidinfo[1];
505 --$classinfo->{'total'};
506 $classinfo->{'lastdied'} = $now;
507 ServiceQueue unless $noservice;
508 return 0;
511 # Instance Methods
513 package main;
516 ## ---------
517 ## Functions
518 ## ---------
521 my @reapedpids = ();
522 my %signame = (
523 # http://pubs.opengroup.org/onlinepubs/000095399/utilities/trap.html
524 1 => 'SIGHUP',
525 2 => 'SIGINT',
526 3 => 'SIGQUIT',
527 6 => 'SIGABRT',
528 9 => 'SIGKILL',
529 14 => 'SIGALRM',
530 15 => 'SIGTERM',
532 sub REAPER {
533 local $!;
534 my $child;
535 my $waitedpid;
536 while (($waitedpid = waitpid(-1, WNOHANG)) > 0) {
537 my $code = $? & 0xffff;
538 $idlestart = time if !--$children;
539 my $codemsg = '';
540 if (!($code & 0xff)) {
541 $codemsg = " with exit code ".($code >> 8) if $code;
542 } elsif ($code & 0x7f) {
543 my $signum = ($code & 0x7f);
544 $codemsg = " with signal ".
545 ($signame{$signum}?$signame{$signum}:$signum);
547 logmsg "reaped $waitedpid$codemsg";
548 push(@reapedpids, $waitedpid);
550 $SIG{CHLD} = \&REAPER; # loathe sysV
553 $SIG{CHLD} = \&REAPER; # Apollo 440
555 my ($piperead, $pipewrite);
556 sub spawn {
557 my $coderef = shift;
559 my $pid = fork;
560 if (not defined $pid) {
561 logmsg "cannot fork: $!";
562 return;
563 } elsif ($pid) {
564 $idlestart = time if !++$children;
565 $idlestatus = 0;
566 logmsg "begat $pid";
567 return; # I'm the parent
570 close(Server) unless fileno(Server) == 0;
571 close($piperead);
572 $SIG{'CHLD'} = sub {};
574 open STDIN, "+<&Client" or die "can't dup client to stdin";
575 close(Client);
576 exit &$coderef();
579 # returns:
580 # < 0: error
581 # = 0: proceed
582 # > 0: throttled
583 sub request_throttle {
584 use POSIX qw(sigprocmask sigsuspend SIG_SETMASK);
585 my $classname = shift;
586 my $text = shift;
588 Throttle::GetClassInfo($classname)
589 or return -1; # no such throttle class
591 my $throttled = 0;
592 my $proceed = 0;
593 my $error = 0;
594 my $controldead = 0;
595 my $setempty = POSIX::SigSet->new;
596 my $setfull = POSIX::SigSet->new;
597 $setempty->emptyset();
598 $setfull->fillset();
599 $SIG{'TERM'} = sub {$throttled = 1};
600 $SIG{'USR1'} = sub {$proceed = 1};
601 $SIG{'USR2'} = sub {$error = 1};
602 $SIG{'PIPE'} = sub {$controldead = 1};
603 $SIG{'ALRM'} = sub {};
605 # After writing we can expect a SIGTERM, SIGUSR1 or SIGUSR2
606 print $pipewrite "\nthrottle $$ $classname $text\n";
607 my $old = POSIX::SigSet->new;
608 sigprocmask(SIG_SETMASK, $setfull, $old);
609 until ($controldead || $throttled || $proceed || $error) {
610 alarm(30);
611 sigsuspend($setempty);
612 alarm(0);
613 sigprocmask(SIG_SETMASK, $setempty, $old);
614 print $pipewrite "\nkeepalive $$\n";
615 sigprocmask(SIG_SETMASK, $setfull, $old);
617 sigprocmask(SIG_SETMASK, $setempty, $old);
618 $SIG{'TERM'} = "DEFAULT";
619 $SIG{'USR1'} = "DEFAULT";
620 $SIG{'USR2'} = "DEFAULT";
621 $SIG{'ALRM'} = "DEFAULT";
622 $SIG{'PIPE'} = "DEFAULT";
624 my $result = -1;
625 if ($throttled) {
626 $result = 1;
627 } elsif ($proceed) {
628 $result = 0;
630 return $result;
633 sub clone {
634 my ($name) = @_;
635 Girocco::Project::does_exist($name, 1) or die "no such project: $name";
636 my $proj = Girocco::Project->load($name);
637 $proj or die "failed to load project $name";
638 $proj->{clone_in_progress} or die "project $name is not marked for cloning";
639 $proj->{clone_logged} and die "project $name is already being cloned";
640 request_throttle("clone", $name) <= 0 or die "cloning $name aborted (throttled)";
641 statmsg "cloning $name";
642 open STDOUT, '>', "$Girocco::Config::reporoot/$name.git/.clonelog" or die "cannot open clonelog: $!";
643 open STDERR, ">&STDOUT";
644 open STDIN, '<', '/dev/null';
645 exec "$Girocco::Config::basedir/taskd/clone.sh", "$name.git" or die "exec failed: $!";
648 sub ref_indicator {
649 return ' -> ' unless $showff && defined($_[0]);
650 my ($git_dir, $old, $new) = @_;
651 return '..' unless defined($old) && defined($new) && $old !~ /^0+$/ && $new !~ /^0+$/ && $old ne $new;
652 # In many cases `git merge-base` is slower than this even if using the
653 # `--is-ancestor` option available since Git 1.8.0, but it's never faster
654 my $ans = get_git("--git-dir=$git_dir", "rev-list", "-n", "1", "^$new^0", "$old^0", "--") ? '...' : '..';
655 return wantarray ? ($ans, 1) : $ans;
658 sub ref_change {
659 my ($arg) = @_;
660 my ($username, $name, $oldrev, $newrev, $ref) = split(/\s+/, $arg);
661 $username && $name && $oldrev && $newrev && $ref or return 0;
662 $oldrev =~ /^[0-9a-f]{40}$/ && $newrev =~ /^[0-9a-f]{40}$/ && $ref =~ m{^refs/} or return 0;
663 $newrev ne $oldrev or return 0;
665 Girocco::Project::does_exist($name, 1) or die "no such project: $name";
666 my $proj = Girocco::Project->load($name);
667 $proj or die "failed to load project $name";
668 my $has_notify = $proj->has_notify;
669 my $type = $has_notify ? "notify" : "change";
671 my $user;
672 if ($username && $username !~ /^%.*%$/) {
673 Girocco::User::does_exist($username, 1) or die "no such user: $username";
674 $user = Girocco::User->load($username);
675 $user or die "failed to load user $username";
676 } elsif ($username eq "%$name%") {
677 $username = "-";
680 request_throttle("ref-change", $name) <= 0 or die "ref-change $name aborted (throttled)";
681 my $ind = ref_indicator($proj->{path}, $oldrev, $newrev);
682 statmsg "ref-$type $username $name ($ref: @{[substr($oldrev,0,$abbrev)]}$ind@{[substr($newrev,0,$abbrev)]})";
683 open STDIN, '<', '/dev/null';
684 Girocco::Notify::ref_change($proj, $user, $ref, $oldrev, $newrev) if $has_notify;
685 return 0;
688 sub ref_changes {
689 my ($arg) = @_;
690 my ($username, $name) = split(/\s+/, $arg);
691 $username && $name or return 0;
693 Girocco::Project::does_exist($name, 1) or die "no such project: $name";
694 my $proj = Girocco::Project->load($name);
695 $proj or die "failed to load project $name";
696 my $has_notify = $proj->has_notify;
697 my $type = $has_notify ? "notify" : "change";
699 my $user;
700 if ($username && $username !~ /^%.*%$/) {
701 Girocco::User::does_exist($username, 1) or die "no such user: $username";
702 $user = Girocco::User->load($username);
703 $user or die "failed to load user $username";
704 } elsif ($username eq "%$name%") {
705 $username = "-";
708 my @changes = ();
709 my %oldheads = ();
710 my %deletedheads = ();
711 while (my $change = <STDIN>) {
712 my ($oldrev, $newrev, $ref) = split(/\s+/, $change);
713 $oldrev =~ /^[0-9a-f]{40}$/ && $newrev =~ /^[0-9a-f]{40}$/ && $ref =~ m{^refs/} or next;
714 if ($ref =~ m{^refs/heads/.}) {
715 if ($oldrev =~ /^0{40}$/) {
716 delete $oldheads{$ref};
717 $deletedheads{$ref} = 1;
718 } elsif ($newrev ne $oldrev || (!exists($oldheads{$ref}) && !$deletedheads{$ref})) {
719 $oldheads{$ref} = $oldrev;
722 $newrev ne $oldrev or next;
723 push(@changes, [$oldrev, $newrev, $ref]);
725 return 0 unless @changes;
726 open STDIN, '<', '/dev/null';
727 request_throttle("ref-change", $name) <= 0 or die "ref-changes $name aborted (throttled)";
728 my $statproc = sub {
729 my ($old, $new, $ref, $ran_mail_sh) = @_;
730 my ($ind, $ran_git) = ref_indicator($proj->{path}, $old, $new);
731 statmsg "ref-$type $username $name ($ref: @{[substr($old,0,$abbrev)]}$ind@{[substr($new,0,$abbrev)]})";
732 sleep 1 if $ran_mail_sh || $ran_git;
734 if ($has_notify) {
735 Girocco::Notify::ref_changes($proj, $user, $statproc, \%oldheads, @changes);
736 } else {
737 &$statproc(@$_) foreach @changes;
739 return 0;
742 sub throttle {
743 my ($arg) = @_;
744 my ($pid, $classname, $text) = split(/\s+/, $arg);
745 $pid =~ /^\d+/ or return 0; # invalid pid
746 $pid += 0;
747 $pid > 0 or return 0; # invalid pid
748 kill(0, $pid) || $!{EPERM} or return 0; # no such process
749 Throttle::GetClassInfo($classname) or return 0; # no such throttle class
750 defined($text) && $text ne '' or return 0; # no text no service
752 my $throttled = 0;
753 my $proceed = 0;
754 my $error = 0;
755 my $controldead = 0;
756 my $suppdead = 0;
757 my ($waker, $wakew);
758 pipe($waker, $wakew) or die "pipe failed: $!";
759 select((select($wakew),$|=1)[0]);
760 setnonblock($wakew);
761 $SIG{'TERM'} = sub {$throttled = 1; syswrite($wakew, '!')};
762 $SIG{'USR1'} = sub {$proceed = 1; syswrite($wakew, '!')};
763 $SIG{'USR2'} = sub {$error = 1; syswrite($wakew, '!')};
764 $SIG{'PIPE'} = sub {$controldead = 1; syswrite($wakew, '!')};
765 select((select(STDIN),$|=1)[0]);
767 logmsg "throttle $pid $classname $text request";
768 # After writing we can expect a SIGTERM or SIGUSR1
769 print $pipewrite "\nthrottle $$ $classname $text\n";
771 # NOTE: the only way to detect the socket close is to read all the
772 # data until EOF is reached -- recv can be used to peek.
773 my $v = '';
774 vec($v, fileno(STDIN), 1) = 1;
775 vec($v, fileno($waker), 1) = 1;
776 setnonblock(\*STDIN);
777 setnonblock($waker);
778 until ($controldead || $throttled || $proceed || $error || $suppdead) {
779 my ($r, $e);
780 select($r=$v, undef, $e=$v, 30);
781 my ($bytes, $discard);
782 do {$bytes = sysread($waker, $discard, 512)} while (defined($bytes) && $bytes > 0);
783 do {$bytes = sysread(STDIN, $discard, 4096)} while (defined($bytes) && $bytes > 0);
784 $suppdead = 1 unless !defined($bytes) && $!{EAGAIN};
785 print $pipewrite "\nkeepalive $$\n";
787 setblock(\*STDIN);
789 if ($throttled && !$suppdead) {
790 print STDIN "throttled\n";
791 logmsg "throttle $pid $classname $text throttled";
792 } elsif ($proceed && !$suppdead) {
793 print STDIN "proceed\n";
794 logmsg "throttle $pid $classname $text proceed";
795 $SIG{'TERM'} = 'DEFAULT';
796 # Stay alive until the child dies which we detect by EOF on STDIN
797 setnonblock(\*STDIN);
798 until ($controldead || $suppdead) {
799 my ($r, $e);
800 select($r=$v, undef, $e=$v, 30);
801 my ($bytes, $discard);
802 do {$bytes = sysread($waker, $discard, 512)} while (defined($bytes) && $bytes > 0);
803 do {$bytes = sysread(STDIN, $discard, 512)} while (defined($bytes) && $bytes > 0);
804 $suppdead = 1 unless !defined($bytes) && $!{EAGAIN};
805 print $pipewrite "\nkeepalive $$\n";
807 setblock(\*STDIN);
808 } else {
809 my $prefix = '';
810 $prefix = "control" if $controldead && !$suppdead;
811 logmsg "throttle $pid $classname $text ${prefix}died";
813 exit 0;
816 sub process_pipe_msg {
817 my ($act, $pid, $cls, $text) = split(/\s+/, $_[0]);
818 if ($act eq "throttle") {
819 $pid =~ /^\d+$/ or return 0;
820 $pid += 0;
821 $pid > 0 or return 0; # invalid pid
822 kill(0, $pid) or return 0; # invalid pid
823 defined($cls) && $cls ne "" or kill('USR2', $pid), return 0;
824 defined($text) && $text ne "" or kill('USR2', $pid), return 0;
825 Throttle::GetClassInfo($cls) or kill('USR2', $pid), return 0;
826 # the AddSupplicant call could send SIGUSR1 before it returns
827 my $result = Throttle::AddSupplicant($pid, $cls, $text);
828 kill('USR2', $pid), return 0 if $result < 0;
829 kill('TERM', $pid), return 0 if $result > 0;
830 # $pid was added to class $cls and will receive SIGUSR1 when
831 # it's time for it to proceed
832 return 0;
833 } elsif ($act eq "keepalive") {
834 # nothing to do although we could verify pid is valid and
835 # still in %Throttle::pids and send a SIGUSR2 if not, but
836 # really keepalive should just be ignored.
837 return 0;
839 print STDERR "discarding unknown pipe message \"$_[0]\"\n";
840 return 0;
844 ## -------
845 ## OStream
846 ## -------
849 package OStream;
851 # Set to 1 for only syslog output (if enabled by mode)
852 # Set to 2 for only stderr output (if enabled by mode)
853 our $only = 0; # This is a hack
855 use Carp 'croak';
856 use Sys::Syslog qw(:DEFAULT :macros);
858 sub writeall {
859 use POSIX qw();
860 use Errno;
861 my ($fd, $data) = @_;
862 my $offset = 0;
863 my $remaining = length($data);
864 while ($remaining) {
865 my $bytes = POSIX::write(
866 $fd,
867 substr($data, $offset, $remaining),
868 $remaining);
869 next if !defined($bytes) && $!{EINTR};
870 croak "POSIX::write failed: $!" unless defined $bytes;
871 croak "POSIX::write wrote 0 bytes" unless $bytes;
872 $remaining -= $bytes;
873 $offset += $bytes;
877 sub dumpline {
878 use POSIX qw(STDERR_FILENO);
879 my ($self, $line) = @_;
880 $only = 0 unless defined($only);
881 writeall(STDERR_FILENO, $line) if $self->{'stderr'} && $only != 1;
882 substr($line, -1, 1) = '' if substr($line, -1, 1) eq "\n";
883 return unless length($line);
884 syslog(LOG_NOTICE, "%s", $line) if $self->{'syslog'} && $only != 2;
887 sub TIEHANDLE {
888 my $class = shift || 'OStream';
889 my $mode = shift;
890 my $syslogname = shift;
891 my $syslogfacility = shift;
892 defined($syslogfacility) or $syslogfacility = LOG_USER;
893 my $self = {};
894 $self->{'syslog'} = $mode > 0;
895 $self->{'stderr'} = $mode <= 0 || $mode > 1;
896 $self->{'lastline'} = '';
897 if ($self->{'syslog'}) {
898 # Some Sys::Syslog have a stupid default setlogsock order
899 eval {Sys::Syslog::setlogsock("native"); 1;} or
900 eval {Sys::Syslog::setlogsock("unix");};
901 openlog($syslogname, "ndelay,pid", $syslogfacility)
902 or croak "Sys::Syslog::openlog failed: $!";
904 return bless $self, $class;
907 sub BINMODE {return 1}
908 sub FILENO {return undef}
909 sub EOF {return 0}
910 sub CLOSE {return 1}
912 sub PRINTF {
913 my $self = shift;
914 my $template = shift;
915 return $self->PRINT(sprintf $template, @_);
918 sub PRINT {
919 my $self = shift;
920 my $data = join('', $self->{'lastline'}, @_);
921 my $pos = 0;
922 while ((my $idx = index($data, "\n", $pos)) >= 0) {
923 ++$idx;
924 my $line = substr($data, $pos, $idx - $pos);
925 substr($data, $pos, $idx - $pos) = '';
926 $pos = $idx;
927 $self->dumpline($line);
929 $self->{'lastline'} = $data;
930 return 1;
933 sub DESTROY {
934 my $self = shift;
935 $self->dumpline($self->{'lastline'})
936 if length($self->{'lastline'});
937 closelog;
940 sub WRITE {
941 my $self = shift;
942 my ($scalar, $length, $offset) = @_;
943 $scalar = '' if !defined($scalar);
944 $length = length($scalar) if !defined($length);
945 croak "OStream::WRITE invalid length $length"
946 if $length < 0;
947 $offset = 0 if !defined($offset);
948 $offset += length($scalar) if $offset < 0;
949 croak "OStream::WRITE invalid write offset"
950 if $offset < 0 || $offset > $length;
951 my $max = length($scalar) - $offset;
952 $length = $max if $length > $max;
953 $self->PRINT(substr($scalar, $offset, $length));
954 return $length;
958 ## ----
959 ## main
960 ## ----
963 package main;
965 chdir "/";
966 close(DATA) if fileno(DATA);
967 my $sfac;
968 Getopt::Long::Configure('bundling');
969 my ($stiv, $idiv);
970 my $parse_res = GetOptions(
971 'help|?|h' => sub {pod2usage(-verbose => 2, -exitval => 0)},
972 'quiet|q' => \$quiet,
973 'no-quiet' => sub {$quiet = 0},
974 'progress|P' => \$progress,
975 'inetd|i' => sub {$inetd = 1; $syslog = 1; $quiet = 1;},
976 'idle-timeout|t=i' => \$idle_timeout,
977 'syslog|s:s' => \$sfac,
978 'no-syslog' => sub {$syslog = 0; $sfac = undef;},
979 'stderr' => \$stderr,
980 'abbrev=i' => \$abbrev,
981 'show-fast-forward-info' => \$showff,
982 'no-show-fast-forward-info' => sub {$showff = 0},
983 'status-interval=i' => \$stiv,
984 'idle-status-interval=i' => \$idiv,
985 ) || pod2usage(2);
986 $syslog = 1 if defined($sfac);
987 $progress = 1 unless $quiet;
988 $abbrev = 128 unless $abbrev > 0;
989 if (defined($idle_timeout)) {
990 die "--idle-timeout must be a whole number" unless $idle_timeout =~ /^\d+$/;
991 die "--idle-timeout may not be used without --inetd" unless $inetd;
993 if (defined($stiv)) {
994 die "--status-interval must be a whole number" unless $stiv =~ /^\d+$/;
995 $statusintv = $stiv * 60;
997 if (defined($idiv)) {
998 die "--idle-status-interval must be a whole number" unless $idiv =~ /^\d+$/;
999 $idleintv = $idiv * 60;
1002 open STDOUT, '>&STDERR' if $inetd;
1003 if ($syslog) {
1004 use Sys::Syslog qw();
1005 my $mode = 1;
1006 ++$mode if $stderr;
1007 $sfac = "user" unless defined($sfac) && $sfac ne "";
1008 my $ofac = $sfac;
1009 $sfac = uc($sfac);
1010 $sfac = 'LOG_'.$sfac unless $sfac =~ /^LOG_/;
1011 my $facility;
1012 my %badfac = map({("LOG_$_" => 1)}
1013 (qw(PID CONS ODELAY NDELAY NOWAIT PERROR FACMASK NFACILITIES PRIMASK LFMT)));
1014 eval "\$facility = Sys::Syslog::$sfac; 1" or die "invalid syslog facility: $ofac";
1015 die "invalid syslog facility: $ofac"
1016 if ($facility & ~0xf8) || ($facility >> 3) > 23 || $badfac{$sfac};
1017 tie *STDERR, 'OStream', $mode, $progname, $facility or die "tie failed";
1019 if ($quiet) {
1020 open STDOUT, '>', '/dev/null';
1021 } elsif ($inetd) {
1022 *STDOUT = *STDERR;
1025 my $NAME;
1027 if ($inetd) {
1028 open Server, '<&=0' or die "open: $!";
1029 my $sockname = getsockname Server;
1030 die "getsockname: $!" unless $sockname;
1031 die "socket already connected! must be 'wait' socket" if getpeername Server;
1032 die "getpeername: $!" unless $!{ENOTCONN};
1033 my $st = getsockopt Server, SOL_SOCKET, SO_TYPE;
1034 die "getsockopt(SOL_SOCKET, SO_TYPE): $!" unless $st;
1035 my $socktype = unpack('i', $st);
1036 die "stream socket required" unless defined $socktype && $socktype == SOCK_STREAM;
1037 die "AF_UNIX socket required" unless sockaddr_family($sockname) == AF_UNIX;
1038 $NAME = unpack_sockaddr_un $sockname;
1039 my $expected = $Girocco::Config::chroot.'/etc/taskd.socket';
1040 warn "listening on \"$NAME\" but expected \"$expected\"" unless $NAME eq $expected;
1041 my $mode = (stat($NAME))[2];
1042 die "stat: $!" unless $mode;
1043 $mode &= 07777;
1044 if (($mode & 0660) != 0660) {
1045 chmod(($mode|0660), $NAME) == 1 or die "chmod ug+rw \"$NAME\" failed: $!";
1047 } else {
1048 $NAME = $Girocco::Config::chroot.'/etc/taskd.socket';
1049 my $uaddr = sockaddr_un($NAME);
1051 socket(Server, PF_UNIX, SOCK_STREAM, 0) or die "socket failed: $!";
1052 unlink($NAME);
1053 bind(Server, $uaddr) or die "bind failed: $!";
1054 listen(Server, SOMAXCONN) or die "listen failed: $!";
1055 chmod 0666, $NAME or die "chmod failed: $!";
1058 foreach my $throttle (@Girocco::Config::throttle_classes, @throttle_defaults) {
1059 my $classname = $throttle->{"name"};
1060 $classname or next;
1061 Throttle::GetClassInfo($classname, $throttle);
1064 sub _min {
1065 return $_[0] <= $_[1] ? $_[0] : $_[1];
1068 pipe($piperead, $pipewrite) or die "pipe failed: $!";
1069 setnonblock($piperead);
1070 select((select($pipewrite), $|=1)[0]);
1071 my $pipebuff = '';
1072 my $fdset_both = '';
1073 vec($fdset_both, fileno($piperead), 1) = 1;
1074 my $fdset_pipe = $fdset_both;
1075 vec($fdset_both, fileno(Server), 1) = 1;
1076 my $penalty = 0;
1077 my $t = time;
1078 my $penaltytime = $t;
1079 my $nextwakeup = $t + 60;
1080 my $nextstatus = undef;
1081 $nextstatus = $t + $statusintv if $statusintv;
1082 statmsg "listening on $NAME";
1083 while (1) {
1084 my ($rout, $eout, $nfound);
1085 do {
1086 my $wait;
1087 my $now = time;
1088 my $adjustpenalty = sub {
1089 if ($penaltytime < $now) {
1090 my $credit = $now - $penaltytime;
1091 $penalty = $penalty > $credit ? $penalty - $credit : 0;
1092 $penaltytime = $now;
1095 if (defined($nextstatus) && $now >= $nextstatus) {
1096 unless ($idlestatus && !$children && (!$idleintv || $now - $idlestatus < $idleintv)) {
1097 my $statmsg = "STATUS: $children active";
1098 my @running = ();
1099 if ($children) {
1100 my @stats = ();
1101 my $cnt = 0;
1102 foreach my $cls (sort(Throttle::GetClassList())) {
1103 my $inf = Throttle::GetClassInfo($cls);
1104 if ($inf->{'total'}) {
1105 $cnt += $inf->{'total'};
1106 push(@stats, substr(lc($cls),0,1)."=".
1107 $inf->{'total'}.'/'.$inf->{'active'});
1110 push(@stats, "?=".($children-$cnt)) if @stats && $cnt < $children;
1111 $statmsg .= " (".join(" ",@stats).")" if @stats;
1112 foreach (Throttle::GetRunningPids()) {
1113 my ($cls, $ts, $desc) = Throttle::GetPidInfo($_);
1114 next unless $ts;
1115 push(@running, "[${cls}::$desc] ".duration($now-$ts));
1118 my $idlesecs;
1119 $statmsg .= ", idle " . duration($idlesecs)
1120 if !$children && ($idlesecs = $now - $idlestart) >= 2;
1121 statmsg $statmsg;
1122 statmsg "STATUS: currently running: ".join(", ", @running)
1123 if @running;
1124 $idlestatus = $now if !$children;
1126 $nextstatus += $statusintv while $nextstatus <= $now;
1128 $nextwakeup += 60, $now = time while ($wait = $nextwakeup - $now) <= 0;
1129 $wait = _min($wait, (Throttle::ServiceQueue()||60));
1130 &$adjustpenalty; # this prevents ignoring accept when we shouldn't
1131 my $fdset;
1132 if ($penalty <= $maxspawn) {
1133 $fdset = $fdset_both;
1134 } else {
1135 $fdset = $fdset_pipe;
1136 $wait = $penalty - $maxspawn if $wait > $penalty - $maxspawn;
1138 $nfound = select($rout=$fdset, undef, $eout=$fdset, $wait);
1139 logmsg("select failed: $!"), exit(1) unless $nfound >= 0 || $!{EINTR} || $!{EAGAIN};
1140 my $reaped;
1141 Throttle::RemoveSupplicant($reaped) while ($reaped = shift(@reapedpids));
1142 $now = time;
1143 &$adjustpenalty; # this prevents banking credits for elapsed time
1144 if ($idle_timeout && !$children && !$nfound && $now - $idlestart >= $idle_timeout) {
1145 statmsg "idle timeout (@{[duration($idle_timeout)]}) exceeded now exiting";
1146 exit 0;
1148 } while $nfound < 1;
1149 my $reout = $rout | $eout;
1150 if (vec($reout, fileno($piperead), 1)) {{
1151 my $nloff = -1;
1153 my $bytes;
1154 do {$bytes = sysread($piperead, $pipebuff, 512, length($pipebuff))}
1155 while (!defined($bytes) && $!{EINTR});
1156 last if !defined($bytes) && $!{EAGAIN};
1157 die "sysread failed: $!" unless defined $bytes;
1158 # since we always keep a copy of $pipewrite open EOF is fatal
1159 die "sysread returned EOF on pipe read" unless $bytes;
1160 $nloff = index($pipebuff, "\n", 0);
1161 if ($nloff < 0 && length($pipebuff) >= 512) {
1162 $pipebuff = '';
1163 print STDERR "discarding 512 bytes of control pipe data with no \\n found\n";
1165 redo unless $nloff >= 0;
1167 last unless $nloff >= 0;
1168 do {
1169 my $msg = substr($pipebuff, 0, $nloff);
1170 substr($pipebuff, 0, $nloff + 1) = '';
1171 $nloff = index($pipebuff, "\n", 0);
1172 process_pipe_msg($msg) if length($msg);
1173 } while $nloff >= 0;
1174 redo;
1176 next unless vec($reout, fileno(Server), 1);
1177 unless (accept(Client, Server)) {
1178 logmsg "accept failed: $!" unless $!{EINTR};
1179 next;
1181 logmsg "connection on $NAME";
1182 ++$penalty;
1183 spawn sub {
1184 my $inp = <STDIN>;
1185 $inp = <STDIN> if defined($inp) && $inp eq "\n";
1186 chomp $inp if defined($inp);
1187 $inp or exit 0; # ignore empty connects
1188 my ($cmd, $arg) = $inp =~ /^([a-zA-Z][a-zA-Z0-9._+-]*)(?:\s+(.*))?$/;
1189 defined($arg) or $arg = '';
1190 if ($cmd eq 'ref-changes') {
1191 ref_changes($arg);
1192 } elsif ($cmd eq 'clone') {
1193 clone($arg);
1194 } elsif ($cmd eq 'ref-change') {
1195 ref_change($arg);
1196 } elsif ($cmd eq 'throttle') {
1197 throttle($arg);
1198 } else {
1199 die "ignoring unknown command: $cmd\n";
1202 close Client;
1206 ## -------------
1207 ## Documentation
1208 ## -------------
1211 __END__
1213 =head1 NAME
1215 taskd.pl - Perform Girocco service tasks
1217 =head1 SYNOPSIS
1219 taskd.pl [options]
1221 Options:
1222 -h | --help detailed instructions
1223 -q | --quiet run quietly
1224 --no-quiet do not run quietly
1225 -P | --progress show occasional status updates
1226 -i | --inetd run as inetd unix stream wait service
1227 implies --quiet --syslog
1228 -t SECONDS | --idle-timeout=SECONDS how long to wait idle before exiting
1229 requires --inetd
1230 -s | --syslog[=facility] send messages to syslog instead of
1231 stderr but see --stderr
1232 enabled by --inetd
1233 --no-syslog do not send message to syslog
1234 --stderr always send messages to stderr too
1235 --abbrev=n abbreviate hashes to n (default is 8)
1236 --show-fast-forward-info show fast-forward info (default is on)
1237 --no-show-fast-forward-info disable showing fast-forward info
1238 --status-interval=MINUTES status update interval (default 1)
1239 --idle-status-interval=IDLEMINUTES idle status interval (default 60)
1241 =head1 OPTIONS
1243 =over 8
1245 =item B<--help>
1247 Print the full description of taskd.pl's options.
1249 =item B<--quiet>
1251 Suppress non-error messages, e.g. for use when running this task as an inetd
1252 service. Enabled by default by --inetd.
1254 =item B<--no-quiet>
1256 Enable non-error messages. When running in --inetd mode these messages are
1257 sent to STDERR instead of STDOUT.
1259 =item B<--progress>
1261 Show information about the current status of the task operation occasionally.
1262 This is automatically enabled if --quiet is not given.
1264 =item B<--inetd>
1266 Run as an inetd wait service. File descriptor 0 must be an unconnected unix
1267 stream socket ready to have accept called on it. To be useful, the unix socket
1268 should be located at "$Girocco::Config::chroot/etc/taskd.socket". A warning
1269 will be issued if the socket is not in the expected location. Socket file
1270 permissions will be adjusted if necessary and if they cannot be taskd.pl will
1271 die. The --inetd option also enables the --quiet and --syslog options but
1272 --no-quiet and --no-syslog may be used to alter that.
1274 The correct specification for the inetd socket is a "unix" protocol "stream"
1275 socket in "wait" mode with user and group writable permissions (0660). An
1276 attempt will be made to alter the socket's file mode if needed and if that
1277 cannot be accomplished taskd.pl will die.
1279 Although most inetd stream services run in nowait mode, taskd.pl MUST be run
1280 in wait mode and will die if the passed in socket is already connected.
1282 Note that while *BSD's inetd happily supports unix sockets (and so does
1283 Darwin's launchd), neither xinetd nor GNU's inetd supports unix sockets.
1284 However, systemd does seem to.
1286 =item B<--idle-timeout=SECONDS>
1288 Only permitted when running in --inetd mode. After SECONDS of inactivity
1289 (i.e. all outstanding tasks have completed and no new requests have come in)
1290 exit normally. The default is no timeout at all (a SECONDS value of 0).
1291 Note that it may actually take up to SECONDS+60 for the idle exit to occur.
1293 =item B<--syslog[=facility]>
1295 Normally error output is sent to STDERR. With this option it's sent to
1296 syslog instead. Note that when running in --inetd mode non-error output is
1297 also affected by this option as it's sent to STDERR in that case. If
1298 not specified, the default for facility is LOG_USER. Facility names are
1299 case-insensitive and the leading 'LOG_' is optional. Messages are logged
1300 with the LOG_NOTICE priority.
1302 =item B<--no-syslog>
1304 Send error message output to STDERR but not syslog.
1306 =item B<--stderr>
1308 Always send error message output to STDERR. If --syslog is in effect then
1309 a copy will also be sent to syslog. In --inetd mode this applies to non-error
1310 messages as well.
1312 =item B<--abbrev=n>
1314 Abbreviate displayed hash values to only the first n hexadecimal characters.
1315 The default is 8 characters. Set to 0 for no abbreviation at all.
1317 =item B<--show-fast-forward-info>
1319 Instead of showing ' -> ' in ref-change/ref-notify update messages, show either
1320 '..' for a fast-forward, creation or deletion or '...' for non-fast-forward.
1321 This requires running an extra git command for each ref update that is not a
1322 creation or deletion in order to determine whether or not it's a fast forward.
1324 =item B<--no-show-fast-forward-info>
1326 Disable showing of fast-forward information for ref-change/ref-notify update
1327 messages. Instead just show a ' -> ' indicator.
1329 =item B<--status-interval=MINUTES>
1331 If progress is enabled (with --progress or by default if no --inetd or --quiet)
1332 status updates are shown at each MINUTES interval. Setting the interval to 0
1333 disables them entirely even with --progress.
1335 =item B<--idle-status-interval=IDLEMINUTES>
1337 Two consecutive "idle" status updates with no intervening activity will not be
1338 shown unless IDLEMINUTES have elapsed between them. The default is 60 minutes.
1339 Setting the interval to 0 prevents any consecutive idle updates (with no
1340 activity between them) from appearing at all.
1342 =back
1344 =head1 DESCRIPTION
1346 taskd.pl is Girocco's service request servant; it listens for service requests
1347 such as new clone requests and ref update notifications and spawns a task to
1348 perform the requested action.
1350 =cut