summaryrefslogtreecommitdiffstats
path: root/lib/OpenSLX/Basics.pm
blob: e5a57b159ca98ad4f70848517d8650fd1d2f10dd (plain) (blame)
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
# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# Basics.pm
#	- provides basic functionality of the OpenSLX config-db.
# -----------------------------------------------------------------------------
package OpenSLX::Basics;

use strict;
use warnings;

our (@ISA, @EXPORT, $VERSION);

use Exporter;
$VERSION = 1.01;
@ISA     = qw(Exporter);

@EXPORT = qw(
	&openslxInit %openslxConfig %cmdlineConfig
	&_tr &trInit
	&warn &die &croak &carp &confess &cluck
	&callInSubprocess &executeInSubprocess &slxsystem
	&vlog
	&checkParams
	&instantiateClass
	&addCleanupFunction &removeCleanupFunction
);

our (%openslxConfig, %cmdlineConfig, %openslxPath);

use subs qw(die warn);

use open ':utf8';

################################################################################
### Module implementation
################################################################################
require Carp;		# do not import anything as we are going to overload carp
					# and croak!
use Carp::Heavy;    # use it here to have it loaded immediately, not at
                    # the time when carp() is being invoked (which might
                    # be at a point in time where the script executes in
                    # a chrooted environment, such that the module can't
                    # be loaded anymore).
use Config::General;
use Encode;
require File::Glob;
use FindBin;
use Getopt::Long;
use POSIX qw(locale_h);

my $translations;

# this hash will hold the active openslx configuration,
# the initial content is based on environment variables or default values.
# Each value may be overridden from config files and/or cmdline arguments.
%openslxConfig = (
	'db-name' => $ENV{SLX_DB_NAME} || 'openslx',
	'db-spec' => $ENV{SLX_DB_SPEC},
	'db-type' => $ENV{SLX_DB_TYPE} || 'SQLite',
	'locale'         => setlocale(LC_MESSAGES),
	'locale-charmap' => `locale charmap`,
	'base-path'      => $ENV{SLX_BASE_PATH} || '/opt/openslx',
	'config-path'    => $ENV{SLX_CONFIG_PATH} || '/etc/opt/openslx',
	'private-path'   => $ENV{SLX_PRIVATE_PATH} || '/var/opt/openslx',
	'public-path'    => $ENV{SLX_PUBLIC_PATH} || '/srv/openslx',
	'temp-path'      => $ENV{SLX_TEMP_PATH} || '/tmp',
	'verbose-level'  => $ENV{SLX_VERBOSE_LEVEL} || '0',

	#
	# options useful during development only:
	#
	'debug-confess' => '0',

	#
	# extended settings follow, which are only supported by slxsettings,
	# but not by any other script:
	#
	'db-user'                            => undef,
	'db-passwd'                          => undef,
	'default-shell'                      => 'bash',
	'default-timezone'                   => 'Europe/Berlin',
	'mirrors-preferred-top-level-domain' => undef,
	'mirrors-to-try-count'               => '20',
	'mirrors-to-use-count'               => '5',
	'ossetup-max-try-count'              => '5',
	'pxe-theme'                          => undef,
	'pxe-theme-menu-margin'              => '9',
);
chomp($openslxConfig{'locale-charmap'});

# specification of cmdline arguments that are shared by all openslx-scripts:
my %openslxCmdlineArgs = (

	# name of database, defaults to 'openslx'
	'db-name=s' => \$cmdlineConfig{'db-name'},

	# full specification of database, a special string defining the
	# precise database to connect to (the contents of this string
	# depend on db-type)
	'db-spec=s' => \$cmdlineConfig{'db-spec'},

	# type of database to connect to (SQLite, mysql, ...), defaults to 'SQLite'
	'db-type=s' => \$cmdlineConfig{'db-type'},

	# activates debug mode, this will show the lines where any error occured
	# (followed by a stacktrace):
	'debug-confess' => \$cmdlineConfig{'debug-confess'},

	# locale to use for translations
	'locale=s' => \$cmdlineConfig{'locale'},

	# locale-charmap to use for I/O (iso-8859-1, utf-8, etc.)
	'locale-charmap=s' => \$cmdlineConfig{'locale-charmap'},

	# file to write logging output to, defaults to STDERR
	'logfile=s' => \$cmdlineConfig{'locale'},

	# path to private data (which is *not* accesible by clients and contains
	# database, vendorOSes and all local extensions [system specific scripts])
	'private-path=s' => \$cmdlineConfig{'private-path'},

	# path to public data (which is accesible by clients and contains
	# PXE-configurations, kernels, initramfs and client configurations)
	'public-path=s' => \$cmdlineConfig{'public-path'},

	# path to temporary data (used during demuxing)
	'temp-path=s' => \$cmdlineConfig{'temp-path'},

	# level of logging verbosity (0-3)
	'verbose-level=i' => \$cmdlineConfig{'verbose-level'},
);

my %cleanupFunctions;

# filehandle used for logging:
my $openslxLog = *STDERR;

$Carp::CarpLevel = 1;

# ------------------------------------------------------------------------------
sub vlog
{
	my $minLevel = shift;
	return if $minLevel > $openslxConfig{'verbose-level'};
	my $str = join("", '-' x $minLevel, @_);
	if (substr($str, -1, 1) ne "\n") {
		$str .= "\n";
	}
	print $openslxLog $str;
	return;
}

# ------------------------------------------------------------------------------
sub openslxInit
{
	# evaluate cmdline arguments:
	Getopt::Long::Configure('no_pass_through');
	GetOptions(%openslxCmdlineArgs);

	# try to read and evaluate config files:
	my $configPath = $cmdlineConfig{'config-path'}
	  || $openslxConfig{'config-path'};
	my $sharePath = "$openslxConfig{'base-path'}/share";
	my $verboseLevel = $cmdlineConfig{'verbose-level'} || 0;
	foreach my $f ("$sharePath/settings.default", "$configPath/settings",
		"$ENV{HOME}/.openslx/settings")
	{
		next unless -e $f;
		if ($verboseLevel >= 2) {
			vlog(0, "reading config-file $f...");
		}
		my $configObject = Config::General->new(
			-AutoTrue       => 1, 
			-ConfigFile     => $f, 
			-LowerCaseNames => 1,
			-SplitPolicy    => 'equalsign',
		);
		my %config = $configObject->getall();
		foreach my $key (keys %config) {
			# N.B.: these config files are used by shell-scripts, too, so in
			# order to comply with shell-style, the config files use shell
			# syntax and an uppercase, underline-as-separator format.
			# Internally, we use lowercase, minus-as-separator format, so we
			# need to convert the environment variable names to our own
			# internal style here (e.g. 'SLX_BASE_PATH' to 'base-path'):
			my $ourKey = $key;
			$ourKey =~ s[^slx_][];
			$ourKey =~ tr/_/-/;
			$openslxConfig{$ourKey} = $config{$key};
		}
	}

	# push any cmdline argument into our config hash, possibly overriding any
	# setting from the config files:
	while (my ($key, $val) = each(%cmdlineConfig)) {
		next unless defined $val;
		$openslxConfig{$key} = $val;
	}

	if (defined $openslxConfig{'logfile'}) {
		open($openslxLog, '>>', $openslxConfig{'logfile'})
		  or croak(
			_tr(
				"unable to append to logfile '%s'! (%s)",    
				$openslxConfig{'logfile'}, $!
			)
		  );
	}
	if ($openslxConfig{'verbose-level'} >= 2) {
		foreach my $key (sort keys %openslxConfig) {
			my $val = $openslxConfig{$key} || '';
			vlog(2, "config-dump: $key = $val");
		}
	}

	# setup translation "engine":
	trInit();

	return 1;
}

# ------------------------------------------------------------------------------
sub trInit
{
	# activate automatic charset conversion on all the standard I/O streams,
	# just to give *some* support to shells in other charsets:
	binmode(STDIN,  ":encoding($openslxConfig{'locale-charmap'})");
	binmode(STDOUT, ":encoding($openslxConfig{'locale-charmap'})");
	binmode(STDERR, ":encoding($openslxConfig{'locale-charmap'})");

	my $locale = $openslxConfig{'locale'};
	if (lc($locale) eq 'c') {
		# treat locale 'c' as equivalent for 'posix':
		$locale = 'posix';
	}

	if (lc($locale) ne 'posix') {
		# parse locale and canonicalize it (e.g. to 'de_DE') and generate
		# two filenames from it (language+country and language only):
		if ($locale !~ m{^\s*([^_]+)(?:_(\w+))?}) {
			die "locale $locale has unknown format!?!";
		}
		my @locales;
		if (defined $2) {
			push @locales, lc($1) . '_' . uc($2);
		}
		push @locales, lc($1);

		# try to load any of the Translation modules (starting with the more
		# specific one [language+country]):
		my $loadedTranslationModule;
		foreach my $trName (@locales) {
			vlog(2,	"trying to load translation module $trName...");
			my $trModule = "OpenSLX/Translations/$trName.pm";
			my $trModuleSpec = "OpenSLX::Translations::$trName";
			if (eval { require $trModule } ) {
				# copy the translations available in the given locale into our 
				# hash:
				$translations = $trModuleSpec->getAllTranslations();
				$loadedTranslationModule = $trModule;
				vlog(
					1,
					_tr(
						"translations module %s loaded successfully", $trModule
					)
				);
				last;
			}
		}
		if (!defined $loadedTranslationModule) {
			vlog(1,
				"unable to load any translations module for locale '$locale' ($!)."
			);
		}
	}
	return;
}

# ------------------------------------------------------------------------------
sub _tr
{
	my $trOrig = shift;

	my $trKey = $trOrig;
	$trKey =~ s[\n][\\n]g;
	$trKey =~ s[\t][\\t]g;

	my $formatStr;
	if (defined $translations) {
		$formatStr = $translations->{$trKey};
	}
	if (!defined $formatStr) {
		$formatStr = $trOrig;
	}
	return sprintf($formatStr, @_);
}

# ------------------------------------------------------------------------------
sub callInSubprocess
{
	my $childFunc = shift;

	my $pid = fork();
	if (!$pid) {

		# child...
		# ...execute the given function and exit:
		my $ok = eval { $childFunc->(); 1 };
		if (!$ok) {
			print STDERR "*** $@";
			exit 5;
		}
		exit 0;
	}

	# parent...
	# ...pass on interrupt- and terminate-signals to child...
	local $SIG{INT}  = sub { kill 'INT',  $pid; waitpid($pid, 0); exit $? };
	local $SIG{TERM} = sub { kill 'TERM', $pid; waitpid($pid, 0); exit $? };

	# ...and wait for child to do its work:
	waitpid($pid, 0);
	if ($?) {
		exit $?;
	}
	return;
}

# ------------------------------------------------------------------------------
sub executeInSubprocess
{
	my @cmdlineArgs = @_;

	my $pid = fork();
	if (!$pid) {

		# child...
		# ...exec the given cmdline:
		exec(@cmdlineArgs);
	}

	# parent...
	return $pid;
}

# ------------------------------------------------------------------------------
sub addCleanupFunction
{
	my $name = shift;
	my $func = shift;

	$cleanupFunctions{$name} = $func;
	return;
}

# ------------------------------------------------------------------------------
sub removeCleanupFunction
{
	my $name = shift;

	delete $cleanupFunctions{$name};
	return;
}

# ------------------------------------------------------------------------------
sub invokeCleanupFunctions
{
	my @funcNames = keys %cleanupFunctions;
	foreach my $name (@funcNames) {
		vlog(2, "invoking cleanup function '$name'...");
		$cleanupFunctions{$name}->();
	}
	return;
}

# ------------------------------------------------------------------------------
sub slxsystem
{
	vlog(2, _tr("executing: %s", join ' ', @_));
	my $res = system(@_);
	if ($res > 0) {
		# check if child got killed, if so we stop, too (unless the signal is
		# SIGPIPE, which we ignore in order to loop over failed FTP connections
		# and the like):
		my $signalNo = $res & 127;
		if ($signalNo > 0 && $signalNo != 13) {
			die _tr("child-process reveived signal '%s', parent stops!",
				$signalNo);
		}
	}
	return $res;
}

# ------------------------------------------------------------------------------
sub cluck
{
	_doThrowOrWarn('cluck', @_);
	return;
}

# ------------------------------------------------------------------------------
sub carp
{
	_doThrowOrWarn('carp', @_);
	return;
}

# ------------------------------------------------------------------------------
sub warn
{
	_doThrowOrWarn('warn', @_);
	return;
}

# ------------------------------------------------------------------------------
sub confess
{
	invokeCleanupFunctions();
	_doThrowOrWarn('confess', @_);
	return;
}

# ------------------------------------------------------------------------------
sub croak
{
	invokeCleanupFunctions();
	_doThrowOrWarn('croak', @_);
	return;
}

# ------------------------------------------------------------------------------
sub die
{
	invokeCleanupFunctions();
	_doThrowOrWarn('die', @_);
	return;
}

# ------------------------------------------------------------------------------
sub _doThrowOrWarn
{
	my $type = shift;
	my $msg = shift;
	
	# use '°°°' for warnings and '***' for errors
	if ($type eq 'carp' || $type eq 'warn' || $type eq 'cluck') {
		$msg =~ s[^°°° ][]igms;
		$msg =~ s[^][°°° ]igms;
	}
	else {
		$msg =~ s[^\*\*\* ][]igms;
		$msg =~ s[^][*** ]igms;
	}

	if ($openslxConfig{'debug-confess'}) {
		my %functionFor = (
			'carp' => sub { Carp::cluck @_ },
			'cluck' => sub { Carp::cluck @_ },
			'confess' => sub { Carp::confess @_ },
			'croak' => sub { Carp::confess @_ },
			'die' => sub { Carp::confess @_ },
			'warn' => sub { Carp::cluck @_ },
		);
		my $func = $functionFor{$type};
		$func->($msg);
	}
	else {
		chomp $msg;
		my %functionFor = (
			'carp' => sub { Carp::carp @_ },
			'cluck' => sub { Carp::cluck @_ },
			'confess' => sub { Carp::confess @_ },
			'croak' => sub { Carp::croak @_ },
			'die' => sub { CORE::die @_},
			'warn' => sub { CORE::warn @_ },
		);
		my $func = $functionFor{$type};
		$func->("$msg\n");
	}
	return;
}

=item checkParams()

Utility function that can be used by any method that accepts param-hashes
to check if the given parameters actually match the expectations.

Each individual parameter has a specification that describes the expectation
that the calling function has towards this param. The following specifications
are supported:

* '!'          - the parameter is required
* '?'          - the parameter is optional
* 'm{regex}'   - the parameter must match the given regex
* '!class=...' - the parameter is required and must be an object of the given class
* '?class=...' - if the parameter has been given, it must be an object of the given class

The function will confess for any unknown, missing, or non-matching param.

If accepted as useful, this function could be moved to a utility module of
the framework in order to be available to all other OTRS-modules.

=cut

sub checkParams
{
    my $params     = shift or confess('need to pass in params-hashref!');
    my $paramsSpec = shift or confess('need to pass in params-spec-hashref!');

    # print a warning for any unknown parameters that have been given:
    my @unknownParams
        =   grep { !exists $paramsSpec->{$_}; }
            keys %$params;
    if (@unknownParams) {
        my $unknownParamsStr = join ',', @unknownParams;
        confess("Enocuntered unknown params: '$unknownParamsStr'!\n");
    }

    # check if all required params have been specified:
    foreach my $param (keys %$paramsSpec) {
        my $spec = $paramsSpec->{$param};
        if (ref($spec) eq 'HASH') {
            # Handle nested specs by recursion:
            my $subParams = $params->{$param};
            if (!defined $subParams) {
                confess("Required param '$param' is missing!");
            }
            checkParams($subParams, $spec);
        }
        elsif (ref($spec) eq 'ARRAY') {
            # Handle nested spec arrays by looped recursion:
            my $subParams = $params->{$param};
            if (!defined $subParams) {
                confess("Required param '$param' is missing!");
            }
            elsif (ref($subParams) ne 'ARRAY') {
                confess("Value for param '$param' must be an array-ref!");
            }
            foreach my $subParam (@$subParams) {
                checkParams($subParam, $spec->[0]);
            }
        }
        elsif ($spec eq '!') {
            # required parameter:
            if (!exists $params->{$param}) {
                confess("Required param '$param' is missing!");
            }
        }
        elsif ($spec =~ m{^\!class=(.+)$}i) {
            my $class = $1;
            # required parameter ...
            if (!exists $params->{$param}) {
                confess("Required param '$param' is missing!");
            }
            # ... of specific class
            if (!$params->{$param}->isa($class)) {
                confess("Param '$param' is not a '$class', but that is required!");
            }
        }
        elsif ($spec eq '?') {
            # optional parameter - nothing to do
        }
        elsif ($spec =~ m{^\?class=(.+)$}i) {
            my $class = $1;
            # optional parameter ...
            if (exists $params->{$param}) {
                # ... has been given, so it must match specific class
                if (!$params->{$param}->isa($class)) {
                    confess("Param '$param' is not a '$class', but that is required!");
                }
            }
        }
        elsif ($spec =~ m{^m{(.+)}$}) {
            # try to match given regex:
            my $regex = $1;
            my $value = $params->{$param};
            if ($value !~ m{$regex}) {
                confess("Required param '$param' isn't matching regex '$regex' (given value was '$value')!");
            }
        }
        else {
            # complain about unknown spec:
            confess("Unknown param-spec '$spec' encountered!");
        }
    }

    return scalar 1;
}

# ------------------------------------------------------------------------------
sub instantiateClass
{
	my $class = shift;
	my $flags = shift || {};

	checkParams($flags, { 
		'pathToClass' => '?', 
		'version'     => '?' 
	});
	my $pathToClass      = $flags->{pathToClass};
	my $requestedVersion = $flags->{version};

	my $moduleName = defined $pathToClass ? "$pathToClass/$class" : $class;
	$moduleName =~ s[::][/]g;
	$moduleName .= '.pm';
	unless (eval { require $moduleName } ) {
		if ($! == 2) {
			die _tr("Module '%s' not found!\n", $moduleName);
		}
		else {
			die _tr("Unable to load module '%s' (%s)\n", $moduleName, $@);
		}
	}
	if (defined $requestedVersion) {
		my $classVersion = $class->VERSION;
		if ($classVersion < $requestedVersion) {
			die _tr(
				'Could not load class <%s> (Version <%s> required, but <%s> found)',
				$class, $requestedVersion, $classVersion);
		}
	}
	return $class->new;
}

1;