This file is indexed.

/usr/lib/slimrat/Configuration.pm is in slimrat-nox 1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
# slimrat - configuration handling
#
# Copyright (c) 2009 Tim Besard
#
# This file is part of slimrat, an open-source Perl scripted
# command line and GUI utility for downloading files from
# several download providers.
# 
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation
# files (the "Software"), to deal in the Software without
# restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following
# conditions:
# 
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# Authors:
#    Tim Besard <tim-dot-besard-at-gmail-dot-com>
#

#
# Configurationuration
#

# Package name
package Configuration;

# Packages
use threads;
use threads::shared;
use File::Spec;

# Write nicely
use strict;
use warnings;


#
# Static functionality
#

# Quit the package
sub quit() {
}


#
# Object-oriented functionality
#

# Create a new item (internally used)
sub init($$) {
	my ($self, $key) = @_;
	
	if ($self->contains($key)) {
		warn("attempt to overwrite existing key through initialisation");
		return 0;
	}
	
	# Add at right spot (self or parent)
	if ($self->{parent}) {
		$self->{parent}->init($self->{section} . ":" . $key);
		$self->{items}->{$key} = $self->{parent}->{items}->{$self->{section} . ":" . $key};
	} else {
		share($self->{items}->{$key});
		$self->{items}->{$key} = &share({});
		$self->{items}->{$key}->{mutable} = 1;
		$self->{items}->{$key}->{default} = undef;
		$self->{items}->{$key}->{value} = undef;
	}
	
	return 1;
}

# Constructor
sub new {
	# Object data container (shared hash)
	my $self;
	share($self);
	$self = &share({});
	
	# Items (shared hash)
	share($self->{items});
	$self->{items} = &share({});
	
	# Parent configuration object (shared reference)
	$self->{parent} = undef;
	
	# Subsection
	$self->{section} = undef;
	
	return bless($self, 'Configuration');
}

# Check if the configuration contains a specific key
sub contains($$) {
	my ($self, $key) = @_;
	die("no key specified") unless $key;
	if (exists $self->{items}->{$key}) {
		return 1;
	} else {
		return 0;
	}
}

# Add a default value
sub set_default($$$) {
	my ($self, $key, $value) = @_;
	
	# Check if key already exists
	unless ($self->contains($key)) {
		$self->init($key);
	}
	
	# Update the default value
	$self->{items}->{$key}->{default} = $value;
}

# Get the default value
sub get_default($$) {
	my ($self, $key) = @_;
	
	if ($self->contains($key) && defined $self->{items}->{$key}->{default}) {
		return $self->{items}->{$key}->{default};
	}
	return;
}

# Get the actual value (ie. do not return default if not defined)
sub get_value($$) {
	my ($self, $key) = @_;
	
	if ($self->contains($key) && defined $self->{items}->{$key}->{value}) {
		return $self->{items}->{$key}->{value};
	}
	return;
}

# Get a value
# TODO: can we return undef, do we warn? E.G., do we allow get("not_defined_key") and return undef, or do we oblige a contains() check?
sub get($$) {
	my ($self, $key) = @_;
	
	# Check if it contains the key (not present returns false)
	if (! $self->contains($key)) {
		warn("request for undefined key '$key', consider configuring a default value");
		return;
	}
	
	# Return value or default
	if (defined(my $value = $self->get_value($key))) {
		return $value;
	} elsif (defined(my $default = $self->get_default($key))) {
		return $default;
	}
	warn("key $key exists without actual contents");
	return;
}

# Set a value
sub set($$$) {
	my ($self, $key, $value) = @_;
	
	# Check if contains
	if (!$self->contains($key)) {
		$self->init($key);
	}
	
	# Check if mutable
	if (! $self->{items}->{$key}->{mutable}) {
		warn("attempt to modify protected key '$key'");
		return 0;
	}
	
	# Modify value
	$self->{items}->{$key}->{value} = $value;
	return 1;
}

# Protect an item
sub protect($$) {
	my ($self, $key) = @_;
	if ($self->contains($key)) {
		$self->{items}->{$key}->{mutable} = 0;
		return 1;
	}
	return 0;
}

# Read a file
sub file_read($$) {
	my ($self, $file) = @_;
	my $prepend = "";	# Used for section seperation
	open(READ, $file) || die("could not open configuration file '$file'");
	while (<READ>) {
		chomp;
		
		# Skip comments, and leading & trailing spaces
		s/#.*//;
		s/^\s+//;
		s/\s+$//;
		next unless length;
		
		# Get the key/value pair
		if (my($key, $separator, $value) = /^(.+?)\s*(=+)\s*(.*?)$/) {		# The extra "?" makes perl prefer a shorter match (to avoid "\w " keys)

			# Replace '~' with HOME of user who started slimrat
			$value =~ s#^~/#$ENV{'HOME'}/#;
			
			# Substitute negatively connoted values
			$value =~ s/^(|off|none|disabled|false|no)$/0/i;
			
			if ($key =~ m/(:)/) {
				warn("ignored configuration entry due to protected string in key ('$1')");
			} else {
				$self->set($prepend.$key, $value);
				$self->protect($prepend.$key) if (length($separator) >= 2);
			}
		}
		
		# Get section identifier
		elsif (/^\[(.+)\]$/) {
			my $section = lc($1);
			if ($section =~ m/^\w+$/) {
				$prepend = "$section:";
			} else {
				warn("ignored non-alphanumeric subsection entry");
			}
		}
		
		# Invalid entry
		else {
			warn("ignored invalid configuration entry '$_'");
		}
	}
	close(READ);
}

# Return a section
sub section($$) {
	my ($self, $section) = @_;
	$section = lc($section);
	
	# Prohibit double (or more) hiƫrarchies
	return error("can only split section from top-level configuration object") if ($self->{section});
	
	# Extract subsection
	my $configsection = new Configuration;
	foreach my $key (keys %{$self->{items}}) {
		if ($key =~ m/^$section:(.+)$/) {
			$configsection->{items}->{substr($key, length($section)+1)} = $self->{items}->{$key};
		}
	}
	
	# Give the section parent access
	$configsection->{parent} = $self;
	$configsection->{section} = $section;
	
	return $configsection;
}

# Merge two configuration objects
sub merge($$) {
	my ($self, $complement) = @_;
	
	# Process all keys and update the complement
	foreach my $key (keys %{$self->{items}}) {
		if (defined(my $default = $self->get_default($key))) {
			warn("merge overwrites default value of key $key") if (defined($complement->get_default($key)));
			$complement->set_default($key, $default);
		}
		if (defined(my $value = $self->get_value($key))) {
			warn("merge overwrites value of key $key") if (defined($complement->get_value($key)));
			$complement->set($key, $value);
		}		
	}
	
	# Update self
	$self->{items} = $complement->{items};
}

# Save a value to a configuration file
sub save($$) {
	my ($self, $key, $current) = @_;
	return error("cannot save undefined key '$key'") if (!$self->contains($key));
	my $temp = $current.".temp";
	
	# Case 1: configuration file does not exist, create new one
	if (! -f $current) {
		open(WRITE, ">$current");
		print WRITE "[" . $self->{section} . "]\n" if (defined $self->{section});
		print WRITE $key . " = " . $self->get($key);
		close(WRITE);
	}
	
	# Case 2: configuration file exists, re-read
	else {
		open(READ, "<$current");
		open(WRITE, ">$temp");
		
		# Look for a match and update it
		my $tempsection;
		while (<READ>) {
			chomp;
		
			# Get the key/value pair
			if (my($temp_key) = /^(.+?)\s*=+\s*.+?$/) {
				if ($key eq $temp_key) {
					if (  (defined $self->{section} && defined $tempsection && $self->{section} eq $tempsection)
					   || (!defined $self->{section} && !defined $tempsection) ) {
						print WRITE $key . " = " . $self->get($key) . "\n";
						last;
					}				
				}
			}
		
			# Get section identifier
			elsif (/^\[(.+)\]$/) {
				$tempsection = lc($1);
			}
						
			print WRITE "$_\n";
		}
		
		# No match found, prepend or append key
		if (eof(READ)) {
			if (defined $self->{section}) {
				print WRITE "\n[" . $self->{section} . "]\n";
				print WRITE $key . " = " . $self->get($key) . "\n";
			} else {
				# Prepend before first section, when not defined
				seek(WRITE, 0, 0);
				seek(READ, 0, 0);
				my $written = 0;
				while (<READ>) {
					if (!$written && /^\[(.+)\]$/) {
						print WRITE $key . " = " . $self->get($key) . "\n";
						$written = 1;
					}
					print WRITE;
				}
				print WRITE $key . " = " . $self->get($key) . "\n" unless ($written);					
			}
		}
		
		# Match found, just copy rest of the file
		else {
			print WRITE while (<READ>);
		}
		
		# Clean up
		close(READ);
		close(WRITE);
		unlink $current;
		rename $temp, $current;	
	}
}

# Convert a path to absolute setting
sub path_abs {
	my $self = shift;
	while (my $key = shift) {
		if (my $value = $self->get_value($key)) {	# No need to update default values
			return error("cannot convert immutable key") unless $self->{items}->{$key}->{mutable};
			$self->set($key, File::Spec->rel2abs($value));
		}
	}
}

# Return
1;


#
# Documentation
#

=head1 NAME 

Configuration

=head1 SYNOPSIS

  use Configuration;

  # Construct the configuration handles
  my $config = Configuration::new();

=head1 DESCRIPTION

This package provides a configuration handler, which should ease the use
of several inputs for configuration values, including their default values.

=head1 METHODS

=head2 Configuration::new()

This constructs a new configuration object, with initially no contents at all.

=head2 $config->set_default($key, $value)

Adds a new item into the configuration, with $value as default value. This happens
always, even when the key has been marked as protected. Any previously entered
values do not get overwritten, which makes it possible to enter or re-enter a
default value after actual values has been entered.

=head2 $config->set($key, $value)

Set a key to a given value. This is separated from the default value, which can still
be accessed with the default() call.

=head2 $config->get($key)

Return the value for a specific key. If not value specified, returns the default value.
Returns undef if no default value specified either.

NOTE: recently behaviour of this function has altered, there it now supports and correctly
returns values which Perl evaluates to FALSE. When checking if a configuration value
is present, please use defined() now instead of regular boolean testing.

=head2 $config->get_default($key)

Returns the default value, or undef if not specified.

=head2 $config->get_value($key)

Returns the value of the key, or undef if not specified. Does not return the default
value.

=head2 $config->contains($key)

Check whether a specific key has been entered in the configuration (albeit by default
or customized value).

=head2 $config->protect($key)

Protect the values of a key from further modification. The default value always remains
mutable.

=head2 $config->file_read($file)

Read configuration data from a given file. The file is interpreted as a set of key/value pairs.
Pairs separated by a single '=' indicate mutable entries, while a double '==' means the entry
shall be protected and thus immutable.

=head2 $config->section($section)

Returns a new Configuration object, only containing key/value pairs listed in the given section.
This can be used to seperate the configuration of several parts, in the case of slimrat e.g.
preventing a malicious plugin to access data (e.g. credentials) of other plugins. Keys are
internally identified by the key and a section preposition, which makes it possible to use
identical keys in different sections. The internally used seperation of preposition and key
(a ":") is protected in order to avoid a security leak.
Values in the section object are references to the main object, adjusting them will this
adjust the main object.
NOTE: section entries are case-insensitive.
IMPORTANT NOTE: do _not_ use the ":" token to get/set values within a section, _always_ use
the section("foo")->get/set construction.

=head2 $config->merge($complement)

This function merges two Configuration objects. This is intent to merge an object with
default values, with one containing the user-defined values, correctly filling the gaps.
As the add_default function does not overwrite user-defined values, you should normally
never need this function, as you can apply defaults upon the configuration object
containing the user-defined values. E.g., plugins get an configuration object passed
in the constructor, in which default values get applied.

When however the configuration object is needed before user-defined values get passed (e.g.
a static package, see Log.pm), there will be a pre-existent configuration object containing
the default values. Upon configuration, the merge() call can be used to merge that object
with the passed one containing user-defined values. Again, this should be rarely used, and when
needed check the usage in Log.pm or other packages.
  use Configuration;

  # A package creates an initial Configuration object (e.g. at BEGIN block)
  my $config_package = new Configuration;
  $config_package->set_default("foo", "bar");

  # The main application reads the user defined values (from file, or manually, ...)
  my $config_main = new Configuration;
  $config_main->file_read("/etc/configuration");

  # The package receives the configuration entries it is interested in, and merges them
  # with the existing default values
  $config_package->merge($config_main->section("package"));

Previously the merge() call did only transfer default values from the pre-existent object
to the new object, but this has recently changed to support more advanced actions (ie. Plugin.pm,
where per-plugin configuration objects get merged with the plugin-global "Plugin" section). A
warning will however be omitted when the merge calls overwrites a previously set (default or non-
default) value.

=head2 $config->save($key, $file)

This function will make a configuration entry persistent, by saving it into a given file.
That file gets parsed, and when possible a key will get updated. When the key doesn't
exist in the file yet, it will get appended (when within a subsection) or prepended (when
not within a subsection). When the file does not exist, a new one will get created.

=head2 $config->path_abs(@keys)

Converts the paths saved in the given keys (if available) from a relative to an absolute setting.
Can be used before daemonisation.

=head1 AUTHOR

Tim Besard <tim-dot-besard-at-gmail-dot-com>

=cut