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

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

Adds a new updateconf command to pb

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