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
RevLine 
[5]1#!/usr/bin/perl -w
2#
3# Project Builder main application
4#
5# $Id$
6#
[2032]7# Copyright B. Cornec 2007-2016
[1560]8# Eric Anderson's changes are (c) Copyright 2012 Hewlett Packard
[5]9# Provided under the GPL v2
10
[22]11# Syntax: see at end
[9]12
[18]13use strict 'vars';
[1107]14
15# The modules mentioned here are required by pb when used both
[1176]16# locally or inside a VE/VM/RM
[1107]17# Additional required modules only used locally are called with a require
18# in their respective section
[331]19use Getopt::Long qw(:config auto_abbrev no_ignore_case);
[1558]20use Carp qw/confess cluck/;
[9]21use Data::Dumper;
22use English;
[16]23use File::Basename;
[26]24use File::Copy;
[395]25use File::stat;
[872]26use File::Find;
[547]27use Time::localtime qw(localtime);
[13]28use POSIX qw(strftime);
[17]29use lib qw (lib);
[329]30use ProjectBuilder::Version;
[318]31use ProjectBuilder::Base;
[512]32use ProjectBuilder::Display;
[405]33use ProjectBuilder::Conf;
34use ProjectBuilder::Distribution;
[1469]35use ProjectBuilder::VCS;
[405]36use ProjectBuilder::CMS;
[416]37use ProjectBuilder::Env;
[405]38use ProjectBuilder::Filter;
[473]39use ProjectBuilder::Changelog;
[1348]40use ProjectBuilder::VE;
[473]41
[397]42# Global variables
[1903]43$Global::pb_stop_on_error = 0; # False by default
44$Global::pb_show_sudo = 0; # False by default
[1597]45
[1903]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
[5]63
[320]64my @date = pb_get_date();
65my $pbdate = strftime("%Y-%m-%d", @date);
[5]66
[331]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)
[748]77such as Subversion, CVS, Git, Mercurial... or being a simple reference to a compressed tar file.
[331]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
[1900]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> ...]
[331]86
[1900]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> ...]
[331]88
89=head1 OPTIONS
90
91=over 4
92
93=item B<-v|--verbose>
94
[1878]95Increase verbosity
[331]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
[748]105=item B<-S|--snapshot>
106
107Use the snapshot mode of VMs or VEs
108
[331]109=item B<--man>
110
111Prints the manual page and exits.
112
[1120]113=item B<-t|--target os-ver-arch>
[331]114
[1120]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
[1176]120Name of the Virtual Machines (VM), Virtual Environments (VE) or Remote Machines (RM)
[1552]121you want to build on (comma separated).
[331]122All if none precised (or use the env variable PBV).
123
[1900]124=item B<-T|--vetype VEtype]>
125
126Type of Virtual Environments (VE)
127Can be chroot or docker.
128
[331]129=item B<-s|--script script>
130
[1176]131Name of the script you want to execute on the related VMs/VEs/RMs.
[331]132
[1158]133=item B<-g|--nographic>
[1124]134
135Do not launch VMs in graphical mode.
136
[1900]137=item B<-i|--image image>
[331]138
[1900]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
[331]142
[1900]143
[331]144=item B<-a|--account account>
145
[1176]146Name of the account to use to connect on the related VMs/RMs.
[331]147
148=item B<-P|--port port_number>
149
[1176]150Port number to use to connect on the related VMs/RMs.";
[331]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
[1425]164=item B<-k|--keep>
165
166Keep the temporary dir where files have been created in or der to help debug
167
[1386]168=item B<--rebuild>
169
170Only valid with the checkssh action, it alllows to automatically relaunch the build of the failed packages
171
[1537]172=item B<--no-stop-on-error>
173
174Continue through errors with best effort.
175
[331]176=back
177
178=head1 ARGUMENTS
179
180<action> can be:
181
182=over 4
183
[1097]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
[331]192=item B<cms2build>
193
194Create tar files for the project under your CMS.
[1097]195Current state of the CMS is taken.
196CMS supported are SVN, SVK, CVS, Git and Mercurial
[331]197parameters are packages to build
198if not using default list
199
[1906]200=item B<build2prep>
201
202Prepare the environment for build by installing required dependencies. Done once on the build system.
203
[331]204=item B<build2pkg>
205
206Create packages for your running distribution
207
208=item B<cms2pkg>
209
210cms2build + build2pkg
211
[1097]212=item B<sbx2pkg>
213
214sbx2build + build2pkg
215
[1666]216=item B<sbx2pkg2ins>
217
218sbx2pkg + final install of packages
219
[331]220=item B<build2ssh>
221
222Send the tar files to a SSH host
223
[1097]224=item B<sbx2ssh>
225
226sbx2build + build2ssh
227
[331]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
[1176]240VM type supported are QEMU and KVM
[331]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
[1176]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
[1907]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
[1097]266=item B<sbx2vm>
267
268sbx2build + build2vm
269
270=item B<sbx2ve>
271
272sbx2build + build2ve
273
[2162]274=item B<sbx2docker>
275
276sbx2build + build2ve with a potential build of all necessary docker containers to perform it
277
[1176]278=item B<sbx2rm>
279
280sbx2build + build2rm
281
[331]282=item B<cms2vm>
283
284cms2build + build2vm
285
286=item B<cms2ve>
287
288cms2build + build2ve
289
[1176]290=item B<cms2rm>
291
292cms2build + build2rm
293
[331]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
[1176]311=item B<script2rm>
312
313Execute a script on a remote machine
314
[331]315=item B<newvm>
316
317Create a new virtual machine
318
319=item B<newve>
320
321Create a new virtual environment
322
[346]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
[1176]331=item B<setuprm>
332
333Setup a remote machine for pb usage
334
[1140]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
[1176]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
[1712]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
[748]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
[1111]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
[1176]381=item B<updaterm>
382
383Update the distribution in the remote machine
384
[783]385=item B<test2pkg>
386
387Test a package locally
388
[772]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
[1176]397=item B<test2rm>
398
399Test a package in a remote machine
400
[1386]401=item B<checkssh>
402
403Check the delivery of the packages on the repository
404
[1786]405=item B<checkps>
406
407Check the process running the VM concerned
408
[331]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
[471]419=item B<announce>
420
421Announce the availability of the project through various means
422
[1117]423=item B<sbx2webssh>
[557]424
[1117]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.
[557]428
[1117]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
[1495]443=item B<getconf>
444
[1795]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
[1495]447
[2139]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
[739]453=item B<clean>
454
455Purge the build and delivery directories related to the current project
456
[1392]457=item B<cleanssh>
458
459Purge the ssh server of its packages (only for testver and test packages)
460
461=back
462
[331]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
[1942]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
[331]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
[1537]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
[1554]546 % pb -p I<$project> -r I<$version> newproj I<$pkg>
[1537]547
[1554]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.
[1537]549
550=head2 cms2build
551
[1554]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:
[1537]553
[1554]554=over 4
555
556=item Update your $project.pb configuration file.
557
[1555]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.
[1554]559
[1555]560For example:
561
[1554]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
[1537]576 % pb -p $project -r $version cms2build
577
[2084]578To create the $pbdefdir/$project/pbdelivery/$project-$version.{,pbconf}.tar.gz files, the $version-$projtag.pb and pbrc files in the same directory.
[1537]579
[1554]580=back
581
[1537]582=head2 build2pkg
583
[1549]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:
[1537]585
[1549]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
[1542]596 % pb -p $project -r $version build2pkg
[1537]597
[2084]598To create the files in $project/pbbuild that comprise your binary package(s).
[1542]599
[1549]600=back
601
[1542]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
[1549]617If you are building for rpm style OS's, update the verpmtype option, and install the appropriate tool.
618
619 verpmtype default = rpmbootstrap
620
[1542]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
[2084]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.
[1542]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
[1545]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:
[1542]642
[1545]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
[1542]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
[1545]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
[1549]663Three sub-steps are needed:
[1545]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
[1549]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
[1545]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
[331]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
[75]703my ($projectbuilderver,$projectbuilderrev) = pb_version_init();
[974]704my $appname = "pb";
[331]705
[397]706# Initialize the syntax string
707
[974]708pb_syntax_init("$appname (aka project-builder.org) Version $projectbuilderver-$projectbuilderrev\n");
[397]709
[1583]710GetOptions("help|?|h+" => \$opts{'h'},
[1900]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'},
[331]717 "man" => \$opts{'man'},
[1900]718 "port|P=i" => \$opts{'P'},
719 "project|p=s" => \$opts{'p'},
[331]720 "quiet|q" => \$opts{'q'},
721 "revision|r=s" => \$opts{'r'},
[1900]722 "rebuild" => \$opts{'rebuild'},
723 "snapshot|S" => \$opts{'S'},
[331]724 "script|s=s" => \$opts{'s'},
[1900]725 "type|T:s" => \$opts{'T'},
[1401]726 "target|t:s" => \$opts{'t'},
[815]727 "version|V=s" => \$opts{'V'},
[1900]728 "verbose|v+" => \$opts{'v'},
[1425]729 "keep|k" => \$opts{'k'},
[1537]730 "stop-on-error!" => \$Global::pb_stop_on_error,
[331]731) || pb_syntax(-1,0);
732
[1583]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
[21]740if (defined $opts{'h'}) {
[2175]741 pb_syntax(0,1);
[21]742}
[331]743if (defined $opts{'man'}) {
744 pb_syntax(0,2);
745}
[21]746if (defined $opts{'v'}) {
[495]747 $pbdebug = $opts{'v'};
[21]748}
[320]749if (defined $opts{'f'}) {
[748]750 $pbforce=1;
[320]751}
[21]752if (defined $opts{'q'}) {
[495]753 $pbdebug=-1;
[21]754}
[748]755if (defined $opts{'S'}) {
756 $pbsnap=1;
757}
[1425]758if (defined $opts{'k'}) {
759 $pbkeep=1;
760}
[495]761pb_display_init("text","");
[315]762
[67]763# Handle root of the project if defined
764if (defined $opts{'r'}) {
[340]765 $ENV{'PBROOTDIR'} = $opts{'r'};
[67]766}
[91]767# Handle virtual machines if any
768if (defined $opts{'m'}) {
[320]769 $ENV{'PBV'} = $opts{'m'};
[91]770}
[141]771if (defined $opts{'s'}) {
[1903]772 $pbscript{'default'} = $opts{'s'};
[2049]773 die "option -s requires a script having a full path name" if ($pbscript{'default'} !~ /^\//);
[141]774}
[152]775if (defined $opts{'a'}) {
[1942]776 $ENV{'PBACCOUNT'} = $opts{'a'};
[1903]777 die "option -a requires a -s script option" if (not defined $pbscript{'default'});
[152]778}
[162]779if (defined $opts{'P'}) {
780 $pbport = $opts{'P'};
781}
[199]782if (defined $opts{'V'}) {
783 $newver = $opts{'V'};
784}
[262]785if (defined $opts{'i'}) {
[1900]786 $pbimage = $opts{'i'};
[262]787}
[1120]788if (defined $opts{'t'}) {
789 $pbtarget = $opts{'t'};
790}
[1900]791if (defined $opts{'T'}) {
792 $vetype = $opts{'T'};
793}
[108]794
795# Get Action
796$action = shift @ARGV;
[331]797die pb_syntax(-1,1) if (not defined $action);
[108]798
[314]799my ($filteredfiles, $supfiles, $defpkgdir, $extpkgdir);
[273]800my $pbinit = undef;
801$pbinit = 1 if ($action =~ /^newproj$/);
[108]802
[59]803# Handles project name if any
[108]804# And get global params
[1425]805($filteredfiles, $supfiles, $defpkgdir, $extpkgdir) = pb_env_init($opts{'p'},$pbinit,$action,$pbkeep);
[59]806
[982]807#
808# Check for command requirements
809#
[1606]810my ($req,$opt,$pbpara,$pbshowsudo,$pbstoponerr) = pb_conf_get_if("oscmd","oscmdopt","pbparallel","pbshowsudo","pbstoponerr");
[1128]811pb_check_requirements($req,$opt,$appname);
[982]812
[1597]813$Global::pb_show_sudo = 1 if ((defined $pbshowsudo) && (defined $pbshowsudo->{$ENV{'PBPROJ'}}) && ($pbshowsudo->{$ENV{'PBPROJ'}} =~ /true/oi));
[1606]814$Global::pb_stop_on_error = 1 if ((defined $pbstoponerr) && (defined $pbstoponerr->{$ENV{'PBPROJ'}}) && ($pbstoponerr->{$ENV{'PBPROJ'}} =~ /true/oi));
[1597]815
[1125]816#
817# Check if we can launch some actions in // with Parallel::ForkManager
818#
[1126]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
[1153]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");
[1126]829 $pbparallel = 1;
830 } else {
831 # Using the number of cores
832 $pbparallel = Sys::CPU::cpu_count();
[1153]833 pb_log(1,"Using parallel mode with $pbparallel processes\n");
[1126]834 }
835}
836
[1125]837eval
838{
839 require Parallel::ForkManager;
840 Parallel::ForkManager->import();
841};
842# Parallel::ForkManager not found so no // actions
843if ($@) {
844 $pbparallel = undef;
[1153]845 pb_log(1,"ADVISE: Install Parallel::ForkManager to benefit from automatic parallelism optimization.\nOnly 1 process at a time for the moment\n");
[1125]846}
847
[315]848pb_log(0,"Project: $ENV{'PBPROJ'}\n");
849pb_log(0,"Action: $action\n");
[9]850
[1666]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
[9]855# Act depending on action
856if ($action =~ /^cms2build$/) {
[1097]857 pb_cms2build("CMS");
858} elsif ($action =~ /^sbx2build$/) {
859 pb_cms2build("SandBox");
[1906]860} elsif ($action =~ /^build2prep/) {
861 pb_build2prep();
[1666]862} elsif ($action =~ /^build2pkg/) {
863 pb_build2pkg($do_install);
864} elsif ($action =~ /^cms2pkg/) {
[1097]865 pb_cms2build("CMS");
[1666]866 pb_build2pkg($do_install);
867} elsif ($action =~ /^sbx2pkg/) {
[1097]868 pb_cms2build("SandBox");
[1666]869 pb_build2pkg($do_install);
[88]870} elsif ($action =~ /^build2ssh$/) {
871 pb_build2ssh();
[220]872} elsif ($action =~ /^cms2ssh$/) {
[1097]873 pb_cms2build("CMS");
[220]874 pb_build2ssh();
[1102]875} elsif ($action =~ /^sbx2ssh$/) {
[1097]876 pb_cms2build("SandBox");
877 pb_build2ssh();
[88]878} elsif ($action =~ /^pkg2ssh$/) {
879 pb_pkg2ssh();
[1176]880} elsif ($action =~ /^build2rm$/) {
881 pb_build2v("rm","build");
[320]882} elsif ($action =~ /^build2ve$/) {
[772]883 pb_build2v("ve","build");
[91]884} elsif ($action =~ /^build2vm$/) {
[772]885 pb_build2v("vm","build");
[2085]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");
[1907]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");
[1176]901} elsif ($action =~ /^cms2rm$/) {
902 pb_cms2build("CMS");
903 pb_build2v("rm","build");
[320]904} elsif ($action =~ /^cms2ve$/) {
[1097]905 pb_cms2build("CMS");
[772]906 pb_build2v("ve","build");
[1176]907} elsif ($action =~ /^sbx2rm$/) {
908 pb_cms2build("SandBox");
909 pb_build2v("rm","build");
[1097]910} elsif ($action =~ /^sbx2ve$/) {
911 pb_cms2build("SandBox");
912 pb_build2v("ve","build");
[91]913} elsif ($action =~ /^cms2vm$/) {
[1097]914 pb_cms2build("CMS");
[772]915 pb_build2v("vm","build");
[1097]916} elsif ($action =~ /^sbx2vm$/) {
917 pb_cms2build("SandBox");
918 pb_build2v("vm","build");
[141]919} elsif ($action =~ /^launchvm$/) {
[1958]920 pb_parallel_launchv(undef,"vm",undef,3,$pbimage);
[320]921} elsif ($action =~ /^launchve$/) {
[1958]922 pb_parallel_launchv(undef,"ve",undef,3,$pbimage);
[142]923} elsif ($action =~ /^script2vm$/) {
[1903]924 die "action script2vm requires a -s script option" if (not defined $pbscript{'default'});
925 pb_script2v(\%pbscript,"vm");
[320]926} elsif ($action =~ /^script2ve$/) {
[1903]927 die "action script2ve requires a -s script option" if (not defined $pbscript{'default'});
928 pb_script2v(\%pbscript,"ve");
[1176]929} elsif ($action =~ /^script2rm$/) {
[1903]930 die "action script2rm requires a -s script option" if (not defined $pbscript{'default'});
931 pb_script2v(\%pbscript,"rm");
[199]932} elsif ($action =~ /^newver$/) {
933 pb_newver();
[2162]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 }
[320]998} elsif ($action =~ /^newve$/) {
[1958]999 pb_parallel_launchv(undef,"ve",undef,0,$pbimage);
[262]1000} elsif ($action =~ /^newvm$/) {
[1958]1001 pb_parallel_launchv(undef,"vm",undef,0,$pbimage);
[909]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");
[1105]1004 pb_log(0, "Also ensure that network is up, firewalling correctly configured\n");
[1861]1005 pb_log(0, "and perl, Data::Dumper, tar, sudo, ntpdate and scp/ssh installed\n");
[1072]1006 pb_log(0, "You should then be able to login with ssh -p VMPORT root\@localhost (if VM started with pb)\n");
[1176]1007} elsif ($action =~ /^setuprm$/) {
1008 pb_setup2v("rm");
[346]1009} elsif ($action =~ /^setupve$/) {
[772]1010 pb_setup2v("ve");
[346]1011} elsif ($action =~ /^setupvm$/) {
[772]1012 pb_setup2v("vm");
[1176]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");
[1140]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");
[1712]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");
[1176]1034} elsif ($action =~ /^updaterm$/) {
1035 pb_update2v("rm");
[1111]1036} elsif ($action =~ /^updateve$/) {
1037 pb_update2v("ve");
1038} elsif ($action =~ /^updatevm$/) {
1039 pb_update2v("vm");
[748]1040} elsif ($action =~ /^snapve$/) {
[772]1041 pb_snap2v("ve");
[748]1042} elsif ($action =~ /^snapvm$/) {
[772]1043 pb_snap2v("vm");
[783]1044} elsif ($action =~ /^test2pkg$/) {
1045 pb_test2pkg();
[1176]1046} elsif ($action =~ /^test2rm$/) {
1047 pb_build2v("rm","test");
[772]1048} elsif ($action =~ /^test2ve$/) {
1049 pb_build2v("ve","test");
1050} elsif ($action =~ /^test2vm$/) {
1051 pb_build2v("vm","test");
[273]1052} elsif ($action =~ /^newproj$/) {
1053 # Nothing to do - already done in pb_env_init
[1495]1054} elsif ($action =~ /^getconf$/) {
[1795]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);
[2139]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);
[106]1070} elsif ($action =~ /^clean$/) {
[739]1071 pb_clean();
[471]1072} elsif ($action =~ /^announce$/) {
[498]1073 # For announce only. Require avoids the systematic load of these modules
1074 require DBI;
[557]1075 require DBD::SQLite;
[498]1076
[1386]1077 pb_announce("Announce");
[1392]1078} elsif ($action =~ /^cleanssh$/) {
1079 pb_announce("Clean");
[1386]1080} elsif ($action =~ /^checkssh$/) {
1081 pb_announce("Check");
[1786]1082} elsif ($action =~ /^checkps$/) {
1083 my ($ptr2) = pb_conf_get("vmcmd");
1084 my $vmcmd = $ptr2->{$ENV{'PBPROJ'}};
[1903]1085 my ($vexist,$vmmport) = pb_check_ps($vmcmd,$ENV{'PBV'});
1086 if (! $vexist) {
[1786]1087 pb_log(0,"No VM found for $ENV{'PBV'}\n");
1088 } else {
[1903]1089 pb_log(0,"Found an existing VM for $ENV{'PBV'} PID: $vexist - SSH port: $vmmport\n");
[1786]1090 }
[1117]1091} elsif ($action =~ /^sbx2webpkg$/) {
[547]1092 require DBI;
[557]1093 require DBD::SQLite;
[547]1094
[1117]1095 pb_cms2build("SandBox","Web");
1096} elsif ($action =~ /^sbx2webssh$/) {
1097 require DBI;
1098 require DBD::SQLite;
1099
1100 pb_cms2build("SandBox","Web");
[556]1101 pb_send2target("Web");
[1117]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");
[77]1113} else {
[315]1114 pb_log(0,"\'$action\' is not available\n");
[331]1115 pb_syntax(-2,1);
[77]1116}
1117
[1661]1118pb_exit();
1119
[77]1120sub pb_cms2build {
1121
[1907]1122 my $param = shift;
1123 my $web = shift;
[556]1124
1125 my $pkg;
1126 my @pkgs;
[557]1127 my $webdir;
[556]1128
[557]1129 my %pkgs;
[1186]1130 my $pb; # Structure to store conf info
[557]1131
[1117]1132 die "pb_cms2build requires a parameter: SandBox or CMS" if (not defined $param);
[1097]1133
[556]1134 # If Website, then pkg is only the website
[1117]1135 if (defined $web) {
[557]1136 ($webdir) = pb_conf_get("webdir");
1137 pb_log(2,"webdir: ".Dumper($webdir)."\n");
1138 $pkgs[0] = $webdir->{$ENV{'PBPROJ'}};
[556]1139 $extpkgdir = $webdir;
[557]1140 pb_log(0,"Package: $pkgs[0]\n");
[556]1141 } else {
1142 $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
1143 @pkgs = @$pkg;
1144 }
1145
[1097]1146 my ($scheme, $uri) = pb_cms_init($pbinit,$param);
[331]1147
[898]1148 # We need 2 lines here
1149 my ($pkgv, $pkgt, $testver) = pb_conf_get_if("pkgver","pkgtag","testver");
[174]1150
[429]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'}};
[1203]1155 my ($delivery) = pb_conf_get_if("delivery");
1156 $delivery->{$ENV{'PBPROJ'}} = "" if (not defined $delivery->{$ENV{'PBPROJ'}});
[174]1157
[1432]1158 # If we deal with a test dir, we want to keep the date in tar file and dir name
[2100]1159 my $pbextdirpkg = "";
[2101]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;
[1432]1164 }
1165
[27]1166 foreach my $pbpkg (@pkgs) {
[115]1167 $ENV{'PBPKG'} = $pbpkg;
[2097]1168 $pbrev = $ENV{'PBREVISION'};
[728]1169
[98]1170 if ((defined $pkgv) && (defined $pkgv->{$pbpkg})) {
1171 $pbver = $pkgv->{$pbpkg};
[9]1172 } else {
[353]1173 $pbver = $ENV{'PBPROJVER'};
[9]1174 }
[2097]1175 # If it's a test version, then build a tag to fit distributions need
[897]1176 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
[2097]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 }
[2100]1191 $pbtag = "0.$pbextdirpkg.$letter$pbrev";
[728]1192 $ENV{'PBPROJTAG'} = $pbtag;
1193 } elsif ((defined $pkgt) && (defined $pkgt->{$pbpkg})) {
[98]1194 $pbtag = $pkgt->{$pbpkg};
[9]1195 } else {
[353]1196 $pbtag = $ENV{'PBPROJTAG'};
[9]1197 }
[95]1198
[319]1199 pb_log(0,"\n");
[2116]1200 pb_log(0,"Management of $pbpkg $pbver-$pbtag\n");
[9]1201 die "Unable to get env var PBDESTDIR" if (not defined $ENV{'PBDESTDIR'});
[539]1202
[1432]1203 my $dest = "$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir";
[1173]1204 # Create the structure if needed
1205 pb_mkdir_p($dest);
[16]1206 # Clean up dest if necessary. The export will recreate it
[74]1207 pb_rm_rf($dest) if (-d $dest);
[9]1208
1209 # Export CMS tree for the concerned package to dest
1210 # And generate some additional files
1211 $OUTPUT_AUTOFLUSH=1;
[29]1212
[9]1213 # computes in which dir we have to work
[113]1214 my $dir = $defpkgdir->{$pbpkg};
1215 $dir = $extpkgdir->{$pbpkg} if (not defined $dir);
[1117]1216 $dir = $webdir->{$ENV{'PBPROJ'}} if (defined $web);
[1878]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);
[1260]1218 pb_log(2,"def:".Dumper($defpkgdir)."ext: ".Dumper($extpkgdir)."dir: $dir\n");
[9]1219
[537]1220 # Exporting content from CMS
[1097]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
[1174]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";
[1260]1232 $sourceuri =~ s|^$ENV{'PBPROJDIR'}/|$uri/|;
[1174]1233 }
[1097]1234 }
[1469]1235 my $preserve = pb_vcs_export($sourceuri,$sourcedir,$dest);
[315]1236
[435]1237 # Generated fake content for test versions to speed up stuff
1238 my $chglog;
[285]1239
[448]1240 # Get project info on authors and log file
[1185]1241 # TODO: Make it CMS aware
[448]1242 $chglog = "$ENV{'PBROOTDIR'}/$pbpkg/pbcl";
1243 $chglog = "$ENV{'PBROOTDIR'}/pbcl" if (! -f $chglog);
1244 $chglog = undef if (! -f $chglog);
[285]1245
[1185]1246 # TODO: Make it CMS aware
[448]1247 my $authors = "$ENV{'PBROOTDIR'}/$pbpkg/pbauthors";
1248 $authors = "$ENV{'PBROOTDIR'}/pbauthors" if (! -f $authors);
1249 $authors = "/dev/null" if (! -f $authors);
[435]1250
[448]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";
[285]1255 }
[448]1256 pb_cms_log($scheme,"$ENV{'PBDIR'}/$dir",$dest,$chglog,$authors,$testver);
[29]1257
[21]1258 my %build;
[865]1259 # We want to at least build for the underlying distro
[1120]1260 # except if a target was given, in which case we only build for it
[1401]1261 # if -t was passed without target then build for the native distro.
[1177]1262 my $pbos = pb_distro_get_context($pbtarget);
[1282]1263 my $tmpl = pb_get_distros($pbos,$pbtarget);
[1120]1264
[1186]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;
[1192]1270 $pb->{'suf'} = $pbos->{'suffix'};
[1186]1271 $pb->{'realpkg'} = $pbpkg;
1272 $pb->{'date'} = $pbdate;
1273 $pb->{'defpkgdir'} = $defpkgdir;
1274 $pb->{'extpkgdir'} = $extpkgdir;
1275 $pb->{'chglog'} = $chglog;
[1432]1276 $pb->{'extdir'} = $pbextdir;
[1186]1277 $pb->{'packager'} = $ENV{'PBPACKAGER'};
1278 $pb->{'proj'} = $ENV{'PBPROJ'};
[1200]1279 $pb->{'repo'} = "$ENV{'PBREPO'}/$delivery->{$ENV{'PBPROJ'}}";
[1186]1280 $pb->{'patches'} = ();
1281 $pb->{'sources'} = ();
[556]1282
[1185]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
[556]1289 # Do not do that for website
[1117]1290 if (not defined $web) {
[665]1291 my %virt;
[1176]1292 # De-duplicate similar VM/VE/RM
[556]1293 foreach my $d (split(/,/,$tmpl)) {
[766]1294 # skip ill-formatted vms (name-ver-arch)
1295 next if ($d !~ /-/);
[665]1296 $virt{$d} = $d;
1297 }
1298
[1125]1299 # Try to use // processing here
[1550]1300 my $all_ok = 1;
[1350]1301 my $pm = new Parallel::ForkManager($pbparallel) if (defined $pbparallel);
[1550]1302 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
[1558]1303 $all_ok = 0 unless (($code == 0) && ($signal == 0) && ($dump == 0)); }) if (defined $pbparallel);
[1125]1304
[1189]1305 pb_log(0,"Preparing delivery ...\n");
[1177]1306 foreach my $v (keys %virt) {
[1125]1307 $pm->start and next if (defined $pbparallel);
[1177]1308
1309 # Distro context
1310 my $pbos = pb_distro_get_context($v);
[1207]1311
[1186]1312 $pb->{'pbos'} = $pbos;
[1189]1313 $pb->{'suf'} = $pbos->{'suffix'};
[1186]1314 pb_log(3,"DEBUG: pb: ".Dumper($pb)."\n");
[1185]1315
1316 # Get all filters to apply
[1192]1317 $ptr = pb_get_filters($pbpkg,$pbos);
[1185]1318
[556]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
[1177]1322 my $pbrealpkg = pb_cms_get_real_pkg($pbpkg,$pbos->{'type'});
[1186]1323 $pb->{'realpkg'} = $pbrealpkg;
[1177]1324 pb_log(1,"Virtual package $pbpkg has a real package name of $pbrealpkg on $pbos->{'name'}-$pbos->{'version'}\n") if ($pbrealpkg ne $pbpkg);
[556]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 = ();
[1185]1333 # Used in Filter.pm by pb_filter_file
1334
[1363]1335 $build{$v} = "no";
[1185]1336 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'os'}") {
1337 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'os'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
[1363]1338 $build{$v} = "yes";
1339 }
1340 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'type'}") {
[1177]1341 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'type'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
[1363]1342 $build{$v} = "yes";
1343 }
1344 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'family'}") {
[1177]1345 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'family'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
[1363]1346 $build{$v} = "yes";
1347 }
1348 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}") {
[1177]1349 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
[1363]1350 $build{$v} = "yes";
1351 }
1352 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}") {
[1177]1353 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
[1363]1354 $build{$v} = "yes";
1355 }
1356 if (-d "$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}") {
[1177]1357 pb_list_bfiles("$ENV{'PBROOTDIR'}/$pbpkg/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}",$pbpkg,\%bfiles,\%pkgfiles,$supfiles);
[1363]1358 $build{$v} = "yes";
[500]1359 }
[1186]1360 pb_log(2,"DEBUG($v) bfiles: ".Dumper(\%bfiles)."\n");
[556]1361
[1185]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
[556]1365 # For patch support
[1185]1366 # TODO: Make it CMS aware
[1186]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");
[1185]1369 # TODO: Make it CMS aware
[1186]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");
[1185]1372
[1186]1373 if (defined $pb->{'patches'}->{$v}) {
[1185]1374 # Filter potential patches (local + remote)
1375 pb_mkdir_p("$dest/pbconf/$v/pbpatch");
[1367]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 }
[1186]1384 foreach my $pf (split(/,/,$pb->{'patches'}->{$v})) {
[1185]1385 my $pp = basename($pf);
[1469]1386 pb_vcs_export($pf,undef,"$dest/pbconf/$v/pbpatch");
[1186]1387 pb_filter_file_inplace($ptr,"$dest/pbconf/$v/pbpatch/$pp",$pb);
[1185]1388 pb_system("gzip -9f $dest/pbconf/$v/pbpatch/$pp","","quiet");
[1367]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 }
[1185]1394 }
[1367]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");
[1185]1400 }
[1186]1401 if (defined $pb->{'sources'}->{$v}) {
[1185]1402 pb_mkdir_p("$dest/pbconf/$v/pbsrc");
[1186]1403 foreach my $pf (split(/,/,$pb->{'sources'}->{$v})) {
[1185]1404 my $pp = basename($pf);
[1469]1405 pb_vcs_export($pf,undef,"$dest/pbconf/$v/pbsrc");
[1186]1406 pb_filter_file_inplace($ptr,"$dest/pbconf/$v/pbsrc/$pp",$pb);
[1185]1407 }
1408 }
[1186]1409 # Filter build files at the end, as they depend on patches and sources
[1363]1410 foreach my $f (keys %bfiles) {
1411 pb_filter_file("$ENV{'PBROOTDIR'}/$bfiles{$f}",$ptr,"$dest/pbconf/$v/$f",$pb);
[1186]1412 }
[1363]1413 foreach my $f (keys %pkgfiles) {
1414 pb_filter_file("$ENV{'PBROOTDIR'}/$pkgfiles{$f}",$ptr,"$dest/pbconf/$v/$f",$pb);
1415 }
[556]1416 }
[1130]1417
[1185]1418 if (defined $pbparallel) {
1419 # Communicate results back to parent
1420 my $str = "";
1421 $str .= "build $v = $build{$v}\n" if (defined $build{$v});
[1186]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});
[1185]1424 pb_set_content("$tmpd/$$","$str");
1425 $pm->finish;
1426 }
[15]1427 }
[1185]1428 # In the parent, we need to get the result from the children
[1125]1429 $pm->wait_all_children if (defined $pbparallel);
[1550]1430 die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
[1185]1431 my $made = "";
1432 my %h = ();
1433 my %tmp;
[1186]1434 my %tmp2;
[1185]1435 my $pt;
1436 my $k;
1437
1438 foreach $k (<$tmpd/*>) {
1439 $made .= pb_get_content($k);
[556]1440 }
[1185]1441 pb_rm_rf($tmpd);
1442 pb_log(3,"MADE:\n$made");
[500]1443
[1185]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 }
[1186]1450 pb_log(2,"HASH: ".Dumper(%h));
[236]1451
[1185]1452 # Patches
1453 pb_log(0,"Delivered and compressed patches ");
1454 $pt = $h{'patches'};
[1186]1455 foreach $k (keys %$pt) {
1456 foreach my $v1 (split(/,/,$pt->{$k})) {
1457 $tmp{$v1} = "";
1458 }
[1185]1459 }
[1186]1460 if (keys %tmp) {
1461 foreach $k (keys %tmp) {
1462 pb_log(0,"$k ");
1463 }
1464 } else {
1465 pb_log(0,"N/A");
[1185]1466 }
1467 pb_log(0,"\n");
[236]1468
[1185]1469 # Sources
1470 pb_log(0,"Delivered additional sources ");
1471 $pt = $h{'sources'};
[1186]1472 foreach $k (keys %$pt) {
1473 foreach my $v1 (split(/,/,$pt->{$k})) {
1474 $tmp2{$v1} = "";
1475 }
[236]1476 }
[1186]1477 if (keys %tmp2) {
1478 foreach $k (keys %tmp2) {
1479 pb_log(0,"$k ");
1480 }
1481 } else {
1482 pb_log(0,"N/A");
[1185]1483 }
1484 pb_log(0,"\n");
[236]1485
[1185]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
[556]1497 } else {
1498 # Instead call News generation
1499 pb_web_news2html($dest);
[559]1500 # And create an empty pbconf
1501 pb_mkdir_p("$dest/pbconf");
[560]1502 # And prepare the pbscript to execute remotely
[1138]1503 open(SCRIPT,"> $ENV{'PBTMP'}/pbscript") || die "Unable to create $ENV{'PBTMP'}/pbscript";
[560]1504 print SCRIPT "#!/bin/bash\n";
1505 print SCRIPT "#set -x\n";
1506 print SCRIPT "echo ... Extracting Website content\n";
[1461]1507 print SCRIPT "find . -type f | grep -Ev '^./$pbpkg-$pbver$pbextdir.tar.gz|^./pbscript' | xargs rm -f non-existent\n";
[560]1508 print SCRIPT "find * -type d -depth | xargs rmdir 2> /dev/null \n";
[1461]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";
[1484]1513 print SCRIPT "find . -type f -print0 | xargs -0 chmod 644\n";
1514 print SCRIPT "find . -type d -print0 | xargs -0 chmod 755\n";
[560]1515 close(SCRIPT);
[1165]1516 chmod 0755,"$ENV{'PBTMP'}/pbscript";
[499]1517 }
1518
[1259]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
[265]1547 # Prepare the dest directory for archive
[69]1548 chdir "$ENV{'PBDESTDIR'}" || die "Unable to change dir to $ENV{'PBDESTDIR'}";
[537]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 ");
[1432]1554 move("$preserve","$pbpkg-$pbver$pbextdir.tar.gz");
[537]1555 } else {
1556 # Possibility to look at PBSRC to guess more the filename
[1432]1557 pb_system("tar cfz $pbpkg-$pbver$pbextdir.tar.gz --exclude=$pbpkg-$pbver$pbextdir/pbconf $pbpkg-$pbver$pbextdir","Creating $pbpkg tar files compressed");
[537]1558 }
[1432]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");
[83]1562
[357]1563 # Keep track of version-tag per pkg
1564 $pkgs{$pbpkg} = "$pbver-$pbtag";
[83]1565
[288]1566 # Final cleanup
1567 pb_rm_rf($dest) if (-d $dest);
[9]1568 }
[357]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";
[539]1573 foreach my $pbpkg (keys %pkgs) {
[357]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";
[702]1584 print LAST "projver $ENV{'PBPROJ'} = $ENV{'PBPROJVER'}\n";
1585 print LAST "projtag $ENV{'PBPROJ'} = $ENV{'PBPROJTAG'}\n";
[357]1586 print LAST "pbpackager $ENV{'PBPROJ'} = $ENV{'PBPACKAGER'}\n";
[1432]1587 print LAST "pbextdir $ENV{'PBPROJ'} = $pbextdir\n";
[357]1588 close(LAST);
[77]1589}
[22]1590
[772]1591sub pb_test2pkg {
1592 # Get the running distro to test on
[1177]1593 my $pbos = pb_distro_get_context();
[772]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
[1177]1601 pb_distro_setuprepo($pbos);
[772]1602 foreach my $pbpkg (@pkgs) {
1603 # We need to install the package to test, and deps brought with it
[1177]1604 pb_distro_installdeps(undef,$pbos,$pbpkg);
[772]1605 pb_system("$ENV{'PBDESTDIR'}/pbtest","Launching test for $pbpkg","verbose");
1606 }
1607}
1608
[1906]1609sub pb_build2prep {
[77]1610
[1906]1611 pb_log(0,"INFO: ------ Starting to prepare build environement ------\n");
[1666]1612
[22]1613 # Get the running distro to build on
[1177]1614 my $pbos = pb_distro_get_context();
[22]1615
[1137]1616 # If needed we may add repository to the build env
[1177]1617 pb_distro_setuprepo($pbos);
[1137]1618
[353]1619 # Get list of packages to build
1620 my $ptr = pb_get_pkg();
1621 @pkgs = @$ptr;
[1906]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();
[353]1627
[1906]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
[2177]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();
[1906]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
[898]1683 # Get content saved in cms2build
[353]1684 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
[83]1685 $pkg = { } if (not defined $pkg);
[1432]1686 my $pbextdir = pb_get_extdir();
[83]1687
[1212]1688 pb_mkdir_p("$ENV{'PBBUILDDIR'}") if (! -d "$ENV{'PBBUILDDIR'}");
[1208]1689 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
[126]1690 my $made = ""; # pkgs made during build
[1176]1691 my $pm;
[1545]1692 my $all_ok = 1;
[1137]1693
[1545]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
[1137]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
[1851]1704 # Do it here as this doesn't work in // mode as it dies if it fails
[1597]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
[27]1713 foreach my $pbpkg (@pkgs) {
[1137]1714 $pm->start and next if (defined $pbparallel);
1715
[88]1716 my $vertag = $pkg->{$pbpkg};
[1459]1717 pb_log(2,"Vertag: $vertag\n");
[77]1718 # get the version of the current package - maybe different
1719 ($pbver,$pbtag) = split(/-/,$vertag);
1720
[1432]1721 my $src="$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz";
1722 my $src2="$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz";
[315]1723 pb_log(2,"Source file: $src\n");
[493]1724 pb_log(2,"Pbconf file: $src2\n");
[25]1725
[315]1726 pb_log(2,"Working directory: $ENV{'PBBUILDDIR'}\n");
[1177]1727 if ($pbos->{'type'} eq "rpm") {
[315]1728 # Remove in case a previous link/file was there
[301]1729 unlink "$ENV{'PBBUILDDIR'}/SOURCES/".basename($src);
[188]1730 symlink "$src","$ENV{'PBBUILDDIR'}/SOURCES/".basename($src) || die "Unable to symlink $src in $ENV{'PBBUILDDIR'}/SOURCES";
[25]1731 # We need to first extract the spec file
[2177]1732 my @buildfile = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/","$ENV{'PBBUILDDIR'}/SPECS","spec");
[25]1733
[493]1734 # We need to handle potential patches to upstream sources
[1432]1735 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","$ENV{'PBBUILDDIR'}/SOURCES","patch");
[493]1736
[1219]1737 # We need to handle potential additional sources to upstream sources
[1432]1738 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}/SOURCES","src");
[1219]1739
[2177]1740 pb_log(2,"buildfile: ".Dumper(\@buildfile)."\n");
[25]1741 # set LANGUAGE to check for correct log messages
1742 $ENV{'LANGUAGE'}="C";
[459]1743 # Older Redhat use _target_platform in %configure incorrectly
1744 my $specialdef = "";
[1652]1745 if (($pbos->{'name'} eq "rhel") && ($pbos->{'version'} eq "2.1")) {
[459]1746 $specialdef = "--define \'_target_platform \"\"\'";
1747 }
[1652]1748 my $buildcmd = "rpmbuild";
1749 if (($pbos->{'name'} eq "redhat") && ($pbos->{'version'} =~ /^6/)){
1750 $buildcmd = "rpm" ;
1751 }
[702]1752
[2177]1753 foreach my $f (@buildfile) {
[28]1754 if ($f =~ /\.spec$/) {
[1652]1755 pb_system("$buildcmd $specialdef --define \"packager $ENV{'PBPACKAGER'}\" --define \"_topdir $ENV{'PBBUILDDIR'}\" -ba $f","Building package with $f under $ENV{'PBBUILDDIR'}","verbose");
[28]1756 last;
1757 }
1758 }
[540]1759 # Get the name of the generated packages
[1137]1760 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
[540]1761 while (<LOG>) {
[572]1762 chomp($_);
[540]1763 next if ($_ !~ /^Wrote:/);
1764 s|.*/([S]*RPMS.*)|$1|;
[572]1765 $made .=" $_";
[540]1766 }
[541]1767 close(LOG);
[540]1768
[1177]1769 } elsif ($pbos->{'type'} eq "deb") {
[274]1770 pb_system("tar xfz $src","Extracting sources");
[493]1771 pb_system("tar xfz $src2","Extracting pbconf");
[149]1772
[1432]1773 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[310]1774 pb_rm_rf("debian");
[1546]1775 my $confdir = "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
[1548]1776 die "Configuration directory $confdir is not a directory\nIs os description listed in your {ve,vm,rm}list values?" if (not -d $confdir);
[1546]1777 symlink "$confdir","debian" || die "Unable to symlink 'debian' to $confdir";
[199]1778 chmod 0755,"debian/rules";
[544]1779
[1359]1780 # We need to handle potential patches to upstream sources
[1363]1781 pb_mkdir_p("debian/patches");
[1432]1782 my @f = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","debian/patches","patch");
[1363]1783
[1367]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 }
[1546]1790
[1367]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 }
[1363]1801 foreach my $f (sort @f) {
[1367]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$//;
[1359]1807 print SERIE "$f\n";
1808 }
1809 close(SERIE);
[1367]1810 if (@f) {
[1432]1811 # We have patches...
[1537]1812 my $patch_file = "debian/patches/pbapplypatch";
1813 if (($debsrcfmt =~ /^1.*/) && (-x $patch_file)) {
[1432]1814 # In that case we need to apply the patches ourselves locally
[1537]1815 pb_system("cat $patch_file","APPLY","verbose");
1816 pb_system("$patch_file","Applying patches to $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'} tree");
[1432]1817 }
1818 # ...so modify the name of files to be Debian compliant
1819 move("../$src","../$pbpkg-$pbver$pbextdir.orig.tar.gz");
[1367]1820 }
[1359]1821
1822 # We need to handle potential additional sources to upstream sources
[1432]1823 #pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}/debian","src");
[1359]1824
[544]1825 pb_system("dpkg-buildpackage -us -uc -rfakeroot","Building package","verbose");
[1597]1826
[544]1827 # Get the name of the generated packages
[1137]1828 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
[544]1829 while (<LOG>) {
1830 chomp();
[1597]1831 pb_log(3,"In loop: $_\n");
[1631]1832 next unless (/^dpkg-deb.*\.\.\/(.*_.*\.deb).*/);
[1597]1833 my $tmp = $1;
1834 #doesn't work in my case
1835 #die "Missing file $tmp" if (not -f "../$tmp");
[1545]1836 $made = "$made $tmp";
[448]1837 }
[544]1838 close(LOG);
[1597]1839 pb_log(2,"Now made is: $made\n");
1840
1841 open(CTRL,"debian/control") || die "Unable to open debian/control: $!";
[1545]1842 while (<CTRL>) {
[1597]1843 pb_log(3,"In loop: $_\n");
[1545]1844 next unless (/^Source: (\S+)/o);
[1597]1845 my $tmp = $1;
[1604]1846 $made = "$made $tmp"."_*.dsc $tmp"."_*.tar.gz $tmp"."_*.changes";
[1597]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 #}
[1545]1855 }
1856 close(CTRL);
[1597]1857 #pb_display_file("$ENV{'PBTMP'}/system.$$.log");
1858 pb_log(2,"Finally made is: $made\n");
[1545]1859
[1234]1860 chdir ".." || die "Unable to chdir to parent dir";
[1597]1861 pb_rm_rf("$pbpkg-$pbver$pbextdir");
[1177]1862 } elsif ($pbos->{'type'} eq "ebuild") {
[149]1863 my @ebuildfile;
1864 # For gentoo we need to take pb as subsystem name
[295]1865 # We put every apps here under sys-apps. hope it's correct
[435]1866 # We use pb's home dir in order to have a single OVERLAY line
[1185]1867 my $tmpe = "$ENV{'HOME'}/portage/pb/sys-apps/$pbpkg";
1868 pb_mkdir_p($tmpe) if (! -d "$tmpe");
[295]1869 pb_mkdir_p("$ENV{'HOME'}/portage/distfiles") if (! -d "$ENV{'HOME'}/portage/distfiles");
[149]1870
[295]1871 # We need to first extract the ebuild file
[1432]1872 @ebuildfile = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/","$tmpe","ebuild");
[149]1873
1874 # Prepare the build env for gentoo
1875 my $found = 0;
[295]1876 my $pbbd = $ENV{'HOME'};
[150]1877 $pbbd =~ s|/|\\/|g;
[295]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);
[149]1884 }
1885 if ($found == 0) {
[295]1886 pb_system("sudo sh -c 'echo PORTDIR_OVERLAY=\"$ENV{'HOME'}/portage\" >> /etc/make.conf'");
[149]1887 }
[295]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 #}
[149]1899
1900 # Build
1901 foreach my $f (@ebuildfile) {
1902 if ($f =~ /\.ebuild$/) {
[1185]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");
[295]1905 # Now move it where pb expects it
1906 pb_mkdir_p("$ENV{'PBBUILDDIR'}/portage/pb/sys-apps/$pbpkg");
[1432]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";
[1174]1914 } else {
[1432]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";
[1174]1918 }
[149]1919 }
1920 }
1921
[1177]1922 } elsif ($pbos->{'type'} eq "tgz") {
[437]1923 # Slackware family
[435]1924 $made="$made $pbpkg/$pbpkg-$pbver-*-$pbtag.tgz";
1925
1926 pb_system("tar xfz $src","Extracting sources");
[493]1927 pb_system("tar xfz $src2","Extracting pbconf");
[1432]1928 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[1177]1929 symlink "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}","install" || die "Unable to symlink to pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
[435]1930 if (-x "install/pbslack") {
[872]1931 pb_system("./install/pbslack","Building software");
[529]1932 pb_system("sudo /sbin/makepkg -p -l y -c y $pbpkg","Packaging $pbpkg","verbose");
[435]1933 }
[1234]1934 chdir ".." || die "Unable to chdir to parent dir";
[1432]1935 pb_rm_rf("$pbpkg-$pbver$pbextdir");
[1177]1936 } elsif ($pbos->{'type'} eq "pkg") {
[872]1937 # Solaris
[916]1938 $made="$made $pbpkg-$pbver-$pbtag.pkg.gz";
[873]1939 my $pkgdestdir="$ENV{'PBBUILDDIR'}/install";
[872]1940
1941 # Will host resulting packages
[1177]1942 pb_mkdir_p("$pbos->{'type'}");
[2084]1943 pb_mkdir_p("$pkgdestdir/pbdelivery");
[873]1944 pb_system("tar xfz $src","Extracting sources under $ENV{'PBBUILDDIR'}");
1945 pb_system("tar xfz $src2","Extracting pbconf under $ENV{'PBBUILDDIR'}");
[1242]1946 # We need to handle potential patches to upstream sources
[1432]1947 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","$ENV{'PBBUILDDIR'}","patch");
[1242]1948
1949 # We need to handle potential additional sources to upstream sources
[1432]1950 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}","src");
[1242]1951
[1432]1952 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[1177]1953 if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild") {
1954 chmod 0755,"pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild";
[872]1955 # pkginfo file is mandatory
[1177]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");
[872]1957 # Build
[2084]1958 pb_system("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild $pkgdestdir/pbdelivery","Building software and installing under $pkgdestdir/pbdelivery");
[872]1959 # Copy complementary files
[1177]1960 if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/prototype") {
1961 copy("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/prototype", $pkgdestdir)
[872]1962 } else {
1963 # No prototype provided, calculating it
[878]1964 open(PROTO,"> $pkgdestdir/prototype") || die "Unable to create prototype file";
[872]1965 print PROTO "i pkginfo\n";
[1177]1966 print PROTO "i depend\n" if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/depend");
[2084]1967 $ENV{'PBSOLDESTDIR'} = "$pkgdestdir/pbdelivery";
1968 find(\&create_solaris_prototype, "$pkgdestdir/pbdelivery");
[872]1969 }
[1177]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);
[2084]1972 pb_system("cd $pkgdestdir/pbdelivery ; pkgmk -o -f ../prototype -r $pkgdestdir/pbdelivery -d $ENV{'PBBUILDDIR'}/$pbos->{'type'}","Packaging $pbpkg","verbose");
[1177]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");
[916]1974 pb_system("cd $ENV{'PBBUILDDIR'} ; gzip -9f $pbpkg-$pbver-$pbtag.pkg","Compressing $pbpkg-$pbver-$pbtag.pkg","verbose");
[913]1975 } else {
[2110]1976 pb_log(0,"No pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild file found for $pbpkg-$pbver\n");
[872]1977 }
[874]1978 chdir ".." || die "Unable to chdir to parent dir";
[1432]1979 pb_rm_rf("$pbpkg-$pbver$pbextdir","$ENV{'PBBUILDDIR'}/$pbos->{'type'}","$pkgdestdir");
[1177]1980 } elsif ($pbos->{'type'} eq "hpux") {
[1174]1981 # HP-UX
1982 pb_system("tar xfz $src","Extracting sources");
1983 pb_system("tar xfz $src2","Extracting pbconf");
1984
[1432]1985 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[1174]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|;
[1279]1994 $made = "$made $tmp"."_*.sd";
[1174]1995 }
1996 close(LOG);
1997 $made="$made $pbpkg-$pbver-$pbtag.sd";
1998
[1234]1999 chdir ".." || die "Unable to chdir to parent dir";
[1432]2000 pb_rm_rf("$pbpkg-$pbver$pbextdir");
[87]2001 } else {
[1177]2002 die "Unknown OS type format $pbos->{'type'}";
[87]2003 }
[1137]2004 if (defined $pbparallel) {
2005 # Communicate results back to parent
2006 pb_set_content("$tmpd/$$",$made);
2007 $pm->finish;
2008 }
[87]2009 }
[1137]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 }
[1550]2016 die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
[1137]2017 pb_rm_rf($tmpd);
2018 }
2019
[1278]2020 # Sign packages
2021 pb_sign_pkgs($pbos,$made);
[1583]2022 pb_log(0,"INFO: ------ Finished building package ------\n");
[1278]2023
[1109]2024 # Find the appropriate check cmd/opts
[1177]2025 my ($chkcmd,$chkopt) = pb_distro_get_param($pbos,pb_conf_get_if("oschkcmd","oschkopt"));
[1109]2026
[1666]2027 my $ret = "";
[541]2028 # Packages check if needed
[1177]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";
[1749]2034 my $ret = pb_system("$cmd","Checking validity of rpms with $chkcmd","mayfailverbose");
[1539]2035 pb_log(0,"ERROR: when checking packages validity\n") if ($ret ne 0);
[541]2036 }
[1098]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");
[1666]2045 $ret = $rpms;
[1177]2046 } elsif ($pbos->{'type'} eq "deb") {
[572]2047 my $made2 = "";
[971]2048 foreach my $f (split(/ /,$made)) {
[1234]2049 $made2 .= "$f " if ($f =~ /\.deb$/);
[971]2050 }
[1604]2051 if ((defined $chkcmd) && (-x $chkcmd)) {
[1595]2052 my $ret = pb_system("$chkcmd $chkopt $made2","Checking validity of debs with $chkcmd","mayfail");
[1539]2053 pb_log(0,"ERROR: when checking packages validity\n") if ($ret ne 0);
[541]2054 }
[1234]2055 pb_log(0,"deb packages generated: $made2\n");
[1666]2056 $ret = $made2;
[541]2057 } else {
[1177]2058 pb_log(0,"No check done for $pbos->{'type'} yet\n");
[572]2059 pb_log(0,"Packages generated: $made\n");
[1666]2060 $ret = $made;
[541]2061 }
2062
[1176]2063 # Keep track of what is generated so that we can get them back from VMs/RMs
[1942]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 $!";
[118]2066 print KEEP "$made\n";
2067 close(KEEP);
[1666]2068 pb_distro_installdeps(undef,$pbos,$ret) if ($do_install);
[87]2069}
2070
[88]2071sub pb_build2ssh {
[320]2072 pb_send2target("Sources");
[1374]2073 pb_send2target("CPAN");
[90]2074}
[87]2075
[90]2076sub pb_pkg2ssh {
[320]2077 pb_send2target("Packages");
[90]2078}
2079
[108]2080# By default deliver to the the public site hosting the
[1176]2081# ftp structure (or whatever) or a VM/VE/RM
[320]2082sub pb_send2target {
[90]2083
2084 my $cmt = shift;
[2049]2085 my $pbscript1 = shift;
[1907]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
[320]2091
[1907]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);
[1903]2096 pb_log(2,"DEBUG: pb_send2target($cmt,".Dumper($v).",$vexist,$vpid)\n");
[320]2097 my $host = "sshhost";
2098 my $login = "sshlogin";
2099 my $dir = "sshdir";
2100 my $port = "sshport";
2101 my $conf = "sshconf";
[883]2102 my $tmout = undef;
2103 my $path = undef;
[1714]2104
[772]2105 if ($cmt =~ /^VM/) {
[320]2106 $login = "vmlogin";
[322]2107 $dir = "pbdefdir";
[320]2108 # Specific VM
[883]2109 $tmout = "vmtmout";
2110 $path = "vmpath";
[320]2111 $host = "vmhost";
2112 $port = "vmport";
[1176]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";
[772]2121 } elsif ($cmt =~ /^VE/) {
[320]2122 $login = "velogin";
[322]2123 $dir = "pbdefdir";
[320]2124 # Specific VE
2125 $path = "vepath";
[986]2126 $conf = "rbsconf";
[556]2127 } elsif ($cmt eq "Web") {
2128 $host = "websshhost";
2129 $login = "websshlogin";
2130 $dir = "websshdir";
2131 $port = "websshport";
[1374]2132 } elsif ($cmt eq "CPAN") {
2133 $host = "cpanpause";
2134 $login = "";
2135 $dir = "cpandir";
2136 $port = "";
[320]2137 }
[158]2138 my $cmd = "";
[471]2139 my $src = "";
[1374]2140 my $cpanpkg = 0;
[1177]2141 my $pbos;
[90]2142
[1432]2143 my $pbextdir = pb_get_extdir();
2144
[471]2145 if ($cmt ne "Announce") {
[898]2146 # Get list of packages to build
[471]2147 my $ptr = pb_get_pkg();
[1621]2148 my @pkgs = ();
2149 @pkgs = @$ptr if (defined $ptr);
[87]2150
[471]2151 # Get the running distro to consider
[1177]2152 $pbos = pb_distro_get_context($v);
[87]2153
[1621]2154 my $pkg = { };
[471]2155 # Get content saved in cms2build
[1621]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 }
[87]2160
[1212]2161 pb_mkdir_p("$ENV{'PBBUILDDIR'}") if (! -d "$ENV{'PBBUILDDIR'}");
[1208]2162 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
[471]2163 foreach my $pbpkg (@pkgs) {
2164 my $vertag = $pkg->{$pbpkg};
2165 # get the version of the current package - maybe different
[1459]2166 pb_log(2,"Vertag: $vertag\n");
[471]2167 ($pbver,$pbtag) = split(/-/,$vertag);
[87]2168
[1908]2169 if (($cmt eq "Sources") || ($cmt =~ /(V[EM]|RM)(build|prep)/)) {
[1432]2170 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz";
[1910]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";
[471]2173 if ($cmd eq "") {
[1910]2174 $cmd = $cmd2;
[471]2175 } else {
[1910]2176 $cmd = "$cmd ; $cmd2";
[471]2177 }
[560]2178 } elsif ($cmt eq "Web") {
[1432]2179 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz"
[166]2180 }
[1374]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 }
[118]2188 }
[471]2189 # Adds conf file for availability of conf elements
[1621]2190 pb_conf_add("$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb") if ((defined $ENV{'PBROOTDIR'}) && (-f "$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb"));
[118]2191 }
[1374]2192 my ($rbsconf,$testver,$delivery) = pb_conf_get_if($conf,"testver","delivery");
[1593]2193 if ($cmt eq "CPAN") {
[1374]2194 # Do not deliver on Pause if this is a test version
[1384]2195 return if (not defined $testver);
[1374]2196 return if ($testver =~ /true/);
2197 # Do not deliver on Pause if this is not a perl package
2198 return if ($cpanpkg == 0);
2199 }
[417]2200
[1907]2201 if ($cmt =~ /(V[EM]|RM)(build|prep)/) {
[1903]2202 $src="$src $ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb $ENV{'PBETC'} $ENV{'PBDESTDIR'}/pbrc $pbscript{$v}";
[1176]2203 } elsif ($cmt =~ /(V[EM]|RM)Script/) {
[1903]2204 $src="$src $pbscript{$v}";
[1176]2205 } elsif ($cmt =~ /(V[EM]|RM)test/) {
[1903]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";
[1374]2207 } elsif (($cmt eq "Announce") || ($cmt eq "Web") || ($cmt eq "CPAN")) {
[471]2208 $src="$src $ENV{'PBTMP'}/pbscript";
[118]2209 } elsif ($cmt eq "Packages") {
2210 # Get package list from file made during build2pkg
[1189]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'}";
[126]2212 $src = <KEEP>;
[118]2213 chomp($src);
2214 close(KEEP);
[87]2215 }
[1374]2216 if (($cmt eq "Sources") || ($cmt eq "Packages") || ($cmt eq "CPAN")) {
[1279]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 }
[320]2225 # Remove potential leading spaces (cause problem with basename)
[132]2226 $src =~ s/^ *//;
[129]2227 my $basesrc = "";
[131]2228 foreach my $i (split(/ +/,$src)) {
2229 $basesrc .= " ".basename($i);
[130]2230 }
[118]2231
[987]2232 pb_log(2,"values: ".Dumper(($host,$login,$dir,$port,$tmout,$path,$conf))."\n");
[1541]2233 my ($sshhost,$sshdir) = pb_conf_get($host,$dir);
[883]2234 # Not mandatory...
[1102]2235 $delivery->{$ENV{'PBPROJ'}} = "" if (not defined $delivery->{$ENV{'PBPROJ'}});
[1541]2236 my ($sshlogin,$sshport) = pb_conf_get_if($login,$port);
[1604]2237 $sshport->{$ENV{PBPROJ}} = 22 if (not defined $sshport->{$ENV{PBPROJ}});
2238 $sshlogin->{$ENV{PBPROJ}} = getpwuid($UID) if (not defined $sshlogin->{$ENV{PBPROJ}});
[883]2239 my ($vtmout,$vepath);
2240 # ...Except those in virtual context
2241 if ($cmt =~ /^VE/) {
2242 ($vepath) = pb_conf_get($path);
2243 }
[1176]2244 if ($cmt =~ /^(V|R)M/) {
[1218]2245 $vtmout = pb_distro_get_param($pbos,pb_conf_get_if($tmout));
[883]2246 }
[1216]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);
[1176]2252 }
[1217]2253 pb_log(2,"ssh: ".Dumper(($remhost,$sshlogin,$remdir,$sshport,$vepath,$rbsconf))."\n");
2254 pb_log(2,"ssh: ".Dumper($vtmout)."\n") if (defined $vtmout);
[320]2255
2256 my $mac;
[772]2257 if ($cmt !~ /^VE/) {
[1216]2258 $mac = "$sshlogin->{$ENV{'PBPROJ'}}\@$remhost";
[1942]2259 # Overwrite account value if passed as parameter or forced
2260 $mac = "$ENV{'PBACCOUNT'}\@$remhost" if (defined $ENV{'PBACCOUNT'});
[681]2261 } else {
2262 # VE
[1942]2263 $mac = $sshlogin->{$ENV{'PBPROJ'}};
[1138]2264 # Overwrite account value if passed as parameter (typically for setup2v)
[1942]2265 $mac = $ENV{'PBACCOUNT'} if (defined $ENV{'PBACCOUNT'});
[320]2266 }
[1942]2267 pb_log(2, "DEBUG: mac: $mac\n");
[320]2268
[108]2269 my $tdir;
[136]2270 my $bdir;
[1176]2271 if (($cmt eq "Sources") || ($cmt =~ /(V[EM]|RM)Script/)) {
[1216]2272 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/src";
[1374]2273 } elsif ($cmt eq "CPAN") {
2274 $tdir = "$remdir";
[1907]2275 } elsif ($cmt =~ /(V[EM]|RM)(build|test|prep)/) {
[2084]2276 $tdir = $remdir."/$ENV{'PBPROJ'}/pbdelivery";
2277 $bdir = $remdir."/$ENV{'PBPROJ'}/pbbuild";
[136]2278 # Remove a potential $ENV{'HOME'} as bdir should be relative to pb's home
2279 $bdir =~ s|\$ENV.+\}/||;
[471]2280 } elsif ($cmt eq "Announce") {
[1216]2281 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}";
[556]2282 } elsif ($cmt eq "Web") {
[1216]2283 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}";
[90]2284 } elsif ($cmt eq "Packages") {
[1192]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
[1216]2287 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}";
[1192]2288 } elsif (($pbos->{'type'} eq "deb") || ($pbos->{'type'} eq "ebuild")) {
2289 # No need for an arch subdir
[1216]2290 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}";
[1192]2291 } else {
2292 die "Please teach the dev team where to deliver ($pbos->{'type'} type of packages\n";
2293 }
[429]2294
2295 my $repodir = $tdir;
[1216]2296 $repodir =~ s|^$remdir/||;
[1621]2297 my $repotag = "";
2298 $repotag = "-$delivery->{$ENV{'PBPROJ'}}" if ($delivery->{$ENV{'PBPROJ'}} ne "");
[429]2299
2300 my ($pbrepo) = pb_conf_get("pbrepo");
2301
[1953]2302 # Script for Repository management
[1910]2303 $pbscript{$v} = "$ENV{'PBBUILDDIR'}/pbscript.$$";
[1953]2304
2305 # That script should be part of the delivery
2306 $src = "$src $pbscript{$v}";
[1910]2307 open(PBS,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
[1177]2308 if ($pbos->{'type'} eq "rpm") {
[1276]2309 my $pbsha = pb_distro_get_param($pbos,pb_conf_get("ossha"));
[1556]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);
[2012]2315 # Also make a pbscript to generate dnf/yum/urpmi bases
[429]2316 print PBS << "EOF";
[433]2317#!/bin/bash
[2012]2318# Prepare a script to ease dnf/yum setup
[1298]2319EOF
2320 print PBS "set -x\n" if ($pbdebug gt 1);
2321 print PBS << "EOF";
[1621]2322cat > $ENV{'PBPROJ'}$repotag.repo << EOT
2323[$ENV{'PBPROJ'}$repotag]
[1177]2324name=$pbos->{'name'} $pbos->{'version'} $pbos->{'arch'} - $ENV{'PBPROJ'} Vanilla Packages
[433]2325baseurl=$pbrepo->{$ENV{'PBPROJ'}}/$repodir
[429]2326enabled=1
[1556]2327gpgcheck=$pbgpgcheck
[1335]2328gpgkey=$pbrepo->{$ENV{'PBPROJ'}}/$repodir/$ENV{'PBPROJ'}.pubkey
[429]2329EOT
[1622]2330chmod 644 $ENV{'PBPROJ'}$repotag.repo
[429]2331
2332# Clean up old repo content
2333rm -rf headers/ repodata/
2334# Create yum repo
[1102]2335if [ -x /usr/bin/yum-arch ]; then
2336 yum-arch .
2337fi
[429]2338# Create repodata
[1276]2339createrepo -s $pbsha .
[1365]2340# Link to the key
[1557]2341if [ -s $ENV{'PBPROJ'}.pubkey ]; then
[1605]2342 # Avoiding creating empty repomd.xml.key; fails on opensuse 12.1
[1557]2343 (cd repodata ; ln -sf ../$ENV{'PBPROJ'}.pubkey repomd.xml.key)
2344fi
[1365]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
[429]2348EOF
[1177]2349 if ($pbos->{'family'} eq "md") {
[429]2350 # For Mandriva add urpmi management
2351 print PBS << "EOF";
2352# Prepare a script to ease urpmi setup
[1621]2353cat > $ENV{'PBPROJ'}$repotag.addmedia << EOT
[1903]2354#rpm --import $pbrepo->{$ENV{'PBPROJ'}}/$repodir/$ENV{'PBPROJ'}.pubkey
[1621]2355urpmi.addmedia $ENV{'PBPROJ'}$repotag $pbrepo->{$ENV{'PBPROJ'}}/$repodir with media_info/hdlist.cz
[429]2356EOT
[1622]2357chmod 755 $ENV{'PBPROJ'}$repotag.addmedia
[429]2358
2359# Clean up old repo content
[437]2360rm -f hdlist.cz synthesis.hdlist.cz
[429]2361# Create urpmi repo
[1002]2362genhdlist2 --clean .
2363if [ \$\? -ne 0 ]; then
2364 genhdlist .
2365fi
[1903]2366(cd media_info ; ln -sf ../$ENV{'PBPROJ'}.pubkey pubkey)
[429]2367EOF
2368 }
[1177]2369 if ($pbos->{'name'} eq "fedora") {
[484]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 }
[1177]2380 if ($pbos->{'family'} eq "novell") {
[1089]2381 # Add ymp scripts for one-click install on SuSE
2382 print PBS << "EOF";
2383# Prepare a script to ease SuSE one-click install
[1090]2384# Cf: http://de.opensuse.org/1-Klick-Installation/ISV
2385#
[1621]2386cat > $ENV{'PBPROJ'}$repotag.ymp << EOT
[1096]2387<?xml version="1.0" encoding="utf-8"?>
2388<!-- vim: set sw=2 ts=2 ai et: -->
[1089]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 -->
[1621]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
[1089]2394
[1095]2395 Details are available on a per package basis below
2396
[1089]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>
[1621]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 -->
[1089]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`
[1096]2411 name=`rpm -q --qf '%{NAME}' \$p`
[1089]2412 desc=`rpm -q --qf '%{description}' \$p`
[1621]2413 cat >> $ENV{'PBPROJ'}$repotag.ymp << EOT
[1089]2414 <item>
[1096]2415 <name>\$name</name><!-- Name of the package, is shown to the user and used to identify the package at the repository -->
[1089]2416 <summary>\$sum</summary> <!-- Summary of the package -->
2417 <description>\$desc</description> <!-- Description, is shown to the user -->
2418 </item>
2419EOT
2420done
[1621]2421cat >> $ENV{'PBPROJ'}$repotag.ymp << EOT
[1089]2422 </software>
2423 </group>
2424</metapackage>
2425EOT
[1621]2426chmod 644 $ENV{'PBPROJ'}$repotag.ymp
[1089]2427EOF
2428 }
[1177]2429 } elsif ($pbos->{'type'} eq "deb") {
[429]2430 # Also make a pbscript to generate apt bases
[460]2431 # Cf: http://www.debian.org/doc/manuals/repository-howto/repository-howto.fr.html
[1246]2432 # This dirname removes ver
[2106]2433 my $debarch = pb_get_debarch($pbos);
2434 my $projcomponent = pb_get_debpc($pbos);
[465]2435 my $rpd = dirname("$pbrepo->{$ENV{'PBPROJ'}}/$repodir");
[1357]2436 # Remove extra . in path to fix #522
2437 $rpd =~ s|/./|/|g;
[460]2438 print PBS << "EOF";
[465]2439#!/bin/bash
2440# Prepare a script to ease apt setup
[1621]2441cat > $ENV{'PBPROJ'}$repotag.sources.list << EOT
[1555]2442deb $rpd $pbos->{'version'} $projcomponent
2443deb-src $rpd $pbos->{'version'} $projcomponent
[460]2444EOT
[1621]2445chmod 644 $ENV{'PBPROJ'}$repotag.sources.list
[460]2446
[1112]2447# Up two levels to deal with the dist dir cross versions
[1192]2448cd ..
[1555]2449mkdir -p dists/$pbos->{'version'}/$projcomponent/binary-$debarch dists/$pbos->{'version'}/$projcomponent/source
[1112]2450
[460]2451# Prepare a script to create apt info file
[1192]2452# Reuse twice after
[1112]2453TMPD=`mktemp -d /tmp/pb.XXXXXXXXXX` || exit 1
2454mkdir -p \$TMPD
2455cat > \$TMPD/Release << EOT
2456Archive: unstable
[1555]2457Component: $projcomponent
[1621]2458Origin: $ENV{'PBPROJ'}$repotag
2459Label: $ENV{'PBPROJ'}$repotag dev repository $pbrepo->{$ENV{'PBPROJ'}}
[1112]2460EOT
2461
[1559]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:"
[1604]2466 dpkg-scanpackages -a\$arch $pbos->{'version'} /dev/null > dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages
[1561]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
[1559]2469done
[1192]2470echo "Creating Contents metadata"
2471apt-ftparchive contents $pbos->{'version'} | gzip -c9 > dists/$pbos->{'version'}/Contents.gz
[1275]2472echo "Creating Release metadata ($pbos->{'arch'} aka $debarch)"
[1555]2473cat \$TMPD/Release > dists/$pbos->{'version'}/$projcomponent/binary-$debarch/Release
2474echo "Architecture: $debarch" >> dists/$pbos->{'version'}/$projcomponent/binary-$debarch/Release
[1112]2475echo "Creating Source metadata"
[1561]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
[1555]2479cat \$TMPD/Release > dists/$pbos->{'version'}/$projcomponent/source/Release
2480echo "Architecture: Source" >> dists/$pbos->{'version'}/$projcomponent/source/Release
[1112]2481echo "Creating Release metadata"
[1561]2482apt-ftparchive -o APT::FTPArchive::Release::Suite=$pbos->{version} release dists/$pbos->{'version'} > dists/$pbos->{'version'}/Release
[1112]2483rm -rf \$TMPD
[460]2484EOF
[1177]2485 } elsif ($pbos->{'type'} eq "ebuild") {
[586]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
[2113]2490cd $tdir
[586]2491for p in $src; do
2492 echo \$p | grep -q '.ebuild'
2493 if [ \$\? -eq 0 ]; then
[2113]2494 j=`basename \$p`
2495 pp=`echo \$j | perl -pe 's/-[0-9\.]+-r[0-9].*\.ebuild/.ebuild/'`
[1987]2496 ln -sf \$j \$pp
[586]2497 fi
2498done
2499EOF
[429]2500 }
2501 close(PBS);
[1953]2502 chmod 0755,$pbscript{$v};
[90]2503 } else {
2504 return;
[22]2505 }
[239]2506
[1143]2507 # Useless for VE
[1179]2508 my $nport = pb_get_port($sshport,$pbos,$cmt) if ($cmt !~ /^VE/);
[320]2509
[136]2510 # Remove a potential $ENV{'HOME'} as tdir should be relative to pb's home
[1559]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 }
[132]2517
[1217]2518 my $tm = "";
[1176]2519 if ($cmt =~ /^(V|R)M/) {
[1218]2520 $tm = "sleep $vtmout" if (defined $vtmout);
[883]2521 }
[320]2522
[1374]2523 # ssh communication if not VE or CPAN
[349]2524 # should use a hash instead...
[1549]2525 my ($shcmd,$shcmdroot,$cpcmd,$cptarget,$cp2target);
[1649]2526 my $tpdir;
[1900]2527 my $tp;
[1903]2528 my $context = "$ENV{'PBTMP'}";
2529 my %tag;
[1906]2530 my $dkaccount = "";
2531 my $cmd1 = "";
[2150]2532 my $cidfile = "$context/ctn-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}.cid";
[1909]2533 my $homedir = "";
[1374]2534 if ($cmt =~ /^VE/) {
[1900]2535 $tp = pb_path_expand($vepath->{$ENV{'PBPROJ'}});
[1907]2536 $vetype = pb_ve_get_type($vetype);
[1906]2537 if ($vetype eq "docker") {
2538 $tpdir = "/";
2539 } else {
2540 $tpdir = pb_path_expand("$tp/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
2541 }
[1545]2542 my $arch = pb_get_arch();
[681]2543 if ($vetype eq "chroot") {
[1549]2544 $shcmdroot = "sudo /usr/sbin/chroot $tpdir ";
2545 $shcmd = "$shcmdroot /bin/su - $mac -c ";
[681]2546 } elsif ($vetype eq "schroot") {
2547 $shcmd = "schroot $tp -u $mac -- ";
[1900]2548 } elsif ($vetype eq "docker") {
2549 # docker manages the storage so rely on it
[1903]2550 $shcmdroot = "";
[2104]2551 my $docrepo = pb_ve_docker_repo();
[1906]2552 $cmd1 = pb_check_req("docker",0);
[1903]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;
[1906]2557 # step 0 : nothing at creation -> tag n-v-a (made in VE.pm)
[1903]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
[2092]2563 $tag{1} = "$docrepo$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
[1903]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
[2162]2573 # TODO: we don't do anything with found !!
[1903]2574 my $found = pb_ve_docker_get_image($tag{$pbstep});
[2162]2575 confess "No image $tag{$pbstep} available in Docker, please create one first\n" if (not defined $found);
[1903]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
[1906]2585 $dkaccount = "root";
[1903]2586 } else {
[1986]2587 # Rest done as pb
[1906]2588 $dkaccount = "pb";
[1903]2589 }
[1906]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
[2150]2595 $shcmd = "$cmd1 run --cidfile=\"$cidfile\" --user $dkaccount --name $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-$cmt";
[1906]2596 }
[1903]2597 #$shcmd = "$cmd1 build $dockeropt->{$ENV{'PBPROJ'}} -t $tag{$pbstep+1} $context";
[681]2598 }
[1564]2599 $shcmd = "setarch i386 $shcmd" if (($pbos->{'arch'} =~ /i[3456]86/) && ($arch eq 'x86_64'));
[1903]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);
[2014]2609 $cpcmd = "sudo /bin/cp -r ";
[681]2610 }
[1906]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
[2150]2614 $homedir = `$cmd1 run --cidfile="$cidfile" $tag{$pbstep} grep -E '^$dkaccount:' /etc/passwd | cut -d: -f6`;
[1906]2615 chomp($homedir);
[2150]2616 open(CID,"$cidfile") || confess "Unable to open $cidfile";
[1906]2617 my $cid = <CID>;
2618 close(CID);
2619 pb_system("$cmd1 rm $cid","","quiet");
[2150]2620 unlink("$cidfile");
[1906]2621 } else {
2622 $homedir = "/";
2623 }
[2014]2624 $cpcmd = "cp -r ";
[1906]2625 }
[681]2626 $cptarget = "$tpdir/$homedir/$tdir";
[1908]2627 if ($cmt =~ /VE(build|prep)/) {
[681]2628 $cp2target = "$tpdir/$homedir/$bdir";
2629 }
2630 pb_log(2,"On VE using $cptarget as target dir to copy to\n");
[1593]2631 } elsif ($cmt eq "CPAN") {
[1382]2632 my $ftpput = pb_check_req("ncftpput",1);
2633 my $ftpget = pb_check_req("wget",1);
[1595]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'}}));
[1374]2637 my ($cpansubdir) = pb_conf_get_if("cpansubdir");
[1595]2638 $shcmd = "$ftpget --post-data \'HIDDENNAME=".$cpanuser->{$ENV{'PBPROJ'}};
2639 $shcmd .= "&user=".$cpanuser->{$ENV{'PBPROJ'}};
2640 $shcmd .= "&password=".$cpanpasswd->{$ENV{'PBPROJ'}};
[1374]2641 $shcmd .= "&SUBMIT_pause99_add_uri_upload=\"Upload the checked files\"";
[1595]2642 $shcmd .= "&pause99_add_uri_subdirtext=".$cpansubdir->{$ENV{'PBPROJ'}} if ((defined $cpansubdir) && (defined $cpansubdir->{$ENV{'PBPROJ'}}));
[1374]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 {
[1604]2650 my $keyopt = "";
[2049]2651 if ($cmt !~ /Packages/) {
2652 my $keyfile = pb_ssh_get(0,$remhost,$nport);
2653 $keyopt = "-i $keyfile" if (defined $keyfile);
2654 }
[1382]2655 my $sshcmd = pb_check_req("ssh",1);
2656 my $scpcmd = pb_check_req("scp",1);
[1545]2657 $shcmd = "$sshcmd $keyopt -q -o NoHostAuthenticationForLocalhost=yes -p $nport $mac";
2658 $cpcmd = "$scpcmd $keyopt -p -o NoHostAuthenticationForLocalhost=yes -P $nport";
[1374]2659 $cptarget = "$mac:$tdir";
[1908]2660 if ($cmt =~ /^(V|R)M(build|prep)/) {
[1374]2661 $cp2target = "$mac:$bdir";
2662 }
[320]2663 }
[1374]2664
[471]2665 my $logres = "";
2666 # Do not touch when just announcing
[1374]2667 if (($cmt ne "Announce") && ($cmt ne "CPAN")) {
[1906]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";
[1909]2672 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2673 # Nothing to do here
[1903]2674 } else {
[2113]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");
[1903]2676 }
[471]2677 } else {
2678 $logres = "> ";
2679 }
[1907]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 {
[1942]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");
[1907]2709 }
2710 }
2711
[1953]2712 pb_log(0,"Sources handled ($cmt): $src\n");
[1903]2713 # For docker everything is done in the Dockerfile
[1906]2714 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
[1903]2715 foreach my $f (split(/ +/,$src)) {
2716 copy("$f","$context");
[1906]2717 print DOCKER "COPY ".basename($f)." $cptarget/\n";
[1903]2718 }
[1906]2719 print DOCKER "RUN cd $cptarget ; $cmd\n" if ((defined $cmd) && ($cmd ne ""));
[1909]2720 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2721 # Nothing to do
[1903]2722 } else {
2723 pb_system("cd $ENV{'PBBUILDDIR'} ; $cpcmd $src $cptarget 2> /dev/null","$cmt delivery in $cptarget");
2724 }
[444]2725
[681]2726 # For VE we need to change the owner manually
[772]2727 if ($cmt =~ /^VE/) {
[1903]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");
[1906]2733 } else {
[1907]2734 print DOCKER "RUN sed -i '/requiretty/d' /etc/sudoers\n" if ($pbstep == 1);
[1903]2735 }
[681]2736 }
2737
[1140]2738 # Use the right script name depending on context
[2049]2739 my $pbscript2;
[1189]2740 if (($cmt =~ /^(V[EM]|RM)/) || ($cmt =~ /Packages/)){
[2049]2741 $pbscript2 = $pbscript{$v};
[1140]2742 } else {
[2049]2743 $pbscript2 = "pbscript";
[1140]2744 }
2745
[1374]2746 # It's already ready for CPAN
[1383]2747 my $shcmdbase = $shcmd;
[1910]2748 my $dkcmd;
[1593]2749 if ($cmt ne "CPAN") {
[1906]2750 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
[2049]2751 copy("$pbscript2","$context");
2752 my $s = basename($pbscript2);
[1906]2753 print DOCKER "COPY $s $cptarget/\n";
2754 # call directly with perl to avoid text file busy error messages
[1967]2755 print DOCKER "RUN cd $cptarget ; perl ./$s ; if [ '$pbkeep' = '0' ]; then rm -f $s; fi\n";
[1906]2756 print DOCKER "RUN rm -rf $cptarget/*\n";
[2004]2757 print DOCKER "RUN chown -R $dkaccount $cptarget\n" if ($pbstep == 1);
[1903]2758 close(DOCKER);
[1909]2759 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
[2049]2760 $dkcmd = "/bin/bash $homedir/$tdir-2/".basename($pbscript2);
[1903]2761 } else {
[2049]2762 my $s = basename($pbscript2);
[1942]2763 $shcmd .= " \"echo \'cd $tdir ; if [ -x $s ]; then ./$s; fi ; if [ $pbkeep == 0 ]; then rm -f $s; fi\' | bash\"";
[1903]2764 }
[1374]2765 }
[1726]2766 my $cmdverb = "verbose";
[1388]2767 if (($cmt eq "Announce") || ($cmt eq "CPAN")) {
[1386]2768 $cmdverb = undef;
[1726]2769 } elsif (defined ($v)) {
2770 $cmdverb = "verbose_\[$v\] ";
[1386]2771 }
[2122]2772 # this is where we launch the execution
[1909]2773 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2774 pb_mkdir_p("$ENV{'PBTMP'}/vebuild");
[1910]2775 my $tsrc = "";
[1909]2776 foreach my $f (split(/ +/,$src)) {
2777 copy("$f","$ENV{'PBTMP'}/vebuild");
[1910]2778 $tsrc .= " ".basename($f);
[1909]2779 }
[2049]2780 my $ts = "$ENV{'PBTMP'}/vebuild/".basename($pbscript2);
[1910]2781 open(DOCKER," > $ts") || confess "Unable to create $ts";
[1913]2782 print DOCKER "#!/bin/bash\n";
[1910]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";
[2004]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";
[1910]2788 print DOCKER " cp $homedir/$tdir-2/\$i $homedir/$tdir\n";
2789 print DOCKER "done\n";
[2004]2790 print DOCKER "(cd $homedir/$tdir-2 ; ls -al)\n";
[2049]2791 print DOCKER pb_get_content($pbscript2);
[2004]2792 print DOCKER "\n# Get content back from guest in a host dir\n";
[2014]2793 # Host dir seen as TDIR in container
[1910]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";
[2014]2798 print DOCKER "for i in $homedir/$bdir/*; do\n";
[2004]2799 print DOCKER " # Cleanup first to avoid rights issues for root owned files e.g.\n";
[2014]2800 print DOCKER " j=\`basename \$i\`\n";
2801 print DOCKER " rm -f \$TDIR/\$j\n";
[1910]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";
[2122]2806 #print DOCKER "ls -al \$TDIR\n";
[2110]2807 print DOCKER "exit 0\n";
[1910]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";
[1909]2810 }
[1907]2811 my $ret = pb_system("$shcmd","Executing pbscript on $cptarget if needed",$cmdverb);
[2106]2812
2813 # If target is deb family then sign Release file for Packages
[2107]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") {
[2108]2819 my $debdir = dirname($cptarget);
2820 pb_system("cd $ENV{'PBBUILDDIR'} ; $cpcmd $debdir/$f . 2> /dev/null","Getting deb $f file from $debdir");
[2106]2821 pb_sign_file("$ENV{'PBBUILDDIR'}/Release");
[2108]2822 pb_system("$cpcmd $ENV{'PBBUILDDIR'}/Release.gpg $debdir/$f.gpg 2> /dev/null","Putting deb $f.gpg file to $debdir");
[2106]2823 }
2824 }
[1903]2825
[1176]2826 if ($cmt =~ /^(V[EM]|RM)build/) {
2827 # Get back info on pkg produced, compute their name and get them from the VM/RM
[1189]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");
[1138]2829 if (not -f "$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$") {
[1652]2830 pb_log(0,"ERROR with VM/RM $v on getting $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$\n");
[1156]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'}.$$");
[1138]2837
[1156]2838 $src =~ s/^ *//;
[1179]2839 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
[1156]2840 # Change pgben to make the next send2target happy
2841 my $made = "";
2842
[1176]2843 # For VM/RM we don't want shell expansion to hapen locally but remotely
[1156]2844 my $delim = '\'';
2845 if ($cmt =~ /^VEbuild/) {
2846 # For VE we need to support shell expansion locally
2847 $delim = "";
2848 }
[1138]2849
[1189]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'}";
[1156]2851 foreach my $p (split(/ +/,$src)) {
2852 my $j = basename($p);
[1179]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$/));
[1156]2855 }
[1910]2856
[1156]2857 print KEEP "$made\n";
2858 close(KEEP);
[1953]2859 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
[1910]2860 pb_rm_rf("$cp2target");
[1911]2861 pb_system("$cmd1 rm $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-$cmt","","quiet");
[1910]2862 } else {
2863 pb_system("$shcmdbase \"rm -rf $tdir $bdir\"","$cmt cleanup");
2864 }
[1138]2865
[1156]2866 # Sign packages locally
[1278]2867 pb_sign_pkgs($pbos,$made);
[1156]2868
2869 # We want to send them to the ssh account so overwrite what has been done before
[1903]2870 pb_log(2,"Before sending pkgs, vexist: $vexist, vpid: $vpid\n");
[1943]2871 pb_send2target("Packages","$ENV{'PBDESTDIR'}/pbscript.$$",$pbos->{'name'}."-".$pbos->{'version'}."-".$pbos->{'arch'},$vexist,$vpid);
[1179]2872 pb_rm_rf("$ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
[623]2873 }
[108]2874 }
[2049]2875 unlink("$pbscript{$v}") if ((($cmt =~ /^(V[ME]|RM)/) || ($cmt =~ /Packages/)) && ($pbkeep eq 0) && ($cmt !~ /Script/));
[1139]2876
[1903]2877 pb_log(2,"Before halt, vexist: $vexist, vpid: $vpid\n");
2878 if ((! $vexist) && ($cmt =~ /^VM/)) {
[748]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")) {
[1153]2884 eval
2885 {
[804]2886 require Net::Telnet;
[1153]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 }
[748]2903 }
2904 }
[914]2905 my $hoption = "-p";
[1197]2906 my $hpath = pb_distro_get_param($pbos,pb_conf_get("ospathcmd-halt"));
[1194]2907 # Solaris doesn't support -p of halt
[1177]2908 if ($pbos->{'type'} eq "pkg") {
[1091]2909 $hoption = "" ;
2910 }
[1903]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)");
[442]2912 }
[772]2913 if (($cmt =~ /^VE/) && ($snapme != 0)) {
[1903]2914 if ($vetype eq "docker") {
2915 foreach my $f (split(/ +/,$src)) {
2916 unlink("$context/$f");
2917 }
[1907]2918 } else {
2919 pb_ve_snap($pbos,$tp);
[1903]2920 }
[752]2921 }
[9]2922}
[16]2923
[320]2924sub pb_script2v {
[141]2925
[1903]2926my $pbscript=shift;
2927my $vtype=shift;
[1906]2928my $pbstep=shift; # Which step are we in (0: create, 1: setup pb, 2: prep pbproj, 3: use to build)
[1907]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
[141]2932
[1907]2933$pbforce = 0 if (not defined $pbforce);
2934$snapme = 0 if (not defined $snapme);
[2047]2935$pbstep = 3 if (not defined $pbstep);
[1907]2936
[1903]2937pb_log(2,"DEBUG: pb_script2v($vtype,$pbstep,$pbforce,$snapme)\n");
[2049]2938pb_log(2,"DEBUG: pb_script2v(pbscript: ".Dumper($pbscript)."\n") if (defined $pbscript);
[1958]2939pb_parallel_launchv($pbscript,$vtype,uc($vtype)."Script",$pbstep,$pbimage,$pbforce,$snapme,$pbsnap);
[1903]2940}
[142]2941
[1903]2942sub pb_parallel_launchv {
[755]2943
[1903]2944my $pbscript=shift;
2945my $vtype = shift;
[1907]2946my $action = shift; # It an action is defined then use send2target
[1903]2947my $pbstep=shift; # Which step are we in (0: create, 1: setup, 2: build 3: use)
[1958]2948my $pbimage=shift; # Which image to use to start the VM/VE
[1907]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
[1903]2952my $vm;
2953my $all;
[141]2954
[1907]2955$pbforce = 0 if (not defined $pbforce);
2956$snapme = 0 if (not defined $snapme);
2957$usesnap = 1 if (not defined $usesnap);
2958
[1903]2959# Adapt // mode to memory size
2960$pbparallel = pb_set_parallel($vtype);
[442]2961
[1903]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");
[274]2964
[1903]2965my ($vexist,$vpid) = (undef,undef);
2966my $pm;
2967my $all_ok = 1;
2968if (defined $pbparallel) {
2969 $pm = new Parallel::ForkManager($pbparallel);
[169]2970
[1903]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
[2049]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 #
[1903]3000 # Launch a single operation
[2049]3001 ($vexist,$vpid) = pb_launchv($pbscript->{$v},$vtype,$v,$action,$pbstep,$pbforce,$snapme,$pbsnap,$pbimage);
[1903]3002
[1942]3003 # Skip that VM/RM if something went wrong
3004 if (($vtype =~ /(v|r)m/) && ($vpid == 0) && ($vexist == 0)) {
[1903]3005 $pm->finish if (defined $pbparallel);
3006 next;
[142]3007 }
[1952]3008
[1942]3009
[1903]3010 $pm->finish if (defined $pbparallel);
[142]3011}
[1903]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}
[142]3015
[320]3016sub pb_launchv {
[310]3017
[2049]3018my $pbscript1=shift; # Just the script name to execute, not the hash
[1903]3019my $vtype = shift;
[1907]3020my $v = shift; # Only 1 VM/VE/RM treated here
3021my $action = shift; # It an action is defined then use send2target
[1903]3022my $pbstep=shift; # Which step are we in (0: create, 1: setup, 2: build 3: use)
[1907]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
[1903]3027my $vexist = undef;
3028my $vpid = undef;
[773]3029
[1907]3030$pbforce = 0 if (not defined $pbforce);
3031$snapme = 0 if (not defined $snapme);
3032$usesnap = 1 if (not defined $usesnap);
3033
[1903]3034# Check that v exists
3035die "No VM/VE/RM defined, unable to launch" if (not defined $v);
[310]3036
[1903]3037# If creation or snapshot creation mode, no snapshot usable
3038if (($pbstep == 0) || ($snapme == 1)) {
3039 $usesnap = 0;
3040}
[1549]3041
[1907]3042pb_log(2,"DEBUG: pb_launchv(vtype,v,step,force,snapme,usesnap: $vtype,$v,$pbstep,$pbforce,$snapme,$usesnap)\n");
[1903]3043pb_log(2,"DEBUG: pb_launchv(pbimage: $pbimage)\n") if (defined $pbimage);
[2049]3044pb_log(2,"DEBUG: pb_launchv(pbscript $pbscript1)\n") if (defined $pbscript1);
[1903]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}
[310]3051
[1903]3052my $pbos = pb_distro_get_context($v);
[320]3053
[1903]3054pb_apply_conf_proxy($pbos);
[1124]3055
[1903]3056# Launch the VMs/VEs
3057if ($vtype eq "vm") {
[1906]3058 confess "-i image parameter needed" if (((not defined $pbimage) || ($pbimage eq "")) && ($pbstep == 0));
[1903]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";
[1124]3070 }
[1903]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";
[310]3092 }
[1903]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";
[483]3103 }
[1903]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//;
[320]3111 }
[1903]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);
[773]3119
[1903]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";
[1143]3126 }
[1903]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'};
[1143]3138
[1903]3139 my ($tmpcmd,$void) = split(/ +/,$cmd);
3140 my $vmmport = undef;
3141 ($vexist,$vmmport) = pb_check_ps($tmpcmd,$vmm);
[1927]3142 $vpid = 0;
[1942]3143
[1903]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 {
[748]3152 }
3153 }
[1903]3154 if (! -f "$vmm") {
3155 pb_log(0,"Unable to find VM $vmm\n");
[310]3156 } else {
[1903]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'}};
[320]3165 }
[1153]3166
[1903]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;
[320]3172 }
[1903]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");
[310]3178 }
[1176]3179 } else {
[1942]3180 pb_log(0,"Found an existing VM $vmm (pid $vexist - Port $vmmport)\n");
[1903]3181 # Set the correct port here based on what is done
[2029]3182 $pbport = $vmmport;
[1903]3183 $vpid = $vexist;
3184 }
3185 pb_log(2,"DEBUG: pb_launchv returns ($vexist,$vpid)\n");
[1952]3186
[1963]3187 # After the VM is launched, then setup the SSH access if not in creation phase
3188 if ($pbstep != 0) {
[2029]3189 if (defined $pbport) {
3190 pb_ssh_setup($vtype,$pbport);
3191 } else {
3192 pb_ssh_setup($vtype,$nport);
3193 }
[1963]3194 }
[1903]3195
[1952]3196 # Skip that VM if something went wrong
[1903]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);
[1907]3207 pb_ve_launch($v,$pbstep,$usesnap,$vetype,$pbimage);
[1903]3208 $vexist = 0;
3209 $vpid = 0;
3210} else {
3211 # Get RM context
[1952]3212 my ($ptr,$rmpath,$rmport) = pb_conf_get("rmtype","rmpath","rmport");
[1176]3213
[1903]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;
[1952]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);
[141]3223}
[142]3224
[1903]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");
[2049]3229 pb_send2target($action,$pbscript1,$v,$vexist,$vpid,$snapme,$pbstep);
[1903]3230}
3231return($vexist,$vpid);
3232}
3233
[639]3234# Return string for date synchro
[772]3235sub pb_date2v {
[639]3236
3237my $vtype = shift;
[1216]3238my $pbos = shift;
[1712]3239my $nontp = shift || 0;
[639]3240
[1714]3241pb_log(1,"Entering pb_date2v\n");
[1545]3242# VE gets time from parent OS.
3243return "/bin/true" if ($vtype) =~ /^ve/o;
3244
[986]3245my ($ntp) = pb_conf_get_if($vtype."ntp");
[1714]3246my $vntp = undef;
[1221]3247my $ntpline = undef;
[1714]3248$vntp = $ntp->{$ENV{'PBPROJ'}} if (defined $ntp);
[639]3249
[1598]3250if ((defined $vntp) && ($vntp !~ /^\s*$/)) {
[1714]3251 pb_log(2,"ntp server is $vntp\n");
[1221]3252 # ntp command depends on pbos
[1714]3253 my $vntpcmd = pb_distro_get_param($pbos,pb_conf_get("oscmdntp"));
[652]3254 $ntpline = "sudo $vntpcmd $vntp";
[639]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);
[1179]3261my $dateline = "sudo /bin/date $upddate";
[1712]3262if ((defined $ntpline) && ($nontp == 0)) {
[1714]3263 pb_log(1,"pb_date2v returns $ntpline\n");
[1190]3264 return($ntpline);
3265} else {
[1714]3266 pb_log(1,"pb_date2v returns $dateline\n");
[1190]3267 return($dateline);
[639]3268}
[1190]3269}
[639]3270
[320]3271sub pb_build2v {
[118]3272
[320]3273my $vtype = shift;
[1907]3274my $action = shift; #build, test or prep
3275my $pbforce=shift; # Force stop of VM. Default not.
[142]3276
[1907]3277$action = "build" if (not defined $action);
3278$pbforce = 0 if (not defined $pbforce);
3279
[1906]3280my $pbstep;
3281
[2015]3282$vetype = pb_ve_get_type($vetype);
[1906]3283if ($action eq "prep") {
3284 $pbstep = 2;
3285} else {
3286 $pbstep = 3;
[2015]3287 # Need to be traversed by others if using containers
3288 if (($vtype eq "ve") && ($vetype eq "docker")) {
3289 chmod 0751,"$ENV{'PBBUILDDIR'}";
3290 }
[1906]3291}
3292
[1908]3293pb_log(1,"Entering in pb_build2v ($action in $vtype) \n");
3294
[1903]3295# We prepare scripts for all V of this vtype to allow sharing that part
[772]3296my ($v,$all) = pb_get2v($vtype);
[320]3297
3298# Send tar files when we do a global generation
[772]3299pb_build2ssh() if (($all == 1) && ($action eq "build"));
[320]3300
[1143]3301# Adapt // mode to memory size
3302$pbparallel = pb_set_parallel($vtype);
3303
[1903]3304my ($vexist,$vpid) = (undef,undef);
[1176]3305my $pm;
[1550]3306my $all_ok = 1;
[1176]3307if (defined $pbparallel) {
3308 $pm = new Parallel::ForkManager($pbparallel);
[320]3309
[1176]3310 # Set which port the VM/RM will use to communicate
3311 $pm->run_on_start(\&pb_set_port);
[1550]3312 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
3313 unless ($code == 0 && $signal == 0 && $dump == 0) {
[1552]3314 $all_ok = 0;
[1550]3315 pb_log(0,"ERROR: pid $pid failed\n");
3316 }
3317 });
[1176]3318}
[1143]3319
3320my $counter = 0;
[320]3321foreach my $v (@$v) {
[1143]3322 $counter++;
[1906]3323 $pbscript{$v} = "$ENV{'PBDESTDIR'}/pb$action-$v";
[1153]3324 # Modulo 2 * pbparallel (to avoid synchronization problems)
[1176]3325 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
[1143]3326 $pm->start($counter) and next if (defined $pbparallel);
[1906]3327 #
[1176]3328 # Prepare the script to be executed on the VM/VE/RM
[1903]3329 open(SCRIPT,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
[652]3330 print SCRIPT "#!/bin/bash\n";
[721]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 }
[1597]3339 print SCRIPT "set -e\n" if ($Global::pb_stop_on_error);
[721]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
[652]3345 print SCRIPT "echo ... Execution needed\n";
[1906]3346 print SCRIPT "echo ==== Start of script for $vtype $v =====\n";
[2084]3347 print SCRIPT "# This is in directory pbdelivery\n";
[652]3348 print SCRIPT "# Setup the variables required for building\n";
3349 print SCRIPT "export PBPROJ=$ENV{'PBPROJ'}\n";
[686]3350
[1907]3351 if (($action eq "build") || ($action eq "prep")) {
[772]3352 print SCRIPT "# Preparation for pb\n";
[1652]3353 print SCRIPT "rm -f \$HOME/.pbrc\n";
[1910]3354 print SCRIPT "cp .pbrc \$HOME\n";
[2004]3355 # TODO: Why ?
[772]3356 print SCRIPT "cd ..\n";
3357 }
3358
[1545]3359 # VE needs a good /proc, tolerate one being potentially left around after a failure
[1903]3360 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1545]3361 print SCRIPT "[ -d /proc/1 ] || sudo /bin/mount -t proc /proc /proc\n";
[686]3362 }
[652]3363
[1216]3364 # Get distro context
3365 my $pbos = pb_distro_get_context($v);
3366
3367 my $ntpline = pb_date2v($vtype,$pbos);
[652]3368 print SCRIPT "# Time sync\n";
[1545]3369 print SCRIPT "echo setting up date with $ntpline\n";
[1190]3370 print SCRIPT "$ntpline\n";
[1716]3371 print SCRIPT "if [ \$\? -ne 0 ]; then\n";
[1712]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";
[721]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 }
[652]3380
[721]3381 if (defined $ENV{'ftp_proxy'}) {
3382 print SCRIPT "export ftp_proxy=\"$ENV{'ftp_proxy'}\"\n";
[652]3383 }
3384
[772]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";
[721]3392
3393 # We may need to do some other tasks before building. Read a script here to finish setup
[772]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");
[721]3397 }
3398
[772]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")) {
[2003]3408 confess "No test script ($ENV{'PBDESTDIR'}/pbtest) found when in test mode. Aborting ...";
[772]3409 }
[1968]3410 print SCRIPT "pb -h\n";
[1906]3411 my $act = "$action"."2pkg";
3412 $act = "build2prep" if ($action eq "prep");
3413 print SCRIPT "pb $verbose -p $ENV{'PBPROJ'} $act $p\n";
[772]3414
[1903]3415 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1179]3416 print SCRIPT "sudo /bin/umount /proc\n";
[686]3417 }
[721]3418
3419 # We may need to do some other tasks after building. Read a script here to exit properly
[772]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");
[721]3423 }
3424
[772]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
[1716]3430 print SCRIPT "echo ==== End of script $$ for $vtype $v =====\n";
[652]3431 close(SCRIPT);
[1903]3432 chmod 0755,"$pbscript{$v}";
[652]3433
[1139]3434 $pm->finish if (defined $pbparallel);
[105]3435}
[1176]3436$pm->wait_all_children if (defined $pbparallel);
[1550]3437die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
[1903]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
[1958]3443pb_parallel_launchv(\%pbscript,$vtype,uc($vtype).$action,$pbstep,$pbimage,$pbforce);
[320]3444}
[105]3445
[262]3446
[739]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
[199]3458sub pb_newver {
3459
[204]3460 die "-V Version parameter needed" if ((not defined $newver) || ($newver eq ""));
[340]3461
[366]3462 # Need this call for PBDIR
3463 my ($scheme2,$uri) = pb_cms_init($pbinit);
[361]3464
[898]3465 my ($pbconf,$pburl) = pb_conf_get("pbconfurl","pburl");
[366]3466 $uri = $pbconf->{$ENV{'PBPROJ'}};
3467 my ($scheme, $account, $host, $port, $path) = pb_get_uri($uri);
3468
[361]3469 # Checking CMS repositories status
[366]3470 ($scheme2, $account, $host, $port, $path) = pb_get_uri($pburl->{$ENV{'PBPROJ'}});
[340]3471
3472 if ($scheme !~ /^svn/) {
[199]3473 die "Only SVN is supported at the moment";
3474 }
[483]3475
[1469]3476 my $res = pb_vcs_isdiff($scheme,$ENV{'PBROOTDIR'});
[361]3477 die "ERROR: No differences accepted in CMS for $ENV{'PBROOTDIR'} before creating a new version" if ($res != 0);
[358]3478
[1469]3479 $res = pb_vcs_isdiff($scheme2,$ENV{'PBDIR'});
[361]3480 die "ERROR: No differences accepted in CMS for $ENV{'PBDIR'} before creating a new version" if ($res != 0);
[358]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
[1381]3485 my $oldver = $ENV{'PBROOTDIR'};
3486 $oldver =~ s|^$ENV{'PBCONFDIR'}||;
[358]3487
[1381]3488 pb_log(2, "PBCONFDIR: $ENV{'PBCONFDIR'}\nPBROOTDIR: $ENV{'PBROOTDIR'}\n");
3489
3490 my $newurl = "$uri/$newver";
[366]3491 # Should probably use projver in the old file
[1381]3492 my $oldvertxt= basename($oldver);
3493 my $newvertxt = basename($newver);
[361]3494
[366]3495 # Duplicate and extract project-builder part
[1381]3496 pb_log(2,"Copying $uri/$oldver to $newurl\n");
[1469]3497 pb_vcs_copy($scheme,"$uri/$oldver",$newurl);
[1381]3498 pb_log(2,"Checkout $newurl to $ENV{'PBCONFDIR'}/$newver\n");
[1469]3499 pb_vcs_up($scheme,"$ENV{'PBCONFDIR'}");
[361]3500
[366]3501 # Duplicate and extract project
[1381]3502 my $newurl2 = "$pburl->{$ENV{'PBPROJ'}}/$newver";
[366]3503
[1381]3504 pb_log(2,"Copying $pburl->{$ENV{'PBPROJ'}}/$oldver to $newurl2\n");
[1469]3505 pb_vcs_copy($scheme2,"$pburl->{$ENV{'PBPROJ'}}/$oldver",$newurl2);
[366]3506
[1381]3507 my $tmp = $ENV{'PBDIR'};
3508 $tmp =~ s|$oldver$||;
3509 pb_log(2,"Checkout $newurl2 to $tmp/$newver\n");
[1469]3510 pb_vcs_up($scheme2,"$tmp");
[1381]3511
[361]3512 # Update the .pb file
[1381]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";
[208]3515 while(<FILE>) {
[1420]3516 if (/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldvertxt$/) {
3517 s/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldvertxt$/projver $ENV{'PBPROJ'} = $newvertxt/;
[1381]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/) {
[1420]3525 my $txt = $_;
3526 chomp($txt);
3527 pb_log(0,"Please check delivery ($txt) in $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb\n");
[1381]3528 }
[211]3529 print OUT $_;
[208]3530 }
3531 close(FILE);
[211]3532 close(OUT);
[1381]3533 rename("$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb.new","$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb");
[363]3534
[479]3535 # Checking pbcl files
3536 foreach my $f (<$ENV{'PBROOTDIR'}/*/pbcl>) {
[590]3537 # Compute new pbcl file
3538 my $f2 = $f;
[1381]3539 $f2 =~ s|$ENV{'PBROOTDIR'}|$ENV{'PBCONFDIR'}/$newver/|;
[479]3540 open(PBCL,$f) || die "Unable to open $f";
3541 my $foundnew = 0;
3542 while (<PBCL>) {
[1381]3543 $foundnew = 1 if (/^$newvertxt \(/);
[479]3544 }
3545 close(PBCL);
[590]3546 open(OUT,"> $f2") || die "Unable to write to $f2: $!";
[479]3547 open(PBCL,$f) || die "Unable to open $f";
[1612]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;
[479]3552 while (<PBCL>) {
[1612]3553 $skip = 0 if (/^$newvertxt \(/);
[1381]3554 if ((/^$oldvertxt \(/) && ($foundnew == 0)) {
3555 print OUT "$newvertxt ($pbdate)\n";
[479]3556 print OUT "- TBD\n";
3557 print OUT "\n";
[1381]3558 pb_log(0,"WARNING: version $newvertxt not found in $f so added to $f2...\n") if ($foundnew == 0);
[479]3559 }
[1612]3560 if ($cnt <= 4) {
3561 print OUT "$_" if (not /^$oldvertxt \(/);
3562 } else {
3563 print OUT "$_" if ($skip == 0);
3564 }
3565 $cnt++;
[479]3566 }
3567 close(OUT);
3568 close(PBCL);
3569 }
3570
[1381]3571 pb_log(2,"Checkin $ENV{'PBCONFDIR'}/$newver\n");
[1850]3572 pb_vcs_checkin($scheme,"$ENV{'PBCONFDIR'}/$newver","updated to $ENV{'PBCONFDIR'}");
[199]3573}
3574
[293]3575#
[1176]3576# Return the list of VMs/VEs/RMs we are working on
[105]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#
[772]3580sub pb_get2v {
[91]3581
[320]3582my $vtype = shift;
3583my @v;
[105]3584my $all = 0;
[320]3585my $pbv = 'PBV';
[1176]3586my $vlist = $vtype."list";
[91]3587
[320]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'}};
[105]3592 $all = 1;
[91]3593}
[320]3594pb_log(2,"$vtype: $ENV{$pbv}\n");
3595@v = split(/,/,$ENV{$pbv});
3596return(\@v,$all);
[91]3597}
3598
[1541]3599# This function creates a giant script to configure a particular VM/VE/RM, it then copies the
3600# script to the target.
3601
[1176]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
[320]3604# pb will take your local public SSH key to access
[1176]3605# the pb account in the VM/VE/RM later on if needed
[772]3606sub pb_setup2v {
[320]3607
3608my $vtype = shift;
[1907]3609my $sbx = shift;
[1903]3610my $pbstep = 1;
[320]3611
[772]3612my ($vm,$all) = pb_get2v($vtype);
[353]3613
[1143]3614# Adapt // mode to memory size
3615$pbparallel = pb_set_parallel($vtype);
3616
[1176]3617my $pm;
[1550]3618my $all_ok = 1;
[1176]3619if (defined $pbparallel) {
3620 $pm = new Parallel::ForkManager($pbparallel);
[1143]3621
[1176]3622 # Set which port the VM/RM will use to communicate
3623 $pm->run_on_start(\&pb_set_port);
[1550]3624 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
3625 $all_ok = 0 unless (($code == 0) && ($signal == 0) && ($dump == 0));
3626 });
[1176]3627}
[1143]3628
3629my $counter = 0;
[652]3630foreach my $v (@$vm) {
[1903]3631 # Script generated - should be before the fork - after the %pbscript hash isn't updated correctly
3632 $pbscript{$v} = "$ENV{'PBDESTDIR'}/setupv-$v";
3633
[1143]3634 $counter++;
[1886]3635 # Modulo 2 * pbparallel (to avoid synchronization problems)
3636 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
[1143]3637 $pm->start($counter) and next if (defined $pbparallel);
3638
[891]3639 # Get distro context
[1177]3640 my $pbos = pb_distro_get_context($v);
[891]3641
[1216]3642 # Deal with date sync.
3643 my $ntpline = pb_date2v($vtype,$pbos);
3644
[1176]3645 # Name of the account to deal with for VM/VE/RM
[353]3646 # Do not use the one passed potentially with -a
3647 my ($pbac) = pb_conf_get($vtype."login");
[1952]3648 my $key = "";
[346]3649
[1176]3650 # Prepare the script to be executed on the VM/VE/RM
[681]3651 # in $ENV{'PBDESTDIR'}/setupv
[1903]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}";
[681]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
[1140]3663# by Base, Conf and Distribution to avoid problems at exec time.
[681]3664# They are appended at the end.
3665
[1156]3666# Define mandatory global vars
[1649]3667EOF
3668 my $ppref = "our";
[1651]3669 $ppref = "my" if (($pbos->{'name'} =~ /^redhat/) && ($pbos->{'version'} =~ /^6/));
[1649]3670 print SCRIPT << "EOF";
[1651]3671$ppref \$pbdebug = $pbdebug;
[1649]3672$ppref \$pbLOG;
3673$ppref \$pbsynmsg = "pbscript";
3674$ppref \$pbdisplaytype = "text";
3675$ppref \$pblocale = "";
3676EOF
3677 print SCRIPT << 'EOF';
[681]3678pb_log_init($pbdebug, $pbLOG);
[1425]3679EOF
3680 print SCRIPT << "EOF";
[1548]3681\$Global::pb_stop_on_error = $Global::pb_stop_on_error;
[1425]3682pb_temp_init($pbkeep);
[1511]3683pb_conf_init("$ENV{'PBPROJ'}");
[681]3684
3685EOF
3686
[1952]3687 if ($vtype eq "ve") {
[1907]3688 $vetype = pb_ve_get_type($vetype);
[1903]3689 if ($vetype ne "docker") {
3690 print SCRIPT << "EOF";
[681]3691# For VE we first need to mount some FS
[1549]3692pb_system("mount -t proc /proc /proc") unless (-d "/proc/$$");
[1903]3693EOF
3694 }
3695 print SCRIPT << "EOF";
[1651]3696# For VE we need a good null dev
3697# Except for RedHat 6.2 where it's good and doesnt like being recreated
[354]3698EOF
[1687]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/));
[1952]3700 } elsif ($vtype =~ /(v|r)m/) {
[2045]3701 # Nothing to do now.
3702 my $useless = 0;
[1541]3703 } else {
3704 die "Unknown virtual type $vtype";
[681]3705 }
[1029]3706
[354]3707 print SCRIPT << 'EOF';
3708
3709# Adds $pbac->{$ENV{'PBPROJ'}} as an account if needed
3710#
[346]3711my $file="/etc/passwd";
[320]3712open(PBFILE,$file) || die "Unable to open $file";
3713my $found = 0;
3714while (<PBFILE>) {
[346]3715EOF
[353]3716 print SCRIPT << "EOF";
3717 \$found = 1 if (/^$pbac->{$ENV{'PBPROJ'}}:/);
[346]3718EOF
[891]3719
[1176]3720# TODO: use an external parameter
[891]3721my $home = "/home";
3722# Solaris doesn't like that we use /home
[1177]3723$home = "/export/home" if ($pbos->{'type'} eq "pkg");
[891]3724
3725 print SCRIPT << "EOF";
[320]3726}
3727close(PBFILE);
3728
[891]3729if ( \$found == 0 ) {
3730 if ( ! -d "$home" ) {
3731 pb_mkdir_p("$home");
[320]3732 }
[346]3733EOF
[1179]3734 # TODO: Level of portability of these cmds ? Critical now for RM
[1255]3735 # TODO: Check existence before adding to avoid errors
[353]3736 print SCRIPT << "EOF";
[1051]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'}})");
[427]3739}
[661]3740EOF
[320]3741
[1176]3742 # Copy the content of our local conf file to the VM/VE/RM
[891]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
[1176]3756 if ($vtype =~ /(v|r)m/) {
[661]3757 print SCRIPT << "EOF";
[354]3758# allow ssh entry to build
3759#
[891]3760mkdir "$home/$pbac->{$ENV{'PBPROJ'}}/.ssh",0700;
[347]3761# Allow those accessing root to access the build account
[891]3762copy("\$ENV{'HOME'}/.ssh/authorized_keys","$home/$pbac->{$ENV{'PBPROJ'}}/.ssh/authorized_keys");
[320]3763chmod 0600,".ssh/authorized_keys";
[891]3764pb_system("chown -R $pbac->{$ENV{'PBPROJ'}}:$pbac->{$ENV{'PBPROJ'}} $home/$pbac->{$ENV{'PBPROJ'}}","Finish setting up the account env for $pbac->{$ENV{'PBPROJ'}}");
[320]3765
[346]3766EOF
[661]3767}
[353]3768 print SCRIPT << 'EOF';
[347]3769# No passwd for build account only keys
[320]3770$file="/etc/shadow";
[684]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>) {
[346]3775EOF
[353]3776 print SCRIPT << "EOF";
[684]3777 s/^$pbac->{$ENV{'PBPROJ'}}:\!\!:/$pbac->{$ENV{'PBPROJ'}}:*:/;
3778 s/^$pbac->{$ENV{'PBPROJ'}}:\!:/$pbac->{$ENV{'PBPROJ'}}:*:/; #SLES 9 e.g.
[910]3779 s/^$pbac->{$ENV{'PBPROJ'}}:\\*LK\\*:/$pbac->{$ENV{'PBPROJ'}}:NP:/; #Solaris e.g.
[346]3780EOF
[684]3781 print SCRIPT << 'EOF';
3782 print PBOUT $_;
3783 }
3784 close(PBFILE);
3785 close(PBOUT);
3786 rename("$file.new",$file);
3787 chmod 0640,$file;
3788 }
[320]3789
[1942]3790# TODO: systemd support
[448]3791# Keep the VM in text mode
3792$file="/etc/inittab";
[450]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;
[448]3804}
3805
[320]3806# pb has to be added to portage group on gentoo
3807
[1177]3808# We need to have that pb_distro_get_context function
[888]3809# Get it from Project-Builder::Distribution
[891]3810# And we now need the conf file required for this to work created above
[888]3811
[1177]3812my $pbos = pb_distro_get_context();
3813print "distro tuple: ".Dumper($pbos)."\n";
[891]3814
[346]3815# Adapt sudoers
[888]3816# sudo is not default on Solaris and needs to be installed first
3817# from http://www.sunfreeware.com/programlistsparc10.html#sudo
[1177]3818if ($pbos->{'type'} eq "pkg") {
[888]3819 $file="/usr/local/etc/sudoers";
3820} else {
3821 $file="/etc/sudoers";
3822}
[346]3823open(PBFILE,$file) || die "Unable to open $file";
3824open(PBOUT,"> $file.new") || die "Unable to open $file.new";
3825while (<PBFILE>) {
3826EOF
[1190]3827 # Skip what will be generated
[353]3828 print SCRIPT << "EOF";
[1190]3829 next if (/^$pbac->{$ENV{'PBPROJ'}}\\s+/);
3830 next if (/^Defaults:$pbac->{$ENV{'PBPROJ'}}\\s+/);
[1598]3831 next if (/^Defaults:root\\s+\!requiretty/);
3832 next if (/^Defaults:root\\s+env_keep/);
[346]3833EOF
[353]3834 print SCRIPT << 'EOF';
[1549]3835 s/Defaults\s+requiretty/# disable Defaults: requiretty/;
[346]3836 print PBOUT $_;
3837}
3838close(PBFILE);
3839EOF
[353]3840 print SCRIPT << "EOF";
[1032]3841# Some distro force requiretty at compile time, so disable here
[1952]3842print PBOUT "Defaults:$pbac->{$ENV{'PBPROJ'}} !requiretty\\n";
3843print PBOUT "Defaults:root !requiretty\\n";
[1652]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";
[1179]3848# Keep proxy configuration while using sudo
[1952]3849print PBOUT "Defaults:$pbac->{$ENV{'PBPROJ'}} env_keep += \\\"http_proxy ftp_proxy\\\"\\n";
3850print PBOUT "Defaults:root env_keep += \\\"http_proxy ftp_proxy\\\"\\n";
[1179]3851EOF
[1652]3852 }
[1179]3853 # Try to restrict security to what is really needed
3854 if ($vtype =~ /^vm/) {
[1197]3855 my $hpath = pb_distro_get_param($pbos,pb_conf_get("ospathcmd-halt"));
[1733]3856 my @sudocmds = pb_get_sudocmds($pbos,$ntpline,"sudo $hpath","sudo /bin/date");
[1179]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
[1189]3862 foreach my $c (@sudocmds) {
[1426]3863 print SCRIPT "print PBOUT \"$pbac->{$ENV{'PBPROJ'}} ALL = NOPASSWD: $c\\n\";\n";
[1179]3864 }
3865 } elsif ($vtype =~ /^rm/) {
[1190]3866 my @sudocmds = pb_get_sudocmds($pbos,$ntpline);
[1179]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
[1189]3870 foreach my $c (@sudocmds) {
[1426]3871 print SCRIPT "print PBOUT \"$pbac->{$ENV{'PBPROJ'}} ALL = NOPASSWD: $c\\n\";\n";
[1179]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
[353]3876print PBOUT "$pbac->{$ENV{'PBPROJ'}} ALL=(ALL) NOPASSWD:ALL\n";
[346]3877EOF
[1714]3878 }
[1715]3879 my $sudomode = pb_distro_get_param($pbos,pb_conf_get("ossudoersmode"));
[353]3880 print SCRIPT << 'EOF';
[346]3881close(PBOUT);
3882rename("$file.new",$file);
[1715]3883EOF
3884 print SCRIPT << "EOF";
3885chmod 0$sudomode,\$file;
[346]3886
3887EOF
[891]3888
[1190]3889 if ($vtype =~ /(v|r)m/) {
3890 # Sync date
3891 # do it after sudoers is setup
[1714]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";
[1190]3898 }
[891]3899
3900 print SCRIPT << 'EOF';
[353]3901
[1651]3902# We may need a proxy configuration. Get it from the local env
3903pb_apply_conf_proxy($pbos);
3904
[1109]3905# First install all required packages
[2012]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"));
[1109]3908my ($ospkgdep) = pb_conf_get_if("ospkgdep");
3909
[1177]3910my $pkgdep = pb_distro_get_param($pbos,$ospkgdep);
3911pb_distro_installdeps(undef,$pbos,pb_distro_only_deps_needed($pbos,join(' ',split(/,/,$pkgdep))));
[1109]3912
3913EOF
[1177]3914 my $itype = pb_distro_get_param($pbos,pb_conf_get("pbinstalltype"));
[1176]3915 # Install from sandbox mean a file base install
3916 $itype = "file" if (defined $sbx);
[1132]3917 if ($itype =~ /^file/) {
[1140]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");
[1432]3923 my $pbextdir = pb_get_extdir();
[1140]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
[1459]3930 pb_log(2,"Vertag1: $vertag1\n");
3931 pb_log(2,"Vertag2: $vertag2\n");
[1140]3932 my ($pbver1,$tmp1) = split(/-/,$vertag1);
3933 my ($pbver2,$tmp2) = split(/-/,$vertag2);
[1432]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";
[1140]3935 } else {
[1549]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
[1900]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";
[1140]3941 }
[1109]3942 print SCRIPT << 'EOF';
3943# Then install manually the missing perl modules
3944my ($osperldep,$osperlver) = pb_conf_get_if("osperldep","osperlver");
3945
[1177]3946my $perldep = pb_distro_get_param($pbos,$osperldep);
[1651]3947my $bashopt = "";
3948$bashopt = "-x" if ($pbdebug ge 1);
3949my $verbopt = "mayfail";
3950$verbopt = "mayfailverbose" if ($pbdebug ge 1);
[1109]3951foreach my $m (split(/,/,$perldep)) {
3952 # Skip empty deps
3953 next if ($m =~ /^\s*$/);
3954 my $dir = $m;
3955 $dir =~ s/-.*//;
[1651]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);
[1109]3957}
[1140]3958EOF
[1425]3959 print SCRIPT << 'EOF';
3960pb_system("rm -rf ProjectBuilder-* ; rm -rf project-builder-* ; rm -rf `perl -V:installvendorlib | awk -F\"'\" '{print \$2}'`/ProjectBuilder ;
[1109]3961EOF
[1425]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
[1132]3966 } elsif ($itype =~ /^pkg/) {
[1109]3967 # pkg based install. We need to point to the project-builder.org repository
3968 print SCRIPT << 'EOF';
[1177]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))));
[1109]3972EOF
3973 } else {
3974 # Unknown install type
3975 die("Unknown install type $itype->{$ENV{'PBPROJ'}} for param pbinstalltype");
3976 }
3977 print SCRIPT << 'EOF';
[2093]3978pb_system("pbdistrocheck",undef,"verbose");
[1600]3979pb_system("pb -h",undef,"verbose");
[357]3980EOF
[1903]3981 if ($vtype eq "ve"){
3982 if ($vetype ne "docker") {
[681]3983 print SCRIPT << 'EOF';
3984# For VE we need to umount some FS at the end
3985
[1603]3986pb_system("umount /proc","Unmounting /proc","mayfail");
[1903]3987EOF
3988 }
3989 print SCRIPT << 'EOF';
[696]3990# Create a basic network file if not already there
3991
3992my $nf="/etc/sysconfig/network";
[1551]3993if ((! -f $nf) && ($pbos->{'type'} eq "rpm") && ($pbos->{'family'} ne "novell")) {
[696]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;
[681]4000EOF
4001 }
4002
[1177]4003 # Adds pb_distro_get_context and all functions needed from ProjectBuilder::Distribution, Conf and Base
[1545]4004 foreach my $m ("ProjectBuilder/Base.pm","ProjectBuilder/Distribution.pm","ProjectBuilder/Conf.pm") {
4005 foreach my $d (@INC) {
4006 my $f = "$d/$m";
[405]4007 if (-f "$f") {
[1545]4008 open(PBD,"$f") || die "Unable to open $f: $!";
[405]4009 while (<PBD>) {
[891]4010 next if (/^package/);
4011 next if (/^use Exporter/);
4012 next if (/^use ProjectBuilder::/);
4013 next if (/^our /);
[405]4014 print SCRIPT $_;
4015 }
4016 close(PBD);
[1545]4017 # We just need the first one of each file wrt @INC - hopefully that's the right one.
4018 last;
[353]4019 }
[347]4020 }
4021 }
[1156]4022 # Use a fake pb_version_init version here
4023 print SCRIPT << "EOF";
4024sub pb_version_init {
4025
4026return("$projectbuilderver","$projectbuilderrev");
4027}
40281;
4029EOF
[353]4030 close(SCRIPT);
[1903]4031 chmod 0755,"$pbscript{$v}";
[353]4032
[1143]4033 $pm->finish if (defined $pbparallel);
[347]4034}
[1176]4035$pm->wait_all_children if (defined $pbparallel);
[1550]4036die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
[1903]4037
[1942]4038# These build scripts need to be run as root and force stop of VM at end
4039$ENV{'PBACCOUNT'} = "root";
4040
[1909]4041$sbx = "" if (not defined $sbx);
[1903]4042# Launch the VM/VE/RM
4043pb_log(2,"DEBUG: before parallel launch, pbscript hash is:".Dumper(%pbscript)."\n");
[1958]4044pb_parallel_launchv(\%pbscript,$vtype,uc($vtype)."Script".$sbx,$pbstep,$pbimage,$pbforce,0,$pbsnap);
[1952]4045
[353]4046return;
[346]4047}
4048
[772]4049# Function to create a snapshot named 'pb' for VMs and a compressed tar for VEs
4050sub pb_snap2v {
[748]4051
4052my $vtype = shift;
[1907]4053my $pbstep = 2;
[748]4054
[772]4055my ($vm,$all) = pb_get2v($vtype);
[748]4056
4057# Script generated
[1708]4058my $pbscript = "$ENV{'PBDESTDIR'}/snapv.$$";
[748]4059
[898]4060my ($pbac) = pb_conf_get($vtype."login");
4061
[748]4062foreach my $v (@$vm) {
[1138]4063 if ($vtype eq "ve") {
4064 # Get distro context
[1177]4065 my $pbos = pb_distro_get_context($v);
[1138]4066 my ($vepath) = pb_conf_get("vepath");
[971]4067
[1138]4068 # Test if an existing snapshot exists and remove it if there is a VE
[1177]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");
[1138]4072 }
[971]4073 }
4074
[748]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
[776]4079 sleep 2
[748]4080EOF
4081 close(SCRIPT);
4082 chmod 0755,"$pbscript";
4083
4084 # Force shutdown of VM/VE
4085 # Force snapshot of VM/VE
[1903]4086 pb_script2v($pbscript,$vtype,$pbstep,1,$v,1);
[748]4087}
4088return;
4089}
4090
[1176]4091# Function to update VMs/VEs/RMs with the latest distribution content
[1111]4092sub pb_update2v {
4093
4094my $vtype = shift;
[1903]4095my $pbstep = 2;
[1111]4096
4097my ($vm,$all) = pb_get2v($vtype);
4098
4099# Script generated
[1708]4100my $pbscript = "$ENV{'PBDESTDIR'}/updatev.$$";
[1111]4101
4102my ($pbac) = pb_conf_get($vtype."login");
4103
4104foreach my $v (@$vm) {
4105 # Get distro context
[1177]4106 my $pbos = pb_distro_get_context($v);
[1111]4107
[1176]4108 # Prepare the script to be executed on the VM/VE/RM
[1111]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
[1907]4117 $vetype = pb_ve_get_type($vetype);
[1903]4118 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1179]4119 print SCRIPT "sudo /bin/mount -t proc /proc /proc\n";
[1111]4120 }
[1177]4121 print SCRIPT "$pbos->{'update'}\n";
[1903]4122 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1179]4123 print SCRIPT "sudo /bin/umount /proc\n";
[1111]4124 }
4125 close(SCRIPT);
4126 chmod 0755,"$pbscript";
4127
4128 # Force shutdown of VM except
[1903]4129 pb_script2v($pbscript,$vtype,$pbstep,1,$v);
[1111]4130}
4131return;
4132}
4133
[471]4134sub pb_announce {
4135
[1386]4136 my $antype = shift;
4137
[473]4138 # Get all required parameters
[1686]4139 my ($pbpackager,$pbrepo) = pb_conf_get("pbpackager","pbrepo");
[1392]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 }
[471]4146 my $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
4147 my @pkgs = @$pkg;
4148 my %pkgs;
4149 my $first = 0;
4150
[1282]4151 # Get all distros concerned
4152 my $pbos = pb_distro_get_context();
4153 my $distrolist = pb_get_distros($pbos,undef);
4154 my %dl;
[1386]4155 my %theorlist;
4156 my %archlist;
[1282]4157 foreach my $d (split(/,/,$distrolist)) {
[1386]4158 my ($d1,$d2,$d3) = split(/-/,$d);
[1282]4159 $dl{$d1}++;
4160 }
4161
[473]4162 # Command to find packages on repo
[1282]4163 my $findstr = "find ".join(" ",keys %dl)." ";
[1392]4164 my $srcstr = "";
[473]4165 # Generated announce files
4166 my @files;
[471]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
[547]4184 # TODO: use virtual/real names here now
[1285]4185 my $pbrealpkg = $pbpkg;
4186 my $pbrealpkgrpm = pb_cms_get_real_pkg($pbpkg,"rpm");
4187 my $pbrealpkgdeb = pb_cms_get_real_pkg($pbpkg,"deb");
[1392]4188 if ($antype eq "Clean") {
[1432]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;
[1728]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\' ";
[1393]4195 $srcstr .= "src/$pbrealpkg-$pbver.tar.gz src/$pbrealpkg-$pbver.pbconf.tar.gz ";
[1392]4196 } else {
[1703]4197 # "Announce" and "Check"
[1420]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
[1703]4200 my $nver;
4201 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
[1432]4202 $pbtag = "0";
4203 my $ntag .= strftime("%Y%m%d*", @date);
[2085]4204 $nver = $pbver."_p$ntag*";
4205 $pbver .= "$ntag*";
[1703]4206 } else {
4207 $nver = $pbver."-r$pbtag";
[1432]4208 }
[1728]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\' ";
[1392]4210 }
[473]4211
[1386]4212 if ($antype eq "Announce") {
4213 my $chglog;
[473]4214
[1386]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);
[473]4220
[1386]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;
[1432]4227 $pb->{'extdir'} = pb_get_extdir();
[1386]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");
[1392]4237 } elsif ($antype eq "Check") {
[1386]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;
[1420]4245 # TODO are we always using the last arch ?
[1386]4246 $archlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkgdeb"."_$pbver-$pbtag"} = "$pbos->{'arch'}";
4247 } elsif ($pbos->{'type'} eq "ebuild") {
[1424]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'}";
[1386]4252 } elsif ($pbos->{'type'} eq "pkg") {
[1728]4253 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}/$pbrealpkg-$pbver-$pbtag.pkg.gz"} = 0;
[1386]4254 } else {
4255 pb_log(1,"No theoritical list possible for type $pbos->{'type'}\n");
4256 }
4257 }
4258 }
[1780]4259 pb_log(2,"theorlist initial: ".Dumper(%theorlist)."\n");
4260 pb_log(2,"archlist: ".Dumper(%archlist)."\n");
[471]4261 }
[1392]4262 if ($antype eq "Announce") {
4263 $findstr .= " | grep -Ev \'src.rpm\'";
4264 } elsif ($antype eq "Clean") {
4265 $findstr .= " | xargs rm -f -v $srcstr ";
4266 }
[471]4267
4268 # Prepare the command to run and execute it
4269 open(PBS,"> $ENV{'PBTMP'}/pbscript") || die "Unable to create $ENV{'PBTMP'}/pbscript";
[1392]4270 print PBS "#!/bin/bash\n";
[1282]4271 print PBS "set -x\n" if ($pbdebug gt 1);
[1295]4272 print PBS "$findstr | sort 2> /dev/null\n";
[471]4273 close(PBS);
4274 chmod 0755,"$ENV{'PBTMP'}/pbscript";
[1903]4275 pb_send2target("Announce","$ENV{'PBTMP'}/pbscript");
[471]4276
[490]4277 my $sl = "Project $ENV{'PBPROJ'} version $ENV{'PBPROJVER'} is now available";
[1386]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 !~ /^$/);
[490]4284
[1386]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";
[490]4288$sl</p>
[471]4289
[473]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>
[471]4291<p>
4292Now available at <a href="$pbrepo->{$ENV{'PBPROJ'}}">$pbrepo->{$ENV{'PBPROJ'}}</a>
4293</p>
4294<p>
4295EOF
[1386]4296 }
4297
[1137]4298 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to read $ENV{'PBTMP'}/system.$$.log: $!";
[1386]4299 if ($antype eq "Announce") {
4300 my $col = 2;
4301 my $i = 1;
4302 print ANN << 'EOF';
[1440]4303<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
[473]4304<TR>
4305EOF
[1386]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 }
[473]4313 }
[1393]4314 } elsif ($antype eq "Clean") {
4315 while (<LOG>) {
4316 # skip errors
4317 next if ($_ !~ /^removed /);
4318 pb_log(0,"$_");
4319 }
[1386]4320 } else {
[1703]4321 # In "Check" mode we need to compare the 2 lists (real and theoritical)
[1386]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$//;
[1703]4329 $p =~ s/_(i[3456]86|amd64|all)\.deb$//;
[1424]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));
[1386]4332 $theorlist{$p} = -2 if (not defined $theorlist{$p});
4333 $theorlist{$p} = $theorlist{$p} + 1;
4334 }
[1780]4335 pb_log(2,"theorlist after check: ".Dumper(%theorlist)."\n");
[471]4336 }
4337 close(LOG);
[1386]4338
[1393]4339 # Nothing more for the cleanssh case
4340 return if ($antype eq "Clean");
4341
[1386]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 {
[1420]4354 pb_log(2,"Analyzing $t\n");
[1386]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
[1780]4360 $arch = $archlist{$t} if (defined $archlist{$t});
[1386]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"});
[1728]4378
4379 pb_log(2,"Searching in excl $excl\n");
[1386]4380 foreach my $ex (split(/,/,$excl)) {
4381 $found = 1 if ("$os-$ver-$arch" =~ /^$ex/);
4382 }
4383 # Skip as excluded
4384 next if ($found == 1);
[1388]4385 pb_log(0,"Package NOT found for $t\n");
4386 # Avoid duplicates in list
[1386]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 "");
[1388]4393 $vmbuildlist .= ",$os-$ver-$arch" if ($vmbuildlist !~ /$os-$ver-$arch/);
4394 next;
[1386]4395 }
4396 if ((defined $pt[1]->{$ENV{'PBPROJ'}}) and ($pt[1]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4397 $vebuildlist = "$os-$ver-$arch" if ($vebuildlist eq "");
[1388]4398 $vebuildlist .= ",$os-$ver-$arch" if ($vebuildlist !~ /$os-$ver-$arch/);
4399 next;
[1386]4400 }
4401 if ((defined $pt[2]->{$ENV{'PBPROJ'}}) and ($pt[2]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4402 $rmbuildlist = "$os-$ver-$arch" if ($rmbuildlist eq "");
[1388]4403 $rmbuildlist .= ",$os-$ver-$arch" if ($rmbuildlist !~ /$os-$ver-$arch/);
[1386]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
[473]4427 print ANN << "EOF";
4428</TR>
4429</TABLE>
4430</p>
[471]4431
[473]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";
[471]4449 close(ANN);
[473]4450
4451 # Allow for modification
[974]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");
[473]4455
4456 # Store it in DB for external usage (Web pages generation)
[1870]4457 my $dbh = pb_connect_db();
[473]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,?,?)})
[1870]4467 || die "Unable to insert into db";
[473]4468 $sth->execute($pbdate, $announce);
[698]4469 $sth->finish();
[473]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
[477]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
[1134]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 {
[1686]4512 my ($pbml,$pbsmtp) = pb_conf_get("pbml","pbsmtp");
[1134]4513 my %mail = (
[477]4514 To => $pbml->{$ENV{'PBPROJ'}},
4515 From => $pbpackager->{$ENV{'PBPROJ'}},
4516 Smtp => $pbsmtp->{$ENV{'PBPROJ'}},
4517 Body => $msg,
[490]4518 Subject => "[ANNOUNCE] $sl",
[477]4519 );
4520
[1134]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 }
[1109]4526 }
4527 }
[471]4528}
4529
[547]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
[556]4536 my $dest = shift || $ENV{'PBTMP'};
4537
[547]4538 # Get all required parameters
[1064]4539 my ($pkgv, $pkgt) = pb_conf_get_if("pkgver","pkgtag");
[547]4540
4541
[1870]4542 my $dbh = pb_connect_db();
[547]4543 # For date handling
4544 $ENV{LANGUAGE}="C";
[559]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");
[547]4548 my $all = $dbh->selectall_arrayref("SELECT id,date,announce FROM announces ORDER BY date DESC");
[556]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
[547]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;
[559]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);
[556]4561 $news{"fp"} = $news{"fp"}."<p><B>$date</B> $announce\n" if ($cpt > 0);
[547]4562 $cpt--;
4563 }
[556]4564 pb_log(1,"news{fp}: ".$news{"fp"}."\n");
[547]4565 $dbh->disconnect;
[556]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 }
[547]4573}
4574
[1870]4575sub pb_connect_db {
[556]4576
[1870]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])";
[1875]4583 # we should add the $db to the VCS as well here
[1870]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
[347]4600# Return the SSH key file to use
4601# Potentially create it if needed
4602
4603sub pb_ssh_get {
4604
[2049]4605my $create = shift || 0; # Do not create keys by default. In that case prefer native keys, not pb's ones
[2045]4606my $target = shift || "localhost";
4607my $nport = shift || "22";
[347]4608
[1545]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
[347]4613# Check the SSH environment
4614my $keyfile = undef;
4615
[2045]4616# Check whether ecdsa is accepted by the remote host
4617my $ecdsa = 0;
[2047]4618my $dsa = 0;
[2046]4619open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target 2>/dev/null |") || pb_log(0,"Unable to check ECDSA support for $target");
[2045]4620while(<SCAN>) {
4621 $ecdsa = 1 if ($_ =~ /ecdsa-/);
[2049]4622 pb_log(2,"Found ECDSA support on $target ($nport)\n");
[2045]4623}
4624close(SCAN);
4625
[2047]4626open(SCAN,"ssh-keyscan -p $nport -t dsa $target 2>/dev/null |") || pb_log(0,"Unable to check DSA support for $target");
4627while(<SCAN>) {
[2052]4628 $dsa = 1 if ($_ =~ /ssh-dss/);
[2049]4629 pb_log(2,"Found DSA support on $target ($nport)\n");
[2047]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)) {
[2035]4637 # ecdsa may not be supported if old ssh
[2047]4638 pb_system("ssh-keygen -q -b 1024 -N '' -f $ENV{'HOME'}/.ssh/pb_dsa -t dsa","Generating DSA SSH keys for pb");
[2035]4639 }
[347]4640}
4641
[2047]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) {
[2049]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));
[2047]4647 $keyfile = "$ENV{'HOME'}/.ssh/pb_dsa" if (-s "$ENV{'HOME'}/.ssh/pb_dsa");
4648} else {
[2049]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));
[2047]4651 $keyfile = "$ENV{'HOME'}/.ssh/pb_ecdsa" if ((-s "$ENV{'HOME'}/.ssh/pb_ecdsa") && ($ecdsa != 0));
4652}
[2053]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}
[347]4658return($keyfile);
4659}
4660
4661
[1728]4662# Returns the pid of a running VM command using a specific VM file, and the port used if the VM exists
[142]4663sub pb_check_ps {
4664 my $vmcmd = shift;
4665 my $vmm = shift;
[1903]4666 my $vexist = 0; # FALSE by default
[1728]4667 my $vmport = undef; # NONE by default
[142]4668
4669 open(PS, "ps auxhww|") || die "Unable to call ps";
4670 while (<PS>) {
4671 next if (! /$vmcmd/);
4672 next if (! /$vmm/);
[1786]4673 my $void1;
[1903]4674 ($void1, $vexist, $vmport) = split(/ +/,$_,3);
[1728]4675 pb_log(2,"pb_check_ps $vmport\n");
[1786]4676 $vmport =~ s/.*=tcp:127\.0\.0\.1:([0-9]+)-:22.*/$1/;
[1728]4677 chomp($vmport);
[1903]4678 pb_log(2,"pb_check_ps found a VM $vexist using port $vmport\n");
[142]4679 last;
4680 }
[1903]4681 return($vexist,$vmport);
[142]4682}
4683
4684
[77]4685sub pb_extract_build_files {
[25]4686
4687my $src=shift;
4688my $dir=shift;
[26]4689my $ddir=shift;
[500]4690my $mandatory=shift || "spec";
[25]4691
[1219]4692my $flag = "mayfail" if (($mandatory eq "patch") || ($mandatory eq "src"));
[500]4693my $res;
4694
[188]4695if ($src =~ /tar\.gz$/) {
[500]4696 $res = pb_system("tar xfpz $src $dir","Extracting $mandatory files from $src",$flag);
[188]4697} elsif ($src =~ /tar\.bz2$/) {
[500]4698 $res = pb_system("tar xfpj $src $dir","Extracting $mandatory files from $src",$flag);
[188]4699} else {
4700 die "Unknown compression algorithm for $src";
4701}
[500]4702# If not mandatory return now
[1220]4703return() if (($res != 0) and (($mandatory eq "patch") || ($mandatory eq "src")));
[1963]4704return(pb_move_extracted_files($dir,$ddir));
4705}
4706
4707sub pb_move_extracted_files {
4708
4709my $dir = shift;
4710my $ddir = shift;
4711my @files;
4712
[1970]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)) {
[25]4718 next if ($f =~ /^\./);
[500]4719 # Skip potential patch dir
4720 next if ($f =~ /^pbpatch/);
[1219]4721 # Skip potential source dir
4722 next if ($f =~ /^pbsrc/);
[1480]4723 # Skip potential backup files
4724 next if ($f =~ /~$/);
[1963]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 }
[25]4734}
[1970]4735closedir($bdir);
[26]4736# Not enough but still a first cleanup
[74]4737pb_rm_rf("$dir");
[28]4738return(@files);
[25]4739}
4740
[315]4741sub pb_list_bfiles {
4742
4743my $dir = shift;
4744my $pbpkg = shift;
4745my $bfiles = shift;
4746my $pkgfiles = shift;
4747my $supfiles = shift;
[1363]4748# subdir to keep if recursive mode, empty by default
4749my $subdir = shift || "";
[1367]4750# In a recursive function , we need a local var as DIR handle
4751my $bdir;
[315]4752
[1363]4753pb_log(2,"DEBUG: entering pb_list_bfiles in $dir: ".Dumper($bfiles)."\n");
[1367]4754opendir($bdir,"$dir") || die "Unable to open dir $dir: $!";
4755foreach my $f (readdir($bdir)) {
[1363]4756 pb_log(3,"DEBUG: pb_list_bfiles found $f\n");
[315]4757 next if ($f =~ /^\./);
[1363]4758 if (-d "$dir/$f") {
[1098]4759 # Recurse for directories (Debian 3.0 format e.g.)
[1363]4760 pb_log(2,"DEBUG: pb_list_bfiles recurse in $dir/$f\n");
4761 pb_list_bfiles("$dir/$f",$pbpkg,$bfiles,$pkgfiles,$supfiles,$f);
[1098]4762 next;
4763 }
[1363]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'}~~;
[315]4770 if (defined $supfiles->{$pbpkg}) {
[1363]4771 $pkgfiles->{$key} = "$dir/$f" if ($f =~ /$supfiles->{$pbpkg}/);
[315]4772 }
4773}
[1367]4774closedir($bdir);
[1185]4775pb_log(2,"DEBUG: exiting pb_list_bfiles: ".Dumper($bfiles)."\n");
[315]4776}
4777
[1552]4778sub pb_add_comma {
[1185]4779
4780my $str = shift;
4781my $addstr = shift;
4782
4783$str .= "," if (defined $str);
4784$str .= $addstr;
4785return($str);
4786}
4787
[1130]4788sub pb_list_sfiles {
[395]4789
[1130]4790my $sdir = shift;
[1185]4791my $ptr = shift;
[1177]4792my $pbos = shift;
[1130]4793my $extdir = shift;
4794
[1185]4795pb_log(2,"DEBUG: entering pb_list_sfiles: ".Dumper($ptr)."\n");
4796my $key = "$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
4797
[1130]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/*>)) {
[1552]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'}$/));
[1130]4802}
4803
4804# Prepare also remote sources to be included - Applied after the local ones
[1185]4805foreach my $p ("all","$pbos->{'os'}","$pbos->{'type'}","$pbos->{'family'}","$pbos->{'name'}","$pbos->{'name'}-$pbos->{'version'}","$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}") {
[1130]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();
[1552]4814 $ptr->{$key} = pb_add_comma($ptr->{$key},"$_");
[1130]4815 }
4816 close(PATCH);
4817}
[1185]4818pb_log(2,"DEBUG: exiting pb_list_sfiles: ".Dumper($ptr)."\n");
[1186]4819return($ptr);
[1130]4820}
4821
[395]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
[1621]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
[395]4832my ($var) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
[1621]4833@pkgs = keys %$var if (defined $var);
[395]4834
[1621]4835pb_log(0,"Packages: ".join(',',@pkgs)."\n") if (@pkgs);
[395]4836return(\@pkgs);
4837}
4838
[1176]4839# Manages VM/RM SSH port communication
[1143]4840sub pb_get_port {
4841
4842my $port = shift;
[1179]4843my $pbos = shift;
[1143]4844my $cmt = shift;
[1179]4845my $nport;
[1143]4846
4847die "No port passed in parameter. Report to dev team\n" if (not defined $port);
[1179]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");
[1728]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
[1942]4859 $nport = $nport + $ENV{'PBVMPORT'} -1 if ((defined $pbparallel) && (defined $ENV{'PBVMPORT'}));
[1143]4860}
[1146]4861pb_log(2,"pb_get_port returns $nport\n");
[1143]4862return($nport);
4863}
4864
4865sub pb_set_port {
4866
4867my ($pid,$ident) = @_;
[1146]4868pb_log(2,"pb_set_port for VM ($pid), id $ident\n");
[1143]4869$ENV{'PBVMPORT'} = $ident;
[1146]4870pb_log(2,"pb_set_port sets PBVMPORT in env to $ENV{'PBVMPORT'}\n");
[1143]4871}
4872
4873sub pb_set_parallel {
4874
4875my $vtype = shift;
4876
[1146]4877pb_log(2,"pb_set_parallel vtype: $vtype\n");
[1143]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 ($@) {
[1153]4886 # Linux::SysInfo not found
[1388]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");
[1143]4888 } else {
4889 # Using the memory size
4890 my $si = Linux::SysInfo::sysinfo();
4891 if (not defined $si) {
[1388]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");
[1143]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;
[1153]4897 my ($vmmem) = pb_conf_get_if("vmmem");
[1146]4898
[1153]4899 my $v = "default";
4900 if ((defined $vmmem) and (defined $vmmem->{$v})) {
4901 $ram2 = $vmmem->{$v};
[1143]4902 } else {
4903 # Default for KVM/QEMU
4904 $ram2 = 128;
4905 }
4906 $pbparallel = sprintf("%d",$ram/$ram2);
4907 }
[1153]4908 pb_log(1,"Using $pbparallel processes at a time\n");
[1143]4909 }
4910}
[1176]4911pb_log(2,"pb_set_parallel returns: $pbparallel\n") if (defined $pbparallel);
[1143]4912return($pbparallel);
4913}
4914
[1179]4915sub pb_get_sudocmds {
4916
4917my $pbos = shift;
[1714]4918my @cmds = @_;
[1190]4919my %sudocmds;
[1143]4920
[1714]4921pb_log(2,"pb_get_sudocmds entering with lines:".Dumper(@cmds)."\n");
4922foreach my $c (split(/;/,$pbos->{'update'}),split(/;/,$pbos->{'install'}),@cmds) {
[1198]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+//;
[1192]4927 # keep only the command, not the params
4928 $c =~ s/([^\s]+)\s.*$/$1/;
[1190]4929 $sudocmds{$c} = "";
[1179]4930}
[1198]4931pb_log(2,"pb_get_sudocmds returns ".Dumper(keys %sudocmds)."\n");
[1190]4932return(keys %sudocmds);
[1179]4933}
4934
[2106]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");
[2122]4950 return(undef);
[2106]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
[2122]4969# Cf: http://wiki.debian.org/SecureApt
4970
[2106]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
[1278]4999sub pb_sign_pkgs {
[1179]5000
[1278]5001my $pbos = shift;
5002my $made = shift;
5003
5004pb_log(2,"entering pb_sign_pkg: $made ".Dumper($pbos)."\n");
[1279]5005# Remove extra spaces
5006$made =~ s/\s+/ /g;
5007$made =~ s/^\s//g;
5008$made =~ s/\s$//g;
5009
[1278]5010if ($pbos->{'type'} eq "rpm") {
[2106]5011 my $sign = pb_sign_setenv();
[2122]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 }
[1278]5017} elsif ($pbos->{'type'} eq "deb") {
[1279]5018 my $changes = "";
5019 foreach my $c (split(/ /,$made)) {
[1537]5020 $changes .= " $ENV{'PBBUILDDIR'}/$c" if (($c =~ /\.changes$/) && (-f "$ENV{PBBUILDDIR}/$c"));
[1279]5021 }
[1386]5022 my $debsigncmd = pb_check_req("debsign",1);
[1595]5023 pb_system("$debsigncmd -m\'$ENV{'PBPACKAGER'}\' $changes","Signing DEB packages","mayfail") if (($changes ne "") && (defined $debsigncmd));
[1278]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");
[1279]5026}
[1278]5027pb_log(2,"exiting pb_sign_pkg\n");
5028}
5029
[1917]5030# return list of all distributions supported, comma separated
[1282]5031sub pb_get_distros {
5032
5033my $pbos = shift;
5034my $pbtarget = shift;
5035
[1553]5036my @dists = ("$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}");
[1282]5037
5038# Get list of distributions for which we need to generate build files if no target
[1402]5039if (not defined $pbtarget) {
[1282]5040 my @pt = pb_conf_get_if("vmlist","velist","rmlist");
[1552]5041 foreach my $pt (@pt) {
5042 push(@dists, split(/,/, $pt->{$ENV{PBPROJ}})) if defined $pt->{$ENV{PBPROJ}};
[1282]5043 }
[1552]5044 # remove any whitespace
5045 grep(s/\s+//go, @dists);
[1282]5046}
[1552]5047return(join(",",@dists));
[1282]5048}
5049
[1907]5050sub pb_get_extdir {
[1432]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};
[1459]5058 # In case we have an empty field, empty it completely
5059 pb_log(2,"pbextdir: ***$pbextdir***\n");
5060 $pbextdir =~ s/^\s*$//;
[1432]5061 }
[1459]5062 pb_log(2,"pbextdir: ***$pbextdir***\n");
[1432]5063 return($pbextdir);
5064}
5065
[1907]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
[1952]5102sub pb_ssh_setup {
5103
5104my $vtype = shift;
5105my $nport = shift;
[1907]5106
[1952]5107my $keyfile;
5108my $vmhost;
5109
[2049]5110pb_log(1,"Entering pb_ssh_setup\n");
[1952]5111($vmhost) = pb_conf_get($vtype."host");
5112# Prepare the key to be used and transfered remotely
[2045]5113$keyfile = pb_ssh_get(1,$vmhost->{$ENV{'PBPROJ'}},$nport);
[2053]5114return if (not defined $keyfile);
[1952]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
[2045]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");
[1952]5149return;
5150}
5151
[2106]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
[395]51741;
Note: See TracBrowser for help on using the repository browser.