/usr/share/perl5/Dpkg/Source/Quilt.pm is in libdpkg-perl 1.18.25.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | # Copyright © 2008-2012 Raphaël Hertzog <hertzog@debian.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
package Dpkg::Source::Quilt;
use strict;
use warnings;
our $VERSION = '0.02';
use File::Spec;
use File::Copy;
use File::Find;
use File::Path qw(make_path);
use File::Basename;
use Dpkg::Gettext;
use Dpkg::ErrorHandling;
use Dpkg::Util qw(:list);
use Dpkg::Source::Patch;
use Dpkg::Source::Functions qw(erasedir fs_time);
use Dpkg::Vendor qw(get_current_vendor);
sub new {
my ($this, $dir, %opts) = @_;
my $class = ref($this) || $this;
my $self = {
dir => $dir,
};
bless $self, $class;
$self->load_series();
$self->load_db();
return $self;
}
sub setup_db {
my $self = shift;
my $db_dir = $self->get_db_file();
if (not -d $db_dir) {
mkdir $db_dir or syserr(g_('cannot mkdir %s'), $db_dir);
}
my $file = $self->get_db_file('.version');
if (not -e $file) {
open(my $version_fh, '>', $file) or syserr(g_('cannot write %s'), $file);
print { $version_fh } "2\n";
close($version_fh);
}
# The files below are used by quilt to know where patches are stored
# and what file contains the patch list (supported by quilt >= 0.48-5
# in Debian).
$file = $self->get_db_file('.quilt_patches');
if (not -e $file) {
open(my $qpatch_fh, '>', $file) or syserr(g_('cannot write %s'), $file);
print { $qpatch_fh } "debian/patches\n";
close($qpatch_fh);
}
$file = $self->get_db_file('.quilt_series');
if (not -e $file) {
open(my $qseries_fh, '>', $file) or syserr(g_('cannot write %s'), $file);
my $series = $self->get_series_file();
$series = (File::Spec->splitpath($series))[2];
print { $qseries_fh } "$series\n";
close($qseries_fh);
}
}
sub load_db {
my $self = shift;
my $pc_applied = $self->get_db_file('applied-patches');
$self->{applied_patches} = [ $self->read_patch_list($pc_applied) ];
}
sub save_db {
my $self = shift;
$self->setup_db();
my $pc_applied = $self->get_db_file('applied-patches');
$self->write_patch_list($pc_applied, $self->{applied_patches});
}
sub load_series {
my ($self, %opts) = @_;
my $series = $self->get_series_file();
$self->{series} = [ $self->read_patch_list($series, %opts) ];
}
sub series {
my $self = shift;
return @{$self->{series}};
}
sub applied {
my $self = shift;
return @{$self->{applied_patches}};
}
sub top {
my $self = shift;
my $count = scalar @{$self->{applied_patches}};
return $self->{applied_patches}[$count - 1] if $count;
return;
}
sub register {
my ($self, $patch_name) = @_;
return if any { $_ eq $patch_name } @{$self->{series}};
# Add patch to series files.
$self->setup_db();
$self->_file_add_line($self->get_series_file(), $patch_name);
$self->_file_add_line($self->get_db_file('applied-patches'), $patch_name);
$self->load_db();
$self->load_series();
# Ensure quilt meta-data is created and in sync with some trickery:
# Reverse-apply the patch, drop .pc/$patch, and re-apply it with the
# correct options to recreate the backup files.
$self->pop(reverse_apply => 1);
$self->push();
}
sub unregister {
my ($self, $patch_name) = @_;
return if none { $_ eq $patch_name } @{$self->{series}};
my $series = $self->get_series_file();
$self->_file_drop_line($series, $patch_name);
$self->_file_drop_line($self->get_db_file('applied-patches'), $patch_name);
erasedir($self->get_db_file($patch_name));
$self->load_db();
$self->load_series();
# Clean up empty series.
unlink $series if -z $series;
}
sub next {
my $self = shift;
my $count_applied = scalar @{$self->{applied_patches}};
my $count_series = scalar @{$self->{series}};
return $self->{series}[$count_applied] if ($count_series > $count_applied);
return;
}
sub push {
my ($self, %opts) = @_;
$opts{verbose} //= 0;
$opts{timestamp} //= fs_time($self->{dir});
my $patch = $self->next();
return unless defined $patch;
my $path = $self->get_patch_file($patch);
my $obj = Dpkg::Source::Patch->new(filename => $path);
info(g_('applying %s'), $patch) if $opts{verbose};
eval {
$obj->apply($self->{dir}, timestamp => $opts{timestamp},
verbose => $opts{verbose},
force_timestamp => 1, create_dirs => 1, remove_backup => 0,
options => [ '-t', '-F', '0', '-N', '-p1', '-u',
'-V', 'never', '-E', '-b',
'-B', ".pc/$patch/", '--reject-file=-' ]);
};
if ($@) {
info(g_('the patch has fuzz which is not allowed, or is malformed'));
info(g_("if patch '%s' is correctly applied by quilt, use '%s' to update it"),
$patch, 'quilt refresh');
$self->restore_quilt_backup_files($patch, %opts);
erasedir($self->get_db_file($patch));
die $@;
}
CORE::push @{$self->{applied_patches}}, $patch;
$self->save_db();
}
sub pop {
my ($self, %opts) = @_;
$opts{verbose} //= 0;
$opts{timestamp} //= fs_time($self->{dir});
$opts{reverse_apply} //= 0;
my $patch = $self->top();
return unless defined $patch;
info(g_('unapplying %s'), $patch) if $opts{verbose};
my $backup_dir = $self->get_db_file($patch);
if (-d $backup_dir and not $opts{reverse_apply}) {
# Use the backup copies to restore
$self->restore_quilt_backup_files($patch);
} else {
# Otherwise reverse-apply the patch
my $path = $self->get_patch_file($patch);
my $obj = Dpkg::Source::Patch->new(filename => $path);
$obj->apply($self->{dir}, timestamp => $opts{timestamp},
verbose => 0, force_timestamp => 1, remove_backup => 0,
options => [ '-R', '-t', '-N', '-p1',
'-u', '-V', 'never', '-E',
'--no-backup-if-mismatch' ]);
}
erasedir($backup_dir);
pop @{$self->{applied_patches}};
$self->save_db();
}
sub get_db_version {
my $self = shift;
my $pc_ver = $self->get_db_file('.version');
if (-f $pc_ver) {
open(my $ver_fh, '<', $pc_ver) or syserr(g_('cannot read %s'), $pc_ver);
my $version = <$ver_fh>;
chomp $version;
close($ver_fh);
return $version;
}
return;
}
sub find_problems {
my $self = shift;
my $patch_dir = $self->get_patch_file();
if (-e $patch_dir and not -d _) {
return sprintf(g_('%s should be a directory or non-existing'), $patch_dir);
}
my $series = $self->get_series_file();
if (-e $series and not -f _) {
return sprintf(g_('%s should be a file or non-existing'), $series);
}
return;
}
sub get_series_file {
my $self = shift;
my $vendor = lc(get_current_vendor() || 'debian');
# Series files are stored alongside patches
my $default_series = $self->get_patch_file('series');
my $vendor_series = $self->get_patch_file("$vendor.series");
return $vendor_series if -e $vendor_series;
return $default_series;
}
sub get_db_file {
my $self = shift;
return File::Spec->catfile($self->{dir}, '.pc', @_);
}
sub get_db_dir {
my $self = shift;
return $self->get_db_file();
}
sub get_patch_file {
my $self = shift;
return File::Spec->catfile($self->{dir}, 'debian', 'patches', @_);
}
sub get_patch_dir {
my $self = shift;
return $self->get_patch_file();
}
## METHODS BELOW ARE INTERNAL ##
sub _file_load {
my ($self, $file) = @_;
open my $file_fh, '<', $file or syserr(g_('cannot read %s'), $file);
my @lines = <$file_fh>;
close $file_fh;
return @lines;
}
sub _file_add_line {
my ($self, $file, $line) = @_;
my @lines;
@lines = $self->_file_load($file) if -f $file;
CORE::push @lines, $line;
chomp @lines;
open my $file_fh, '>', $file or syserr(g_('cannot write %s'), $file);
print { $file_fh } "$_\n" foreach @lines;
close $file_fh;
}
sub _file_drop_line {
my ($self, $file, $re) = @_;
my @lines = $self->_file_load($file);
open my $file_fh, '>', $file or syserr(g_('cannot write %s'), $file);
print { $file_fh } $_ foreach grep { not /^\Q$re\E\s*$/ } @lines;
close $file_fh;
}
sub read_patch_list {
my ($self, $file, %opts) = @_;
return () if not defined $file or not -f $file;
$opts{warn_options} //= 0;
my @patches;
open(my $series_fh, '<' , $file) or syserr(g_('cannot read %s'), $file);
while (defined(my $line = <$series_fh>)) {
chomp $line;
# Strip leading/trailing spaces
$line =~ s/^\s+//;
$line =~ s/\s+$//;
# Strip comment
$line =~ s/(?:^|\s+)#.*$//;
next unless $line;
if ($line =~ /^(\S+)\s+(.*)$/) {
$line = $1;
if ($2 ne '-p1') {
warning(g_('the series file (%s) contains unsupported ' .
"options ('%s', line %s); dpkg-source might " .
'fail when applying patches'),
$file, $2, $.) if $opts{warn_options};
}
}
if ($line =~ m{(^|/)\.\./}) {
error(g_('%s contains an insecure path: %s'), $file, $line);
}
CORE::push @patches, $line;
}
close($series_fh);
return @patches;
}
sub write_patch_list {
my ($self, $series, $patches) = @_;
open my $series_fh, '>', $series or syserr(g_('cannot write %s'), $series);
foreach my $patch (@{$patches}) {
print { $series_fh } "$patch\n";
}
close $series_fh;
}
sub restore_quilt_backup_files {
my ($self, $patch, %opts) = @_;
my $patch_dir = $self->get_db_file($patch);
return unless -d $patch_dir;
info(g_('restoring quilt backup files for %s'), $patch) if $opts{verbose};
find({
no_chdir => 1,
wanted => sub {
return if -d;
my $relpath_in_srcpkg = File::Spec->abs2rel($_, $patch_dir);
my $target = File::Spec->catfile($self->{dir}, $relpath_in_srcpkg);
if (-s) {
unlink($target);
make_path(dirname($target));
unless (link($_, $target)) {
copy($_, $target)
or syserr(g_('failed to copy %s to %s'), $_, $target);
chmod((stat(_))[2], $target)
or syserr(g_("unable to change permission of '%s'"), $target);
}
} else {
# empty files are "backups" for new files that patch created
unlink($target);
}
}
}, $patch_dir);
}
1;
|