summaryrefslogtreecommitdiff
path: root/dh_smf
blob: 42525ebdbeeb01314e4eb26567d0f34414fe957e (plain)
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
#!/usr/bin/perl -w

=head1 NAME

dh_smf - install SMF services into package build directories

=cut

use strict;
use Debian::Debhelper::Dh_Lib;
use File::Find;
use XML::Simple;
use Data::Dumper;    # debug

=head1 SYNOPSIS

B<dh_smf> [S<I<debhelper options>>] [B<--name=>I<name>] [B<-n>] [B<-R>] [B<-r>]

=head1 DESCRIPTION

B<dh_smf> is a debhelper program that is responsible for installing
SMF manifests and scripts with associated defaults files.

It also automatically generates the F<postinst> and F<postrm> and F<prerm>
commands needed to manage SMF services.

=head1 FILES

=over 4

=item debian/I<package>.smf/

If this directory exists, it is installed as lib/svc/ in the package
build directory.

=item debian/I<package>.default

If this exists, it is installed into etc/default/I<package> in the package
build directory.

=back

=head1 OPTIONS

=over 4

=item B<-n>, B<--noscripts>

Do not modify F<postinst>/F<postrm>/F<prerm> scripts.

=item B<-o>, B<--onlyscripts>

Only modify F<postinst>/F<postrm>/F<prerm> scripts, do not actually install
any files. May be useful if the file is shipped and/or installed by upstream
in a way that doesn't make it easy to let B<dh_smf> find it.

=item B<-R>, B<--restart-after-upgrade>

Do not stop the SMF service until after the package upgrade has been
completed. This is different than the default behavior, which stops the
service in the F<prerm>, and starts it again in the F<postinst>.

This can be useful for daemons that should not have a possibly long
downtime during upgrade. But you should make sure that the daemon will not
get confused by the package being upgraded while it's running before using
this option.

=item B<-r>, B<--no-restart-on-upgrade>

Do not stop the SMF service on upgrade.

=item B<--no-start>

Do not start the service on install or upgrade. Maybe useful if
installing display managers like lightdm or GDM.

=back

=head1 NOTES

Note that this command is not idempotent. L<dh_prep(1)> should be called
between invocations of this command. Otherwise, it may cause multiple
instances of the same text to be added to maintainer scripts.

=cut

# Same as pkgfile in /usr/share/perl5/Debian/Debhelper/Dh_Lib.pm,
# but -f => -d
sub pkgdir {
    my $package  = shift;
    my $filename = shift;

    if ( defined $dh{NAME} ) {
        $filename = "$dh{NAME}.$filename";
    }

    # First, check for files ending in buildarch and buildos.
    my $match;
    foreach my $file ( glob("debian/$package.$filename.*") ) {
        next if !-d $file;
        next if $dh{IGNORE} && exists $dh{IGNORE}->{$file};
        if ( $file eq "debian/$package.$filename." . buildarch() ) {
            $match = $file;

            # buildarch files are used in preference to buildos files.
            last;
        }
        elsif ( $file eq "debian/$package.$filename." . buildos() ) {
            $match = $file;
        }
    }
    return $match if defined $match;

    my @try = ("debian/$package.$filename");
    if ( $package eq $dh{MAINPACKAGE} ) {
        push @try, "debian/$filename";
    }

    foreach my $file (@try) {
        if ( -d $file
            && ( !$dh{IGNORE} || !exists $dh{IGNORE}->{$file} ) )
        {
            return $file;
        }

    }

    return "";
}

init(
    options => {
        "r"                       => \$dh{R_FLAG},
        "no-restart-on-upgrade"   => \$dh{R_FLAG},
        "no-start"                => \$dh{NO_START},
        "R|restart-after-upgrade" => \$dh{RESTART_AFTER_UPGRADE},
    }
);

foreach my $package ( @{ $dh{DOPACKAGES} } ) {
    my $tmp = tmpdir($package);

    # Copy manifests and methods into package directory
    my $smf = pkgdir( $package, 'smf' );
    if ( $smf ne '' && !$dh{'ONLYSCRIPTS'} ) {
        my $svcdir = "$tmp/lib/svc";
        if ( !-d "$svcdir" ) {
            doit( "install", "-d", "$svcdir" );
        }
        complex_doit("cp -a -v -f $smf/* $svcdir/");
    }

    # Get a list of all manifests in package
    my @manifests = ();
    find(
        {
            wanted => sub {
                -f $_ && /^.*\.xml\z/s && push @manifests, $File::Find::name;
            },
            no_chdir => 1,
        },
        "$tmp/lib/svc/manifest"
    );

    # TODO: validate XML?

    # Read all services from all manifests:
    my @services = ();
    foreach my $manifest (@manifests) {
        my $xml = XMLin( $manifest,
            ForceArray =>
              [qw/instance dependency exec_method propval property_group/] );

        my $service_base = $xml->{'service'}->{'name'};
        if ( exists $xml->{'service'}->{'create_default_instance'} ) {
            push @services,
              {
                'name' => "$service_base:default",
                'enabled' =>
                  $xml->{'service'}->{'create_default_instance'}->{'enabled'},
                'exec_method' => $xml->{'service'}->{'exec_method'},
                'duration' =>
                  $xml->{'service'}->{'property_group'}->{'startd'}->{'propval'}
                  ->{'duration'}->{'value'} // 'contract',
              };
        }
        if ( exists $xml->{'service'}->{'instance'} ) {
            while ( my ( $k, $v ) = each %{ $xml->{'service'}->{'instance'} } )
            {
                push @services,
                  {
                    'name'        => "$service_base:$k",
                    'enabled'     => $v->{'enabled'},
                    'exec_method' => $v->{'exec_method'}
                      // $xml->{'service'}->{'exec_method'},
                    'duration' =>
                      $v->{'property_group'}->{'startd'}->{'propval'}
                      ->{'duration'}->{'value'} // 'contract',
                  };
            }
        }
    }
    print Dumper(@services);    # debug

    if ( !$dh{NOSCRIPTS} ) {
        my @pkg_manifests = map { s!\Q$tmp\E/*!/!; $_ } @manifests;
        autoscript( $package, 'postinst', 'postinst-smf',
            "s|#MANIFESTS#|@pkg_manifests|" );
    }
}

=head1 SEE ALSO

L<debhelper(7)>, L<dh_installinit(1)>, L<smf(5)>, L<svccfg(1M)>

This program is a part of debhelper.

=head1 AUTHORS

Joey Hess <joeyh@debian.org> (dh_installinit)

Steve Langasek <steve.langasek@canonical.com>

Michael Stapelberg <stapelberg@debian.org>

Igor Pashev <pashev.igor@gmail.com>

=cut