]> git.proxmox.com Git - pmg-api.git/blob - src/PMG/ClusterConfig.pm
add /etc/pmg/pbs to cluster-sync
[pmg-api.git] / src / PMG / ClusterConfig.pm
1 package PMG::ClusterConfig::Base;
2
3 use strict;
4 use warnings;
5 use Data::Dumper;
6
7 use PVE::Tools;
8 use PVE::JSONSchema qw(get_standard_option);
9 use PVE::Network;
10 use PVE::SectionConfig;
11
12 use base qw(PVE::SectionConfig);
13
14 my $defaultData = {
15 propertyList => {
16 type => { description => "Cluster node type." },
17 cid => {
18 description => "Cluster Node ID.",
19 type => 'integer',
20 minimum => 1,
21 },
22 },
23 };
24
25 sub private {
26 return $defaultData;
27 }
28
29 sub parse_section_header {
30 my ($class, $line) = @_;
31
32 if ($line =~ m/^(node|master):\s*(\d+)\s*$/) {
33 my ($type, $sectionId) = ($1, $2);
34 my $errmsg = undef; # set if you want to skip whole section
35 my $config = {}; # to return additional attributes
36 return ($type, $sectionId, $errmsg, $config);
37 }
38 return undef;
39 }
40
41 package PMG::ClusterConfig::Node;
42
43 use strict;
44 use warnings;
45
46 use base qw(PMG::ClusterConfig::Base);
47
48 sub type {
49 return 'node';
50 }
51 sub properties {
52 return {
53 ip => {
54 description => "IP address.",
55 type => 'string', format => 'ip',
56 },
57 name => {
58 description => "Node name.",
59 type => 'string', format =>'pve-node',
60 },
61 hostrsapubkey => {
62 description => "Public SSH RSA key for the host.",
63 type => 'string',
64 pattern => '^[A-Za-z0-9\.\/\+]{200,}$',
65 },
66 rootrsapubkey => {
67 description => "Public SSH RSA key for the root user.",
68 type => 'string',
69 pattern => '^[A-Za-z0-9\.\/\+]{200,}$',
70 },
71 fingerprint => {
72 description => "SSL certificate fingerprint.",
73 type => 'string',
74 pattern => '^(:?[A-Z0-9][A-Z0-9]:){31}[A-Z0-9][A-Z0-9]$',
75 },
76 };
77 }
78
79 sub options {
80 return {
81 ip => { fixed => 1 },
82 name => { fixed => 1 },
83 hostrsapubkey => {},
84 rootrsapubkey => {},
85 fingerprint => {},
86 };
87 }
88
89 package PMG::ClusterConfig::Master;
90
91 use strict;
92 use warnings;
93
94 use base qw(PMG::ClusterConfig::Base);
95
96 sub type {
97 return 'master';
98 }
99
100 sub properties {
101 return {
102 maxcid => {
103 description => "Maximum used cluster node ID (used internally, do not modify).",
104 type => 'integer',
105 minimum => 1,
106 },
107 };
108 }
109
110 sub options {
111 return {
112 maxcid => { fixed => 1 },
113 ip => { fixed => 1 },
114 name => { fixed => 1 },
115 hostrsapubkey => {},
116 rootrsapubkey => {},
117 fingerprint => {},
118 };
119 }
120
121 package PMG::ClusterConfig;
122
123 use strict;
124 use warnings;
125 use Data::Dumper;
126
127 use PVE::SafeSyslog;
128 use PVE::Tools;
129 use PVE::INotify;
130
131 use PMG::Utils;
132
133 PMG::ClusterConfig::Node->register;
134 PMG::ClusterConfig::Master->register;
135 PMG::ClusterConfig::Base->init();
136
137
138 sub new {
139 my ($type) = @_;
140
141 my $class = ref($type) || $type;
142
143 my $cfg = PVE::INotify::read_file("cluster.conf");
144
145 return bless $cfg, $class;
146 }
147
148 sub write {
149 my ($self) = @_;
150
151 PVE::INotify::write_file("cluster.conf", $self);
152 }
153
154 my $lockfile = "/var/lock/pmgcluster.lck";
155
156 sub lock_config {
157 my ($code, $errmsg) = @_;
158
159 my $res = PVE::Tools::lock_file($lockfile, undef, $code);
160 if (my $err = $@) {
161 $errmsg ? die "$errmsg: $err" : die $err;
162 }
163 return $res;
164 }
165
166 sub read_cluster_conf {
167 my ($filename, $fh) = @_;
168
169 local $/ = undef; # slurp mode
170
171 my $raw = defined($fh) ? <$fh> : undef;
172
173 my $cinfo = PMG::ClusterConfig::Base->parse_config($filename, $raw);
174
175 my $localname = PVE::INotify::nodename();
176 my $localip = PVE::Network::get_ip_from_hostname($localname);
177
178 $cinfo->{remnodes} = [];
179
180 $cinfo->{local} = {
181 cid => 0,
182 ip => $localip,
183 name => $localname,
184 };
185
186 my $maxcid = 0;
187 my $names_hash = {};
188
189 my $errprefix = "unable to parse $filename";
190
191 foreach my $cid (keys %{$cinfo->{ids}}) {
192 my $d = $cinfo->{ids}->{$cid};
193
194 die "$errprefix: duplicate use of name '$d->{name}'\n" if $names_hash->{$d->{name}};
195 $names_hash->{$d->{name}} = 1;
196
197 $d->{cid} = $cid;
198 $maxcid = $cid > $maxcid ? $cid : $maxcid;
199 $maxcid = $d->{maxcid} if defined($d->{maxcid}) && $d->{maxcid} > $maxcid;
200 $cinfo->{master} = $d if $d->{type} eq 'master';
201 $cinfo->{'local'} = $d if $d->{name} eq $localname;
202 }
203
204 if ($maxcid) {
205 die "$errprefix: cluster without master node\n"
206 if !defined($cinfo->{master});
207 $cinfo->{master}->{maxcid} = $maxcid;
208 }
209
210 my $local_cid = $cinfo->{local}->{cid};
211 foreach my $cid (sort keys %{$cinfo->{ids}}) {
212 if ($local_cid != $cid) {
213 push @{$cinfo->{remnodes}}, $cid;
214 }
215 }
216
217 return $cinfo;
218 }
219
220 sub write_cluster_conf {
221 my ($filename, $fh, $cfg) = @_;
222
223 my $raw = PMG::ClusterConfig::Base->write_config($filename, $cfg);
224
225 PVE::Tools::safe_print($filename, $fh, $raw);
226 }
227
228 PVE::INotify::register_file('cluster.conf', "/etc/pmg/cluster.conf",
229 \&read_cluster_conf,
230 \&write_cluster_conf,
231 undef,
232 always_call_parser => 1);
233
234 1;