source: ProjectBuilder/devel/pb/bin/pb@ 2177

Last change on this file since 2177 was 2177, checked in by Bruno Cornec, 7 years ago

Improved build procedure

build is now calling back prep first in order to speed up the debug of
packages dependencies, so with docker you don't have to prep before (which can
takes a lot of time) before using that result

  • Property svn:executable set to *
File size: 176.6 KB
Line 
1#!/usr/bin/perl -w
2#
3# Project Builder main application
4#
5# $Id$
6#
7# Copyright B. Cornec 2007-2016
8# Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard
9# Provided under the GPL v2
10
11# Syntax: see at end
12
13use strict 'vars';
14
15# The modules mentioned here are required by pb when used both
16# locally or inside a VE/VM/RM
17# Additional required modules only used locally are called with a require
18# in their respective section
19use Getopt::Long qw(:config auto_abbrev no_ignore_case);
20use Carp qw/confess cluck/;
21use Data::Dumper;
22use English;
23use File::Basename;
24use File::Copy;
25use File::stat;
26use File::Find;
27use Time::localtime qw(localtime);
28use POSIX qw(strftime);
29use lib qw (lib);
30use ProjectBuilder::Version;
31use ProjectBuilder::Base;
32use ProjectBuilder::Display;
33use ProjectBuilder::Conf;
34use ProjectBuilder::Distribution;
35use ProjectBuilder::VCS;
36use ProjectBuilder::CMS;
37use ProjectBuilder::Env;
38use ProjectBuilder::Filter;
39use ProjectBuilder::Changelog;
40use ProjectBuilder::VE;
41
42# Global variables
43$Global::pb_stop_on_error = 0; # False by default
44$Global::pb_show_sudo = 0; # False by default
45
46my %opts; # CLI Options
47my $action; # action to realize
48my $test = "FALSE"; # Not used
49my $pbforce = 0; # Force VM stop
50my $pbsnap = 0; # Do not use snapshot mode for VM/VE by default
51my $pbkeep = 0; # keep temporary directory at the end
52my $option = ""; # Not used
53my @pkgs; # list of packages
54my $pbtag; # Global Tag variable
55my $pbver; # Global Version variable
56my %pbscript; # Name of the scripts per V
57my $pbrev; # Global REVISION variable
58my $pbtarget = undef; # Target os-ver-arch you want to build for
59my $pbport; # Port to use to connect to the VM/RM
60my $newver; # New version to create
61my $pbimage = undef; # ISO image for the VM to create or docker image for the VE
62my $vetype = undef; # Type of Virtual environment to deal with
63
64my @date = pb_get_date();
65my $pbdate = strftime("%Y-%m-%d", @date);
66
67=pod
68
69=head1 NAME
70
71pb, aka project-builder.org - builds packages for your projects
72
73=head1 DESCRIPTION
74
75pb helps you build various packages directly from your project sources.
76Those sources could be handled by a CMS (Configuration Management System)
77such as Subversion, CVS, Git, Mercurial... or being a simple reference to a compressed tar file.
78It's based on a set of configuration files, a set of provided macros to help
79you keeping build files as generic as possible. For example, a single .spec
80file should be required to generate for all rpm based distributions, even
81if you could also have multiple .spec files if required.
82
83=head1 SYNOPSIS
84
85pb [-vhSq][-r pbroot][-p project][[-s script -a account -P port][-T VEtype][-t [os-ver-arch]][-m os-ver-arch[,...]]][-g][-i image] <action> [<pkg1> ...]
86
87pb [--verbose][--help][--man][--quiet][--snapshot][--revision pbroot][--project project][[--script script --account account --port port][-T VEtype][--target [os-ver-arch]][--machine os-ver-arch[,...]]][--nographic][--image image][--rebuild] <action> [<pkg1> ...]
88
89=head1 OPTIONS
90
91=over 4
92
93=item B<-v|--verbose>
94
95Increase verbosity
96
97=item B<-q|--quiet>
98
99Do not print any output.
100
101=item B<-h|--help>
102
103Print a brief help message and exits.
104
105=item B<-S|--snapshot>
106
107Use the snapshot mode of VMs or VEs
108
109=item B<--man>
110
111Prints the manual page and exits.
112
113=item B<-t|--target os-ver-arch>
114
115Name of the target system you want to build for.
116All if none precised.
117
118=item B<-m|--machine os-ver-arch[,os-ver-arch,...]>
119
120Name of the Virtual Machines (VM), Virtual Environments (VE) or Remote Machines (RM)
121you want to build on (comma separated).
122All if none precised (or use the env variable PBV).
123
124=item B<-T|--vetype VEtype]>
125
126Type of Virtual Environments (VE)
127Can be chroot or docker.
128
129=item B<-s|--script script>
130
131Name of the script you want to execute on the related VMs/VEs/RMs.
132
133=item B<-g|--nographic>
134
135Do not launch VMs in graphical mode.
136
137=item B<-i|--image image>
138
139It could be either:
140- The name of the ISO image of the distribution you want to install on the related VMs
141- The name of the docker image of the distribution you want to install on the related VEs
142
143
144=item B<-a|--account account>
145
146Name of the account to use to connect on the related VMs/RMs.
147
148=item B<-P|--port port_number>
149
150Port number to use to connect on the related VMs/RMs.";
151
152=item B<-p|--project project_name>
153
154Name of the project you're working on (or use the env variable PBPROJ)
155
156=item B<-r|--revision revision>
157
158Path Name of the project revision under the CMS (or use the env variable PBROOT)
159
160=item B<-V|--version new_version>
161
162New version of the project to create based on the current one.
163
164=item B<-k|--keep>
165
166Keep the temporary dir where files have been created in or der to help debug
167
168=item B<--rebuild>
169
170Only valid with the checkssh action, it alllows to automatically relaunch the build of the failed packages
171
172=item B<--no-stop-on-error>
173
174Continue through errors with best effort.
175
176=back
177
178=head1 ARGUMENTS
179
180<action> can be:
181
182=over 4
183
184=item B<sbx2build>
185
186Create tar files for the project under your CMS.
187Current state of the exported content is taken.
188CMS supported are SVN, SVK, CVS, Git and Mercurial
189parameters are packages to build
190if not using default list
191
192=item B<cms2build>
193
194Create tar files for the project under your CMS.
195Current state of the CMS is taken.
196CMS supported are SVN, SVK, CVS, Git and Mercurial
197parameters are packages to build
198if not using default list
199
200=item B<build2prep>
201
202Prepare the environment for build by installing required dependencies. Done once on the build system.
203
204=item B<build2pkg>
205
206Create packages for your running distribution
207
208=item B<cms2pkg>
209
210cms2build + build2pkg
211
212=item B<sbx2pkg>
213
214sbx2build + build2pkg
215
216=item B<sbx2pkg2ins>
217
218sbx2pkg + final install of packages
219
220=item B<build2ssh>
221
222Send the tar files to a SSH host
223
224=item B<sbx2ssh>
225
226sbx2build + build2ssh
227
228=item B<cms2ssh>
229
230cms2build + build2ssh
231
232=item B<pkg2ssh>
233
234Send the packages built to a SSH host
235
236=item B<build2vm>
237
238Create packages in VMs, launching them if needed
239and send those packages to a SSH host once built
240VM type supported are QEMU and KVM
241
242=item B<build2ve>
243
244Create packages in VEs, creating it if needed
245and send those packages to a SSH host once built
246
247=item B<build2rm>
248
249Create packages in RMs, which should pre-exist,
250and send those packages to a SSH host once built
251RM means Remote Machine, and could be a physical or Virtual one.
252This is one buildfarm integration for pb.
253
254=item B<prepvm>
255
256Prepare the VMs to have all requirements to build the project
257
258=item B<prepve>
259
260Prepare the VEs to have all requirements to build the project
261
262=item B<preprm>
263
264Prepare the RMs to have all requirements to build the project
265
266=item B<sbx2vm>
267
268sbx2build + build2vm
269
270=item B<sbx2ve>
271
272sbx2build + build2ve
273
274=item B<sbx2docker>
275
276sbx2build + build2ve with a potential build of all necessary docker containers to perform it
277
278=item B<sbx2rm>
279
280sbx2build + build2rm
281
282=item B<cms2vm>
283
284cms2build + build2vm
285
286=item B<cms2ve>
287
288cms2build + build2ve
289
290=item B<cms2rm>
291
292cms2build + build2rm
293
294=item B<launchvm>
295
296Launch one virtual machine
297
298=item B<launchve>
299
300Launch one virtual environment
301
302=item B<script2vm>
303
304Launch one virtual machine if needed
305and executes a script on it
306
307=item B<script2ve>
308
309Execute a script in a virtual environment
310
311=item B<script2rm>
312
313Execute a script on a remote machine
314
315=item B<newvm>
316
317Create a new virtual machine
318
319=item B<newve>
320
321Create a new virtual environment
322
323=item B<setupvm>
324
325Setup a virtual machine for pb usage
326
327=item B<setupve>
328
329Setup a virtual environment for pb usage
330
331=item B<setuprm>
332
333Setup a remote machine for pb usage
334
335=item B<sbx2setupvm>
336
337Setup a virtual machine for pb usage using the sandbox version of pb instead of the latest stable
338Reserved to dev team.
339
340=item B<sbx2setupve>
341
342Setup a virtual environment for pb usage using the sandbox version of pb instead of the latest stable
343Reserved to dev team.
344
345=item B<sbx2setuprm>
346
347Setup a remote machine for pb usage using the sandbox version of pb instead of the latest stable
348Reserved to dev team.
349
350=item B<build2setupvm>
351
352Setup a virtual machine for pb usage using the build available
353Reserved to dev team.
354
355=item B<build2setupve>
356
357Setup a virtual environment for pb usage using the build available
358Reserved to dev team.
359
360=item B<build2setuprm>
361
362Setup a remote machine for pb usage using the build available
363Reserved to dev team.
364
365=item B<snapvm>
366
367Snapshot a virtual machine for pb usage
368
369=item B<snapve>
370
371Snapshot a virtual environment for pb usage
372
373=item B<updatevm>
374
375Update the distribution in the virtual machine
376
377=item B<updateve>
378
379Update the distribution in the virtual environment
380
381=item B<updaterm>
382
383Update the distribution in the remote machine
384
385=item B<test2pkg>
386
387Test a package locally
388
389=item B<test2vm>
390
391Test a package in a virtual machine
392
393=item B<test2ve>
394
395Test a package in a virtual environment
396
397=item B<test2rm>
398
399Test a package in a remote machine
400
401=item B<checkssh>
402
403Check the delivery of the packages on the repository
404
405=item B<checkps>
406
407Check the process running the VM concerned
408
409=item B<newver>
410
411Create a new version of the project derived
412from the current one
413
414=item B<newproj>
415
416Create a new project and a template set of
417configuration files under pbconf
418
419=item B<announce>
420
421Announce the availability of the project through various means
422
423=item B<sbx2webssh>
424
425Create tar files for the website under your CMS.
426Current state of the exported content is taken.
427Deliver the content to the target server using ssh from the exported dir.
428
429=item B<cms2webssh>
430
431Create tar files for the website from your CMS.
432Deliver the content to the target server using ssh from the DVCS.
433
434=item B<sbx2webpkg>
435
436Create tar files for the website under your CMS.
437Current state of the exported content is taken.
438
439=item B<cms2webpkg>
440
441Create tar files for the website under your CMS.
442
443=item B<getconf>
444
445Print the full configuration parameters as found in the various configuration files. Help to debug conf issues.
446Also accepts a parameter to display only this value, and a VM/VE/RM
447
448=item B<getvar>
449
450Print the full variables expanded based on the distrubution tuple. Help to debug conf issues.
451Also accepts a parameter to display only the values for this package, and a VM/VE/RM
452
453=item B<clean>
454
455Purge the build and delivery directories related to the current project
456
457=item B<cleanssh>
458
459Purge the ssh server of its packages (only for testver and test packages)
460
461=back
462
463<pkgs> can be a list of packages, the keyword 'all' or nothing, in which case the default list of packages is taken (corresponding to the defpkgdir list of arguments in the configuration file).
464
465=head1 WEB SITES
466
467The main Web site of the project is available at L<http://www.project-builder.org/>. Bug reports should be filled using the trac instance of the project at L<http://trac.project-builder.org/>.
468
469=head1 USER MAILING LIST
470
471None exists for the moment.
472
473=head1 ENVIRONMENT VARIABLES
474
475=item B<PBACCOUNT>
476
477Login to use to connect to the VM/RM, undef by default
478
479=back
480
481=head1 CONFIGURATION FILES
482
483Each pb user may have a configuration in F<$HOME/.pbrc>. The values in this file may overwrite any other configuration file value.
484
485Here is an example of such a configuration file:
486
487 #
488 # Define for each project the URL of its pbconf repository
489 # No default option allowed here as they need to be all different
490 #
491 # URL of the pbconf content
492 # This is the format of a classical URL with the extension of additional schema such as
493 # svn+ssh, cvs+ssh, ...
494 #
495 pbconfurl linuxcoe = cvs+ssh://:ext:bcornec@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe/pbconf
496
497 # This is normaly defined in the project's configuration file
498 # Url of the project
499 #
500 pburl linuxcoe = cvs+ssh://:ext:bcornec@linuxcoe.cvs.sourceforge.net:/cvsroot/linuxcoe
501
502 # All these URLs needs to be defined here as the are the entry point
503 # for how to build packages for the project
504 #
505 pbconfurl pb = svn+ssh://svn.project-builder.org/mondo/svn/pb/pbconf
506 pbconfurl mondorescue = svn+ssh://svn.project-builder.org/mondo/svn/project-builder/mondorescue/pbconf
507 pbconfurl collectl = svn+ssh://bruno@svn.mondorescue.org/mondo/svn/project-builder/collectl/pbconf
508 pbconfurl netperf = svn+ssh://svn.mondorescue.org/mondo/svn/project-builder/netperf/pbconf
509
510 # Under that dir will take place everything related to pb
511 # If you want to use VMs/chroot/..., then use $ENV{'HOME'} to make it portable
512 # to your VMs/chroot/...
513 # if not defined then /var/cache
514 pbdefdir default = $ENV{'HOME'}/project-builder
515 pbdefdir pb = $ENV{'HOME'}
516 pbdefdir linuxcoe = $ENV{'HOME'}/LinuxCOE/cvs
517 pbdefdir mondorescue = $ENV{'HOME'}/mondo/svn
518
519 # pbconfdir points to the directory where the CMS content of the pbconfurl is checked out
520 # If not defined, pbconfdir is under pbdefdir/pbproj/pbconf
521 pbconfdir linuxcoe = $ENV{'HOME'}/LinuxCOE/cvs/pbconf
522 pbconfdir mondorescue = $ENV{'HOME'}/mondo/svn/pbconf
523
524 # pbdir points to the directory where the CMS content of the pburl is checked out
525 # If not defined, pbdir is under pbdefdir/pbproj
526 # Only defined if we have access to the dev of the project
527 pbdir linuxcoe = $ENV{'HOME'}/LinuxCOE/cvs
528 pbdir mondorescue = $ENV{'HOME'}/mondo/svn
529
530 # -daemonize doesn't work with qemu 0.8.2
531 vmopt default = -m 384
532
533=head1 COMMAND DETAILS
534
535=head2 newproj
536
537The newproj command creates a new project-builder project. To run this command you first need to define two variables in your ~/.pbrc file:
538
539 pbconfurl I<project> = file:///home/anderse/.git/project-builder-config/I<project>
540 pbdefdir default = $ENV{HOME}/cache-project-builder
541
542The first line defines the version controlled configuration information and the second defines the root directory for project-builder to use.
543
544You can then run the command:
545
546 % pb -p I<$project> -r I<$version> newproj I<$pkg>
547
548to create the new project. Running the newproj command will then generate the file $pbdefdir/$project/pbconf/$version/$project.pb, and the directory $pbdefdir/$project/pbconf/$version/$pkg. You will need to edit those files to make the later commands work.
549
550=head2 cms2build
551
552The cms2build command takes your files from the content management system and makes the two tar files that are necessary for building files. You need to have run the newproj command first. Then there are several steps for running this command:
553
554=over 4
555
556=item Update your $project.pb configuration file.
557
558You need to set the pburl, pbrepo, pbwf, pbpackager, projver, projtag, testver, delivery, and defpkgdir lines as described in the configuration file. The pburl entry is used to find the source for your package. The pbrepo entry is used to build the .repo or .sources.list files for use by downloaders of the package. The pbwf entry indicates that the source tar file is named by I<package-name>-I<version>. The pbpackager entry will be stored in the packages and should be you or your team. The projver/projtag entries indicate the version of the software and the version of the packaging scripts. The testver entry when true indicates that the package is in a test version, so no log file is computed (can be long), and version is made up using a timstamp. The delivery entry gives the subdirectory under which the packages will be delivered on the repository, and the defpkgdir entry corresponds to the local subdirectory hosting the package content.
559
560For example:
561
562 pburl Lintel = file:///home/anderse/projects/Lintel-0.2012.02.28.tar.gz
563 pbrepo Lintel = http://tesla.hpl.hp.com/opensource
564 pbwf Lintel = 1
565 pbpackager Lintel = Eric Anderson <eric.anderson4@hp.com>
566 projver Lintel = 0.2012.02.28
567 projtag Lintel = 1
568 testver Lintel = false
569 delivery Lintel = production
570 defpkgdir Lintel = Lintel-0.2012.02.28
571
572=item Create the build .tar.gz files:
573
574Then you need to take those files and create the initial tar files. Run a command like:
575
576 % pb -p $project -r $version cms2build
577
578To create the $pbdefdir/$project/pbdelivery/$project-$version.{,pbconf}.tar.gz files, the $version-$projtag.pb and pbrc files in the same directory.
579
580=back
581
582=head2 build2pkg
583
584The build2pkg command takes the tar files created in the cms2build step and attempts to build binary packages for your current operating system. There are two steps:
585
586=over 4
587
588=item Update your filters and build files.
589
590You probably need to edit the files describing the build steps in one of the $pbdefdir/$project/pbconf/$version/$project/{deb,rpm,pkg} directories and the filters in $pbdefdir/$project/pbconf/$version/pbfilter. Note that you can define additional filters and transforms in the *.pbf files. The build files will be filtered by the filters defined in the *.pbf files to generate the inputs to the build step. Therefore, if you change those files, you need to re-run the cms2build step.
591
592=item Build the package.
593
594Then you can run a command like:
595
596 % pb -p $project -r $version build2pkg
597
598To create the files in $project/pbbuild that comprise your binary package(s).
599
600=back
601
602=head2 newve
603
604The newve command creates a new virtual environment, i.e. a chrooted OS for building packages. Using a virtual environment is an efficient way to build packages on a related set of operating systems. The OS's have to be related because the kernel will be shared. Steps:
605
606=over 4
607
608=item Update ~/.pbrc
609
610Update your ~/.pbrc file to specify the vepath, velist, velogin, and vetype variables, e.g.:
611
612 vepath default = $ENV{HOME}/cache-project-builder/chroot
613 velist default = debian-6.0-i386
614 velogin default = pb
615 vetype default = chroot
616
617If you are building for rpm style OS's, update the verpmtype option, and install the appropriate tool.
618
619 verpmtype default = rpmbootstrap
620
621You may also choose to specify a mirror for the OS packages, and optionally http/ftp proxies. You can specify the proxies either through environment variables ($http_proxy/$ftp_proxy) or in the configuration file. The configuration file will be used if no corresponding environment variable has been set. For example, for debian and with a local squid proxy:
622
623 rbsmirrorsrv debian = http://mirrors1.kernel.org/debian/
624 http_proxy default = http://localhost:3128/
625 ftp_proxy default = http://localhost:3128/
626
627=item Run the cms2build command
628
629If you have deleted your $package/pbdelivery directory, re-run the cms2build command as in the earlier step. This step is necessary to generate the I<package>/pbdelivery/pbrc file.
630
631=item Create the new virtual environment
632
633Initialize the new operating system. This step will install the core OS packages for the virtual environment, e.g.:
634
635 % pb -v -p $project -m debian-6.0-i386 newve
636
637=back
638
639=head2 setupve
640
641The setupve command prepares a virtual environment for use by project builder. In particular it installs project-builder from the packages into the virtual environment. Two sub-steps are necessary:
642
643=over 4
644
645=item Update $project.pb
646
647You need to have a sshhost entry for setupve to work, so add one, even an invalid one, e.g.:
648
649 sshhost $project = foo.example.org
650
651=item Setup the virtual environment
652
653 % pb -v -p $project -m debian-6.0-i386 setupve
654
655If you prefer to install the current SVN version of project builder, you can substitute the setupve option by the sbx2setupv one.
656
657=back
658
659=head2 build2ve
660
661The build2ve command is similar to the build2pkg command in that it will take the sources created by cms2build and turn them into binary packages. The command has two differences. First, it creates the packages in a virtual environment, i.e. the one made by an earlier setupve setup. Second it copies the resulting packages to a repository and builds the repository meta-data needed.
662
663Three sub-steps are needed:
664
665=over 4
666
667=item Update $project.pb
668
669You need to have a valid sshdir and sshhost entry for build2ve to work, so add them. Note that you need to be able to ssh from the host you run the command on to the repository host, preferably without needing to type in a password, so using ssh-agent or having a special passwordless project-builder ssh key will make this step easier.
670
671 sshhost $project = localhost
672 sshdir $project = $home/cache-project-builder/repos
673
674You may also need to specify additional repository files to use or rpms to install. Note the URL for repositories is not the URL of the repository, but the URL of a file that can be put in the yum.repos.d or apt.sources.d directory.
675
676 addrepo centos-5-i386 = http://localhost/pb/centos-extras.repo,http://mirror.centos.org/centos/5/extras/i386/RPMS/chrpath-0.13-3.el5.centos.i386.rpm
677
678=item Update your filters and build files
679
680You may need to update your filter files (*.pbf) as in the build2pkg step if you are building for a new OS or architecture.
681
682=item Build the packages and copy them to the repository
683
684 % pb -v -p $project -m debian-6.0-i386 build2ve
685
686=back
687
688*Debugging:* If the build fails (and you did not specify the --no-stop-on-error) option, then the virtual environment and scripts should still be present and configured to build the package. You can run a command like 'sudo setarch i386 chroot $path bash' in order to get into the environment. In your log you should see a command like that. From there you can go into the /home/pb directory as the pb user and run the same style of pb commands as you did when doing build2pkg. This will help you figure out what has gone wrong in the build in the virtual environment.
689
690=head1 AUTHORS
691
692The Project-Builder.org team L<http://trac.project-builder.org/> lead by Bruno Cornec L<mailto:bruno@project-builder.org>.
693
694=head1 COPYRIGHT
695
696Project-Builder.org is distributed under the GPL v2.0 license
697described in the file C<COPYING> included with the distribution.
698
699=cut
700
701# ---------------------------------------------------------------------------
702
703my ($projectbuilderver,$projectbuilderrev) = pb_version_init();
704my $appname = "pb";
705
706# Initialize the syntax string
707
708pb_syntax_init("$appname (aka project-builder.org) Version $projectbuilderver-$projectbuilderrev\n");
709
710GetOptions("help|?|h+" => \$opts{'h'},
711 "account|a=s" => \$opts{'a'},
712 "force|f" => \$opts{'f'},
713 "nographic|g" => \$opts{'g'},
714 "image|i=s" => \$opts{'i'},
715 "log-files|l=s" => \$opts{'l'},
716 "machines|mock|m=s" => \$opts{'m'},
717 "man" => \$opts{'man'},
718 "port|P=i" => \$opts{'P'},
719 "project|p=s" => \$opts{'p'},
720 "quiet|q" => \$opts{'q'},
721 "revision|r=s" => \$opts{'r'},
722 "rebuild" => \$opts{'rebuild'},
723 "snapshot|S" => \$opts{'S'},
724 "script|s=s" => \$opts{'s'},
725 "type|T:s" => \$opts{'T'},
726 "target|t:s" => \$opts{'t'},
727 "version|V=s" => \$opts{'V'},
728 "verbose|v+" => \$opts{'v'},
729 "keep|k" => \$opts{'k'},
730 "stop-on-error!" => \$Global::pb_stop_on_error,
731) || pb_syntax(-1,0);
732
733if (defined $opts{'l'}) {
734 open(pbLOG,"> $opts{'l'}") || die "Unable to log to $opts{'l'}: $!";
735 $pbLOG = \*pbLOG;
736 $pbdebug = 0 if ($pbdebug == -1);
737 }
738pb_log_init($pbdebug, $pbLOG);
739
740if (defined $opts{'h'}) {
741 pb_syntax(0,1);
742}
743if (defined $opts{'man'}) {
744 pb_syntax(0,2);
745}
746if (defined $opts{'v'}) {
747 $pbdebug = $opts{'v'};
748}
749if (defined $opts{'f'}) {
750 $pbforce=1;
751}
752if (defined $opts{'q'}) {
753 $pbdebug=-1;
754}
755if (defined $opts{'S'}) {
756 $pbsnap=1;
757}
758if (defined $opts{'k'}) {
759 $pbkeep=1;
760}
761pb_display_init("text","");
762
763# Handle root of the project if defined
764if (defined $opts{'r'}) {
765 $ENV{'PBROOTDIR'} = $opts{'r'};
766}
767# Handle virtual machines if any
768if (defined $opts{'m'}) {
769 $ENV{'PBV'} = $opts{'m'};
770}
771if (defined $opts{'s'}) {
772 $pbscript{'default'} = $opts{'s'};
773 die "option -s requires a script having a full path name" if ($pbscript{'default'} !~ /^\//);
774}
775if (defined $opts{'a'}) {
776 $ENV{'PBACCOUNT'} = $opts{'a'};
777 die "option -a requires a -s script option" if (not defined $pbscript{'default'});
778}
779if (defined $opts{'P'}) {
780 $pbport = $opts{'P'};
781}
782if (defined $opts{'V'}) {
783 $newver = $opts{'V'};
784}
785if (defined $opts{'i'}) {
786 $pbimage = $opts{'i'};
787}
788if (defined $opts{'t'}) {
789 $pbtarget = $opts{'t'};
790}
791if (defined $opts{'T'}) {
792 $vetype = $opts{'T'};
793}
794
795# Get Action
796$action = shift @ARGV;
797die pb_syntax(-1,1) if (not defined $action);
798
799my ($filteredfiles, $supfiles, $defpkgdir, $extpkgdir);
800my $pbinit = undef;
801$pbinit = 1 if ($action =~ /^newproj$/);
802
803# Handles project name if any
804# And get global params
805($filteredfiles, $supfiles, $defpkgdir, $extpkgdir) = pb_env_init($opts{'p'},$pbinit,$action,$pbkeep);
806
807#
808# Check for command requirements
809#
810my ($req,$opt,$pbpara,$pbshowsudo,$pbstoponerr) = pb_conf_get_if("oscmd","oscmdopt","pbparallel","pbshowsudo","pbstoponerr");
811pb_check_requirements($req,$opt,$appname);
812
813$Global::pb_show_sudo = 1 if ((defined $pbshowsudo) && (defined $pbshowsudo->{$ENV{'PBPROJ'}}) && ($pbshowsudo->{$ENV{'PBPROJ'}} =~ /true/oi));
814$Global::pb_stop_on_error = 1 if ((defined $pbstoponerr) && (defined $pbstoponerr->{$ENV{'PBPROJ'}}) && ($pbstoponerr->{$ENV{'PBPROJ'}} =~ /true/oi));
815
816#
817# Check if we can launch some actions in // with Parallel::ForkManager
818#
819my $pbparallel = $pbpara->{$appname} if (defined $pbpara);
820if (not defined $pbparallel) {
821 eval
822 {
823 require Sys::CPU;
824 Sys::CPU->import();
825 };
826 if ($@) {
827 # Sys::CPU not found, defaulting to 1
828 pb_log(1,"ADVISE: Install Sys::CPU to benefit from automatic parallelism optimization.\nOr use pbparallel in your pb.conf file\nOnly 1 process at a time for the moment\n");
829 $pbparallel = 1;
830 } else {
831 # Using the number of cores
832 $pbparallel = Sys::CPU::cpu_count();
833 pb_log(1,"Using parallel mode with $pbparallel processes\n");
834 }
835}
836
837eval
838{
839 require Parallel::ForkManager;
840 Parallel::ForkManager->import();
841};
842# Parallel::ForkManager not found so no // actions
843if ($@) {
844 $pbparallel = undef;
845 pb_log(1,"ADVISE: Install Parallel::ForkManager to benefit from automatic parallelism optimization.\nOnly 1 process at a time for the moment\n");
846}
847
848pb_log(0,"Project: $ENV{'PBPROJ'}\n");
849pb_log(0,"Action: $action\n");
850
851my $do_install = undef;
852# Possibility to add a 2ins to some commands to launch automatic installation
853$do_install = 1 if ($action =~ /2ins$/);
854
855# Act depending on action
856if ($action =~ /^cms2build$/) {
857 pb_cms2build("CMS");
858} elsif ($action =~ /^sbx2build$/) {
859 pb_cms2build("SandBox");
860} elsif ($action =~ /^build2prep/) {
861 pb_build2prep();
862} elsif ($action =~ /^build2pkg/) {
863 pb_build2pkg($do_install);
864} elsif ($action =~ /^cms2pkg/) {
865 pb_cms2build("CMS");
866 pb_build2pkg($do_install);
867} elsif ($action =~ /^sbx2pkg/) {
868 pb_cms2build("SandBox");
869 pb_build2pkg($do_install);
870} elsif ($action =~ /^build2ssh$/) {
871 pb_build2ssh();
872} elsif ($action =~ /^cms2ssh$/) {
873 pb_cms2build("CMS");
874 pb_build2ssh();
875} elsif ($action =~ /^sbx2ssh$/) {
876 pb_cms2build("SandBox");
877 pb_build2ssh();
878} elsif ($action =~ /^pkg2ssh$/) {
879 pb_pkg2ssh();
880} elsif ($action =~ /^build2rm$/) {
881 pb_build2v("rm","build");
882} elsif ($action =~ /^build2ve$/) {
883 pb_build2v("ve","build");
884} elsif ($action =~ /^build2vm$/) {
885 pb_build2v("vm","build");
886} elsif ($action =~ /^sbx2preprm$/) {
887 pb_cms2build("SandBox");
888 pb_build2v("rm","prep");
889} elsif ($action =~ /^sbx2prepve$/) {
890 pb_cms2build("SandBox");
891 pb_build2v("ve","prep");
892} elsif ($action =~ /^sbx2prepvm$/) {
893 pb_cms2build("SandBox");
894 pb_build2v("vm","prep");
895} elsif ($action =~ /^preprm$/) {
896 pb_build2v("rm","prep");
897} elsif ($action =~ /^prepve$/) {
898 pb_build2v("ve","prep");
899} elsif ($action =~ /^prepvm$/) {
900 pb_build2v("vm","prep");
901} elsif ($action =~ /^cms2rm$/) {
902 pb_cms2build("CMS");
903 pb_build2v("rm","build");
904} elsif ($action =~ /^cms2ve$/) {
905 pb_cms2build("CMS");
906 pb_build2v("ve","build");
907} elsif ($action =~ /^sbx2rm$/) {
908 pb_cms2build("SandBox");
909 pb_build2v("rm","build");
910} elsif ($action =~ /^sbx2ve$/) {
911 pb_cms2build("SandBox");
912 pb_build2v("ve","build");
913} elsif ($action =~ /^cms2vm$/) {
914 pb_cms2build("CMS");
915 pb_build2v("vm","build");
916} elsif ($action =~ /^sbx2vm$/) {
917 pb_cms2build("SandBox");
918 pb_build2v("vm","build");
919} elsif ($action =~ /^launchvm$/) {
920 pb_parallel_launchv(undef,"vm",undef,3,$pbimage);
921} elsif ($action =~ /^launchve$/) {
922 pb_parallel_launchv(undef,"ve",undef,3,$pbimage);
923} elsif ($action =~ /^script2vm$/) {
924 die "action script2vm requires a -s script option" if (not defined $pbscript{'default'});
925 pb_script2v(\%pbscript,"vm");
926} elsif ($action =~ /^script2ve$/) {
927 die "action script2ve requires a -s script option" if (not defined $pbscript{'default'});
928 pb_script2v(\%pbscript,"ve");
929} elsif ($action =~ /^script2rm$/) {
930 die "action script2rm requires a -s script option" if (not defined $pbscript{'default'});
931 pb_script2v(\%pbscript,"rm");
932} elsif ($action =~ /^newver$/) {
933 pb_newver();
934} elsif ($action =~ /^sbx2docker$/) {
935 my $savproj = $ENV{'PBPROJ'};
936 my $pkg;
937 my @pkg;
938 if ($#ARGV == -1) {
939 $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
940 @pkgs = @$pkg;
941 } else {
942 @pkgs = @ARGV;
943 }
944 #pb_log(1,"Packages to print:".Dumper(@pkgs)."\n");
945
946 # Get the list of all VE we need to work on
947 my ($vm,$all);
948 if (not defined $ENV{'PBV'}) {
949 ($vm,$all) = pb_get2v("ve");
950 } else {
951 @$vm = split(/,/,$ENV{'PBV'});
952 }
953
954 # TODO: parallelize
955 foreach my $v (@$vm) {
956 my $done = 0;
957 my $pbos = pb_distro_get_context($v);
958 # Docker images are (for now !) regular and use distro:ver
959 $pbimage = "$pbos->{'name'}".":$pbos->{'version'}";
960 # the first steps needs to be done with the pb project
961 $ENV{'PBPROJ'} = $appname;
962 my $found = pb_ve_docker_get_image("$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}");
963 if (($pbforce == 1) || (not defined $found)) {
964 # pb -p pb -m distro-ver-arch newve -i distro:ver
965 pb_log(0,"Docker container $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'} not found, creating it\n");
966 pb_parallel_launchv(undef,"ve",undef,0,$pbimage);
967 }
968 $found = pb_ve_docker_get_image("$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-pb");
969 if (($pbforce == 1) || (not defined $found)) {
970 pb_log(0,"Docker container $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-pb not found, creating it\n");
971 # pb -p pb -m distro-ver-arch setupve
972 if ($savproj eq "pb") {
973 pb_cms2build("SandBox");
974 $done = 1;
975 pb_setup2v("ve","SandBox");
976 } else {
977 pb_setup2v("ve");
978 }
979 }
980 # Now back to our original project
981 $ENV{'PBPROJ'} = $savproj;
982 $found = pb_ve_docker_get_image("$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-pb-$ENV{'PBPROJ'}");
983 if (($pbforce == 1) || (not defined $found)) {
984 pb_log(0,"Docker container $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-pb-$ENV{'PBPROJ'} not found, creating it\n");
985 # pb -p pb -m distro-ver-arch prepve
986 if ($savproj eq "pb") {
987 pb_cms2build("SandBox");
988 $done = 1;
989 }
990 pb_build2v("ve","prep");
991 }
992 pb_log(0,"Instantiating a Docker container from $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-pb-$ENV{'PBPROJ'}\n");
993 if (($savproj ne "pb") || ($done == 0)) {
994 pb_cms2build("SandBox");
995 }
996 pb_build2v("ve","build");
997 }
998} elsif ($action =~ /^newve$/) {
999 pb_parallel_launchv(undef,"ve",undef,0,$pbimage);
1000} elsif ($action =~ /^newvm$/) {
1001 pb_parallel_launchv(undef,"vm",undef,0,$pbimage);
1002 pb_log(0, "Please ensure that sshd is running in your VM by default\n");
1003 pb_log(0, "and that it allows remote root login (PermitRootLogin yes in /etc/ssh/sshd_config)\n");
1004 pb_log(0, "Also ensure that network is up, firewalling correctly configured\n");
1005 pb_log(0, "and perl, Data::Dumper, tar, sudo, ntpdate and scp/ssh installed\n");
1006 pb_log(0, "You should then be able to login with ssh -p VMPORT root\@localhost (if VM started with pb)\n");
1007} elsif ($action =~ /^setuprm$/) {
1008 pb_setup2v("rm");
1009} elsif ($action =~ /^setupve$/) {
1010 pb_setup2v("ve");
1011} elsif ($action =~ /^setupvm$/) {
1012 pb_setup2v("vm");
1013} elsif ($action =~ /^sbx2setuprm$/) {
1014 die "This feature is limited to the pb project" if ($ENV{'PBPROJ'} ne $appname);
1015 pb_cms2build("SandBox");
1016 pb_setup2v("rm","SandBox");
1017} elsif ($action =~ /^sbx2setupve$/) {
1018 die "This feature is limited to the pb project" if ($ENV{'PBPROJ'} ne $appname);
1019 pb_cms2build("SandBox");
1020 pb_setup2v("ve","SandBox");
1021} elsif ($action =~ /^sbx2setupvm$/) {
1022 die "This feature is limited to the pb project" if ($ENV{'PBPROJ'} ne $appname);
1023 pb_cms2build("SandBox");
1024 pb_setup2v("vm","SandBox");
1025} elsif ($action =~ /^build2setuprm$/) {
1026 die "This feature is limited to the pb project" if ($ENV{'PBPROJ'} ne $appname);
1027 pb_setup2v("rm","SandBox");
1028} elsif ($action =~ /^build2setupve$/) {
1029 die "This feature is limited to the pb project" if ($ENV{'PBPROJ'} ne $appname);
1030 pb_setup2v("ve","SandBox");
1031} elsif ($action =~ /^build2setupvm$/) {
1032 die "This feature is limited to the pb project" if ($ENV{'PBPROJ'} ne $appname);
1033 pb_setup2v("vm","SandBox");
1034} elsif ($action =~ /^updaterm$/) {
1035 pb_update2v("rm");
1036} elsif ($action =~ /^updateve$/) {
1037 pb_update2v("ve");
1038} elsif ($action =~ /^updatevm$/) {
1039 pb_update2v("vm");
1040} elsif ($action =~ /^snapve$/) {
1041 pb_snap2v("ve");
1042} elsif ($action =~ /^snapvm$/) {
1043 pb_snap2v("vm");
1044} elsif ($action =~ /^test2pkg$/) {
1045 pb_test2pkg();
1046} elsif ($action =~ /^test2rm$/) {
1047 pb_build2v("rm","test");
1048} elsif ($action =~ /^test2ve$/) {
1049 pb_build2v("ve","test");
1050} elsif ($action =~ /^test2vm$/) {
1051 pb_build2v("vm","test");
1052} elsif ($action =~ /^newproj$/) {
1053 # Nothing to do - already done in pb_env_init
1054} elsif ($action =~ /^getconf$/) {
1055 my $pbos = pb_distro_get_context($ENV{'PBV'});
1056 pb_log(1,"Arguments to print:".Dumper(@ARGV)."\n");
1057 pb_distro_conf_print($pbos,@ARGV);
1058} elsif ($action =~ /^getvar$/) {
1059 my $pbos = pb_distro_get_context($ENV{'PBV'});
1060 my $pkg;
1061 my @pkg;
1062 if ($#ARGV == -1) {
1063 $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
1064 @pkgs = @$pkg;
1065 } else {
1066 @pkgs = @ARGV;
1067 }
1068 pb_log(1,"Packages to print:".Dumper(@pkgs)."\n");
1069 pb_filter_var_print($pbos,@pkgs);
1070} elsif ($action =~ /^clean$/) {
1071 pb_clean();
1072} elsif ($action =~ /^announce$/) {
1073 # For announce only. Require avoids the systematic load of these modules
1074 require DBI;
1075 require DBD::SQLite;
1076
1077 pb_announce("Announce");
1078} elsif ($action =~ /^cleanssh$/) {
1079 pb_announce("Clean");
1080} elsif ($action =~ /^checkssh$/) {
1081 pb_announce("Check");
1082} elsif ($action =~ /^checkps$/) {
1083 my ($ptr2) = pb_conf_get("vmcmd");
1084 my $vmcmd = $ptr2->{$ENV{'PBPROJ'}};
1085 my ($vexist,$vmmport) = pb_check_ps($vmcmd,$ENV{'PBV'});
1086 if (! $vexist) {
1087 pb_log(0,"No VM found for $ENV{'PBV'}\n");
1088 } else {
1089 pb_log(0,"Found an existing VM for $ENV{'PBV'} PID: $vexist - SSH port: $vmmport\n");
1090 }
1091} elsif ($action =~ /^sbx2webpkg$/) {
1092 require DBI;
1093 require DBD::SQLite;
1094
1095 pb_cms2build("SandBox","Web");
1096} elsif ($action =~ /^sbx2webssh$/) {
1097 require DBI;
1098 require DBD::SQLite;
1099
1100 pb_cms2build("SandBox","Web");
1101 pb_send2target("Web");
1102} elsif ($action =~ /^cms2webpkg$/) {
1103 require DBI;
1104 require DBD::SQLite;
1105
1106 pb_cms2build("CMS","Web");
1107} elsif ($action =~ /^cms2webssh$/) {
1108 require DBI;
1109 require DBD::SQLite;
1110
1111 pb_cms2build("CMS","Web");
1112 pb_send2target("Web");
1113} else {
1114 pb_log(0,"\'$action\' is not available\n");
1115 pb_syntax(-2,1);
1116}
1117
1118pb_exit();
1119
1120sub pb_cms2build {
1121
1122 my $param = shift;
1123 my $web = shift;
1124
1125 my $pkg;
1126 my @pkgs;
1127 my $webdir;
1128
1129 my %pkgs;
1130 my $pb; # Structure to store conf info
1131
1132 die "pb_cms2build requires a parameter: SandBox or CMS" if (not defined $param);
1133
1134 # If Website, then pkg is only the website
1135 if (defined $web) {
1136 ($webdir) = pb_conf_get("webdir");
1137 pb_log(2,"webdir: ".Dumper($webdir)."\n");
1138 $pkgs[0] = $webdir->{$ENV{'PBPROJ'}};
1139 $extpkgdir = $webdir;
1140 pb_log(0,"Package: $pkgs[0]\n");
1141 } else {
1142 $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
1143 @pkgs = @$pkg;
1144 }
1145
1146 my ($scheme, $uri) = pb_cms_init($pbinit,$param);
1147
1148 # We need 2 lines here
1149 my ($pkgv, $pkgt, $testver) = pb_conf_get_if("pkgver","pkgtag","testver");
1150
1151 # declare packager and repo for filtering
1152 my ($tmp1, $tmp2) = pb_conf_get("pbpackager","pbrepo");
1153 $ENV{'PBPACKAGER'} = $tmp1->{$ENV{'PBPROJ'}};
1154 $ENV{'PBREPO'} = $tmp2->{$ENV{'PBPROJ'}};
1155 my ($delivery) = pb_conf_get_if("delivery");
1156 $delivery->{$ENV{'PBPROJ'}} = "" if (not defined $delivery->{$ENV{'PBPROJ'}});
1157
1158 # If we deal with a test dir, we want to keep the date in tar file and dir name
1159 my $pbextdirpkg = "";
1160 my $pbextdir = "";
1161 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
1162 $pbextdirpkg = strftime("%Y%m%d%H%M%S", @date);
1163 $pbextdir = ".0.".$pbextdirpkg;
1164 }
1165
1166 foreach my $pbpkg (@pkgs) {
1167 $ENV{'PBPKG'} = $pbpkg;
1168 $pbrev = $ENV{'PBREVISION'};
1169
1170 if ((defined $pkgv) && (defined $pkgv->{$pbpkg})) {
1171 $pbver = $pkgv->{$pbpkg};
1172 } else {
1173 $pbver = $ENV{'PBPROJVER'};
1174 }
1175 # If it's a test version, then build a tag to fit distributions need
1176 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
1177 my $letter = "";
1178 if ($scheme =~ /svn/) {
1179 $letter = "s";
1180 } elsif ($scheme =~ /cvs/) {
1181 $letter = "c";
1182 } elsif ($scheme =~ /svk/) {
1183 $letter = "k";
1184 } elsif ($scheme =~ /hg/) {
1185 $letter = "h";
1186 } elsif ($scheme =~ /git/) {
1187 $letter = "g";
1188 } else {
1189 $letter = "f";
1190 }
1191 $pbtag = "0.$pbextdirpkg.$letter$pbrev";
1192 $ENV{'PBPROJTAG'} = $pbtag;
1193 } elsif ((defined $pkgt) && (defined $pkgt->{$pbpkg})) {
1194 $pbtag = $pkgt->{$pbpkg};
1195 } else {
1196 $pbtag = $ENV{'PBPROJTAG'};
1197 }
1198
1199 pb_log(0,"\n");
1200 pb_log(0,"Management of $pbpkg $pbver-$pbtag\n");
1201 die "Unable to get env var PBDESTDIR" if (not defined $ENV{'PBDESTDIR'});
1202
1203 my $dest = "$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir";
1204 # Create the structure if needed
1205 pb_mkdir_p($dest);
1206 # Clean up dest if necessary. The export will recreate it
1207 pb_rm_rf($dest) if (-d $dest);
1208
1209 # Export CMS tree for the concerned package to dest
1210 # And generate some additional files
1211 $OUTPUT_AUTOFLUSH=1;
1212
1213 # computes in which dir we have to work
1214 my $dir = $defpkgdir->{$pbpkg};
1215 $dir = $extpkgdir->{$pbpkg} if (not defined $dir);
1216 $dir = $webdir->{$ENV{'PBPROJ'}} if (defined $web);
1217 die "Variable \$dir not defined. Check the package name first.\nIf this is the one expected, please report to dev team with log of a verbose run and this info ".Dumper($defpkgdir,$extpkgdir,$webdir) if (not defined $dir);
1218 pb_log(2,"def:".Dumper($defpkgdir)."ext: ".Dumper($extpkgdir)."dir: $dir\n");
1219
1220 # Exporting content from CMS
1221 my $sourcedir = undef;
1222 my $sourceuri = $uri;
1223 if ($param eq "SandBox") {
1224 # Point to the local instance
1225 $sourcedir = "$ENV{'PBDIR'}/$dir";
1226 } else {
1227 # Get it from a subdir of the URI with same version as localy but different root
1228 # Only if using a real CMS
1229 my ($scheme, $account, $host, $port, $path) = pb_get_uri($uri);
1230 if (($scheme !~ /^file/) && ($scheme !~ /^(ht|f)tp/)) {
1231 $sourceuri = "$ENV{'PBDIR'}/$dir";
1232 $sourceuri =~ s|^$ENV{'PBPROJDIR'}/|$uri/|;
1233 }
1234 }
1235 my $preserve = pb_vcs_export($sourceuri,$sourcedir,$dest);
1236
1237 # Generated fake content for test versions to speed up stuff
1238 my $chglog;
1239
1240 # Get project info on authors and log file
1241 # TODO: Make it CMS aware
1242 $chglog = "$ENV{'PBROOTDIR'}/$pbpkg/pbcl";
1243 $chglog = "$ENV{'PBROOTDIR'}/pbcl" if (! -f $chglog);
1244 $chglog = undef if (! -f $chglog);
1245
1246 # TODO: Make it CMS aware
1247 my $authors = "$ENV{'PBROOTDIR'}/$pbpkg/pbauthors";
1248 $authors = "$ENV{'PBROOTDIR'}/pbauthors" if (! -f $authors);
1249 $authors = "/dev/null" if (! -f $authors);
1250
1251 # Extract cms log history and store it
1252 if ((defined $chglog) && (! -f "$dest/NEWS")) {
1253 pb_log(2,"Generating NEWS file from $chglog\n");
1254 copy($chglog,"$dest/NEWS") || die "Unable to create $dest/NEWS";
1255 }
1256 pb_cms_log($scheme,"$ENV{'PBDIR'}/$dir",$dest,$chglog,$authors,$testver);
1257
1258 my %build;
1259 # We want to at least build for the underlying distro
1260 # except if a target was given, in which case we only build for it
1261 # if -t was passed without target then build for the native distro.
1262 my $pbos = pb_distro_get_context($pbtarget);
1263 my $tmpl = pb_get_distros($pbos,$pbtarget);
1264
1265 # Setup $pb structure to allow filtering later on, on files using that structure
1266 $pb->{'tag'} = $pbtag;
1267 $pb->{'rev'} = $pbrev;
1268 $pb->{'ver'} = $pbver;
1269 $pb->{'pkg'} = $pbpkg;
1270 $pb->{'suf'} = $pbos->{'suffix'};
1271 $pb->{'realpkg'} = $pbpkg;
1272 $pb->{'date'} = $pbdate;
1273 $pb->{'defpkgdir'} = $defpkgdir;
1274 $pb->{'extpkgdir'} = $extpkgdir;
1275 $pb->{'chglog'} = $chglog;
1276 $pb->{'extdir'} = $pbextdir;
1277 $pb->{'packager'} = $ENV{'PBPACKAGER'};
1278 $pb->{'proj'} = $ENV{'PBPROJ'};
1279 $pb->{'repo'} = "$ENV{'PBREPO'}/$delivery->{$ENV{'PBPROJ'}}";
1280 $pb->{'patches'} = ();
1281 $pb->{'sources'} = ();
1282
1283 my $tmpd = "$ENV{'PBTMP'}/cms.$$";
1284 pb_mkdir_p($tmpd) if (defined $pbparallel);
1285
1286 # Get only all.pbf filter at this stage for pbinit
1287 my $ptr = pb_get_filters($pbpkg);
1288
1289 # Do not do that for website
1290 if (not defined $web) {
1291 my %virt;
1292 # De-duplicate similar VM/VE/RM
1293 foreach my $d (split(/,/,$tmpl)) {
1294 # skip ill-formatted vms (name-ver-arch)
1295 next if ($d !~ /-/);
1296 $virt{$d} = $d;
1297 }
1298
1299 # Try to use // processing here
1300 my $all_ok = 1;
1301 my $pm = new Parallel::ForkManager($pbparallel) if (defined $pbparallel);
1302 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
1303 $all_ok = 0 unless (($code == 0) && ($signal == 0) && ($dump == 0)); }) if (defined $pbparallel);
1304
1305 pb_log(0,"Preparing delivery ...\n");
1306 foreach my $v (keys %virt) {
1307 $pm->start and next if (defined $pbparallel);
1308
1309 # Distro context
1310 my $pbos = pb_distro_get_context($v);
1311
1312 $pb->{'pbos'} = $pbos;
1313 $pb->{'suf'} = $pbos->{'suffix'};
1314 pb_log(3,"DEBUG: pb: ".Dumper($pb)."\n");
1315
1316 # Get all filters to apply
1317 $ptr = pb_get_filters($pbpkg,$pbos);
1318
1319 pb_log(2,"DEBUG Filtering PBDATE => $pbdate, PBTAG => $pbtag, PBVER => $pbver\n");
1320
1321 # We need to compute the real name of the package
1322 my $pbrealpkg = pb_cms_get_real_pkg($pbpkg,$pbos->{'type'});
1323 $pb->{'realpkg'} = $pbrealpkg;
1324 pb_log(1,"Virtual package $pbpkg has a real package name of $pbrealpkg on $pbos->{'name'}-$pbos->{'version'}\n") if ($pbrealpkg ne $pbpkg);
1325
1326 # Filter build files from the less precise up to the most with overloading
1327 # Filter all files found, keeping the name, and generating in dest
1328
1329 # Find all build files first relatively to PBROOTDIR
1330 # Find also all specific files referenced in the .pb conf file
1331 my %bfiles = ();
1332 my %pkgfiles = ();
1333 # Used in Filter.pm by pb_filter_file
1334
1335 $build{$v} = "no";
1336 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'os'}") {
1337 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'os'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
1338 $build{$v} = "yes";
1339 }
1340 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'type'}") {
1341 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'type'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
1342 $build{$v} = "yes";
1343 }
1344 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'family'}") {
1345 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'family'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
1346 $build{$v} = "yes";
1347 }
1348 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}") {
1349 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
1350 $build{$v} = "yes";
1351 }
1352 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}") {
1353 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
1354 $build{$v} = "yes";
1355 }
1356 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}") {
1357 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
1358 $build{$v} = "yes";
1359 }
1360 pb_log(2,"DEBUG($v) bfiles: ".Dumper(\%bfiles)."\n");
1361
1362 if ($build{$v} ne "no") {
1363 # Apply now all the filters on all the files concerned
1364 # destination dir depends on the type of file
1365 # For patch support
1366 # TODO: Make it CMS aware
1367 $pb->{'patches'} = pb_list_sfiles("$ENV{'PBROOTDIR'}/$pbpkg/pbpatch", $pb->{'patches'}, $pbos, "$ENV{'PBROOTDIR'}/$pbpkg/pbextpatch");
1368 pb_log(2,"DEBUG($v) patches: ".Dumper($pb->{'patches'})."\n");
1369 # TODO: Make it CMS aware
1370 $pb->{'sources'} = pb_list_sfiles("$ENV{'PBROOTDIR'}/$pbpkg/pbsrc", $pb->{'sources'}, $pbos, "$ENV{'PBROOTDIR'}/$pbpkg/pbextsrc");
1371 pb_log(2,"DEBUG($v) sources: ".Dumper($pb->{'sources'})."\n");
1372
1373 if (defined $pb->{'patches'}->{$v}) {
1374 # Filter potential patches (local + remote)
1375 pb_mkdir_p("$dest/pbconf/$v/pbpatch");
1376 # If Debian based distribution, then prepare what will be done at build time
1377 my ($patchcmd,$patchopt);
1378 if ($pbos->{'type'} eq "deb") {
1379 ($patchcmd,$patchopt) = pb_distro_get_param($pbos,pb_conf_get_if("ospatchcmd","ospatchopt"));
1380 open(SCRIPT,"> $dest/pbconf/$v/pbpatch/pbapplypatch") || die "Unable to create $dest/pbconf/$v/pbpatch/pbapplypatch";
1381 print SCRIPT "#!/bin/bash\n";
1382 print SCRIPT "set -x\n" if ($pbdebug gt 1);
1383 }
1384 foreach my $pf (split(/,/,$pb->{'patches'}->{$v})) {
1385 my $pp = basename($pf);
1386 pb_vcs_export($pf,undef,"$dest/pbconf/$v/pbpatch");
1387 pb_filter_file_inplace($ptr,"$dest/pbconf/$v/pbpatch/$pp",$pb);
1388 pb_system("gzip -9f $dest/pbconf/$v/pbpatch/$pp","","quiet");
1389 if ($pbos->{'type'} eq "deb") {
1390 # If Debian based distribution, then prepare what will be done at build time
1391 # by applying the patches that will be available under the debian/patches dir
1392 print SCRIPT "$patchcmd $patchopt \< debian/patches/$pp\n";
1393 }
1394 }
1395 if ($pbos->{'type'} eq "deb") {
1396 close(SCRIPT);
1397 chmod 0755,"$dest/pbconf/$v/pbpatch/pbapplypatch";
1398 }
1399 #pb_system("cat $dest/pbconf/$v/pbpatch/pbapplypatch","APPLY","verbose");
1400 }
1401 if (defined $pb->{'sources'}->{$v}) {
1402 pb_mkdir_p("$dest/pbconf/$v/pbsrc");
1403 foreach my $pf (split(/,/,$pb->{'sources'}->{$v})) {
1404 my $pp = basename($pf);
1405 pb_vcs_export($pf,undef,"$dest/pbconf/$v/pbsrc");
1406 pb_filter_file_inplace($ptr,"$dest/pbconf/$v/pbsrc/$pp",$pb);
1407 }
1408 }
1409 # Filter build files at the end, as they depend on patches and sources
1410 foreach my $f (keys %bfiles) {
1411 pb_filter_file("$ENV{'PBROOTDIR'}/$bfiles{$f}",$ptr,"$dest/pbconf/$v/$f",$pb);
1412 }
1413 foreach my $f (keys %pkgfiles) {
1414 pb_filter_file("$ENV{'PBROOTDIR'}/$pkgfiles{$f}",$ptr,"$dest/pbconf/$v/$f",$pb);
1415 }
1416 }
1417
1418 if (defined $pbparallel) {
1419 # Communicate results back to parent
1420 my $str = "";
1421 $str .= "build $v = $build{$v}\n" if (defined $build{$v});
1422 $str .= "patches $v = $pb->{'patches'}->{$v}\n" if (defined $pb->{'patches'}->{$v});
1423 $str .= "sources $v = $pb->{'sources'}->{$v}\n" if (defined $pb->{'sources'}->{$v});
1424 pb_set_content("$tmpd/$$","$str");
1425 $pm->finish;
1426 }
1427 }
1428 # In the parent, we need to get the result from the children
1429 $pm->wait_all_children if (defined $pbparallel);
1430 die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
1431 my $made = "";
1432 my %h = ();
1433 my %tmp;
1434 my %tmp2;
1435 my $pt;
1436 my $k;
1437
1438 foreach $k (<$tmpd/*>) {
1439 $made .= pb_get_content($k);
1440 }
1441 pb_rm_rf($tmpd);
1442 pb_log(3,"MADE:\n$made");
1443
1444 # Rebuild local hashes
1445 foreach $k (split(/\n/,$made)) {
1446 if ($k =~ /^\s*([A-z0-9-_]+)\s+([[A-z0-9-_.]+)\s*=\s*(.+)$/) {
1447 $h{$1}->{$2}=$3;
1448 }
1449 }
1450 pb_log(2,"HASH: ".Dumper(%h));
1451
1452 # Patches
1453 pb_log(0,"Delivered and compressed patches ");
1454 $pt = $h{'patches'};
1455 foreach $k (keys %$pt) {
1456 foreach my $v1 (split(/,/,$pt->{$k})) {
1457 $tmp{$v1} = "";
1458 }
1459 }
1460 if (keys %tmp) {
1461 foreach $k (keys %tmp) {
1462 pb_log(0,"$k ");
1463 }
1464 } else {
1465 pb_log(0,"N/A");
1466 }
1467 pb_log(0,"\n");
1468
1469 # Sources
1470 pb_log(0,"Delivered additional sources ");
1471 $pt = $h{'sources'};
1472 foreach $k (keys %$pt) {
1473 foreach my $v1 (split(/,/,$pt->{$k})) {
1474 $tmp2{$v1} = "";
1475 }
1476 }
1477 if (keys %tmp2) {
1478 foreach $k (keys %tmp2) {
1479 pb_log(0,"$k ");
1480 }
1481 } else {
1482 pb_log(0,"N/A");
1483 }
1484 pb_log(0,"\n");
1485
1486 # Build files
1487 my @found;
1488 my @notfound;
1489 $pt = $h{'build'};
1490 foreach my $b (keys %$pt) {
1491 push @found,$b if ($pt->{$b} =~ /yes/);
1492 push @notfound,$b if ($pt->{$b} =~ /no/);
1493 }
1494 pb_log(0,"Build files have been generated for ... ".join(',',sort(@found))."\n") if (@found);
1495 pb_log(0,"No Build files found for ".join(',',sort(@notfound))."\n") if (@notfound);
1496
1497 } else {
1498 # Instead call News generation
1499 pb_web_news2html($dest);
1500 # And create an empty pbconf
1501 pb_mkdir_p("$dest/pbconf");
1502 # And prepare the pbscript to execute remotely
1503 open(SCRIPT,"> $ENV{'PBTMP'}/pbscript") || die "Unable to create $ENV{'PBTMP'}/pbscript";
1504 print SCRIPT "#!/bin/bash\n";
1505 print SCRIPT "#set -x\n";
1506 print SCRIPT "echo ... Extracting Website content\n";
1507 print SCRIPT "find . -type f | grep -Ev '^./$pbpkg-$pbver$pbextdir.tar.gz|^./pbscript' | xargs rm -f non-existent\n";
1508 print SCRIPT "find * -type d -depth | xargs rmdir 2> /dev/null \n";
1509 print SCRIPT "tar xfz $pbpkg-$pbver$pbextdir.tar.gz\n";
1510 print SCRIPT "mv $pbpkg-$pbver$pbextdir/* .\n";
1511 print SCRIPT "rm -f $pbpkg-$pbver$pbextdir.tar.gz\n";
1512 print SCRIPT "rmdir $pbpkg-$pbver$pbextdir\n";
1513 print SCRIPT "find . -type f -print0 | xargs -0 chmod 644\n";
1514 print SCRIPT "find . -type d -print0 | xargs -0 chmod 755\n";
1515 close(SCRIPT);
1516 chmod 0755,"$ENV{'PBTMP'}/pbscript";
1517 }
1518
1519 # Apply filters to the non-build files
1520 my $liste ="";
1521 if (defined $filteredfiles->{$pbpkg}) {
1522 foreach my $f (split(/,/,$filteredfiles->{$pbpkg})) {
1523 pb_filter_file_inplace($ptr,"$dest/$f",$pb);
1524 $liste = "$f $liste";
1525 }
1526 }
1527 pb_log(2,"Files ".$liste."have been filtered\n");
1528
1529 # TODO: Make it CMS aware
1530 # Execute the pbinit script if any
1531 if (-x "$ENV{'PBROOTDIR'}/$pbpkg/pbinit") {
1532 pb_filter_file("$ENV{'PBROOTDIR'}/$pbpkg/pbinit",$ptr,"$ENV{'PBTMP'}/pbinit",$pb);
1533 chmod 0755,"$ENV{'PBTMP'}/pbinit";
1534 pb_system("cd $dest ; $ENV{'PBTMP'}/pbinit","Executing init script from $ENV{'PBROOTDIR'}/$pbpkg/pbinit under $dest","verbose");
1535 }
1536
1537 # Do we have additional script to run to prepare the environement for the project ?
1538 # Then include it in the pbconf delivery
1539 foreach my $pbvf (<$ENV{'PBROOTDIR'}/pbv*.pre>,<$ENV{'PBROOTDIR'}/pbv*.post>, <$ENV{'PBROOTDIR'}/pbtest*>) {
1540 if (-x "$pbvf") {
1541 my $target = "$ENV{'PBDESTDIR'}/".basename($pbvf);
1542 pb_filter_file("$pbvf",$ptr,$target,$pb);
1543 chmod 0755,"$target";
1544 }
1545 }
1546
1547 # Prepare the dest directory for archive
1548 chdir "$ENV{'PBDESTDIR'}" || die "Unable to change dir to $ENV{'PBDESTDIR'}";
1549 if (defined $preserve) {
1550 # In that case we want to preserve the original tar file for checksum purposes
1551 # The one created is btw equivalent in that case to this one
1552 # Maybe check basename of both to be sure they are the same ?
1553 pb_log(0,"Preserving original tar file ");
1554 move("$preserve","$pbpkg-$pbver$pbextdir.tar.gz");
1555 } else {
1556 # Possibility to look at PBSRC to guess more the filename
1557 pb_system("tar cfz $pbpkg-$pbver$pbextdir.tar.gz --exclude=$pbpkg-$pbver$pbextdir/pbconf $pbpkg-$pbver$pbextdir","Creating $pbpkg tar files compressed");
1558 }
1559 pb_log(0,"Under $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz\n");
1560 pb_system("tar cfz $pbpkg-$pbver$pbextdir.pbconf.tar.gz $pbpkg-$pbver$pbextdir/pbconf","Creating pbconf tar files compressed");
1561 pb_log(0,"Under $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz\n");
1562
1563 # Keep track of version-tag per pkg
1564 $pkgs{$pbpkg} = "$pbver-$pbtag";
1565
1566 # Final cleanup
1567 pb_rm_rf($dest) if (-d $dest);
1568 }
1569
1570 # Keep track of per package version
1571 pb_log(2,"DEBUG pkgs: ".Dumper(%pkgs)."\n");
1572 open(PKG,"> $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb") || die "Unable to create $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb";
1573 foreach my $pbpkg (keys %pkgs) {
1574 print PKG "pbpkg $pbpkg = $pkgs{$pbpkg}\n";
1575 }
1576 close(PKG);
1577
1578 # Keep track of what is generated by default
1579 # We need to store the dir and info on version-tag
1580 # Base our content on the existing .pb file
1581 copy("$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb","$ENV{'PBDESTDIR'}/pbrc");
1582 open(LAST,">> $ENV{'PBDESTDIR'}/pbrc") || die "Unable to create $ENV{'PBDESTDIR'}/pbrc";
1583 print LAST "pbroot $ENV{'PBPROJ'} = $ENV{'PBROOTDIR'}\n";
1584 print LAST "projver $ENV{'PBPROJ'} = $ENV{'PBPROJVER'}\n";
1585 print LAST "projtag $ENV{'PBPROJ'} = $ENV{'PBPROJTAG'}\n";
1586 print LAST "pbpackager $ENV{'PBPROJ'} = $ENV{'PBPACKAGER'}\n";
1587 print LAST "pbextdir $ENV{'PBPROJ'} = $pbextdir\n";
1588 close(LAST);
1589}
1590
1591sub pb_test2pkg {
1592 # Get the running distro to test on
1593 my $pbos = pb_distro_get_context();
1594
1595 # Get list of packages to test
1596 # Get content saved in cms2build
1597 my $ptr = pb_get_pkg();
1598 @pkgs = @$ptr;
1599
1600 # Additional potential repo
1601 pb_distro_setuprepo($pbos);
1602 foreach my $pbpkg (@pkgs) {
1603 # We need to install the package to test, and deps brought with it
1604 pb_distro_installdeps(undef,$pbos,$pbpkg);
1605 pb_system("$ENV{'PBDESTDIR'}/pbtest","Launching test for $pbpkg","verbose");
1606 }
1607}
1608
1609sub pb_build2prep {
1610
1611 pb_log(0,"INFO: ------ Starting to prepare build environement ------\n");
1612
1613 # Get the running distro to build on
1614 my $pbos = pb_distro_get_context();
1615
1616 # If needed we may add repository to the build env
1617 pb_distro_setuprepo($pbos);
1618
1619 # Get list of packages to build
1620 my $ptr = pb_get_pkg();
1621 @pkgs = @$ptr;
1622
1623 # Get content saved in cms2build
1624 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
1625 $pkg = { } if (not defined $pkg);
1626 my $pbextdir = pb_get_extdir();
1627
1628 foreach my $pbpkg (@pkgs) {
1629 my $vertag = $pkg->{$pbpkg};
1630 my @buildfiles;
1631 pb_log(2,"Vertag: $vertag\n");
1632 # get the version of the current package - maybe different
1633 ($pbver,$pbtag) = split(/-/,$vertag);
1634
1635 my $src2="$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz";
1636 pb_log(2,"Pbconf file: $src2\n");
1637 pb_log(2,"Working directory: $ENV{'PBBUILDDIR'}\n");
1638
1639 my $ftype;
1640 if ($pbos->{'type'} eq "rpm") {
1641 $ftype = "\.spec\$";
1642 } elsif ($pbos->{'type'} eq "deb") {
1643 $ftype = "\/control\$";
1644 } elsif ($pbos->{'type'} eq "ebuild") {
1645 $ftype = "\.ebuild\$";
1646 } elsif ($pbos->{'type'} eq "tgz") {
1647 $ftype = "\/pbslack\$";
1648 } elsif ($pbos->{'type'} eq "pkg") {
1649 # Solaris - no deps management up to Solaris 10
1650 } elsif ($pbos->{'type'} eq "hpux") {
1651 # TODO: HP-UX
1652 } else {
1653 die "Unknown OS type format $pbos->{'type'}";
1654 }
1655
1656 @buildfiles = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/","$ENV{'PBTMP'}","spec");
1657 pb_log(2,"buildfiles ".Dumper(\@buildfiles)."\n");
1658 foreach my $f (@buildfiles) {
1659 if ($f =~ /$ftype/) {
1660 pb_distro_installdeps($f,$pbos);
1661 }
1662 }
1663 }
1664 pb_log(0,"INFO: ------ Finished preparing build environment ------\n");
1665}
1666
1667sub pb_build2pkg {
1668
1669 my $do_install = shift;
1670
1671 # Call build2prep in case we have new deps we want to take in account
1672 # without redoing the prep phase (can be long and that helps debugging
1673 # build dependencies issues
1674 pb_build2prep();
1675 pb_log(0,"INFO: ------ Starting to build package ------\n");
1676 # Get the running distro to build on
1677 my $pbos = pb_distro_get_context();
1678
1679 # Get list of packages to build
1680 my $ptr = pb_get_pkg();
1681 @pkgs = @$ptr;
1682
1683 # Get content saved in cms2build
1684 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
1685 $pkg = { } if (not defined $pkg);
1686 my $pbextdir = pb_get_extdir();
1687
1688 pb_mkdir_p("$ENV{'PBBUILDDIR'}") if (! -d "$ENV{'PBBUILDDIR'}");
1689 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
1690 my $made = ""; # pkgs made during build
1691 my $pm;
1692 my $all_ok = 1;
1693
1694 if (defined $pbparallel) {
1695 $pm = new Parallel::ForkManager($pbparallel);
1696 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
1697 $all_ok = 0 unless (($code == 0) && ($signal == 0) && ($dump == 0)); });
1698 }
1699
1700 # We need to communicate info back from the children if parallel so prepare a dir for that
1701 my $tmpd = "$ENV{'PBTMP'}/build.$$";
1702 pb_mkdir_p($tmpd) if (defined $pbparallel);
1703
1704 # Do it here as this doesn't work in // mode as it dies if it fails
1705 if ($pbos->{'type'} eq "rpm") {
1706 foreach my $d ('RPMS','SRPMS','SPECS','SOURCES','BUILD') {
1707 if (! -d "$ENV{'PBBUILDDIR'}/$d") {
1708 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$d");
1709 }
1710 }
1711 }
1712
1713 foreach my $pbpkg (@pkgs) {
1714 $pm->start and next if (defined $pbparallel);
1715
1716 my $vertag = $pkg->{$pbpkg};
1717 pb_log(2,"Vertag: $vertag\n");
1718 # get the version of the current package - maybe different
1719 ($pbver,$pbtag) = split(/-/,$vertag);
1720
1721 my $src="$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz";
1722 my $src2="$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz";
1723 pb_log(2,"Source file: $src\n");
1724 pb_log(2,"Pbconf file: $src2\n");
1725
1726 pb_log(2,"Working directory: $ENV{'PBBUILDDIR'}\n");
1727 if ($pbos->{'type'} eq "rpm") {
1728 # Remove in case a previous link/file was there
1729 unlink "$ENV{'PBBUILDDIR'}/SOURCES/".basename($src);
1730 symlink "$src","$ENV{'PBBUILDDIR'}/SOURCES/".basename($src) || die "Unable to symlink $src in $ENV{'PBBUILDDIR'}/SOURCES";
1731 # We need to first extract the spec file
1732 my @buildfile = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/","$ENV{'PBBUILDDIR'}/SPECS","spec");
1733
1734 # We need to handle potential patches to upstream sources
1735 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","$ENV{'PBBUILDDIR'}/SOURCES","patch");
1736
1737 # We need to handle potential additional sources to upstream sources
1738 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}/SOURCES","src");
1739
1740 pb_log(2,"buildfile: ".Dumper(\@buildfile)."\n");
1741 # set LANGUAGE to check for correct log messages
1742 $ENV{'LANGUAGE'}="C";
1743 # Older Redhat use _target_platform in %configure incorrectly
1744 my $specialdef = "";
1745 if (($pbos->{'name'} eq "rhel") && ($pbos->{'version'} eq "2.1")) {
1746 $specialdef = "--define \'_target_platform \"\"\'";
1747 }
1748 my $buildcmd = "rpmbuild";
1749 if (($pbos->{'name'} eq "redhat") && ($pbos->{'version'} =~ /^6/)){
1750 $buildcmd = "rpm" ;
1751 }
1752
1753 foreach my $f (@buildfile) {
1754 if ($f =~ /\.spec$/) {
1755 pb_system("$buildcmd $specialdef --define \"packager $ENV{'PBPACKAGER'}\" --define \"_topdir $ENV{'PBBUILDDIR'}\" -ba $f","Building package with $f under $ENV{'PBBUILDDIR'}","verbose");
1756 last;
1757 }
1758 }
1759 # Get the name of the generated packages
1760 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
1761 while (<LOG>) {
1762 chomp($_);
1763 next if ($_ !~ /^Wrote:/);
1764 s|.*/([S]*RPMS.*)|$1|;
1765 $made .=" $_";
1766 }
1767 close(LOG);
1768
1769 } elsif ($pbos->{'type'} eq "deb") {
1770 pb_system("tar xfz $src","Extracting sources");
1771 pb_system("tar xfz $src2","Extracting pbconf");
1772
1773 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
1774 pb_rm_rf("debian");
1775 my $confdir = "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
1776 die "Configuration directory $confdir is not a directory\nIs os description listed in your {ve,vm,rm}list values?" if (not -d $confdir);
1777 symlink "$confdir","debian" || die "Unable to symlink 'debian' to $confdir";
1778 chmod 0755,"debian/rules";
1779
1780 # We need to handle potential patches to upstream sources
1781 pb_mkdir_p("debian/patches");
1782 my @f = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","debian/patches","patch");
1783
1784 # By default we use format 1.0 - Cf man dpkg-source
1785 my $debsrcfmt = "1.0";
1786 my $debsrcfile = "debian/source/format";
1787 if (-f $debsrcfile) {
1788 $debsrcfmt = pb_get_content($debsrcfile);
1789 }
1790
1791 if ($debsrcfmt =~ /^3.*quilt/) {
1792 # If we use quilt to manage patches, we then setup the env correctly
1793 # as per http://pkg-perl.alioth.debian.org/howto/quilt.html
1794 # Generate Debian patch series for quilt
1795 open(SERIE,"> debian/patches/series") || die "Unable to write in debian/patches/series";
1796 $ENV{'QUILT_PATCHES'}="debian/patches";
1797 } else {
1798 # If we use dpatch to manage patches, we then setup the 00list file as well
1799 open(SERIE,"> debian/patches/00list") || die "Unable to write in debian/patches/00list";
1800 }
1801 foreach my $f (sort @f) {
1802 # Skip the script made to apply the patches to the Debian tree
1803 next if ($f =~ /pbapplypatch/);
1804 # We also need to uncompress them
1805 pb_system("gzip -d $f","","quiet");
1806 $f =~ s/\.gz$//;
1807 print SERIE "$f\n";
1808 }
1809 close(SERIE);
1810 if (@f) {
1811 # We have patches...
1812 my $patch_file = "debian/patches/pbapplypatch";
1813 if (($debsrcfmt =~ /^1.*/) && (-x $patch_file)) {
1814 # In that case we need to apply the patches ourselves locally
1815 pb_system("cat $patch_file","APPLY","verbose");
1816 pb_system("$patch_file","Applying patches to $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'} tree");
1817 }
1818 # ...so modify the name of files to be Debian compliant
1819 move("../$src","../$pbpkg-$pbver$pbextdir.orig.tar.gz");
1820 }
1821
1822 # We need to handle potential additional sources to upstream sources
1823 #pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}/debian","src");
1824
1825 pb_system("dpkg-buildpackage -us -uc -rfakeroot","Building package","verbose");
1826
1827 # Get the name of the generated packages
1828 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
1829 while (<LOG>) {
1830 chomp();
1831 pb_log(3,"In loop: $_\n");
1832 next unless (/^dpkg-deb.*\.\.\/(.*_.*\.deb).*/);
1833 my $tmp = $1;
1834 #doesn't work in my case
1835 #die "Missing file $tmp" if (not -f "../$tmp");
1836 $made = "$made $tmp";
1837 }
1838 close(LOG);
1839 pb_log(2,"Now made is: $made\n");
1840
1841 open(CTRL,"debian/control") || die "Unable to open debian/control: $!";
1842 while (<CTRL>) {
1843 pb_log(3,"In loop: $_\n");
1844 next unless (/^Source: (\S+)/o);
1845 my $tmp = $1;
1846 $made = "$made $tmp"."_*.dsc $tmp"."_*.tar.gz $tmp"."_*.changes";
1847 #doesn't work in my case
1848 #foreach my $glob (("$1\_*.changes", "$1\_*.dsc", "$1\_*.tar.gz")) {
1849 #my @file = glob($glob);
1850 #die "Missing file for $glob" unless (@file > 0);
1851 #die "Too many files for $glob" if (@file > 1);
1852 #die "Missing file $file[0]" if (not -f $file[0]);
1853 #$made .= " $file[0]";
1854 #}
1855 }
1856 close(CTRL);
1857 #pb_display_file("$ENV{'PBTMP'}/system.$$.log");
1858 pb_log(2,"Finally made is: $made\n");
1859
1860 chdir ".." || die "Unable to chdir to parent dir";
1861 pb_rm_rf("$pbpkg-$pbver$pbextdir");
1862 } elsif ($pbos->{'type'} eq "ebuild") {
1863 my @ebuildfile;
1864 # For gentoo we need to take pb as subsystem name
1865 # We put every apps here under sys-apps. hope it's correct
1866 # We use pb's home dir in order to have a single OVERLAY line
1867 my $tmpe = "$ENV{'HOME'}/portage/pb/sys-apps/$pbpkg";
1868 pb_mkdir_p($tmpe) if (! -d "$tmpe");
1869 pb_mkdir_p("$ENV{'HOME'}/portage/distfiles") if (! -d "$ENV{'HOME'}/portage/distfiles");
1870
1871 # We need to first extract the ebuild file
1872 @ebuildfile = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/","$tmpe","ebuild");
1873
1874 # Prepare the build env for gentoo
1875 my $found = 0;
1876 my $pbbd = $ENV{'HOME'};
1877 $pbbd =~ s|/|\\/|g;
1878 if (-r "/etc/make.conf") {
1879 open(MAKE,"/etc/make.conf");
1880 while (<MAKE>) {
1881 $found = 1 if (/$pbbd\/portage/);
1882 }
1883 close(MAKE);
1884 }
1885 if ($found == 0) {
1886 pb_system("sudo sh -c 'echo PORTDIR_OVERLAY=\"$ENV{'HOME'}/portage\" >> /etc/make.conf'");
1887 }
1888 #$found = 0;
1889 #if (-r "/etc/portage/package.keywords") {
1890 #open(KEYW,"/etc/portage/package.keywords");
1891 #while (<KEYW>) {
1892 #$found = 1 if (/portage\/pb/);
1893 #}
1894 #close(KEYW);
1895 #}
1896 #if ($found == 0) {
1897 #pb_system("sudo sh -c \"echo portage/pb >> /etc/portage/package.keywords\"");
1898 #}
1899
1900 # Build
1901 foreach my $f (@ebuildfile) {
1902 if ($f =~ /\.ebuild$/) {
1903 move($f,"$tmpe/$pbpkg-$pbver.ebuild");
1904 pb_system("cd $tmpe ; ebuild $pbpkg-$pbver.ebuild clean ; ebuild $pbpkg-$pbver.ebuild digest ; ebuild $pbpkg-$pbver.ebuild package","verbose");
1905 # Now move it where pb expects it
1906 pb_mkdir_p("$ENV{'PBBUILDDIR'}/portage/pb/sys-apps/$pbpkg");
1907 if ($pbtag eq 0) {
1908 # This is assumed to be a test version
1909 my $nver = substr($pbver,0,-14);
1910 my $ntag = substr($pbver,-14);
1911 my $ebtg = "portage/pb/sys-apps/$pbpkg/$pbpkg-$nver"."_p$ntag.ebuild";
1912 move("$tmpe/$pbpkg-$pbver.ebuild","$ENV{'PBBUILDDIR'}/$ebtg");
1913 $made="$made $ebtg";
1914 } else {
1915 my $ebtg = "portage/pb/sys-apps/$pbpkg/$pbpkg-$pbver-r$pbtag.ebuild";
1916 move("$tmpe/$pbpkg-$pbver.ebuild","$ENV{'PBBUILDDIR'}/$ebtg");
1917 $made="$made $ebtg";
1918 }
1919 }
1920 }
1921
1922 } elsif ($pbos->{'type'} eq "tgz") {
1923 # Slackware family
1924 $made="$made $pbpkg/$pbpkg-$pbver-*-$pbtag.tgz";
1925
1926 pb_system("tar xfz $src","Extracting sources");
1927 pb_system("tar xfz $src2","Extracting pbconf");
1928 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
1929 symlink "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}","install" || die "Unable to symlink to pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
1930 if (-x "install/pbslack") {
1931 pb_system("./install/pbslack","Building software");
1932 pb_system("sudo /sbin/makepkg -p -l y -c y $pbpkg","Packaging $pbpkg","verbose");
1933 }
1934 chdir ".." || die "Unable to chdir to parent dir";
1935 pb_rm_rf("$pbpkg-$pbver$pbextdir");
1936 } elsif ($pbos->{'type'} eq "pkg") {
1937 # Solaris
1938 $made="$made $pbpkg-$pbver-$pbtag.pkg.gz";
1939 my $pkgdestdir="$ENV{'PBBUILDDIR'}/install";
1940
1941 # Will host resulting packages
1942 pb_mkdir_p("$pbos->{'type'}");
1943 pb_mkdir_p("$pkgdestdir/pbdelivery");
1944 pb_system("tar xfz $src","Extracting sources under $ENV{'PBBUILDDIR'}");
1945 pb_system("tar xfz $src2","Extracting pbconf under $ENV{'PBBUILDDIR'}");
1946 # We need to handle potential patches to upstream sources
1947 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","$ENV{'PBBUILDDIR'}","patch");
1948
1949 # We need to handle potential additional sources to upstream sources
1950 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}","src");
1951
1952 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
1953 if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild") {
1954 chmod 0755,"pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild";
1955 # pkginfo file is mandatory
1956 die "Unable to find pkginfo file in pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}" if (! -f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pkginfo");
1957 # Build
1958 pb_system("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild $pkgdestdir/pbdelivery","Building software and installing under $pkgdestdir/pbdelivery");
1959 # Copy complementary files
1960 if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/prototype") {
1961 copy("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/prototype", $pkgdestdir)
1962 } else {
1963 # No prototype provided, calculating it
1964 open(PROTO,"> $pkgdestdir/prototype") || die "Unable to create prototype file";
1965 print PROTO "i pkginfo\n";
1966 print PROTO "i depend\n" if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/depend");
1967 $ENV{'PBSOLDESTDIR'} = "$pkgdestdir/pbdelivery";
1968 find(\&create_solaris_prototype, "$pkgdestdir/pbdelivery");
1969 }
1970 copy("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/depend", $pkgdestdir) if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/depend");
1971 copy("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pkginfo", $pkgdestdir);
1972 pb_system("cd $pkgdestdir/pbdelivery ; pkgmk -o -f ../prototype -r $pkgdestdir/pbdelivery -d $ENV{'PBBUILDDIR'}/$pbos->{'type'}","Packaging $pbpkg","verbose");
1973 pb_system("cd $ENV{'PBBUILDDIR'}/$pbos->{'type'} ; echo \"\" | pkgtrans -o -n -s $ENV{'PBBUILDDIR'}/$pbos->{'type'} $ENV{'PBBUILDDIR'}/$pbpkg-$pbver-$pbtag.pkg all","Transforming $pbpkg","verbose");
1974 pb_system("cd $ENV{'PBBUILDDIR'} ; gzip -9f $pbpkg-$pbver-$pbtag.pkg","Compressing $pbpkg-$pbver-$pbtag.pkg","verbose");
1975 } else {
1976 pb_log(0,"No pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild file found for $pbpkg-$pbver\n");
1977 }
1978 chdir ".." || die "Unable to chdir to parent dir";
1979 pb_rm_rf("$pbpkg-$pbver$pbextdir","$ENV{'PBBUILDDIR'}/$pbos->{'type'}","$pkgdestdir");
1980 } elsif ($pbos->{'type'} eq "hpux") {
1981 # HP-UX
1982 pb_system("tar xfz $src","Extracting sources");
1983 pb_system("tar xfz $src2","Extracting pbconf");
1984
1985 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
1986 pb_system("buildpackage ","Building package","verbose");
1987 # Get the name of the generated packages
1988 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
1989 while (<LOG>) {
1990 chomp();
1991 my $tmp = $_;
1992 next if ($tmp !~ /^SD BUILD.*:/);
1993 $tmp =~ s|.*../(.*)_(.*).sd.*|$1|;
1994 $made = "$made $tmp"."_*.sd";
1995 }
1996 close(LOG);
1997 $made="$made $pbpkg-$pbver-$pbtag.sd";
1998
1999 chdir ".." || die "Unable to chdir to parent dir";
2000 pb_rm_rf("$pbpkg-$pbver$pbextdir");
2001 } else {
2002 die "Unknown OS type format $pbos->{'type'}";
2003 }
2004 if (defined $pbparallel) {
2005 # Communicate results back to parent
2006 pb_set_content("$tmpd/$$",$made);
2007 $pm->finish;
2008 }
2009 }
2010 if (defined $pbparallel) {
2011 # In the parent, we need to get the result from the children
2012 $pm->wait_all_children;
2013 foreach my $f (<$tmpd/*>) {
2014 $made .= " ".pb_get_content($f);
2015 }
2016 die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
2017 pb_rm_rf($tmpd);
2018 }
2019
2020 # Sign packages
2021 pb_sign_pkgs($pbos,$made);
2022 pb_log(0,"INFO: ------ Finished building package ------\n");
2023
2024 # Find the appropriate check cmd/opts
2025 my ($chkcmd,$chkopt) = pb_distro_get_param($pbos,pb_conf_get_if("oschkcmd","oschkopt"));
2026
2027 my $ret = "";
2028 # Packages check if needed
2029 if ($pbos->{'type'} eq "rpm") {
2030 if ((defined $chkcmd) && (-x $chkcmd)) {
2031 my $cmd = "$chkcmd";
2032 $cmd .= " $chkopt" if (defined $chkopt);
2033 $cmd .= " $made";
2034 my $ret = pb_system("$cmd","Checking validity of rpms with $chkcmd","mayfailverbose");
2035 pb_log(0,"ERROR: when checking packages validity\n") if ($ret ne 0);
2036 }
2037 my $rpms ="";
2038 my $srpms ="";
2039 foreach my $f (split(/ /,$made)) {
2040 $rpms .= "$ENV{'PBBUILDDIR'}/$f " if ($f =~ /^RPMS\//);
2041 $srpms .= "$ENV{'PBBUILDDIR'}/$f " if ($f =~ /^SRPMS\//);
2042 }
2043 pb_log(0,"SRPM packages generated: $srpms\n");
2044 pb_log(0,"RPM packages generated: $rpms\n");
2045 $ret = $rpms;
2046 } elsif ($pbos->{'type'} eq "deb") {
2047 my $made2 = "";
2048 foreach my $f (split(/ /,$made)) {
2049 $made2 .= "$f " if ($f =~ /\.deb$/);
2050 }
2051 if ((defined $chkcmd) && (-x $chkcmd)) {
2052 my $ret = pb_system("$chkcmd $chkopt $made2","Checking validity of debs with $chkcmd","mayfail");
2053 pb_log(0,"ERROR: when checking packages validity\n") if ($ret ne 0);
2054 }
2055 pb_log(0,"deb packages generated: $made2\n");
2056 $ret = $made2;
2057 } else {
2058 pb_log(0,"No check done for $pbos->{'type'} yet\n");
2059 pb_log(0,"Packages generated: $made\n");
2060 $ret = $made;
2061 }
2062
2063 # Keep track of what is generated so that we can get them back from VMs/RMs
2064 my $pbstore = "$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
2065 open(KEEP,"> $pbstore") || die "Unable to create $pbstore $!";
2066 print KEEP "$made\n";
2067 close(KEEP);
2068 pb_distro_installdeps(undef,$pbos,$ret) if ($do_install);
2069}
2070
2071sub pb_build2ssh {
2072 pb_send2target("Sources");
2073 pb_send2target("CPAN");
2074}
2075
2076sub pb_pkg2ssh {
2077 pb_send2target("Packages");
2078}
2079
2080# By default deliver to the the public site hosting the
2081# ftp structure (or whatever) or a VM/VE/RM
2082sub pb_send2target {
2083
2084 my $cmt = shift;
2085 my $pbscript1 = shift;
2086 my $v = shift;
2087 my $vexist = shift; # 0 is FALSE
2088 my $vpid = shift; # 0 is FALSE
2089 my $snapme = shift; # 0 is FALSE
2090 my $pbstep = shift; # 3 is usage of container
2091
2092 $vexist = 0 if (not defined $vexist);
2093 $vpid = 0 if (not defined $vpid);
2094 $snapme = 0 if (not defined $snapme);
2095 $pbstep = 3 if (not defined $pbstep);
2096 pb_log(2,"DEBUG: pb_send2target($cmt,".Dumper($v).",$vexist,$vpid)\n");
2097 my $host = "sshhost";
2098 my $login = "sshlogin";
2099 my $dir = "sshdir";
2100 my $port = "sshport";
2101 my $conf = "sshconf";
2102 my $tmout = undef;
2103 my $path = undef;
2104
2105 if ($cmt =~ /^VM/) {
2106 $login = "vmlogin";
2107 $dir = "pbdefdir";
2108 # Specific VM
2109 $tmout = "vmtmout";
2110 $path = "vmpath";
2111 $host = "vmhost";
2112 $port = "vmport";
2113 } elsif ($cmt =~ /^RM/) {
2114 $login = "rmlogin";
2115 $dir = "pbdefdir";
2116 # Specific RM
2117 $tmout = "rmtmout";
2118 $path = "rmpath";
2119 $host = "rmhost";
2120 $port = "rmport";
2121 } elsif ($cmt =~ /^VE/) {
2122 $login = "velogin";
2123 $dir = "pbdefdir";
2124 # Specific VE
2125 $path = "vepath";
2126 $conf = "rbsconf";
2127 } elsif ($cmt eq "Web") {
2128 $host = "websshhost";
2129 $login = "websshlogin";
2130 $dir = "websshdir";
2131 $port = "websshport";
2132 } elsif ($cmt eq "CPAN") {
2133 $host = "cpanpause";
2134 $login = "";
2135 $dir = "cpandir";
2136 $port = "";
2137 }
2138 my $cmd = "";
2139 my $src = "";
2140 my $cpanpkg = 0;
2141 my $pbos;
2142
2143 my $pbextdir = pb_get_extdir();
2144
2145 if ($cmt ne "Announce") {
2146 # Get list of packages to build
2147 my $ptr = pb_get_pkg();
2148 my @pkgs = ();
2149 @pkgs = @$ptr if (defined $ptr);
2150
2151 # Get the running distro to consider
2152 $pbos = pb_distro_get_context($v);
2153
2154 my $pkg = { };
2155 # Get content saved in cms2build
2156 if ((defined $ENV{'PBDESTDIR'}) && (defined $ENV{'PBPROJVER'}) && (defined $ENV{'PBPROJTAG'}) && (-f "$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb")) {
2157 ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
2158 $pkg = { } if (not defined $pkg);
2159 }
2160
2161 pb_mkdir_p("$ENV{'PBBUILDDIR'}") if (! -d "$ENV{'PBBUILDDIR'}");
2162 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
2163 foreach my $pbpkg (@pkgs) {
2164 my $vertag = $pkg->{$pbpkg};
2165 # get the version of the current package - maybe different
2166 pb_log(2,"Vertag: $vertag\n");
2167 ($pbver,$pbtag) = split(/-/,$vertag);
2168
2169 if (($cmt eq "Sources") || ($cmt =~ /(V[EM]|RM)(build|prep)/)) {
2170 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz";
2171 my $cmd2 = "ln -sf $pbpkg-$pbver$pbextdir.tar.gz $pbpkg-latest.tar.gz";
2172 #my $cmd2 = "ln $pbpkg-$pbver$pbextdir.tar.gz $pbpkg-latest.tar.gz 2> /dev/null ; if [ \$? -ne 0 ]; then ln -sf $pbpkg-$pbver$pbextdir.tar.gz $pbpkg-latest.tar.gz ; fi";
2173 if ($cmd eq "") {
2174 $cmd = $cmd2;
2175 } else {
2176 $cmd = "$cmd ; $cmd2";
2177 }
2178 } elsif ($cmt eq "Web") {
2179 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz"
2180 }
2181
2182 # Do we have one perl package
2183 my @nametype = pb_conf_get_if("namingtype");
2184 my $type = $nametype[0]->{$pbpkg};
2185 if ((defined $type) && ($type eq "perl")) {
2186 $cpanpkg = 1;
2187 }
2188 }
2189 # Adds conf file for availability of conf elements
2190 pb_conf_add("$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb") if ((defined $ENV{'PBROOTDIR'}) && (-f "$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb"));
2191 }
2192 my ($rbsconf,$testver,$delivery) = pb_conf_get_if($conf,"testver","delivery");
2193 if ($cmt eq "CPAN") {
2194 # Do not deliver on Pause if this is a test version
2195 return if (not defined $testver);
2196 return if ($testver =~ /true/);
2197 # Do not deliver on Pause if this is not a perl package
2198 return if ($cpanpkg == 0);
2199 }
2200
2201 if ($cmt =~ /(V[EM]|RM)(build|prep)/) {
2202 $src="$src $ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb $ENV{'PBETC'} $ENV{'PBDESTDIR'}/pbrc $pbscript{$v}";
2203 } elsif ($cmt =~ /(V[EM]|RM)Script/) {
2204 $src="$src $pbscript{$v}";
2205 } elsif ($cmt =~ /(V[EM]|RM)test/) {
2206 $src="$src $ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb $ENV{'PBETC'} $ENV{'PBDESTDIR'}/pbrc $pbscript{$v} $ENV{'PBDESTDIR'}/pbtest";
2207 } elsif (($cmt eq "Announce") || ($cmt eq "Web") || ($cmt eq "CPAN")) {
2208 $src="$src $ENV{'PBTMP'}/pbscript";
2209 } elsif ($cmt eq "Packages") {
2210 # Get package list from file made during build2pkg
2211 open(KEEP,"$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}") || die "Unable to read $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
2212 $src = <KEEP>;
2213 chomp($src);
2214 close(KEEP);
2215 }
2216 if (($cmt eq "Sources") || ($cmt eq "Packages") || ($cmt eq "CPAN")) {
2217 my ($pbpackager) = pb_conf_get("pbpackager");
2218 $ENV{'PBPACKAGER'} = $pbpackager->{$ENV{'PBPROJ'}};
2219 pb_log(0,"Exporting public key for $ENV{'PBPACKAGER'}\n");
2220 # Using pb_system is not working due to redirection below
2221 system("gpg --export -a \'$ENV{'PBPACKAGER'}\' > $ENV{'PBDESTDIR'}/$ENV{'PBPROJ'}.pubkey");
2222 chmod 0644,"$ENV{'PBDESTDIR'}/$ENV{'PBPROJ'}.pubkey";
2223 $src = "$src $ENV{'PBDESTDIR'}/$ENV{'PBPROJ'}.pubkey";
2224 }
2225 # Remove potential leading spaces (cause problem with basename)
2226 $src =~ s/^ *//;
2227 my $basesrc = "";
2228 foreach my $i (split(/ +/,$src)) {
2229 $basesrc .= " ".basename($i);
2230 }
2231
2232 pb_log(2,"values: ".Dumper(($host,$login,$dir,$port,$tmout,$path,$conf))."\n");
2233 my ($sshhost,$sshdir) = pb_conf_get($host,$dir);
2234 # Not mandatory...
2235 $delivery->{$ENV{'PBPROJ'}} = "" if (not defined $delivery->{$ENV{'PBPROJ'}});
2236 my ($sshlogin,$sshport) = pb_conf_get_if($login,$port);
2237 $sshport->{$ENV{PBPROJ}} = 22 if (not defined $sshport->{$ENV{PBPROJ}});
2238 $sshlogin->{$ENV{PBPROJ}} = getpwuid($UID) if (not defined $sshlogin->{$ENV{PBPROJ}});
2239 my ($vtmout,$vepath);
2240 # ...Except those in virtual context
2241 if ($cmt =~ /^VE/) {
2242 ($vepath) = pb_conf_get($path);
2243 }
2244 if ($cmt =~ /^(V|R)M/) {
2245 $vtmout = pb_distro_get_param($pbos,pb_conf_get_if($tmout));
2246 }
2247 my $remhost = $sshhost->{$ENV{'PBPROJ'}};
2248 my $remdir = $sshdir->{$ENV{'PBPROJ'}};
2249 if ($cmt =~ /^V[EM]|RM/) {
2250 # In that case our real host is in the xxhost with the OS as key, not project as above
2251 $remhost = pb_distro_get_param($pbos,$sshhost);
2252 }
2253 pb_log(2,"ssh: ".Dumper(($remhost,$sshlogin,$remdir,$sshport,$vepath,$rbsconf))."\n");
2254 pb_log(2,"ssh: ".Dumper($vtmout)."\n") if (defined $vtmout);
2255
2256 my $mac;
2257 if ($cmt !~ /^VE/) {
2258 $mac = "$sshlogin->{$ENV{'PBPROJ'}}\@$remhost";
2259 # Overwrite account value if passed as parameter or forced
2260 $mac = "$ENV{'PBACCOUNT'}\@$remhost" if (defined $ENV{'PBACCOUNT'});
2261 } else {
2262 # VE
2263 $mac = $sshlogin->{$ENV{'PBPROJ'}};
2264 # Overwrite account value if passed as parameter (typically for setup2v)
2265 $mac = $ENV{'PBACCOUNT'} if (defined $ENV{'PBACCOUNT'});
2266 }
2267 pb_log(2, "DEBUG: mac: $mac\n");
2268
2269 my $tdir;
2270 my $bdir;
2271 if (($cmt eq "Sources") || ($cmt =~ /(V[EM]|RM)Script/)) {
2272 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/src";
2273 } elsif ($cmt eq "CPAN") {
2274 $tdir = "$remdir";
2275 } elsif ($cmt =~ /(V[EM]|RM)(build|test|prep)/) {
2276 $tdir = $remdir."/$ENV{'PBPROJ'}/pbdelivery";
2277 $bdir = $remdir."/$ENV{'PBPROJ'}/pbbuild";
2278 # Remove a potential $ENV{'HOME'} as bdir should be relative to pb's home
2279 $bdir =~ s|\$ENV.+\}/||;
2280 } elsif ($cmt eq "Announce") {
2281 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}";
2282 } elsif ($cmt eq "Web") {
2283 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}";
2284 } elsif ($cmt eq "Packages") {
2285 if (($pbos->{'type'} eq "rpm") || ($pbos->{'type'} eq "pkg") || ($pbos->{'type'} eq "hpux") || ($pbos->{'type'} eq "tgz")) {
2286 # put packages under an arch subdir
2287 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}";
2288 } elsif (($pbos->{'type'} eq "deb") || ($pbos->{'type'} eq "ebuild")) {
2289 # No need for an arch subdir
2290 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}";
2291 } else {
2292 die "Please teach the dev team where to deliver ($pbos->{'type'} type of packages\n";
2293 }
2294
2295 my $repodir = $tdir;
2296 $repodir =~ s|^$remdir/||;
2297 my $repotag = "";
2298 $repotag = "-$delivery->{$ENV{'PBPROJ'}}" if ($delivery->{$ENV{'PBPROJ'}} ne "");
2299
2300 my ($pbrepo) = pb_conf_get("pbrepo");
2301
2302 # Script for Repository management
2303 $pbscript{$v} = "$ENV{'PBBUILDDIR'}/pbscript.$$";
2304
2305 # That script should be part of the delivery
2306 $src = "$src $pbscript{$v}";
2307 open(PBS,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
2308 if ($pbos->{'type'} eq "rpm") {
2309 my $pbsha = pb_distro_get_param($pbos,pb_conf_get("ossha"));
2310 my $gpgcheck = pb_conf_get_if("pbgpgcheck");
2311 my $pbgpgcheck;
2312 $pbgpgcheck = $gpgcheck->{$ENV{PBPROJ}} if (defined $gpgcheck);
2313 # By default force GPG check in repo even if we support signature of packages to fail. This is a best practice
2314 $pbgpgcheck = 1 if (not defined $pbgpgcheck);
2315 # Also make a pbscript to generate dnf/yum/urpmi bases
2316 print PBS << "EOF";
2317#!/bin/bash
2318# Prepare a script to ease dnf/yum setup
2319EOF
2320 print PBS "set -x\n" if ($pbdebug gt 1);
2321 print PBS << "EOF";
2322cat > $ENV{'PBPROJ'}$repotag.repo << EOT
2323[$ENV{'PBPROJ'}$repotag]
2324name=$pbos->{'name'} $pbos->{'version'} $pbos->{'arch'} - $ENV{'PBPROJ'} Vanilla Packages
2325baseurl=$pbrepo->{$ENV{'PBPROJ'}}/$repodir
2326enabled=1
2327gpgcheck=$pbgpgcheck
2328gpgkey=$pbrepo->{$ENV{'PBPROJ'}}/$repodir/$ENV{'PBPROJ'}.pubkey
2329EOT
2330chmod 644 $ENV{'PBPROJ'}$repotag.repo
2331
2332# Clean up old repo content
2333rm -rf headers/ repodata/
2334# Create yum repo
2335if [ -x /usr/bin/yum-arch ]; then
2336 yum-arch .
2337fi
2338# Create repodata
2339createrepo -s $pbsha .
2340# Link to the key
2341if [ -s $ENV{'PBPROJ'}.pubkey ]; then
2342 # Avoiding creating empty repomd.xml.key; fails on opensuse 12.1
2343 (cd repodata ; ln -sf ../$ENV{'PBPROJ'}.pubkey repomd.xml.key)
2344fi
2345# sign the repomd (at least useful for SLES - which requires a local key)
2346# gpg -a --detach-sign repodata/repomd.xml
2347# SLES also looks for media.1/info.txt
2348EOF
2349 if ($pbos->{'family'} eq "md") {
2350 # For Mandriva add urpmi management
2351 print PBS << "EOF";
2352# Prepare a script to ease urpmi setup
2353cat > $ENV{'PBPROJ'}$repotag.addmedia << EOT
2354#rpm --import $pbrepo->{$ENV{'PBPROJ'}}/$repodir/$ENV{'PBPROJ'}.pubkey
2355urpmi.addmedia $ENV{'PBPROJ'}$repotag $pbrepo->{$ENV{'PBPROJ'}}/$repodir with media_info/hdlist.cz
2356EOT
2357chmod 755 $ENV{'PBPROJ'}$repotag.addmedia
2358
2359# Clean up old repo content
2360rm -f hdlist.cz synthesis.hdlist.cz
2361# Create urpmi repo
2362genhdlist2 --clean .
2363if [ \$\? -ne 0 ]; then
2364 genhdlist .
2365fi
2366(cd media_info ; ln -sf ../$ENV{'PBPROJ'}.pubkey pubkey)
2367EOF
2368 }
2369 if ($pbos->{'name'} eq "fedora") {
2370 # Extract the spec file to please Fedora maintainers :-(
2371 print PBS << "EOF";
2372for p in $basesrc; do
2373 echo \$p | grep -q 'src.rpm'
2374 if [ \$\? -eq 0 ]; then
2375 rpm2cpio \$p | cpio -ivdum --quiet '*.spec'
2376 fi
2377done
2378EOF
2379 }
2380 if ($pbos->{'family'} eq "novell") {
2381 # Add ymp scripts for one-click install on SuSE
2382 print PBS << "EOF";
2383# Prepare a script to ease SuSE one-click install
2384# Cf: http://de.opensuse.org/1-Klick-Installation/ISV
2385#
2386cat > $ENV{'PBPROJ'}$repotag.ymp << EOT
2387<?xml version="1.0" encoding="utf-8"?>
2388<!-- vim: set sw=2 ts=2 ai et: -->
2389<metapackage xmlns:os="http://opensuse.org/Standards/One_Click_Install" xmlns="http://opensuse.org/Standards/One_Click_Install">
2390 <group><!-- The group of software, typically one for project-builder.org -->
2391 <name>$ENV{'PBPROJ'} Bundle</name> <!-- Name of the software group -->
2392 <summary>Software bundle for the $ENV{'PBPROJ'}$repotag project</summary> <!--This message is shown to the user and should describe the whole bundle -->
2393 <description>This is the summary of the $ENV{'PBPROJ'}$repotag Project
2394
2395 Details are available on a per package basis below
2396
2397 </description><!--This is also shown to the user -->
2398 <remainSubscribed>false</remainSubscribed> <!-- Don't know what it mean -->
2399 <repositories><!-- List of needed repositories -->
2400 <repository>
2401 <name>$ENV{'PBPROJ'}$repotag Repository</name> <!-- Name of the repository -->
2402 <summary>This repository contains the $ENV{'PBPROJ'}$repotag project packages.</summary> <!-- Summary of the repository -->
2403 <description>This repository contains the $ENV{'PBPROJ'}$repotag project packages.</description><!-- This description is shown to the user -->
2404 <url>$pbrepo->{$ENV{'PBPROJ'}}/$repodir</url><!--URL of repository, which is added -->
2405 </repository>
2406 </repositories>
2407 <software><!-- A List of packages, which should be added through the one-click-installation -->
2408EOT
2409for p in $basesrc; do
2410 sum=`rpm -q --qf '%{SUMMARY}' \$p`
2411 name=`rpm -q --qf '%{NAME}' \$p`
2412 desc=`rpm -q --qf '%{description}' \$p`
2413 cat >> $ENV{'PBPROJ'}$repotag.ymp << EOT
2414 <item>
2415 <name>\$name</name><!-- Name of the package, is shown to the user and used to identify the package at the repository -->
2416 <summary>\$sum</summary> <!-- Summary of the package -->
2417 <description>\$desc</description> <!-- Description, is shown to the user -->
2418 </item>
2419EOT
2420done
2421cat >> $ENV{'PBPROJ'}$repotag.ymp << EOT
2422 </software>
2423 </group>
2424</metapackage>
2425EOT
2426chmod 644 $ENV{'PBPROJ'}$repotag.ymp
2427EOF
2428 }
2429 } elsif ($pbos->{'type'} eq "deb") {
2430 # Also make a pbscript to generate apt bases
2431 # Cf: http://www.debian.org/doc/manuals/repository-howto/repository-howto.fr.html
2432 # This dirname removes ver
2433 my $debarch = pb_get_debarch($pbos);
2434 my $projcomponent = pb_get_debpc($pbos);
2435 my $rpd = dirname("$pbrepo->{$ENV{'PBPROJ'}}/$repodir");
2436 # Remove extra . in path to fix #522
2437 $rpd =~ s|/./|/|g;
2438 print PBS << "EOF";
2439#!/bin/bash
2440# Prepare a script to ease apt setup
2441cat > $ENV{'PBPROJ'}$repotag.sources.list << EOT
2442deb $rpd $pbos->{'version'} $projcomponent
2443deb-src $rpd $pbos->{'version'} $projcomponent
2444EOT
2445chmod 644 $ENV{'PBPROJ'}$repotag.sources.list
2446
2447# Up two levels to deal with the dist dir cross versions
2448cd ..
2449mkdir -p dists/$pbos->{'version'}/$projcomponent/binary-$debarch dists/$pbos->{'version'}/$projcomponent/source
2450
2451# Prepare a script to create apt info file
2452# Reuse twice after
2453TMPD=`mktemp -d /tmp/pb.XXXXXXXXXX` || exit 1
2454mkdir -p \$TMPD
2455cat > \$TMPD/Release << EOT
2456Archive: unstable
2457Component: $projcomponent
2458Origin: $ENV{'PBPROJ'}$repotag
2459Label: $ENV{'PBPROJ'}$repotag dev repository $pbrepo->{$ENV{'PBPROJ'}}
2460EOT
2461
2462echo "Creating Packages metadata"
2463for i in dists/$pbos->{version}/$projcomponent/binary-*; do
2464 arch=`basename \$i | sed 's/binary-//'`
2465 echo "Packages for \$arch:"
2466 dpkg-scanpackages -a\$arch $pbos->{'version'} /dev/null > dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages
2467 gzip -9 < dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages > dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages.gz
2468 bzip2 -9 < dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages > dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages.bz2
2469done
2470echo "Creating Contents metadata"
2471apt-ftparchive contents $pbos->{'version'} | gzip -c9 > dists/$pbos->{'version'}/Contents.gz
2472echo "Creating Release metadata ($pbos->{'arch'} aka $debarch)"
2473cat \$TMPD/Release > dists/$pbos->{'version'}/$projcomponent/binary-$debarch/Release
2474echo "Architecture: $debarch" >> dists/$pbos->{'version'}/$projcomponent/binary-$debarch/Release
2475echo "Creating Source metadata"
2476dpkg-scansources $pbos->{'version'} /dev/null > dists/$pbos->{'version'}/$projcomponent/source/Sources
2477gzip -9 < dists/$pbos->{'version'}/$projcomponent/source/Sources > dists/$pbos->{'version'}/$projcomponent/source/Sources.gz
2478bzip2 -9 < dists/$pbos->{'version'}/$projcomponent/source/Sources > dists/$pbos->{'version'}/$projcomponent/source/Sources.bz2
2479cat \$TMPD/Release > dists/$pbos->{'version'}/$projcomponent/source/Release
2480echo "Architecture: Source" >> dists/$pbos->{'version'}/$projcomponent/source/Release
2481echo "Creating Release metadata"
2482apt-ftparchive -o APT::FTPArchive::Release::Suite=$pbos->{version} release dists/$pbos->{'version'} > dists/$pbos->{'version'}/Release
2483rm -rf \$TMPD
2484EOF
2485 } elsif ($pbos->{'type'} eq "ebuild") {
2486 # make a pbscript to generate links to latest version
2487 print PBS << "EOF";
2488#!/bin/bash
2489# Prepare a script to create correct links
2490cd $tdir
2491for p in $src; do
2492 echo \$p | grep -q '.ebuild'
2493 if [ \$\? -eq 0 ]; then
2494 j=`basename \$p`
2495 pp=`echo \$j | perl -pe 's/-[0-9\.]+-r[0-9].*\.ebuild/.ebuild/'`
2496 ln -sf \$j \$pp
2497 fi
2498done
2499EOF
2500 }
2501 close(PBS);
2502 chmod 0755,$pbscript{$v};
2503 } else {
2504 return;
2505 }
2506
2507 # Useless for VE
2508 my $nport = pb_get_port($sshport,$pbos,$cmt) if ($cmt !~ /^VE/);
2509
2510 # Remove a potential $ENV{'HOME'} as tdir should be relative to pb's home
2511 if ($cmt =~ /^VE/o) {
2512 $tdir =~ s|\$ENV.+\}/|| or confess "for $cmt: $tdir must have \$ENV{'HOME'} in it or the remainder of the code won't work since some parts use relative pathing and others will try absolute. Use a symlink if necessary to place the real files in a different place than under your home directory";
2513 } else {
2514 # process, ok if not present.
2515 $tdir =~ s|\$ENV.+\}/||;
2516 }
2517
2518 my $tm = "";
2519 if ($cmt =~ /^(V|R)M/) {
2520 $tm = "sleep $vtmout" if (defined $vtmout);
2521 }
2522
2523 # ssh communication if not VE or CPAN
2524 # should use a hash instead...
2525 my ($shcmd,$shcmdroot,$cpcmd,$cptarget,$cp2target);
2526 my $tpdir;
2527 my $tp;
2528 my $context = "$ENV{'PBTMP'}";
2529 my %tag;
2530 my $dkaccount = "";
2531 my $cmd1 = "";
2532 my $cidfile = "$context/ctn-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}.cid";
2533 my $homedir = "";
2534 if ($cmt =~ /^VE/) {
2535 $tp = pb_path_expand($vepath->{$ENV{'PBPROJ'}});
2536 $vetype = pb_ve_get_type($vetype);
2537 if ($vetype eq "docker") {
2538 $tpdir = "/";
2539 } else {
2540 $tpdir = pb_path_expand("$tp/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
2541 }
2542 my $arch = pb_get_arch();
2543 if ($vetype eq "chroot") {
2544 $shcmdroot = "sudo /usr/sbin/chroot $tpdir ";
2545 $shcmd = "$shcmdroot /bin/su - $mac -c ";
2546 } elsif ($vetype eq "schroot") {
2547 $shcmd = "schroot $tp -u $mac -- ";
2548 } elsif ($vetype eq "docker") {
2549 # docker manages the storage so rely on it
2550 $shcmdroot = "";
2551 my $docrepo = pb_ve_docker_repo();
2552 $cmd1 = pb_check_req("docker",0);
2553 #my ($dockeropt) = pb_conf_get_if("dockeropt");
2554 # pbimage is used for docker and is setup to the right name depending on the step:
2555 # TODO: This is not coded yet
2556 my $pbimage = undef;
2557 # step 0 : nothing at creation -> tag n-v-a (made in VE.pm)
2558 # step 1 : n-v-a + setup -> tag n-v-a-pb
2559 # step 2 : n-v-a-pb + build -> tag n-v-a-pb-pbproj
2560 # step 3 : n-v-a-pb-pbproj at use
2561 if ((not defined $pbimage) || ($pbimage eq "")) {
2562 # If no image name given, create a naming convention
2563 $tag{1} = "$docrepo$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
2564 $tag{2} = "$tag{1}-pb";
2565 $tag{3} = "$tag{2}-$ENV{'PBPROJ'}";
2566 } else {
2567 # If we were given an image name, just use it
2568 $tag{1} = $pbimage;
2569 $tag{2} = $pbimage;
2570 $tag{3} = $pbimage;
2571 }
2572 # If we do not create the image, then use the one we should have
2573 # TODO: we don't do anything with found !!
2574 my $found = pb_ve_docker_get_image($tag{$pbstep});
2575 confess "No image $tag{$pbstep} available in Docker, please create one first\n" if (not defined $found);
2576 # Now we use that image to do what is needed
2577 # use a dockerfile to ease the creation of next images
2578 # the context is in an empty temp dir
2579 my $tmpd = "$context/Dockerfile";
2580 open(DOCKER, "> $tmpd") || die "Unable to create the docker file $tmpd";
2581 print DOCKER "FROM $tag{$pbstep}\n";
2582 print DOCKER "MAINTAINER project-builder.org aka pb\n";
2583 if ($pbstep == 1) {
2584 # setup done as root
2585 $dkaccount = "root";
2586 } else {
2587 # Rest done as pb
2588 $dkaccount = "pb";
2589 }
2590 print DOCKER "USER $dkaccount\n";
2591 if ($pbstep <= 2) {
2592 $shcmd = "$cmd1 build -t $tag{$pbstep+1} $context";
2593 } else {
2594 # As we are in run phase use docker run. cmd will be completed below
2595 $shcmd = "$cmd1 run --cidfile=\"$cidfile\" --user $dkaccount --name $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-$cmt";
2596 }
2597 #$shcmd = "$cmd1 build $dockeropt->{$ENV{'PBPROJ'}} -t $tag{$pbstep+1} $context";
2598 }
2599 $shcmd = "setarch i386 $shcmd" if (($pbos->{'arch'} =~ /i[3456]86/) && ($arch eq 'x86_64'));
2600 if (($cmt =~ /VE/) && ($vetype ne "docker")) {
2601 # We need to get the home dir of the target account to deliver in the right place
2602 open(PASS,"$tpdir/etc/passwd") || die "Unable to open $tpdir/etc/passwd: $!";
2603 while (<PASS>) {
2604 my ($c1,$c2,$c3,$c4,$c5,$c6,$c7) = split(/:/);
2605 $homedir = $c6 if ($c1 =~ /^$mac$/);
2606 pb_log(3,"Homedir: $homedir - account: $c6\n");
2607 }
2608 close(PASS);
2609 $cpcmd = "sudo /bin/cp -r ";
2610 }
2611 if (($cmt =~ /VE/) && ($vetype eq "docker")) {
2612 if ($pbstep >= 2) {
2613 # We need to get the home dir of the target account to deliver in the right place
2614 $homedir = `$cmd1 run --cidfile="$cidfile" $tag{$pbstep} grep -E '^$dkaccount:' /etc/passwd | cut -d: -f6`;
2615 chomp($homedir);
2616 open(CID,"$cidfile") || confess "Unable to open $cidfile";
2617 my $cid = <CID>;
2618 close(CID);
2619 pb_system("$cmd1 rm $cid","","quiet");
2620 unlink("$cidfile");
2621 } else {
2622 $homedir = "/";
2623 }
2624 $cpcmd = "cp -r ";
2625 }
2626 $cptarget = "$tpdir/$homedir/$tdir";
2627 if ($cmt =~ /VE(build|prep)/) {
2628 $cp2target = "$tpdir/$homedir/$bdir";
2629 }
2630 pb_log(2,"On VE using $cptarget as target dir to copy to\n");
2631 } elsif ($cmt eq "CPAN") {
2632 my $ftpput = pb_check_req("ncftpput",1);
2633 my $ftpget = pb_check_req("wget",1);
2634 my ($cpanuser,$cpanpasswd) = pb_conf_get_if("cpanuser","cpanpasswd");
2635 return if ((not defined $cpanuser) || (not defined $cpanuser->{$ENV{'PBPROJ'}}));
2636 return if ((not defined $cpanpasswd) || (not defined $cpanpasswd->{$ENV{'PBPROJ'}}));
2637 my ($cpansubdir) = pb_conf_get_if("cpansubdir");
2638 $shcmd = "$ftpget --post-data \'HIDDENNAME=".$cpanuser->{$ENV{'PBPROJ'}};
2639 $shcmd .= "&user=".$cpanuser->{$ENV{'PBPROJ'}};
2640 $shcmd .= "&password=".$cpanpasswd->{$ENV{'PBPROJ'}};
2641 $shcmd .= "&SUBMIT_pause99_add_uri_upload=\"Upload the checked files\"";
2642 $shcmd .= "&pause99_add_uri_subdirtext=".$cpansubdir->{$ENV{'PBPROJ'}} if ((defined $cpansubdir) && (defined $cpansubdir->{$ENV{'PBPROJ'}}));
2643 foreach my $s (split(/ /,$src)) {
2644 $shcmd .= "&pause99_add_uri_upload=".basename($s);
2645 }
2646 $shcmd .= "'";
2647 $cpcmd = "$ftpput $host $dir";
2648 $cptarget = "CPAN";
2649 } else {
2650 my $keyopt = "";
2651 if ($cmt !~ /Packages/) {
2652 my $keyfile = pb_ssh_get(0,$remhost,$nport);
2653 $keyopt = "-i $keyfile" if (defined $keyfile);
2654 }
2655 my $sshcmd = pb_check_req("ssh",1);
2656 my $scpcmd = pb_check_req("scp",1);
2657 $shcmd = "$sshcmd $keyopt -q -o NoHostAuthenticationForLocalhost=yes -p $nport $mac";
2658 $cpcmd = "$scpcmd $keyopt -p -o NoHostAuthenticationForLocalhost=yes -P $nport";
2659 $cptarget = "$mac:$tdir";
2660 if ($cmt =~ /^(V|R)M(build|prep)/) {
2661 $cp2target = "$mac:$bdir";
2662 }
2663 }
2664
2665 my $logres = "";
2666 # Do not touch when just announcing
2667 if (($cmt ne "Announce") && ($cmt ne "CPAN")) {
2668 # For docker everything is done in the Dockerfile for steps < 3
2669 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
2670 print DOCKER "RUN mkdir -p $cptarget\n";
2671 print DOCKER "RUN cd $cptarget ; for i in $basesrc; do if [ -f \$i ]; then rm -f \$i; fi; done\n";
2672 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2673 # Nothing to do here
2674 } else {
2675 pb_system("$shcmd \"mkdir -p $tdir ; cd $tdir ; echo \'for i in $basesrc; do if [ -f \$i ]; then rm -f \$i; fi; done ; $cmd\' | bash -e\"","Preparing $tdir on $cptarget");
2676 }
2677 } else {
2678 $logres = "> ";
2679 }
2680
2681 if ($cmt =~ /SandBox/) {
2682 # Install from sandbox mean using the result of the just passed sbx2build command
2683 # Get content saved in cms2build
2684 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
2685 my $pbextdir = pb_get_extdir();
2686 confess "Unable to get package list" if (not defined $pkg);
2687
2688 # We consider 2 specific packages
2689 my $vertag1 = $pkg->{"ProjectBuilder"};
2690 my $vertag2 = $pkg->{"project-builder"};
2691 # get the version of the current package - maybe different
2692 pb_log(2,"Vertag1: $vertag1\n");
2693 pb_log(2,"Vertag2: $vertag2\n");
2694 my ($pbver1,$tmp1) = split(/-/,$vertag1);
2695 my ($pbver2,$tmp2) = split(/-/,$vertag2);
2696 if ($cmt =~ /VE/) {
2697 # Copy inside the VE
2698 if ($vetype ne "docker") {
2699 copy("$ENV{'PBDESTDIR'}/ProjectBuilder-$pbver1$pbextdir.tar.gz","$tpdir/tmp");
2700 copy("$ENV{'PBDESTDIR'}/project-builder-$pbver2$pbextdir.tar.gz","$tpdir/tmp");
2701 } else {
2702 copy("$ENV{'PBDESTDIR'}/ProjectBuilder-$pbver1$pbextdir.tar.gz","$context");
2703 copy("$ENV{'PBDESTDIR'}/project-builder-$pbver2$pbextdir.tar.gz","$context");
2704 print DOCKER "COPY ProjectBuilder-$pbver1$pbextdir.tar.gz /tmp/\n";
2705 print DOCKER "COPY project-builder-$pbver2$pbextdir.tar.gz /tmp/\n";
2706 }
2707 } else {
2708 pb_system("$cpcmd $ENV{'PBDESTDIR'}/ProjectBuilder-$pbver1$pbextdir.tar.gz $ENV{'PBDESTDIR'}/project-builder-$pbver2$pbextdir.tar.gz $mac:/tmp","Copying local project files to VM/RM");
2709 }
2710 }
2711
2712 pb_log(0,"Sources handled ($cmt): $src\n");
2713 # For docker everything is done in the Dockerfile
2714 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
2715 foreach my $f (split(/ +/,$src)) {
2716 copy("$f","$context");
2717 print DOCKER "COPY ".basename($f)." $cptarget/\n";
2718 }
2719 print DOCKER "RUN cd $cptarget ; $cmd\n" if ((defined $cmd) && ($cmd ne ""));
2720 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2721 # Nothing to do
2722 } else {
2723 pb_system("cd $ENV{'PBBUILDDIR'} ; $cpcmd $src $cptarget 2> /dev/null","$cmt delivery in $cptarget");
2724 }
2725
2726 # For VE we need to change the owner manually
2727 if ($cmt =~ /^VE/) {
2728 if ($vetype ne "docker") {
2729 my $sudomode = pb_distro_get_param($pbos,pb_conf_get("ossudoersmode"));
2730 my $res = pb_system("$shcmdroot sed -i '/requiretty/d' /etc/sudoers","Removing potential requiretty in sudoers","quiet");
2731 pb_system("$shcmdroot sed '/requiretty/d' /etc/sudoers > /tmp/sudoers.new ; mv /tmp/sudoers.new $tpdir/tmp/sudoers.new ; $shcmdroot mv /tmp/sudoers.new /etc/sudoers ; $shcmdroot chown root:root /etc/sudoers ; $shcmdroot chmod $sudomode /etc/sudoers","Removing again potential requiretty in sudoers as sed -i failed") if (($res ne 0) && (-f "$tpdir/etc/sudoers"));
2732 pb_system("$shcmd \"sudo chown -R $mac $tdir\"","Adapt owner in $tdir to $mac");
2733 } else {
2734 print DOCKER "RUN sed -i '/requiretty/d' /etc/sudoers\n" if ($pbstep == 1);
2735 }
2736 }
2737
2738 # Use the right script name depending on context
2739 my $pbscript2;
2740 if (($cmt =~ /^(V[EM]|RM)/) || ($cmt =~ /Packages/)){
2741 $pbscript2 = $pbscript{$v};
2742 } else {
2743 $pbscript2 = "pbscript";
2744 }
2745
2746 # It's already ready for CPAN
2747 my $shcmdbase = $shcmd;
2748 my $dkcmd;
2749 if ($cmt ne "CPAN") {
2750 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
2751 copy("$pbscript2","$context");
2752 my $s = basename($pbscript2);
2753 print DOCKER "COPY $s $cptarget/\n";
2754 # call directly with perl to avoid text file busy error messages
2755 print DOCKER "RUN cd $cptarget ; perl ./$s ; if [ '$pbkeep' = '0' ]; then rm -f $s; fi\n";
2756 print DOCKER "RUN rm -rf $cptarget/*\n";
2757 print DOCKER "RUN chown -R $dkaccount $cptarget\n" if ($pbstep == 1);
2758 close(DOCKER);
2759 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2760 $dkcmd = "/bin/bash $homedir/$tdir-2/".basename($pbscript2);
2761 } else {
2762 my $s = basename($pbscript2);
2763 $shcmd .= " \"echo \'cd $tdir ; if [ -x $s ]; then ./$s; fi ; if [ $pbkeep == 0 ]; then rm -f $s; fi\' | bash\"";
2764 }
2765 }
2766 my $cmdverb = "verbose";
2767 if (($cmt eq "Announce") || ($cmt eq "CPAN")) {
2768 $cmdverb = undef;
2769 } elsif (defined ($v)) {
2770 $cmdverb = "verbose_\[$v\] ";
2771 }
2772 # this is where we launch the execution
2773 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2774 pb_mkdir_p("$ENV{'PBTMP'}/vebuild");
2775 my $tsrc = "";
2776 foreach my $f (split(/ +/,$src)) {
2777 copy("$f","$ENV{'PBTMP'}/vebuild");
2778 $tsrc .= " ".basename($f);
2779 }
2780 my $ts = "$ENV{'PBTMP'}/vebuild/".basename($pbscript2);
2781 open(DOCKER," > $ts") || confess "Unable to create $ts";
2782 print DOCKER "#!/bin/bash\n";
2783 print DOCKER "# Put content from host to guest, copying to have the correct uid/gid and rights to do so\n";
2784 print DOCKER "# set -x\n";
2785 print DOCKER "for i in $tsrc; do\n";
2786 print DOCKER " # Cleanup first to avoid rights issues for root owned files e.g.\n";
2787 print DOCKER " rm -f $homedir/$tdir/\$i\n";
2788 print DOCKER " cp $homedir/$tdir-2/\$i $homedir/$tdir\n";
2789 print DOCKER "done\n";
2790 print DOCKER "(cd $homedir/$tdir-2 ; ls -al)\n";
2791 print DOCKER pb_get_content($pbscript2);
2792 print DOCKER "\n# Get content back from guest in a host dir\n";
2793 # Host dir seen as TDIR in container
2794 $cp2target = "$ENV{'PBBUILDDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
2795 pb_mkdir_p("$cp2target");
2796 chmod 0777,"$cp2target";
2797 print DOCKER "TDIR=$homedir/$bdir-2/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}\n";
2798 print DOCKER "for i in $homedir/$bdir/*; do\n";
2799 print DOCKER " # Cleanup first to avoid rights issues for root owned files e.g.\n";
2800 print DOCKER " j=\`basename \$i\`\n";
2801 print DOCKER " rm -f \$TDIR/\$j\n";
2802 print DOCKER " cp -r \$i \$TDIR\n";
2803 print DOCKER "done\n";
2804 print DOCKER "find \$TDIR -type f -print0 | xargs -0 chmod 644\n";
2805 print DOCKER "find \$TDIR -type d -print0 | xargs -0 chmod 777 2> /dev/null\n";
2806 #print DOCKER "ls -al \$TDIR\n";
2807 print DOCKER "exit 0\n";
2808 close(DOCKER);
2809 $shcmd .= " -v $ENV{'PBBUILDDIR'}:$homedir/$bdir-2 -v $ENV{'PBTMP'}/vebuild:$homedir/$tdir-2 -w $homedir/$tdir-2 $tag{$pbstep} $dkcmd";
2810 }
2811 my $ret = pb_system("$shcmd","Executing pbscript on $cptarget if needed",$cmdverb);
2812
2813 # If target is deb family then sign Release file for Packages
2814 my $pbos2 = pb_distro_get_context($v);
2815 if (($cmt =~ /Packages/) && ($pbos2->{'type'} eq "deb")) {
2816 my $debarch = pb_get_debarch($pbos2);
2817 my $projcomponent = pb_get_debpc($pbos2);
2818 for my $f ("dists/$pbos2->{'version'}/$projcomponent/binary-$debarch/Release","dists/$pbos2->{'version'}/$projcomponent/source/Release","dists/$pbos2->{'version'}/Release") {
2819 my $debdir = dirname($cptarget);
2820 pb_system("cd $ENV{'PBBUILDDIR'} ; $cpcmd $debdir/$f . 2> /dev/null","Getting deb $f file from $debdir");
2821 pb_sign_file("$ENV{'PBBUILDDIR'}/Release");
2822 pb_system("$cpcmd $ENV{'PBBUILDDIR'}/Release.gpg $debdir/$f.gpg 2> /dev/null","Putting deb $f.gpg file to $debdir");
2823 }
2824 }
2825
2826 if ($cmt =~ /^(V[EM]|RM)build/) {
2827 # Get back info on pkg produced, compute their name and get them from the VM/RM
2828 pb_system("$cpcmd $cp2target/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'} $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$ 2> /dev/null","Get package names in $cp2target");
2829 if (not -f "$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$") {
2830 pb_log(0,"ERROR with VM/RM $v on getting $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$\n");
2831 } else {
2832 open(KEEP,"$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$") || die "Unable to read $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$";
2833 my $src = <KEEP>;
2834 chomp($src);
2835 close(KEEP);
2836 unlink("$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$");
2837
2838 $src =~ s/^ *//;
2839 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
2840 # Change pgben to make the next send2target happy
2841 my $made = "";
2842
2843 # For VM/RM we don't want shell expansion to hapen locally but remotely
2844 my $delim = '\'';
2845 if ($cmt =~ /^VEbuild/) {
2846 # For VE we need to support shell expansion locally
2847 $delim = "";
2848 }
2849
2850 open(KEEP,"> $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}") || die "Unable to write $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
2851 foreach my $p (split(/ +/,$src)) {
2852 my $j = basename($p);
2853 pb_system("$cpcmd $cp2target/$delim$p$delim $ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'} 2> /dev/null","Recovery of package $j in $ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
2854 $made="$made $pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}/$j"; # if (($pbos->{'type'} ne "rpm") || ($j !~ /.src.rpm$/));
2855 }
2856
2857 print KEEP "$made\n";
2858 close(KEEP);
2859 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2860 pb_rm_rf("$cp2target");
2861 pb_system("$cmd1 rm $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-$cmt","","quiet");
2862 } else {
2863 pb_system("$shcmdbase \"rm -rf $tdir $bdir\"","$cmt cleanup");
2864 }
2865
2866 # Sign packages locally
2867 pb_sign_pkgs($pbos,$made);
2868
2869 # We want to send them to the ssh account so overwrite what has been done before
2870 pb_log(2,"Before sending pkgs, vexist: $vexist, vpid: $vpid\n");
2871 pb_send2target("Packages","$ENV{'PBDESTDIR'}/pbscript.$$",$pbos->{'name'}."-".$pbos->{'version'}."-".$pbos->{'arch'},$vexist,$vpid);
2872 pb_rm_rf("$ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
2873 }
2874 }
2875 unlink("$pbscript{$v}") if ((($cmt =~ /^(V[ME]|RM)/) || ($cmt =~ /Packages/)) && ($pbkeep eq 0) && ($cmt !~ /Script/));
2876
2877 pb_log(2,"Before halt, vexist: $vexist, vpid: $vpid\n");
2878 if ((! $vexist) && ($cmt =~ /^VM/)) {
2879 # If in setupvm then takes a snapshot just before halting
2880 if ($snapme != 0) {
2881 my ($vmmonport,$vmtype) = pb_conf_get("vmmonport","vmtype");
2882 # For monitoring control
2883 if ((($vmtype->{$ENV{'PBPROJ'}}) eq "kvm") || (($vmtype->{$ENV{'PBPROJ'}}) eq "qemu")) {
2884 eval
2885 {
2886 require Net::Telnet;
2887 Net::Telnet->import();
2888 };
2889 if ($@) {
2890 # Net::Telnet not found
2891 pb_log(1,"ADVISE: Install Net::Telnet to benefit from monitoring control and snapshot feature.\nWARNING: No snapshot created");
2892 } else {
2893 my $t = new Net::Telnet (Timeout => 120, Host => "localhost", Port => $vmmonport->{$ENV{'PBPROJ'}}) || die "Unable to dialog on the monitor";
2894 # move to monitor mode
2895 my @lines = $t->cmd("c");
2896 # Create a snapshot named pb
2897 @lines = $t->cmd("savevm pb");
2898 # Write the new status in the VM
2899 @lines = $t->cmd("commit all");
2900 # End
2901 @lines = $t->cmd("quit");
2902 }
2903 }
2904 }
2905 my $hoption = "-p";
2906 my $hpath = pb_distro_get_param($pbos,pb_conf_get("ospathcmd-halt"));
2907 # Solaris doesn't support -p of halt
2908 if ($pbos->{'type'} eq "pkg") {
2909 $hoption = "" ;
2910 }
2911 pb_system("$shcmdbase \"sudo $hpath $hoption \"; $tm ; echo \'if [ -d /proc/$vpid ]; then kill -9 $vpid; fi \' | bash ; sleep 10","VM $v halt (pid $vpid)");
2912 }
2913 if (($cmt =~ /^VE/) && ($snapme != 0)) {
2914 if ($vetype eq "docker") {
2915 foreach my $f (split(/ +/,$src)) {
2916 unlink("$context/$f");
2917 }
2918 } else {
2919 pb_ve_snap($pbos,$tp);
2920 }
2921 }
2922}
2923
2924sub pb_script2v {
2925
2926my $pbscript=shift;
2927my $vtype=shift;
2928my $pbstep=shift; # Which step are we in (0: create, 1: setup pb, 2: prep pbproj, 3: use to build)
2929my $pbforce=shift; # Force stop of VM. Default not.
2930my $snapme=shift; # Do we have to create a snapshot. Default not.
2931my $pbimage=shift; # Which image to use to start the VM/VE
2932
2933$pbforce = 0 if (not defined $pbforce);
2934$snapme = 0 if (not defined $snapme);
2935$pbstep = 3 if (not defined $pbstep);
2936
2937pb_log(2,"DEBUG: pb_script2v($vtype,$pbstep,$pbforce,$snapme)\n");
2938pb_log(2,"DEBUG: pb_script2v(pbscript: ".Dumper($pbscript)."\n") if (defined $pbscript);
2939pb_parallel_launchv($pbscript,$vtype,uc($vtype)."Script",$pbstep,$pbimage,$pbforce,$snapme,$pbsnap);
2940}
2941
2942sub pb_parallel_launchv {
2943
2944my $pbscript=shift;
2945my $vtype = shift;
2946my $action = shift; # It an action is defined then use send2target
2947my $pbstep=shift; # Which step are we in (0: create, 1: setup, 2: build 3: use)
2948my $pbimage=shift; # Which image to use to start the VM/VE
2949my $pbforce=shift; # Force stop of VM. Default not.
2950my $snapme = shift; # By default do not snap a VM/VE/RM
2951my $usesnap = shift; # By default study the usage of the snapshot feature of VM/VE/RM
2952my $vm;
2953my $all;
2954
2955$pbforce = 0 if (not defined $pbforce);
2956$snapme = 0 if (not defined $snapme);
2957$usesnap = 1 if (not defined $usesnap);
2958
2959# Adapt // mode to memory size
2960$pbparallel = pb_set_parallel($vtype);
2961
2962pb_log(2,"DEBUG: pb_parallel_launch(vtype,step,force,snapme,usesnap: $vtype,$pbstep,$pbforce,$snapme,$usesnap)\n");
2963pb_log(2,"DEBUG: pb_parallel_launch(pbscript: ".Dumper($pbscript)."\n");
2964
2965my ($vexist,$vpid) = (undef,undef);
2966my $pm;
2967my $all_ok = 1;
2968if (defined $pbparallel) {
2969 $pm = new Parallel::ForkManager($pbparallel);
2970
2971 # Set which port the VM/RM will use to communicate
2972 $pm->run_on_start(\&pb_set_port);
2973 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
2974 unless ($code == 0 && $signal == 0 && $dump == 0) {
2975 $all_ok = 0;
2976 pb_log(0,"ERROR: pid $pid failed\n");
2977 }
2978 });
2979}
2980
2981# Determine on which V to work
2982if (defined $ENV{'PBV'}) {
2983 @$vm = split(/,/,$ENV{'PBV'});
2984} else {
2985 ($vm,$all) = pb_get2v($vtype);
2986}
2987
2988my $counter = 0;
2989foreach my $v (@$vm) {
2990 $counter++;
2991 # Modulo 2 * pbparallel (to avoid synchronization problems)
2992 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
2993 $pm->start($counter) and next if (defined $pbparallel);
2994
2995 # If launched via script2v then get the script passed as the one for the that VM
2996 if (not defined $pbscript->{$v}) {
2997 $pbscript->{$v} = $pbscript->{'default'};
2998 }
2999 #
3000 # Launch a single operation
3001 ($vexist,$vpid) = pb_launchv($pbscript->{$v},$vtype,$v,$action,$pbstep,$pbforce,$snapme,$pbsnap,$pbimage);
3002
3003 # Skip that VM/RM if something went wrong
3004 if (($vtype =~ /(v|r)m/) && ($vpid == 0) && ($vexist == 0)) {
3005 $pm->finish if (defined $pbparallel);
3006 next;
3007 }
3008
3009
3010 $pm->finish if (defined $pbparallel);
3011}
3012$pm->wait_all_children if (defined $pbparallel);
3013die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
3014}
3015
3016sub pb_launchv {
3017
3018my $pbscript1=shift; # Just the script name to execute, not the hash
3019my $vtype = shift;
3020my $v = shift; # Only 1 VM/VE/RM treated here
3021my $action = shift; # It an action is defined then use send2target
3022my $pbstep=shift; # Which step are we in (0: create, 1: setup, 2: build 3: use)
3023my $pbforce=shift; # Force stop of VM. Default not.
3024my $snapme = shift; # By default do not snap a VM/VE/RM
3025my $usesnap = shift; # By default study the usage of the snapshot feature of VM/VE/RM
3026my $pbimage=shift; # Which image to use to start the VM/VE
3027my $vexist = undef;
3028my $vpid = undef;
3029
3030$pbforce = 0 if (not defined $pbforce);
3031$snapme = 0 if (not defined $snapme);
3032$usesnap = 1 if (not defined $usesnap);
3033
3034# Check that v exists
3035die "No VM/VE/RM defined, unable to launch" if (not defined $v);
3036
3037# If creation or snapshot creation mode, no snapshot usable
3038if (($pbstep == 0) || ($snapme == 1)) {
3039 $usesnap = 0;
3040}
3041
3042pb_log(2,"DEBUG: pb_launchv(vtype,v,step,force,snapme,usesnap: $vtype,$v,$pbstep,$pbforce,$snapme,$usesnap)\n");
3043pb_log(2,"DEBUG: pb_launchv(pbimage: $pbimage)\n") if (defined $pbimage);
3044pb_log(2,"DEBUG: pb_launchv(pbscript $pbscript1)\n") if (defined $pbscript1);
3045pb_log(2,"DEBUG: pb_launchv(action: $action)\n") if (defined $action);
3046# Keep only the first VM in case many were given
3047if ($v =~ /,/) {
3048 pb_log(0,"WARNING: pruning to just the first of several VM/VE/RMs listed ($v)\n");
3049 $v =~ s/,.*//;
3050}
3051
3052my $pbos = pb_distro_get_context($v);
3053
3054pb_apply_conf_proxy($pbos);
3055
3056# Launch the VMs/VEs
3057if ($vtype eq "vm") {
3058 confess "-i image parameter needed" if (((not defined $pbimage) || ($pbimage eq "")) && ($pbstep == 0));
3059
3060 my ($ptr,$ptr2,$vmpath,$vmport,$vms) = pb_conf_get("vmtype","vmcmd","vmpath","vmport","vmsize");
3061 my ($vmopt,$vmmm,$vmtmout,$vmsnap,$vmbuildtm,$vmmonport) = pb_conf_get_if("vmopt","vmmem","vmtmout","vmsnap","vmbuildtm","vmmonport");
3062 my $vmsize = pb_distro_get_param($pbos,$vms);
3063
3064 my $vmtype = $ptr->{$ENV{'PBPROJ'}};
3065 my $vmcmd = $ptr2->{$ENV{'PBPROJ'}};
3066
3067 if (defined $opts{'g'}) {
3068 if (($vmtype eq "kvm") || ($vmtype eq "qemu")) {
3069 $ENV{'PBVMOPT'} = "--nographic";
3070 }
3071 }
3072 if (not defined $ENV{'PBVMOPT'}) {
3073 $ENV{'PBVMOPT'} = "";
3074 }
3075 # Save the current status for later restoration
3076 $ENV{'PBOLDVMOPT'} = $ENV{'PBVMOPT'};
3077 # Set a default timeout of 2 minutes
3078 if (not defined $ENV{'PBVMTMOUT'}) {
3079 $ENV{'PBVMTMOUT'} = "120";
3080 }
3081 if (defined $vmopt->{$v}) {
3082 $ENV{'PBVMOPT'} .= " $vmopt->{$v}" if ($ENV{'PBVMOPT'} !~ / $vmopt->{$v}/);
3083 } elsif (defined $vmopt->{$ENV{'PBPROJ'}}) {
3084 $ENV{'PBVMOPT'} .= " $vmopt->{$ENV{'PBPROJ'}}" if ($ENV{'PBVMOPT'} !~ / $vmopt->{$ENV{'PBPROJ'}}/);
3085 }
3086
3087 # How much memory to allocate for VMs
3088 if (defined $vmmm) {
3089 my $vmmem = pb_distro_get_param($pbos,$vmmm);
3090 if (defined $vmmem) {
3091 $ENV{'PBVMOPT'} .= " -m $vmmem";
3092 }
3093 }
3094
3095 # Are we allowed to use snapshot feature
3096 if ($usesnap == 1) {
3097 if ((defined $vmsnap->{$v}) && ($vmsnap->{$v} =~ /true/i)) {
3098 $ENV{'PBVMOPT'} .= " -snapshot";
3099 } elsif ((defined $vmsnap->{$ENV{'PBPROJ'}}) && ($vmsnap->{$ENV{'PBPROJ'}} =~ /true/i)) {
3100 $ENV{'PBVMOPT'} .= " -snapshot";
3101 } elsif ($pbsnap eq 1) {
3102 $ENV{'PBVMOPT'} .= " -snapshot";
3103 }
3104 }
3105 if ($snapme != 0) {
3106 if (($vmtype eq "kvm") || ($vmtype eq "qemu")) {
3107 # Configure the monitoring to automate the creation of the 'pb' snapshot
3108 $ENV{'PBVMOPT'} .= " -serial mon:telnet::$vmmonport->{$ENV{'PBPROJ'}},server,nowait" if ((defined $vmmonport) && (defined $vmmonport->{$ENV{'PBPROJ'}}));
3109 # In that case no snapshot call needed
3110 $ENV{'PBVMOPT'} =~ s/ -snapshot//;
3111 }
3112 }
3113 if (defined $vmtmout->{$v}) {
3114 $ENV{'PBVMTMOUT'} = $vmtmout->{$v};
3115 } elsif (defined $vmtmout->{$ENV{'PBPROJ'}}) {
3116 $ENV{'PBVMTMOUT'} = $vmtmout->{$ENV{'PBPROJ'}};
3117 }
3118 my $nport = pb_get_port($vmport,$pbos,$vtype);
3119
3120 my $cmd;
3121 my $vmm; # has to be used for pb_check_ps
3122 if (($vmtype eq "qemu") || ($vmtype eq "kvm")) {
3123 $vmm = "$vmpath->{$ENV{'PBPROJ'}}/$v.qemu";
3124 if (($pbstep == 0) || (defined $pbimage)) {
3125 $ENV{'PBVMOPT'} .= " -cdrom $pbimage -boot d";
3126 }
3127 # Always redirect the network and always try to use a 'pb' snapshot
3128 #$cmd = "$vmcmd $ENV{'PBVMOPT'} -net nic,model=virtio -net user,hostfwd=tcp::$nport:22 -loadvm pb $vmm"
3129 #$cmd = "$vmcmd $ENV{'PBVMOPT'} -redir tcp:$nport:10.0.2.15:22 $vmm"
3130 $cmd = "$vmcmd $ENV{'PBVMOPT'} -net nic -net user,hostfwd=tcp:127.0.0.1:$nport-:22 $vmm"
3131 } elsif ($vmtype eq "xen") {
3132 } elsif ($vmtype eq "vmware") {
3133 } else {
3134 die "VM of type $vmtype not supported. Report to the dev team";
3135 }
3136 # Restore the ENV VAR Value
3137 $ENV{'PBVMOPT'} = $ENV{'PBOLDVMOPT'};
3138
3139 my ($tmpcmd,$void) = split(/ +/,$cmd);
3140 my $vmmport = undef;
3141 ($vexist,$vmmport) = pb_check_ps($tmpcmd,$vmm);
3142 $vpid = 0;
3143
3144 if (! $vexist) {
3145 if ($pbstep == 0) {
3146 die("Found an existing Virtual machine $vmm. Won't overwrite") if (-r $vmm);
3147 if (($vmtype eq "qemu") || ($vmtype eq "xen") || ($vmtype eq "kvm")) {
3148 my $command = pb_check_req("qemu-img",0);
3149 pb_system("$command create -f qcow2 $vmm $vmsize","Creating the QEMU VM");
3150 } elsif ($vmtype eq "vmware") {
3151 } else {
3152 }
3153 }
3154 if (! -f "$vmm") {
3155 pb_log(0,"Unable to find VM $vmm\n");
3156 } else {
3157 # Is the SSH port free? if not kill the existing process using it after a build timeout period
3158 my ($vmssh,$void) = pb_check_ps($tmpcmd,$vmm);
3159 if ($vmssh) {
3160 my $buildtm = $ENV{'PBVMTMOUT'};
3161 if (defined $vmbuildtm->{$v}) {
3162 $buildtm = $vmbuildtm->{$v};
3163 } elsif (defined $vmbuildtm->{$ENV{'PBPROJ'}}) {
3164 $buildtm = $vmbuildtm->{$ENV{'PBPROJ'}};
3165 }
3166
3167 sleep $buildtm;
3168 pb_log(0,"WARNING: Killing the process ($vmssh) using port $void (previous failed VM ?)\n");
3169 kill 15,$vmssh;
3170 # Let it time to exit
3171 sleep 5;
3172 }
3173 pb_system("$cmd &","Launching the VM $vmm");
3174 # Using system allows to kill it externaly if needed,sosupport that in the call
3175 pb_system("sleep $ENV{'PBVMTMOUT'}","Waiting $ENV{'PBVMTMOUT'} s for VM $v to come up","mayfail");
3176 ($vpid,$void) = pb_check_ps($tmpcmd,$vmm);
3177 pb_log(0,"VM $vmm launched (pid $vpid)\n");
3178 }
3179 } else {
3180 pb_log(0,"Found an existing VM $vmm (pid $vexist - Port $vmmport)\n");
3181 # Set the correct port here based on what is done
3182 $pbport = $vmmport;
3183 $vpid = $vexist;
3184 }
3185 pb_log(2,"DEBUG: pb_launchv returns ($vexist,$vpid)\n");
3186
3187 # After the VM is launched, then setup the SSH access if not in creation phase
3188 if ($pbstep != 0) {
3189 if (defined $pbport) {
3190 pb_ssh_setup($vtype,$pbport);
3191 } else {
3192 pb_ssh_setup($vtype,$nport);
3193 }
3194 }
3195
3196 # Skip that VM if something went wrong
3197 return($vexist,$vpid) if (($vpid == 0) && ($vexist == 0));
3198
3199 # If force stopping the VM then reset vexist
3200 if ($pbforce == 1) {
3201 $vpid = $vexist;
3202 $vexist = 0;
3203 }
3204} elsif ($vtype eq "ve") {
3205 # Force the creation of the VE and no snapshot usable
3206 $vetype = pb_ve_get_type($vetype);
3207 pb_ve_launch($v,$pbstep,$usesnap,$vetype,$pbimage);
3208 $vexist = 0;
3209 $vpid = 0;
3210} else {
3211 # Get RM context
3212 my ($ptr,$rmpath,$rmport) = pb_conf_get("rmtype","rmpath","rmport");
3213
3214 # Nothing more to do for RM. No real launch
3215 # For the moment we support the RM is already running
3216 # For ProLiant may be able to power them on if needed later on as an example.
3217 $vexist = 0;
3218 $vpid = 0;
3219
3220 # After the RM is launched, then setup the SSH access
3221 my $nport = pb_get_port($rmport,$pbos,$vtype);
3222 pb_ssh_setup($vtype,$nport);
3223}
3224
3225# Gather all required files to send them to the VM/VE/RM
3226# and launch the build through pbscript
3227if (defined $action) {
3228 pb_log(2,"DEBUG: Before send2target, vexist: $vexist, vpid: $vpid, vtype: $vtype, v: $v, action: $action\n");
3229 pb_send2target($action,$pbscript1,$v,$vexist,$vpid,$snapme,$pbstep);
3230}
3231return($vexist,$vpid);
3232}
3233
3234# Return string for date synchro
3235sub pb_date2v {
3236
3237my $vtype = shift;
3238my $pbos = shift;
3239my $nontp = shift || 0;
3240
3241pb_log(1,"Entering pb_date2v\n");
3242# VE gets time from parent OS.
3243return "/bin/true" if ($vtype) =~ /^ve/o;
3244
3245my ($ntp) = pb_conf_get_if($vtype."ntp");
3246my $vntp = undef;
3247my $ntpline = undef;
3248$vntp = $ntp->{$ENV{'PBPROJ'}} if (defined $ntp);
3249
3250if ((defined $vntp) && ($vntp !~ /^\s*$/)) {
3251 pb_log(2,"ntp server is $vntp\n");
3252 # ntp command depends on pbos
3253 my $vntpcmd = pb_distro_get_param($pbos,pb_conf_get("oscmdntp"));
3254 $ntpline = "sudo $vntpcmd $vntp";
3255}
3256# Force new date to be in the future compared to the date
3257# of the host by adding 1 minute
3258my @date=pb_get_date();
3259$date[1]++;
3260my $upddate = strftime("%m%d%H%M%Y", @date);
3261my $dateline = "sudo /bin/date $upddate";
3262if ((defined $ntpline) && ($nontp == 0)) {
3263 pb_log(1,"pb_date2v returns $ntpline\n");
3264 return($ntpline);
3265} else {
3266 pb_log(1,"pb_date2v returns $dateline\n");
3267 return($dateline);
3268}
3269}
3270
3271sub pb_build2v {
3272
3273my $vtype = shift;
3274my $action = shift; #build, test or prep
3275my $pbforce=shift; # Force stop of VM. Default not.
3276
3277$action = "build" if (not defined $action);
3278$pbforce = 0 if (not defined $pbforce);
3279
3280my $pbstep;
3281
3282$vetype = pb_ve_get_type($vetype);
3283if ($action eq "prep") {
3284 $pbstep = 2;
3285} else {
3286 $pbstep = 3;
3287 # Need to be traversed by others if using containers
3288 if (($vtype eq "ve") && ($vetype eq "docker")) {
3289 chmod 0751,"$ENV{'PBBUILDDIR'}";
3290 }
3291}
3292
3293pb_log(1,"Entering in pb_build2v ($action in $vtype) \n");
3294
3295# We prepare scripts for all V of this vtype to allow sharing that part
3296my ($v,$all) = pb_get2v($vtype);
3297
3298# Send tar files when we do a global generation
3299pb_build2ssh() if (($all == 1) && ($action eq "build"));
3300
3301# Adapt // mode to memory size
3302$pbparallel = pb_set_parallel($vtype);
3303
3304my ($vexist,$vpid) = (undef,undef);
3305my $pm;
3306my $all_ok = 1;
3307if (defined $pbparallel) {
3308 $pm = new Parallel::ForkManager($pbparallel);
3309
3310 # Set which port the VM/RM will use to communicate
3311 $pm->run_on_start(\&pb_set_port);
3312 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
3313 unless ($code == 0 && $signal == 0 && $dump == 0) {
3314 $all_ok = 0;
3315 pb_log(0,"ERROR: pid $pid failed\n");
3316 }
3317 });
3318}
3319
3320my $counter = 0;
3321foreach my $v (@$v) {
3322 $counter++;
3323 $pbscript{$v} = "$ENV{'PBDESTDIR'}/pb$action-$v";
3324 # Modulo 2 * pbparallel (to avoid synchronization problems)
3325 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
3326 $pm->start($counter) and next if (defined $pbparallel);
3327 #
3328 # Prepare the script to be executed on the VM/VE/RM
3329 open(SCRIPT,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
3330 print SCRIPT "#!/bin/bash\n";
3331
3332 # Transmit the verbosity level to the virtual env/mach.
3333 my $verbose = "";
3334 my $i = 0; # minimal debug level
3335 while ($i lt $pbdebug) {
3336 $verbose .= "-v ";
3337 $i++;
3338 }
3339 print SCRIPT "set -e\n" if ($Global::pb_stop_on_error);
3340 # Activate script verbosity if at least 2 for pbdebug
3341 print SCRIPT "set -x\n" if ($i gt 1);
3342 # Quiet if asked to be so on the original system
3343 $verbose = "-q" if ($pbdebug eq -1);
3344
3345 print SCRIPT "echo ... Execution needed\n";
3346 print SCRIPT "echo ==== Start of script for $vtype $v =====\n";
3347 print SCRIPT "# This is in directory pbdelivery\n";
3348 print SCRIPT "# Setup the variables required for building\n";
3349 print SCRIPT "export PBPROJ=$ENV{'PBPROJ'}\n";
3350
3351 if (($action eq "build") || ($action eq "prep")) {
3352 print SCRIPT "# Preparation for pb\n";
3353 print SCRIPT "rm -f \$HOME/.pbrc\n";
3354 print SCRIPT "cp .pbrc \$HOME\n";
3355 # TODO: Why ?
3356 print SCRIPT "cd ..\n";
3357 }
3358
3359 # VE needs a good /proc, tolerate one being potentially left around after a failure
3360 if (($vtype eq "ve") && ($vetype ne "docker")) {
3361 print SCRIPT "[ -d /proc/1 ] || sudo /bin/mount -t proc /proc /proc\n";
3362 }
3363
3364 # Get distro context
3365 my $pbos = pb_distro_get_context($v);
3366
3367 my $ntpline = pb_date2v($vtype,$pbos);
3368 print SCRIPT "# Time sync\n";
3369 print SCRIPT "echo setting up date with $ntpline\n";
3370 print SCRIPT "$ntpline\n";
3371 print SCRIPT "if [ \$\? -ne 0 ]; then\n";
3372 # Force if bad status a trick using date
3373 $ntpline = pb_date2v($vtype,$pbos, 1);
3374 print SCRIPT " $ntpline\n";
3375 print SCRIPT "fi\n";
3376 # Use potential local proxy declaration in case we need it to download repo, pkgs, ...
3377 if (defined $ENV{'http_proxy'}) {
3378 print SCRIPT "export http_proxy=\"$ENV{'http_proxy'}\"\n";
3379 }
3380
3381 if (defined $ENV{'ftp_proxy'}) {
3382 print SCRIPT "export ftp_proxy=\"$ENV{'ftp_proxy'}\"\n";
3383 }
3384
3385 # Get list of packages to build/test and get some ENV vars as well
3386 my $ptr = pb_get_pkg();
3387 @pkgs = @$ptr;
3388 my $p = join(' ',@pkgs) if (@pkgs);
3389 print SCRIPT "export PBPROJVER=$ENV{'PBPROJVER'}\n";
3390 print SCRIPT "export PBPROJTAG=$ENV{'PBPROJTAG'}\n";
3391 print SCRIPT "export PBPACKAGER=\"$ENV{'PBPACKAGER'}\"\n";
3392
3393 # We may need to do some other tasks before building. Read a script here to finish setup
3394 if (-x "$ENV{'PBDESTDIR'}/pb$vtype".".pre") {
3395 print SCRIPT "# Special pre-instructions to be launched\n";
3396 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype".".pre");
3397 }
3398
3399 if (-x "$ENV{'PBDESTDIR'}/pb$vtype"."$action.pre") {
3400 print SCRIPT "# Special pre-$action instructions to be launched\n";
3401 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype"."$action.pre");
3402 }
3403
3404 print SCRIPT "# $action\n";
3405 print SCRIPT "echo $action"."ing packages on $vtype...\n";
3406
3407 if (($action eq "test") && (! -x "$ENV{'PBDESTDIR'}/pbtest")) {
3408 confess "No test script ($ENV{'PBDESTDIR'}/pbtest) found when in test mode. Aborting ...";
3409 }
3410 print SCRIPT "pb -h\n";
3411 my $act = "$action"."2pkg";
3412 $act = "build2prep" if ($action eq "prep");
3413 print SCRIPT "pb $verbose -p $ENV{'PBPROJ'} $act $p\n";
3414
3415 if (($vtype eq "ve") && ($vetype ne "docker")) {
3416 print SCRIPT "sudo /bin/umount /proc\n";
3417 }
3418
3419 # We may need to do some other tasks after building. Read a script here to exit properly
3420 if (-x "$ENV{'PBDESTDIR'}/pb$vtype"."$action.post") {
3421 print SCRIPT "# Special post-$action instructions to be launched\n";
3422 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype"."$action.post");
3423 }
3424
3425 if (-x "$ENV{'PBDESTDIR'}/pb$vtype".".post") {
3426 print SCRIPT "# Special post-instructions to be launched\n";
3427 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype".".post");
3428 }
3429
3430 print SCRIPT "echo ==== End of script $$ for $vtype $v =====\n";
3431 close(SCRIPT);
3432 chmod 0755,"$pbscript{$v}";
3433
3434 $pm->finish if (defined $pbparallel);
3435}
3436$pm->wait_all_children if (defined $pbparallel);
3437die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
3438
3439# Launch the VM/VE/RM
3440# docker image to use if needed
3441# Gather all required files to send them to the VM/VE
3442# and launch the build through pbscript
3443pb_parallel_launchv(\%pbscript,$vtype,uc($vtype).$action,$pbstep,$pbimage,$pbforce);
3444}
3445
3446
3447sub pb_clean {
3448
3449 my $sleep=10;
3450 die "Unable to get env var PBDESTDIR" if (not defined $ENV{'PBDESTDIR'});
3451 die "Unable to get env var PBBUILDDIR" if (not defined $ENV{'PBBUILDDIR'});
3452 pb_log(0,"We will now wait $sleep s before removing both directories\n$ENV{'PBDESTDIR'} and $ENV{'PBBUILDDIR'}.\nPlease break me if this is wrong\n");
3453 sleep $sleep;
3454 pb_rm_rf($ENV{'PBDESTDIR'});
3455 pb_rm_rf($ENV{'PBBUILDDIR'});
3456}
3457
3458sub pb_newver {
3459
3460 die "-V Version parameter needed" if ((not defined $newver) || ($newver eq ""));
3461
3462 # Need this call for PBDIR
3463 my ($scheme2,$uri) = pb_cms_init($pbinit);
3464
3465 my ($pbconf,$pburl) = pb_conf_get("pbconfurl","pburl");
3466 $uri = $pbconf->{$ENV{'PBPROJ'}};
3467 my ($scheme, $account, $host, $port, $path) = pb_get_uri($uri);
3468
3469 # Checking CMS repositories status
3470 ($scheme2, $account, $host, $port, $path) = pb_get_uri($pburl->{$ENV{'PBPROJ'}});
3471
3472 if ($scheme !~ /^svn/) {
3473 die "Only SVN is supported at the moment";
3474 }
3475
3476 my $res = pb_vcs_isdiff($scheme,$ENV{'PBROOTDIR'});
3477 die "ERROR: No differences accepted in CMS for $ENV{'PBROOTDIR'} before creating a new version" if ($res != 0);
3478
3479 $res = pb_vcs_isdiff($scheme2,$ENV{'PBDIR'});
3480 die "ERROR: No differences accepted in CMS for $ENV{'PBDIR'} before creating a new version" if ($res != 0);
3481
3482 # Tree identical between PBCONFDIR and PBROOTDIR. The delta is what
3483 # we want to get for the root of the new URL
3484
3485 my $oldver = $ENV{'PBROOTDIR'};
3486 $oldver =~ s|^$ENV{'PBCONFDIR'}||;
3487
3488 pb_log(2, "PBCONFDIR: $ENV{'PBCONFDIR'}\nPBROOTDIR: $ENV{'PBROOTDIR'}\n");
3489
3490 my $newurl = "$uri/$newver";
3491 # Should probably use projver in the old file
3492 my $oldvertxt= basename($oldver);
3493 my $newvertxt = basename($newver);
3494
3495 # Duplicate and extract project-builder part
3496 pb_log(2,"Copying $uri/$oldver to $newurl\n");
3497 pb_vcs_copy($scheme,"$uri/$oldver",$newurl);
3498 pb_log(2,"Checkout $newurl to $ENV{'PBCONFDIR'}/$newver\n");
3499 pb_vcs_up($scheme,"$ENV{'PBCONFDIR'}");
3500
3501 # Duplicate and extract project
3502 my $newurl2 = "$pburl->{$ENV{'PBPROJ'}}/$newver";
3503
3504 pb_log(2,"Copying $pburl->{$ENV{'PBPROJ'}}/$oldver to $newurl2\n");
3505 pb_vcs_copy($scheme2,"$pburl->{$ENV{'PBPROJ'}}/$oldver",$newurl2);
3506
3507 my $tmp = $ENV{'PBDIR'};
3508 $tmp =~ s|$oldver$||;
3509 pb_log(2,"Checkout $newurl2 to $tmp/$newver\n");
3510 pb_vcs_up($scheme2,"$tmp");
3511
3512 # Update the .pb file
3513 open(FILE,"$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb") || die "Unable to open $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb";
3514 open(OUT,"> $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb.new") || die "Unable to write to $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb.new";
3515 while(<FILE>) {
3516 if (/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldvertxt$/) {
3517 s/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldvertxt$/projver $ENV{'PBPROJ'} = $newvertxt/;
3518 pb_log(0,"Changing projver from $oldvertxt to $newvertxt in $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb\n");
3519 }
3520 if (/^testver/) {
3521 s/^testver/#testver/;
3522 pb_log(0,"Commenting testver in $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb\n") if (/^testver/);
3523 }
3524 if (/^delivery/) {
3525 my $txt = $_;
3526 chomp($txt);
3527 pb_log(0,"Please check delivery ($txt) in $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb\n");
3528 }
3529 print OUT $_;
3530 }
3531 close(FILE);
3532 close(OUT);
3533 rename("$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb.new","$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb");
3534
3535 # Checking pbcl files
3536 foreach my $f (<$ENV{'PBROOTDIR'}/*/pbcl>) {
3537 # Compute new pbcl file
3538 my $f2 = $f;
3539 $f2 =~ s|$ENV{'PBROOTDIR'}|$ENV{'PBCONFDIR'}/$newver/|;
3540 open(PBCL,$f) || die "Unable to open $f";
3541 my $foundnew = 0;
3542 while (<PBCL>) {
3543 $foundnew = 1 if (/^$newvertxt \(/);
3544 }
3545 close(PBCL);
3546 open(OUT,"> $f2") || die "Unable to write to $f2: $!";
3547 open(PBCL,$f) || die "Unable to open $f";
3548 # We skip as long as we do not reach the new version in the log (case of devel)
3549 my $skip = 1;
3550 # We let the 4 first lines
3551 my $cnt = 0;
3552 while (<PBCL>) {
3553 $skip = 0 if (/^$newvertxt \(/);
3554 if ((/^$oldvertxt \(/) && ($foundnew == 0)) {
3555 print OUT "$newvertxt ($pbdate)\n";
3556 print OUT "- TBD\n";
3557 print OUT "\n";
3558 pb_log(0,"WARNING: version $newvertxt not found in $f so added to $f2...\n") if ($foundnew == 0);
3559 }
3560 if ($cnt <= 4) {
3561 print OUT "$_" if (not /^$oldvertxt \(/);
3562 } else {
3563 print OUT "$_" if ($skip == 0);
3564 }
3565 $cnt++;
3566 }
3567 close(OUT);
3568 close(PBCL);
3569 }
3570
3571 pb_log(2,"Checkin $ENV{'PBCONFDIR'}/$newver\n");
3572 pb_vcs_checkin($scheme,"$ENV{'PBCONFDIR'}/$newver","updated to $ENV{'PBCONFDIR'}");
3573}
3574
3575#
3576# Return the list of VMs/VEs/RMs we are working on
3577# $all is a flag to know if we return all of them
3578# or only some (if all we publish also tar files in addition to pkgs
3579#
3580sub pb_get2v {
3581
3582my $vtype = shift;
3583my @v;
3584my $all = 0;
3585my $pbv = 'PBV';
3586my $vlist = $vtype."list";
3587
3588# Get VM/VE list
3589if ((not defined $ENV{$pbv}) || ($ENV{$pbv} =~ /^all$/)) {
3590 my ($ptr) = pb_conf_get($vlist);
3591 $ENV{$pbv} = $ptr->{$ENV{'PBPROJ'}};
3592 $all = 1;
3593}
3594pb_log(2,"$vtype: $ENV{$pbv}\n");
3595@v = split(/,/,$ENV{$pbv});
3596return(\@v,$all);
3597}
3598
3599# This function creates a giant script to configure a particular VM/VE/RM, it then copies the
3600# script to the target.
3601
3602# Function to create a potentialy missing pb account on the VM/VE/RM, and adds it to sudo
3603# Needs to use root account to connect to the VM/VE/RM
3604# pb will take your local public SSH key to access
3605# the pb account in the VM/VE/RM later on if needed
3606sub pb_setup2v {
3607
3608my $vtype = shift;
3609my $sbx = shift;
3610my $pbstep = 1;
3611
3612my ($vm,$all) = pb_get2v($vtype);
3613
3614# Adapt // mode to memory size
3615$pbparallel = pb_set_parallel($vtype);
3616
3617my $pm;
3618my $all_ok = 1;
3619if (defined $pbparallel) {
3620 $pm = new Parallel::ForkManager($pbparallel);
3621
3622 # Set which port the VM/RM will use to communicate
3623 $pm->run_on_start(\&pb_set_port);
3624 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
3625 $all_ok = 0 unless (($code == 0) && ($signal == 0) && ($dump == 0));
3626 });
3627}
3628
3629my $counter = 0;
3630foreach my $v (@$vm) {
3631 # Script generated - should be before the fork - after the %pbscript hash isn't updated correctly
3632 $pbscript{$v} = "$ENV{'PBDESTDIR'}/setupv-$v";
3633
3634 $counter++;
3635 # Modulo 2 * pbparallel (to avoid synchronization problems)
3636 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
3637 $pm->start($counter) and next if (defined $pbparallel);
3638
3639 # Get distro context
3640 my $pbos = pb_distro_get_context($v);
3641
3642 # Deal with date sync.
3643 my $ntpline = pb_date2v($vtype,$pbos);
3644
3645 # Name of the account to deal with for VM/VE/RM
3646 # Do not use the one passed potentially with -a
3647 my ($pbac) = pb_conf_get($vtype."login");
3648 my $key = "";
3649
3650 # Prepare the script to be executed on the VM/VE/RM
3651 # in $ENV{'PBDESTDIR'}/setupv
3652
3653 pb_log(2,"Preparing setup script for $v in $pbscript{$v}\n");
3654 open(SCRIPT,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
3655
3656 print SCRIPT << 'EOF';
3657#!/usr/bin/perl -w
3658
3659use strict;
3660use File::Copy;
3661
3662# We should not need in this script more functions than what is provided
3663# by Base, Conf and Distribution to avoid problems at exec time.
3664# They are appended at the end.
3665
3666# Define mandatory global vars
3667EOF
3668 my $ppref = "our";
3669 $ppref = "my" if (($pbos->{'name'} =~ /^redhat/) && ($pbos->{'version'} =~ /^6/));
3670 print SCRIPT << "EOF";
3671$ppref \$pbdebug = $pbdebug;
3672$ppref \$pbLOG;
3673$ppref \$pbsynmsg = "pbscript";
3674$ppref \$pbdisplaytype = "text";
3675$ppref \$pblocale = "";
3676EOF
3677 print SCRIPT << 'EOF';
3678pb_log_init($pbdebug, $pbLOG);
3679EOF
3680 print SCRIPT << "EOF";
3681\$Global::pb_stop_on_error = $Global::pb_stop_on_error;
3682pb_temp_init($pbkeep);
3683pb_conf_init("$ENV{'PBPROJ'}");
3684
3685EOF
3686
3687 if ($vtype eq "ve") {
3688 $vetype = pb_ve_get_type($vetype);
3689 if ($vetype ne "docker") {
3690 print SCRIPT << "EOF";
3691# For VE we first need to mount some FS
3692pb_system("mount -t proc /proc /proc") unless (-d "/proc/$$");
3693EOF
3694 }
3695 print SCRIPT << "EOF";
3696# For VE we need a good null dev
3697# Except for RedHat 6.2 where it's good and doesnt like being recreated
3698EOF
3699 print SCRIPT "pb_system('rm -f /dev/null; mknod /dev/null c 1 3; chmod 777 /dev/null');\n" unless (($pbos->{'name'} =~ /^redhat/) && ($pbos->{'version'} =~ /^6/));
3700 } elsif ($vtype =~ /(v|r)m/) {
3701 # Nothing to do now.
3702 my $useless = 0;
3703 } else {
3704 die "Unknown virtual type $vtype";
3705 }
3706
3707 print SCRIPT << 'EOF';
3708
3709# Adds $pbac->{$ENV{'PBPROJ'}} as an account if needed
3710#
3711my $file="/etc/passwd";
3712open(PBFILE,$file) || die "Unable to open $file";
3713my $found = 0;
3714while (<PBFILE>) {
3715EOF
3716 print SCRIPT << "EOF";
3717 \$found = 1 if (/^$pbac->{$ENV{'PBPROJ'}}:/);
3718EOF
3719
3720# TODO: use an external parameter
3721my $home = "/home";
3722# Solaris doesn't like that we use /home
3723$home = "/export/home" if ($pbos->{'type'} eq "pkg");
3724
3725 print SCRIPT << "EOF";
3726}
3727close(PBFILE);
3728
3729if ( \$found == 0 ) {
3730 if ( ! -d "$home" ) {
3731 pb_mkdir_p("$home");
3732 }
3733EOF
3734 # TODO: Level of portability of these cmds ? Critical now for RM
3735 # TODO: Check existence before adding to avoid errors
3736 print SCRIPT << "EOF";
3737pb_system("/usr/sbin/groupadd $pbac->{$ENV{'PBPROJ'}}","Adding group $pbac->{$ENV{'PBPROJ'}}");
3738pb_system("/usr/sbin/useradd -g $pbac->{$ENV{'PBPROJ'}} -m -d $home/$pbac->{$ENV{'PBPROJ'}} $pbac->{$ENV{'PBPROJ'}}","Adding user $pbac->{$ENV{'PBPROJ'}} (group $pbac->{$ENV{'PBPROJ'}} - home $home/$pbac->{$ENV{'PBPROJ'}})");
3739}
3740EOF
3741
3742 # Copy the content of our local conf file to the VM/VE/RM
3743 my $content = pb_get_content(pb_distro_conffile());
3744 print SCRIPT << "EOF";
3745 #
3746 # Create a temporary local conf file for distribution support
3747 # This is created here before its use later. Its place is hardcoded, so no choice for the path
3748 #
3749 my \$tempconf = pb_distro_conffile();
3750 pb_mkdir_p(dirname(\$tempconf));
3751 open(CONF,"> \$tempconf") || die "Unable to create \$tempconf";
3752 print CONF q{$content};
3753 close(CONF);
3754EOF
3755
3756 if ($vtype =~ /(v|r)m/) {
3757 print SCRIPT << "EOF";
3758# allow ssh entry to build
3759#
3760mkdir "$home/$pbac->{$ENV{'PBPROJ'}}/.ssh",0700;
3761# Allow those accessing root to access the build account
3762copy("\$ENV{'HOME'}/.ssh/authorized_keys","$home/$pbac->{$ENV{'PBPROJ'}}/.ssh/authorized_keys");
3763chmod 0600,".ssh/authorized_keys";
3764pb_system("chown -R $pbac->{$ENV{'PBPROJ'}}:$pbac->{$ENV{'PBPROJ'}} $home/$pbac->{$ENV{'PBPROJ'}}","Finish setting up the account env for $pbac->{$ENV{'PBPROJ'}}");
3765
3766EOF
3767}
3768 print SCRIPT << 'EOF';
3769# No passwd for build account only keys
3770$file="/etc/shadow";
3771if (-f $file) {
3772 open(PBFILE,$file) || die "Unable to open $file";
3773 open(PBOUT,"> $file.new") || die "Unable to open $file.new";
3774 while (<PBFILE>) {
3775EOF
3776 print SCRIPT << "EOF";
3777 s/^$pbac->{$ENV{'PBPROJ'}}:\!\!:/$pbac->{$ENV{'PBPROJ'}}:*:/;
3778 s/^$pbac->{$ENV{'PBPROJ'}}:\!:/$pbac->{$ENV{'PBPROJ'}}:*:/; #SLES 9 e.g.
3779 s/^$pbac->{$ENV{'PBPROJ'}}:\\*LK\\*:/$pbac->{$ENV{'PBPROJ'}}:NP:/; #Solaris e.g.
3780EOF
3781 print SCRIPT << 'EOF';
3782 print PBOUT $_;
3783 }
3784 close(PBFILE);
3785 close(PBOUT);
3786 rename("$file.new",$file);
3787 chmod 0640,$file;
3788 }
3789
3790# TODO: systemd support
3791# Keep the VM in text mode
3792$file="/etc/inittab";
3793if (-f $file) {
3794 open(PBFILE,$file) || die "Unable to open $file";
3795 open(PBOUT,"> $file.new") || die "Unable to open $file.new";
3796 while (<PBFILE>) {
3797 s/^(..):5:initdefault:$/$1:3:initdefault:/;
3798 print PBOUT $_;
3799 }
3800 close(PBFILE);
3801 close(PBOUT);
3802 rename("$file.new",$file);
3803 chmod 0640,$file;
3804}
3805
3806# pb has to be added to portage group on gentoo
3807
3808# We need to have that pb_distro_get_context function
3809# Get it from Project-Builder::Distribution
3810# And we now need the conf file required for this to work created above
3811
3812my $pbos = pb_distro_get_context();
3813print "distro tuple: ".Dumper($pbos)."\n";
3814
3815# Adapt sudoers
3816# sudo is not default on Solaris and needs to be installed first
3817# from http://www.sunfreeware.com/programlistsparc10.html#sudo
3818if ($pbos->{'type'} eq "pkg") {
3819 $file="/usr/local/etc/sudoers";
3820} else {
3821 $file="/etc/sudoers";
3822}
3823open(PBFILE,$file) || die "Unable to open $file";
3824open(PBOUT,"> $file.new") || die "Unable to open $file.new";
3825while (<PBFILE>) {
3826EOF
3827 # Skip what will be generated
3828 print SCRIPT << "EOF";
3829 next if (/^$pbac->{$ENV{'PBPROJ'}}\\s+/);
3830 next if (/^Defaults:$pbac->{$ENV{'PBPROJ'}}\\s+/);
3831 next if (/^Defaults:root\\s+\!requiretty/);
3832 next if (/^Defaults:root\\s+env_keep/);
3833EOF
3834 print SCRIPT << 'EOF';
3835 s/Defaults\s+requiretty/# disable Defaults: requiretty/;
3836 print PBOUT $_;
3837}
3838close(PBFILE);
3839EOF
3840 print SCRIPT << "EOF";
3841# Some distro force requiretty at compile time, so disable here
3842print PBOUT "Defaults:$pbac->{$ENV{'PBPROJ'}} !requiretty\\n";
3843print PBOUT "Defaults:root !requiretty\\n";
3844EOF
3845 # RH 6.2 sudo doesn't support env_keep
3846 if (($pbos->{'name'} ne "redhat") && ($pbos->{'version'} ne "6.2")) {
3847 print SCRIPT << "EOF";
3848# Keep proxy configuration while using sudo
3849print PBOUT "Defaults:$pbac->{$ENV{'PBPROJ'}} env_keep += \\\"http_proxy ftp_proxy\\\"\\n";
3850print PBOUT "Defaults:root env_keep += \\\"http_proxy ftp_proxy\\\"\\n";
3851EOF
3852 }
3853 # Try to restrict security to what is really needed
3854 if ($vtype =~ /^vm/) {
3855 my $hpath = pb_distro_get_param($pbos,pb_conf_get("ospathcmd-halt"));
3856 my @sudocmds = pb_get_sudocmds($pbos,$ntpline,"sudo $hpath","sudo /bin/date");
3857 print SCRIPT << "EOF";
3858# This is needed in order to be able on VM to halt the machine from the $pbac->{$ENV{'PBPROJ'}} account at least
3859# Build account $pbac->{$ENV{'PBPROJ'}} in VM also needs to setup date and install deps.
3860# Nothing else should be needed
3861EOF
3862 foreach my $c (@sudocmds) {
3863 print SCRIPT "print PBOUT \"$pbac->{$ENV{'PBPROJ'}} ALL = NOPASSWD: $c\\n\";\n";
3864 }
3865 } elsif ($vtype =~ /^rm/) {
3866 my @sudocmds = pb_get_sudocmds($pbos,$ntpline);
3867 print SCRIPT << "EOF";
3868# Build account $pbac->{$ENV{'PBPROJ'}} in RM only needs to setup date and install deps if needed each time
3869EOF
3870 foreach my $c (@sudocmds) {
3871 print SCRIPT "print PBOUT \"$pbac->{$ENV{'PBPROJ'}} ALL = NOPASSWD: $c\\n\";\n";
3872 }
3873 } else {
3874 print SCRIPT << "EOF";
3875# Build account $pbac->{$ENV{'PBPROJ'}} for VE needs to do a lot in the host (and chroot), so allow without restriction for now
3876print PBOUT "$pbac->{$ENV{'PBPROJ'}} ALL=(ALL) NOPASSWD:ALL\n";
3877EOF
3878 }
3879 my $sudomode = pb_distro_get_param($pbos,pb_conf_get("ossudoersmode"));
3880 print SCRIPT << 'EOF';
3881close(PBOUT);
3882rename("$file.new",$file);
3883EOF
3884 print SCRIPT << "EOF";
3885chmod 0$sudomode,\$file;
3886
3887EOF
3888
3889 if ($vtype =~ /(v|r)m/) {
3890 # Sync date
3891 # do it after sudoers is setup
3892 print SCRIPT "my \$res = pb_system(\"$ntpline\",\"Updating time with $ntpline\",\"mayfailverbose\");\n";
3893 print SCRIPT "if (\$res != 0) {\n";
3894 # try again with another method
3895 $ntpline = pb_date2v($vtype,$pbos,1);
3896 print SCRIPT " pb_system(\"$ntpline\",\"Updating time with $ntpline\",\"mayfailverbose\");\n";
3897 print SCRIPT "}\n";
3898 }
3899
3900 print SCRIPT << 'EOF';
3901
3902# We may need a proxy configuration. Get it from the local env
3903pb_apply_conf_proxy($pbos);
3904
3905# First install all required packages
3906pb_system("dnf clean all","Cleaning dnf env","mayfail") if (($pbos->{'name'} eq "fedora") && ($pbos->{'version'} >= 22));
3907pb_system("yum clean all","Cleaning yum env","mayfail") if ((($pbos->{'name'} eq "fedora") && ($pbos->{'version'} < 22)) || ($pbos->{'name'} eq "asianux") || ($pbos->{'name'} eq "rhel"));
3908my ($ospkgdep) = pb_conf_get_if("ospkgdep");
3909
3910my $pkgdep = pb_distro_get_param($pbos,$ospkgdep);
3911pb_distro_installdeps(undef,$pbos,pb_distro_only_deps_needed($pbos,join(' ',split(/,/,$pkgdep))));
3912
3913EOF
3914 my $itype = pb_distro_get_param($pbos,pb_conf_get("pbinstalltype"));
3915 # Install from sandbox mean a file base install
3916 $itype = "file" if (defined $sbx);
3917 if ($itype =~ /^file/) {
3918 my $cmdget;
3919 if (defined $sbx) {
3920 # Install from sandbox mean using the result of the just passed sbx2build command
3921 # Get content saved in cms2build
3922 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
3923 my $pbextdir = pb_get_extdir();
3924 die "Unable to get package list" if (not defined $pkg);
3925
3926 # We consider 2 specific packages
3927 my $vertag1 = $pkg->{"ProjectBuilder"};
3928 my $vertag2 = $pkg->{"project-builder"};
3929 # get the version of the current package - maybe different
3930 pb_log(2,"Vertag1: $vertag1\n");
3931 pb_log(2,"Vertag2: $vertag2\n");
3932 my ($pbver1,$tmp1) = split(/-/,$vertag1);
3933 my ($pbver2,$tmp2) = split(/-/,$vertag2);
3934 $cmdget = "mv /tmp/ProjectBuilder-$pbver1$pbextdir.tar.gz ProjectBuilder-latest.tar.gz ; mv /tmp/project-builder-$pbver2$pbextdir.tar.gz project-builder-latest.tar.gz";
3935 } else {
3936 # TODO: shouldn't we have a variable to specify the source file?
3937 # And shouldn't we be getting the one that matches the current pb version?
3938 # For the moment, just take the latest stable one
3939 my $wget = pb_check_req("wget",0);
3940 $cmdget = "$wget --passive-ftp ftp://ftp.project-builder.org/src/ProjectBuilder-latest.tar.gz; $wget --passive-ftp ftp://ftp.project-builder.org/src/project-builder-latest.tar.gz";
3941 }
3942 print SCRIPT << 'EOF';
3943# Then install manually the missing perl modules
3944my ($osperldep,$osperlver) = pb_conf_get_if("osperldep","osperlver");
3945
3946my $perldep = pb_distro_get_param($pbos,$osperldep);
3947my $bashopt = "";
3948$bashopt = "-x" if ($pbdebug ge 1);
3949my $verbopt = "mayfail";
3950$verbopt = "mayfailverbose" if ($pbdebug ge 1);
3951foreach my $m (split(/,/,$perldep)) {
3952 # Skip empty deps
3953 next if ($m =~ /^\s*$/);
3954 my $dir = $m;
3955 $dir =~ s/-.*//;
3956 pb_system("echo \"rm -rf $m* ; wget http://search.cpan.org/CPAN/modules/by-module/$dir/$m-$osperlver->{$m}.tar.gz ; gzip -cd $m-$osperlver->{$m}.tar.gz | tar xf - ; cd $m* ; if [ -f Build.PL ]; then perl Build.PL; ./Build ; ./Build install ; else perl Makefile.PL; make ; make install ; fi; cd .. ; rm -rf $m*\" | bash -e $bashopt" ,"Installing perl module $m-$osperlver->{$m}",$verbopt);
3957}
3958EOF
3959 print SCRIPT << 'EOF';
3960pb_system("rm -rf ProjectBuilder-* ; rm -rf project-builder-* ; rm -rf `perl -V:installvendorlib | awk -F\"'\" '{print \$2}'`/ProjectBuilder ;
3961EOF
3962 print SCRIPT " $cmdget ; ";
3963 print SCRIPT << 'EOF'
3964gzip -cd ProjectBuilder-latest.tar.gz | tar xf - ; cd ProjectBuilder-* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf ProjectBuilder-* ; gzip -cd project-builder-latest.tar.gz | tar xf - ; cd project-builder-* ; perl Makefile.PL ; make ; make install ; cd .. ; rm -rf project-builder-* ;","Building Project-Builder");
3965EOF
3966 } elsif ($itype =~ /^pkg/) {
3967 # pkg based install. We need to point to the project-builder.org repository
3968 print SCRIPT << 'EOF';
3969my $pkgforpb = pb_distro_get_param($pbos,pb_conf_get_if("ospkg"));
3970pb_distro_setuposrepo($pbos);
3971pb_distro_installdeps(undef,$pbos,pb_distro_only_deps_needed($pbos,join(' ',split(/,/,$pkgforpb))));
3972EOF
3973 } else {
3974 # Unknown install type
3975 die("Unknown install type $itype->{$ENV{'PBPROJ'}} for param pbinstalltype");
3976 }
3977 print SCRIPT << 'EOF';
3978pb_system("pbdistrocheck",undef,"verbose");
3979pb_system("pb -h",undef,"verbose");
3980EOF
3981 if ($vtype eq "ve"){
3982 if ($vetype ne "docker") {
3983 print SCRIPT << 'EOF';
3984# For VE we need to umount some FS at the end
3985
3986pb_system("umount /proc","Unmounting /proc","mayfail");
3987EOF
3988 }
3989 print SCRIPT << 'EOF';
3990# Create a basic network file if not already there
3991
3992my $nf="/etc/sysconfig/network";
3993if ((! -f $nf) && ($pbos->{'type'} eq "rpm") && ($pbos->{'family'} ne "novell")) {
3994 open(NF,"> $nf") || die "Unable to create $nf";
3995 print NF "NETWORKING=yes\n";
3996 print NF "HOSTNAME=localhost\n";
3997 close(NF);
3998}
3999chmod 0755,$nf;
4000EOF
4001 }
4002
4003 # Adds pb_distro_get_context and all functions needed from ProjectBuilder::Distribution, Conf and Base
4004 foreach my $m ("ProjectBuilder/Base.pm","ProjectBuilder/Distribution.pm","ProjectBuilder/Conf.pm") {
4005 foreach my $d (@INC) {
4006 my $f = "$d/$m";
4007 if (-f "$f") {
4008 open(PBD,"$f") || die "Unable to open $f: $!";
4009 while (<PBD>) {
4010 next if (/^package/);
4011 next if (/^use Exporter/);
4012 next if (/^use ProjectBuilder::/);
4013 next if (/^our /);
4014 print SCRIPT $_;
4015 }
4016 close(PBD);
4017 # We just need the first one of each file wrt @INC - hopefully that's the right one.
4018 last;
4019 }
4020 }
4021 }
4022 # Use a fake pb_version_init version here
4023 print SCRIPT << "EOF";
4024sub pb_version_init {
4025
4026return("$projectbuilderver","$projectbuilderrev");
4027}
40281;
4029EOF
4030 close(SCRIPT);
4031 chmod 0755,"$pbscript{$v}";
4032
4033 $pm->finish if (defined $pbparallel);
4034}
4035$pm->wait_all_children if (defined $pbparallel);
4036die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
4037
4038# These build scripts need to be run as root and force stop of VM at end
4039$ENV{'PBACCOUNT'} = "root";
4040
4041$sbx = "" if (not defined $sbx);
4042# Launch the VM/VE/RM
4043pb_log(2,"DEBUG: before parallel launch, pbscript hash is:".Dumper(%pbscript)."\n");
4044pb_parallel_launchv(\%pbscript,$vtype,uc($vtype)."Script".$sbx,$pbstep,$pbimage,$pbforce,0,$pbsnap);
4045
4046return;
4047}
4048
4049# Function to create a snapshot named 'pb' for VMs and a compressed tar for VEs
4050sub pb_snap2v {
4051
4052my $vtype = shift;
4053my $pbstep = 2;
4054
4055my ($vm,$all) = pb_get2v($vtype);
4056
4057# Script generated
4058my $pbscript = "$ENV{'PBDESTDIR'}/snapv.$$";
4059
4060my ($pbac) = pb_conf_get($vtype."login");
4061
4062foreach my $v (@$vm) {
4063 if ($vtype eq "ve") {
4064 # Get distro context
4065 my $pbos = pb_distro_get_context($v);
4066 my ($vepath) = pb_conf_get("vepath");
4067
4068 # Test if an existing snapshot exists and remove it if there is a VE
4069 if ((-f "$vepath->{$ENV{'PBPROJ'}}/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}.tar.gz") &&
4070 (! -d "$vepath->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}")) {
4071 pb_system("sudo rm -f $vepath->{$ENV{'PBPROJ'}}/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}.tar.gz","Removing previous snapshot $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}.tar.gz");
4072 }
4073 }
4074
4075 # Prepare the script to be executed on the VM/VE
4076 open(SCRIPT,"> $pbscript") || die "Unable to create $pbscript";
4077 print SCRIPT << 'EOF';
4078 #!/bin/bash
4079 sleep 2
4080EOF
4081 close(SCRIPT);
4082 chmod 0755,"$pbscript";
4083
4084 # Force shutdown of VM/VE
4085 # Force snapshot of VM/VE
4086 pb_script2v($pbscript,$vtype,$pbstep,1,$v,1);
4087}
4088return;
4089}
4090
4091# Function to update VMs/VEs/RMs with the latest distribution content
4092sub pb_update2v {
4093
4094my $vtype = shift;
4095my $pbstep = 2;
4096
4097my ($vm,$all) = pb_get2v($vtype);
4098
4099# Script generated
4100my $pbscript = "$ENV{'PBDESTDIR'}/updatev.$$";
4101
4102my ($pbac) = pb_conf_get($vtype."login");
4103
4104foreach my $v (@$vm) {
4105 # Get distro context
4106 my $pbos = pb_distro_get_context($v);
4107
4108 # Prepare the script to be executed on the VM/VE/RM
4109 # in $ENV{'PBDESTDIR'}/updatev
4110 open(SCRIPT,"> $pbscript") || die "Unable to create $pbscript";
4111
4112 print SCRIPT << 'EOF';
4113 #!/bin/bash
4114 sleep 2
4115EOF
4116 # VE needs a good /proc
4117 $vetype = pb_ve_get_type($vetype);
4118 if (($vtype eq "ve") && ($vetype ne "docker")) {
4119 print SCRIPT "sudo /bin/mount -t proc /proc /proc\n";
4120 }
4121 print SCRIPT "$pbos->{'update'}\n";
4122 if (($vtype eq "ve") && ($vetype ne "docker")) {
4123 print SCRIPT "sudo /bin/umount /proc\n";
4124 }
4125 close(SCRIPT);
4126 chmod 0755,"$pbscript";
4127
4128 # Force shutdown of VM except
4129 pb_script2v($pbscript,$vtype,$pbstep,1,$v);
4130}
4131return;
4132}
4133
4134sub pb_announce {
4135
4136 my $antype = shift;
4137
4138 # Get all required parameters
4139 my ($pbpackager,$pbrepo) = pb_conf_get("pbpackager","pbrepo");
4140 my ($pkgv, $pkgt, $testver) = pb_conf_get_if("pkgver","pkgtag","testver");
4141 if (((not defined $testver) || (not defined $testver->{$ENV{'PBPROJ'}}) || ($testver->{$ENV{'PBPROJ'}} !~ /true/i)) && ($antype eq "Clean")) {
4142 # We just clean for test versions
4143 pb_log(0,"Unable to clean SSH repository for non testver version\n");
4144 return;
4145 }
4146 my $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
4147 my @pkgs = @$pkg;
4148 my %pkgs;
4149 my $first = 0;
4150
4151 # Get all distros concerned
4152 my $pbos = pb_distro_get_context();
4153 my $distrolist = pb_get_distros($pbos,undef);
4154 my %dl;
4155 my %theorlist;
4156 my %archlist;
4157 foreach my $d (split(/,/,$distrolist)) {
4158 my ($d1,$d2,$d3) = split(/-/,$d);
4159 $dl{$d1}++;
4160 }
4161
4162 # Command to find packages on repo
4163 my $findstr = "find ".join(" ",keys %dl)." ";
4164 my $srcstr = "";
4165 # Generated announce files
4166 my @files;
4167
4168 foreach my $pbpkg (@pkgs) {
4169 if ($first != 0) {
4170 $findstr .= "-o ";
4171 }
4172 $first++;
4173 if ((defined $pkgv) && (defined $pkgv->{$pbpkg})) {
4174 $pbver = $pkgv->{$pbpkg};
4175 } else {
4176 $pbver = $ENV{'PBPROJVER'};
4177 }
4178 if ((defined $pkgt) && (defined $pkgt->{$pbpkg})) {
4179 $pbtag = $pkgt->{$pbpkg};
4180 } else {
4181 $pbtag = $ENV{'PBPROJTAG'};
4182 }
4183
4184 # TODO: use virtual/real names here now
4185 my $pbrealpkg = $pbpkg;
4186 my $pbrealpkgrpm = pb_cms_get_real_pkg($pbpkg,"rpm");
4187 my $pbrealpkgdeb = pb_cms_get_real_pkg($pbpkg,"deb");
4188 if ($antype eq "Clean") {
4189 # We only clean test versions anyway
4190 $pbtag = "0";
4191 my $nver = $pbver;
4192 my $ntag = "[2-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]";
4193 $pbver .= $ntag;
4194 $findstr .= "-name \'$pbrealpkgrpm-$pbver-$pbtag\.*.rpm\' -o -name \'$pbrealpkgrpm-debug-$pbver-$pbtag\.*.rpm\' -o -name \'$pbrealpkgdeb"."_$pbver-$pbtag"."_*\.deb\' -o -name \'$pbrealpkgdeb"."_$pbver-$pbtag.dsc\' -o -name \'$pbrealpkgdeb"."_$pbver-$pbtag.tar.gz\' -o -name \'$pbrealpkg-$nver"."_p$ntag\.ebuild\' -o -name \'$pbrealpkg-$pbver-$pbtag*\.pkg\.gz\' -o -name \'$pbrealpkg-$pbver-$pbtag*\.sd\' ";
4195 $srcstr .= "src/$pbrealpkg-$pbver.tar.gz src/$pbrealpkg-$pbver.pbconf.tar.gz ";
4196 } else {
4197 # "Announce" and "Check"
4198 my @date=pb_get_date();
4199 # the matching is only done on packages made the same day for test version. Hopefully this is enough
4200 my $nver;
4201 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
4202 $pbtag = "0";
4203 my $ntag .= strftime("%Y%m%d*", @date);
4204 $nver = $pbver."_p$ntag*";
4205 $pbver .= "$ntag*";
4206 } else {
4207 $nver = $pbver."-r$pbtag";
4208 }
4209 $findstr .= "-name \'$pbrealpkgrpm-$pbver-$pbtag\.*.rpm\' -o -name \'$pbrealpkgdeb"."_$pbver-$pbtag"."_*\.deb\' -o -name \'$pbrealpkg-$nver\.ebuild\' -o -name \'$pbrealpkg-$pbver\.pkg\.gz\' -o -name \'$pbrealpkg-$pbver\.sd\' ";
4210 }
4211
4212 if ($antype eq "Announce") {
4213 my $chglog;
4214
4215 pb_cms_init($pbinit);
4216 # Get project info on log file and generate tmp files used later on
4217 $chglog = "$ENV{'PBROOTDIR'}/$pbpkg/pbcl";
4218 $chglog = "$ENV{'PBROOTDIR'}/pbcl" if (! -f $chglog);
4219 $chglog = undef if (! -f $chglog);
4220
4221 open(OUT,"> $ENV{'PBTMP'}/$pbpkg.ann") || die "Unable to create $ENV{'PBTMP'}/$pbpkg.ann: $!";
4222 my $pb;
4223 $pb->{'realpkg'} = $pbrealpkg;
4224 $pb->{'ver'} = $pbver;
4225 $pb->{'tag'} = $pbtag;
4226 $pb->{'date'} = $pbdate;
4227 $pb->{'extdir'} = pb_get_extdir();
4228 $pb->{'chglog'} = $chglog;
4229 $pb->{'packager'} = $pbpackager;
4230 $pb->{'proj'} = $ENV{'PBPROJ'};
4231 $pb->{'repo'} = $pbrepo;
4232 $pb->{'pbos'}->{'type'} = "announce";
4233 $pb->{'pbos'}->{'suffix'} = "none";
4234 pb_changelog($pb,\*OUT,"yes");
4235 close(OUT);
4236 push(@files,"$ENV{'PBTMP'}/$pbpkg.ann");
4237 } elsif ($antype eq "Check") {
4238 # For the check we also build the theoritical complete list we should get
4239 foreach my $d (split(/,/,$distrolist)) {
4240 $pbos = pb_distro_get_context($d);
4241 if ($pbos->{'type'} eq "rpm") {
4242 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}/$pbrealpkgrpm-$pbver-$pbtag$pbos->{'suffix'}"} = 0;
4243 } elsif ($pbos->{'type'} eq "deb") {
4244 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkgdeb"."_$pbver-$pbtag"} = 0;
4245 # TODO are we always using the last arch ?
4246 $archlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkgdeb"."_$pbver-$pbtag"} = "$pbos->{'arch'}";
4247 } elsif ($pbos->{'type'} eq "ebuild") {
4248 my $prefix = "-r";
4249 $prefix = "_p" if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i));
4250 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkg-$pbver$prefix$pbtag.ebuild"} = 0;
4251 $archlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkg-$pbver$prefix$pbtag.ebuild"} = "$pbos->{'arch'}";
4252 } elsif ($pbos->{'type'} eq "pkg") {
4253 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}/$pbrealpkg-$pbver-$pbtag.pkg.gz"} = 0;
4254 } else {
4255 pb_log(1,"No theoritical list possible for type $pbos->{'type'}\n");
4256 }
4257 }
4258 }
4259 pb_log(2,"theorlist initial: ".Dumper(%theorlist)."\n");
4260 pb_log(2,"archlist: ".Dumper(%archlist)."\n");
4261 }
4262 if ($antype eq "Announce") {
4263 $findstr .= " | grep -Ev \'src.rpm\'";
4264 } elsif ($antype eq "Clean") {
4265 $findstr .= " | xargs rm -f -v $srcstr ";
4266 }
4267
4268 # Prepare the command to run and execute it
4269 open(PBS,"> $ENV{'PBTMP'}/pbscript") || die "Unable to create $ENV{'PBTMP'}/pbscript";
4270 print PBS "#!/bin/bash\n";
4271 print PBS "set -x\n" if ($pbdebug gt 1);
4272 print PBS "$findstr | sort 2> /dev/null\n";
4273 close(PBS);
4274 chmod 0755,"$ENV{'PBTMP'}/pbscript";
4275 pb_send2target("Announce","$ENV{'PBTMP'}/pbscript");
4276
4277 my $sl = "Project $ENV{'PBPROJ'} version $ENV{'PBPROJVER'} is now available";
4278 if ($antype eq "Announce") {
4279 # Get subject line
4280 pb_log(0,"Please enter the title of your announce\n");
4281 pb_log(0,"(By default: $sl)\n");
4282 my $sl2 = <STDIN>;
4283 $sl = $sl2 if ($sl2 !~ /^$/);
4284
4285 # Prepare a template of announce
4286 open(ANN,"> $ENV{'PBTMP'}/announce.html") || die "Unable to create $ENV{'PBTMP'}/announce.html: $!";
4287 print ANN << "EOF";
4288$sl</p>
4289
4290<p>The project team is happy to announce the availability of a newest version of $ENV{'PBPROJ'} $ENV{'PBPROJVER'}. Enjoy it as usual!</p>
4291<p>
4292Now available at <a href="$pbrepo->{$ENV{'PBPROJ'}}">$pbrepo->{$ENV{'PBPROJ'}}</a>
4293</p>
4294<p>
4295EOF
4296 }
4297
4298 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to read $ENV{'PBTMP'}/system.$$.log: $!";
4299 if ($antype eq "Announce") {
4300 my $col = 2;
4301 my $i = 1;
4302 print ANN << 'EOF';
4303<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
4304<TR>
4305EOF
4306 while (<LOG>) {
4307 print ANN "<TD><A HREF=\"$pbrepo->{$ENV{'PBPROJ'}}/$_\">$_</A></TD>";
4308 $i++;
4309 if ($i > $col) {
4310 print ANN "</TR>\n<TR>";
4311 $i = 1;
4312 }
4313 }
4314 } elsif ($antype eq "Clean") {
4315 while (<LOG>) {
4316 # skip errors
4317 next if ($_ !~ /^removed /);
4318 pb_log(0,"$_");
4319 }
4320 } else {
4321 # In "Check" mode we need to compare the 2 lists (real and theoritical)
4322 while (<LOG>) {
4323 # Get package name and remove what is in extra for the theoritical list (arch at the end)
4324 chomp();
4325 # skip find errors
4326 next if (/^find:/);
4327 my $p = $_;
4328 $p =~ s/\.(i[3456]86|x86_64|noarch|src)\.rpm$//;
4329 $p =~ s/_(i[3456]86|amd64|all)\.deb$//;
4330 $p =~ s/(-0\.[0-9]{8})[0-9]{6}/$1*/ if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i));
4331 $p =~ s/(-r|_p[0-9]+)\.ebuild/$1*/ if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i));
4332 $theorlist{$p} = -2 if (not defined $theorlist{$p});
4333 $theorlist{$p} = $theorlist{$p} + 1;
4334 }
4335 pb_log(2,"theorlist after check: ".Dumper(%theorlist)."\n");
4336 }
4337 close(LOG);
4338
4339 # Nothing more for the cleanssh case
4340 return if ($antype eq "Clean");
4341
4342 if ($antype eq "Check") {
4343 my ($chkex) = pb_conf_get_if("checkexclude");
4344 my $vmbuildlist = "";
4345 my $vebuildlist = "";
4346 my $rmbuildlist = "";
4347 my @pt = pb_conf_get_if("vmlist","velist","rmlist");
4348 foreach my $t (sort keys %theorlist) {
4349 if (defined $theorlist{$t} and $theorlist{$t} >= 1) {
4350 pb_log(1,"Packages found for $t\n");
4351 } elsif (defined $theorlist{$t} and $theorlist{$t} < 0) {
4352 pb_log(0,"Extra Package found for $t\n");
4353 } else {
4354 pb_log(2,"Analyzing $t\n");
4355 my ($os,$ver,$arch,$package) = split(/\//,$t);
4356 # Some distro have no arch subdir
4357 if (not defined $package) {
4358 $package = $arch;
4359 # TODO: If both arch have failed, we just make the last one
4360 $arch = $archlist{$t} if (defined $archlist{$t});
4361 }
4362 my $pbos = pb_distro_get_context("$os-$ver-$arch");
4363 my $pkgn = $package;
4364 if ($pbos->{'type'} ne "deb") {
4365 # package name is more easily found from the end for non deb
4366 # as '-' is the separator, but it can also be used in names
4367 $pkgn = reverse($package);
4368 # search the second '-' and isolate the now last part which is the full name
4369 $pkgn =~ s/([^-]+)-([^-]+)-([\S])+$/$3/;
4370 } else {
4371 $pkgn =~ s/([^_]+)_([\S])+$/$2/;
4372 }
4373 my $found = 0;
4374 # Handle the exclusion of OSes
4375 my $excl = "";
4376 $excl .= $chkex->{$pkgn} if (defined $chkex->{$pkgn});
4377 $excl .= $chkex->{"all"} if (defined $chkex->{"all"});
4378
4379 pb_log(2,"Searching in excl $excl\n");
4380 foreach my $ex (split(/,/,$excl)) {
4381 $found = 1 if ("$os-$ver-$arch" =~ /^$ex/);
4382 }
4383 # Skip as excluded
4384 next if ($found == 1);
4385 pb_log(0,"Package NOT found for $t\n");
4386 # Avoid duplicates in list
4387 next if ($vmbuildlist =~ /$os-$ver-$arch/);
4388 next if ($vebuildlist =~ /$os-$ver-$arch/);
4389 next if ($rmbuildlist =~ /$os-$ver-$arch/);
4390 # check with which method we need to build
4391 if ((defined $pt[0]->{$ENV{'PBPROJ'}}) and ($pt[0]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4392 $vmbuildlist = "$os-$ver-$arch" if ($vmbuildlist eq "");
4393 $vmbuildlist .= ",$os-$ver-$arch" if ($vmbuildlist !~ /$os-$ver-$arch/);
4394 next;
4395 }
4396 if ((defined $pt[1]->{$ENV{'PBPROJ'}}) and ($pt[1]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4397 $vebuildlist = "$os-$ver-$arch" if ($vebuildlist eq "");
4398 $vebuildlist .= ",$os-$ver-$arch" if ($vebuildlist !~ /$os-$ver-$arch/);
4399 next;
4400 }
4401 if ((defined $pt[2]->{$ENV{'PBPROJ'}}) and ($pt[2]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4402 $rmbuildlist = "$os-$ver-$arch" if ($rmbuildlist eq "");
4403 $rmbuildlist .= ",$os-$ver-$arch" if ($rmbuildlist !~ /$os-$ver-$arch/);
4404 }
4405 }
4406 }
4407 # If we want to rebuild automatically, let's do it
4408 if (defined $opts{'rebuild'}) {
4409 # SandBox or CMS
4410 pb_log(0,"Rebuilding from SandBox\n");
4411 pb_log(0,"for VMs: $vmbuildlist\n") if ($vmbuildlist ne "");
4412 pb_log(0,"for VEs: $vebuildlist\n") if ($vebuildlist ne "");
4413 pb_log(0,"for RMs: $rmbuildlist\n") if ($rmbuildlist ne "");
4414 pb_cms2build("SandBox");
4415 # Which mode
4416 $ENV{'PBV'} = $vmbuildlist;
4417 pb_build2v("vm","build") if ($vmbuildlist ne "");
4418 $ENV{'PBV'} = $vebuildlist;
4419 pb_build2v("ve","build") if ($vebuildlist ne "");
4420 $ENV{'PBV'} = $rmbuildlist;
4421 pb_build2v("rm","build") if ($rmbuildlist ne "");
4422 }
4423 # For the check part this is now finished
4424 return;
4425 }
4426
4427 print ANN << "EOF";
4428</TR>
4429</TABLE>
4430</p>
4431
4432<p>As usual source packages are also available in the same directory.</p>
4433
4434<p>
4435Changes are :
4436</p>
4437<p>
4438EOF
4439 # Get each package changelog content
4440 foreach my $f (sort(@files)) {
4441 open(IN,"$f") || die "Unable to read $f:$!";
4442 while (<IN>) {
4443 print ANN $_;
4444 }
4445 close(IN);
4446 print ANN "</p><p>\n";
4447 }
4448 print ANN "</p>\n";
4449 close(ANN);
4450
4451 # Allow for modification
4452 my $editor = "vi";
4453 $editor = $ENV{'EDITOR'} if (defined $ENV{'EDITOR'});
4454 pb_system("$editor $ENV{'PBTMP'}/announce.html","Allowing modification of the announce","noredir");
4455
4456 # Store it in DB for external usage (Web pages generation)
4457 my $dbh = pb_connect_db();
4458
4459 # To read whole file
4460 local $/;
4461 open(ANN,"$ENV{'PBTMP'}/announce.html") || die "Unable to read $ENV{'PBTMP'}/announce.html: $!";
4462 my $announce = <ANN>;
4463 close(ANN);
4464
4465 pb_log(2,"INSERT INTO announces VALUES (NULL, $pbdate, $announce)");
4466 my $sth = $dbh->prepare(qq{INSERT INTO announces VALUES (NULL,?,?)})
4467 || die "Unable to insert into db";
4468 $sth->execute($pbdate, $announce);
4469 $sth->finish();
4470 $dbh->disconnect;
4471
4472 # Then deliver it on the Web
4473 # $TOOLHOME/livwww www
4474
4475 # Mail it to project's ML
4476 open(ML,"| w3m -dump -T text/html > $ENV{'PBTMP'}/announce.txt") || die "Unable to create $ENV{'PBTMP'}/announce.txt: $!";
4477 print ML << 'EOF';
4478<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">
4479
4480<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="en" lang="en">
4481 <head>
4482 </head>
4483 <body>
4484 <p>
4485EOF
4486 open(ANN,"$ENV{'PBTMP'}/announce.html") || die "Unable to read $ENV{'PBTMP'}/announce.html: $!";
4487 while(<ANN>) {
4488 print ML $_;
4489 }
4490 print ML << 'EOF';
4491</body>
4492</html>
4493EOF
4494 close(ML);
4495
4496 # To read whole file
4497 local $/;
4498 open(ANN,"$ENV{'PBTMP'}/announce.txt") || die "Unable to read $ENV{'PBTMP'}/announce.txt: $!";
4499 my $msg = <ANN>;
4500 close(ANN);
4501
4502 # Preparation of headers
4503 eval
4504 {
4505 require Mail::Sendmail;
4506 Mail::Sendmail->import();
4507 };
4508 if ($@) {
4509 # Mail::Sendmail not found not sending mail !
4510 pb_log(0,"No Mail::Sendmail module found so not sending any mail !\n");
4511 } else {
4512 my ($pbml,$pbsmtp) = pb_conf_get("pbml","pbsmtp");
4513 my %mail = (
4514 To => $pbml->{$ENV{'PBPROJ'}},
4515 From => $pbpackager->{$ENV{'PBPROJ'}},
4516 Smtp => $pbsmtp->{$ENV{'PBPROJ'}},
4517 Body => $msg,
4518 Subject => "[ANNOUNCE] $sl",
4519 );
4520
4521 # Send mail
4522 if (! sendmail(%mail)) {
4523 if ((defined $Mail::Sendmail::error) and (defined $Mail::Sendmail::log)) {
4524 die "Unable to send mail ($Mail::Sendmail::error): $Mail::Sendmail::log";
4525 }
4526 }
4527 }
4528}
4529
4530#
4531# Creates a set of HTML file containing the news for the project
4532# based on what has been generated by the pb_announce function
4533#
4534sub pb_web_news2html {
4535
4536 my $dest = shift || $ENV{'PBTMP'};
4537
4538 # Get all required parameters
4539 my ($pkgv, $pkgt) = pb_conf_get_if("pkgver","pkgtag");
4540
4541
4542 my $dbh = pb_connect_db();
4543 # For date handling
4544 $ENV{LANGUAGE}="C";
4545 my $firstjan = strftime("%Y-%m-%d", 0, 0, 0, 1, 0, localtime->year(), 0, 0, -1);
4546 my $oldfirst = strftime("%Y-%m-%d", 0, 0, 0, 1, 0, localtime->year()-1, 0, 0, -1);
4547 pb_log(2,"firstjan: $firstjan, oldfirst: $oldfirst, pbdate:$pbdate\n");
4548 my $all = $dbh->selectall_arrayref("SELECT id,date,announce FROM announces ORDER BY date DESC");
4549 my %news;
4550 $news{"cy"} = ""; # current year's news
4551 $news{"ly"} = ""; # last year news
4552 $news{"py"} = ""; # previous years news
4553 $news{"fp"} = ""; # first page news
4554 my $cpt = 4; # how many news for first page
4555 # Extract info from DB
4556 foreach my $row (@$all) {
4557 my ($id, $date, $announce) = @$row;
4558 $news{"cy"} = $news{"cy"}."<p><B>$date</B> $announce\n" if ((($date cmp $pbdate) le 0) && (($firstjan cmp $date) le 0));
4559 $news{"ly"} = $news{"ly"}."<p><B>$date</B> $announce\n" if ((($date cmp $firstjan) le 0) && (($oldfirst cmp $date) le 0));
4560 $news{"py"} = $news{"py"}."<p><B>$date</B> $announce\n" if (($date cmp $oldfirst) le 0);
4561 $news{"fp"} = $news{"fp"}."<p><B>$date</B> $announce\n" if ($cpt > 0);
4562 $cpt--;
4563 }
4564 pb_log(1,"news{fp}: ".$news{"fp"}."\n");
4565 $dbh->disconnect;
4566
4567 # Generate the HTML content
4568 foreach my $pref (keys %news) {
4569 open(NEWS,"> $dest/pb_web_$pref"."news.html") || die "Unable to create $dest/pb_web_$pref"."news.html: $!";
4570 print NEWS "$news{$pref}";
4571 close(NEWS);
4572 }
4573}
4574
4575sub pb_connect_db {
4576
4577 # Store in DB for external usage (Web pages generation)
4578 my $db = "$ENV{'PBCONFDIR'}/announces3.sql";
4579
4580 my $precmd = "";
4581 if (! -f $db) {
4582 $precmd = "CREATE TABLE announces (id INTEGER PRIMARY KEY AUTOINCREMENT, date DATE, announce VARCHAR[65535])";
4583 # we should add the $db to the VCS as well here
4584 }
4585
4586 my $dbh = DBI->connect("dbi:SQLite:dbname=$db","","",
4587 { RaiseError => 1, AutoCommit => 1 })
4588 || die "Unable to connect to $db";
4589
4590 if ($precmd ne "") {
4591 my $sth = $dbh->prepare(qq{$precmd})
4592 || die "Unable to create table into $db";
4593 $sth->execute();
4594 }
4595
4596 return($dbh);
4597}
4598
4599
4600# Return the SSH key file to use
4601# Potentially create it if needed
4602
4603sub pb_ssh_get {
4604
4605my $create = shift || 0; # Do not create keys by default. In that case prefer native keys, not pb's ones
4606my $target = shift || "localhost";
4607my $nport = shift || "22";
4608
4609my ($pbagent) = pb_conf_get_if("pbusesshagent");
4610# use ssh-agent if asked so.
4611return(undef) if (($create == 0) && (defined $pbagent->{$ENV{'PBPROJ'}}) && ($pbagent->{$ENV{'PBPROJ'}} =~ /true/io));
4612
4613# Check the SSH environment
4614my $keyfile = undef;
4615
4616# Check whether ecdsa is accepted by the remote host
4617my $ecdsa = 0;
4618my $dsa = 0;
4619open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target 2>/dev/null |") || pb_log(0,"Unable to check ECDSA support for $target");
4620while(<SCAN>) {
4621 $ecdsa = 1 if ($_ =~ /ecdsa-/);
4622 pb_log(2,"Found ECDSA support on $target ($nport)\n");
4623}
4624close(SCAN);
4625
4626open(SCAN,"ssh-keyscan -p $nport -t dsa $target 2>/dev/null |") || pb_log(0,"Unable to check DSA support for $target");
4627while(<SCAN>) {
4628 $dsa = 1 if ($_ =~ /ssh-dss/);
4629 pb_log(2,"Found DSA support on $target ($nport)\n");
4630}
4631close(SCAN);
4632
4633# We have specific keys by default - create them if needed
4634if (!(-e "$ENV{'HOME'}/.ssh/pb_ecdsa") && ($create eq 1)) {
4635 my $res = pb_system("ssh-keygen -q -b 1024 -N '' -f $ENV{'HOME'}/.ssh/pb_ecdsa -t ecdsa","Generating ECDSA SSH keys for pb");
4636 if (($res != 0) && !(-e "$ENV{'HOME'}/.ssh/pb_dsa") && ($create eq 1)) {
4637 # ecdsa may not be supported if old ssh
4638 pb_system("ssh-keygen -q -b 1024 -N '' -f $ENV{'HOME'}/.ssh/pb_dsa -t dsa","Generating DSA SSH keys for pb");
4639 }
4640}
4641
4642#$keyfile = "$ENV{'HOME'}/.ssh/id_rsa" if (-s "$ENV{'HOME'}/.ssh/id_rsa");
4643# We still favoud DSA and fall back to ECDSA if not available
4644if ($dsa != 0) {
4645 # And we favour a specific key over a generic one except if in delivery to ftp server
4646 $keyfile = "$ENV{'HOME'}/.ssh/id_dsa" if ((-s "$ENV{'HOME'}/.ssh/id_dsa") && ($create eq 0));
4647 $keyfile = "$ENV{'HOME'}/.ssh/pb_dsa" if (-s "$ENV{'HOME'}/.ssh/pb_dsa");
4648} else {
4649 # And we favour a specific key over a generic one except if in delivery to ftp server
4650 $keyfile = "$ENV{'HOME'}/.ssh/id_ecdsa" if ((-s "$ENV{'HOME'}/.ssh/id_ecdsa") && ($ecdsa != 0) && ($create eq 0));
4651 $keyfile = "$ENV{'HOME'}/.ssh/pb_ecdsa" if ((-s "$ENV{'HOME'}/.ssh/pb_ecdsa") && ($ecdsa != 0));
4652}
4653if (defined $keyfile) {
4654 pb_log(2,"Using ssh key file $keyfile\n");
4655} else {
4656 pb_log(0, "Unable to find your public ssh key under $ENV{'HOME'}/.ssh\n");
4657}
4658return($keyfile);
4659}
4660
4661
4662# Returns the pid of a running VM command using a specific VM file, and the port used if the VM exists
4663sub pb_check_ps {
4664 my $vmcmd = shift;
4665 my $vmm = shift;
4666 my $vexist = 0; # FALSE by default
4667 my $vmport = undef; # NONE by default
4668
4669 open(PS, "ps auxhww|") || die "Unable to call ps";
4670 while (<PS>) {
4671 next if (! /$vmcmd/);
4672 next if (! /$vmm/);
4673 my $void1;
4674 ($void1, $vexist, $vmport) = split(/ +/,$_,3);
4675 pb_log(2,"pb_check_ps $vmport\n");
4676 $vmport =~ s/.*=tcp:127\.0\.0\.1:([0-9]+)-:22.*/$1/;
4677 chomp($vmport);
4678 pb_log(2,"pb_check_ps found a VM $vexist using port $vmport\n");
4679 last;
4680 }
4681 return($vexist,$vmport);
4682}
4683
4684
4685sub pb_extract_build_files {
4686
4687my $src=shift;
4688my $dir=shift;
4689my $ddir=shift;
4690my $mandatory=shift || "spec";
4691
4692my $flag = "mayfail" if (($mandatory eq "patch") || ($mandatory eq "src"));
4693my $res;
4694
4695if ($src =~ /tar\.gz$/) {
4696 $res = pb_system("tar xfpz $src $dir","Extracting $mandatory files from $src",$flag);
4697} elsif ($src =~ /tar\.bz2$/) {
4698 $res = pb_system("tar xfpj $src $dir","Extracting $mandatory files from $src",$flag);
4699} else {
4700 die "Unknown compression algorithm for $src";
4701}
4702# If not mandatory return now
4703return() if (($res != 0) and (($mandatory eq "patch") || ($mandatory eq "src")));
4704return(pb_move_extracted_files($dir,$ddir));
4705}
4706
4707sub pb_move_extracted_files {
4708
4709my $dir = shift;
4710my $ddir = shift;
4711my @files;
4712
4713# In a recursive function , we need a local var as DIR handle
4714my $bdir;
4715
4716opendir($bdir,"$dir") || confess "Unable to open directory $dir: $!";
4717foreach my $f (readdir($bdir)) {
4718 next if ($f =~ /^\./);
4719 # Skip potential patch dir
4720 next if ($f =~ /^pbpatch/);
4721 # Skip potential source dir
4722 next if ($f =~ /^pbsrc/);
4723 # Skip potential backup files
4724 next if ($f =~ /~$/);
4725 if ((-d "$dir/$f") && (! -l "$dir/$f")) {
4726 # Case of the bug debian subdir
4727 pb_mkdir_p("$ddir/$f");
4728 push @files,pb_move_extracted_files("$dir/$f","$ddir/$f");
4729 } else {
4730 move("$dir/$f","$ddir") || die "Unable to move $dir/$f to $ddir";
4731 pb_log(2,"mv $dir/$f $ddir\n");
4732 push @files,"$ddir/$f";
4733 }
4734}
4735closedir($bdir);
4736# Not enough but still a first cleanup
4737pb_rm_rf("$dir");
4738return(@files);
4739}
4740
4741sub pb_list_bfiles {
4742
4743my $dir = shift;
4744my $pbpkg = shift;
4745my $bfiles = shift;
4746my $pkgfiles = shift;
4747my $supfiles = shift;
4748# subdir to keep if recursive mode, empty by default
4749my $subdir = shift || "";
4750# In a recursive function , we need a local var as DIR handle
4751my $bdir;
4752
4753pb_log(2,"DEBUG: entering pb_list_bfiles in $dir: ".Dumper($bfiles)."\n");
4754opendir($bdir,"$dir") || die "Unable to open dir $dir: $!";
4755foreach my $f (readdir($bdir)) {
4756 pb_log(3,"DEBUG: pb_list_bfiles found $f\n");
4757 next if ($f =~ /^\./);
4758 if (-d "$dir/$f") {
4759 # Recurse for directories (Debian 3.0 format e.g.)
4760 pb_log(2,"DEBUG: pb_list_bfiles recurse in $dir/$f\n");
4761 pb_list_bfiles("$dir/$f",$pbpkg,$bfiles,$pkgfiles,$supfiles,$f);
4762 next;
4763 }
4764
4765 my $key = $f;
4766 # if recursive then store also the subdir
4767 $key = "$subdir/$f" if ($subdir ne "");
4768 $bfiles->{$key} = "$dir/$f";
4769 $bfiles->{$key} =~ s~$ENV{'PBROOTDIR'}~~;
4770 if (defined $supfiles->{$pbpkg}) {
4771 $pkgfiles->{$key} = "$dir/$f" if ($f =~ /$supfiles->{$pbpkg}/);
4772 }
4773}
4774closedir($bdir);
4775pb_log(2,"DEBUG: exiting pb_list_bfiles: ".Dumper($bfiles)."\n");
4776}
4777
4778sub pb_add_comma {
4779
4780my $str = shift;
4781my $addstr = shift;
4782
4783$str .= "," if (defined $str);
4784$str .= $addstr;
4785return($str);
4786}
4787
4788sub pb_list_sfiles {
4789
4790my $sdir = shift;
4791my $ptr = shift;
4792my $pbos = shift;
4793my $extdir = shift;
4794
4795pb_log(2,"DEBUG: entering pb_list_sfiles: ".Dumper($ptr)."\n");
4796my $key = "$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
4797
4798# Prepare local sources for this distro - They are always applied first - May be a problem one day
4799# This function works for both patches and additional sources
4800foreach my $p (sort(<$sdir/*>)) {
4801 $ptr->{$key} = pb_add_comma($ptr->{$key},"file://$p") if (($p =~ /\.all$/) || ($p =~ /\.$pbos->{'os'}$/) || ($p =~ /\.$pbos->{'type'}$/) || ($p =~ /\.$pbos->{'family'}$/) || ($p =~ /\.$pbos->{'name'}$/) || ($p =~ /\.$pbos->{'name'}-$pbos->{'version'}$/) ||($p =~ /\.$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}$/));
4802}
4803
4804# Prepare also remote sources to be included - Applied after the local ones
4805foreach my $p ("all","$pbos->{'os'}","$pbos->{'type'}","$pbos->{'family'}","$pbos->{'name'}","$pbos->{'name'}-$pbos->{'version'}","$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}") {
4806 my $f = "$extdir.".".$p";
4807 next if (not -f $f);
4808 if (not open(PATCH,$f)) {
4809 pb_display("Unable to open existing external source file content $f\n");
4810 next;
4811 }
4812 while (<PATCH>) {
4813 chomp();
4814 $ptr->{$key} = pb_add_comma($ptr->{$key},"$_");
4815 }
4816 close(PATCH);
4817}
4818pb_log(2,"DEBUG: exiting pb_list_sfiles: ".Dumper($ptr)."\n");
4819return($ptr);
4820}
4821
4822#
4823# Return the list of packages we are working on in a non CMS action
4824#
4825sub pb_get_pkg {
4826
4827my @pkgs = ();
4828
4829# In script actions that file may not exist.
4830return(\@pkgs) if ((not defined $ENV{'PBDESTDIR'}) || (not defined $ENV{'PBPROJVER'}) || (not defined $ENV{'PBPROJTAG'}) || (! -f "$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb"));
4831
4832my ($var) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
4833@pkgs = keys %$var if (defined $var);
4834
4835pb_log(0,"Packages: ".join(',',@pkgs)."\n") if (@pkgs);
4836return(\@pkgs);
4837}
4838
4839# Manages VM/RM SSH port communication
4840sub pb_get_port {
4841
4842my $port = shift;
4843my $pbos = shift;
4844my $cmt = shift;
4845my $nport;
4846
4847die "No port passed in parameter. Report to dev team\n" if (not defined $port);
4848# key is project on VM, but machine tuple for RM
4849if ($cmt =~ /^RM/i) {
4850 $nport = $port->{"$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}"};
4851} else {
4852 $nport = $port->{$ENV{'PBPROJ'}};
4853}
4854pb_log(2,"pb_get_port with $nport\n");
4855if ($cmt =~ /^VM/i) {
4856 # Maybe a port was given as parameter so overwrite
4857 $nport = "$pbport" if (defined $pbport);
4858 # Maybe in // mode so use the env var set up as an offset to the base port
4859 $nport = $nport + $ENV{'PBVMPORT'} -1 if ((defined $pbparallel) && (defined $ENV{'PBVMPORT'}));
4860}
4861pb_log(2,"pb_get_port returns $nport\n");
4862return($nport);
4863}
4864
4865sub pb_set_port {
4866
4867my ($pid,$ident) = @_;
4868pb_log(2,"pb_set_port for VM ($pid), id $ident\n");
4869$ENV{'PBVMPORT'} = $ident;
4870pb_log(2,"pb_set_port sets PBVMPORT in env to $ENV{'PBVMPORT'}\n");
4871}
4872
4873sub pb_set_parallel {
4874
4875my $vtype = shift;
4876
4877pb_log(2,"pb_set_parallel vtype: $vtype\n");
4878# Take care of memory size if VM, parallel mode and more than 1 action
4879if ((defined $pbparallel) && ($pbparallel ne 1) && ($vtype eq "vm")) {
4880 eval
4881 {
4882 require Linux::SysInfo;
4883 Linux::SysInfo->import();
4884 };
4885 if ($@) {
4886 # Linux::SysInfo not found
4887 pb_log(1,"ADVISE: Install Linux::SysInfo to benefit from automatic parallelism optimization.\nOr optimize manually pbparallel in your pb.conf file\nUsing $pbparallel processes max at a time for the moment\nWARNING: This may consume too much memory for your system\n");
4888 } else {
4889 # Using the memory size
4890 my $si = Linux::SysInfo::sysinfo();
4891 if (not defined $si) {
4892 pb_log(1,"ADVISE: Install Linux::SysInfo to benefit from automatic parallelism optimization.\nOr optimize manually pbparallel in your pb.conf file\nUsing $pbparallel processes max at a time for the moment\nWARNING: This may consume too much memory for your system\n");
4893 } else {
4894 # Keep the number of VM whose memory can be allocated
4895 my $ram = $si->{"totalram"}-$si->{"sharedram"}-$si->{"bufferram"};
4896 my $ram2;
4897 my ($vmmem) = pb_conf_get_if("vmmem");
4898
4899 my $v = "default";
4900 if ((defined $vmmem) and (defined $vmmem->{$v})) {
4901 $ram2 = $vmmem->{$v};
4902 } else {
4903 # Default for KVM/QEMU
4904 $ram2 = 128;
4905 }
4906 $pbparallel = sprintf("%d",$ram/$ram2);
4907 }
4908 pb_log(1,"Using $pbparallel processes at a time\n");
4909 }
4910}
4911pb_log(2,"pb_set_parallel returns: $pbparallel\n") if (defined $pbparallel);
4912return($pbparallel);
4913}
4914
4915sub pb_get_sudocmds {
4916
4917my $pbos = shift;
4918my @cmds = @_;
4919my %sudocmds;
4920
4921pb_log(2,"pb_get_sudocmds entering with lines:".Dumper(@cmds)."\n");
4922foreach my $c (split(/;/,$pbos->{'update'}),split(/;/,$pbos->{'install'}),@cmds) {
4923 pb_log(2,"pb_get_sudocmds analyses $c\n");
4924 next if ($c !~ /^\s*sudo/);
4925 # remove sudo and leading spaces
4926 $c =~ s/^\s*sudo\s+//;
4927 # keep only the command, not the params
4928 $c =~ s/([^\s]+)\s.*$/$1/;
4929 $sudocmds{$c} = "";
4930}
4931pb_log(2,"pb_get_sudocmds returns ".Dumper(keys %sudocmds)."\n");
4932return(keys %sudocmds);
4933}
4934
4935sub pb_sign_setenv {
4936
4937my ($passfile, $passphrase, $passpath) = pb_conf_get_if("pbpassfile","pbpassphrase","pbpasspath");
4938$ENV{'PBPASSPHRASE'} = $passphrase->{$ENV{'PBPROJ'}} if ((not defined $ENV{'PBPASSPHRASE'}) && (defined $passphrase->{$ENV{'PBPROJ'}}));
4939$ENV{'PBPASSFILE'} = $passfile->{$ENV{'PBPROJ'}} if ((not defined $ENV{'PBPASSFILE'})&& (defined $passfile->{$ENV{'PBPROJ'}})) ;
4940$ENV{'PBPASSPATH'} = $passpath->{$ENV{'PBPROJ'}} if ((not defined $ENV{'PBPASSPATH'})&& (defined $passpath->{$ENV{'PBPROJ'}})) ;
4941
4942eval
4943{
4944 require RPM4::Sign;
4945 RPM4::Sign->import();
4946};
4947if ($@) {
4948 # RPM4::Sign not found
4949 pb_log(1,"WARNING: Install RPM4::Sign to benefit from automatic package signing.\n");
4950 return(undef);
4951} else {
4952 return(undef) if (((not defined $ENV{'PBPASSPHRASE'}) and (not defined $ENV{'PBPASSFILE'})) || (not defined $ENV{'PBPACKAGER'}) || (not defined $ENV{'PBPASSPATH'}));
4953 my $sign = RPM4::Sign->new(
4954 passphrase => $ENV{'PBPASSPHRASE'},
4955 name => $ENV{'PBPACKAGER'},
4956 path => $ENV{'PBPASSPATH'},
4957 password_file => $ENV{'PBPASSFILE'},
4958 );
4959 return(undef) if (not defined $sign);
4960 return(undef) if (not defined $sign->{name});
4961 return(undef) if (not defined $sign->{path});
4962 return(undef) if ((not defined $sign->{passphrase}) && (not defined $sign->{password_file}));
4963 return(undef) if (not defined $sign->{keyid});
4964
4965 return($sign);
4966}
4967}
4968
4969# Cf: http://wiki.debian.org/SecureApt
4970
4971sub pb_sign_file {
4972
4973my $file = shift;
4974
4975eval
4976{
4977 require Crypt::OpenPGP;
4978 Crypt::OpenPGP->import();
4979};
4980if ($@) {
4981 # Crypt::OpenPGP not found
4982 pb_log(1,"WARNING: Install Crypt::OpenPGP to benefit from debian Release file signing.\n");
4983} else {
4984 my $sign = pb_sign_setenv();
4985 my $pgp = Crypt::OpenPGP->new;
4986 my $pgpsign = $pgp->sign(
4987 Filename => $file,
4988 KeyID => $sign->{keyid},
4989 Passphrase => $sign->{passphrase},
4990 Detach => 1,
4991 Armour => 1,
4992 );
4993 open(DEST, "> $file.gpg") || confess "Unable to write to $file.gpg";
4994 print DEST $pgpsign if (defined $pgpsign);
4995 close(DEST);
4996}
4997}
4998
4999sub pb_sign_pkgs {
5000
5001my $pbos = shift;
5002my $made = shift;
5003
5004pb_log(2,"entering pb_sign_pkg: $made ".Dumper($pbos)."\n");
5005# Remove extra spaces
5006$made =~ s/\s+/ /g;
5007$made =~ s/^\s//g;
5008$made =~ s/\s$//g;
5009
5010if ($pbos->{'type'} eq "rpm") {
5011 my $sign = pb_sign_setenv();
5012 if (defined $sign) {
5013 pb_log(0,"Signing RPM packages...\n");
5014 pb_log(2,"pb_sign_pkg: pkgs:".Dumper(split(/ /,$made))."\n");
5015 $sign->rpmssign(split(/ /,$made));
5016 }
5017} elsif ($pbos->{'type'} eq "deb") {
5018 my $changes = "";
5019 foreach my $c (split(/ /,$made)) {
5020 $changes .= " $ENV{'PBBUILDDIR'}/$c" if (($c =~ /\.changes$/) && (-f "$ENV{PBBUILDDIR}/$c"));
5021 }
5022 my $debsigncmd = pb_check_req("debsign",1);
5023 pb_system("$debsigncmd -m\'$ENV{'PBPACKAGER'}\' $changes","Signing DEB packages","mayfail") if (($changes ne "") && (defined $debsigncmd));
5024} else {
5025 pb_log(0,"I don't know yet how to sign packages for type $pbos->{'type'}.\nPlease give feedback to dev team\n");
5026}
5027pb_log(2,"exiting pb_sign_pkg\n");
5028}
5029
5030# return list of all distributions supported, comma separated
5031sub pb_get_distros {
5032
5033my $pbos = shift;
5034my $pbtarget = shift;
5035
5036my @dists = ("$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}");
5037
5038# Get list of distributions for which we need to generate build files if no target
5039if (not defined $pbtarget) {
5040 my @pt = pb_conf_get_if("vmlist","velist","rmlist");
5041 foreach my $pt (@pt) {
5042 push(@dists, split(/,/, $pt->{$ENV{PBPROJ}})) if defined $pt->{$ENV{PBPROJ}};
5043 }
5044 # remove any whitespace
5045 grep(s/\s+//go, @dists);
5046}
5047return(join(",",@dists));
5048}
5049
5050sub pb_get_extdir {
5051
5052 # the pbrc file should contain it and whatever the key, we take it
5053 my ($ed) = pb_conf_read("$ENV{'PBDESTDIR'}/pbrc","pbextdir");
5054 pb_log(2,"ed: ".Dumper($ed)."\n");
5055 my $pbextdir = "";
5056 foreach my $k (keys %$ed) {
5057 $pbextdir = $ed->{$k};
5058 # In case we have an empty field, empty it completely
5059 pb_log(2,"pbextdir: ***$pbextdir***\n");
5060 $pbextdir =~ s/^\s*$//;
5061 }
5062 pb_log(2,"pbextdir: ***$pbextdir***\n");
5063 return($pbextdir);
5064}
5065
5066# Unused now
5067sub pb_keep_step {
5068
5069my $pbos = shift;
5070my $pbstep = shift;
5071
5072$pbstep = 3 if (not defined $pbstep);
5073
5074my %h;
5075my $h = \%h;
5076$h = pb_conf_cache("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb",$h);
5077$h->{'pbstep'}->{"$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}"} = $pbstep;
5078pb_conf_write("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb",$h);
5079}
5080
5081sub create_solaris_prototype {
5082
5083 my $uidgid = "bin bin";
5084 my $pkgdestdir = $ENV{'PBSOLDESTDIR'};
5085
5086 return if ($_ =~ /^$pkgdestdir$/);
5087 if (-d $_) {
5088 my $n = $File::Find::name;
5089 $n =~ s~$pkgdestdir/~~;
5090 print PROTO "d none $n 0755 $uidgid\n";
5091 } elsif (-x $_) {
5092 my $n = $File::Find::name;
5093 $n =~ s~$pkgdestdir/~~;
5094 print PROTO "f none $n 0755 $uidgid\n";
5095 } elsif (-f $_) {
5096 my $n = $File::Find::name;
5097 $n =~ s~$pkgdestdir/~~;
5098 print PROTO "f none $n 0644 $uidgid\n";
5099 }
5100}
5101
5102sub pb_ssh_setup {
5103
5104my $vtype = shift;
5105my $nport = shift;
5106
5107my $keyfile;
5108my $vmhost;
5109
5110pb_log(1,"Entering pb_ssh_setup\n");
5111($vmhost) = pb_conf_get($vtype."host");
5112# Prepare the key to be used and transfered remotely
5113$keyfile = pb_ssh_get(1,$vmhost->{$ENV{'PBPROJ'}},$nport);
5114return if (not defined $keyfile);
5115
5116# We call true to avoid problems if SELinux is not activated, but chcon is present and returns in that case 1
5117pb_system("cat $keyfile.pub | ssh -q -o UserKnownHostsFile=/dev/null -p $nport -i $keyfile root\@$vmhost->{$ENV{'PBPROJ'}} \"mkdir -p .ssh ; chmod 700 .ssh ; cat >> .ssh/authorized_keys ; chmod 600 .ssh/authorized_keys ; if [ -x /usr/bin/chcon ]; then /usr/bin/chcon -Rt home_ssh_t .ssh 2> /dev/null; /bin/true; fi\"","Copying local keys to $vtype. This may require the root password");
5118# once this is done, we can do what we need on the VM/RM remotely
5119
5120# in particular we can remove duplicate in .ssh/authorized_keys of our key if needed
5121# Store the pub key part in a variable
5122open(FILE,"$keyfile.pub") || die "Unable to open $keyfile.pub";
5123my ($zero0,$zero1,$zero2) = split(/ /,<FILE>);
5124close(FILE);
5125my $key = "\Q$zero1";
5126my $perls = "$ENV{'PBTMP'}/perls.$$";
5127
5128open(FILE,"> $perls") || die "Unable to open $perls";
5129print FILE << 'EOF';
5130my $file1="$ENV{'HOME'}/.ssh/authorized_keys";
5131open(PBFILE,$file1) || die "Unable to open $file1";
5132open(PBOUT,"> $file1.new") || die "Unable to open $file1.new";
5133my $count = 0;
5134while (<PBFILE>) {
5135EOF
5136print FILE << "EOF";
5137 if (/ $key /) {
5138 \$count++;
5139 }
5140 print PBOUT \$_ if ((\$count <= 1) || (\$_ !~ / $key /));
5141}
5142close(PBFILE);
5143close(PBOUT);
5144rename("\$file1.new",\$file1);
5145chmod 0600,\$file1;
5146EOF
5147close(FILE);
5148pb_system("cat $perls | ssh -q -o UserKnownHostsFile=/dev/null -p $nport -i $keyfile root\@$vmhost->{$ENV{'PBPROJ'}} perl","","quiet");
5149return;
5150}
5151
5152# Returns debian architecture
5153#
5154sub pb_get_debarch {
5155
5156my $pbos = shift;
5157
5158my $debarch = $pbos->{'arch'};
5159$debarch = "amd64" if ($pbos->{'arch'} eq "x86_64");
5160
5161return($debarch);
5162}
5163
5164sub pb_get_debpc {
5165
5166my ($projcomponent_map) = pb_conf_get_if("projcomponent");
5167pb_log(2,"projcomponent = ".Dumper($projcomponent_map)."\n");
5168my $projcomponent = $projcomponent_map->{$ENV{PBPROJ}};
5169$projcomponent ||= 'contrib';
5170
5171return($projcomponent);
5172}
5173
51741;
Note: See TracBrowser for help on using the repository browser.