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

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

Start coding a sbx2docker action WIP

  • Property svn:executable set to *
File size: 176.4 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'}) {
[1583]741 pb_syntax(0,$opts{'h'}-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
1671 pb_log(0,"INFO: ------ Starting to build package ------\n");
1672 # Get the running distro to build on
1673 my $pbos = pb_distro_get_context();
1674
1675 # Get list of packages to build
1676 my $ptr = pb_get_pkg();
1677 @pkgs = @$ptr;
1678
[898]1679 # Get content saved in cms2build
[353]1680 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
[83]1681 $pkg = { } if (not defined $pkg);
[1432]1682 my $pbextdir = pb_get_extdir();
[83]1683
[1212]1684 pb_mkdir_p("$ENV{'PBBUILDDIR'}") if (! -d "$ENV{'PBBUILDDIR'}");
[1208]1685 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
[126]1686 my $made = ""; # pkgs made during build
[1176]1687 my $pm;
[1545]1688 my $all_ok = 1;
[1137]1689
[1545]1690 if (defined $pbparallel) {
1691 $pm = new Parallel::ForkManager($pbparallel);
1692 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
1693 $all_ok = 0 unless (($code == 0) && ($signal == 0) && ($dump == 0)); });
1694 }
1695
[1137]1696 # We need to communicate info back from the children if parallel so prepare a dir for that
1697 my $tmpd = "$ENV{'PBTMP'}/build.$$";
1698 pb_mkdir_p($tmpd) if (defined $pbparallel);
1699
[1851]1700 # Do it here as this doesn't work in // mode as it dies if it fails
[1597]1701 if ($pbos->{'type'} eq "rpm") {
1702 foreach my $d ('RPMS','SRPMS','SPECS','SOURCES','BUILD') {
1703 if (! -d "$ENV{'PBBUILDDIR'}/$d") {
1704 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$d");
1705 }
1706 }
1707 }
1708
[27]1709 foreach my $pbpkg (@pkgs) {
[1137]1710 $pm->start and next if (defined $pbparallel);
1711
[88]1712 my $vertag = $pkg->{$pbpkg};
[1459]1713 pb_log(2,"Vertag: $vertag\n");
[77]1714 # get the version of the current package - maybe different
1715 ($pbver,$pbtag) = split(/-/,$vertag);
1716
[1432]1717 my $src="$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz";
1718 my $src2="$ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz";
[315]1719 pb_log(2,"Source file: $src\n");
[493]1720 pb_log(2,"Pbconf file: $src2\n");
[25]1721
[315]1722 pb_log(2,"Working directory: $ENV{'PBBUILDDIR'}\n");
[1177]1723 if ($pbos->{'type'} eq "rpm") {
[315]1724 # Remove in case a previous link/file was there
[301]1725 unlink "$ENV{'PBBUILDDIR'}/SOURCES/".basename($src);
[188]1726 symlink "$src","$ENV{'PBBUILDDIR'}/SOURCES/".basename($src) || die "Unable to symlink $src in $ENV{'PBBUILDDIR'}/SOURCES";
[25]1727 # We need to first extract the spec file
[1432]1728 my @specfile = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/","$ENV{'PBBUILDDIR'}/SPECS","spec");
[25]1729
[493]1730 # We need to handle potential patches to upstream sources
[1432]1731 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","$ENV{'PBBUILDDIR'}/SOURCES","patch");
[493]1732
[1219]1733 # We need to handle potential additional sources to upstream sources
[1432]1734 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}/SOURCES","src");
[1219]1735
[315]1736 pb_log(2,"specfile: ".Dumper(\@specfile)."\n");
[25]1737 # set LANGUAGE to check for correct log messages
1738 $ENV{'LANGUAGE'}="C";
[459]1739 # Older Redhat use _target_platform in %configure incorrectly
1740 my $specialdef = "";
[1652]1741 if (($pbos->{'name'} eq "rhel") && ($pbos->{'version'} eq "2.1")) {
[459]1742 $specialdef = "--define \'_target_platform \"\"\'";
1743 }
[1652]1744 my $buildcmd = "rpmbuild";
1745 if (($pbos->{'name'} eq "redhat") && ($pbos->{'version'} =~ /^6/)){
1746 $buildcmd = "rpm" ;
1747 }
[702]1748
[28]1749 foreach my $f (@specfile) {
1750 if ($f =~ /\.spec$/) {
[1652]1751 pb_system("$buildcmd $specialdef --define \"packager $ENV{'PBPACKAGER'}\" --define \"_topdir $ENV{'PBBUILDDIR'}\" -ba $f","Building package with $f under $ENV{'PBBUILDDIR'}","verbose");
[28]1752 last;
1753 }
1754 }
[540]1755 # Get the name of the generated packages
[1137]1756 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
[540]1757 while (<LOG>) {
[572]1758 chomp($_);
[540]1759 next if ($_ !~ /^Wrote:/);
1760 s|.*/([S]*RPMS.*)|$1|;
[572]1761 $made .=" $_";
[540]1762 }
[541]1763 close(LOG);
[540]1764
[1177]1765 } elsif ($pbos->{'type'} eq "deb") {
[274]1766 pb_system("tar xfz $src","Extracting sources");
[493]1767 pb_system("tar xfz $src2","Extracting pbconf");
[149]1768
[1432]1769 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[310]1770 pb_rm_rf("debian");
[1546]1771 my $confdir = "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
[1548]1772 die "Configuration directory $confdir is not a directory\nIs os description listed in your {ve,vm,rm}list values?" if (not -d $confdir);
[1546]1773 symlink "$confdir","debian" || die "Unable to symlink 'debian' to $confdir";
[199]1774 chmod 0755,"debian/rules";
[544]1775
[1359]1776 # We need to handle potential patches to upstream sources
[1363]1777 pb_mkdir_p("debian/patches");
[1432]1778 my @f = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","debian/patches","patch");
[1363]1779
[1367]1780 # By default we use format 1.0 - Cf man dpkg-source
1781 my $debsrcfmt = "1.0";
1782 my $debsrcfile = "debian/source/format";
1783 if (-f $debsrcfile) {
1784 $debsrcfmt = pb_get_content($debsrcfile);
1785 }
[1546]1786
[1367]1787 if ($debsrcfmt =~ /^3.*quilt/) {
1788 # If we use quilt to manage patches, we then setup the env correctly
1789 # as per http://pkg-perl.alioth.debian.org/howto/quilt.html
1790 # Generate Debian patch series for quilt
1791 open(SERIE,"> debian/patches/series") || die "Unable to write in debian/patches/series";
1792 $ENV{'QUILT_PATCHES'}="debian/patches";
1793 } else {
1794 # If we use dpatch to manage patches, we then setup the 00list file as well
1795 open(SERIE,"> debian/patches/00list") || die "Unable to write in debian/patches/00list";
1796 }
[1363]1797 foreach my $f (sort @f) {
[1367]1798 # Skip the script made to apply the patches to the Debian tree
1799 next if ($f =~ /pbapplypatch/);
1800 # We also need to uncompress them
1801 pb_system("gzip -d $f","","quiet");
1802 $f =~ s/\.gz$//;
[1359]1803 print SERIE "$f\n";
1804 }
1805 close(SERIE);
[1367]1806 if (@f) {
[1432]1807 # We have patches...
[1537]1808 my $patch_file = "debian/patches/pbapplypatch";
1809 if (($debsrcfmt =~ /^1.*/) && (-x $patch_file)) {
[1432]1810 # In that case we need to apply the patches ourselves locally
[1537]1811 pb_system("cat $patch_file","APPLY","verbose");
1812 pb_system("$patch_file","Applying patches to $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'} tree");
[1432]1813 }
1814 # ...so modify the name of files to be Debian compliant
1815 move("../$src","../$pbpkg-$pbver$pbextdir.orig.tar.gz");
[1367]1816 }
[1359]1817
1818 # We need to handle potential additional sources to upstream sources
[1432]1819 #pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}/debian","src");
[1359]1820
[544]1821 pb_system("dpkg-buildpackage -us -uc -rfakeroot","Building package","verbose");
[1597]1822
[544]1823 # Get the name of the generated packages
[1137]1824 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
[544]1825 while (<LOG>) {
1826 chomp();
[1597]1827 pb_log(3,"In loop: $_\n");
[1631]1828 next unless (/^dpkg-deb.*\.\.\/(.*_.*\.deb).*/);
[1597]1829 my $tmp = $1;
1830 #doesn't work in my case
1831 #die "Missing file $tmp" if (not -f "../$tmp");
[1545]1832 $made = "$made $tmp";
[448]1833 }
[544]1834 close(LOG);
[1597]1835 pb_log(2,"Now made is: $made\n");
1836
1837 open(CTRL,"debian/control") || die "Unable to open debian/control: $!";
[1545]1838 while (<CTRL>) {
[1597]1839 pb_log(3,"In loop: $_\n");
[1545]1840 next unless (/^Source: (\S+)/o);
[1597]1841 my $tmp = $1;
[1604]1842 $made = "$made $tmp"."_*.dsc $tmp"."_*.tar.gz $tmp"."_*.changes";
[1597]1843 #doesn't work in my case
1844 #foreach my $glob (("$1\_*.changes", "$1\_*.dsc", "$1\_*.tar.gz")) {
1845 #my @file = glob($glob);
1846 #die "Missing file for $glob" unless (@file > 0);
1847 #die "Too many files for $glob" if (@file > 1);
1848 #die "Missing file $file[0]" if (not -f $file[0]);
1849 #$made .= " $file[0]";
1850 #}
[1545]1851 }
1852 close(CTRL);
[1597]1853 #pb_display_file("$ENV{'PBTMP'}/system.$$.log");
1854 pb_log(2,"Finally made is: $made\n");
[1545]1855
[1234]1856 chdir ".." || die "Unable to chdir to parent dir";
[1597]1857 pb_rm_rf("$pbpkg-$pbver$pbextdir");
[1177]1858 } elsif ($pbos->{'type'} eq "ebuild") {
[149]1859 my @ebuildfile;
1860 # For gentoo we need to take pb as subsystem name
[295]1861 # We put every apps here under sys-apps. hope it's correct
[435]1862 # We use pb's home dir in order to have a single OVERLAY line
[1185]1863 my $tmpe = "$ENV{'HOME'}/portage/pb/sys-apps/$pbpkg";
1864 pb_mkdir_p($tmpe) if (! -d "$tmpe");
[295]1865 pb_mkdir_p("$ENV{'HOME'}/portage/distfiles") if (! -d "$ENV{'HOME'}/portage/distfiles");
[149]1866
[295]1867 # We need to first extract the ebuild file
[1432]1868 @ebuildfile = pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/","$tmpe","ebuild");
[149]1869
1870 # Prepare the build env for gentoo
1871 my $found = 0;
[295]1872 my $pbbd = $ENV{'HOME'};
[150]1873 $pbbd =~ s|/|\\/|g;
[295]1874 if (-r "/etc/make.conf") {
1875 open(MAKE,"/etc/make.conf");
1876 while (<MAKE>) {
1877 $found = 1 if (/$pbbd\/portage/);
1878 }
1879 close(MAKE);
[149]1880 }
1881 if ($found == 0) {
[295]1882 pb_system("sudo sh -c 'echo PORTDIR_OVERLAY=\"$ENV{'HOME'}/portage\" >> /etc/make.conf'");
[149]1883 }
[295]1884 #$found = 0;
1885 #if (-r "/etc/portage/package.keywords") {
1886 #open(KEYW,"/etc/portage/package.keywords");
1887 #while (<KEYW>) {
1888 #$found = 1 if (/portage\/pb/);
1889 #}
1890 #close(KEYW);
1891 #}
1892 #if ($found == 0) {
1893 #pb_system("sudo sh -c \"echo portage/pb >> /etc/portage/package.keywords\"");
1894 #}
[149]1895
1896 # Build
1897 foreach my $f (@ebuildfile) {
1898 if ($f =~ /\.ebuild$/) {
[1185]1899 move($f,"$tmpe/$pbpkg-$pbver.ebuild");
1900 pb_system("cd $tmpe ; ebuild $pbpkg-$pbver.ebuild clean ; ebuild $pbpkg-$pbver.ebuild digest ; ebuild $pbpkg-$pbver.ebuild package","verbose");
[295]1901 # Now move it where pb expects it
1902 pb_mkdir_p("$ENV{'PBBUILDDIR'}/portage/pb/sys-apps/$pbpkg");
[1432]1903 if ($pbtag eq 0) {
1904 # This is assumed to be a test version
1905 my $nver = substr($pbver,0,-14);
1906 my $ntag = substr($pbver,-14);
1907 my $ebtg = "portage/pb/sys-apps/$pbpkg/$pbpkg-$nver"."_p$ntag.ebuild";
1908 move("$tmpe/$pbpkg-$pbver.ebuild","$ENV{'PBBUILDDIR'}/$ebtg");
1909 $made="$made $ebtg";
[1174]1910 } else {
[1432]1911 my $ebtg = "portage/pb/sys-apps/$pbpkg/$pbpkg-$pbver-r$pbtag.ebuild";
1912 move("$tmpe/$pbpkg-$pbver.ebuild","$ENV{'PBBUILDDIR'}/$ebtg");
1913 $made="$made $ebtg";
[1174]1914 }
[149]1915 }
1916 }
1917
[1177]1918 } elsif ($pbos->{'type'} eq "tgz") {
[437]1919 # Slackware family
[435]1920 $made="$made $pbpkg/$pbpkg-$pbver-*-$pbtag.tgz";
1921
1922 pb_system("tar xfz $src","Extracting sources");
[493]1923 pb_system("tar xfz $src2","Extracting pbconf");
[1432]1924 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[1177]1925 symlink "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}","install" || die "Unable to symlink to pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
[435]1926 if (-x "install/pbslack") {
[872]1927 pb_system("./install/pbslack","Building software");
[529]1928 pb_system("sudo /sbin/makepkg -p -l y -c y $pbpkg","Packaging $pbpkg","verbose");
[435]1929 }
[1234]1930 chdir ".." || die "Unable to chdir to parent dir";
[1432]1931 pb_rm_rf("$pbpkg-$pbver$pbextdir");
[1177]1932 } elsif ($pbos->{'type'} eq "pkg") {
[872]1933 # Solaris
[916]1934 $made="$made $pbpkg-$pbver-$pbtag.pkg.gz";
[873]1935 my $pkgdestdir="$ENV{'PBBUILDDIR'}/install";
[872]1936
1937 # Will host resulting packages
[1177]1938 pb_mkdir_p("$pbos->{'type'}");
[2084]1939 pb_mkdir_p("$pkgdestdir/pbdelivery");
[873]1940 pb_system("tar xfz $src","Extracting sources under $ENV{'PBBUILDDIR'}");
1941 pb_system("tar xfz $src2","Extracting pbconf under $ENV{'PBBUILDDIR'}");
[1242]1942 # We need to handle potential patches to upstream sources
[1432]1943 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbpatch/","$ENV{'PBBUILDDIR'}","patch");
[1242]1944
1945 # We need to handle potential additional sources to upstream sources
[1432]1946 pb_extract_build_files($src2,"$pbpkg-$pbver$pbextdir/pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbsrc/","$ENV{'PBBUILDDIR'}","src");
[1242]1947
[1432]1948 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[1177]1949 if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild") {
1950 chmod 0755,"pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild";
[872]1951 # pkginfo file is mandatory
[1177]1952 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]1953 # Build
[2084]1954 pb_system("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild $pkgdestdir/pbdelivery","Building software and installing under $pkgdestdir/pbdelivery");
[872]1955 # Copy complementary files
[1177]1956 if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/prototype") {
1957 copy("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/prototype", $pkgdestdir)
[872]1958 } else {
1959 # No prototype provided, calculating it
[878]1960 open(PROTO,"> $pkgdestdir/prototype") || die "Unable to create prototype file";
[872]1961 print PROTO "i pkginfo\n";
[1177]1962 print PROTO "i depend\n" if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/depend");
[2084]1963 $ENV{'PBSOLDESTDIR'} = "$pkgdestdir/pbdelivery";
1964 find(\&create_solaris_prototype, "$pkgdestdir/pbdelivery");
[872]1965 }
[1177]1966 copy("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/depend", $pkgdestdir) if (-f "pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/depend");
1967 copy("pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pkginfo", $pkgdestdir);
[2084]1968 pb_system("cd $pkgdestdir/pbdelivery ; pkgmk -o -f ../prototype -r $pkgdestdir/pbdelivery -d $ENV{'PBBUILDDIR'}/$pbos->{'type'}","Packaging $pbpkg","verbose");
[1177]1969 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]1970 pb_system("cd $ENV{'PBBUILDDIR'} ; gzip -9f $pbpkg-$pbver-$pbtag.pkg","Compressing $pbpkg-$pbver-$pbtag.pkg","verbose");
[913]1971 } else {
[2110]1972 pb_log(0,"No pbconf/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}/pbbuild file found for $pbpkg-$pbver\n");
[872]1973 }
[874]1974 chdir ".." || die "Unable to chdir to parent dir";
[1432]1975 pb_rm_rf("$pbpkg-$pbver$pbextdir","$ENV{'PBBUILDDIR'}/$pbos->{'type'}","$pkgdestdir");
[1177]1976 } elsif ($pbos->{'type'} eq "hpux") {
[1174]1977 # HP-UX
1978 pb_system("tar xfz $src","Extracting sources");
1979 pb_system("tar xfz $src2","Extracting pbconf");
1980
[1432]1981 chdir "$pbpkg-$pbver$pbextdir" || die "Unable to chdir to $pbpkg-$pbver$pbextdir";
[1174]1982 pb_system("buildpackage ","Building package","verbose");
1983 # Get the name of the generated packages
1984 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to open $ENV{'PBTMP'}/system.$$.log";
1985 while (<LOG>) {
1986 chomp();
1987 my $tmp = $_;
1988 next if ($tmp !~ /^SD BUILD.*:/);
1989 $tmp =~ s|.*../(.*)_(.*).sd.*|$1|;
[1279]1990 $made = "$made $tmp"."_*.sd";
[1174]1991 }
1992 close(LOG);
1993 $made="$made $pbpkg-$pbver-$pbtag.sd";
1994
[1234]1995 chdir ".." || die "Unable to chdir to parent dir";
[1432]1996 pb_rm_rf("$pbpkg-$pbver$pbextdir");
[87]1997 } else {
[1177]1998 die "Unknown OS type format $pbos->{'type'}";
[87]1999 }
[1137]2000 if (defined $pbparallel) {
2001 # Communicate results back to parent
2002 pb_set_content("$tmpd/$$",$made);
2003 $pm->finish;
2004 }
[87]2005 }
[1137]2006 if (defined $pbparallel) {
2007 # In the parent, we need to get the result from the children
2008 $pm->wait_all_children;
2009 foreach my $f (<$tmpd/*>) {
2010 $made .= " ".pb_get_content($f);
2011 }
[1550]2012 die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
[1137]2013 pb_rm_rf($tmpd);
2014 }
2015
[1278]2016 # Sign packages
2017 pb_sign_pkgs($pbos,$made);
[1583]2018 pb_log(0,"INFO: ------ Finished building package ------\n");
[1278]2019
[1109]2020 # Find the appropriate check cmd/opts
[1177]2021 my ($chkcmd,$chkopt) = pb_distro_get_param($pbos,pb_conf_get_if("oschkcmd","oschkopt"));
[1109]2022
[1666]2023 my $ret = "";
[541]2024 # Packages check if needed
[1177]2025 if ($pbos->{'type'} eq "rpm") {
2026 if ((defined $chkcmd) && (-x $chkcmd)) {
2027 my $cmd = "$chkcmd";
2028 $cmd .= " $chkopt" if (defined $chkopt);
2029 $cmd .= " $made";
[1749]2030 my $ret = pb_system("$cmd","Checking validity of rpms with $chkcmd","mayfailverbose");
[1539]2031 pb_log(0,"ERROR: when checking packages validity\n") if ($ret ne 0);
[541]2032 }
[1098]2033 my $rpms ="";
2034 my $srpms ="";
2035 foreach my $f (split(/ /,$made)) {
2036 $rpms .= "$ENV{'PBBUILDDIR'}/$f " if ($f =~ /^RPMS\//);
2037 $srpms .= "$ENV{'PBBUILDDIR'}/$f " if ($f =~ /^SRPMS\//);
2038 }
2039 pb_log(0,"SRPM packages generated: $srpms\n");
2040 pb_log(0,"RPM packages generated: $rpms\n");
[1666]2041 $ret = $rpms;
[1177]2042 } elsif ($pbos->{'type'} eq "deb") {
[572]2043 my $made2 = "";
[971]2044 foreach my $f (split(/ /,$made)) {
[1234]2045 $made2 .= "$f " if ($f =~ /\.deb$/);
[971]2046 }
[1604]2047 if ((defined $chkcmd) && (-x $chkcmd)) {
[1595]2048 my $ret = pb_system("$chkcmd $chkopt $made2","Checking validity of debs with $chkcmd","mayfail");
[1539]2049 pb_log(0,"ERROR: when checking packages validity\n") if ($ret ne 0);
[541]2050 }
[1234]2051 pb_log(0,"deb packages generated: $made2\n");
[1666]2052 $ret = $made2;
[541]2053 } else {
[1177]2054 pb_log(0,"No check done for $pbos->{'type'} yet\n");
[572]2055 pb_log(0,"Packages generated: $made\n");
[1666]2056 $ret = $made;
[541]2057 }
2058
[1176]2059 # Keep track of what is generated so that we can get them back from VMs/RMs
[1942]2060 my $pbstore = "$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
2061 open(KEEP,"> $pbstore") || die "Unable to create $pbstore $!";
[118]2062 print KEEP "$made\n";
2063 close(KEEP);
[1666]2064 pb_distro_installdeps(undef,$pbos,$ret) if ($do_install);
[87]2065}
2066
[88]2067sub pb_build2ssh {
[320]2068 pb_send2target("Sources");
[1374]2069 pb_send2target("CPAN");
[90]2070}
[87]2071
[90]2072sub pb_pkg2ssh {
[320]2073 pb_send2target("Packages");
[90]2074}
2075
[108]2076# By default deliver to the the public site hosting the
[1176]2077# ftp structure (or whatever) or a VM/VE/RM
[320]2078sub pb_send2target {
[90]2079
2080 my $cmt = shift;
[2049]2081 my $pbscript1 = shift;
[1907]2082 my $v = shift;
2083 my $vexist = shift; # 0 is FALSE
2084 my $vpid = shift; # 0 is FALSE
2085 my $snapme = shift; # 0 is FALSE
2086 my $pbstep = shift; # 3 is usage of container
[320]2087
[1907]2088 $vexist = 0 if (not defined $vexist);
2089 $vpid = 0 if (not defined $vpid);
2090 $snapme = 0 if (not defined $snapme);
2091 $pbstep = 3 if (not defined $pbstep);
[1903]2092 pb_log(2,"DEBUG: pb_send2target($cmt,".Dumper($v).",$vexist,$vpid)\n");
[320]2093 my $host = "sshhost";
2094 my $login = "sshlogin";
2095 my $dir = "sshdir";
2096 my $port = "sshport";
2097 my $conf = "sshconf";
[883]2098 my $tmout = undef;
2099 my $path = undef;
[1714]2100
[772]2101 if ($cmt =~ /^VM/) {
[320]2102 $login = "vmlogin";
[322]2103 $dir = "pbdefdir";
[320]2104 # Specific VM
[883]2105 $tmout = "vmtmout";
2106 $path = "vmpath";
[320]2107 $host = "vmhost";
2108 $port = "vmport";
[1176]2109 } elsif ($cmt =~ /^RM/) {
2110 $login = "rmlogin";
2111 $dir = "pbdefdir";
2112 # Specific RM
2113 $tmout = "rmtmout";
2114 $path = "rmpath";
2115 $host = "rmhost";
2116 $port = "rmport";
[772]2117 } elsif ($cmt =~ /^VE/) {
[320]2118 $login = "velogin";
[322]2119 $dir = "pbdefdir";
[320]2120 # Specific VE
2121 $path = "vepath";
[986]2122 $conf = "rbsconf";
[556]2123 } elsif ($cmt eq "Web") {
2124 $host = "websshhost";
2125 $login = "websshlogin";
2126 $dir = "websshdir";
2127 $port = "websshport";
[1374]2128 } elsif ($cmt eq "CPAN") {
2129 $host = "cpanpause";
2130 $login = "";
2131 $dir = "cpandir";
2132 $port = "";
[320]2133 }
[158]2134 my $cmd = "";
[471]2135 my $src = "";
[1374]2136 my $cpanpkg = 0;
[1177]2137 my $pbos;
[90]2138
[1432]2139 my $pbextdir = pb_get_extdir();
2140
[471]2141 if ($cmt ne "Announce") {
[898]2142 # Get list of packages to build
[471]2143 my $ptr = pb_get_pkg();
[1621]2144 my @pkgs = ();
2145 @pkgs = @$ptr if (defined $ptr);
[87]2146
[471]2147 # Get the running distro to consider
[1177]2148 $pbos = pb_distro_get_context($v);
[87]2149
[1621]2150 my $pkg = { };
[471]2151 # Get content saved in cms2build
[1621]2152 if ((defined $ENV{'PBDESTDIR'}) && (defined $ENV{'PBPROJVER'}) && (defined $ENV{'PBPROJTAG'}) && (-f "$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb")) {
2153 ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
2154 $pkg = { } if (not defined $pkg);
2155 }
[87]2156
[1212]2157 pb_mkdir_p("$ENV{'PBBUILDDIR'}") if (! -d "$ENV{'PBBUILDDIR'}");
[1208]2158 chdir "$ENV{'PBBUILDDIR'}" || die "Unable to chdir to $ENV{'PBBUILDDIR'}";
[471]2159 foreach my $pbpkg (@pkgs) {
2160 my $vertag = $pkg->{$pbpkg};
2161 # get the version of the current package - maybe different
[1459]2162 pb_log(2,"Vertag: $vertag\n");
[471]2163 ($pbver,$pbtag) = split(/-/,$vertag);
[87]2164
[1908]2165 if (($cmt eq "Sources") || ($cmt =~ /(V[EM]|RM)(build|prep)/)) {
[1432]2166 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.pbconf.tar.gz";
[1910]2167 my $cmd2 = "ln -sf $pbpkg-$pbver$pbextdir.tar.gz $pbpkg-latest.tar.gz";
2168 #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]2169 if ($cmd eq "") {
[1910]2170 $cmd = $cmd2;
[471]2171 } else {
[1910]2172 $cmd = "$cmd ; $cmd2";
[471]2173 }
[560]2174 } elsif ($cmt eq "Web") {
[1432]2175 $src = "$src $ENV{'PBDESTDIR'}/$pbpkg-$pbver$pbextdir.tar.gz"
[166]2176 }
[1374]2177
2178 # Do we have one perl package
2179 my @nametype = pb_conf_get_if("namingtype");
2180 my $type = $nametype[0]->{$pbpkg};
2181 if ((defined $type) && ($type eq "perl")) {
2182 $cpanpkg = 1;
2183 }
[118]2184 }
[471]2185 # Adds conf file for availability of conf elements
[1621]2186 pb_conf_add("$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb") if ((defined $ENV{'PBROOTDIR'}) && (-f "$ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb"));
[118]2187 }
[1374]2188 my ($rbsconf,$testver,$delivery) = pb_conf_get_if($conf,"testver","delivery");
[1593]2189 if ($cmt eq "CPAN") {
[1374]2190 # Do not deliver on Pause if this is a test version
[1384]2191 return if (not defined $testver);
[1374]2192 return if ($testver =~ /true/);
2193 # Do not deliver on Pause if this is not a perl package
2194 return if ($cpanpkg == 0);
2195 }
[417]2196
[1907]2197 if ($cmt =~ /(V[EM]|RM)(build|prep)/) {
[1903]2198 $src="$src $ENV{'PBROOTDIR'}/$ENV{'PBPROJ'}.pb $ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb $ENV{'PBETC'} $ENV{'PBDESTDIR'}/pbrc $pbscript{$v}";
[1176]2199 } elsif ($cmt =~ /(V[EM]|RM)Script/) {
[1903]2200 $src="$src $pbscript{$v}";
[1176]2201 } elsif ($cmt =~ /(V[EM]|RM)test/) {
[1903]2202 $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]2203 } elsif (($cmt eq "Announce") || ($cmt eq "Web") || ($cmt eq "CPAN")) {
[471]2204 $src="$src $ENV{'PBTMP'}/pbscript";
[118]2205 } elsif ($cmt eq "Packages") {
2206 # Get package list from file made during build2pkg
[1189]2207 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]2208 $src = <KEEP>;
[118]2209 chomp($src);
2210 close(KEEP);
[87]2211 }
[1374]2212 if (($cmt eq "Sources") || ($cmt eq "Packages") || ($cmt eq "CPAN")) {
[1279]2213 my ($pbpackager) = pb_conf_get("pbpackager");
2214 $ENV{'PBPACKAGER'} = $pbpackager->{$ENV{'PBPROJ'}};
2215 pb_log(0,"Exporting public key for $ENV{'PBPACKAGER'}\n");
2216 # Using pb_system is not working due to redirection below
2217 system("gpg --export -a \'$ENV{'PBPACKAGER'}\' > $ENV{'PBDESTDIR'}/$ENV{'PBPROJ'}.pubkey");
2218 chmod 0644,"$ENV{'PBDESTDIR'}/$ENV{'PBPROJ'}.pubkey";
2219 $src = "$src $ENV{'PBDESTDIR'}/$ENV{'PBPROJ'}.pubkey";
2220 }
[320]2221 # Remove potential leading spaces (cause problem with basename)
[132]2222 $src =~ s/^ *//;
[129]2223 my $basesrc = "";
[131]2224 foreach my $i (split(/ +/,$src)) {
2225 $basesrc .= " ".basename($i);
[130]2226 }
[118]2227
[987]2228 pb_log(2,"values: ".Dumper(($host,$login,$dir,$port,$tmout,$path,$conf))."\n");
[1541]2229 my ($sshhost,$sshdir) = pb_conf_get($host,$dir);
[883]2230 # Not mandatory...
[1102]2231 $delivery->{$ENV{'PBPROJ'}} = "" if (not defined $delivery->{$ENV{'PBPROJ'}});
[1541]2232 my ($sshlogin,$sshport) = pb_conf_get_if($login,$port);
[1604]2233 $sshport->{$ENV{PBPROJ}} = 22 if (not defined $sshport->{$ENV{PBPROJ}});
2234 $sshlogin->{$ENV{PBPROJ}} = getpwuid($UID) if (not defined $sshlogin->{$ENV{PBPROJ}});
[883]2235 my ($vtmout,$vepath);
2236 # ...Except those in virtual context
2237 if ($cmt =~ /^VE/) {
2238 ($vepath) = pb_conf_get($path);
2239 }
[1176]2240 if ($cmt =~ /^(V|R)M/) {
[1218]2241 $vtmout = pb_distro_get_param($pbos,pb_conf_get_if($tmout));
[883]2242 }
[1216]2243 my $remhost = $sshhost->{$ENV{'PBPROJ'}};
2244 my $remdir = $sshdir->{$ENV{'PBPROJ'}};
2245 if ($cmt =~ /^V[EM]|RM/) {
2246 # In that case our real host is in the xxhost with the OS as key, not project as above
2247 $remhost = pb_distro_get_param($pbos,$sshhost);
[1176]2248 }
[1217]2249 pb_log(2,"ssh: ".Dumper(($remhost,$sshlogin,$remdir,$sshport,$vepath,$rbsconf))."\n");
2250 pb_log(2,"ssh: ".Dumper($vtmout)."\n") if (defined $vtmout);
[320]2251
2252 my $mac;
[772]2253 if ($cmt !~ /^VE/) {
[1216]2254 $mac = "$sshlogin->{$ENV{'PBPROJ'}}\@$remhost";
[1942]2255 # Overwrite account value if passed as parameter or forced
2256 $mac = "$ENV{'PBACCOUNT'}\@$remhost" if (defined $ENV{'PBACCOUNT'});
[681]2257 } else {
2258 # VE
[1942]2259 $mac = $sshlogin->{$ENV{'PBPROJ'}};
[1138]2260 # Overwrite account value if passed as parameter (typically for setup2v)
[1942]2261 $mac = $ENV{'PBACCOUNT'} if (defined $ENV{'PBACCOUNT'});
[320]2262 }
[1942]2263 pb_log(2, "DEBUG: mac: $mac\n");
[320]2264
[108]2265 my $tdir;
[136]2266 my $bdir;
[1176]2267 if (($cmt eq "Sources") || ($cmt =~ /(V[EM]|RM)Script/)) {
[1216]2268 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/src";
[1374]2269 } elsif ($cmt eq "CPAN") {
2270 $tdir = "$remdir";
[1907]2271 } elsif ($cmt =~ /(V[EM]|RM)(build|test|prep)/) {
[2084]2272 $tdir = $remdir."/$ENV{'PBPROJ'}/pbdelivery";
2273 $bdir = $remdir."/$ENV{'PBPROJ'}/pbbuild";
[136]2274 # Remove a potential $ENV{'HOME'} as bdir should be relative to pb's home
2275 $bdir =~ s|\$ENV.+\}/||;
[471]2276 } elsif ($cmt eq "Announce") {
[1216]2277 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}";
[556]2278 } elsif ($cmt eq "Web") {
[1216]2279 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}";
[90]2280 } elsif ($cmt eq "Packages") {
[1192]2281 if (($pbos->{'type'} eq "rpm") || ($pbos->{'type'} eq "pkg") || ($pbos->{'type'} eq "hpux") || ($pbos->{'type'} eq "tgz")) {
2282 # put packages under an arch subdir
[1216]2283 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}";
[1192]2284 } elsif (($pbos->{'type'} eq "deb") || ($pbos->{'type'} eq "ebuild")) {
2285 # No need for an arch subdir
[1216]2286 $tdir = "$remdir/$delivery->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}";
[1192]2287 } else {
2288 die "Please teach the dev team where to deliver ($pbos->{'type'} type of packages\n";
2289 }
[429]2290
2291 my $repodir = $tdir;
[1216]2292 $repodir =~ s|^$remdir/||;
[1621]2293 my $repotag = "";
2294 $repotag = "-$delivery->{$ENV{'PBPROJ'}}" if ($delivery->{$ENV{'PBPROJ'}} ne "");
[429]2295
2296 my ($pbrepo) = pb_conf_get("pbrepo");
2297
[1953]2298 # Script for Repository management
[1910]2299 $pbscript{$v} = "$ENV{'PBBUILDDIR'}/pbscript.$$";
[1953]2300
2301 # That script should be part of the delivery
2302 $src = "$src $pbscript{$v}";
[1910]2303 open(PBS,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
[1177]2304 if ($pbos->{'type'} eq "rpm") {
[1276]2305 my $pbsha = pb_distro_get_param($pbos,pb_conf_get("ossha"));
[1556]2306 my $gpgcheck = pb_conf_get_if("pbgpgcheck");
2307 my $pbgpgcheck;
2308 $pbgpgcheck = $gpgcheck->{$ENV{PBPROJ}} if (defined $gpgcheck);
2309 # By default force GPG check in repo even if we support signature of packages to fail. This is a best practice
2310 $pbgpgcheck = 1 if (not defined $pbgpgcheck);
[2012]2311 # Also make a pbscript to generate dnf/yum/urpmi bases
[429]2312 print PBS << "EOF";
[433]2313#!/bin/bash
[2012]2314# Prepare a script to ease dnf/yum setup
[1298]2315EOF
2316 print PBS "set -x\n" if ($pbdebug gt 1);
2317 print PBS << "EOF";
[1621]2318cat > $ENV{'PBPROJ'}$repotag.repo << EOT
2319[$ENV{'PBPROJ'}$repotag]
[1177]2320name=$pbos->{'name'} $pbos->{'version'} $pbos->{'arch'} - $ENV{'PBPROJ'} Vanilla Packages
[433]2321baseurl=$pbrepo->{$ENV{'PBPROJ'}}/$repodir
[429]2322enabled=1
[1556]2323gpgcheck=$pbgpgcheck
[1335]2324gpgkey=$pbrepo->{$ENV{'PBPROJ'}}/$repodir/$ENV{'PBPROJ'}.pubkey
[429]2325EOT
[1622]2326chmod 644 $ENV{'PBPROJ'}$repotag.repo
[429]2327
2328# Clean up old repo content
2329rm -rf headers/ repodata/
2330# Create yum repo
[1102]2331if [ -x /usr/bin/yum-arch ]; then
2332 yum-arch .
2333fi
[429]2334# Create repodata
[1276]2335createrepo -s $pbsha .
[1365]2336# Link to the key
[1557]2337if [ -s $ENV{'PBPROJ'}.pubkey ]; then
[1605]2338 # Avoiding creating empty repomd.xml.key; fails on opensuse 12.1
[1557]2339 (cd repodata ; ln -sf ../$ENV{'PBPROJ'}.pubkey repomd.xml.key)
2340fi
[1365]2341# sign the repomd (at least useful for SLES - which requires a local key)
2342# gpg -a --detach-sign repodata/repomd.xml
2343# SLES also looks for media.1/info.txt
[429]2344EOF
[1177]2345 if ($pbos->{'family'} eq "md") {
[429]2346 # For Mandriva add urpmi management
2347 print PBS << "EOF";
2348# Prepare a script to ease urpmi setup
[1621]2349cat > $ENV{'PBPROJ'}$repotag.addmedia << EOT
[1903]2350#rpm --import $pbrepo->{$ENV{'PBPROJ'}}/$repodir/$ENV{'PBPROJ'}.pubkey
[1621]2351urpmi.addmedia $ENV{'PBPROJ'}$repotag $pbrepo->{$ENV{'PBPROJ'}}/$repodir with media_info/hdlist.cz
[429]2352EOT
[1622]2353chmod 755 $ENV{'PBPROJ'}$repotag.addmedia
[429]2354
2355# Clean up old repo content
[437]2356rm -f hdlist.cz synthesis.hdlist.cz
[429]2357# Create urpmi repo
[1002]2358genhdlist2 --clean .
2359if [ \$\? -ne 0 ]; then
2360 genhdlist .
2361fi
[1903]2362(cd media_info ; ln -sf ../$ENV{'PBPROJ'}.pubkey pubkey)
[429]2363EOF
2364 }
[1177]2365 if ($pbos->{'name'} eq "fedora") {
[484]2366 # Extract the spec file to please Fedora maintainers :-(
2367 print PBS << "EOF";
2368for p in $basesrc; do
2369 echo \$p | grep -q 'src.rpm'
2370 if [ \$\? -eq 0 ]; then
2371 rpm2cpio \$p | cpio -ivdum --quiet '*.spec'
2372 fi
2373done
2374EOF
2375 }
[1177]2376 if ($pbos->{'family'} eq "novell") {
[1089]2377 # Add ymp scripts for one-click install on SuSE
2378 print PBS << "EOF";
2379# Prepare a script to ease SuSE one-click install
[1090]2380# Cf: http://de.opensuse.org/1-Klick-Installation/ISV
2381#
[1621]2382cat > $ENV{'PBPROJ'}$repotag.ymp << EOT
[1096]2383<?xml version="1.0" encoding="utf-8"?>
2384<!-- vim: set sw=2 ts=2 ai et: -->
[1089]2385<metapackage xmlns:os="http://opensuse.org/Standards/One_Click_Install" xmlns="http://opensuse.org/Standards/One_Click_Install">
2386 <group><!-- The group of software, typically one for project-builder.org -->
2387 <name>$ENV{'PBPROJ'} Bundle</name> <!-- Name of the software group -->
[1621]2388 <summary>Software bundle for the $ENV{'PBPROJ'}$repotag project</summary> <!--This message is shown to the user and should describe the whole bundle -->
2389 <description>This is the summary of the $ENV{'PBPROJ'}$repotag Project
[1089]2390
[1095]2391 Details are available on a per package basis below
2392
[1089]2393 </description><!--This is also shown to the user -->
2394 <remainSubscribed>false</remainSubscribed> <!-- Don't know what it mean -->
2395 <repositories><!-- List of needed repositories -->
2396 <repository>
[1621]2397 <name>$ENV{'PBPROJ'}$repotag Repository</name> <!-- Name of the repository -->
2398 <summary>This repository contains the $ENV{'PBPROJ'}$repotag project packages.</summary> <!-- Summary of the repository -->
2399 <description>This repository contains the $ENV{'PBPROJ'}$repotag project packages.</description><!-- This description is shown to the user -->
[1089]2400 <url>$pbrepo->{$ENV{'PBPROJ'}}/$repodir</url><!--URL of repository, which is added -->
2401 </repository>
2402 </repositories>
2403 <software><!-- A List of packages, which should be added through the one-click-installation -->
2404EOT
2405for p in $basesrc; do
2406 sum=`rpm -q --qf '%{SUMMARY}' \$p`
[1096]2407 name=`rpm -q --qf '%{NAME}' \$p`
[1089]2408 desc=`rpm -q --qf '%{description}' \$p`
[1621]2409 cat >> $ENV{'PBPROJ'}$repotag.ymp << EOT
[1089]2410 <item>
[1096]2411 <name>\$name</name><!-- Name of the package, is shown to the user and used to identify the package at the repository -->
[1089]2412 <summary>\$sum</summary> <!-- Summary of the package -->
2413 <description>\$desc</description> <!-- Description, is shown to the user -->
2414 </item>
2415EOT
2416done
[1621]2417cat >> $ENV{'PBPROJ'}$repotag.ymp << EOT
[1089]2418 </software>
2419 </group>
2420</metapackage>
2421EOT
[1621]2422chmod 644 $ENV{'PBPROJ'}$repotag.ymp
[1089]2423EOF
2424 }
[1177]2425 } elsif ($pbos->{'type'} eq "deb") {
[429]2426 # Also make a pbscript to generate apt bases
[460]2427 # Cf: http://www.debian.org/doc/manuals/repository-howto/repository-howto.fr.html
[1246]2428 # This dirname removes ver
[2106]2429 my $debarch = pb_get_debarch($pbos);
2430 my $projcomponent = pb_get_debpc($pbos);
[465]2431 my $rpd = dirname("$pbrepo->{$ENV{'PBPROJ'}}/$repodir");
[1357]2432 # Remove extra . in path to fix #522
2433 $rpd =~ s|/./|/|g;
[460]2434 print PBS << "EOF";
[465]2435#!/bin/bash
2436# Prepare a script to ease apt setup
[1621]2437cat > $ENV{'PBPROJ'}$repotag.sources.list << EOT
[1555]2438deb $rpd $pbos->{'version'} $projcomponent
2439deb-src $rpd $pbos->{'version'} $projcomponent
[460]2440EOT
[1621]2441chmod 644 $ENV{'PBPROJ'}$repotag.sources.list
[460]2442
[1112]2443# Up two levels to deal with the dist dir cross versions
[1192]2444cd ..
[1555]2445mkdir -p dists/$pbos->{'version'}/$projcomponent/binary-$debarch dists/$pbos->{'version'}/$projcomponent/source
[1112]2446
[460]2447# Prepare a script to create apt info file
[1192]2448# Reuse twice after
[1112]2449TMPD=`mktemp -d /tmp/pb.XXXXXXXXXX` || exit 1
2450mkdir -p \$TMPD
2451cat > \$TMPD/Release << EOT
2452Archive: unstable
[1555]2453Component: $projcomponent
[1621]2454Origin: $ENV{'PBPROJ'}$repotag
2455Label: $ENV{'PBPROJ'}$repotag dev repository $pbrepo->{$ENV{'PBPROJ'}}
[1112]2456EOT
2457
[1559]2458echo "Creating Packages metadata"
2459for i in dists/$pbos->{version}/$projcomponent/binary-*; do
2460 arch=`basename \$i | sed 's/binary-//'`
2461 echo "Packages for \$arch:"
[1604]2462 dpkg-scanpackages -a\$arch $pbos->{'version'} /dev/null > dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages
[1561]2463 gzip -9 < dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages > dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages.gz
2464 bzip2 -9 < dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages > dists/$pbos->{'version'}/$projcomponent/binary-\$arch/Packages.bz2
[1559]2465done
[1192]2466echo "Creating Contents metadata"
2467apt-ftparchive contents $pbos->{'version'} | gzip -c9 > dists/$pbos->{'version'}/Contents.gz
[1275]2468echo "Creating Release metadata ($pbos->{'arch'} aka $debarch)"
[1555]2469cat \$TMPD/Release > dists/$pbos->{'version'}/$projcomponent/binary-$debarch/Release
2470echo "Architecture: $debarch" >> dists/$pbos->{'version'}/$projcomponent/binary-$debarch/Release
[1112]2471echo "Creating Source metadata"
[1561]2472dpkg-scansources $pbos->{'version'} /dev/null > dists/$pbos->{'version'}/$projcomponent/source/Sources
2473gzip -9 < dists/$pbos->{'version'}/$projcomponent/source/Sources > dists/$pbos->{'version'}/$projcomponent/source/Sources.gz
2474bzip2 -9 < dists/$pbos->{'version'}/$projcomponent/source/Sources > dists/$pbos->{'version'}/$projcomponent/source/Sources.bz2
[1555]2475cat \$TMPD/Release > dists/$pbos->{'version'}/$projcomponent/source/Release
2476echo "Architecture: Source" >> dists/$pbos->{'version'}/$projcomponent/source/Release
[1112]2477echo "Creating Release metadata"
[1561]2478apt-ftparchive -o APT::FTPArchive::Release::Suite=$pbos->{version} release dists/$pbos->{'version'} > dists/$pbos->{'version'}/Release
[1112]2479rm -rf \$TMPD
[460]2480EOF
[1177]2481 } elsif ($pbos->{'type'} eq "ebuild") {
[586]2482 # make a pbscript to generate links to latest version
2483 print PBS << "EOF";
2484#!/bin/bash
2485# Prepare a script to create correct links
[2113]2486cd $tdir
[586]2487for p in $src; do
2488 echo \$p | grep -q '.ebuild'
2489 if [ \$\? -eq 0 ]; then
[2113]2490 j=`basename \$p`
2491 pp=`echo \$j | perl -pe 's/-[0-9\.]+-r[0-9].*\.ebuild/.ebuild/'`
[1987]2492 ln -sf \$j \$pp
[586]2493 fi
2494done
2495EOF
[429]2496 }
2497 close(PBS);
[1953]2498 chmod 0755,$pbscript{$v};
[90]2499 } else {
2500 return;
[22]2501 }
[239]2502
[1143]2503 # Useless for VE
[1179]2504 my $nport = pb_get_port($sshport,$pbos,$cmt) if ($cmt !~ /^VE/);
[320]2505
[136]2506 # Remove a potential $ENV{'HOME'} as tdir should be relative to pb's home
[1559]2507 if ($cmt =~ /^VE/o) {
2508 $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";
2509 } else {
2510 # process, ok if not present.
2511 $tdir =~ s|\$ENV.+\}/||;
2512 }
[132]2513
[1217]2514 my $tm = "";
[1176]2515 if ($cmt =~ /^(V|R)M/) {
[1218]2516 $tm = "sleep $vtmout" if (defined $vtmout);
[883]2517 }
[320]2518
[1374]2519 # ssh communication if not VE or CPAN
[349]2520 # should use a hash instead...
[1549]2521 my ($shcmd,$shcmdroot,$cpcmd,$cptarget,$cp2target);
[1649]2522 my $tpdir;
[1900]2523 my $tp;
[1903]2524 my $context = "$ENV{'PBTMP'}";
2525 my %tag;
[1906]2526 my $dkaccount = "";
2527 my $cmd1 = "";
[2150]2528 my $cidfile = "$context/ctn-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}.cid";
[1909]2529 my $homedir = "";
[1374]2530 if ($cmt =~ /^VE/) {
[1900]2531 $tp = pb_path_expand($vepath->{$ENV{'PBPROJ'}});
[1907]2532 $vetype = pb_ve_get_type($vetype);
[1906]2533 if ($vetype eq "docker") {
2534 $tpdir = "/";
2535 } else {
2536 $tpdir = pb_path_expand("$tp/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
2537 }
[1545]2538 my $arch = pb_get_arch();
[681]2539 if ($vetype eq "chroot") {
[1549]2540 $shcmdroot = "sudo /usr/sbin/chroot $tpdir ";
2541 $shcmd = "$shcmdroot /bin/su - $mac -c ";
[681]2542 } elsif ($vetype eq "schroot") {
2543 $shcmd = "schroot $tp -u $mac -- ";
[1900]2544 } elsif ($vetype eq "docker") {
2545 # docker manages the storage so rely on it
[1903]2546 $shcmdroot = "";
[2104]2547 my $docrepo = pb_ve_docker_repo();
[1906]2548 $cmd1 = pb_check_req("docker",0);
[1903]2549 #my ($dockeropt) = pb_conf_get_if("dockeropt");
2550 # pbimage is used for docker and is setup to the right name depending on the step:
2551 # TODO: This is not coded yet
2552 my $pbimage = undef;
[1906]2553 # step 0 : nothing at creation -> tag n-v-a (made in VE.pm)
[1903]2554 # step 1 : n-v-a + setup -> tag n-v-a-pb
2555 # step 2 : n-v-a-pb + build -> tag n-v-a-pb-pbproj
2556 # step 3 : n-v-a-pb-pbproj at use
2557 if ((not defined $pbimage) || ($pbimage eq "")) {
2558 # If no image name given, create a naming convention
[2092]2559 $tag{1} = "$docrepo$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
[1903]2560 $tag{2} = "$tag{1}-pb";
2561 $tag{3} = "$tag{2}-$ENV{'PBPROJ'}";
2562 } else {
2563 # If we were given an image name, just use it
2564 $tag{1} = $pbimage;
2565 $tag{2} = $pbimage;
2566 $tag{3} = $pbimage;
2567 }
2568 # If we do not create the image, then use the one we should have
[2162]2569 # TODO: we don't do anything with found !!
[1903]2570 my $found = pb_ve_docker_get_image($tag{$pbstep});
[2162]2571 confess "No image $tag{$pbstep} available in Docker, please create one first\n" if (not defined $found);
[1903]2572 # Now we use that image to do what is needed
2573 # use a dockerfile to ease the creation of next images
2574 # the context is in an empty temp dir
2575 my $tmpd = "$context/Dockerfile";
2576 open(DOCKER, "> $tmpd") || die "Unable to create the docker file $tmpd";
2577 print DOCKER "FROM $tag{$pbstep}\n";
2578 print DOCKER "MAINTAINER project-builder.org aka pb\n";
2579 if ($pbstep == 1) {
2580 # setup done as root
[1906]2581 $dkaccount = "root";
[1903]2582 } else {
[1986]2583 # Rest done as pb
[1906]2584 $dkaccount = "pb";
[1903]2585 }
[1906]2586 print DOCKER "USER $dkaccount\n";
2587 if ($pbstep <= 2) {
2588 $shcmd = "$cmd1 build -t $tag{$pbstep+1} $context";
2589 } else {
2590 # As we are in run phase use docker run. cmd will be completed below
[2150]2591 $shcmd = "$cmd1 run --cidfile=\"$cidfile\" --user $dkaccount --name $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-$cmt";
[1906]2592 }
[1903]2593 #$shcmd = "$cmd1 build $dockeropt->{$ENV{'PBPROJ'}} -t $tag{$pbstep+1} $context";
[681]2594 }
[1564]2595 $shcmd = "setarch i386 $shcmd" if (($pbos->{'arch'} =~ /i[3456]86/) && ($arch eq 'x86_64'));
[1903]2596 if (($cmt =~ /VE/) && ($vetype ne "docker")) {
2597 # We need to get the home dir of the target account to deliver in the right place
2598 open(PASS,"$tpdir/etc/passwd") || die "Unable to open $tpdir/etc/passwd: $!";
2599 while (<PASS>) {
2600 my ($c1,$c2,$c3,$c4,$c5,$c6,$c7) = split(/:/);
2601 $homedir = $c6 if ($c1 =~ /^$mac$/);
2602 pb_log(3,"Homedir: $homedir - account: $c6\n");
2603 }
2604 close(PASS);
[2014]2605 $cpcmd = "sudo /bin/cp -r ";
[681]2606 }
[1906]2607 if (($cmt =~ /VE/) && ($vetype eq "docker")) {
2608 if ($pbstep >= 2) {
2609 # We need to get the home dir of the target account to deliver in the right place
[2150]2610 $homedir = `$cmd1 run --cidfile="$cidfile" $tag{$pbstep} grep -E '^$dkaccount:' /etc/passwd | cut -d: -f6`;
[1906]2611 chomp($homedir);
[2150]2612 open(CID,"$cidfile") || confess "Unable to open $cidfile";
[1906]2613 my $cid = <CID>;
2614 close(CID);
2615 pb_system("$cmd1 rm $cid","","quiet");
[2150]2616 unlink("$cidfile");
[1906]2617 } else {
2618 $homedir = "/";
2619 }
[2014]2620 $cpcmd = "cp -r ";
[1906]2621 }
[681]2622 $cptarget = "$tpdir/$homedir/$tdir";
[1908]2623 if ($cmt =~ /VE(build|prep)/) {
[681]2624 $cp2target = "$tpdir/$homedir/$bdir";
2625 }
2626 pb_log(2,"On VE using $cptarget as target dir to copy to\n");
[1593]2627 } elsif ($cmt eq "CPAN") {
[1382]2628 my $ftpput = pb_check_req("ncftpput",1);
2629 my $ftpget = pb_check_req("wget",1);
[1595]2630 my ($cpanuser,$cpanpasswd) = pb_conf_get_if("cpanuser","cpanpasswd");
2631 return if ((not defined $cpanuser) || (not defined $cpanuser->{$ENV{'PBPROJ'}}));
2632 return if ((not defined $cpanpasswd) || (not defined $cpanpasswd->{$ENV{'PBPROJ'}}));
[1374]2633 my ($cpansubdir) = pb_conf_get_if("cpansubdir");
[1595]2634 $shcmd = "$ftpget --post-data \'HIDDENNAME=".$cpanuser->{$ENV{'PBPROJ'}};
2635 $shcmd .= "&user=".$cpanuser->{$ENV{'PBPROJ'}};
2636 $shcmd .= "&password=".$cpanpasswd->{$ENV{'PBPROJ'}};
[1374]2637 $shcmd .= "&SUBMIT_pause99_add_uri_upload=\"Upload the checked files\"";
[1595]2638 $shcmd .= "&pause99_add_uri_subdirtext=".$cpansubdir->{$ENV{'PBPROJ'}} if ((defined $cpansubdir) && (defined $cpansubdir->{$ENV{'PBPROJ'}}));
[1374]2639 foreach my $s (split(/ /,$src)) {
2640 $shcmd .= "&pause99_add_uri_upload=".basename($s);
2641 }
2642 $shcmd .= "'";
2643 $cpcmd = "$ftpput $host $dir";
2644 $cptarget = "CPAN";
2645 } else {
[1604]2646 my $keyopt = "";
[2049]2647 if ($cmt !~ /Packages/) {
2648 my $keyfile = pb_ssh_get(0,$remhost,$nport);
2649 $keyopt = "-i $keyfile" if (defined $keyfile);
2650 }
[1382]2651 my $sshcmd = pb_check_req("ssh",1);
2652 my $scpcmd = pb_check_req("scp",1);
[1545]2653 $shcmd = "$sshcmd $keyopt -q -o NoHostAuthenticationForLocalhost=yes -p $nport $mac";
2654 $cpcmd = "$scpcmd $keyopt -p -o NoHostAuthenticationForLocalhost=yes -P $nport";
[1374]2655 $cptarget = "$mac:$tdir";
[1908]2656 if ($cmt =~ /^(V|R)M(build|prep)/) {
[1374]2657 $cp2target = "$mac:$bdir";
2658 }
[320]2659 }
[1374]2660
[471]2661 my $logres = "";
2662 # Do not touch when just announcing
[1374]2663 if (($cmt ne "Announce") && ($cmt ne "CPAN")) {
[1906]2664 # For docker everything is done in the Dockerfile for steps < 3
2665 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
2666 print DOCKER "RUN mkdir -p $cptarget\n";
2667 print DOCKER "RUN cd $cptarget ; for i in $basesrc; do if [ -f \$i ]; then rm -f \$i; fi; done\n";
[1909]2668 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2669 # Nothing to do here
[1903]2670 } else {
[2113]2671 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]2672 }
[471]2673 } else {
2674 $logres = "> ";
2675 }
[1907]2676
2677 if ($cmt =~ /SandBox/) {
2678 # Install from sandbox mean using the result of the just passed sbx2build command
2679 # Get content saved in cms2build
2680 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
2681 my $pbextdir = pb_get_extdir();
2682 confess "Unable to get package list" if (not defined $pkg);
2683
2684 # We consider 2 specific packages
2685 my $vertag1 = $pkg->{"ProjectBuilder"};
2686 my $vertag2 = $pkg->{"project-builder"};
2687 # get the version of the current package - maybe different
2688 pb_log(2,"Vertag1: $vertag1\n");
2689 pb_log(2,"Vertag2: $vertag2\n");
2690 my ($pbver1,$tmp1) = split(/-/,$vertag1);
2691 my ($pbver2,$tmp2) = split(/-/,$vertag2);
2692 if ($cmt =~ /VE/) {
2693 # Copy inside the VE
2694 if ($vetype ne "docker") {
2695 copy("$ENV{'PBDESTDIR'}/ProjectBuilder-$pbver1$pbextdir.tar.gz","$tpdir/tmp");
2696 copy("$ENV{'PBDESTDIR'}/project-builder-$pbver2$pbextdir.tar.gz","$tpdir/tmp");
2697 } else {
2698 copy("$ENV{'PBDESTDIR'}/ProjectBuilder-$pbver1$pbextdir.tar.gz","$context");
2699 copy("$ENV{'PBDESTDIR'}/project-builder-$pbver2$pbextdir.tar.gz","$context");
2700 print DOCKER "COPY ProjectBuilder-$pbver1$pbextdir.tar.gz /tmp/\n";
2701 print DOCKER "COPY project-builder-$pbver2$pbextdir.tar.gz /tmp/\n";
2702 }
2703 } else {
[1942]2704 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]2705 }
2706 }
2707
[1953]2708 pb_log(0,"Sources handled ($cmt): $src\n");
[1903]2709 # For docker everything is done in the Dockerfile
[1906]2710 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
[1903]2711 foreach my $f (split(/ +/,$src)) {
2712 copy("$f","$context");
[1906]2713 print DOCKER "COPY ".basename($f)." $cptarget/\n";
[1903]2714 }
[1906]2715 print DOCKER "RUN cd $cptarget ; $cmd\n" if ((defined $cmd) && ($cmd ne ""));
[1909]2716 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2717 # Nothing to do
[1903]2718 } else {
2719 pb_system("cd $ENV{'PBBUILDDIR'} ; $cpcmd $src $cptarget 2> /dev/null","$cmt delivery in $cptarget");
2720 }
[444]2721
[681]2722 # For VE we need to change the owner manually
[772]2723 if ($cmt =~ /^VE/) {
[1903]2724 if ($vetype ne "docker") {
2725 my $sudomode = pb_distro_get_param($pbos,pb_conf_get("ossudoersmode"));
2726 my $res = pb_system("$shcmdroot sed -i '/requiretty/d' /etc/sudoers","Removing potential requiretty in sudoers","quiet");
2727 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"));
2728 pb_system("$shcmd \"sudo chown -R $mac $tdir\"","Adapt owner in $tdir to $mac");
[1906]2729 } else {
[1907]2730 print DOCKER "RUN sed -i '/requiretty/d' /etc/sudoers\n" if ($pbstep == 1);
[1903]2731 }
[681]2732 }
2733
[1140]2734 # Use the right script name depending on context
[2049]2735 my $pbscript2;
[1189]2736 if (($cmt =~ /^(V[EM]|RM)/) || ($cmt =~ /Packages/)){
[2049]2737 $pbscript2 = $pbscript{$v};
[1140]2738 } else {
[2049]2739 $pbscript2 = "pbscript";
[1140]2740 }
2741
[1374]2742 # It's already ready for CPAN
[1383]2743 my $shcmdbase = $shcmd;
[1910]2744 my $dkcmd;
[1593]2745 if ($cmt ne "CPAN") {
[1906]2746 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep < 3)) {
[2049]2747 copy("$pbscript2","$context");
2748 my $s = basename($pbscript2);
[1906]2749 print DOCKER "COPY $s $cptarget/\n";
2750 # call directly with perl to avoid text file busy error messages
[1967]2751 print DOCKER "RUN cd $cptarget ; perl ./$s ; if [ '$pbkeep' = '0' ]; then rm -f $s; fi\n";
[1906]2752 print DOCKER "RUN rm -rf $cptarget/*\n";
[2004]2753 print DOCKER "RUN chown -R $dkaccount $cptarget\n" if ($pbstep == 1);
[1903]2754 close(DOCKER);
[1909]2755 } elsif (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
[2049]2756 $dkcmd = "/bin/bash $homedir/$tdir-2/".basename($pbscript2);
[1903]2757 } else {
[2049]2758 my $s = basename($pbscript2);
[1942]2759 $shcmd .= " \"echo \'cd $tdir ; if [ -x $s ]; then ./$s; fi ; if [ $pbkeep == 0 ]; then rm -f $s; fi\' | bash\"";
[1903]2760 }
[1374]2761 }
[1726]2762 my $cmdverb = "verbose";
[1388]2763 if (($cmt eq "Announce") || ($cmt eq "CPAN")) {
[1386]2764 $cmdverb = undef;
[1726]2765 } elsif (defined ($v)) {
2766 $cmdverb = "verbose_\[$v\] ";
[1386]2767 }
[2122]2768 # this is where we launch the execution
[1909]2769 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
2770 pb_mkdir_p("$ENV{'PBTMP'}/vebuild");
[1910]2771 my $tsrc = "";
[1909]2772 foreach my $f (split(/ +/,$src)) {
2773 copy("$f","$ENV{'PBTMP'}/vebuild");
[1910]2774 $tsrc .= " ".basename($f);
[1909]2775 }
[2049]2776 my $ts = "$ENV{'PBTMP'}/vebuild/".basename($pbscript2);
[1910]2777 open(DOCKER," > $ts") || confess "Unable to create $ts";
[1913]2778 print DOCKER "#!/bin/bash\n";
[1910]2779 print DOCKER "# Put content from host to guest, copying to have the correct uid/gid and rights to do so\n";
2780 print DOCKER "# set -x\n";
2781 print DOCKER "for i in $tsrc; do\n";
[2004]2782 print DOCKER " # Cleanup first to avoid rights issues for root owned files e.g.\n";
2783 print DOCKER " rm -f $homedir/$tdir/\$i\n";
[1910]2784 print DOCKER " cp $homedir/$tdir-2/\$i $homedir/$tdir\n";
2785 print DOCKER "done\n";
[2004]2786 print DOCKER "(cd $homedir/$tdir-2 ; ls -al)\n";
[2049]2787 print DOCKER pb_get_content($pbscript2);
[2004]2788 print DOCKER "\n# Get content back from guest in a host dir\n";
[2014]2789 # Host dir seen as TDIR in container
[1910]2790 $cp2target = "$ENV{'PBBUILDDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
2791 pb_mkdir_p("$cp2target");
2792 chmod 0777,"$cp2target";
2793 print DOCKER "TDIR=$homedir/$bdir-2/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}-$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}\n";
[2014]2794 print DOCKER "for i in $homedir/$bdir/*; do\n";
[2004]2795 print DOCKER " # Cleanup first to avoid rights issues for root owned files e.g.\n";
[2014]2796 print DOCKER " j=\`basename \$i\`\n";
2797 print DOCKER " rm -f \$TDIR/\$j\n";
[1910]2798 print DOCKER " cp -r \$i \$TDIR\n";
2799 print DOCKER "done\n";
2800 print DOCKER "find \$TDIR -type f -print0 | xargs -0 chmod 644\n";
2801 print DOCKER "find \$TDIR -type d -print0 | xargs -0 chmod 777 2> /dev/null\n";
[2122]2802 #print DOCKER "ls -al \$TDIR\n";
[2110]2803 print DOCKER "exit 0\n";
[1910]2804 close(DOCKER);
2805 $shcmd .= " -v $ENV{'PBBUILDDIR'}:$homedir/$bdir-2 -v $ENV{'PBTMP'}/vebuild:$homedir/$tdir-2 -w $homedir/$tdir-2 $tag{$pbstep} $dkcmd";
[1909]2806 }
[1907]2807 my $ret = pb_system("$shcmd","Executing pbscript on $cptarget if needed",$cmdverb);
[2106]2808
2809 # If target is deb family then sign Release file for Packages
[2107]2810 my $pbos2 = pb_distro_get_context($v);
2811 if (($cmt =~ /Packages/) && ($pbos2->{'type'} eq "deb")) {
2812 my $debarch = pb_get_debarch($pbos2);
2813 my $projcomponent = pb_get_debpc($pbos2);
2814 for my $f ("dists/$pbos2->{'version'}/$projcomponent/binary-$debarch/Release","dists/$pbos2->{'version'}/$projcomponent/source/Release","dists/$pbos2->{'version'}/Release") {
[2108]2815 my $debdir = dirname($cptarget);
2816 pb_system("cd $ENV{'PBBUILDDIR'} ; $cpcmd $debdir/$f . 2> /dev/null","Getting deb $f file from $debdir");
[2106]2817 pb_sign_file("$ENV{'PBBUILDDIR'}/Release");
[2108]2818 pb_system("$cpcmd $ENV{'PBBUILDDIR'}/Release.gpg $debdir/$f.gpg 2> /dev/null","Putting deb $f.gpg file to $debdir");
[2106]2819 }
2820 }
[1903]2821
[1176]2822 if ($cmt =~ /^(V[EM]|RM)build/) {
2823 # Get back info on pkg produced, compute their name and get them from the VM/RM
[1189]2824 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]2825 if (not -f "$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$") {
[1652]2826 pb_log(0,"ERROR with VM/RM $v on getting $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$\n");
[1156]2827 } else {
2828 open(KEEP,"$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$") || die "Unable to read $ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$";
2829 my $src = <KEEP>;
2830 chomp($src);
2831 close(KEEP);
2832 unlink("$ENV{'PBBUILDDIR'}/pbgen-$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.$$");
[1138]2833
[1156]2834 $src =~ s/^ *//;
[1179]2835 pb_mkdir_p("$ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
[1156]2836 # Change pgben to make the next send2target happy
2837 my $made = "";
2838
[1176]2839 # For VM/RM we don't want shell expansion to hapen locally but remotely
[1156]2840 my $delim = '\'';
2841 if ($cmt =~ /^VEbuild/) {
2842 # For VE we need to support shell expansion locally
2843 $delim = "";
2844 }
[1138]2845
[1189]2846 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]2847 foreach my $p (split(/ +/,$src)) {
2848 my $j = basename($p);
[1179]2849 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'}");
2850 $made="$made $pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}/$j"; # if (($pbos->{'type'} ne "rpm") || ($j !~ /.src.rpm$/));
[1156]2851 }
[1910]2852
[1156]2853 print KEEP "$made\n";
2854 close(KEEP);
[1953]2855 if (($cmt =~ /^VE/) && ($vetype eq "docker") && ($pbstep >= 3)) {
[1910]2856 pb_rm_rf("$cp2target");
[1911]2857 pb_system("$cmd1 rm $pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}-$cmt","","quiet");
[1910]2858 } else {
2859 pb_system("$shcmdbase \"rm -rf $tdir $bdir\"","$cmt cleanup");
2860 }
[1138]2861
[1156]2862 # Sign packages locally
[1278]2863 pb_sign_pkgs($pbos,$made);
[1156]2864
2865 # We want to send them to the ssh account so overwrite what has been done before
[1903]2866 pb_log(2,"Before sending pkgs, vexist: $vexist, vpid: $vpid\n");
[1943]2867 pb_send2target("Packages","$ENV{'PBDESTDIR'}/pbscript.$$",$pbos->{'name'}."-".$pbos->{'version'}."-".$pbos->{'arch'},$vexist,$vpid);
[1179]2868 pb_rm_rf("$ENV{'PBBUILDDIR'}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}");
[623]2869 }
[108]2870 }
[2049]2871 unlink("$pbscript{$v}") if ((($cmt =~ /^(V[ME]|RM)/) || ($cmt =~ /Packages/)) && ($pbkeep eq 0) && ($cmt !~ /Script/));
[1139]2872
[1903]2873 pb_log(2,"Before halt, vexist: $vexist, vpid: $vpid\n");
2874 if ((! $vexist) && ($cmt =~ /^VM/)) {
[748]2875 # If in setupvm then takes a snapshot just before halting
2876 if ($snapme != 0) {
2877 my ($vmmonport,$vmtype) = pb_conf_get("vmmonport","vmtype");
2878 # For monitoring control
2879 if ((($vmtype->{$ENV{'PBPROJ'}}) eq "kvm") || (($vmtype->{$ENV{'PBPROJ'}}) eq "qemu")) {
[1153]2880 eval
2881 {
[804]2882 require Net::Telnet;
[1153]2883 Net::Telnet->import();
2884 };
2885 if ($@) {
2886 # Net::Telnet not found
2887 pb_log(1,"ADVISE: Install Net::Telnet to benefit from monitoring control and snapshot feature.\nWARNING: No snapshot created");
2888 } else {
2889 my $t = new Net::Telnet (Timeout => 120, Host => "localhost", Port => $vmmonport->{$ENV{'PBPROJ'}}) || die "Unable to dialog on the monitor";
2890 # move to monitor mode
2891 my @lines = $t->cmd("c");
2892 # Create a snapshot named pb
2893 @lines = $t->cmd("savevm pb");
2894 # Write the new status in the VM
2895 @lines = $t->cmd("commit all");
2896 # End
2897 @lines = $t->cmd("quit");
2898 }
[748]2899 }
2900 }
[914]2901 my $hoption = "-p";
[1197]2902 my $hpath = pb_distro_get_param($pbos,pb_conf_get("ospathcmd-halt"));
[1194]2903 # Solaris doesn't support -p of halt
[1177]2904 if ($pbos->{'type'} eq "pkg") {
[1091]2905 $hoption = "" ;
2906 }
[1903]2907 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]2908 }
[772]2909 if (($cmt =~ /^VE/) && ($snapme != 0)) {
[1903]2910 if ($vetype eq "docker") {
2911 foreach my $f (split(/ +/,$src)) {
2912 unlink("$context/$f");
2913 }
[1907]2914 } else {
2915 pb_ve_snap($pbos,$tp);
[1903]2916 }
[752]2917 }
[9]2918}
[16]2919
[320]2920sub pb_script2v {
[141]2921
[1903]2922my $pbscript=shift;
2923my $vtype=shift;
[1906]2924my $pbstep=shift; # Which step are we in (0: create, 1: setup pb, 2: prep pbproj, 3: use to build)
[1907]2925my $pbforce=shift; # Force stop of VM. Default not.
2926my $snapme=shift; # Do we have to create a snapshot. Default not.
2927my $pbimage=shift; # Which image to use to start the VM/VE
[141]2928
[1907]2929$pbforce = 0 if (not defined $pbforce);
2930$snapme = 0 if (not defined $snapme);
[2047]2931$pbstep = 3 if (not defined $pbstep);
[1907]2932
[1903]2933pb_log(2,"DEBUG: pb_script2v($vtype,$pbstep,$pbforce,$snapme)\n");
[2049]2934pb_log(2,"DEBUG: pb_script2v(pbscript: ".Dumper($pbscript)."\n") if (defined $pbscript);
[1958]2935pb_parallel_launchv($pbscript,$vtype,uc($vtype)."Script",$pbstep,$pbimage,$pbforce,$snapme,$pbsnap);
[1903]2936}
[142]2937
[1903]2938sub pb_parallel_launchv {
[755]2939
[1903]2940my $pbscript=shift;
2941my $vtype = shift;
[1907]2942my $action = shift; # It an action is defined then use send2target
[1903]2943my $pbstep=shift; # Which step are we in (0: create, 1: setup, 2: build 3: use)
[1958]2944my $pbimage=shift; # Which image to use to start the VM/VE
[1907]2945my $pbforce=shift; # Force stop of VM. Default not.
2946my $snapme = shift; # By default do not snap a VM/VE/RM
2947my $usesnap = shift; # By default study the usage of the snapshot feature of VM/VE/RM
[1903]2948my $vm;
2949my $all;
[141]2950
[1907]2951$pbforce = 0 if (not defined $pbforce);
2952$snapme = 0 if (not defined $snapme);
2953$usesnap = 1 if (not defined $usesnap);
2954
[1903]2955# Adapt // mode to memory size
2956$pbparallel = pb_set_parallel($vtype);
[442]2957
[1903]2958pb_log(2,"DEBUG: pb_parallel_launch(vtype,step,force,snapme,usesnap: $vtype,$pbstep,$pbforce,$snapme,$usesnap)\n");
2959pb_log(2,"DEBUG: pb_parallel_launch(pbscript: ".Dumper($pbscript)."\n");
[274]2960
[1903]2961my ($vexist,$vpid) = (undef,undef);
2962my $pm;
2963my $all_ok = 1;
2964if (defined $pbparallel) {
2965 $pm = new Parallel::ForkManager($pbparallel);
[169]2966
[1903]2967 # Set which port the VM/RM will use to communicate
2968 $pm->run_on_start(\&pb_set_port);
2969 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
2970 unless ($code == 0 && $signal == 0 && $dump == 0) {
2971 $all_ok = 0;
2972 pb_log(0,"ERROR: pid $pid failed\n");
2973 }
2974 });
2975}
2976
2977# Determine on which V to work
2978if (defined $ENV{'PBV'}) {
2979 @$vm = split(/,/,$ENV{'PBV'});
2980} else {
2981 ($vm,$all) = pb_get2v($vtype);
2982}
2983
2984my $counter = 0;
2985foreach my $v (@$vm) {
2986 $counter++;
2987 # Modulo 2 * pbparallel (to avoid synchronization problems)
2988 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
2989 $pm->start($counter) and next if (defined $pbparallel);
2990
[2049]2991 # If launched via script2v then get the script passed as the one for the that VM
2992 if (not defined $pbscript->{$v}) {
2993 $pbscript->{$v} = $pbscript->{'default'};
2994 }
2995 #
[1903]2996 # Launch a single operation
[2049]2997 ($vexist,$vpid) = pb_launchv($pbscript->{$v},$vtype,$v,$action,$pbstep,$pbforce,$snapme,$pbsnap,$pbimage);
[1903]2998
[1942]2999 # Skip that VM/RM if something went wrong
3000 if (($vtype =~ /(v|r)m/) && ($vpid == 0) && ($vexist == 0)) {
[1903]3001 $pm->finish if (defined $pbparallel);
3002 next;
[142]3003 }
[1952]3004
[1942]3005
[1903]3006 $pm->finish if (defined $pbparallel);
[142]3007}
[1903]3008$pm->wait_all_children if (defined $pbparallel);
3009die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
3010}
[142]3011
[320]3012sub pb_launchv {
[310]3013
[2049]3014my $pbscript1=shift; # Just the script name to execute, not the hash
[1903]3015my $vtype = shift;
[1907]3016my $v = shift; # Only 1 VM/VE/RM treated here
3017my $action = shift; # It an action is defined then use send2target
[1903]3018my $pbstep=shift; # Which step are we in (0: create, 1: setup, 2: build 3: use)
[1907]3019my $pbforce=shift; # Force stop of VM. Default not.
3020my $snapme = shift; # By default do not snap a VM/VE/RM
3021my $usesnap = shift; # By default study the usage of the snapshot feature of VM/VE/RM
3022my $pbimage=shift; # Which image to use to start the VM/VE
[1903]3023my $vexist = undef;
3024my $vpid = undef;
[773]3025
[1907]3026$pbforce = 0 if (not defined $pbforce);
3027$snapme = 0 if (not defined $snapme);
3028$usesnap = 1 if (not defined $usesnap);
3029
[1903]3030# Check that v exists
3031die "No VM/VE/RM defined, unable to launch" if (not defined $v);
[310]3032
[1903]3033# If creation or snapshot creation mode, no snapshot usable
3034if (($pbstep == 0) || ($snapme == 1)) {
3035 $usesnap = 0;
3036}
[1549]3037
[1907]3038pb_log(2,"DEBUG: pb_launchv(vtype,v,step,force,snapme,usesnap: $vtype,$v,$pbstep,$pbforce,$snapme,$usesnap)\n");
[1903]3039pb_log(2,"DEBUG: pb_launchv(pbimage: $pbimage)\n") if (defined $pbimage);
[2049]3040pb_log(2,"DEBUG: pb_launchv(pbscript $pbscript1)\n") if (defined $pbscript1);
[1903]3041pb_log(2,"DEBUG: pb_launchv(action: $action)\n") if (defined $action);
3042# Keep only the first VM in case many were given
3043if ($v =~ /,/) {
3044 pb_log(0,"WARNING: pruning to just the first of several VM/VE/RMs listed ($v)\n");
3045 $v =~ s/,.*//;
3046}
[310]3047
[1903]3048my $pbos = pb_distro_get_context($v);
[320]3049
[1903]3050pb_apply_conf_proxy($pbos);
[1124]3051
[1903]3052# Launch the VMs/VEs
3053if ($vtype eq "vm") {
[1906]3054 confess "-i image parameter needed" if (((not defined $pbimage) || ($pbimage eq "")) && ($pbstep == 0));
[1903]3055
3056 my ($ptr,$ptr2,$vmpath,$vmport,$vms) = pb_conf_get("vmtype","vmcmd","vmpath","vmport","vmsize");
3057 my ($vmopt,$vmmm,$vmtmout,$vmsnap,$vmbuildtm,$vmmonport) = pb_conf_get_if("vmopt","vmmem","vmtmout","vmsnap","vmbuildtm","vmmonport");
3058 my $vmsize = pb_distro_get_param($pbos,$vms);
3059
3060 my $vmtype = $ptr->{$ENV{'PBPROJ'}};
3061 my $vmcmd = $ptr2->{$ENV{'PBPROJ'}};
3062
3063 if (defined $opts{'g'}) {
3064 if (($vmtype eq "kvm") || ($vmtype eq "qemu")) {
3065 $ENV{'PBVMOPT'} = "--nographic";
[1124]3066 }
[1903]3067 }
3068 if (not defined $ENV{'PBVMOPT'}) {
3069 $ENV{'PBVMOPT'} = "";
3070 }
3071 # Save the current status for later restoration
3072 $ENV{'PBOLDVMOPT'} = $ENV{'PBVMOPT'};
3073 # Set a default timeout of 2 minutes
3074 if (not defined $ENV{'PBVMTMOUT'}) {
3075 $ENV{'PBVMTMOUT'} = "120";
3076 }
3077 if (defined $vmopt->{$v}) {
3078 $ENV{'PBVMOPT'} .= " $vmopt->{$v}" if ($ENV{'PBVMOPT'} !~ / $vmopt->{$v}/);
3079 } elsif (defined $vmopt->{$ENV{'PBPROJ'}}) {
3080 $ENV{'PBVMOPT'} .= " $vmopt->{$ENV{'PBPROJ'}}" if ($ENV{'PBVMOPT'} !~ / $vmopt->{$ENV{'PBPROJ'}}/);
3081 }
3082
3083 # How much memory to allocate for VMs
3084 if (defined $vmmm) {
3085 my $vmmem = pb_distro_get_param($pbos,$vmmm);
3086 if (defined $vmmem) {
3087 $ENV{'PBVMOPT'} .= " -m $vmmem";
[310]3088 }
[1903]3089 }
3090
3091 # Are we allowed to use snapshot feature
3092 if ($usesnap == 1) {
3093 if ((defined $vmsnap->{$v}) && ($vmsnap->{$v} =~ /true/i)) {
3094 $ENV{'PBVMOPT'} .= " -snapshot";
3095 } elsif ((defined $vmsnap->{$ENV{'PBPROJ'}}) && ($vmsnap->{$ENV{'PBPROJ'}} =~ /true/i)) {
3096 $ENV{'PBVMOPT'} .= " -snapshot";
3097 } elsif ($pbsnap eq 1) {
3098 $ENV{'PBVMOPT'} .= " -snapshot";
[483]3099 }
[1903]3100 }
3101 if ($snapme != 0) {
3102 if (($vmtype eq "kvm") || ($vmtype eq "qemu")) {
3103 # Configure the monitoring to automate the creation of the 'pb' snapshot
3104 $ENV{'PBVMOPT'} .= " -serial mon:telnet::$vmmonport->{$ENV{'PBPROJ'}},server,nowait" if ((defined $vmmonport) && (defined $vmmonport->{$ENV{'PBPROJ'}}));
3105 # In that case no snapshot call needed
3106 $ENV{'PBVMOPT'} =~ s/ -snapshot//;
[320]3107 }
[1903]3108 }
3109 if (defined $vmtmout->{$v}) {
3110 $ENV{'PBVMTMOUT'} = $vmtmout->{$v};
3111 } elsif (defined $vmtmout->{$ENV{'PBPROJ'}}) {
3112 $ENV{'PBVMTMOUT'} = $vmtmout->{$ENV{'PBPROJ'}};
3113 }
3114 my $nport = pb_get_port($vmport,$pbos,$vtype);
[773]3115
[1903]3116 my $cmd;
3117 my $vmm; # has to be used for pb_check_ps
3118 if (($vmtype eq "qemu") || ($vmtype eq "kvm")) {
3119 $vmm = "$vmpath->{$ENV{'PBPROJ'}}/$v.qemu";
3120 if (($pbstep == 0) || (defined $pbimage)) {
3121 $ENV{'PBVMOPT'} .= " -cdrom $pbimage -boot d";
[1143]3122 }
[1903]3123 # Always redirect the network and always try to use a 'pb' snapshot
3124 #$cmd = "$vmcmd $ENV{'PBVMOPT'} -net nic,model=virtio -net user,hostfwd=tcp::$nport:22 -loadvm pb $vmm"
3125 #$cmd = "$vmcmd $ENV{'PBVMOPT'} -redir tcp:$nport:10.0.2.15:22 $vmm"
3126 $cmd = "$vmcmd $ENV{'PBVMOPT'} -net nic -net user,hostfwd=tcp:127.0.0.1:$nport-:22 $vmm"
3127 } elsif ($vmtype eq "xen") {
3128 } elsif ($vmtype eq "vmware") {
3129 } else {
3130 die "VM of type $vmtype not supported. Report to the dev team";
3131 }
3132 # Restore the ENV VAR Value
3133 $ENV{'PBVMOPT'} = $ENV{'PBOLDVMOPT'};
[1143]3134
[1903]3135 my ($tmpcmd,$void) = split(/ +/,$cmd);
3136 my $vmmport = undef;
3137 ($vexist,$vmmport) = pb_check_ps($tmpcmd,$vmm);
[1927]3138 $vpid = 0;
[1942]3139
[1903]3140 if (! $vexist) {
3141 if ($pbstep == 0) {
3142 die("Found an existing Virtual machine $vmm. Won't overwrite") if (-r $vmm);
3143 if (($vmtype eq "qemu") || ($vmtype eq "xen") || ($vmtype eq "kvm")) {
3144 my $command = pb_check_req("qemu-img",0);
3145 pb_system("$command create -f qcow2 $vmm $vmsize","Creating the QEMU VM");
3146 } elsif ($vmtype eq "vmware") {
3147 } else {
[748]3148 }
3149 }
[1903]3150 if (! -f "$vmm") {
3151 pb_log(0,"Unable to find VM $vmm\n");
[310]3152 } else {
[1903]3153 # Is the SSH port free? if not kill the existing process using it after a build timeout period
3154 my ($vmssh,$void) = pb_check_ps($tmpcmd,$vmm);
3155 if ($vmssh) {
3156 my $buildtm = $ENV{'PBVMTMOUT'};
3157 if (defined $vmbuildtm->{$v}) {
3158 $buildtm = $vmbuildtm->{$v};
3159 } elsif (defined $vmbuildtm->{$ENV{'PBPROJ'}}) {
3160 $buildtm = $vmbuildtm->{$ENV{'PBPROJ'}};
[320]3161 }
[1153]3162
[1903]3163 sleep $buildtm;
3164 pb_log(0,"WARNING: Killing the process ($vmssh) using port $void (previous failed VM ?)\n");
3165 kill 15,$vmssh;
3166 # Let it time to exit
3167 sleep 5;
[320]3168 }
[1903]3169 pb_system("$cmd &","Launching the VM $vmm");
3170 # Using system allows to kill it externaly if needed,sosupport that in the call
3171 pb_system("sleep $ENV{'PBVMTMOUT'}","Waiting $ENV{'PBVMTMOUT'} s for VM $v to come up","mayfail");
3172 ($vpid,$void) = pb_check_ps($tmpcmd,$vmm);
3173 pb_log(0,"VM $vmm launched (pid $vpid)\n");
[310]3174 }
[1176]3175 } else {
[1942]3176 pb_log(0,"Found an existing VM $vmm (pid $vexist - Port $vmmport)\n");
[1903]3177 # Set the correct port here based on what is done
[2029]3178 $pbport = $vmmport;
[1903]3179 $vpid = $vexist;
3180 }
3181 pb_log(2,"DEBUG: pb_launchv returns ($vexist,$vpid)\n");
[1952]3182
[1963]3183 # After the VM is launched, then setup the SSH access if not in creation phase
3184 if ($pbstep != 0) {
[2029]3185 if (defined $pbport) {
3186 pb_ssh_setup($vtype,$pbport);
3187 } else {
3188 pb_ssh_setup($vtype,$nport);
3189 }
[1963]3190 }
[1903]3191
[1952]3192 # Skip that VM if something went wrong
[1903]3193 return($vexist,$vpid) if (($vpid == 0) && ($vexist == 0));
3194
3195 # If force stopping the VM then reset vexist
3196 if ($pbforce == 1) {
3197 $vpid = $vexist;
3198 $vexist = 0;
3199 }
3200} elsif ($vtype eq "ve") {
3201 # Force the creation of the VE and no snapshot usable
3202 $vetype = pb_ve_get_type($vetype);
[1907]3203 pb_ve_launch($v,$pbstep,$usesnap,$vetype,$pbimage);
[1903]3204 $vexist = 0;
3205 $vpid = 0;
3206} else {
3207 # Get RM context
[1952]3208 my ($ptr,$rmpath,$rmport) = pb_conf_get("rmtype","rmpath","rmport");
[1176]3209
[1903]3210 # Nothing more to do for RM. No real launch
3211 # For the moment we support the RM is already running
3212 # For ProLiant may be able to power them on if needed later on as an example.
3213 $vexist = 0;
3214 $vpid = 0;
[1952]3215
3216 # After the RM is launched, then setup the SSH access
3217 my $nport = pb_get_port($rmport,$pbos,$vtype);
3218 pb_ssh_setup($vtype,$nport);
[141]3219}
[142]3220
[1903]3221# Gather all required files to send them to the VM/VE/RM
3222# and launch the build through pbscript
3223if (defined $action) {
3224 pb_log(2,"DEBUG: Before send2target, vexist: $vexist, vpid: $vpid, vtype: $vtype, v: $v, action: $action\n");
[2049]3225 pb_send2target($action,$pbscript1,$v,$vexist,$vpid,$snapme,$pbstep);
[1903]3226}
3227return($vexist,$vpid);
3228}
3229
[639]3230# Return string for date synchro
[772]3231sub pb_date2v {
[639]3232
3233my $vtype = shift;
[1216]3234my $pbos = shift;
[1712]3235my $nontp = shift || 0;
[639]3236
[1714]3237pb_log(1,"Entering pb_date2v\n");
[1545]3238# VE gets time from parent OS.
3239return "/bin/true" if ($vtype) =~ /^ve/o;
3240
[986]3241my ($ntp) = pb_conf_get_if($vtype."ntp");
[1714]3242my $vntp = undef;
[1221]3243my $ntpline = undef;
[1714]3244$vntp = $ntp->{$ENV{'PBPROJ'}} if (defined $ntp);
[639]3245
[1598]3246if ((defined $vntp) && ($vntp !~ /^\s*$/)) {
[1714]3247 pb_log(2,"ntp server is $vntp\n");
[1221]3248 # ntp command depends on pbos
[1714]3249 my $vntpcmd = pb_distro_get_param($pbos,pb_conf_get("oscmdntp"));
[652]3250 $ntpline = "sudo $vntpcmd $vntp";
[639]3251}
3252# Force new date to be in the future compared to the date
3253# of the host by adding 1 minute
3254my @date=pb_get_date();
3255$date[1]++;
3256my $upddate = strftime("%m%d%H%M%Y", @date);
[1179]3257my $dateline = "sudo /bin/date $upddate";
[1712]3258if ((defined $ntpline) && ($nontp == 0)) {
[1714]3259 pb_log(1,"pb_date2v returns $ntpline\n");
[1190]3260 return($ntpline);
3261} else {
[1714]3262 pb_log(1,"pb_date2v returns $dateline\n");
[1190]3263 return($dateline);
[639]3264}
[1190]3265}
[639]3266
[320]3267sub pb_build2v {
[118]3268
[320]3269my $vtype = shift;
[1907]3270my $action = shift; #build, test or prep
3271my $pbforce=shift; # Force stop of VM. Default not.
[142]3272
[1907]3273$action = "build" if (not defined $action);
3274$pbforce = 0 if (not defined $pbforce);
3275
[1906]3276my $pbstep;
3277
[2015]3278$vetype = pb_ve_get_type($vetype);
[1906]3279if ($action eq "prep") {
3280 $pbstep = 2;
3281} else {
3282 $pbstep = 3;
[2015]3283 # Need to be traversed by others if using containers
3284 if (($vtype eq "ve") && ($vetype eq "docker")) {
3285 chmod 0751,"$ENV{'PBBUILDDIR'}";
3286 }
[1906]3287}
3288
[1908]3289pb_log(1,"Entering in pb_build2v ($action in $vtype) \n");
3290
[1903]3291# We prepare scripts for all V of this vtype to allow sharing that part
[772]3292my ($v,$all) = pb_get2v($vtype);
[320]3293
3294# Send tar files when we do a global generation
[772]3295pb_build2ssh() if (($all == 1) && ($action eq "build"));
[320]3296
[1143]3297# Adapt // mode to memory size
3298$pbparallel = pb_set_parallel($vtype);
3299
[1903]3300my ($vexist,$vpid) = (undef,undef);
[1176]3301my $pm;
[1550]3302my $all_ok = 1;
[1176]3303if (defined $pbparallel) {
3304 $pm = new Parallel::ForkManager($pbparallel);
[320]3305
[1176]3306 # Set which port the VM/RM will use to communicate
3307 $pm->run_on_start(\&pb_set_port);
[1550]3308 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
3309 unless ($code == 0 && $signal == 0 && $dump == 0) {
[1552]3310 $all_ok = 0;
[1550]3311 pb_log(0,"ERROR: pid $pid failed\n");
3312 }
3313 });
[1176]3314}
[1143]3315
3316my $counter = 0;
[320]3317foreach my $v (@$v) {
[1143]3318 $counter++;
[1906]3319 $pbscript{$v} = "$ENV{'PBDESTDIR'}/pb$action-$v";
[1153]3320 # Modulo 2 * pbparallel (to avoid synchronization problems)
[1176]3321 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
[1143]3322 $pm->start($counter) and next if (defined $pbparallel);
[1906]3323 #
[1176]3324 # Prepare the script to be executed on the VM/VE/RM
[1903]3325 open(SCRIPT,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
[652]3326 print SCRIPT "#!/bin/bash\n";
[721]3327
3328 # Transmit the verbosity level to the virtual env/mach.
3329 my $verbose = "";
3330 my $i = 0; # minimal debug level
3331 while ($i lt $pbdebug) {
3332 $verbose .= "-v ";
3333 $i++;
3334 }
[1597]3335 print SCRIPT "set -e\n" if ($Global::pb_stop_on_error);
[721]3336 # Activate script verbosity if at least 2 for pbdebug
3337 print SCRIPT "set -x\n" if ($i gt 1);
3338 # Quiet if asked to be so on the original system
3339 $verbose = "-q" if ($pbdebug eq -1);
3340
[652]3341 print SCRIPT "echo ... Execution needed\n";
[1906]3342 print SCRIPT "echo ==== Start of script for $vtype $v =====\n";
[2084]3343 print SCRIPT "# This is in directory pbdelivery\n";
[652]3344 print SCRIPT "# Setup the variables required for building\n";
3345 print SCRIPT "export PBPROJ=$ENV{'PBPROJ'}\n";
[686]3346
[1907]3347 if (($action eq "build") || ($action eq "prep")) {
[772]3348 print SCRIPT "# Preparation for pb\n";
[1652]3349 print SCRIPT "rm -f \$HOME/.pbrc\n";
[1910]3350 print SCRIPT "cp .pbrc \$HOME\n";
[2004]3351 # TODO: Why ?
[772]3352 print SCRIPT "cd ..\n";
3353 }
3354
[1545]3355 # VE needs a good /proc, tolerate one being potentially left around after a failure
[1903]3356 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1545]3357 print SCRIPT "[ -d /proc/1 ] || sudo /bin/mount -t proc /proc /proc\n";
[686]3358 }
[652]3359
[1216]3360 # Get distro context
3361 my $pbos = pb_distro_get_context($v);
3362
3363 my $ntpline = pb_date2v($vtype,$pbos);
[652]3364 print SCRIPT "# Time sync\n";
[1545]3365 print SCRIPT "echo setting up date with $ntpline\n";
[1190]3366 print SCRIPT "$ntpline\n";
[1716]3367 print SCRIPT "if [ \$\? -ne 0 ]; then\n";
[1712]3368 # Force if bad status a trick using date
3369 $ntpline = pb_date2v($vtype,$pbos, 1);
3370 print SCRIPT " $ntpline\n";
3371 print SCRIPT "fi\n";
[721]3372 # Use potential local proxy declaration in case we need it to download repo, pkgs, ...
3373 if (defined $ENV{'http_proxy'}) {
3374 print SCRIPT "export http_proxy=\"$ENV{'http_proxy'}\"\n";
3375 }
[652]3376
[721]3377 if (defined $ENV{'ftp_proxy'}) {
3378 print SCRIPT "export ftp_proxy=\"$ENV{'ftp_proxy'}\"\n";
[652]3379 }
3380
[772]3381 # Get list of packages to build/test and get some ENV vars as well
3382 my $ptr = pb_get_pkg();
3383 @pkgs = @$ptr;
3384 my $p = join(' ',@pkgs) if (@pkgs);
3385 print SCRIPT "export PBPROJVER=$ENV{'PBPROJVER'}\n";
3386 print SCRIPT "export PBPROJTAG=$ENV{'PBPROJTAG'}\n";
3387 print SCRIPT "export PBPACKAGER=\"$ENV{'PBPACKAGER'}\"\n";
[721]3388
3389 # We may need to do some other tasks before building. Read a script here to finish setup
[772]3390 if (-x "$ENV{'PBDESTDIR'}/pb$vtype".".pre") {
3391 print SCRIPT "# Special pre-instructions to be launched\n";
3392 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype".".pre");
[721]3393 }
3394
[772]3395 if (-x "$ENV{'PBDESTDIR'}/pb$vtype"."$action.pre") {
3396 print SCRIPT "# Special pre-$action instructions to be launched\n";
3397 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype"."$action.pre");
3398 }
3399
3400 print SCRIPT "# $action\n";
3401 print SCRIPT "echo $action"."ing packages on $vtype...\n";
3402
3403 if (($action eq "test") && (! -x "$ENV{'PBDESTDIR'}/pbtest")) {
[2003]3404 confess "No test script ($ENV{'PBDESTDIR'}/pbtest) found when in test mode. Aborting ...";
[772]3405 }
[1968]3406 print SCRIPT "pb -h\n";
[1906]3407 my $act = "$action"."2pkg";
3408 $act = "build2prep" if ($action eq "prep");
3409 print SCRIPT "pb $verbose -p $ENV{'PBPROJ'} $act $p\n";
[772]3410
[1903]3411 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1179]3412 print SCRIPT "sudo /bin/umount /proc\n";
[686]3413 }
[721]3414
3415 # We may need to do some other tasks after building. Read a script here to exit properly
[772]3416 if (-x "$ENV{'PBDESTDIR'}/pb$vtype"."$action.post") {
3417 print SCRIPT "# Special post-$action instructions to be launched\n";
3418 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype"."$action.post");
[721]3419 }
3420
[772]3421 if (-x "$ENV{'PBDESTDIR'}/pb$vtype".".post") {
3422 print SCRIPT "# Special post-instructions to be launched\n";
3423 print SCRIPT pb_get_content("$ENV{'PBDESTDIR'}/pb$vtype".".post");
3424 }
3425
[1716]3426 print SCRIPT "echo ==== End of script $$ for $vtype $v =====\n";
[652]3427 close(SCRIPT);
[1903]3428 chmod 0755,"$pbscript{$v}";
[652]3429
[1139]3430 $pm->finish if (defined $pbparallel);
[105]3431}
[1176]3432$pm->wait_all_children if (defined $pbparallel);
[1550]3433die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
[1903]3434
3435# Launch the VM/VE/RM
3436# docker image to use if needed
3437# Gather all required files to send them to the VM/VE
3438# and launch the build through pbscript
[1958]3439pb_parallel_launchv(\%pbscript,$vtype,uc($vtype).$action,$pbstep,$pbimage,$pbforce);
[320]3440}
[105]3441
[262]3442
[739]3443sub pb_clean {
3444
3445 my $sleep=10;
3446 die "Unable to get env var PBDESTDIR" if (not defined $ENV{'PBDESTDIR'});
3447 die "Unable to get env var PBBUILDDIR" if (not defined $ENV{'PBBUILDDIR'});
3448 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");
3449 sleep $sleep;
3450 pb_rm_rf($ENV{'PBDESTDIR'});
3451 pb_rm_rf($ENV{'PBBUILDDIR'});
3452}
3453
[199]3454sub pb_newver {
3455
[204]3456 die "-V Version parameter needed" if ((not defined $newver) || ($newver eq ""));
[340]3457
[366]3458 # Need this call for PBDIR
3459 my ($scheme2,$uri) = pb_cms_init($pbinit);
[361]3460
[898]3461 my ($pbconf,$pburl) = pb_conf_get("pbconfurl","pburl");
[366]3462 $uri = $pbconf->{$ENV{'PBPROJ'}};
3463 my ($scheme, $account, $host, $port, $path) = pb_get_uri($uri);
3464
[361]3465 # Checking CMS repositories status
[366]3466 ($scheme2, $account, $host, $port, $path) = pb_get_uri($pburl->{$ENV{'PBPROJ'}});
[340]3467
3468 if ($scheme !~ /^svn/) {
[199]3469 die "Only SVN is supported at the moment";
3470 }
[483]3471
[1469]3472 my $res = pb_vcs_isdiff($scheme,$ENV{'PBROOTDIR'});
[361]3473 die "ERROR: No differences accepted in CMS for $ENV{'PBROOTDIR'} before creating a new version" if ($res != 0);
[358]3474
[1469]3475 $res = pb_vcs_isdiff($scheme2,$ENV{'PBDIR'});
[361]3476 die "ERROR: No differences accepted in CMS for $ENV{'PBDIR'} before creating a new version" if ($res != 0);
[358]3477
3478 # Tree identical between PBCONFDIR and PBROOTDIR. The delta is what
3479 # we want to get for the root of the new URL
3480
[1381]3481 my $oldver = $ENV{'PBROOTDIR'};
3482 $oldver =~ s|^$ENV{'PBCONFDIR'}||;
[358]3483
[1381]3484 pb_log(2, "PBCONFDIR: $ENV{'PBCONFDIR'}\nPBROOTDIR: $ENV{'PBROOTDIR'}\n");
3485
3486 my $newurl = "$uri/$newver";
[366]3487 # Should probably use projver in the old file
[1381]3488 my $oldvertxt= basename($oldver);
3489 my $newvertxt = basename($newver);
[361]3490
[366]3491 # Duplicate and extract project-builder part
[1381]3492 pb_log(2,"Copying $uri/$oldver to $newurl\n");
[1469]3493 pb_vcs_copy($scheme,"$uri/$oldver",$newurl);
[1381]3494 pb_log(2,"Checkout $newurl to $ENV{'PBCONFDIR'}/$newver\n");
[1469]3495 pb_vcs_up($scheme,"$ENV{'PBCONFDIR'}");
[361]3496
[366]3497 # Duplicate and extract project
[1381]3498 my $newurl2 = "$pburl->{$ENV{'PBPROJ'}}/$newver";
[366]3499
[1381]3500 pb_log(2,"Copying $pburl->{$ENV{'PBPROJ'}}/$oldver to $newurl2\n");
[1469]3501 pb_vcs_copy($scheme2,"$pburl->{$ENV{'PBPROJ'}}/$oldver",$newurl2);
[366]3502
[1381]3503 my $tmp = $ENV{'PBDIR'};
3504 $tmp =~ s|$oldver$||;
3505 pb_log(2,"Checkout $newurl2 to $tmp/$newver\n");
[1469]3506 pb_vcs_up($scheme2,"$tmp");
[1381]3507
[361]3508 # Update the .pb file
[1381]3509 open(FILE,"$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb") || die "Unable to open $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb";
3510 open(OUT,"> $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb.new") || die "Unable to write to $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb.new";
[208]3511 while(<FILE>) {
[1420]3512 if (/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldvertxt$/) {
3513 s/^projver\s+$ENV{'PBPROJ'}\s*=\s*$oldvertxt$/projver $ENV{'PBPROJ'} = $newvertxt/;
[1381]3514 pb_log(0,"Changing projver from $oldvertxt to $newvertxt in $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb\n");
3515 }
3516 if (/^testver/) {
3517 s/^testver/#testver/;
3518 pb_log(0,"Commenting testver in $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb\n") if (/^testver/);
3519 }
3520 if (/^delivery/) {
[1420]3521 my $txt = $_;
3522 chomp($txt);
3523 pb_log(0,"Please check delivery ($txt) in $ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb\n");
[1381]3524 }
[211]3525 print OUT $_;
[208]3526 }
3527 close(FILE);
[211]3528 close(OUT);
[1381]3529 rename("$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb.new","$ENV{'PBCONFDIR'}/$newver/$ENV{'PBPROJ'}.pb");
[363]3530
[479]3531 # Checking pbcl files
3532 foreach my $f (<$ENV{'PBROOTDIR'}/*/pbcl>) {
[590]3533 # Compute new pbcl file
3534 my $f2 = $f;
[1381]3535 $f2 =~ s|$ENV{'PBROOTDIR'}|$ENV{'PBCONFDIR'}/$newver/|;
[479]3536 open(PBCL,$f) || die "Unable to open $f";
3537 my $foundnew = 0;
3538 while (<PBCL>) {
[1381]3539 $foundnew = 1 if (/^$newvertxt \(/);
[479]3540 }
3541 close(PBCL);
[590]3542 open(OUT,"> $f2") || die "Unable to write to $f2: $!";
[479]3543 open(PBCL,$f) || die "Unable to open $f";
[1612]3544 # We skip as long as we do not reach the new version in the log (case of devel)
3545 my $skip = 1;
3546 # We let the 4 first lines
3547 my $cnt = 0;
[479]3548 while (<PBCL>) {
[1612]3549 $skip = 0 if (/^$newvertxt \(/);
[1381]3550 if ((/^$oldvertxt \(/) && ($foundnew == 0)) {
3551 print OUT "$newvertxt ($pbdate)\n";
[479]3552 print OUT "- TBD\n";
3553 print OUT "\n";
[1381]3554 pb_log(0,"WARNING: version $newvertxt not found in $f so added to $f2...\n") if ($foundnew == 0);
[479]3555 }
[1612]3556 if ($cnt <= 4) {
3557 print OUT "$_" if (not /^$oldvertxt \(/);
3558 } else {
3559 print OUT "$_" if ($skip == 0);
3560 }
3561 $cnt++;
[479]3562 }
3563 close(OUT);
3564 close(PBCL);
3565 }
3566
[1381]3567 pb_log(2,"Checkin $ENV{'PBCONFDIR'}/$newver\n");
[1850]3568 pb_vcs_checkin($scheme,"$ENV{'PBCONFDIR'}/$newver","updated to $ENV{'PBCONFDIR'}");
[199]3569}
3570
[293]3571#
[1176]3572# Return the list of VMs/VEs/RMs we are working on
[105]3573# $all is a flag to know if we return all of them
3574# or only some (if all we publish also tar files in addition to pkgs
3575#
[772]3576sub pb_get2v {
[91]3577
[320]3578my $vtype = shift;
3579my @v;
[105]3580my $all = 0;
[320]3581my $pbv = 'PBV';
[1176]3582my $vlist = $vtype."list";
[91]3583
[320]3584# Get VM/VE list
3585if ((not defined $ENV{$pbv}) || ($ENV{$pbv} =~ /^all$/)) {
3586 my ($ptr) = pb_conf_get($vlist);
3587 $ENV{$pbv} = $ptr->{$ENV{'PBPROJ'}};
[105]3588 $all = 1;
[91]3589}
[320]3590pb_log(2,"$vtype: $ENV{$pbv}\n");
3591@v = split(/,/,$ENV{$pbv});
3592return(\@v,$all);
[91]3593}
3594
[1541]3595# This function creates a giant script to configure a particular VM/VE/RM, it then copies the
3596# script to the target.
3597
[1176]3598# Function to create a potentialy missing pb account on the VM/VE/RM, and adds it to sudo
3599# Needs to use root account to connect to the VM/VE/RM
[320]3600# pb will take your local public SSH key to access
[1176]3601# the pb account in the VM/VE/RM later on if needed
[772]3602sub pb_setup2v {
[320]3603
3604my $vtype = shift;
[1907]3605my $sbx = shift;
[1903]3606my $pbstep = 1;
[320]3607
[772]3608my ($vm,$all) = pb_get2v($vtype);
[353]3609
[1143]3610# Adapt // mode to memory size
3611$pbparallel = pb_set_parallel($vtype);
3612
[1176]3613my $pm;
[1550]3614my $all_ok = 1;
[1176]3615if (defined $pbparallel) {
3616 $pm = new Parallel::ForkManager($pbparallel);
[1143]3617
[1176]3618 # Set which port the VM/RM will use to communicate
3619 $pm->run_on_start(\&pb_set_port);
[1550]3620 $pm->run_on_finish(sub { my ($pid, $code, $id, $signal, $dump) = @_;
3621 $all_ok = 0 unless (($code == 0) && ($signal == 0) && ($dump == 0));
3622 });
[1176]3623}
[1143]3624
3625my $counter = 0;
[652]3626foreach my $v (@$vm) {
[1903]3627 # Script generated - should be before the fork - after the %pbscript hash isn't updated correctly
3628 $pbscript{$v} = "$ENV{'PBDESTDIR'}/setupv-$v";
3629
[1143]3630 $counter++;
[1886]3631 # Modulo 2 * pbparallel (to avoid synchronization problems)
3632 $counter = 1 if ((defined $pbparallel) && ($counter > 2 * $pbparallel));
[1143]3633 $pm->start($counter) and next if (defined $pbparallel);
3634
[891]3635 # Get distro context
[1177]3636 my $pbos = pb_distro_get_context($v);
[891]3637
[1216]3638 # Deal with date sync.
3639 my $ntpline = pb_date2v($vtype,$pbos);
3640
[1176]3641 # Name of the account to deal with for VM/VE/RM
[353]3642 # Do not use the one passed potentially with -a
3643 my ($pbac) = pb_conf_get($vtype."login");
[1952]3644 my $key = "";
[346]3645
[1176]3646 # Prepare the script to be executed on the VM/VE/RM
[681]3647 # in $ENV{'PBDESTDIR'}/setupv
[1903]3648
3649 pb_log(2,"Preparing setup script for $v in $pbscript{$v}\n");
3650 open(SCRIPT,"> $pbscript{$v}") || die "Unable to create $pbscript{$v}";
[681]3651
3652 print SCRIPT << 'EOF';
3653#!/usr/bin/perl -w
3654
3655use strict;
3656use File::Copy;
3657
3658# We should not need in this script more functions than what is provided
[1140]3659# by Base, Conf and Distribution to avoid problems at exec time.
[681]3660# They are appended at the end.
3661
[1156]3662# Define mandatory global vars
[1649]3663EOF
3664 my $ppref = "our";
[1651]3665 $ppref = "my" if (($pbos->{'name'} =~ /^redhat/) && ($pbos->{'version'} =~ /^6/));
[1649]3666 print SCRIPT << "EOF";
[1651]3667$ppref \$pbdebug = $pbdebug;
[1649]3668$ppref \$pbLOG;
3669$ppref \$pbsynmsg = "pbscript";
3670$ppref \$pbdisplaytype = "text";
3671$ppref \$pblocale = "";
3672EOF
3673 print SCRIPT << 'EOF';
[681]3674pb_log_init($pbdebug, $pbLOG);
[1425]3675EOF
3676 print SCRIPT << "EOF";
[1548]3677\$Global::pb_stop_on_error = $Global::pb_stop_on_error;
[1425]3678pb_temp_init($pbkeep);
[1511]3679pb_conf_init("$ENV{'PBPROJ'}");
[681]3680
3681EOF
3682
[1952]3683 if ($vtype eq "ve") {
[1907]3684 $vetype = pb_ve_get_type($vetype);
[1903]3685 if ($vetype ne "docker") {
3686 print SCRIPT << "EOF";
[681]3687# For VE we first need to mount some FS
[1549]3688pb_system("mount -t proc /proc /proc") unless (-d "/proc/$$");
[1903]3689EOF
3690 }
3691 print SCRIPT << "EOF";
[1651]3692# For VE we need a good null dev
3693# Except for RedHat 6.2 where it's good and doesnt like being recreated
[354]3694EOF
[1687]3695 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]3696 } elsif ($vtype =~ /(v|r)m/) {
[2045]3697 # Nothing to do now.
3698 my $useless = 0;
[1541]3699 } else {
3700 die "Unknown virtual type $vtype";
[681]3701 }
[1029]3702
[354]3703 print SCRIPT << 'EOF';
3704
3705# Adds $pbac->{$ENV{'PBPROJ'}} as an account if needed
3706#
[346]3707my $file="/etc/passwd";
[320]3708open(PBFILE,$file) || die "Unable to open $file";
3709my $found = 0;
3710while (<PBFILE>) {
[346]3711EOF
[353]3712 print SCRIPT << "EOF";
3713 \$found = 1 if (/^$pbac->{$ENV{'PBPROJ'}}:/);
[346]3714EOF
[891]3715
[1176]3716# TODO: use an external parameter
[891]3717my $home = "/home";
3718# Solaris doesn't like that we use /home
[1177]3719$home = "/export/home" if ($pbos->{'type'} eq "pkg");
[891]3720
3721 print SCRIPT << "EOF";
[320]3722}
3723close(PBFILE);
3724
[891]3725if ( \$found == 0 ) {
3726 if ( ! -d "$home" ) {
3727 pb_mkdir_p("$home");
[320]3728 }
[346]3729EOF
[1179]3730 # TODO: Level of portability of these cmds ? Critical now for RM
[1255]3731 # TODO: Check existence before adding to avoid errors
[353]3732 print SCRIPT << "EOF";
[1051]3733pb_system("/usr/sbin/groupadd $pbac->{$ENV{'PBPROJ'}}","Adding group $pbac->{$ENV{'PBPROJ'}}");
3734pb_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]3735}
[661]3736EOF
[320]3737
[1176]3738 # Copy the content of our local conf file to the VM/VE/RM
[891]3739 my $content = pb_get_content(pb_distro_conffile());
3740 print SCRIPT << "EOF";
3741 #
3742 # Create a temporary local conf file for distribution support
3743 # This is created here before its use later. Its place is hardcoded, so no choice for the path
3744 #
3745 my \$tempconf = pb_distro_conffile();
3746 pb_mkdir_p(dirname(\$tempconf));
3747 open(CONF,"> \$tempconf") || die "Unable to create \$tempconf";
3748 print CONF q{$content};
3749 close(CONF);
3750EOF
3751
[1176]3752 if ($vtype =~ /(v|r)m/) {
[661]3753 print SCRIPT << "EOF";
[354]3754# allow ssh entry to build
3755#
[891]3756mkdir "$home/$pbac->{$ENV{'PBPROJ'}}/.ssh",0700;
[347]3757# Allow those accessing root to access the build account
[891]3758copy("\$ENV{'HOME'}/.ssh/authorized_keys","$home/$pbac->{$ENV{'PBPROJ'}}/.ssh/authorized_keys");
[320]3759chmod 0600,".ssh/authorized_keys";
[891]3760pb_system("chown -R $pbac->{$ENV{'PBPROJ'}}:$pbac->{$ENV{'PBPROJ'}} $home/$pbac->{$ENV{'PBPROJ'}}","Finish setting up the account env for $pbac->{$ENV{'PBPROJ'}}");
[320]3761
[346]3762EOF
[661]3763}
[353]3764 print SCRIPT << 'EOF';
[347]3765# No passwd for build account only keys
[320]3766$file="/etc/shadow";
[684]3767if (-f $file) {
3768 open(PBFILE,$file) || die "Unable to open $file";
3769 open(PBOUT,"> $file.new") || die "Unable to open $file.new";
3770 while (<PBFILE>) {
[346]3771EOF
[353]3772 print SCRIPT << "EOF";
[684]3773 s/^$pbac->{$ENV{'PBPROJ'}}:\!\!:/$pbac->{$ENV{'PBPROJ'}}:*:/;
3774 s/^$pbac->{$ENV{'PBPROJ'}}:\!:/$pbac->{$ENV{'PBPROJ'}}:*:/; #SLES 9 e.g.
[910]3775 s/^$pbac->{$ENV{'PBPROJ'}}:\\*LK\\*:/$pbac->{$ENV{'PBPROJ'}}:NP:/; #Solaris e.g.
[346]3776EOF
[684]3777 print SCRIPT << 'EOF';
3778 print PBOUT $_;
3779 }
3780 close(PBFILE);
3781 close(PBOUT);
3782 rename("$file.new",$file);
3783 chmod 0640,$file;
3784 }
[320]3785
[1942]3786# TODO: systemd support
[448]3787# Keep the VM in text mode
3788$file="/etc/inittab";
[450]3789if (-f $file) {
3790 open(PBFILE,$file) || die "Unable to open $file";
3791 open(PBOUT,"> $file.new") || die "Unable to open $file.new";
3792 while (<PBFILE>) {
3793 s/^(..):5:initdefault:$/$1:3:initdefault:/;
3794 print PBOUT $_;
3795 }
3796 close(PBFILE);
3797 close(PBOUT);
3798 rename("$file.new",$file);
3799 chmod 0640,$file;
[448]3800}
3801
[320]3802# pb has to be added to portage group on gentoo
3803
[1177]3804# We need to have that pb_distro_get_context function
[888]3805# Get it from Project-Builder::Distribution
[891]3806# And we now need the conf file required for this to work created above
[888]3807
[1177]3808my $pbos = pb_distro_get_context();
3809print "distro tuple: ".Dumper($pbos)."\n";
[891]3810
[346]3811# Adapt sudoers
[888]3812# sudo is not default on Solaris and needs to be installed first
3813# from http://www.sunfreeware.com/programlistsparc10.html#sudo
[1177]3814if ($pbos->{'type'} eq "pkg") {
[888]3815 $file="/usr/local/etc/sudoers";
3816} else {
3817 $file="/etc/sudoers";
3818}
[346]3819open(PBFILE,$file) || die "Unable to open $file";
3820open(PBOUT,"> $file.new") || die "Unable to open $file.new";
3821while (<PBFILE>) {
3822EOF
[1190]3823 # Skip what will be generated
[353]3824 print SCRIPT << "EOF";
[1190]3825 next if (/^$pbac->{$ENV{'PBPROJ'}}\\s+/);
3826 next if (/^Defaults:$pbac->{$ENV{'PBPROJ'}}\\s+/);
[1598]3827 next if (/^Defaults:root\\s+\!requiretty/);
3828 next if (/^Defaults:root\\s+env_keep/);
[346]3829EOF
[353]3830 print SCRIPT << 'EOF';
[1549]3831 s/Defaults\s+requiretty/# disable Defaults: requiretty/;
[346]3832 print PBOUT $_;
3833}
3834close(PBFILE);
3835EOF
[353]3836 print SCRIPT << "EOF";
[1032]3837# Some distro force requiretty at compile time, so disable here
[1952]3838print PBOUT "Defaults:$pbac->{$ENV{'PBPROJ'}} !requiretty\\n";
3839print PBOUT "Defaults:root !requiretty\\n";
[1652]3840EOF
3841 # RH 6.2 sudo doesn't support env_keep
3842 if (($pbos->{'name'} ne "redhat") && ($pbos->{'version'} ne "6.2")) {
3843 print SCRIPT << "EOF";
[1179]3844# Keep proxy configuration while using sudo
[1952]3845print PBOUT "Defaults:$pbac->{$ENV{'PBPROJ'}} env_keep += \\\"http_proxy ftp_proxy\\\"\\n";
3846print PBOUT "Defaults:root env_keep += \\\"http_proxy ftp_proxy\\\"\\n";
[1179]3847EOF
[1652]3848 }
[1179]3849 # Try to restrict security to what is really needed
3850 if ($vtype =~ /^vm/) {
[1197]3851 my $hpath = pb_distro_get_param($pbos,pb_conf_get("ospathcmd-halt"));
[1733]3852 my @sudocmds = pb_get_sudocmds($pbos,$ntpline,"sudo $hpath","sudo /bin/date");
[1179]3853 print SCRIPT << "EOF";
3854# This is needed in order to be able on VM to halt the machine from the $pbac->{$ENV{'PBPROJ'}} account at least
3855# Build account $pbac->{$ENV{'PBPROJ'}} in VM also needs to setup date and install deps.
3856# Nothing else should be needed
3857EOF
[1189]3858 foreach my $c (@sudocmds) {
[1426]3859 print SCRIPT "print PBOUT \"$pbac->{$ENV{'PBPROJ'}} ALL = NOPASSWD: $c\\n\";\n";
[1179]3860 }
3861 } elsif ($vtype =~ /^rm/) {
[1190]3862 my @sudocmds = pb_get_sudocmds($pbos,$ntpline);
[1179]3863 print SCRIPT << "EOF";
3864# Build account $pbac->{$ENV{'PBPROJ'}} in RM only needs to setup date and install deps if needed each time
3865EOF
[1189]3866 foreach my $c (@sudocmds) {
[1426]3867 print SCRIPT "print PBOUT \"$pbac->{$ENV{'PBPROJ'}} ALL = NOPASSWD: $c\\n\";\n";
[1179]3868 }
3869 } else {
3870 print SCRIPT << "EOF";
3871# Build account $pbac->{$ENV{'PBPROJ'}} for VE needs to do a lot in the host (and chroot), so allow without restriction for now
[353]3872print PBOUT "$pbac->{$ENV{'PBPROJ'}} ALL=(ALL) NOPASSWD:ALL\n";
[346]3873EOF
[1714]3874 }
[1715]3875 my $sudomode = pb_distro_get_param($pbos,pb_conf_get("ossudoersmode"));
[353]3876 print SCRIPT << 'EOF';
[346]3877close(PBOUT);
3878rename("$file.new",$file);
[1715]3879EOF
3880 print SCRIPT << "EOF";
3881chmod 0$sudomode,\$file;
[346]3882
3883EOF
[891]3884
[1190]3885 if ($vtype =~ /(v|r)m/) {
3886 # Sync date
3887 # do it after sudoers is setup
[1714]3888 print SCRIPT "my \$res = pb_system(\"$ntpline\",\"Updating time with $ntpline\",\"mayfailverbose\");\n";
3889 print SCRIPT "if (\$res != 0) {\n";
3890 # try again with another method
3891 $ntpline = pb_date2v($vtype,$pbos,1);
3892 print SCRIPT " pb_system(\"$ntpline\",\"Updating time with $ntpline\",\"mayfailverbose\");\n";
3893 print SCRIPT "}\n";
[1190]3894 }
[891]3895
3896 print SCRIPT << 'EOF';
[353]3897
[1651]3898# We may need a proxy configuration. Get it from the local env
3899pb_apply_conf_proxy($pbos);
3900
[1109]3901# First install all required packages
[2012]3902pb_system("dnf clean all","Cleaning dnf env","mayfail") if (($pbos->{'name'} eq "fedora") && ($pbos->{'version'} >= 22));
3903pb_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]3904my ($ospkgdep) = pb_conf_get_if("ospkgdep");
3905
[1177]3906my $pkgdep = pb_distro_get_param($pbos,$ospkgdep);
3907pb_distro_installdeps(undef,$pbos,pb_distro_only_deps_needed($pbos,join(' ',split(/,/,$pkgdep))));
[1109]3908
3909EOF
[1177]3910 my $itype = pb_distro_get_param($pbos,pb_conf_get("pbinstalltype"));
[1176]3911 # Install from sandbox mean a file base install
3912 $itype = "file" if (defined $sbx);
[1132]3913 if ($itype =~ /^file/) {
[1140]3914 my $cmdget;
3915 if (defined $sbx) {
3916 # Install from sandbox mean using the result of the just passed sbx2build command
3917 # Get content saved in cms2build
3918 my ($pkg) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
[1432]3919 my $pbextdir = pb_get_extdir();
[1140]3920 die "Unable to get package list" if (not defined $pkg);
3921
3922 # We consider 2 specific packages
3923 my $vertag1 = $pkg->{"ProjectBuilder"};
3924 my $vertag2 = $pkg->{"project-builder"};
3925 # get the version of the current package - maybe different
[1459]3926 pb_log(2,"Vertag1: $vertag1\n");
3927 pb_log(2,"Vertag2: $vertag2\n");
[1140]3928 my ($pbver1,$tmp1) = split(/-/,$vertag1);
3929 my ($pbver2,$tmp2) = split(/-/,$vertag2);
[1432]3930 $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]3931 } else {
[1549]3932 # TODO: shouldn't we have a variable to specify the source file?
3933 # And shouldn't we be getting the one that matches the current pb version?
3934 # For the moment, just take the latest stable one
[1900]3935 my $wget = pb_check_req("wget",0);
3936 $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]3937 }
[1109]3938 print SCRIPT << 'EOF';
3939# Then install manually the missing perl modules
3940my ($osperldep,$osperlver) = pb_conf_get_if("osperldep","osperlver");
3941
[1177]3942my $perldep = pb_distro_get_param($pbos,$osperldep);
[1651]3943my $bashopt = "";
3944$bashopt = "-x" if ($pbdebug ge 1);
3945my $verbopt = "mayfail";
3946$verbopt = "mayfailverbose" if ($pbdebug ge 1);
[1109]3947foreach my $m (split(/,/,$perldep)) {
3948 # Skip empty deps
3949 next if ($m =~ /^\s*$/);
3950 my $dir = $m;
3951 $dir =~ s/-.*//;
[1651]3952 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]3953}
[1140]3954EOF
[1425]3955 print SCRIPT << 'EOF';
3956pb_system("rm -rf ProjectBuilder-* ; rm -rf project-builder-* ; rm -rf `perl -V:installvendorlib | awk -F\"'\" '{print \$2}'`/ProjectBuilder ;
[1109]3957EOF
[1425]3958 print SCRIPT " $cmdget ; ";
3959 print SCRIPT << 'EOF'
3960gzip -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");
3961EOF
[1132]3962 } elsif ($itype =~ /^pkg/) {
[1109]3963 # pkg based install. We need to point to the project-builder.org repository
3964 print SCRIPT << 'EOF';
[1177]3965my $pkgforpb = pb_distro_get_param($pbos,pb_conf_get_if("ospkg"));
3966pb_distro_setuposrepo($pbos);
3967pb_distro_installdeps(undef,$pbos,pb_distro_only_deps_needed($pbos,join(' ',split(/,/,$pkgforpb))));
[1109]3968EOF
3969 } else {
3970 # Unknown install type
3971 die("Unknown install type $itype->{$ENV{'PBPROJ'}} for param pbinstalltype");
3972 }
3973 print SCRIPT << 'EOF';
[2093]3974pb_system("pbdistrocheck",undef,"verbose");
[1600]3975pb_system("pb -h",undef,"verbose");
[357]3976EOF
[1903]3977 if ($vtype eq "ve"){
3978 if ($vetype ne "docker") {
[681]3979 print SCRIPT << 'EOF';
3980# For VE we need to umount some FS at the end
3981
[1603]3982pb_system("umount /proc","Unmounting /proc","mayfail");
[1903]3983EOF
3984 }
3985 print SCRIPT << 'EOF';
[696]3986# Create a basic network file if not already there
3987
3988my $nf="/etc/sysconfig/network";
[1551]3989if ((! -f $nf) && ($pbos->{'type'} eq "rpm") && ($pbos->{'family'} ne "novell")) {
[696]3990 open(NF,"> $nf") || die "Unable to create $nf";
3991 print NF "NETWORKING=yes\n";
3992 print NF "HOSTNAME=localhost\n";
3993 close(NF);
3994}
3995chmod 0755,$nf;
[681]3996EOF
3997 }
3998
[1177]3999 # Adds pb_distro_get_context and all functions needed from ProjectBuilder::Distribution, Conf and Base
[1545]4000 foreach my $m ("ProjectBuilder/Base.pm","ProjectBuilder/Distribution.pm","ProjectBuilder/Conf.pm") {
4001 foreach my $d (@INC) {
4002 my $f = "$d/$m";
[405]4003 if (-f "$f") {
[1545]4004 open(PBD,"$f") || die "Unable to open $f: $!";
[405]4005 while (<PBD>) {
[891]4006 next if (/^package/);
4007 next if (/^use Exporter/);
4008 next if (/^use ProjectBuilder::/);
4009 next if (/^our /);
[405]4010 print SCRIPT $_;
4011 }
4012 close(PBD);
[1545]4013 # We just need the first one of each file wrt @INC - hopefully that's the right one.
4014 last;
[353]4015 }
[347]4016 }
4017 }
[1156]4018 # Use a fake pb_version_init version here
4019 print SCRIPT << "EOF";
4020sub pb_version_init {
4021
4022return("$projectbuilderver","$projectbuilderrev");
4023}
40241;
4025EOF
[353]4026 close(SCRIPT);
[1903]4027 chmod 0755,"$pbscript{$v}";
[353]4028
[1143]4029 $pm->finish if (defined $pbparallel);
[347]4030}
[1176]4031$pm->wait_all_children if (defined $pbparallel);
[1550]4032die "Aborting, one or more of the children failed." if ((not $all_ok) && ($Global::pb_stop_on_error));
[1903]4033
[1942]4034# These build scripts need to be run as root and force stop of VM at end
4035$ENV{'PBACCOUNT'} = "root";
4036
[1909]4037$sbx = "" if (not defined $sbx);
[1903]4038# Launch the VM/VE/RM
4039pb_log(2,"DEBUG: before parallel launch, pbscript hash is:".Dumper(%pbscript)."\n");
[1958]4040pb_parallel_launchv(\%pbscript,$vtype,uc($vtype)."Script".$sbx,$pbstep,$pbimage,$pbforce,0,$pbsnap);
[1952]4041
[353]4042return;
[346]4043}
4044
[772]4045# Function to create a snapshot named 'pb' for VMs and a compressed tar for VEs
4046sub pb_snap2v {
[748]4047
4048my $vtype = shift;
[1907]4049my $pbstep = 2;
[748]4050
[772]4051my ($vm,$all) = pb_get2v($vtype);
[748]4052
4053# Script generated
[1708]4054my $pbscript = "$ENV{'PBDESTDIR'}/snapv.$$";
[748]4055
[898]4056my ($pbac) = pb_conf_get($vtype."login");
4057
[748]4058foreach my $v (@$vm) {
[1138]4059 if ($vtype eq "ve") {
4060 # Get distro context
[1177]4061 my $pbos = pb_distro_get_context($v);
[1138]4062 my ($vepath) = pb_conf_get("vepath");
[971]4063
[1138]4064 # Test if an existing snapshot exists and remove it if there is a VE
[1177]4065 if ((-f "$vepath->{$ENV{'PBPROJ'}}/$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}.tar.gz") &&
4066 (! -d "$vepath->{$ENV{'PBPROJ'}}/$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}")) {
4067 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]4068 }
[971]4069 }
4070
[748]4071 # Prepare the script to be executed on the VM/VE
4072 open(SCRIPT,"> $pbscript") || die "Unable to create $pbscript";
4073 print SCRIPT << 'EOF';
4074 #!/bin/bash
[776]4075 sleep 2
[748]4076EOF
4077 close(SCRIPT);
4078 chmod 0755,"$pbscript";
4079
4080 # Force shutdown of VM/VE
4081 # Force snapshot of VM/VE
[1903]4082 pb_script2v($pbscript,$vtype,$pbstep,1,$v,1);
[748]4083}
4084return;
4085}
4086
[1176]4087# Function to update VMs/VEs/RMs with the latest distribution content
[1111]4088sub pb_update2v {
4089
4090my $vtype = shift;
[1903]4091my $pbstep = 2;
[1111]4092
4093my ($vm,$all) = pb_get2v($vtype);
4094
4095# Script generated
[1708]4096my $pbscript = "$ENV{'PBDESTDIR'}/updatev.$$";
[1111]4097
4098my ($pbac) = pb_conf_get($vtype."login");
4099
4100foreach my $v (@$vm) {
4101 # Get distro context
[1177]4102 my $pbos = pb_distro_get_context($v);
[1111]4103
[1176]4104 # Prepare the script to be executed on the VM/VE/RM
[1111]4105 # in $ENV{'PBDESTDIR'}/updatev
4106 open(SCRIPT,"> $pbscript") || die "Unable to create $pbscript";
4107
4108 print SCRIPT << 'EOF';
4109 #!/bin/bash
4110 sleep 2
4111EOF
4112 # VE needs a good /proc
[1907]4113 $vetype = pb_ve_get_type($vetype);
[1903]4114 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1179]4115 print SCRIPT "sudo /bin/mount -t proc /proc /proc\n";
[1111]4116 }
[1177]4117 print SCRIPT "$pbos->{'update'}\n";
[1903]4118 if (($vtype eq "ve") && ($vetype ne "docker")) {
[1179]4119 print SCRIPT "sudo /bin/umount /proc\n";
[1111]4120 }
4121 close(SCRIPT);
4122 chmod 0755,"$pbscript";
4123
4124 # Force shutdown of VM except
[1903]4125 pb_script2v($pbscript,$vtype,$pbstep,1,$v);
[1111]4126}
4127return;
4128}
4129
[471]4130sub pb_announce {
4131
[1386]4132 my $antype = shift;
4133
[473]4134 # Get all required parameters
[1686]4135 my ($pbpackager,$pbrepo) = pb_conf_get("pbpackager","pbrepo");
[1392]4136 my ($pkgv, $pkgt, $testver) = pb_conf_get_if("pkgver","pkgtag","testver");
4137 if (((not defined $testver) || (not defined $testver->{$ENV{'PBPROJ'}}) || ($testver->{$ENV{'PBPROJ'}} !~ /true/i)) && ($antype eq "Clean")) {
4138 # We just clean for test versions
4139 pb_log(0,"Unable to clean SSH repository for non testver version\n");
4140 return;
4141 }
[471]4142 my $pkg = pb_cms_get_pkg($defpkgdir,$extpkgdir);
4143 my @pkgs = @$pkg;
4144 my %pkgs;
4145 my $first = 0;
4146
[1282]4147 # Get all distros concerned
4148 my $pbos = pb_distro_get_context();
4149 my $distrolist = pb_get_distros($pbos,undef);
4150 my %dl;
[1386]4151 my %theorlist;
4152 my %archlist;
[1282]4153 foreach my $d (split(/,/,$distrolist)) {
[1386]4154 my ($d1,$d2,$d3) = split(/-/,$d);
[1282]4155 $dl{$d1}++;
4156 }
4157
[473]4158 # Command to find packages on repo
[1282]4159 my $findstr = "find ".join(" ",keys %dl)." ";
[1392]4160 my $srcstr = "";
[473]4161 # Generated announce files
4162 my @files;
[471]4163
4164 foreach my $pbpkg (@pkgs) {
4165 if ($first != 0) {
4166 $findstr .= "-o ";
4167 }
4168 $first++;
4169 if ((defined $pkgv) && (defined $pkgv->{$pbpkg})) {
4170 $pbver = $pkgv->{$pbpkg};
4171 } else {
4172 $pbver = $ENV{'PBPROJVER'};
4173 }
4174 if ((defined $pkgt) && (defined $pkgt->{$pbpkg})) {
4175 $pbtag = $pkgt->{$pbpkg};
4176 } else {
4177 $pbtag = $ENV{'PBPROJTAG'};
4178 }
4179
[547]4180 # TODO: use virtual/real names here now
[1285]4181 my $pbrealpkg = $pbpkg;
4182 my $pbrealpkgrpm = pb_cms_get_real_pkg($pbpkg,"rpm");
4183 my $pbrealpkgdeb = pb_cms_get_real_pkg($pbpkg,"deb");
[1392]4184 if ($antype eq "Clean") {
[1432]4185 # We only clean test versions anyway
4186 $pbtag = "0";
4187 my $nver = $pbver;
4188 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]";
4189 $pbver .= $ntag;
[1728]4190 $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]4191 $srcstr .= "src/$pbrealpkg-$pbver.tar.gz src/$pbrealpkg-$pbver.pbconf.tar.gz ";
[1392]4192 } else {
[1703]4193 # "Announce" and "Check"
[1420]4194 my @date=pb_get_date();
4195 # the matching is only done on packages made the same day for test version. Hopefully this is enough
[1703]4196 my $nver;
4197 if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i)) {
[1432]4198 $pbtag = "0";
4199 my $ntag .= strftime("%Y%m%d*", @date);
[2085]4200 $nver = $pbver."_p$ntag*";
4201 $pbver .= "$ntag*";
[1703]4202 } else {
4203 $nver = $pbver."-r$pbtag";
[1432]4204 }
[1728]4205 $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]4206 }
[473]4207
[1386]4208 if ($antype eq "Announce") {
4209 my $chglog;
[473]4210
[1386]4211 pb_cms_init($pbinit);
4212 # Get project info on log file and generate tmp files used later on
4213 $chglog = "$ENV{'PBROOTDIR'}/$pbpkg/pbcl";
4214 $chglog = "$ENV{'PBROOTDIR'}/pbcl" if (! -f $chglog);
4215 $chglog = undef if (! -f $chglog);
[473]4216
[1386]4217 open(OUT,"> $ENV{'PBTMP'}/$pbpkg.ann") || die "Unable to create $ENV{'PBTMP'}/$pbpkg.ann: $!";
4218 my $pb;
4219 $pb->{'realpkg'} = $pbrealpkg;
4220 $pb->{'ver'} = $pbver;
4221 $pb->{'tag'} = $pbtag;
4222 $pb->{'date'} = $pbdate;
[1432]4223 $pb->{'extdir'} = pb_get_extdir();
[1386]4224 $pb->{'chglog'} = $chglog;
4225 $pb->{'packager'} = $pbpackager;
4226 $pb->{'proj'} = $ENV{'PBPROJ'};
4227 $pb->{'repo'} = $pbrepo;
4228 $pb->{'pbos'}->{'type'} = "announce";
4229 $pb->{'pbos'}->{'suffix'} = "none";
4230 pb_changelog($pb,\*OUT,"yes");
4231 close(OUT);
4232 push(@files,"$ENV{'PBTMP'}/$pbpkg.ann");
[1392]4233 } elsif ($antype eq "Check") {
[1386]4234 # For the check we also build the theoritical complete list we should get
4235 foreach my $d (split(/,/,$distrolist)) {
4236 $pbos = pb_distro_get_context($d);
4237 if ($pbos->{'type'} eq "rpm") {
4238 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}/$pbrealpkgrpm-$pbver-$pbtag$pbos->{'suffix'}"} = 0;
4239 } elsif ($pbos->{'type'} eq "deb") {
4240 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkgdeb"."_$pbver-$pbtag"} = 0;
[1420]4241 # TODO are we always using the last arch ?
[1386]4242 $archlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkgdeb"."_$pbver-$pbtag"} = "$pbos->{'arch'}";
4243 } elsif ($pbos->{'type'} eq "ebuild") {
[1424]4244 my $prefix = "-r";
4245 $prefix = "_p" if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i));
4246 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkg-$pbver$prefix$pbtag.ebuild"} = 0;
4247 $archlist{"$pbos->{'name'}/$pbos->{'version'}/$pbrealpkg-$pbver$prefix$pbtag.ebuild"} = "$pbos->{'arch'}";
[1386]4248 } elsif ($pbos->{'type'} eq "pkg") {
[1728]4249 $theorlist{"$pbos->{'name'}/$pbos->{'version'}/$pbos->{'arch'}/$pbrealpkg-$pbver-$pbtag.pkg.gz"} = 0;
[1386]4250 } else {
4251 pb_log(1,"No theoritical list possible for type $pbos->{'type'}\n");
4252 }
4253 }
4254 }
[1780]4255 pb_log(2,"theorlist initial: ".Dumper(%theorlist)."\n");
4256 pb_log(2,"archlist: ".Dumper(%archlist)."\n");
[471]4257 }
[1392]4258 if ($antype eq "Announce") {
4259 $findstr .= " | grep -Ev \'src.rpm\'";
4260 } elsif ($antype eq "Clean") {
4261 $findstr .= " | xargs rm -f -v $srcstr ";
4262 }
[471]4263
4264 # Prepare the command to run and execute it
4265 open(PBS,"> $ENV{'PBTMP'}/pbscript") || die "Unable to create $ENV{'PBTMP'}/pbscript";
[1392]4266 print PBS "#!/bin/bash\n";
[1282]4267 print PBS "set -x\n" if ($pbdebug gt 1);
[1295]4268 print PBS "$findstr | sort 2> /dev/null\n";
[471]4269 close(PBS);
4270 chmod 0755,"$ENV{'PBTMP'}/pbscript";
[1903]4271 pb_send2target("Announce","$ENV{'PBTMP'}/pbscript");
[471]4272
[490]4273 my $sl = "Project $ENV{'PBPROJ'} version $ENV{'PBPROJVER'} is now available";
[1386]4274 if ($antype eq "Announce") {
4275 # Get subject line
4276 pb_log(0,"Please enter the title of your announce\n");
4277 pb_log(0,"(By default: $sl)\n");
4278 my $sl2 = <STDIN>;
4279 $sl = $sl2 if ($sl2 !~ /^$/);
[490]4280
[1386]4281 # Prepare a template of announce
4282 open(ANN,"> $ENV{'PBTMP'}/announce.html") || die "Unable to create $ENV{'PBTMP'}/announce.html: $!";
4283 print ANN << "EOF";
[490]4284$sl</p>
[471]4285
[473]4286<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]4287<p>
4288Now available at <a href="$pbrepo->{$ENV{'PBPROJ'}}">$pbrepo->{$ENV{'PBPROJ'}}</a>
4289</p>
4290<p>
4291EOF
[1386]4292 }
4293
[1137]4294 open(LOG,"$ENV{'PBTMP'}/system.$$.log") || die "Unable to read $ENV{'PBTMP'}/system.$$.log: $!";
[1386]4295 if ($antype eq "Announce") {
4296 my $col = 2;
4297 my $i = 1;
4298 print ANN << 'EOF';
[1440]4299<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
[473]4300<TR>
4301EOF
[1386]4302 while (<LOG>) {
4303 print ANN "<TD><A HREF=\"$pbrepo->{$ENV{'PBPROJ'}}/$_\">$_</A></TD>";
4304 $i++;
4305 if ($i > $col) {
4306 print ANN "</TR>\n<TR>";
4307 $i = 1;
4308 }
[473]4309 }
[1393]4310 } elsif ($antype eq "Clean") {
4311 while (<LOG>) {
4312 # skip errors
4313 next if ($_ !~ /^removed /);
4314 pb_log(0,"$_");
4315 }
[1386]4316 } else {
[1703]4317 # In "Check" mode we need to compare the 2 lists (real and theoritical)
[1386]4318 while (<LOG>) {
4319 # Get package name and remove what is in extra for the theoritical list (arch at the end)
4320 chomp();
4321 # skip find errors
4322 next if (/^find:/);
4323 my $p = $_;
4324 $p =~ s/\.(i[3456]86|x86_64|noarch|src)\.rpm$//;
[1703]4325 $p =~ s/_(i[3456]86|amd64|all)\.deb$//;
[1424]4326 $p =~ s/(-0\.[0-9]{8})[0-9]{6}/$1*/ if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i));
4327 $p =~ s/(-r|_p[0-9]+)\.ebuild/$1*/ if ((defined $testver) && (defined $testver->{$ENV{'PBPROJ'}}) && ($testver->{$ENV{'PBPROJ'}} =~ /true/i));
[1386]4328 $theorlist{$p} = -2 if (not defined $theorlist{$p});
4329 $theorlist{$p} = $theorlist{$p} + 1;
4330 }
[1780]4331 pb_log(2,"theorlist after check: ".Dumper(%theorlist)."\n");
[471]4332 }
4333 close(LOG);
[1386]4334
[1393]4335 # Nothing more for the cleanssh case
4336 return if ($antype eq "Clean");
4337
[1386]4338 if ($antype eq "Check") {
4339 my ($chkex) = pb_conf_get_if("checkexclude");
4340 my $vmbuildlist = "";
4341 my $vebuildlist = "";
4342 my $rmbuildlist = "";
4343 my @pt = pb_conf_get_if("vmlist","velist","rmlist");
4344 foreach my $t (sort keys %theorlist) {
4345 if (defined $theorlist{$t} and $theorlist{$t} >= 1) {
4346 pb_log(1,"Packages found for $t\n");
4347 } elsif (defined $theorlist{$t} and $theorlist{$t} < 0) {
4348 pb_log(0,"Extra Package found for $t\n");
4349 } else {
[1420]4350 pb_log(2,"Analyzing $t\n");
[1386]4351 my ($os,$ver,$arch,$package) = split(/\//,$t);
4352 # Some distro have no arch subdir
4353 if (not defined $package) {
4354 $package = $arch;
4355 # TODO: If both arch have failed, we just make the last one
[1780]4356 $arch = $archlist{$t} if (defined $archlist{$t});
[1386]4357 }
4358 my $pbos = pb_distro_get_context("$os-$ver-$arch");
4359 my $pkgn = $package;
4360 if ($pbos->{'type'} ne "deb") {
4361 # package name is more easily found from the end for non deb
4362 # as '-' is the separator, but it can also be used in names
4363 $pkgn = reverse($package);
4364 # search the second '-' and isolate the now last part which is the full name
4365 $pkgn =~ s/([^-]+)-([^-]+)-([\S])+$/$3/;
4366 } else {
4367 $pkgn =~ s/([^_]+)_([\S])+$/$2/;
4368 }
4369 my $found = 0;
4370 # Handle the exclusion of OSes
4371 my $excl = "";
4372 $excl .= $chkex->{$pkgn} if (defined $chkex->{$pkgn});
4373 $excl .= $chkex->{"all"} if (defined $chkex->{"all"});
[1728]4374
4375 pb_log(2,"Searching in excl $excl\n");
[1386]4376 foreach my $ex (split(/,/,$excl)) {
4377 $found = 1 if ("$os-$ver-$arch" =~ /^$ex/);
4378 }
4379 # Skip as excluded
4380 next if ($found == 1);
[1388]4381 pb_log(0,"Package NOT found for $t\n");
4382 # Avoid duplicates in list
[1386]4383 next if ($vmbuildlist =~ /$os-$ver-$arch/);
4384 next if ($vebuildlist =~ /$os-$ver-$arch/);
4385 next if ($rmbuildlist =~ /$os-$ver-$arch/);
4386 # check with which method we need to build
4387 if ((defined $pt[0]->{$ENV{'PBPROJ'}}) and ($pt[0]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4388 $vmbuildlist = "$os-$ver-$arch" if ($vmbuildlist eq "");
[1388]4389 $vmbuildlist .= ",$os-$ver-$arch" if ($vmbuildlist !~ /$os-$ver-$arch/);
4390 next;
[1386]4391 }
4392 if ((defined $pt[1]->{$ENV{'PBPROJ'}}) and ($pt[1]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4393 $vebuildlist = "$os-$ver-$arch" if ($vebuildlist eq "");
[1388]4394 $vebuildlist .= ",$os-$ver-$arch" if ($vebuildlist !~ /$os-$ver-$arch/);
4395 next;
[1386]4396 }
4397 if ((defined $pt[2]->{$ENV{'PBPROJ'}}) and ($pt[2]->{$ENV{'PBPROJ'}} =~ /$os-$ver-$arch/)) {
4398 $rmbuildlist = "$os-$ver-$arch" if ($rmbuildlist eq "");
[1388]4399 $rmbuildlist .= ",$os-$ver-$arch" if ($rmbuildlist !~ /$os-$ver-$arch/);
[1386]4400 }
4401 }
4402 }
4403 # If we want to rebuild automatically, let's do it
4404 if (defined $opts{'rebuild'}) {
4405 # SandBox or CMS
4406 pb_log(0,"Rebuilding from SandBox\n");
4407 pb_log(0,"for VMs: $vmbuildlist\n") if ($vmbuildlist ne "");
4408 pb_log(0,"for VEs: $vebuildlist\n") if ($vebuildlist ne "");
4409 pb_log(0,"for RMs: $rmbuildlist\n") if ($rmbuildlist ne "");
4410 pb_cms2build("SandBox");
4411 # Which mode
4412 $ENV{'PBV'} = $vmbuildlist;
4413 pb_build2v("vm","build") if ($vmbuildlist ne "");
4414 $ENV{'PBV'} = $vebuildlist;
4415 pb_build2v("ve","build") if ($vebuildlist ne "");
4416 $ENV{'PBV'} = $rmbuildlist;
4417 pb_build2v("rm","build") if ($rmbuildlist ne "");
4418 }
4419 # For the check part this is now finished
4420 return;
4421 }
4422
[473]4423 print ANN << "EOF";
4424</TR>
4425</TABLE>
4426</p>
[471]4427
[473]4428<p>As usual source packages are also available in the same directory.</p>
4429
4430<p>
4431Changes are :
4432</p>
4433<p>
4434EOF
4435 # Get each package changelog content
4436 foreach my $f (sort(@files)) {
4437 open(IN,"$f") || die "Unable to read $f:$!";
4438 while (<IN>) {
4439 print ANN $_;
4440 }
4441 close(IN);
4442 print ANN "</p><p>\n";
4443 }
4444 print ANN "</p>\n";
[471]4445 close(ANN);
[473]4446
4447 # Allow for modification
[974]4448 my $editor = "vi";
4449 $editor = $ENV{'EDITOR'} if (defined $ENV{'EDITOR'});
4450 pb_system("$editor $ENV{'PBTMP'}/announce.html","Allowing modification of the announce","noredir");
[473]4451
4452 # Store it in DB for external usage (Web pages generation)
[1870]4453 my $dbh = pb_connect_db();
[473]4454
4455 # To read whole file
4456 local $/;
4457 open(ANN,"$ENV{'PBTMP'}/announce.html") || die "Unable to read $ENV{'PBTMP'}/announce.html: $!";
4458 my $announce = <ANN>;
4459 close(ANN);
4460
4461 pb_log(2,"INSERT INTO announces VALUES (NULL, $pbdate, $announce)");
4462 my $sth = $dbh->prepare(qq{INSERT INTO announces VALUES (NULL,?,?)})
[1870]4463 || die "Unable to insert into db";
[473]4464 $sth->execute($pbdate, $announce);
[698]4465 $sth->finish();
[473]4466 $dbh->disconnect;
4467
4468 # Then deliver it on the Web
4469 # $TOOLHOME/livwww www
4470
4471 # Mail it to project's ML
4472 open(ML,"| w3m -dump -T text/html > $ENV{'PBTMP'}/announce.txt") || die "Unable to create $ENV{'PBTMP'}/announce.txt: $!";
4473 print ML << 'EOF';
4474<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x html1/DTD/xhtml1-strict.dtd">
4475
4476<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" xml:lang="en" lang="en">
4477 <head>
4478 </head>
4479 <body>
4480 <p>
4481EOF
4482 open(ANN,"$ENV{'PBTMP'}/announce.html") || die "Unable to read $ENV{'PBTMP'}/announce.html: $!";
4483 while(<ANN>) {
4484 print ML $_;
4485 }
4486 print ML << 'EOF';
4487</body>
4488</html>
4489EOF
4490 close(ML);
4491
[477]4492 # To read whole file
4493 local $/;
4494 open(ANN,"$ENV{'PBTMP'}/announce.txt") || die "Unable to read $ENV{'PBTMP'}/announce.txt: $!";
4495 my $msg = <ANN>;
4496 close(ANN);
4497
4498 # Preparation of headers
[1134]4499 eval
4500 {
4501 require Mail::Sendmail;
4502 Mail::Sendmail->import();
4503 };
4504 if ($@) {
4505 # Mail::Sendmail not found not sending mail !
4506 pb_log(0,"No Mail::Sendmail module found so not sending any mail !\n");
4507 } else {
[1686]4508 my ($pbml,$pbsmtp) = pb_conf_get("pbml","pbsmtp");
[1134]4509 my %mail = (
[477]4510 To => $pbml->{$ENV{'PBPROJ'}},
4511 From => $pbpackager->{$ENV{'PBPROJ'}},
4512 Smtp => $pbsmtp->{$ENV{'PBPROJ'}},
4513 Body => $msg,
[490]4514 Subject => "[ANNOUNCE] $sl",
[477]4515 );
4516
[1134]4517 # Send mail
4518 if (! sendmail(%mail)) {
4519 if ((defined $Mail::Sendmail::error) and (defined $Mail::Sendmail::log)) {
4520 die "Unable to send mail ($Mail::Sendmail::error): $Mail::Sendmail::log";
4521 }
[1109]4522 }
4523 }
[471]4524}
4525
[547]4526#
4527# Creates a set of HTML file containing the news for the project
4528# based on what has been generated by the pb_announce function
4529#
4530sub pb_web_news2html {
4531
[556]4532 my $dest = shift || $ENV{'PBTMP'};
4533
[547]4534 # Get all required parameters
[1064]4535 my ($pkgv, $pkgt) = pb_conf_get_if("pkgver","pkgtag");
[547]4536
4537
[1870]4538 my $dbh = pb_connect_db();
[547]4539 # For date handling
4540 $ENV{LANGUAGE}="C";
[559]4541 my $firstjan = strftime("%Y-%m-%d", 0, 0, 0, 1, 0, localtime->year(), 0, 0, -1);
4542 my $oldfirst = strftime("%Y-%m-%d", 0, 0, 0, 1, 0, localtime->year()-1, 0, 0, -1);
4543 pb_log(2,"firstjan: $firstjan, oldfirst: $oldfirst, pbdate:$pbdate\n");
[547]4544 my $all = $dbh->selectall_arrayref("SELECT id,date,announce FROM announces ORDER BY date DESC");
[556]4545 my %news;
4546 $news{"cy"} = ""; # current year's news
4547 $news{"ly"} = ""; # last year news
4548 $news{"py"} = ""; # previous years news
4549 $news{"fp"} = ""; # first page news
[547]4550 my $cpt = 4; # how many news for first page
4551 # Extract info from DB
4552 foreach my $row (@$all) {
4553 my ($id, $date, $announce) = @$row;
[559]4554 $news{"cy"} = $news{"cy"}."<p><B>$date</B> $announce\n" if ((($date cmp $pbdate) le 0) && (($firstjan cmp $date) le 0));
4555 $news{"ly"} = $news{"ly"}."<p><B>$date</B> $announce\n" if ((($date cmp $firstjan) le 0) && (($oldfirst cmp $date) le 0));
4556 $news{"py"} = $news{"py"}."<p><B>$date</B> $announce\n" if (($date cmp $oldfirst) le 0);
[556]4557 $news{"fp"} = $news{"fp"}."<p><B>$date</B> $announce\n" if ($cpt > 0);
[547]4558 $cpt--;
4559 }
[556]4560 pb_log(1,"news{fp}: ".$news{"fp"}."\n");
[547]4561 $dbh->disconnect;
[556]4562
4563 # Generate the HTML content
4564 foreach my $pref (keys %news) {
4565 open(NEWS,"> $dest/pb_web_$pref"."news.html") || die "Unable to create $dest/pb_web_$pref"."news.html: $!";
4566 print NEWS "$news{$pref}";
4567 close(NEWS);
4568 }
[547]4569}
4570
[1870]4571sub pb_connect_db {
[556]4572
[1870]4573 # Store in DB for external usage (Web pages generation)
4574 my $db = "$ENV{'PBCONFDIR'}/announces3.sql";
4575
4576 my $precmd = "";
4577 if (! -f $db) {
4578 $precmd = "CREATE TABLE announces (id INTEGER PRIMARY KEY AUTOINCREMENT, date DATE, announce VARCHAR[65535])";
[1875]4579 # we should add the $db to the VCS as well here
[1870]4580 }
4581
4582 my $dbh = DBI->connect("dbi:SQLite:dbname=$db","","",
4583 { RaiseError => 1, AutoCommit => 1 })
4584 || die "Unable to connect to $db";
4585
4586 if ($precmd ne "") {
4587 my $sth = $dbh->prepare(qq{$precmd})
4588 || die "Unable to create table into $db";
4589 $sth->execute();
4590 }
4591
4592 return($dbh);
4593}
4594
4595
[347]4596# Return the SSH key file to use
4597# Potentially create it if needed
4598
4599sub pb_ssh_get {
4600
[2049]4601my $create = shift || 0; # Do not create keys by default. In that case prefer native keys, not pb's ones
[2045]4602my $target = shift || "localhost";
4603my $nport = shift || "22";
[347]4604
[1545]4605my ($pbagent) = pb_conf_get_if("pbusesshagent");
4606# use ssh-agent if asked so.
4607return(undef) if (($create == 0) && (defined $pbagent->{$ENV{'PBPROJ'}}) && ($pbagent->{$ENV{'PBPROJ'}} =~ /true/io));
4608
[347]4609# Check the SSH environment
4610my $keyfile = undef;
4611
[2045]4612# Check whether ecdsa is accepted by the remote host
4613my $ecdsa = 0;
[2047]4614my $dsa = 0;
[2046]4615open(SCAN,"ssh-keyscan -p $nport -t ecdsa $target 2>/dev/null |") || pb_log(0,"Unable to check ECDSA support for $target");
[2045]4616while(<SCAN>) {
4617 $ecdsa = 1 if ($_ =~ /ecdsa-/);
[2049]4618 pb_log(2,"Found ECDSA support on $target ($nport)\n");
[2045]4619}
4620close(SCAN);
4621
[2047]4622open(SCAN,"ssh-keyscan -p $nport -t dsa $target 2>/dev/null |") || pb_log(0,"Unable to check DSA support for $target");
4623while(<SCAN>) {
[2052]4624 $dsa = 1 if ($_ =~ /ssh-dss/);
[2049]4625 pb_log(2,"Found DSA support on $target ($nport)\n");
[2047]4626}
4627close(SCAN);
4628
4629# We have specific keys by default - create them if needed
4630if (!(-e "$ENV{'HOME'}/.ssh/pb_ecdsa") && ($create eq 1)) {
4631 my $res = pb_system("ssh-keygen -q -b 1024 -N '' -f $ENV{'HOME'}/.ssh/pb_ecdsa -t ecdsa","Generating ECDSA SSH keys for pb");
4632 if (($res != 0) && !(-e "$ENV{'HOME'}/.ssh/pb_dsa") && ($create eq 1)) {
[2035]4633 # ecdsa may not be supported if old ssh
[2047]4634 pb_system("ssh-keygen -q -b 1024 -N '' -f $ENV{'HOME'}/.ssh/pb_dsa -t dsa","Generating DSA SSH keys for pb");
[2035]4635 }
[347]4636}
4637
[2047]4638#$keyfile = "$ENV{'HOME'}/.ssh/id_rsa" if (-s "$ENV{'HOME'}/.ssh/id_rsa");
4639# We still favoud DSA and fall back to ECDSA if not available
4640if ($dsa != 0) {
[2049]4641 # And we favour a specific key over a generic one except if in delivery to ftp server
4642 $keyfile = "$ENV{'HOME'}/.ssh/id_dsa" if ((-s "$ENV{'HOME'}/.ssh/id_dsa") && ($create eq 0));
[2047]4643 $keyfile = "$ENV{'HOME'}/.ssh/pb_dsa" if (-s "$ENV{'HOME'}/.ssh/pb_dsa");
4644} else {
[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_ecdsa" if ((-s "$ENV{'HOME'}/.ssh/id_ecdsa") && ($ecdsa != 0) && ($create eq 0));
[2047]4647 $keyfile = "$ENV{'HOME'}/.ssh/pb_ecdsa" if ((-s "$ENV{'HOME'}/.ssh/pb_ecdsa") && ($ecdsa != 0));
4648}
[2053]4649if (defined $keyfile) {
4650 pb_log(2,"Using ssh key file $keyfile\n");
4651} else {
4652 pb_log(0, "Unable to find your public ssh key under $ENV{'HOME'}/.ssh\n");
4653}
[347]4654return($keyfile);
4655}
4656
4657
[1728]4658# Returns the pid of a running VM command using a specific VM file, and the port used if the VM exists
[142]4659sub pb_check_ps {
4660 my $vmcmd = shift;
4661 my $vmm = shift;
[1903]4662 my $vexist = 0; # FALSE by default
[1728]4663 my $vmport = undef; # NONE by default
[142]4664
4665 open(PS, "ps auxhww|") || die "Unable to call ps";
4666 while (<PS>) {
4667 next if (! /$vmcmd/);
4668 next if (! /$vmm/);
[1786]4669 my $void1;
[1903]4670 ($void1, $vexist, $vmport) = split(/ +/,$_,3);
[1728]4671 pb_log(2,"pb_check_ps $vmport\n");
[1786]4672 $vmport =~ s/.*=tcp:127\.0\.0\.1:([0-9]+)-:22.*/$1/;
[1728]4673 chomp($vmport);
[1903]4674 pb_log(2,"pb_check_ps found a VM $vexist using port $vmport\n");
[142]4675 last;
4676 }
[1903]4677 return($vexist,$vmport);
[142]4678}
4679
4680
[77]4681sub pb_extract_build_files {
[25]4682
4683my $src=shift;
4684my $dir=shift;
[26]4685my $ddir=shift;
[500]4686my $mandatory=shift || "spec";
[25]4687
[1219]4688my $flag = "mayfail" if (($mandatory eq "patch") || ($mandatory eq "src"));
[500]4689my $res;
4690
[188]4691if ($src =~ /tar\.gz$/) {
[500]4692 $res = pb_system("tar xfpz $src $dir","Extracting $mandatory files from $src",$flag);
[188]4693} elsif ($src =~ /tar\.bz2$/) {
[500]4694 $res = pb_system("tar xfpj $src $dir","Extracting $mandatory files from $src",$flag);
[188]4695} else {
4696 die "Unknown compression algorithm for $src";
4697}
[500]4698# If not mandatory return now
[1220]4699return() if (($res != 0) and (($mandatory eq "patch") || ($mandatory eq "src")));
[1963]4700return(pb_move_extracted_files($dir,$ddir));
4701}
4702
4703sub pb_move_extracted_files {
4704
4705my $dir = shift;
4706my $ddir = shift;
4707my @files;
4708
[1970]4709# In a recursive function , we need a local var as DIR handle
4710my $bdir;
4711
4712opendir($bdir,"$dir") || confess "Unable to open directory $dir: $!";
4713foreach my $f (readdir($bdir)) {
[25]4714 next if ($f =~ /^\./);
[500]4715 # Skip potential patch dir
4716 next if ($f =~ /^pbpatch/);
[1219]4717 # Skip potential source dir
4718 next if ($f =~ /^pbsrc/);
[1480]4719 # Skip potential backup files
4720 next if ($f =~ /~$/);
[1963]4721 if ((-d "$dir/$f") && (! -l "$dir/$f")) {
4722 # Case of the bug debian subdir
4723 pb_mkdir_p("$ddir/$f");
4724 push @files,pb_move_extracted_files("$dir/$f","$ddir/$f");
4725 } else {
4726 move("$dir/$f","$ddir") || die "Unable to move $dir/$f to $ddir";
4727 pb_log(2,"mv $dir/$f $ddir\n");
4728 push @files,"$ddir/$f";
4729 }
[25]4730}
[1970]4731closedir($bdir);
[26]4732# Not enough but still a first cleanup
[74]4733pb_rm_rf("$dir");
[28]4734return(@files);
[25]4735}
4736
[315]4737sub pb_list_bfiles {
4738
4739my $dir = shift;
4740my $pbpkg = shift;
4741my $bfiles = shift;
4742my $pkgfiles = shift;
4743my $supfiles = shift;
[1363]4744# subdir to keep if recursive mode, empty by default
4745my $subdir = shift || "";
[1367]4746# In a recursive function , we need a local var as DIR handle
4747my $bdir;
[315]4748
[1363]4749pb_log(2,"DEBUG: entering pb_list_bfiles in $dir: ".Dumper($bfiles)."\n");
[1367]4750opendir($bdir,"$dir") || die "Unable to open dir $dir: $!";
4751foreach my $f (readdir($bdir)) {
[1363]4752 pb_log(3,"DEBUG: pb_list_bfiles found $f\n");
[315]4753 next if ($f =~ /^\./);
[1363]4754 if (-d "$dir/$f") {
[1098]4755 # Recurse for directories (Debian 3.0 format e.g.)
[1363]4756 pb_log(2,"DEBUG: pb_list_bfiles recurse in $dir/$f\n");
4757 pb_list_bfiles("$dir/$f",$pbpkg,$bfiles,$pkgfiles,$supfiles,$f);
[1098]4758 next;
4759 }
[1363]4760
4761 my $key = $f;
4762 # if recursive then store also the subdir
4763 $key = "$subdir/$f" if ($subdir ne "");
4764 $bfiles->{$key} = "$dir/$f";
4765 $bfiles->{$key} =~ s~$ENV{'PBROOTDIR'}~~;
[315]4766 if (defined $supfiles->{$pbpkg}) {
[1363]4767 $pkgfiles->{$key} = "$dir/$f" if ($f =~ /$supfiles->{$pbpkg}/);
[315]4768 }
4769}
[1367]4770closedir($bdir);
[1185]4771pb_log(2,"DEBUG: exiting pb_list_bfiles: ".Dumper($bfiles)."\n");
[315]4772}
4773
[1552]4774sub pb_add_comma {
[1185]4775
4776my $str = shift;
4777my $addstr = shift;
4778
4779$str .= "," if (defined $str);
4780$str .= $addstr;
4781return($str);
4782}
4783
[1130]4784sub pb_list_sfiles {
[395]4785
[1130]4786my $sdir = shift;
[1185]4787my $ptr = shift;
[1177]4788my $pbos = shift;
[1130]4789my $extdir = shift;
4790
[1185]4791pb_log(2,"DEBUG: entering pb_list_sfiles: ".Dumper($ptr)."\n");
4792my $key = "$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}";
4793
[1130]4794# Prepare local sources for this distro - They are always applied first - May be a problem one day
4795# This function works for both patches and additional sources
4796foreach my $p (sort(<$sdir/*>)) {
[1552]4797 $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]4798}
4799
4800# Prepare also remote sources to be included - Applied after the local ones
[1185]4801foreach my $p ("all","$pbos->{'os'}","$pbos->{'type'}","$pbos->{'family'}","$pbos->{'name'}","$pbos->{'name'}-$pbos->{'version'}","$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}") {
[1130]4802 my $f = "$extdir.".".$p";
4803 next if (not -f $f);
4804 if (not open(PATCH,$f)) {
4805 pb_display("Unable to open existing external source file content $f\n");
4806 next;
4807 }
4808 while (<PATCH>) {
4809 chomp();
[1552]4810 $ptr->{$key} = pb_add_comma($ptr->{$key},"$_");
[1130]4811 }
4812 close(PATCH);
4813}
[1185]4814pb_log(2,"DEBUG: exiting pb_list_sfiles: ".Dumper($ptr)."\n");
[1186]4815return($ptr);
[1130]4816}
4817
[395]4818#
4819# Return the list of packages we are working on in a non CMS action
4820#
4821sub pb_get_pkg {
4822
4823my @pkgs = ();
4824
[1621]4825# In script actions that file may not exist.
4826return(\@pkgs) if ((not defined $ENV{'PBDESTDIR'}) || (not defined $ENV{'PBPROJVER'}) || (not defined $ENV{'PBPROJTAG'}) || (! -f "$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb"));
4827
[395]4828my ($var) = pb_conf_read("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb","pbpkg");
[1621]4829@pkgs = keys %$var if (defined $var);
[395]4830
[1621]4831pb_log(0,"Packages: ".join(',',@pkgs)."\n") if (@pkgs);
[395]4832return(\@pkgs);
4833}
4834
[1176]4835# Manages VM/RM SSH port communication
[1143]4836sub pb_get_port {
4837
4838my $port = shift;
[1179]4839my $pbos = shift;
[1143]4840my $cmt = shift;
[1179]4841my $nport;
[1143]4842
4843die "No port passed in parameter. Report to dev team\n" if (not defined $port);
[1179]4844# key is project on VM, but machine tuple for RM
4845if ($cmt =~ /^RM/i) {
4846 $nport = $port->{"$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}"};
4847} else {
4848 $nport = $port->{$ENV{'PBPROJ'}};
4849}
4850pb_log(2,"pb_get_port with $nport\n");
[1728]4851if ($cmt =~ /^VM/i) {
4852 # Maybe a port was given as parameter so overwrite
4853 $nport = "$pbport" if (defined $pbport);
4854 # Maybe in // mode so use the env var set up as an offset to the base port
[1942]4855 $nport = $nport + $ENV{'PBVMPORT'} -1 if ((defined $pbparallel) && (defined $ENV{'PBVMPORT'}));
[1143]4856}
[1146]4857pb_log(2,"pb_get_port returns $nport\n");
[1143]4858return($nport);
4859}
4860
4861sub pb_set_port {
4862
4863my ($pid,$ident) = @_;
[1146]4864pb_log(2,"pb_set_port for VM ($pid), id $ident\n");
[1143]4865$ENV{'PBVMPORT'} = $ident;
[1146]4866pb_log(2,"pb_set_port sets PBVMPORT in env to $ENV{'PBVMPORT'}\n");
[1143]4867}
4868
4869sub pb_set_parallel {
4870
4871my $vtype = shift;
4872
[1146]4873pb_log(2,"pb_set_parallel vtype: $vtype\n");
[1143]4874# Take care of memory size if VM, parallel mode and more than 1 action
4875if ((defined $pbparallel) && ($pbparallel ne 1) && ($vtype eq "vm")) {
4876 eval
4877 {
4878 require Linux::SysInfo;
4879 Linux::SysInfo->import();
4880 };
4881 if ($@) {
[1153]4882 # Linux::SysInfo not found
[1388]4883 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]4884 } else {
4885 # Using the memory size
4886 my $si = Linux::SysInfo::sysinfo();
4887 if (not defined $si) {
[1388]4888 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]4889 } else {
4890 # Keep the number of VM whose memory can be allocated
4891 my $ram = $si->{"totalram"}-$si->{"sharedram"}-$si->{"bufferram"};
4892 my $ram2;
[1153]4893 my ($vmmem) = pb_conf_get_if("vmmem");
[1146]4894
[1153]4895 my $v = "default";
4896 if ((defined $vmmem) and (defined $vmmem->{$v})) {
4897 $ram2 = $vmmem->{$v};
[1143]4898 } else {
4899 # Default for KVM/QEMU
4900 $ram2 = 128;
4901 }
4902 $pbparallel = sprintf("%d",$ram/$ram2);
4903 }
[1153]4904 pb_log(1,"Using $pbparallel processes at a time\n");
[1143]4905 }
4906}
[1176]4907pb_log(2,"pb_set_parallel returns: $pbparallel\n") if (defined $pbparallel);
[1143]4908return($pbparallel);
4909}
4910
[1179]4911sub pb_get_sudocmds {
4912
4913my $pbos = shift;
[1714]4914my @cmds = @_;
[1190]4915my %sudocmds;
[1143]4916
[1714]4917pb_log(2,"pb_get_sudocmds entering with lines:".Dumper(@cmds)."\n");
4918foreach my $c (split(/;/,$pbos->{'update'}),split(/;/,$pbos->{'install'}),@cmds) {
[1198]4919 pb_log(2,"pb_get_sudocmds analyses $c\n");
4920 next if ($c !~ /^\s*sudo/);
4921 # remove sudo and leading spaces
4922 $c =~ s/^\s*sudo\s+//;
[1192]4923 # keep only the command, not the params
4924 $c =~ s/([^\s]+)\s.*$/$1/;
[1190]4925 $sudocmds{$c} = "";
[1179]4926}
[1198]4927pb_log(2,"pb_get_sudocmds returns ".Dumper(keys %sudocmds)."\n");
[1190]4928return(keys %sudocmds);
[1179]4929}
4930
[2106]4931sub pb_sign_setenv {
4932
4933my ($passfile, $passphrase, $passpath) = pb_conf_get_if("pbpassfile","pbpassphrase","pbpasspath");
4934$ENV{'PBPASSPHRASE'} = $passphrase->{$ENV{'PBPROJ'}} if ((not defined $ENV{'PBPASSPHRASE'}) && (defined $passphrase->{$ENV{'PBPROJ'}}));
4935$ENV{'PBPASSFILE'} = $passfile->{$ENV{'PBPROJ'}} if ((not defined $ENV{'PBPASSFILE'})&& (defined $passfile->{$ENV{'PBPROJ'}})) ;
4936$ENV{'PBPASSPATH'} = $passpath->{$ENV{'PBPROJ'}} if ((not defined $ENV{'PBPASSPATH'})&& (defined $passpath->{$ENV{'PBPROJ'}})) ;
4937
4938eval
4939{
4940 require RPM4::Sign;
4941 RPM4::Sign->import();
4942};
4943if ($@) {
4944 # RPM4::Sign not found
4945 pb_log(1,"WARNING: Install RPM4::Sign to benefit from automatic package signing.\n");
[2122]4946 return(undef);
[2106]4947} else {
4948 return(undef) if (((not defined $ENV{'PBPASSPHRASE'}) and (not defined $ENV{'PBPASSFILE'})) || (not defined $ENV{'PBPACKAGER'}) || (not defined $ENV{'PBPASSPATH'}));
4949 my $sign = RPM4::Sign->new(
4950 passphrase => $ENV{'PBPASSPHRASE'},
4951 name => $ENV{'PBPACKAGER'},
4952 path => $ENV{'PBPASSPATH'},
4953 password_file => $ENV{'PBPASSFILE'},
4954 );
4955 return(undef) if (not defined $sign);
4956 return(undef) if (not defined $sign->{name});
4957 return(undef) if (not defined $sign->{path});
4958 return(undef) if ((not defined $sign->{passphrase}) && (not defined $sign->{password_file}));
4959 return(undef) if (not defined $sign->{keyid});
4960
4961 return($sign);
4962}
4963}
4964
[2122]4965# Cf: http://wiki.debian.org/SecureApt
4966
[2106]4967sub pb_sign_file {
4968
4969my $file = shift;
4970
4971eval
4972{
4973 require Crypt::OpenPGP;
4974 Crypt::OpenPGP->import();
4975};
4976if ($@) {
4977 # Crypt::OpenPGP not found
4978 pb_log(1,"WARNING: Install Crypt::OpenPGP to benefit from debian Release file signing.\n");
4979} else {
4980 my $sign = pb_sign_setenv();
4981 my $pgp = Crypt::OpenPGP->new;
4982 my $pgpsign = $pgp->sign(
4983 Filename => $file,
4984 KeyID => $sign->{keyid},
4985 Passphrase => $sign->{passphrase},
4986 Detach => 1,
4987 Armour => 1,
4988 );
4989 open(DEST, "> $file.gpg") || confess "Unable to write to $file.gpg";
4990 print DEST $pgpsign if (defined $pgpsign);
4991 close(DEST);
4992}
4993}
4994
[1278]4995sub pb_sign_pkgs {
[1179]4996
[1278]4997my $pbos = shift;
4998my $made = shift;
4999
5000pb_log(2,"entering pb_sign_pkg: $made ".Dumper($pbos)."\n");
[1279]5001# Remove extra spaces
5002$made =~ s/\s+/ /g;
5003$made =~ s/^\s//g;
5004$made =~ s/\s$//g;
5005
[1278]5006if ($pbos->{'type'} eq "rpm") {
[2106]5007 my $sign = pb_sign_setenv();
[2122]5008 if (defined $sign) {
5009 pb_log(0,"Signing RPM packages...\n");
5010 pb_log(2,"pb_sign_pkg: pkgs:".Dumper(split(/ /,$made))."\n");
5011 $sign->rpmssign(split(/ /,$made));
5012 }
[1278]5013} elsif ($pbos->{'type'} eq "deb") {
[1279]5014 my $changes = "";
5015 foreach my $c (split(/ /,$made)) {
[1537]5016 $changes .= " $ENV{'PBBUILDDIR'}/$c" if (($c =~ /\.changes$/) && (-f "$ENV{PBBUILDDIR}/$c"));
[1279]5017 }
[1386]5018 my $debsigncmd = pb_check_req("debsign",1);
[1595]5019 pb_system("$debsigncmd -m\'$ENV{'PBPACKAGER'}\' $changes","Signing DEB packages","mayfail") if (($changes ne "") && (defined $debsigncmd));
[1278]5020} else {
5021 pb_log(0,"I don't know yet how to sign packages for type $pbos->{'type'}.\nPlease give feedback to dev team\n");
[1279]5022}
[1278]5023pb_log(2,"exiting pb_sign_pkg\n");
5024}
5025
[1917]5026# return list of all distributions supported, comma separated
[1282]5027sub pb_get_distros {
5028
5029my $pbos = shift;
5030my $pbtarget = shift;
5031
[1553]5032my @dists = ("$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}");
[1282]5033
5034# Get list of distributions for which we need to generate build files if no target
[1402]5035if (not defined $pbtarget) {
[1282]5036 my @pt = pb_conf_get_if("vmlist","velist","rmlist");
[1552]5037 foreach my $pt (@pt) {
5038 push(@dists, split(/,/, $pt->{$ENV{PBPROJ}})) if defined $pt->{$ENV{PBPROJ}};
[1282]5039 }
[1552]5040 # remove any whitespace
5041 grep(s/\s+//go, @dists);
[1282]5042}
[1552]5043return(join(",",@dists));
[1282]5044}
5045
[1907]5046sub pb_get_extdir {
[1432]5047
5048 # the pbrc file should contain it and whatever the key, we take it
5049 my ($ed) = pb_conf_read("$ENV{'PBDESTDIR'}/pbrc","pbextdir");
5050 pb_log(2,"ed: ".Dumper($ed)."\n");
5051 my $pbextdir = "";
5052 foreach my $k (keys %$ed) {
5053 $pbextdir = $ed->{$k};
[1459]5054 # In case we have an empty field, empty it completely
5055 pb_log(2,"pbextdir: ***$pbextdir***\n");
5056 $pbextdir =~ s/^\s*$//;
[1432]5057 }
[1459]5058 pb_log(2,"pbextdir: ***$pbextdir***\n");
[1432]5059 return($pbextdir);
5060}
5061
[1907]5062# Unused now
5063sub pb_keep_step {
5064
5065my $pbos = shift;
5066my $pbstep = shift;
5067
5068$pbstep = 3 if (not defined $pbstep);
5069
5070my %h;
5071my $h = \%h;
5072$h = pb_conf_cache("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb",$h);
5073$h->{'pbstep'}->{"$pbos->{'name'}-$pbos->{'version'}-$pbos->{'arch'}"} = $pbstep;
5074pb_conf_write("$ENV{'PBDESTDIR'}/$ENV{'PBPROJVER'}-$ENV{'PBPROJTAG'}.pb",$h);
5075}
5076
5077sub create_solaris_prototype {
5078
5079 my $uidgid = "bin bin";
5080 my $pkgdestdir = $ENV{'PBSOLDESTDIR'};
5081
5082 return if ($_ =~ /^$pkgdestdir$/);
5083 if (-d $_) {
5084 my $n = $File::Find::name;
5085 $n =~ s~$pkgdestdir/~~;
5086 print PROTO "d none $n 0755 $uidgid\n";
5087 } elsif (-x $_) {
5088 my $n = $File::Find::name;
5089 $n =~ s~$pkgdestdir/~~;
5090 print PROTO "f none $n 0755 $uidgid\n";
5091 } elsif (-f $_) {
5092 my $n = $File::Find::name;
5093 $n =~ s~$pkgdestdir/~~;
5094 print PROTO "f none $n 0644 $uidgid\n";
5095 }
5096}
5097
[1952]5098sub pb_ssh_setup {
5099
5100my $vtype = shift;
5101my $nport = shift;
[1907]5102
[1952]5103my $keyfile;
5104my $vmhost;
5105
[2049]5106pb_log(1,"Entering pb_ssh_setup\n");
[1952]5107($vmhost) = pb_conf_get($vtype."host");
5108# Prepare the key to be used and transfered remotely
[2045]5109$keyfile = pb_ssh_get(1,$vmhost->{$ENV{'PBPROJ'}},$nport);
[2053]5110return if (not defined $keyfile);
[1952]5111
5112# We call true to avoid problems if SELinux is not activated, but chcon is present and returns in that case 1
5113pb_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");
5114# once this is done, we can do what we need on the VM/RM remotely
[2045]5115
5116# in particular we can remove duplicate in .ssh/authorized_keys of our key if needed
5117# Store the pub key part in a variable
5118open(FILE,"$keyfile.pub") || die "Unable to open $keyfile.pub";
5119my ($zero0,$zero1,$zero2) = split(/ /,<FILE>);
5120close(FILE);
5121my $key = "\Q$zero1";
5122my $perls = "$ENV{'PBTMP'}/perls.$$";
5123
5124open(FILE,"> $perls") || die "Unable to open $perls";
5125print FILE << 'EOF';
5126my $file1="$ENV{'HOME'}/.ssh/authorized_keys";
5127open(PBFILE,$file1) || die "Unable to open $file1";
5128open(PBOUT,"> $file1.new") || die "Unable to open $file1.new";
5129my $count = 0;
5130while (<PBFILE>) {
5131EOF
5132print FILE << "EOF";
5133 if (/ $key /) {
5134 \$count++;
5135 }
5136 print PBOUT \$_ if ((\$count <= 1) || (\$_ !~ / $key /));
5137}
5138close(PBFILE);
5139close(PBOUT);
5140rename("\$file1.new",\$file1);
5141chmod 0600,\$file1;
5142EOF
5143close(FILE);
5144pb_system("cat $perls | ssh -q -o UserKnownHostsFile=/dev/null -p $nport -i $keyfile root\@$vmhost->{$ENV{'PBPROJ'}} perl","","quiet");
[1952]5145return;
5146}
5147
[2106]5148# Returns debian architecture
5149#
5150sub pb_get_debarch {
5151
5152my $pbos = shift;
5153
5154my $debarch = $pbos->{'arch'};
5155$debarch = "amd64" if ($pbos->{'arch'} eq "x86_64");
5156
5157return($debarch);
5158}
5159
5160sub pb_get_debpc {
5161
5162my ($projcomponent_map) = pb_conf_get_if("projcomponent");
5163pb_log(2,"projcomponent = ".Dumper($projcomponent_map)."\n");
5164my $projcomponent = $projcomponent_map->{$ENV{PBPROJ}};
5165$projcomponent ||= 'contrib';
5166
5167return($projcomponent);
5168}
5169
[395]51701;
Note: See TracBrowser for help on using the repository browser.