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 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
|
=head1 NAME
PgCommon - Common functions for the postgresql-common framework
=head1 COPYRIGHT AND LICENSE
(C) 2008-2009 Martin Pitt <mpitt@debian.org>
(C) 2012-2025 Christoph Berg <myon@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
L<version 2 of the License|https://www.gnu.org/licenses/old-licenses/gpl-2.0.html>,
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.
=cut
package PgCommon;
use strict;
use IPC::Open3;
use Socket;
use POSIX;
use Exporter;
our $VERSION = 1.00;
our @ISA = ('Exporter');
our @EXPORT = qw/error user_cluster_map get_cluster_port set_cluster_port
get_cluster_socketdir set_cluster_socketdir cluster_port_running
get_cluster_start_conf set_cluster_start_conf set_cluster_pg_ctl_conf
get_program_path cluster_info validate_cluster_owner get_versions get_newest_version version_exists
get_version_clusters next_free_port cluster_exists install_file
change_ugid system_or_error config_bool replace_v_c
get_db_encoding get_db_locales get_cluster_locales get_cluster_controldata
get_cluster_databases cluster_conf_filename read_cluster_conf_file
read_pg_hba read_pidfile valid_hba_method package_list/;
our @EXPORT_OK = qw/$confroot $binroot $rpm
quote_conf_value read_conf_file get_conf_value
set_conf_value set_conffile_value disable_conffile_value disable_conf_value
replace_conf_value cluster_data_directory get_file_device
check_pidfile_running/;
=head1 CONTENTS
=head2 error
Print an error message to stderr and die with exit status 1
=cut
sub error {
$! = 1; # force exit code 1
die "Error: $_[0]\n";
}
our $confroot = '/etc/postgresql';
if ($ENV{'PG_CLUSTER_CONF_ROOT'}) {
($confroot) = $ENV{'PG_CLUSTER_CONF_ROOT'} =~ /(.*)/; # untaint
}
our $common_confdir = "/etc/postgresql-common";
if ($ENV{'PGSYSCONFDIR'}) {
($common_confdir) = $ENV{'PGSYSCONFDIR'} =~ /(.*)/; # untaint
}
my $mapfile = "$common_confdir/user_clusters";
our $binroot = "/usr/lib/postgresql/";
#redhat# $binroot = "/usr/pgsql-";
our $rpm = 0;
#redhat# $rpm = 1;
our $defaultport = 5432;
=head2 prepare_exec, restore_exec
Untaint the environment for executing an external program
Optional arguments: list of additional variables
=cut
{
my %saved_env;
# untaint the environment for executing an external program
sub prepare_exec {
my @cleanvars = qw/PATH IFS ENV BASH_ENV CDPATH/;
push @cleanvars, @_;
%saved_env = ();
foreach (@cleanvars) {
$saved_env{$_} = $ENV{$_};
delete $ENV{$_};
}
$ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
}
# restore the environment after prepare_exec()
sub restore_exec {
foreach (keys %saved_env) {
if (defined $saved_env{$_}) {
$ENV{$_} = $saved_env{$_};
} else {
delete $ENV{$_};
}
}
}
}
=head2 config_bool
returns '1' if the argument is a configuration file value that stands for
true (ON, TRUE, YES, or 1, case insensitive), '0' if the argument represents
a false value (OFF, FALSE, NO, or 0, case insensitive), or undef otherwise.
=cut
sub config_bool {
return undef unless defined($_[0]);
return 1 if ($_[0] =~ /^(on|true|yes|1)$/i);
return 0 if ($_[0] =~ /^(off|false|no|0)$/i);
return undef;
}
=head2 quote_conf_value
Quotes a value with single quotes
Arguments: <value>
Returns: quoted string
=cut
sub quote_conf_value ($) {
my $value = shift;
return $value if ($value =~ /^-?[\d.]+$/); # integer or float
return $value if ($value =~ /^\w+$/); # plain word
$value =~ s/'/''/g; # else quote it
return "'$value'";
}
=head2 replace_v_c
Replaces %v and %c placeholders
Arguments: <string> <version> <cluster>
Returns: string
=cut
sub replace_v_c ($$$) {
my ($str, $version, $cluster) = @_;
$str =~ s/%([vc%])/$1 eq 'v' ? $version :
$1 eq 'c' ? $cluster : '%'/eg;
return $str;
}
=head2 read_conf_file
Read a 'var = value' style configuration file and return a hash with the
values. When missing_ok is not set, error out if the file is not present.
Syntax errors are fatal in any case.
If the file name ends with '.conf', the keys will be normalized to
lower case (suitable for e.g. postgresql.conf), otherwise kept intact
(suitable for environment).
Arguments: <path> <missing_ok>
Returns: hash (empty if file does not exist)
=cut
sub read_conf_file {
my ($config_path, $missing_ok) = @_;
my %conf;
local (*F);
sub get_absolute_path {
my ($path, $parent_path) = @_;
return $path if ($path =~ m!^/!); # path is absolute
# else strip filename component from parent path
$parent_path =~ s!/[^/]*$!!;
return "$parent_path/$path";
}
if (open F, $config_path) {
while (<F>) {
if (/^\s*(?:#.*)?$/) {
next;
} elsif(/^\s*include_dir\s*=?\s*'([^']+)'\s*(?:#.*)?$/i) {
# read included configuration directory and merge into %conf
# files in the directory will be read in ascending order
my $path = $1;
my $absolute_path = get_absolute_path($path, $config_path);
next unless -e $absolute_path && -d $absolute_path;
my $dir;
opendir($dir, $absolute_path) or next;
foreach my $filename (sort readdir($dir) ) {
next if ($filename =~ m/^\./ or not $filename =~/\.conf$/ );
my %include_conf = read_conf_file("$absolute_path/$filename", $missing_ok);
while ( my ($k, $v) = each(%include_conf) ) {
$conf{$k} = $v;
}
}
closedir($dir);
} elsif (/^\s*include(_if_exists)?\s*=?\s*'([^']+)'\s*(?:#.*)?$/i) {
# read included file and merge into %conf
my $missing_include_ok = $1 ? 1 : $missing_ok;
my $path = $2;
my $absolute_path = get_absolute_path($path, $config_path);
my %include_conf = read_conf_file($absolute_path, $missing_include_ok);
while ( my ($k, $v) = each(%include_conf) ) {
$conf{$k} = $v;
}
} elsif (/^\s*([a-zA-Z0-9_.-]+)\s*(?:=|\s)\s*'((?:[^']|''|(?:(?<=\\)'))*)'\s*(?:#.*)?$/i) {
# string value
my $v = $2;
my $k = $1;
$k = lc $k if $config_path =~ /\.conf$/;
$v =~ s/\\(.)/$1/g;
$v =~ s/''/'/g;
$conf{$k} = $v;
} elsif (m{^\s*([a-zA-Z0-9_.-]+)\s*(?:=|\s)\s*(-?[[:alnum:]][[:alnum:]._:/+-]*)\s*(?:\#.*)?$}i) {
# simple value (string/float)
my $v = $2;
my $k = $1;
$k = lc $k if $config_path =~ /\.conf$/;
$conf{$k} = $v;
} else {
chomp;
error "invalid line $. in $config_path: $_";
}
}
close F;
} else {
error "could not open $config_path" unless ($missing_ok);
}
return %conf;
}
=head2 cluster_conf_filename
Returns path to cluster config file from a cluster configuration
directory (with /etc/postgresql-common/<file name> as fallback)
and return a hash with the values. Error out if the file cannot be read.
If config file name is postgresql.auto.conf, read from PGDATA
Arguments: <version> <cluster> <config file name>
Returns: hash (empty if the file does not exist)
=cut
sub cluster_conf_filename {
my ($version, $cluster, $configfile) = @_;
if ($configfile eq 'postgresql.auto.conf') {
my $data_directory = cluster_data_directory($version, $cluster);
return "$data_directory/$configfile";
}
my $fname = "$confroot/$version/$cluster/$configfile";
-e $fname or $fname = "$common_confdir/$configfile";
return $fname;
}
=head2 read_cluster_conf_file
Read a 'var = value' style configuration file from a cluster configuration
Arguments: <version> <cluster> <config file name> <missing_ok>
Returns: hash (empty if the file does not exist)
=cut
sub read_cluster_conf_file {
my ($version, $cluster, $configfile, $missing_ok) = @_;
my %conf = read_conf_file(cluster_conf_filename($version, $cluster, $configfile), $missing_ok);
if (%conf and $version >= 9.4 and $configfile eq 'postgresql.conf') { # merge settings changed by ALTER SYSTEM
# data_directory cannot be changed by ALTER SYSTEM
my $data_directory = cluster_data_directory($version, $cluster, \%conf);
# allow auto.conf to be missing; happens during early pg_upgradecluster when data_directory is still pointing to the old cluster
my %auto_conf = read_conf_file "$data_directory/postgresql.auto.conf", 1;
foreach my $guc (keys %auto_conf) {
next if ($guc eq 'data_directory'); # defend against pg_upgradecluster bug in 200..202
$conf{$guc} = $auto_conf{$guc};
}
}
return %conf;
}
=head2 get_conf_value
Return parameter from a PostgreSQL configuration file,
or undef if the parameter does not exist.
Arguments: <version> <cluster> <config file name> <parameter name>
=cut
sub get_conf_value {
my %conf = (read_cluster_conf_file $_[0], $_[1], $_[2], 1);
return $conf{$_[3]};
}
=head2 set_conffile_value
Set parameter of a PostgreSQL configuration file.
Arguments: <config file name> <parameter name> <value>
=cut
sub set_conffile_value {
my ($fname, $key, $value) = ($_[0], $_[1], quote_conf_value($_[2]));
my @lines;
# read configuration file lines
open (F, $fname) or die "Error: could not open $fname for reading";
push @lines, $_ while (<F>);
close F;
my $found = 0;
# first, search for an uncommented setting
for (my $i=0; $i <= $#lines; ++$i) {
if ($lines[$i] =~ /^\s*($key)(\s*(?:=|\s)\s*)(?:[^'\s]+|'[^']*')((?:\s*#.*)?)$/i) {
$lines[$i] = "$1$2$value$3\n";
$found = 1;
last;
}
}
# now check if the setting exists as a comment; if so, change that instead
# of appending
if (!$found) {
for (my $i=0; $i <= $#lines; ++$i) {
if ($lines[$i] =~ /^\s*#\s*($key)(\s*(?:=|\s)\s*)(?:[^'\s]+|'[^']*')((?:\s*#.*)?)$/i) {
$lines[$i] = "$1$2$value$3\n";
$found = 1;
last;
}
}
}
# not found anywhere, append it
push (@lines, "$key = $value\n") unless $found;
# write configuration file lines
open (F, ">$fname.new") or die "Error: could not open $fname.new for writing";
foreach (@lines) {
print F $_ or die "writing $fname.new: $!";
}
close F;
# copy permissions
my @st = stat $fname or die "stat: $!";
chown $st[4], $st[5], "$fname.new"; # might fail as non-root
chmod $st[2], "$fname.new" or die "chmod: $!";
rename "$fname.new", "$fname" or die "rename $fname.new $fname: $!";
}
=head2 set_conf_value
Set parameter of a PostgreSQL cluster configuration file.
Arguments: <version> <cluster> <config file name> <parameter name> <value>
=cut
sub set_conf_value {
return set_conffile_value(cluster_conf_filename($_[0], $_[1], $_[2]), $_[3], $_[4]);
}
=head2 disable_conffile_value
Disable a parameter in a PostgreSQL configuration file by prepending it
with a '#'. Appends an optional explanatory comment <reason> if given.
Arguments: <config file name> <parameter name> <reason>
=cut
sub disable_conffile_value {
my ($fname, $key, $reason) = @_;
my @lines;
# read configuration file lines
open (F, $fname) or die "Error: could not open $fname for reading";
push @lines, $_ while (<F>);
close F;
my $changed = 0;
for (my $i=0; $i <= $#lines; ++$i) {
if ($lines[$i] =~ /^\s*$key\s*(?:=|\s)/i) {
$lines[$i] =~ s/^/#/;
$lines[$i] =~ s/$/ #$reason/ if $reason;
$changed = 1;
last;
}
}
# write configuration file lines
if ($changed) {
open (F, ">$fname.new") or die "Error: could not open $fname.new for writing";
foreach (@lines) {
print F $_ or die "writing $fname.new: $!";
}
close F;
# copy permissions
my @st = stat $fname or die "stat: $!";
chown $st[4], $st[5], "$fname.new"; # might fail as non-root
chmod $st[2], "$fname.new" or die "chmod: $1";
rename "$fname.new", "$fname";
}
}
=head2 disable_conf_value
Disable a parameter in a PostgreSQL cluster configuration file by prepending
it with a '#'. Appends an optional explanatory comment <reason> if given.
Arguments: <version> <cluster> <config file name> <parameter name> <reason>
=cut
sub disable_conf_value {
return disable_conffile_value(cluster_conf_filename($_[0], $_[1], $_[2]), $_[3], $_[4]);
}
=head2 replace_conf_value
Replace a parameter in a PostgreSQL configuration file. The old parameter
is prepended with a '#' and gets an optional explanatory comment <reason>
appended, if given. The new parameter is inserted directly after the old one.
Arguments: <version> <cluster> <config file name> <old parameter name>
<reason> <new parameter name> <new value>
=cut
sub replace_conf_value {
my ($version, $cluster, $configfile, $oldparam, $reason, $newparam, $val) = @_;
my $fname = cluster_conf_filename($version, $cluster, $configfile);
my @lines;
# quote $val if necessary
unless ($val =~ /^\w+$/) {
$val = "'$val'";
}
# read configuration file lines
open (F, $fname) or die "Error: could not open $fname for reading";
push @lines, $_ while (<F>);
close F;
my $found = 0;
for (my $i = 0; $i <= $#lines; ++$i) {
if ($lines[$i] =~ /^\s*$oldparam\s*(?:=|\s)/i) {
$lines[$i] = '#'.$lines[$i];
chomp $lines[$i];
$lines[$i] .= ' #'.$reason."\n" if $reason;
# insert the new param
splice @lines, $i+1, 0, "$newparam = $val\n";
++$i;
$found = 1;
last;
}
}
return if !$found;
# write configuration file lines
open (F, ">$fname.new") or die "Error: could not open $fname.new for writing";
foreach (@lines) {
print F $_ or die "writing $fname.new: $!";
}
close F;
# copy permissions
my @st = stat $fname or die "stat: $!";
chown $st[4], $st[5], "$fname.new"; # might fail as non-root
chmod $st[2], "$fname.new" or die "chmod: $1";
rename "$fname.new", "$fname";
}
=head2 get_cluster_port
Return the port of a particular cluster
Arguments: <version> <cluster>
=cut
sub get_cluster_port {
return get_conf_value($_[0], $_[1], 'postgresql.conf', 'port') || $defaultport;
}
=head2 set_cluster_port
Set the port of a particular cluster.
Arguments: <version> <cluster> <port>
=cut
sub set_cluster_port {
set_conf_value $_[0], $_[1], 'postgresql.conf', 'port', $_[2];
}
=head2 cluster_data_directory
Return cluster data directory.
Arguments: <version> <cluster name> [<config_hash>]
=cut
sub cluster_data_directory {
my $d;
if ($_[2]) {
$d = ${$_[2]}{'data_directory'};
} else {
$d = get_conf_value($_[0], $_[1], 'postgresql.conf', 'data_directory');
}
my $confdir = "$confroot/$_[0]/$_[1]";
if (!$d) {
# fall back to /pgdata symlink (supported by earlier p-common releases)
$d = readlink "$confdir/pgdata";
}
if (!$d and -l $confdir and -f "$confdir/PG_VERSION") { # symlink from /etc/postgresql
$d = readlink $confdir;
}
if (!$d and -f "$confdir/PG_VERSION") { # PGDATA in /etc/postgresql
$d = $confdir;
}
($d) = $d =~ /(.*)/ if defined $d; #untaint
return $d;
}
=head2 get_cluster_socketdir
Return the socket directory of a particular cluster
or undef if the cluster does not exist.
Arguments: <version> <cluster>
=cut
sub get_cluster_socketdir {
# if it is explicitly configured, just return it
my $socketdir = get_conf_value($_[0], $_[1], 'postgresql.conf',
$_[0] >= 9.3 ? 'unix_socket_directories' : 'unix_socket_directory');
$socketdir =~ s/\s*,.*// if ($socketdir); # ignore additional directories for now
return $socketdir if $socketdir;
#redhat# return '/tmp'; # RedHat PGDG packages default to /tmp
# try to determine whether this is a postgres owned cluster and we default
# to /var/run/postgresql
$socketdir = '/var/run/postgresql';
my @socketdirstat = stat $socketdir;
error "Cannot stat $socketdir" unless @socketdirstat;
if ($_[0] && $_[1]) {
my $datadir = cluster_data_directory $_[0], $_[1];
error "Invalid data directory for cluster $_[0] $_[1]" unless $datadir;
my @datadirstat = stat $datadir;
unless (@datadirstat) {
my @p = split '/', $datadir;
my $parent = join '/', @p[0..($#p-1)];
error "$datadir is not accessible; please fix the directory permissions ($parent/ should be world readable)" unless @datadirstat;
}
$socketdir = '/tmp' if $socketdirstat[4] != $datadirstat[4];
}
return $socketdir;
}
=head2 set_cluster_socketdir
Set the socket directory of a particular cluster.
Arguments: <version> <cluster> <directory>
=cut
sub set_cluster_socketdir {
set_conf_value $_[0], $_[1], 'postgresql.conf',
$_[0] >= 9.3 ? 'unix_socket_directories' : 'unix_socket_directory',
$_[2];
}
=head2 get_program_path
Return the path of a program of a particular version.
Arguments: <program name> [<version>]
=cut
sub get_program_path {
my ($program, $version) = @_;
return '' unless defined $program;
$version //= get_newest_version($program);
my $path = "$binroot$version/bin/$program";
($path) = $path =~ /(.*)/; #untaint
return $path if -x $path;
return '';
}
=head2 cluster_port_running
Check whether a postgres server is running at the specified port.
Arguments: <version> <cluster> <port>
=cut
sub cluster_port_running {
die "port_running: invalid port $_[2]" if $_[2] !~ /\d+/;
my $socketdir = get_cluster_socketdir $_[0], $_[1];
my $socketpath = "$socketdir/.s.PGSQL.$_[2]";
return 0 unless -S $socketpath;
socket(SRV, PF_UNIX, SOCK_STREAM, 0) or die "socket: $!";
my $running = connect(SRV, sockaddr_un($socketpath));
close SRV;
return $running ? 1 : 0;
}
=head2 get_cluster_start_conf
Read, verify, and return the current start.conf setting.
Arguments: <version> <cluster>
Returns: auto | manual | disabled
=cut
sub get_cluster_start_conf {
my $start_conf = "$confroot/$_[0]/$_[1]/start.conf";
if (-e $start_conf) {
open F, $start_conf or error "Could not open $start_conf: $!";
while (<F>) {
s/#.*$//;
s/^\s*//;
s/\s*$//;
next unless $_;
close F;
return $1 if (/^(auto|manual|disabled)/);
error "Invalid mode in $start_conf, must be one of auto, manual, disabled";
}
close F;
}
return 'auto'; # default
}
=head2 set_cluster_start_conf
Change start.conf setting.
Arguments: <version> <cluster> <value>
<value> = auto | manual | disabled
=cut
sub set_cluster_start_conf {
my ($v, $c, $val) = @_;
error "Invalid mode: '$val'" unless $val eq 'auto' ||
$val eq 'manual' || $val eq 'disabled';
my $perms = 0644;
# start.conf setting
my $start_conf = "$confroot/$_[0]/$_[1]/start.conf";
my $text;
if (-e $start_conf) {
open F, $start_conf or error "Could not open $start_conf: $!";
while (<F>) {
if (/^\s*(?:auto|manual|disabled)\b(.*$)/) {
$text .= $val . $1 . "\n";
} else {
$text .= $_;
}
}
# preserve permissions if it already exists
$perms = (stat F)[2];
error "Could not get permissions of $start_conf: $!" unless $perms;
close F;
} else {
$text = "# Automatic startup configuration
# auto: automatically start the cluster
# manual: manual startup with pg_ctlcluster/postgresql@.service only
# disabled: refuse to start cluster
# See pg_createcluster(1) for details. When running from systemd,
# invoke 'systemctl daemon-reload' after editing this file.
$val
";
}
open F, '>' . $start_conf or error "Could not open $start_conf for writing: $!";
chmod $perms, $start_conf;
print F $text;
close F;
}
=head2 set_cluster_pg_ctl_conf
Change pg_ctl.conf setting.
Arguments: <version> <cluster> <options>
<options> = options passed to pg_ctl(1)
=cut
sub set_cluster_pg_ctl_conf {
my ($v, $c, $opts) = @_;
my $perms = 0644;
# pg_ctl.conf setting
my $pg_ctl_conf = "$confroot/$v/$c/pg_ctl.conf";
my $text = "# Automatic pg_ctl configuration
# This configuration file contains cluster specific options to be passed to
# pg_ctl(1).
pg_ctl_options = '$opts'
";
open F, '>' . $pg_ctl_conf or error "Could not open $pg_ctl_conf for writing: $!";
chmod $perms, $pg_ctl_conf;
print F $text;
close F;
}
=head2 read_pidfile
Return the PID from an existing PID file or undef if it does not exist.
Arguments: <pid file path>
=cut
sub read_pidfile {
return undef unless -e $_[0];
if (open PIDFILE, $_[0]) {
my $pid = <PIDFILE>;
close PIDFILE;
return undef unless ($pid);
chomp $pid;
($pid) = $pid =~ /^(\d+)\s*$/; # untaint
return $pid;
} else {
return undef;
}
}
=head2 check_pidfile_running
Check whether a pid file is present and belongs to a running postgres.
Returns undef if it cannot be determined
Arguments: <pid file path>
postgres does not clean up the PID file when it stops, and it is
not world readable, so only its absence is a definitive result;
if it is present, we need to read it and check the PID, which will
only work as root
=cut
sub check_pidfile_running {
return 0 if ! -e $_[0];
my $pid = read_pidfile $_[0];
if (defined $pid and open CL, "/proc/$pid/cmdline") {
my $cmdline = <CL>;
close CL;
if ($cmdline and $cmdline =~ /\bpostgres\b/) {
return 1;
} else {
return 0;
}
}
return undef;
}
=head2 cluster_supervisor
Determine if a cluster is managed by a supervisor (pacemaker, patroni).
Returns undef if it cannot be determined
Arguments: <pid file path>
postgres does not clean up the PID file when it stops, and it is
not world readable, so only its absence is a definitive result; if it
is present, we need to read it and check the PID, which will only
work as root
=cut
sub cluster_supervisor {
return undef if ! -e $_[0];
my $pid = read_pidfile $_[0];
if (defined $pid and open(CG, "/proc/$pid/cgroup")) {
local $/; # enable localized slurp mode
my $cgroup = <CG>;
close CG;
if ($cgroup and $cgroup =~ /\b(pacemaker|patroni)\b/) {
return $1;
}
}
return undef;
}
=head2 cluster_info
Return a hash with information about a specific cluster (which needs to exist).
Arguments: <version> <cluster name>
Returns: information hash (keys: pgdata, port, running, logfile [unless it
has a custom one], configdir, owneruid, ownergid, waldir, socketdir,
config->postgresql.conf)
=cut
sub cluster_info {
my ($v, $c) = @_;
error 'cluster_info must be called with <version> <cluster> arguments' unless ($v and $c);
my %result;
$result{'configdir'} = "$confroot/$v/$c";
$result{'configuid'} = (stat "$result{configdir}/postgresql.conf")[4];
$result{'configfile'} = "$confroot/$v/$c/postgresql.conf";
my %postgresql_conf = read_cluster_conf_file $v, $c, 'postgresql.conf', 1;
$result{'config'} = \%postgresql_conf;
$result{'pgdata'} = cluster_data_directory $v, $c, \%postgresql_conf;
return %result unless (keys %postgresql_conf);
$result{'port'} = $postgresql_conf{'port'} || $defaultport;
$result{'socketdir'} = get_cluster_socketdir $v, $c;
# if we can determine the running status with the pid file, prefer that
if ($postgresql_conf{'external_pid_file'} &&
$postgresql_conf{'external_pid_file'} ne '(none)') {
$result{'running'} = check_pidfile_running $postgresql_conf{'external_pid_file'};
my $supervisor = cluster_supervisor($postgresql_conf{'external_pid_file'});
$result{supervisor} = $supervisor if ($supervisor);
}
# otherwise fall back to probing the port; this is unreliable if the port
# was changed in the configuration file in the meantime
if (!defined ($result{'running'})) {
$result{'running'} = cluster_port_running ($v, $c, $result{'port'});
}
if ($result{'pgdata'}) {
($result{'owneruid'}, $result{'ownergid'}) =
(stat $result{'pgdata'})[4,5];
if ($v >= 12) {
$result{'recovery'} = 1 if (-e "$result{'pgdata'}/recovery.signal"
or -e "$result{'pgdata'}/standby.signal");
} else {
$result{'recovery'} = 1 if (-e "$result{'pgdata'}/recovery.conf");
}
my $waldirname = $v >= 10 ? 'pg_wal' : 'pg_xlog';
if (-l "$result{pgdata}/$waldirname") { # custom wal directory
($result{waldir}) = readlink("$result{pgdata}/$waldirname") =~ /(.*)/; # untaint
}
}
$result{'start'} = get_cluster_start_conf $v, $c;
# default log file (possibly used only for early startup messages)
my $log_symlink = $result{'configdir'} . "/log";
if (-l $log_symlink) {
($result{'logfile'}) = readlink ($log_symlink) =~ /(.*)/; # untaint
} else {
$result{'logfile'} = "/var/log/postgresql/postgresql-$v-$c.log";
}
return %result;
}
=head2 validate_cluster_owner
Checks if the owner of a cluster is valid, and the owner of the config matches
the owner of the data directory.
Arguments: cluster_info hash reference
=cut
sub validate_cluster_owner($) {
my $info = shift;
unless ($info->{pgdata}) {
error "Cluster data directory is unknown";
}
unless (-d $info->{pgdata}) {
error "$info->{pgdata} is not accessible or does not exist";
}
unless (defined $info->{owneruid}) {
error "Could not determine owner of $info->{pgdata}";
}
if ($info->{owneruid} == 0) {
error "Data directory $info->{pgdata} must not be owned by root";
}
unless (getpwuid $info->{owneruid}) {
error "The cluster is owned by user id $info->{owneruid} which does not exist";
}
unless (getgrgid $info->{ownergid}) {
error "The cluster is owned by group id $info->{ownergid} which does not exist";
}
# owneruid and configuid need to match, unless configuid is root
if (($< == 0 or $> == 0) and $info->{configuid} != 0 and
$info->{configuid} != $info->{owneruid}) {
my $configowner = (getpwuid $info->{configuid})[0] || "(unknown)";
my $dataowner = (getpwuid $info->{owneruid})[0];
error "Config owner ($configowner:$info->{configuid}) and data owner ($dataowner:$info->{owneruid}) do not match, and config owner is not root";
}
}
=head2 get_versions
Return an array of all available versions (by binaries and postgresql.conf files)
Arguments: binary to scan for (optional, defaults to postgres), maximum acceptable version (optional)
=cut
sub get_versions {
my $program = shift // 'postgres';
my $max_version = shift;
my %versions = ();
# enumerate psql versions from /usr/lib/postgresql/* (or /usr/pgsql-*)
my $dir = $binroot;
#redhat# $dir = '/usr';
if (opendir (D, $dir)) {
my $entry;
while (defined ($entry = readdir D)) {
next if $entry eq '.' || $entry eq '..';
my $pfx = '';
#redhat# $pfx = "pgsql-";
my $version;
($version) = $entry =~ /^$pfx(\d+\.?\d+)$/; # untaint
next if ($max_version and $version > $max_version);
$versions{$version} = 1 if $version and get_program_path ($program, $version);
}
closedir D;
}
# enumerate server versions from /etc/postgresql/*
if ($program eq 'postgres' and opendir (D, $confroot)) {
my $v;
while (defined ($v = readdir D)) {
next if $v eq '.' || $v eq '..';
($v) = $v =~ /^(\d+\.?\d+)$/; # untaint
next unless ($v);
next if ($max_version and $v > $max_version);
if (opendir (C, "$confroot/$v")) {
my $c;
while (defined ($c = readdir C)) {
if (-e "$confroot/$v/$c/postgresql.conf") {
$versions{$v} = 1;
last;
}
}
closedir C;
}
}
closedir D;
}
return sort { $a <=> $b } keys %versions;
}
=head2 get_newest_version
Return the newest available version
Arguments: binary to scan for (optional), maximum acceptable version (optional)
=cut
sub get_newest_version {
my $program = shift;
my $max_version = shift;
my @versions = get_versions($program, $max_version);
return undef unless (@versions);
return $versions[-1];
}
=head2 version_exists
Check whether a version exists
=cut
sub version_exists {
my ($version) = @_;
return get_program_path ('psql', $version);
}
=head2 get_version_clusters
Return an array of all available clusters of given version
Arguments: <version>
=cut
sub get_version_clusters {
my $vdir = $confroot.'/'.$_[0].'/';
my @clusters = ();
if (opendir (D, $vdir)) {
my $entry;
while (defined ($entry = readdir D)) {
next if $entry eq '.' || $entry eq '..';
($entry) = $entry =~ /^(.*)$/; # untaint
my $conf = "$vdir$entry/postgresql.conf";
if (-e $conf or -l $conf) { # existing file, or dead symlink
push @clusters, $entry;
}
}
closedir D;
}
return sort @clusters;
}
=head2 cluster_exists
Check if a cluster exists.
Arguments: <version> <cluster>
=cut
sub cluster_exists {
for my $c (get_version_clusters $_[0]) {
return 1 if $c eq $_[1];
}
return 0;
}
=head2 next_free_port
Return the next free PostgreSQL port.
=cut
sub next_free_port {
# create list of already used ports
my %ports;
for my $v (get_versions) {
for my $c (get_version_clusters $v) {
$ports{ get_cluster_port ($v, $c) } = 1;
}
}
my $port;
for ($port = $defaultport; $port < 65536; ++$port) {
# port in use by existing cluster
next if (exists $ports{$port});
# IPv4 port in use
my ($have_ip4, $have_ip6);
if (socket (SOCK, PF_INET, SOCK_STREAM, getprotobyname('tcp'))) {
$have_ip4 = 1;
setsockopt(SOCK, Socket::SOL_SOCKET, Socket::SO_REUSEADDR, 1) or error "setsockopt: $!";
my $res4 = bind (SOCK, sockaddr_in($port, INADDR_ANY)) and listen (SOCK, 0);
my $err = $!;
close SOCK;
next unless ($res4);
}
# IPv6 port in use
if (exists $Socket::{"IN6ADDR_ANY"}) {
if (socket (SOCK, PF_INET6, SOCK_STREAM, getprotobyname('tcp'))) {
$have_ip6 = 1;
setsockopt(SOCK, Socket::SOL_SOCKET, Socket::SO_REUSEADDR, 1) or error "setsockopt: $!";
my $res6 = bind (SOCK, sockaddr_in6($port, Socket::IN6ADDR_ANY)) and listen (SOCK, 0);
my $err = $!;
close SOCK;
next unless ($res6);
}
}
unless ($have_ip4 or $have_ip6) {
# require at least one protocol to work (PostgreSQL needs it anyway
# for the stats collector)
die "could not create socket: $!";
}
close SOCK;
# return port if it is available on all supported protocols
return $port;
}
die "no free port found";
}
=head2 user_cluster_map
Return the PostgreSQL version, cluster, and database to connect to.
Version is always set (defaulting to the version of the default port
if no matching entry is found, or finally to the latest installed version
if there are no clusters at all), cluster and database may be 'undef'.
If only one cluster exists, and no matching entry is found in the map files,
that cluster is returned.
=cut
sub user_cluster_map {
my ($user, $pwd, $uid, $gid) = getpwuid $>;
my $group = (getgrgid $gid)[0];
# check per-user configuration file
my $home = $ENV{"HOME"} || (getpwuid $>)[7];
my $homemapfile = $home . '/.postgresqlrc';
if (open MAP, $homemapfile) {
while (<MAP>) {
s/#.*//;
next if /^\s*$/;
my ($v,$c,$db) = split;
if (!version_exists $v) {
print "Warning: $homemapfile line $.: version $v does not exist\n";
next;
}
if (!cluster_exists $v, $c and $c !~ /^(\S+):(\d*)$/) {
print "Warning: $homemapfile line $.: cluster $v/$c does not exist\n";
next;
}
if ($db) {
close MAP;
return ($v, $c, ($db eq "*") ? undef : $db);
} else {
print "Warning: ignoring invalid line $. in $homemapfile\n";
next;
}
}
close MAP;
}
# check global map file
if (open MAP, $mapfile) {
while (<MAP>) {
s/#.*//;
next if /^\s*$/;
my ($u,$g,$v,$c,$db) = split;
if (!$db) {
print "Warning: ignoring invalid line $. in $mapfile\n";
next;
}
if (!version_exists $v) {
print "Warning: $mapfile line $.: version $v does not exist\n";
next;
}
if (!cluster_exists $v, $c and $c !~ /^(\S+):(\d*)$/) {
print "Warning: $mapfile line $.: cluster $v/$c does not exist\n";
next;
}
if (($u eq "*" || $u eq $user) && ($g eq "*" || $g eq $group)) {
close MAP;
return ($v,$c, ($db eq "*") ? undef : $db);
}
}
close MAP;
}
# if only one cluster exists, use that
my $count = 0;
my ($last_version, $last_cluster, $defaultport_version, $defaultport_cluster);
for my $v (get_versions) {
for my $c (get_version_clusters $v) {
my $port = get_cluster_port ($v, $c);
$last_version = $v;
$last_cluster = $c;
if ($port == $defaultport) {
$defaultport_version = $v;
$defaultport_cluster = $c;
}
++$count;
}
}
return ($last_version, $last_cluster, undef) if $count == 1;
if ($count == 0) {
# if there are no local clusters, use latest clients for accessing
# network clusters
return (get_newest_version('psql'), undef, undef);
}
# more than one cluster exists, return cluster at default port
return ($defaultport_version, $defaultport_cluster, undef);
}
=head2 install_file
Copy a file to a destination and setup permissions
Arguments: <source file> <destination file or dir> <uid> <gid> <permissions>
=cut
sub install_file {
my ($source, $dest, $uid, $gid, $perm) = @_;
if (system 'install', '-o', $uid, '-g', $gid, '-m', $perm, $source, $dest) {
error "install_file: could not install $source to $dest";
}
}
=head2 change_ugid
Change effective and real user and group id. Also activates all auxiliary
groups the user is in. Exits with an error message if user/group ID cannot
be changed.
Arguments: <user id> <group id>
=cut
sub change_ugid {
my ($uid, $gid) = @_;
# auxiliary groups
my $uname = (getpwuid $uid)[0];
prepare_exec;
my $groups = "$gid " . `/usr/bin/id -G $uname`;
restore_exec;
$) = $groups;
$( = $gid;
$> = $< = $uid;
error 'Could not change user id' if $< != $uid;
error 'Could not change group id' if $( != $gid;
}
=head2 system_or_error
Run a command and error out if it exits with a non-zero status.
Arguments: <command ...>
=cut
sub system_or_error {
my $ret = system @_;
if ($ret) {
my $message = "@_ failed with exit code $ret";
$message .= ": $!" if ($!);
error $message;
}
}
=head2 get_db_encoding
Return the encoding of a particular database in a cluster.
This requires access privileges to that database, so this
function should be called as the cluster owner.
Arguments: <version> <cluster> <database>
Returns: Encoding or undef if it cannot be determined.
=cut
sub get_db_encoding {
my ($version, $cluster, $db) = @_;
my $port = get_cluster_port $version, $cluster;
my $socketdir = get_cluster_socketdir $version, $cluster;
my $psql = get_program_path 'psql', $version;
return undef unless ($port && $socketdir && $psql);
# try to swich to cluster owner
prepare_exec 'LC_ALL';
$ENV{'LC_ALL'} = 'C';
my $orig_euid = $>;
$> = (stat (cluster_data_directory $version, $cluster))[4];
open PSQL, '-|', $psql, '-h', $socketdir, '-p', $port, '-AXtc',
'select getdatabaseencoding()', $db or
die "Internal error: could not call $psql to determine db encoding: $!";
my $out = <PSQL>;
close PSQL;
$> = $orig_euid;
restore_exec;
return undef if $?;
chomp $out;
($out) = $out =~ /^([\w.-]+)$/; # untaint
return $out;
}
=head2 get_db_locales
Return locale of a particular database in a cluster. This requires access
privileges to that database, so this function should be called as the cluster
owner. (For versions >= 8.4; for older versions use get_cluster_locales()).
Arguments: <version> <cluster> <database>
Returns: (LC_CTYPE, LC_COLLATE, locprovider, iculocale, icurules) or undef if it cannot be determined.
PG15 adds locale provider and icu locale to the returned values
PG16 adds icu rules
=cut
sub get_db_locales {
my ($version, $cluster, $db) = @_;
my $port = get_cluster_port $version, $cluster;
my $socketdir = get_cluster_socketdir $version, $cluster;
my $psql = get_program_path 'psql', $version;
return undef unless ($port && $socketdir && $psql);
my ($ctype, $collate, $locale_provider, $icu_locale, $icu_rules);
# try to switch to cluster owner
prepare_exec 'LC_ALL';
$ENV{'LC_ALL'} = 'C';
my $orig_euid = $>;
$> = (stat (cluster_data_directory $version, $cluster))[4];
my $datlocprovider = $version >= 15 ? "CASE datlocprovider::text WHEN 'c' THEN 'libc' WHEN 'i' THEN 'icu' WHEN 'b' THEN 'builtin' END" : "NULL";
my $daticulocale = ($version >= 15 and $version < 17) ? "daticulocale" : "NULL";
my $daticurules = $version >= 16 ? "daticurules" : "NULL";
open PSQL, '-|', $psql, '-h', $socketdir, '-p', $port, '-AXtc',
"SELECT datctype, datcollate, $datlocprovider, $daticulocale, $daticurules FROM pg_database where datname = current_database()", $db or
die "Internal error: could not call $psql to determine datctype and datcollate: $!";
my $out = <PSQL> // error 'could not determine datctype and datcollate';
close PSQL;
($out) = $out =~ /^(.*)$/; # untaint
($ctype, $collate, $locale_provider, $icu_locale, $icu_rules) = split /\|/, $out;
$> = $orig_euid;
restore_exec;
chomp $ctype;
chomp $collate;
return ($ctype, $collate, $locale_provider, $icu_locale, $icu_rules) unless $?;
return (undef, undef, undef, undef, undef);
}
=head2 get_cluster_locales
Return the CTYPE and COLLATE locales of a cluster.
This needs to be called as root or as the cluster owner.
(For versions <= 8.3; for >= 8.4, use get_db_locales()).
Arguments: <version> <cluster>
Returns: (LC_CTYPE, LC_COLLATE) or (undef,undef) if it cannot be determined.
=cut
sub get_cluster_locales {
my ($version, $cluster) = @_;
my ($lc_ctype, $lc_collate) = (undef, undef);
if ($version >= '8.4') {
print STDERR "Error: get_cluster_locales() does not work for 8.4+\n";
exit 1;
}
my $pg_controldata = get_program_path 'pg_controldata', $version;
if (! -e $pg_controldata) {
print STDERR "Error: pg_controldata not found, please install postgresql-$version\n";
exit 1;
}
prepare_exec ('LC_ALL', 'LANG', 'LANGUAGE');
$ENV{'LC_ALL'} = 'C';
my $result = open (CTRL, '-|', $pg_controldata, (cluster_data_directory $version, $cluster));
restore_exec;
return (undef, undef) unless defined $result;
while (<CTRL>) {
if (/^LC_CTYPE\W*(\S+)\s*$/) {
$lc_ctype = $1;
} elsif (/^LC_COLLATE\W*(\S+)\s*$/) {
$lc_collate = $1;
}
}
close CTRL;
return ($lc_ctype, $lc_collate);
}
=head2 get_cluster_controldata
Return the pg_control data for a cluster
Arguments: <version> <cluster>
Returns: hashref
=cut
sub get_cluster_controldata {
my ($version, $cluster) = @_;
my $pg_controldata = get_program_path 'pg_controldata', $version;
if (! -e $pg_controldata) {
print STDERR "Error: pg_controldata not found, please install postgresql-$version\n";
exit 1;
}
prepare_exec ('LC_ALL', 'LANG', 'LANGUAGE');
$ENV{'LC_ALL'} = 'C';
my $result = open (CTRL, '-|', $pg_controldata, (cluster_data_directory $version, $cluster));
restore_exec;
return undef unless defined $result;
my $data = {};
while (<CTRL>) {
if (/^(.+?):\s*(.*)/) {
$data->{$1} = $2;
} else {
error "Invalid pg_controldata output: $_";
}
}
close CTRL;
return $data;
}
=head2 get_cluster_databases
Return an array with all databases of a cluster.
This requires connection privileges to template1, so
this function should be called as the cluster owner.
Arguments: <version> <cluster>
Returns: array of database names or undef on error.
=cut
sub get_cluster_databases {
my ($version, $cluster) = @_;
my $port = get_cluster_port $version, $cluster;
my $socketdir = get_cluster_socketdir $version, $cluster;
my $psql = get_program_path 'psql', $version;
return undef unless ($port && $socketdir && $psql);
# try to swich to cluster owner
prepare_exec 'LC_ALL';
$ENV{'LC_ALL'} = 'C';
my $orig_euid = $>;
$> = (stat (cluster_data_directory $version, $cluster))[4];
my @dbs;
my @fields;
if (open PSQL, '-|', $psql, '-h', $socketdir, '-p', $port, '-AXtl') {
while (<PSQL>) {
chomp;
@fields = split '\|';
next if $#fields < 2; # remove access privs which get line broken
push (@dbs, $fields[0]);
}
close PSQL;
}
$> = $orig_euid;
restore_exec;
return $? ? undef : @dbs;
}
=head2 get_file_device
Return the device name a file is stored at.
Arguments: <file path>
Returns: device name, or '' if it cannot be determined.
=cut
sub get_file_device {
my $dev = '';
prepare_exec;
my $pid = open3(\*CHLD_IN, \*CHLD_OUT, \*CHLD_ERR, '/bin/df', $_[0]);
waitpid $pid, 0; # we simply ignore exit code and stderr
while (<CHLD_OUT>) {
if (/^\/dev/) {
$dev = (split)[0];
}
}
restore_exec;
close CHLD_IN;
close CHLD_OUT;
close CHLD_ERR;
return $dev;
}
=head2 parse_hba_line
Parse a single pg_hba.conf line.
Arguments: <line>
Returns: Hash reference (or only line and type==undef for invalid lines)
=over 4
=item *
line -> the verbatim pg_hba line
=item *
type -> comment, local, host, hostssl, hostnossl, undef
=item *
db -> database name
=item *
user -> user name
=item *
method -> trust, reject, md5, crypt, password, krb5, ident, pam
=item *
ip -> ip address
=item *
mask -> network mask (either a single number as number of bits, or bit mask)
=back
=cut
sub parse_hba_line {
my $l = $_[0];
chomp $l;
# comment line?
return { 'type' => 'comment', 'line' => $l } if ($l =~ /^\s*($|#)/);
my $res = { 'line' => $l };
my @tok = split /\s+/, $l;
goto error if $#tok < 3;
$$res{'type'} = shift @tok;
$$res{'db'} = shift @tok;
$$res{'user'} = shift @tok;
# local connection?
if ($$res{'type'} eq 'local') {
goto error if $#tok > 1;
goto error unless valid_hba_method($tok[0]);
$$res{'method'} = join (' ', @tok);
return $res;
}
# host connection?
if ($$res{'type'} =~ /^host((no)?ssl)?$/) {
my ($i, $c) = split '/', (shift @tok);
goto error unless $i;
$$res{'ip'} = $i;
# CIDR mask given?
if (defined $c) {
goto error if $c !~ /^(\d+)$/;
$$res{'mask'} = $c;
} else {
$$res{'mask'} = shift @tok;
}
goto error if $#tok > 1;
goto error unless valid_hba_method($tok[0]);
$$res{'method'} = join (' ', @tok);
return $res;
}
error:
$$res{'type'} = undef;
return $res;
}
=head2 read_pg_hba
Parse given pg_hba.conf file.
Arguments: <pg_hba.conf path>
Returns: Array with hash refs; for hash contents, see parse_hba_line().
=cut
sub read_pg_hba {
open HBA, $_[0] or return undef;
my @hba;
while (<HBA>) {
my $r = parse_hba_line $_;
push @hba, $r;
}
close HBA;
return @hba;
}
=head2 valid_hba_method
Check if hba method is known
Argument: hba method
Returns: True if method is valid
=cut
sub valid_hba_method {
my $method = $_[0];
my %valid_methods = qw/trust 1 reject 1 md5 1 crypt 1 password 1 krb5 1 ident 1 pam 1/;
return exists($valid_methods{$method});
}
=head2 package_list
Arguments: pattern for dpkg -l
Returns: list of packages matching pattern
=cut
sub package_list($) {
my $pattern = shift;
my @packages;
open (my $fh, '-|', 'dpkg', '-l', $pattern) or error "could not read list of packages";
while (<$fh>) {
next unless (/^ii\s+(\S+)/);
push @packages, $1;
}
close $fh;
return @packages;
}
1;
|