This file is indexed.

/usr/bin/zmcamtool.pl is in zoneminder 1.29.0+dfsg-1ubuntu2.

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

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
#!/usr/bin/perl -w
#
# ==========================================================================
#
# ZoneMinder Update Script, $Date$, $Revision$
# Copyright (C) 2001-2008 Philip Coombes
#
# 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 version 2
# of the License, 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.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
# ==========================================================================

=head1 NAME

zmcamtool.pl - ZoneMinder tool to import camera controls and presets

=head1 SYNOPSIS

 zmcamtool.pl [--user=<dbuser> --pass=<dbpass>]
              [--import [file.sql] [--overwrite]]
              [--export [name]]
              [--topreset id [--noregex]]

=head1 DESCRIPTION

This script provides a way to import new ptz camera controls & camera presets
into existing zoneminder systems. This script also provides a way to export
ptz camera controls & camera presets from an existing zoneminder system into
a sql file, which can then be easily imported to another zoneminder system.

=head1 OPTIONS

 --export            - Export all camera controls and presets to STDOUT.
                       Optionally specify a control or preset name.
 --import [file.sql] - Import new camera controls and presets found in
                       zm_create.sql into the ZoneMinder dB.
                       Optionally specify an alternate sql file to read from.
 --overwrite         - Overwrite any existing controls or presets.
                       with the same name as the new controls or presets.
 --topreset id       - Copy a monitor to a Camera Preset given the monitor id.
 --noregex           - Do not try to find and replace fields such as usernames,
                       passwords, IP addresses, etc with generic placeholders
                       when converting a monitor to a preset.
 --help              - Print usage information.
 --user=<dbuser>     - Alternate dB user with privileges to alter dB.
 --pass=<dbpass>     - Password of alternate dB user with privileges to alter dB.

=cut
use strict;
use bytes;

# Include from system perl paths only
use ZoneMinder::Config qw(:all);
use ZoneMinder::Logger qw(:all);
use ZoneMinder::Database qw(:all);
use DBI;
use Getopt::Long;
use autouse 'Pod::Usage'=>qw(pod2usage);

$ENV{PATH}  = '/bin:/usr/bin:/usr/local/bin';
$ENV{SHELL} = '/bin/sh' if exists $ENV{SHELL};
delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};

my $web_uid = (getpwnam( $Config{ZM_WEB_USER} ))[2];
my $use_log = (($> == 0) || ($> == $web_uid));

logInit( toFile=>$use_log?DEBUG:NOLOG );
logSetSignal();

my $export = 0;
my $import = 0;
my $overwrite = 0;
my $help = 0;
my $topreset = 0;
my $noregex = 0;
my $sqlfile = '';
my $dbUser = $Config{ZM_DB_USER};
my $dbPass = $Config{ZM_DB_PASS};
my $version = 0;

GetOptions(
    'export'        =>\$export,
    'import'        =>\$import,
    'overwrite'     =>\$overwrite,
    'help'          =>\$help,
    'topreset'      =>\$topreset,
    'noregex'       =>\$noregex,
    'user:s'        =>\$dbUser,
    'pass:s'        =>\$dbPass,
    'version'       =>\$version
) or pod2usage(-exitstatus => -1);

$Config{ZM_DB_USER} = $dbUser;
$Config{ZM_DB_PASS} = $dbPass;

if ( $version ) {
    print( ZoneMinder::Base::ZM_VERSION . "\n");
    exit(0);
}
# Check to make sure commandline params make sense
if ( ((!$help) && ($import + $export + $topreset) != 1 )) {
    print( STDERR qq/Please give only one of the following: "import", "export", or "topreset".\n/ );
    pod2usage(-exitstatus => -1);
}

if ( ($export)&&($overwrite) ) {
    print( "Warning: Overwrite parameter ignored during an export.\n");
}

if ( ($noregex)&&(!$topreset) ) {
    print( qq/Warning: Noregex parameter only applies when "topreset" parameter is also set. Ignoring.\n/);
}

if ( ($topreset)&&($ARGV[0] !~ /\d\d*/) ) {
    print( STDERR qq/Parameter "topreset" requires a valid monitor ID.\n/ );
    pod2usage(-exitstatus => -1);
}

# Call the appropriate subroutine based on the params given on the commandline
if ($help) {
    pod2usage(-exitstatus => -1);
}

if ($export) {
    exportsql();
}

if ($import) {
    importsql();
}

if ($topreset) {
    toPreset();
}

###############
# SUBROUTINES #
###############

# Execute a pre-built sql select query
sub selectQuery
{
    my $dbh = shift;
    my $sql = shift;
    my $monitorid = shift;

    my $sth = $dbh->prepare_cached( $sql )
        or die( "Can't prepare '$sql': ".$dbh->errstr() );
    my $res = $sth->execute($monitorid)
        or die( "Can't execute: ".$sth->errstr() );

    my @data = $sth->fetchrow_array();
    $sth->finish();

    return @data;
}

# Exectute a pre-built sql query
sub runQuery
{
    my $dbh = shift;
    my $sql = shift;
    my $sth = $dbh->prepare_cached( $sql )
        or die( "Can't prepare '$sql': ".$dbh->errstr() );
    my $res = $sth->execute()
        or die( "Can't execute: ".$sth->errstr() );
    $sth->finish();

    return $res;
}

# Build and execute a sql insert query
sub insertQuery
{
    my $dbh = shift;
    my $tablename = shift;
    my @data = @_;

    my $sql = "INSERT INTO $tablename VALUES (NULL,"
              .(join ", ", ("?") x @data).")"; # Add "?" for each array element

    my $sth = $dbh->prepare_cached( $sql )
        or die( "Can't prepare '$sql': ".$dbh->errstr() );
    my $res = $sth->execute(@data)
        or die( "Can't execute: ".$sth->errstr() );
    $sth->finish();

    return $res;
}

# Build and execute a sql delete query
sub deleteQuery
{
    my $dbh = shift;
    my $sqltable = shift;
    my $sqlname = shift;

    my $sql = "DELETE FROM $sqltable WHERE Name = ?";
    my $sth = $dbh->prepare_cached( $sql )
        or die( "Can't prepare '$sql': ".$dbh->errstr() );
    my $res = $sth->execute($sqlname)
        or die( "Can't execute: ".$sth->errstr() );
    $sth->finish();

    return $res;
}

# Build and execute a sql select count query
sub checkExists
{
    my $dbh = shift;
    my $sqltable = shift;
    my $sqlname = shift;
    my $result = 0; 

    my $sql = "SELECT count(*) FROM $sqltable WHERE Name = ?";
    my $sth = $dbh->prepare_cached( $sql )
        or die( "Can't prepare '$sql': ".$dbh->errstr() );
    my $res = $sth->execute($sqlname)
        or die( "Can't execute: ".$sth->errstr() );

    my $rows = $sth->fetchrow_arrayref();
    $sth->finish();

    if ($rows->[0] > 0) {
        $result = 1;
    }

    return $result;
}

# Import camera control & presets into the zoneminder dB
sub importsql 
{
    my @newcontrols;
    my @overwritecontrols;
    my @skippedcontrols;
    my @newpresets;
    my @overwritepresets;
    my @skippedpresets;
    my %controls;
    my %monitorpresets;

    if ($ARGV[0]) {
        $sqlfile = $ARGV[0];
    } else {
        $sqlfile = $Config{ZM_PATH_DATA}.'/db/zm_create.sql';
    }

    open(my $SQLFILE,"<",$sqlfile)
        or die( "Can't Open file: $!\n" );

    # Find and extract ptz control and monitor preset records
    while (<$SQLFILE>) {
        # Our regex replaces the primary key with NULL
        if (s/^(INSERT INTO .*?Controls.*? VALUES \().*?(,')(.*?)(',.*)/$1NULL$2$3$4/i) {   
            $controls{$3} = $_;
        } elsif (s/^(INSERT INTO .*?MonitorPresets.*? VALUES \().*?(,')(.*?)(',.*)/$1NULL$2$3$4/i) {
            $monitorpresets{$3} = $_;
        }
    }
    close $SQLFILE;

    if ( ! (%controls || %monitorpresets) ) {
        die( "Error: No relevant data found in $sqlfile.\n" );
    }

    # Now that we've got what we were looking for,
    # compare to what is already in the dB

    my $dbh = zmDbConnect();
    foreach (keys %controls) {
        if (!checkExists($dbh,"Controls",$_)) {
            # No existing Control was found. Add new control to dB.
            runQuery($dbh,$controls{$_});
            push @newcontrols, $_;
        } elsif ($overwrite) {
            # An existing Control was found and the overwrite flag is set.
            # Overwrite the control.
            deleteQuery($dbh,"Controls",$_);
            runQuery($dbh,$controls{$_});
            push @overwritecontrols, $_;
        } else {
            # An existing Control was found and the overwrite flag was not set.
            # Do nothing.
            push @skippedcontrols, $_;
        }   
    }

    foreach (keys %monitorpresets) {
        if (!checkExists($dbh,"MonitorPresets",$_)) {
            # No existing MonitorPreset was found.  Add new MonitorPreset to dB.
            runQuery($dbh,$monitorpresets{$_});
            push @newpresets, $_;
        } elsif ($overwrite) {
            # An existing MonitorPreset was found and the overwrite flag is set.
            # Overwrite the MonitorPreset.
            deleteQuery($dbh,"MonitorPresets",$_);
            runQuery($dbh,$monitorpresets{$_});
            push @overwritepresets, $_;
        } else {
            # An existing MonitorPreset was found and the overwrite flag was
            # not set. Do nothing.
            push @skippedpresets, $_;
        }
    }

    if (@newcontrols) {
        print "Number of ptz camera controls added: "
              .scalar(@newcontrols)."\n";
    }
    if (@overwritecontrols) {
        print "Number of existing ptz camera controls overwritten: "
              .scalar(@overwritecontrols)."\n";
    }
    if (@skippedcontrols) {
        print "Number of existing ptz camera controls skipped: "
              .scalar(@skippedcontrols)."\n";
    }

    if (@newpresets) {
        print "Number of monitor presets added: "
              .scalar(@newpresets)."\n";
    }
    if (@overwritepresets) {
        print "Number of existing monitor presets overwritten: "
              .scalar(@overwritepresets)."\n";
    }
    if (@skippedpresets) {
        print "Number of existing presets skipped: "
              .scalar(@skippedpresets)."\n";
    }
}

# Export camera controls & presets from the zoneminder dB to STDOUT
sub exportsql
{

my ( $host, $port ) = ( $Config{ZM_DB_HOST} =~ /^([^:]+)(?::(.+))?$/ );
my $command = "mysqldump -t --skip-opt --compact -h".$host;
$command .= " -P".$port if defined($port);
if ( $dbUser ) {
    $command .= " -u".$dbUser;
    if ( $dbPass ) {
        $command .= " -p".$dbPass;
        }
    }

if ($ARGV[0]) {
    $command .= qq( --where="Name = '$ARGV[0]'");
}

$command .= " zm Controls MonitorPresets";

my $output = qx($command);
my $status = $? >> 8;
if ( $status || logDebugging() ) {
    chomp( $output );
    print( "Output: $output\n" );
}
if ( $status ) {
    die( "Command '$command' exited with status: $status\n" );
} else {
    # NULLify the primary keys before printing the output to STDOUT
    $output =~ s/VALUES \((.*?),'/VALUES \(NULL,'/ig;
    print $output;
    }
}

sub toPreset
{
    my $dbh = zmDbConnect();
    my $monitorid = $ARGV[0];

    # Grap the following fields from the Monitors table
    my $sql = "SELECT 
            Name, 
            Type, 
            Device, 
            Channel, 
            Format, 
            Protocol, 
            Method, 
            Host, 
            Port, 
            Path, 
            SubPath, 
            Width, 
            Height, 
            Palette, 
            MaxFPS, 
            Controllable, 
            ControlId, 
            ControlDevice, 
            ControlAddress, 
            DefaultRate, 
            DefaultScale 
        FROM Monitors WHERE Id = ?";
    my @data = selectQuery($dbh,$sql,$monitorid);

    if (!@data) {
        die( "Error: Monitor Id $monitorid does not appear to exist in the database.\n" );
    }

    # Attempt to search for and replace system specific values such as
    # ip addresses, ports, usernames, etc. with generic placeholders
    if (!$noregex) {
        foreach (@data) {
            s/\b(?:\d{1,3}\.){3}\d{1,3}\b/<ip-address>/; # ip address
            s/<ip-address>:(6553[0-5]|655[0-2]\d|65[0-4]\d\d|6[0-4]\d{3}|[1-5]\d{4}|[1-9]\d{0,3}|0)$/<ip-address>:<port>/; # tcpip port
            s/\/\/.*:.*@/\/\/<username>:<pwd>@/; # user & pwd preceding an ip address
            s/(&|\?)(user|username)=\w\w*(&|\?)/$1$2=<username>$3/i; # username embedded in url
            s/(&|\?)(pwd|password)=\w\w*(&|\?)/$1$2=<pwd>$3/i; # password embedded in url
            s/\w\w*:\w\w*/<username>:<pwd>/; # user & pwd in their own field
            s/\/dev\/video\d\d*/\/dev\/video<?>/; # local video devices
        }
    }

    if (!checkExists($dbh,"MonitorPresets",$data[0])) {
        # No existing Preset was found.  Add new Preset to dB.
        print "Adding new preset: $data[0]\n";
        insertQuery($dbh,"MonitorPresets",@data);
    } elsif ($overwrite) {
        # An existing Control was found and the overwrite flag is set.
        # Overwrite the control.
        print "Existing preset $data[0] detected.\nOverwriting...\n";
        deleteQuery($dbh,"MonitorPresets",$data[0]);
        insertQuery($dbh,"MonitorPresets",@data);
    } else {
        # An existing Control was found and the overwrite flag was not set.
        # Do nothing.
        print "Existing preset $data[0] detected and overwrite flag not set.\nSkipping...\n";
    }
}