]> git.proxmox.com Git - pve-ha-manager.git/blame - src/PVE/HA/Env/PVE2.pm
manager: send notifications via new notification module
[pve-ha-manager.git] / src / PVE / HA / Env / PVE2.pm
CommitLineData
714a4016
DM
1package PVE::HA::Env::PVE2;
2
3use strict;
4use warnings;
76737af5
DM
5use POSIX qw(:errno_h :fcntl_h);
6use IO::File;
115805fd 7use IO::Socket::UNIX;
5db695c3 8use JSON;
714a4016
DM
9
10use PVE::SafeSyslog;
11use PVE::Tools;
119656b9 12use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
ef39a1ca 13use PVE::DataCenterConfig;
022e4e79
DM
14use PVE::INotify;
15use PVE::RPCEnvironment;
4cb3b2cf 16use PVE::Notify;
714a4016 17
a89ff919 18use PVE::HA::Tools ':exit_codes';
714a4016 19use PVE::HA::Env;
ce216792 20use PVE::HA::Config;
c982dfee 21use PVE::HA::FenceConfig;
9e5ea8f7
DM
22use PVE::HA::Resources;
23use PVE::HA::Resources::PVEVM;
24use PVE::HA::Resources::PVECT;
714a4016 25
9e5ea8f7
DM
26PVE::HA::Resources::PVEVM->register();
27PVE::HA::Resources::PVECT->register();
28
29PVE::HA::Resources->init();
022e4e79 30
007fcc8b
DM
31my $lockdir = "/etc/pve/priv/lock";
32
714a4016
DM
33sub new {
34 my ($this, $nodename) = @_;
35
36 die "missing nodename" if !$nodename;
37
38 my $class = ref($this) || $this;
39
40 my $self = bless {}, $class;
41
42 $self->{nodename} = $nodename;
43
44 return $self;
45}
46
47sub nodename {
48 my ($self) = @_;
49
50 return $self->{nodename};
51}
52
dd9c0c9d
TL
53sub hardware {
54 my ($self) = @_;
55
56 die "hardware is for testing and simulation only";
57}
58
714a4016
DM
59sub read_manager_status {
60 my ($self) = @_;
714a4016 61
139a9b90 62 return PVE::HA::Config::read_manager_status();
714a4016
DM
63}
64
65sub write_manager_status {
66 my ($self, $status_obj) = @_;
63f6a08c 67
139a9b90 68 PVE::HA::Config::write_manager_status($status_obj);
714a4016
DM
69}
70
c4a221bc
DM
71sub read_lrm_status {
72 my ($self, $node) = @_;
73
74 $node = $self->{nodename} if !defined($node);
75
139a9b90 76 return PVE::HA::Config::read_lrm_status($node);
c4a221bc
DM
77}
78
79sub write_lrm_status {
80 my ($self, $status_obj) = @_;
81
6cbcb5f7 82 my $node = $self->{nodename};
63f6a08c 83
139a9b90
DM
84 PVE::HA::Config::write_lrm_status($node, $status_obj);
85}
c4a221bc 86
cde77779 87sub is_node_shutdown {
d42219a3
TL
88 my ($self) = @_;
89
cde77779 90 my $shutdown = 0;
f65f41b9 91 my $reboot = 0;
d42219a3
TL
92
93 my $code = sub {
94 my $line = shift;
95
61ae38eb 96 # ensure we match the full unit name by matching /^JOB_ID UNIT /
f65f41b9
TL
97 # see: man systemd.special
98 $shutdown = 1 if ($line =~ m/^\d+\s+shutdown\.target\s+/);
99 $reboot = 1 if ($line =~ m/^\d+\s+reboot\.target\s+/);
d42219a3
TL
100 };
101
61ae38eb 102 my $cmd = ['/bin/systemctl', '--full', 'list-jobs'];
d42219a3
TL
103 eval { PVE::Tools::run_command($cmd, outfunc => $code, noerr => 1); };
104
f65f41b9 105 return ($shutdown, $reboot);
d42219a3
TL
106}
107
139a9b90
DM
108sub queue_crm_commands {
109 my ($self, $cmd) = @_;
c4a221bc 110
139a9b90
DM
111 return PVE::HA::Config::queue_crm_commands($cmd);
112}
113
114sub read_crm_commands {
115 my ($self) = @_;
116
117 return PVE::HA::Config::read_crm_commands();
c4a221bc
DM
118}
119
b83b4ae8
DM
120sub read_service_config {
121 my ($self) = @_;
ce216792 122
85f6e9ca 123 return PVE::HA::Config::read_and_check_resources_config();
714a4016
DM
124}
125
76b83c72
FE
126sub update_service_config {
127 my ($self, $sid, $param) = @_;
128
129 return PVE::HA::Config::update_resources_config($sid, $param);
130}
131
0087839a
FG
132sub parse_sid {
133 my ($self, $sid) = @_;
134
135 return PVE::HA::Config::parse_sid($sid);
136}
137
c982dfee
TL
138sub read_fence_config {
139 my ($self) = @_;
140
141 return PVE::HA::Config::read_fence_config();
142}
143
144sub fencing_mode {
145 my ($self) = @_;
146
147 my $datacenterconfig = cfs_read_file('datacenter.cfg');
148
149 return 'watchdog' if !$datacenterconfig->{fencing};
150
151 return $datacenterconfig->{fencing};
152}
153
154sub exec_fence_agent {
155 my ($self, $agent, $node, @param) = @_;
156
157 # setup execution environment
158 $ENV{'PATH'} = '/sbin:/bin:/usr/sbin:/usr/bin';
159
160 my $cmd = "$agent " . PVE::HA::FenceConfig::gen_arg_str(@param);
161
162 exec($cmd);
163 exit -1;
164}
165
9da84a0d
TL
166# this is only allowed by the master to recover a _fenced_ service
167sub steal_service {
6da27e23 168 my ($self, $sid, $current_node, $new_node) = @_;
8456bde2 169
0354cbe9 170 my (undef, $type, $name) = PVE::HA::Config::parse_sid($sid);
6da27e23 171
303a08aa
TL
172 if(my $plugin = PVE::HA::Resources->lookup($type)) {
173 my $old = $plugin->config_file($name, $current_node);
174 my $new = $plugin->config_file($name, $new_node);
6da27e23
DM
175 rename($old, $new) ||
176 die "rename '$old' to '$new' failed - $!\n";
177 } else {
178 die "implement me";
179 }
48f2144b
FE
180
181 # Necessary for (at least) static usage plugin to always be able to read service config from new
182 # node right away.
183 $self->cluster_state_update();
8456bde2
DM
184}
185
abc920b4
DM
186sub read_group_config {
187 my ($self) = @_;
188
139a9b90 189 return PVE::HA::Config::read_group_config();
3b996922
DM
190}
191
714a4016
DM
192# this should return a hash containing info
193# what nodes are members and online.
194sub get_node_info {
195 my ($self) = @_;
196
d706ef8b 197 my ($node_info, $quorate) = ({}, 0);
63f6a08c 198
d706ef8b
DM
199 my $nodename = $self->{nodename};
200
201 $quorate = PVE::Cluster::check_cfs_quorum(1) || 0;
202
203 my $members = PVE::Cluster::get_members();
204
205 foreach my $node (keys %$members) {
206 my $d = $members->{$node};
63f6a08c 207 $node_info->{$node}->{online} = $d->{online};
d706ef8b 208 }
63f6a08c 209
d706ef8b 210 $node_info->{$nodename}->{online} = 1; # local node is always up
63f6a08c 211
d706ef8b 212 return ($node_info, $quorate);
714a4016
DM
213}
214
215sub log {
216 my ($self, $level, $msg) = @_;
217
218 chomp $msg;
219
220 syslog($level, $msg);
221}
222
4cb3b2cf
LW
223sub send_notification {
224 my ($self, $subject, $text, $properties) = @_;
1b3969b6 225
4cb3b2cf
LW
226 eval {
227 my $dc_config = PVE::Cluster::cfs_read_file('datacenter.cfg');
228 my $target = $dc_config->{notify}->{'target-fencing'} // PVE::Notify::default_target();
229 my $notify = $dc_config->{notify}->{fencing} // 'always';
230
231 if ($notify eq 'always') {
232 PVE::Notify::error($target, $subject, $text, $properties);
233 }
234 };
1b3969b6 235
4cb3b2cf 236 $self->log("warning", "could not notify: $@") if $@;
1b3969b6
TL
237}
238
d69a79f3 239my $last_lock_status_hash = {};
007fcc8b
DM
240
241sub get_pve_lock {
242 my ($self, $lockid) = @_;
714a4016 243
007fcc8b 244 my $got_lock = 0;
4d24e7db 245
4d24e7db
DM
246 my $filename = "$lockdir/$lockid";
247
d69a79f3
DM
248 $last_lock_status_hash->{$lockid} //= { lock_time => 0, got_lock => 0};
249 my $last = $last_lock_status_hash->{$lockid};
007fcc8b
DM
250
251 my $ctime = time();
d69a79f3
DM
252 my $last_lock_time = $last->{lock_time} // 0;
253 my $last_got_lock = $last->{got_lock};
4d24e7db 254
5d2406c9 255 my $retry_timeout = 120; # hardcoded lock lifetime limit from pmxcfs
63f6a08c 256
4d24e7db
DM
257 eval {
258
259 mkdir $lockdir;
260
007fcc8b
DM
261 # pve cluster filesystem not online
262 die "can't create '$lockdir' (pmxcfs not mounted?)\n" if ! -d $lockdir;
263
cb0bac5e 264 if (($ctime - $last_lock_time) < $retry_timeout) {
737abf2f
DM
265 # try cfs lock update request (utime)
266 if (utime(0, $ctime, $filename)) {
267 $got_lock = 1;
268 return;
269 }
d69a79f3
DM
270 die "cfs lock update failed - $!\n";
271 }
007fcc8b 272
d69a79f3
DM
273 if (mkdir $filename) {
274 $got_lock = 1;
275 return;
007fcc8b 276 }
4d24e7db 277
d69a79f3
DM
278 utime 0, 0, $filename; # cfs unlock request
279 die "can't get cfs lock\n";
4d24e7db
DM
280 };
281
007fcc8b
DM
282 my $err = $@;
283
d69a79f3 284 #$self->log('err', $err) if $err; # for debugging
63f6a08c 285
d69a79f3
DM
286 $last->{got_lock} = $got_lock;
287 $last->{lock_time} = $ctime if $got_lock;
007fcc8b 288
d69a79f3 289 if (!!$got_lock != !!$last_got_lock) {
007fcc8b 290 if ($got_lock) {
63f6a08c 291 $self->log('info', "successfully acquired lock '$lockid'");
007fcc8b
DM
292 } else {
293 my $msg = "lost lock '$lockid";
63f6a08c 294 $msg .= " - $err" if $err;
007fcc8b
DM
295 $self->log('err', $msg);
296 }
297 }
298
299 return $got_lock;
300}
301
302sub get_ha_manager_lock {
303 my ($self) = @_;
304
007fcc8b 305 return $self->get_pve_lock("ha_manager_lock");
714a4016
DM
306}
307
de002253
TL
308# release the cluster wide manager lock.
309# when released another CRM may step up and get the lock, thus this should only
310# get called when shutting down/deactivating the current master
311sub release_ha_manager_lock {
312 my ($self) = @_;
313
314 return rmdir("$lockdir/ha_manager_lock");
315}
316
714a4016 317sub get_ha_agent_lock {
714a4016 318 my ($self, $node) = @_;
63f6a08c 319
f5c29173 320 $node = $self->nodename() if !defined($node);
714a4016 321
f5c29173 322 return $self->get_pve_lock("ha_agent_${node}_lock");
714a4016
DM
323}
324
ff165cd8
TL
325# release the respective node agent lock.
326# this should only get called if the nodes LRM gracefully shuts down with
327# all services already cleanly stopped!
328sub release_ha_agent_lock {
329 my ($self) = @_;
330
331 my $node = $self->nodename();
332
333 return rmdir("$lockdir/ha_agent_${node}_lock");
334}
335
714a4016
DM
336sub quorate {
337 my ($self) = @_;
338
4d24e7db 339 my $quorate = 0;
63f6a08c
TL
340 eval {
341 $quorate = PVE::Cluster::check_cfs_quorum();
4d24e7db 342 };
63f6a08c 343
4d24e7db 344 return $quorate;
714a4016
DM
345}
346
347sub get_time {
348 my ($self) = @_;
349
350 return time();
351}
352
353sub sleep {
354 my ($self, $delay) = @_;
355
356 CORE::sleep($delay);
357}
358
359sub sleep_until {
360 my ($self, $end_time) = @_;
361
362 for (;;) {
363 my $cur_time = time();
364
365 last if $cur_time >= $end_time;
366
367 $self->sleep(1);
368 }
369}
370
371sub loop_start_hook {
372 my ($self) = @_;
373
374 $self->{loop_start} = $self->get_time();
3df15380 375
714a4016
DM
376}
377
378sub loop_end_hook {
379 my ($self) = @_;
380
381 my $delay = $self->get_time() - $self->{loop_start};
63f6a08c 382
714a4016
DM
383 warn "loop take too long ($delay seconds)\n" if $delay > 30;
384}
385
3df15380
TL
386sub cluster_state_update {
387 my ($self) = @_;
388
389 eval { PVE::Cluster::cfs_update(1) };
390 if (my $err = $@) {
391 $self->log('warn', "cluster file system update failed - $err");
392 return 0;
393 }
394
395 return 1;
396}
397
76737af5
DM
398my $watchdog_fh;
399
714a4016
DM
400sub watchdog_open {
401 my ($self) = @_;
402
76737af5
DM
403 die "watchdog already open\n" if defined($watchdog_fh);
404
115805fd
DM
405 $watchdog_fh = IO::Socket::UNIX->new(
406 Type => SOCK_STREAM(),
407 Peer => "/run/watchdog-mux.sock") ||
408 die "unable to open watchdog socket - $!\n";
63f6a08c 409
76737af5 410 $self->log('info', "watchdog active");
714a4016
DM
411}
412
413sub watchdog_update {
414 my ($self, $wfh) = @_;
415
76737af5
DM
416 my $res = $watchdog_fh->syswrite("\0", 1);
417 if (!defined($res)) {
418 $self->log('err', "watchdog update failed - $!\n");
419 return 0;
420 }
421 if ($res != 1) {
422 $self->log('err', "watchdog update failed - write $res bytes\n");
423 return 0;
424 }
425
426 return 1;
714a4016
DM
427}
428
429sub watchdog_close {
430 my ($self, $wfh) = @_;
431
76737af5
DM
432 $watchdog_fh->syswrite("V", 1); # magic watchdog close
433 if (!$watchdog_fh->close()) {
434 $self->log('err', "watchdog close failed - $!");
435 } else {
436 $watchdog_fh = undef;
437 $self->log('info', "watchdog closed (disabled)");
438 }
714a4016
DM
439}
440
a2aae08a
TL
441sub after_fork {
442 my ($self) = @_;
443
444 # close inherited inotify FD from parent and reopen our own
445 PVE::INotify::inotify_close();
446 PVE::INotify::inotify_init();
447
448 PVE::Cluster::cfs_update();
449}
450
a28fa330
TL
451sub get_max_workers {
452 my ($self) = @_;
453
454 my $datacenterconfig = cfs_read_file('datacenter.cfg');
455
456 return $datacenterconfig->{max_workers} || 4;
457}
458
ed408b44 459# return cluster wide enforced HA settings
749d8161 460sub get_datacenter_settings {
ed408b44
TL
461 my ($self) = @_;
462
f3e2a4f2 463 my $datacenterconfig = eval { cfs_read_file('datacenter.cfg') };
7c142d68 464 $self->log('err', "unable to get HA settings from datacenter.cfg - $@") if $@;
ed408b44 465
7c142d68
FE
466 return {
467 ha => $datacenterconfig->{ha} // {},
468 crs => $datacenterconfig->{crs} // {},
469 };
ed408b44
TL
470}
471
5db695c3
FE
472sub get_static_node_stats {
473 my ($self) = @_;
474
475 my $stats = PVE::Cluster::get_node_kv('static-info');
476 for my $node (keys $stats->%*) {
477 $stats->{$node} = eval { decode_json($stats->{$node}) };
478 $self->log('err', "unable to decode static node info for '$node' - $@") if $@;
479 }
480
481 return $stats;
482}
483
714a4016 4841;