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 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
|
package File::KDBX::Util;
# ABSTRACT: Utility functions for working with KDBX files
use 5.010;
use warnings;
use strict;
use Crypt::PRNG qw(random_bytes random_string);
use Encode qw(decode encode);
use Exporter qw(import);
use File::KDBX::Error;
use List::Util 1.33 qw(any all);
use Module::Load;
use Ref::Util qw(is_arrayref is_coderef is_hashref is_ref is_refref is_scalarref);
use Scalar::Util qw(blessed looks_like_number readonly);
use Time::Piece 1.33;
use boolean;
use namespace::clean -except => 'import';
our $VERSION = '0.906'; # VERSION
our %EXPORT_TAGS = (
assert => [qw(DEBUG assert)],
class => [qw(extends has list_attributes)],
clone => [qw(clone clone_nomagic)],
coercion => [qw(to_bool to_number to_string to_time to_tristate to_uuid)],
crypt => [qw(pad_pkcs7)],
debug => [qw(DEBUG dumper)],
fork => [qw(can_fork)],
function => [qw(memoize recurse_limit)],
empty => [qw(empty nonempty)],
erase => [qw(erase erase_scoped)],
gzip => [qw(gzip gunzip)],
int => [qw(int64 pack_ql pack_Ql unpack_ql unpack_Ql)],
io => [qw(read_all)],
load => [qw(load_optional load_xs try_load_optional)],
search => [qw(query query_any search simple_expression_query)],
text => [qw(snakify trim)],
uuid => [qw(format_uuid generate_uuid is_uuid uuid UUID_NULL)],
uri => [qw(split_url uri_escape_utf8 uri_unescape_utf8)],
);
$EXPORT_TAGS{all} = [map { @$_ } values %EXPORT_TAGS];
our @EXPORT_OK = @{$EXPORT_TAGS{all}};
BEGIN {
my $debug = $ENV{DEBUG};
$debug = looks_like_number($debug) ? (0 + $debug) : ($debug ? 1 : 0);
*DEBUG = $debug == 1 ? sub() { 1 } :
$debug == 2 ? sub() { 2 } :
$debug == 3 ? sub() { 3 } :
$debug == 4 ? sub() { 4 } : sub() { 0 };
}
my %OPS = (
'eq' => 2, # binary
'ne' => 2,
'lt' => 2,
'gt' => 2,
'le' => 2,
'ge' => 2,
'==' => 2,
'!=' => 2,
'<' => 2,
'>' => 2,
'<=' => 2,
'>=' => 2,
'=~' => 2,
'!~' => 2,
'!' => 1, # unary
'!!' => 1,
'-not' => 1, # special
'-false' => 1,
'-true' => 1,
'-defined' => 1,
'-undef' => 1,
'-empty' => 1,
'-nonempty' => 1,
'-or' => -1,
'-and' => -1,
);
my %OP_NEG = (
'eq' => 'ne',
'ne' => 'eq',
'lt' => 'ge',
'gt' => 'le',
'le' => 'gt',
'ge' => 'lt',
'==' => '!=',
'!=' => '==',
'<' => '>=',
'>' => '<=',
'<=' => '>',
'>=' => '<',
'=~' => '!~',
'!~' => '=~',
);
my %ATTRIBUTES;
my $XS_LOADED;
sub load_xs {
my $version = shift;
goto IS_LOADED if defined $XS_LOADED;
if ($ENV{PERL_ONLY} || (exists $ENV{PERL_FILE_KDBX_XS} && !$ENV{PERL_FILE_KDBX_XS})) {
return $XS_LOADED = !1;
}
$XS_LOADED = !!eval { require File::KDBX::XS; 1 };
IS_LOADED:
{
local $@;
return $XS_LOADED if !$version;
return !!eval { File::KDBX::XS->VERSION($version); 1 };
}
}
sub assert(&) { ## no critic (ProhibitSubroutinePrototypes)
return if !DEBUG;
my $code = shift;
return if $code->();
(undef, my $file, my $line) = caller;
$file =~ s!([^/\\]+)$!$1!;
my $assertion = '';
if (try_load_optional('B::Deparse')) {
my $deparse = B::Deparse->new(qw{-P -x9});
$assertion = $deparse->coderef2text($code);
$assertion =~ s/^\{(?:\s*(?:package[^;]+|use[^;]+);)*\s*(.*?);\s*\}$/$1/s;
$assertion =~ s/\s+/ /gs;
$assertion = ": $assertion";
}
die "$0: $file:$line: Assertion failed$assertion\n";
}
sub can_fork {
require Config;
return 1 if $Config::Config{d_fork};
return 0 if $^O ne 'MSWin32' && $^O ne 'NetWare';
return 0 if !$Config::Config{useithreads};
return 0 if $Config::Config{ccflags} !~ /-DPERL_IMPLICIT_SYS/;
return 0 if $] < 5.008001;
if ($] == 5.010000 && $Config::Config{ccname} eq 'gcc' && $Config::Config{gccversion}) {
return 0 if $Config::Config{gccversion} !~ m/^(\d+)\.(\d+)/;
my @parts = split(/[\.\s]+/, $Config::Config{gccversion});
return 0 if $parts[0] > 4 || ($parts[0] == 4 && $parts[1] >= 8);
}
return 0 if $INC{'Devel/Cover.pm'};
return 1;
}
sub clone {
require Storable;
goto &Storable::dclone;
}
sub clone_nomagic {
my $thing = shift;
if (is_arrayref($thing)) {
my @arr = map { clone_nomagic($_) } @$thing;
return \@arr;
}
elsif (is_hashref($thing)) {
my %hash;
$hash{$_} = clone_nomagic($thing->{$_}) for keys %$thing;
return \%hash;
}
elsif (is_ref($thing)) {
return clone($thing);
}
return $thing;
}
sub dumper {
require Data::Dumper;
# avoid "once" warnings
local $Data::Dumper::Deepcopy = $Data::Dumper::Deepcopy = 1;
local $Data::Dumper::Deparse = $Data::Dumper::Deparse = 1;
local $Data::Dumper::Indent = 1;
local $Data::Dumper::Quotekeys = 0;
local $Data::Dumper::Sortkeys = 1;
local $Data::Dumper::Terse = 1;
local $Data::Dumper::Trailingcomma = 1;
local $Data::Dumper::Useqq = 1;
my @dumps;
for my $struct (@_) {
my $str = Data::Dumper::Dumper($struct);
# boolean
$str =~ s/bless\( do\{\\\(my \$o = ([01])\)\}, 'boolean' \)/boolean($1)/gs;
# Time::Piece
$str =~ s/bless\([^\)]+?(\d+)'?,\s+\d+,?\s+\], 'Time::Piece' \),/
"scalar gmtime($1), # " . scalar gmtime($1)->datetime/ges;
print STDERR $str if !defined wantarray;
push @dumps, $str;
return $str;
}
return join("\n", @dumps);
}
sub empty { _empty(@_) }
sub nonempty { !_empty(@_) }
sub _empty {
return 1 if @_ == 0;
local $_ = shift;
return !defined $_
|| $_ eq ''
|| (is_arrayref($_) && @$_ == 0)
|| (is_hashref($_) && keys %$_ == 0)
|| (is_scalarref($_) && (!defined $$_ || $$_ eq ''))
|| (is_refref($_) && _empty($$_));
}
BEGIN {
if (load_xs) {
*_CowREFCNT = \&File::KDBX::XS::CowREFCNT;
}
elsif (eval { require B::COW; 1 }) {
*_CowREFCNT = \&B::COW::cowrefcnt;
}
else {
*_CowREFCNT = sub { undef };
}
}
sub erase {
# Only bother zeroing out memory if we have the last SvPV COW reference, otherwise we'll end up just
# creating a copy and erasing the copy.
# TODO - Is this worth doing? Need some benchmarking.
for (@_) {
if (!is_ref($_)) {
next if !defined $_ || readonly $_;
my $cowrefcnt = _CowREFCNT($_);
goto FREE_NONREF if defined $cowrefcnt && 1 < $cowrefcnt;
# if (__PACKAGE__->can('erase_xs')) {
# erase_xs($_);
# }
# else {
substr($_, 0, length($_), "\0" x length($_));
# }
FREE_NONREF: {
no warnings 'uninitialized';
undef $_;
}
}
elsif (is_scalarref($_)) {
next if !defined $$_ || readonly $$_;
my $cowrefcnt = _CowREFCNT($$_);
goto FREE_REF if defined $cowrefcnt && 1 < $cowrefcnt;
# if (__PACKAGE__->can('erase_xs')) {
# erase_xs($$_);
# }
# else {
substr($$_, 0, length($$_), "\0" x length($$_));
# }
FREE_REF: {
no warnings 'uninitialized';
undef $$_;
}
}
elsif (is_arrayref($_)) {
erase(@$_);
@$_ = ();
}
elsif (is_hashref($_)) {
erase(values %$_);
%$_ = ();
}
else {
throw 'Cannot erase this type of scalar', type => ref $_, what => $_;
}
}
}
sub erase_scoped {
throw 'Programmer error: Cannot call erase_scoped in void context' if !defined wantarray;
my @args;
for (@_) {
!is_ref($_) || is_arrayref($_) || is_hashref($_) || is_scalarref($_)
or throw 'Cannot erase this type of scalar', type => ref $_, what => $_;
push @args, is_ref($_) ? $_ : \$_;
}
require Scope::Guard;
return Scope::Guard->new(sub { erase(@args) });
}
sub extends {
my $parent = shift;
my $caller = caller;
load $parent;
no strict 'refs'; ## no critic (ProhibitNoStrict)
@{"${caller}::ISA"} = $parent;
}
sub has {
my $name = shift;
my %args = @_ % 2 == 1 ? (default => shift, @_) : @_;
my ($package, $file, $line) = caller;
my $d = $args{default};
my $default = is_arrayref($d) ? sub { [@$d] } : is_hashref($d) ? sub { +{%$d} } : $d;
my $coerce = $args{coerce};
my $is = $args{is} || 'rw';
my $store = $args{store};
($store, $name) = split(/\./, $name, 2) if $name =~ /\./;
my @path = split(/\./, $args{path} || '');
my $last = pop @path;
my $path = $last ? join('', map { qq{->$_} } @path) . qq{->{'$last'}}
: $store ? qq{->$store\->{'$name'}} : qq{->{'$name'}};
my $member = qq{\$_[0]$path};
my $default_code = is_coderef $default ? q{scalar $default->($_[0])}
: defined $default ? q{$default}
: q{undef};
my $get = qq{$member //= $default_code;};
my $set = '';
if ($is eq 'rw') {
$set = is_coderef $coerce ? qq{$member = scalar \$coerce->(\@_[1..\$#_]) if \$#_;}
: defined $coerce ? qq{$member = do { local @_ = (\@_[1..\$#_]); $coerce } if \$#_;}
: qq{$member = \$_[1] if \$#_;};
}
push @{$ATTRIBUTES{$package} //= []}, $name;
$line -= 4;
my $code = <<END;
# line $line "$file"
sub ${package}::${name} {
return $default_code if !Scalar::Util::blessed(\$_[0]);
$set
$get
}
END
eval $code; ## no critic (ProhibitStringyEval)
}
sub format_uuid {
local $_ = shift // "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
my $delim = shift // '';
length($_) == 16 or throw 'Must provide a 16-bytes UUID', size => length($_), str => $_;
return uc(join($delim, unpack('H8 H4 H4 H4 H12', $_)));
}
sub generate_uuid {
my $set = @_ % 2 == 1 ? shift : undef;
my %args = @_;
my $test = $set //= $args{test};
$test = sub { !$set->{$_} } if is_hashref($test);
$test //= sub { 1 };
my $printable = $args{printable} // $args{print};
local $_ = '';
do {
$_ = $printable ? random_string(16) : random_bytes(16);
} while (!$test->($_));
return $_;
}
sub gunzip {
load_optional('Compress::Raw::Zlib');
local $_ = shift;
my ($i, $status) = Compress::Raw::Zlib::Inflate->new(-WindowBits => 31);
$status == Compress::Raw::Zlib::Z_OK()
or throw 'Failed to initialize compression library', status => $status;
$status = $i->inflate($_, my $out);
$status == Compress::Raw::Zlib::Z_STREAM_END()
or throw 'Failed to decompress data', status => $status;
return $out;
}
sub gzip {
load_optional('Compress::Raw::Zlib');
local $_ = shift;
my ($d, $status) = Compress::Raw::Zlib::Deflate->new(-WindowBits => 31, -AppendOutput => 1);
$status == Compress::Raw::Zlib::Z_OK()
or throw 'Failed to initialize compression library', status => $status;
$status = $d->deflate($_, my $out);
$status == Compress::Raw::Zlib::Z_OK()
or throw 'Failed to compress data', status => $status;
$status = $d->flush($out);
$status == Compress::Raw::Zlib::Z_OK()
or throw 'Failed to compress data', status => $status;
return $out;
}
sub int64 {
require Config;
if ($Config::Config{ivsize} < 8) {
require Math::BigInt;
return Math::BigInt->new(@_);
}
return 0 + shift;
}
sub pack_Ql {
my $num = shift;
require Config;
if ($Config::Config{ivsize} < 8) {
if (blessed $num && $num->can('as_hex')) {
require Math::BigInt;
return "\xff\xff\xff\xff\xff\xff\xff\xff" if Math::BigInt->new('18446744073709551615') <= $num;
return "\x00\x00\x00\x00\x00\x00\x00\x80" if $num <= Math::BigInt->new('-9223372036854775808');
my $neg;
if ($num < 0) {
$neg = 1;
$num = -$num;
}
my $hex = $num->as_hex;
$hex =~ s/^0x/000000000000000/;
my $bytes = reverse pack('H16', substr($hex, -16));
$bytes .= "\0" x (8 - length $bytes) if length $bytes < 8;
if ($neg) {
# two's compliment
$bytes = join('', map { chr(~ord($_) & 0xff) } split(//, $bytes));
substr($bytes, 0, 1, chr(ord(substr($bytes, 0, 1)) + 1));
}
return $bytes;
}
else {
my $pad = $num < 0 ? "\xff" : "\0";
return pack('L<', $num) . ($pad x 4);
};
}
return pack('Q<', $num);
}
sub pack_ql { goto &pack_Ql }
sub unpack_Ql {
my $bytes = shift;
require Config;
if ($Config::Config{ivsize} < 8) {
require Math::BigInt;
return Math::BigInt->new('0x' . unpack('H*', scalar reverse $bytes));
}
return unpack('Q<', $bytes);
}
sub unpack_ql {
my $bytes = shift;
require Config;
if ($Config::Config{ivsize} < 8) {
require Math::BigInt;
if (ord(substr($bytes, -1, 1)) & 128) {
return Math::BigInt->new('-9223372036854775808') if $bytes eq "\x00\x00\x00\x00\x00\x00\x00\x80";
# two's compliment
substr($bytes, 0, 1, chr(ord(substr($bytes, 0, 1)) - 1));
$bytes = join('', map { chr(~ord($_) & 0xff) } split(//, $bytes));
return -Math::BigInt->new('0x' . unpack('H*', scalar reverse $bytes));
}
else {
return Math::BigInt->new('0x' . unpack('H*', scalar reverse $bytes));
}
}
return unpack('q<', $bytes);
}
sub is_uuid { defined $_[0] && !is_ref($_[0]) && length($_[0]) == 16 }
sub list_attributes {
my $package = shift;
return @{$ATTRIBUTES{$package} // []};
}
sub load_optional {
for my $module (@_) {
eval { load $module };
if (my $err = $@) {
throw "Missing dependency: Please install $module to use this feature.\n",
module => $module,
error => $err;
}
}
return wantarray ? @_ : $_[0];
}
sub memoize {
my $func = shift;
my @args = @_;
my %cache;
return sub { $cache{join("\0", grep { defined } @_)} //= $func->(@args, @_) };
}
sub pad_pkcs7 {
my $data = shift // throw 'Must provide a string to pad';
my $size = shift or throw 'Must provide block size';
0 <= $size && $size < 256
or throw 'Cannot add PKCS7 padding to a large block size', size => $size;
my $pad_len = $size - length($data) % $size;
$data .= chr($pad_len) x $pad_len;
}
sub query { _query(undef, '-or', \@_) }
sub query_any {
my $code = shift;
if (is_coderef($code) || overload::Method($code, '&{}')) {
return $code;
}
elsif (is_scalarref($code)) {
return simple_expression_query($$code, @_);
}
else {
return query($code, @_);
}
}
sub read_all($$$;$) { ## no critic (ProhibitSubroutinePrototypes)
my $result = @_ == 3 ? read($_[0], $_[1], $_[2])
: read($_[0], $_[1], $_[2], $_[3]);
return if !defined $result;
return if $result != $_[2];
return $result;
}
sub recurse_limit {
my $func = shift;
my $max_depth = shift // 200;
my $error = shift // sub {};
my $depth = 0;
return sub { return $error->(@_) if $max_depth < ++$depth; $func->(@_) };
};
sub search {
my $list = shift;
my $query = query_any(@_);
my @match;
for my $item (@$list) {
push @match, $item if $query->($item);
}
return \@match;
}
sub simple_expression_query {
my $expr = shift;
my $op = @_ && ($OPS{$_[0] || ''} || 0) == 2 ? shift : '=~';
my $neg_op = $OP_NEG{$op};
my $is_re = $op eq '=~' || $op eq '!~';
require Text::ParseWords;
my @terms = Text::ParseWords::shellwords($expr);
my @query = qw(-and);
for my $term (@terms) {
my @subquery = qw(-or);
my $neg = $term =~ s/^-//;
my $condition = [($neg ? $neg_op : $op) => ($is_re ? qr/\Q$term\E/i : $term)];
for my $field (@_) {
push @subquery, $field => $condition;
}
push @query, \@subquery;
}
return query(\@query);
}
sub snakify {
local $_ = shift;
s/UserName/Username/g;
s/([a-z])([A-Z0-9])/${1}_${2}/g;
s/([A-Z0-9]+)([A-Z0-9])(?![A-Z0-9]|$)/${1}_${2}/g;
return lc($_);
}
sub split_url {
local $_ = shift;
my ($scheme, $auth, $host, $port, $path, $query, $hash) =~ m!
^([^:/\?\#]+) ://
(?:([^\@]+)\@)
([^:/\?\#]*)
(?::(\d+))?
([^\?\#]*)
(\?[^\#]*)?
(\#(.*))?
!x;
$scheme = lc($scheme);
$host ||= 'localhost';
$host = lc($host);
$path = "/$path" if $path !~ m!^/!;
$port ||= $scheme eq 'http' ? 80 : $scheme eq 'https' ? 433 : undef;
my ($username, $password) = split($auth, ':', 2);
return ($scheme, $auth, $host, $port, $path, $query, $hash, $username, $password);
}
sub to_bool { $_[0] // return; boolean($_[0]) }
sub to_number { $_[0] // return; 0+$_[0] }
sub to_string { $_[0] // return; "$_[0]" }
sub to_time {
$_[0] // return;
return scalar gmtime($_[0]) if looks_like_number($_[0]);
return scalar gmtime if $_[0] eq 'now';
return Time::Piece->strptime($_[0], '%Y-%m-%d %H:%M:%S') if !blessed $_[0];
return $_[0];
}
sub to_tristate { $_[0] // return; boolean($_[0]) }
sub to_uuid {
my $str = to_string(@_) // return;
return sprintf('%016s', $str) if length($str) < 16;
return substr($str, 0, 16) if 16 < length($str);
return $str;
}
sub trim($) { ## no critic (ProhibitSubroutinePrototypes)
local $_ = shift // return;
s/^\s*//;
s/\s*$//;
return $_;
}
sub try_load_optional {
for my $module (@_) {
eval { load $module };
if (my $err = $@) {
warn $err if 3 <= DEBUG;
return;
}
}
return @_;
}
my %ESC = map { chr($_) => sprintf('%%%02X', $_) } 0..255;
sub uri_escape_utf8 {
local $_ = shift // return;
$_ = encode('UTF-8', $_);
# RFC 3986 section 2.3 unreserved characters
s/([^A-Za-z0-9\-\._~])/$ESC{$1}/ge;
return $_;
}
sub uri_unescape_utf8 {
local $_ = shift // return;
s/\%([A-Fa-f0-9]{2})/chr(hex($1))/;
return decode('UTF-8', $_);
}
sub uuid {
local $_ = shift // return "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
s/-//g;
/^[A-Fa-f0-9]{32}$/ or throw 'Must provide a formatted 128-bit UUID';
return pack('H32', $_);
}
sub UUID_NULL() { "\0" x 16 }
### --------------------------------------------------------------------------
# Determine if an array looks like keypairs from a hash.
sub _looks_like_keypairs {
my $arr = shift;
return 0 if @$arr % 2 == 1;
for (my $i = 0; $i < @$arr; $i += 2) {
return 0 if is_ref($arr->[$i]);
}
return 1;
}
sub _is_operand_plain {
local $_ = shift;
return !(is_hashref($_) || is_arrayref($_));
}
sub _query {
# dumper \@_;
my $subject = shift;
my $op = shift // throw 'Must specify a query operator';
my $operand = shift;
return _query_simple($op, $subject) if defined $subject && !is_ref($op) && ($OPS{$subject} || 2) < 2;
return _query_simple($subject, $op, $operand) if _is_operand_plain($operand);
return _query_inverse(_query($subject, '-or', $operand)) if $op eq '-not' || $op eq '-false';
return _query($subject, '-and', [%$operand]) if is_hashref($operand);
my @queries;
my @atoms = @$operand;
while (@atoms) {
if (_looks_like_keypairs(\@atoms)) {
my ($atom, $operand) = splice @atoms, 0, 2;
if (my $op_type = $OPS{$atom}) {
if ($op_type == 1 && _is_operand_plain($operand)) { # unary
push @queries, _query_simple($operand, $atom);
}
else {
push @queries, _query($subject, $atom, $operand);
}
}
elsif (!is_ref($atom)) {
push @queries, _query($atom, 'eq', $operand);
}
}
else {
my $atom = shift @atoms;
if ($OPS{$atom}) { # apply new operator over the rest
push @queries, _query($subject, $atom, \@atoms);
last;
}
else { # apply original operator over this one
push @queries, _query($subject, $op, $atom);
}
}
}
if (@queries == 1) {
return $queries[0];
}
elsif ($op eq '-and') {
return _query_all(@queries);
}
elsif ($op eq '-or') {
return _query_any(@queries);
}
throw 'Malformed query';
}
sub _query_simple {
my $subject = shift;
my $op = shift // 'eq';
my $operand = shift;
# these special operators can also act as simple operators
$op = '!!' if $op eq '-true';
$op = '!' if $op eq '-false';
$op = '!' if $op eq '-not';
defined $subject or throw 'Subject is not set in query';
$OPS{$op} >= 0 or throw 'Cannot use a non-simple operator in a simple query';
if (empty($operand)) {
if ($OPS{$op} < 2) {
# no operand needed
}
# Allow field => undef and field => {'ne' => undef} to do the (arguably) right thing.
elsif ($op eq 'eq' || $op eq '==') {
$op = '-empty';
}
elsif ($op eq 'ne' || $op eq '!=') {
$op = '-nonempty';
}
else {
throw 'Operand is required';
}
}
my $field = sub { blessed $_[0] && $_[0]->can($subject) ? $_[0]->$subject : $_[0]->{$subject} };
my %map = (
'eq' => sub { local $_ = $field->(@_); defined && $_ eq $operand },
'ne' => sub { local $_ = $field->(@_); defined && $_ ne $operand },
'lt' => sub { local $_ = $field->(@_); defined && $_ lt $operand },
'gt' => sub { local $_ = $field->(@_); defined && $_ gt $operand },
'le' => sub { local $_ = $field->(@_); defined && $_ le $operand },
'ge' => sub { local $_ = $field->(@_); defined && $_ ge $operand },
'==' => sub { local $_ = $field->(@_); defined && $_ == $operand },
'!=' => sub { local $_ = $field->(@_); defined && $_ != $operand },
'<' => sub { local $_ = $field->(@_); defined && $_ < $operand },
'>' => sub { local $_ = $field->(@_); defined && $_ > $operand },
'<=' => sub { local $_ = $field->(@_); defined && $_ <= $operand },
'>=' => sub { local $_ = $field->(@_); defined && $_ >= $operand },
'=~' => sub { local $_ = $field->(@_); defined && $_ =~ $operand },
'!~' => sub { local $_ = $field->(@_); defined && $_ !~ $operand },
'!' => sub { local $_ = $field->(@_); ! $_ },
'!!' => sub { local $_ = $field->(@_); !!$_ },
'-defined' => sub { local $_ = $field->(@_); defined $_ },
'-undef' => sub { local $_ = $field->(@_); !defined $_ },
'-nonempty' => sub { local $_ = $field->(@_); nonempty $_ },
'-empty' => sub { local $_ = $field->(@_); empty $_ },
);
return $map{$op} // throw "Unexpected operator in query: $op",
subject => $subject,
operator => $op,
operand => $operand;
}
sub _query_inverse {
my $query = shift;
return sub { !$query->(@_) };
}
sub _query_all {
my @queries = @_;
return sub {
my $val = shift;
all { $_->($val) } @queries;
};
}
sub _query_any {
my @queries = @_;
return sub {
my $val = shift;
any { $_->($val) } @queries;
};
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
File::KDBX::Util - Utility functions for working with KDBX files
=head1 VERSION
version 0.906
=head1 FUNCTIONS
=head2 load_xs
$bool = load_xs();
$bool = load_xs($version);
Attempt to load L<File::KDBX::XS>. Return truthy if it is loaded. If C<$version> is given, it will check that
at least the given version is loaded.
=head2 assert
assert { ... };
Write an executable comment. Only executed if C<DEBUG> is set in the environment.
=head2 can_fork
$bool = can_fork;
Determine if perl can fork, with logic lifted from L<Test2::Util/CAN_FORK>.
=head2 clone
$clone = clone($thing);
Clone deeply. This is an unadorned alias to L<Storable> C<dclone>.
=head2 clone_nomagic
$clone = clone_nomagic($thing);
Clone deeply without keeping [most of] the magic.
B<WARNING:> At the moment the implementation is naïve and won't respond well to nontrivial data or recursive
structures.
=head2 DEBUG
Constant number indicating the level of debuggingness.
=head2 dumper
$str = dumper $thing;
dumper $thing; # in void context, prints to STDERR
Like L<Data::Dumper> but slightly terser in some cases relevent to L<File::KDBX>.
=head2 empty
=head2 nonempty
$bool = empty $thing;
$bool = nonempty $thing;
Test whether a thing is empty (or nonempty). An empty thing is one of these:
=over 4
=item *
nonexistent
=item *
C<undef>
=item *
zero-length string
=item *
zero-length array
=item *
hash with zero keys
=item *
reference to an empty thing (recursive)
=back
Note in particular that zero C<0> is not considered empty because it is an actual value.
=head2 erase
erase($string, ...);
erase(\$string, ...);
Overwrite the memory used by one or more string.
=head2 erase_scoped
$scope_guard = erase_scoped($string, ...);
$scope_guard = erase_scoped(\$string, ...);
undef $scope_guard; # erase happens here
Get a scope guard that will cause scalars to be erased later (i.e. when the scope ends). This is useful if you
want to make sure a string gets erased after you're done with it, even if the scope ends abnormally.
See L</erase>.
=head2 extends
extends $class;
Set up the current module to inheret from another module.
=head2 has
has $name => %options;
Create an attribute getter/setter. Possible options:
=over 4
=item *
C<is> - Either "rw" (default) or "ro"
=item *
C<default> - Default value
=item *
C<coerce> - Coercive function
=back
=head2 format_uuid
$string_uuid = format_uuid($raw_uuid);
$string_uuid = format_uuid($raw_uuid, $delimiter);
Format a 128-bit UUID (given as a string of 16 octets) into a hexidecimal string, optionally with a delimiter
to break up the UUID visually into five parts. Examples:
my $uuid = uuid('01234567-89AB-CDEF-0123-456789ABCDEF');
say format_uuid($uuid); # -> 0123456789ABCDEF0123456789ABCDEF
say format_uuid($uuid, '-'); # -> 01234567-89AB-CDEF-0123-456789ABCDEF
This is the inverse of L</uuid>.
=head2 generate_uuid
$uuid = generate_uuid;
$uuid = generate_uuid(\%set);
$uuid = generate_uuid(\&test_uuid);
Generate a new random UUID. It's pretty unlikely that this will generate a repeat, but if you're worried about
that you can provide either a set of existing UUIDs (as a hashref where the keys are the elements of a set) or
a function to check for existing UUIDs, and this will be sure to not return a UUID already in provided set.
Perhaps an example will make it clear:
my %uuid_set = (
uuid('12345678-9ABC-DEFG-1234-56789ABCDEFG') => 'whatever',
);
$uuid = generate_uuid(\%uuid_set);
# OR
$uuid = generate_uuid(sub { !$uuid_set{$_} });
Here, C<$uuid> can't be "12345678-9ABC-DEFG-1234-56789ABCDEFG". This example uses L</uuid> to easily pack
a 16-byte UUID from a literal, but it otherwise is not a consequential part of the example.
=head2 gunzip
$unzipped = gunzip($string);
Decompress an octet stream.
=head2 gzip
$zipped = gzip($string);
Compress an octet stream.
=head2 int64
$int = int64($string);
Get a scalar integer capable of holding 64-bit values, initialized with a given default value. On a 64-bit
perl, it will return a regular SvIV. On a 32-bit perl it will return a L<Math::BigInt>.
=head2 pack_Ql
$bytes = pack_Ql($int);
Like C<pack('QE<lt>', $int)>, but also works on 32-bit perls.
=head2 pack_ql
$bytes = pack_ql($int);
Like C<pack('qE<lt>', $int)>, but also works on 32-bit perls.
=head2 unpack_Ql
$int = unpack_Ql($bytes);
Like C<unpack('QE<lt>', $bytes)>, but also works on 32-bit perls.
=head2 unpack_ql
$int = unpack_ql($bytes);
Like C<unpack('qE<lt>', $bytes)>, but also works on 32-bit perls.
=head2 is_uuid
$bool = is_uuid($thing);
Check if a thing is a UUID (i.e. scalar string of length 16).
=head2 list_attributes
@attributes = list_attributes($package);
Get a list of attributes for a class.
=head2 load_optional
$package = load_optional($package);
Load a module that isn't required but can provide extra functionality. Throw if the module is not available.
=head2 memoize
\&memoized_code = memoize(\&code, ...);
Memoize a function. Extra arguments are passed through to C<&code> when it is called.
=head2 pad_pkcs7
$padded_string = pad_pkcs7($string, $block_size),
Pad a block using the PKCS#7 method.
=head2 query
$query = query(@where);
$query->(\%data);
Generate a function that will run a series of tests on a passed hashref and return true or false depending on
if the data record in the hash matched the specified logic.
The logic can be specified in a manner similar to L<SQL::Abstract/"WHERE CLAUSES"> which was the inspiration
for this function, but this code is distinct, supporting an overlapping but not identical feature set and
having its own bugs.
See L<File::KDBX/"Declarative Syntax"> for examples.
=head2 query_any
Get either a L</query> or L</simple_expression_query>, depending on the arguments.
=head2 read_all
$size = read_all($fh, my $buffer, $size);
$size = read_all($fh, my $buffer, $size, $offset);
Like L<perlfunc/"read FILEHANDLE,SCALAR,LENGTH,OFFSET"> but returns C<undef> if not all C<$size> bytes are
read. This is considered an error, distinguishable from other errors by C<$!> not being set.
=head2 recurse_limit
\&limited_code = recurse_limit(\&code);
\&limited_code = recurse_limit(\&code, $max_depth);
\&limited_code = recurse_limit(\&code, $max_depth, \&error_handler);
Wrap a function with a guard to prevent deep recursion.
=head2 search
# Generate a query on-the-fly:
\@matches = search(\@records, @where);
# Use a pre-compiled query:
$query = query(@where);
\@matches = search(\@records, $query);
# Use a simple expression:
\@matches = search(\@records, \'query terms', @fields);
\@matches = search(\@records, \'query terms', $operator, @fields);
# Use your own subroutine:
\@matches = search(\@records, \&query);
\@matches = search(\@records, sub { $record = shift; ... });
Execute a linear search over an array of records using a L</query>. A "record" is usually a hash.
=head2 simple_expression_query
$query = simple_expression_query($expression, @fields);
$query = simple_expression_query($expression, $operator, @fields);
Generate a query, like L</query>, to be used with L</search> but built from a "simple expression" as
L<described here|https://keepass.info/help/base/search.html#mode_se>.
An expression is a string with one or more space-separated terms. Terms with spaces can be enclosed in double
quotes. Terms are negated if they are prefixed with a minus sign. A record must match every term on at least
one of the given fields.
=head2 snakify
$string = snakify($string);
Turn a CamelCase string into snake_case.
=head2 split_url
($scheme, $auth, $host, $port, $path, $query, $hash, $usename, $password) = split_url($url);
Split a URL into its parts.
For example, C<http://user:pass@localhost:4000/path?query#hash> gets split like:
=over 4
=item *
C<http>
=item *
C<user:pass>
=item *
C<host>
=item *
C<4000>
=item *
C</path>
=item *
C<?query>
=item *
C<#hash>
=item *
C<user>
=item *
C<pass>
=back
=head2 to_bool
=head2 to_number
=head2 to_string
=head2 to_time
=head2 to_tristate
=head2 to_uuid
Various typecasting / coercive functions.
=head2 trim
$string = trim($string);
The ubiquitous C<trim> function. Removes all whitespace from both ends of a string.
=head2 try_load_optional
$package = try_load_optional($package);
Try to load a module that isn't required but can provide extra functionality, and return true if successful.
=head2 uri_escape_utf8
$string = uri_escape_utf8($string);
Percent-encode arbitrary text strings, like for a URI.
=head2 uri_unescape_utf8
$string = uri_unescape_utf8($string);
Inverse of L</uri_escape_utf8>.
=head2 uuid
$raw_uuid = uuid($string_uuid);
Pack a 128-bit UUID (given as a hexidecimal string with optional C<->'s, like
C<12345678-9ABC-DEFG-1234-56789ABCDEFG>) into a string of exactly 16 octets.
This is the inverse of L</format_uuid>.
=head2 UUID_NULL
Get the null UUID (i.e. string of 16 null bytes).
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L<https://github.com/chazmcgarvey/File-KDBX/issues>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
Charles McGarvey <ccm@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by Charles McGarvey.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|