source: trunk/cgi-bin/ipdb-rpc.cgi@ 852

Last change on this file since 852 was 852, checked in by Kris Deugau, 8 years ago

/trunk

Add an RPC sub to export a list of "devices to be backed up" per long-ago
request

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author Id
File size: 12.6 KB
Line 
1#!/usr/bin/perl
2# XMLRPC interface to manipulate most DNS DB entities
3###
4# $Id: ipdb-rpc.cgi 852 2016-04-13 22:18:54Z kdeugau $
5###
6# Copyright (C) 2013,2014,2016 Kris Deugau <kdeugau@deepnet.cx>
7
8use strict;
9use warnings;
10
11use DBI;
12use CustIDCK;
13use NetAddr::IP;
14use FCGI;
15use Frontier::Responder;
16
17use Sys::Syslog;
18
19# don't remove! required for GNU/FHS-ish install from tarball
20##uselib##
21
22use MyIPDB;
23
24openlog "IPDB-rpc","pid","$IPDB::syslog_facility";
25
26##fixme: username source? can we leverage some other auth method?
27# we don't care except for logging here, and Frontier::Client needs
28# a patch that's not well-distributed to use HTTP AUTH.
29
30# Collect the username from HTTP auth. If undefined, we're in
31# a test environment, or called without a username.
32my $authuser;
33if (!defined($ENV{'REMOTE_USER'})) {
34 $authuser = '__temptest';
35} else {
36 $authuser = $ENV{'REMOTE_USER'};
37}
38
39# Why not a global DB handle? (And a global statement handle, as well...)
40# Use the connectDB function, otherwise we end up confusing ourselves
41my $ip_dbh;
42my $sth;
43my $errstr;
44($ip_dbh,$errstr) = connectDB_My;
45initIPDBGlobals($ip_dbh);
46
47my $methods = {
48 # Internal core IPDB subs; no value in exposing them since the DB handle can't be used by the caller
49 #'ipdb._rpc'
50 # This one could be exposed, but the globals aren't automatically
51 # inherited by the caller anyway, and we call it just above locally.
52 #'ipdb.initIPDBGlobals'
53 #'ipdb.connectDB'
54 #'ipdb.finish'
55 #'ipdb.checkDBSanity'
56 'ipdb.addMaster' => \&rpc_addMaster,
57 'ipdb.touchMaster' => \&rpc_touchMaster,
58 'ipdb.listSummary' => \&rpc_listSummary,
59 'ipdb.listSubs' => \&rpc_listSubs,
60 'ipdb.listContainers' => \&rpc_listContainers,
61 'ipdb.listAllocations' => \&rpc_listAllocations,
62 'ipdb.listFree' => \&rpc_listFree,
63 'ipdb.listPool' => \&rpc_listPool,
64 'ipdb.getMasterList' => \&rpc_getMasterList,
65 'ipdb.getTypeList' => \&rpc_getTypeList,
66 'ipdb.getPoolSelect' => \&rpc_getPoolSelect,
67 'ipdb.findAllocateFrom' => \&rpc_findAllocateFrom,
68 'ipdb.ipParent' => \&rpc_ipParent,
69 'ipdb.subParent' => \&rpc_subParent,
70 'ipdb.blockParent' => \&rpc_blockParent,
71 'ipdb.getRoutedCity' => \&rpc_getRoutedCity,
72 'ipdb.allocateBlock' => \&rpc_allocateBlock,
73 # another internal sub; mainly a sub to make allocateBlock() a lot smaller
74 #'ipdb.initPool' => \&rpc_initPool
75 'ipdb.updateBlock' => \&rpc_updateBlock,
76 'ipdb.deleteBlock' => \&rpc_deleteBlock,
77 'ipdb.getBlockData' => \&rpc_getBlockData,
78 'ipdb.getBlockRDNS' => \&rpc_getBlockRDNS,
79 'ipdb.getNodeList' => \&rpc_getNodeList,
80 'ipdb.getNodeName' => \&rpc_getNodeName,
81 'ipdb.getNodeInfo' => \&rpc_getNodeInfo,
82 'ipdb.mailNotify' => \&rpc_mailNotify,
83
84# Subs not part of the core IPDB
85 'ipdb.getDispAlloctypes' => \&rpc_getDispAlloctypes,
86 'ipdb.getListAlloctypes' => \&rpc_getListAlloctypes,
87 'ipdb.getDefCustIDs' => \&rpc_getDefCustIDs,
88 'ipdb.getCityList' => \&rpc_getCityList,
89 'ipdb.getAvailableStatics' => \&rpc_getAvailableStatics,
90 'ipdb.getBackupList' => \&rpc_getBackupList,
91};
92
93my $reqcnt = 0;
94
95# main FCGI loop.
96while (FCGI::accept >= 0) {
97 # done here to a) prevent $ENV{'REMOTE_ADDR'} from being empty and b) to collect
98 # the right user for the individual call (since we may be running with FCGI)
99 syslog "debug", "$authuser active, $ENV{'REMOTE_ADDR'}";
100
101 # don't *think* we need any of these...
102 # %disp_alloctypes, %def_custids, %list_alloctypes
103 # @citylist, @poplist
104 # @masterblocks, %allocated, %free, %bigfree, %routed (removed in /trunk)
105 # %IPDBacl
106 #initIPDBGlobals($ip_dbh);
107
108 my $res = Frontier::Responder->new(
109 methods => $methods
110 );
111
112 # "Can't do that" errors
113 if (!$ip_dbh) {
114 print "Content-type: text/xml\n\n".$res->{_decode}->encode_fault(5, $DBI::errstr);
115 } else {
116 print $res->answer;
117 }
118 last if $reqcnt++ > $IPDB::maxfcgi;
119} # while FCGI::accept
120
121exit 0;
122
123
124##
125## Private subs
126##
127
128# Check RPC ACL
129sub _aclcheck {
130 my $subsys = shift;
131 return 1 if grep /$ENV{REMOTE_ADDR}/, @{$IPDB::rpcacl{$subsys}};
132 warn "$subsys/$ENV{REMOTE_ADDR} not in ACL\n"; # a bit of logging
133 return 0;
134}
135
136sub _commoncheck {
137 my $argref = shift;
138 my $needslog = shift;
139
140 die "Missing remote system name\n" if !$argref->{rpcsystem};
141 die "Access denied\n" if !_aclcheck($argref->{rpcsystem});
142 if ($needslog) {
143 die "Missing remote username\n" if !$argref->{rpcuser};
144 }
145}
146
147# stripped-down copy from from main.cgi. should probably be moved to IPDB.pm
148sub _validateInput {
149 my $argref = shift;
150
151 if (!$argref->{block}) {
152 $argref->{block} = $argref->{cidr} if $argref->{cidr};
153 die "Block/IP is required\n" if !$argref->{block};
154 }
155
156 # Alloctype check.
157 chomp $argref->{type};
158
159 die "Invalid allocation type\n" if (!grep /$argref->{type}/, keys %disp_alloctypes);
160
161 # Arguably not quite correct, as the custID won't be checked for
162 # validity if there's a default on the type.
163 if ($def_custids{$argref->{type}} eq '') {
164 # Types without a default custID must have one passed in
165 die "Customer ID is required\n" if !$argref->{custid};
166 # Crosscheck with billing.
167 my $status = CustIDCK->custid_exist($argref->{custid});
168 die "Error verifying customer ID: $CustIDCK::ErrMsg\n" if $CustIDCK::Error;
169 die "Customer ID not valid\n" if !$status;
170 } else {
171 # Types that have a default will use it unless one is specified.
172 if ((!$argref->{custid}) || ($argref->{custid} ne 'STAFF')) {
173 $argref->{custid} = $def_custids{$argref->{type}};
174 }
175 }
176} # end validateInput()
177
178
179##
180## RPC method subs
181##
182
183# Core IPDB subs
184# Prefixed with rpc_ to not conflict with subs in IPDB.pm
185
186# These are deep internals and don't make much sense to expose, since RPC
187# by definition does not access the backing DB directly.
188#sub _rpc {}
189#sub initIPDBGlobals {}
190#sub connectDB {}
191#sub finish {}
192#sub checkDBSanity {}
193
194sub rpc_addMaster {}
195sub rpc_touchMaster {}
196sub rpc_listSummary {}
197sub rpc_listSubs {}
198sub rpc_listContainers {}
199sub rpc_listAllocations {}
200sub rpc_listFree {}
201sub rpc_listPool {}
202sub rpc_getMasterList {}
203sub rpc_getTypeList {}
204sub rpc_getPoolSelect {}
205sub rpc_findAllocateFrom {}
206sub rpc_ipParent {}
207sub rpc_subParent {}
208sub rpc_blockParent {}
209sub rpc_getRoutedCity {}
210
211sub rpc_allocateBlock {
212 my %args = @_;
213
214 _commoncheck(\%args, 'y');
215
216 _validateInput(\%args);
217
218 # Not required for update, delete
219 die "City is required\n" if !$args{city};
220 die "Customer ID is required\n" if !$args{custid};
221 die "Allocation type is required\n" if !$args{type};
222
223 if ($args{type} =~ /^.i$/) {
224 die "Pool ID or VRF to allocate from is required\n" if !$args{parent} && !$args{vrf};
225 } else {
226 die "Free block to allocate from is required\n" if !$args{fbid};
227 }
228
229 my ($code,$msg) = allocateBlock($ip_dbh, %args);
230
231 if ($code eq 'OK' || $code eq 'WARN') {
232 if ($args{type} =~ /^.i$/) {
233 $msg =~ s|/32||;
234 mailNotify($ip_dbh, "a$args{type}", "ADDED: $disp_alloctypes{$args{type}} allocation",
235 "$disp_alloctypes{$args{type}} $msg allocated to customer $args{custid}\n".
236 "Description: $args{desc}\n\nAllocated by: $args{rpcsystem}/$args{rpcuser}\n");
237 } else {
238 my $netblock = new NetAddr::IP $args{block};
239 mailNotify($ip_dbh, "a$args{type}", "ADDED: $disp_alloctypes{$args{type}} allocation",
240 "$disp_alloctypes{$args{type}} $args{block} allocated to customer $args{custid}\n".
241 "Description: $args{desc}\n\nAllocated by: $args{rpcsystem}/$args{rpcuser}\n");
242 }
243 syslog "notice", "$args{rpcsystem}/$args{rpcuser} allocated '$args{block}' to '$args{custid}' as ".
244 "'$args{type}' ($msg)";
245 } else {
246 syslog "err", "Allocation of '$args{block}' to '$args{custid}' as ".
247 "'$args{type}' by $args{rpcsystem}/$args{rpcuser} failed: '$msg'";
248 die "$msg\n";
249 }
250 return $msg;
251} # rpc_allocateBlock()
252
253# another internal sub; mainly a sub to make allocateBlock() a lot smaller
254#sub rpc_initPool {}
255
256
257sub rpc_updateBlock {
258 my %args = @_;
259
260 _commoncheck(\%args, 'y');
261
262 _validateInput(\%args);
263
264 # Allow caller to send a CIDR instead of the block ID.
265 $args{origblock} = $args{block};
266 if ($args{block} =~ m{^(?:\d+\.){3}\d+(?:/32)?$}) {
267 # updating a static IP. retrieve the IP ID based on either the parent or VRF.
268 die "Pool ID or VRF is required\n" if !$args{parent} && !$args{vrf};
269 ($args{block}) = $ip_dbh->selectrow_array(
270 "SELECT id FROM poolips WHERE ip = ? AND ".($args{parent} ? "parent_id = ?" : "vrf = ?"),
271 undef, $args{block}, ($args{parent} ? $args{parent} : $args{vrf}) );
272 }
273
274 my $binfo = getBlockData($ip_dbh, $args{block}, $args{type});
275
276 # set assignIP_on_update to simplify some calling situations. better to use allocateBlock if possible though.
277 my ($code,$msg) = updateBlock($ip_dbh, %args, assignIP_on_update => 1);
278 if ($code eq 'FAIL') {
279 syslog "err", "$args{rpcsystem}/$args{rpcuser} could not update block/IP $args{block} ($binfo->{block}): '$msg'";
280 die "$msg\n";
281 }
282 syslog "notice", "$args{rpcsystem}/$args{rpcuser} updated $args{block} ($binfo->{block})";
283
284 return $msg;
285} # rpc_updateBlock()
286
287
288sub rpc_deleteBlock {
289 my %args = @_;
290
291 _commoncheck(\%args, 'y');
292
293 _validateInput(\%args);
294
295 if ($args{block} =~ m{^(?:\d+\.){3}\d+(?:/32)?$}) {
296 # deleting a static IP. retrieve the IP ID based on either the parent or VRF.
297 die "Pool ID or VRF is required\n" if !$args{parent} && !$args{vrf};
298 ($args{block}) = $ip_dbh->selectrow_array(
299 "SELECT id FROM poolips WHERE ip = ? AND ".($args{parent} ? "parent_id = ?" : "vrf = ?"),
300 undef, $args{block}, ($args{parent} ? $args{parent} : $args{vrf}) );
301 warn "passed block $args{block} guessed as $args{block}\n";
302 }
303
304 # snag block info for log
305 my $blockinfo = getBlockData($ip_dbh, $args{block}, $args{type});
306 my ($code,$msg) = deleteBlock($ip_dbh, $args{block}, $args{type}, $args{delfwd}, $args{rpcuser});
307
308 my $authuser = "$args{rpcsystem}/$args{rpcuser}";
309 if ($code eq 'OK' || $code =~ /^WARN/) {
310 syslog "notice", "$authuser deallocated '$blockinfo->{type}'-type netblock ID $args{block} ".
311 "($blockinfo->{block}), $blockinfo->{custid}, $blockinfo->{city}, desc='$blockinfo->{description}'";
312 mailNotify($ip_dbh, 'da', "REMOVED: $disp_alloctypes{$blockinfo->{type}} $blockinfo->{block}",
313# $args{block} useful? do we care about the block ID here?
314 "$disp_alloctypes{$blockinfo->{type}} $blockinfo->{block} deallocated by $authuser\n".
315 "CustID: $blockinfo->{custid}\nCity: $blockinfo->{city}\n".
316 "Description: $blockinfo->{description}\n");
317 } else {
318 if ($args{type} =~ /^.i$/) {
319 syslog "err", "$authuser could not deallocate static IP ID $args{block} ($blockinfo->{block}): '$msg'";
320 } else {
321 syslog "err", "$authuser could not deallocate netblock ID $args{block} ($blockinfo->{block}): '$msg'";
322 }
323 }
324
325 return $msg;
326} # rpc_deleteBlock()
327
328
329sub rpc_getBlockData {}
330sub rpc_getBlockRDNS {}
331sub rpc_getNodeList {}
332sub rpc_getNodeName {}
333sub rpc_getNodeInfo {}
334sub rpc_mailNotify {}
335
336
337##
338## Subs not part of the core IPDB
339##
340
341# Subs to send back IPDB globals
342
343#our %disp_alloctypes;
344sub rpc_getDispAlloctypes {
345 my %args = @_;
346 _commoncheck(\%args, 'n');
347 return \%disp_alloctypes;
348}
349
350#our %list_alloctypes;
351sub rpc_getListAlloctypes {
352 my %args = @_;
353 _commoncheck(\%args, 'n');
354 return \%list_alloctypes;
355}
356
357#our %def_custids;
358sub rpc_getDefCustIDs {
359 my %args = @_;
360 _commoncheck(\%args, 'n');
361 return \%def_custids;
362}
363
364#our @citylist;
365sub rpc_getCityList {
366 my %args = @_;
367 _commoncheck(\%args, 'n');
368 return \@citylist;
369}
370
371#our @poplist;
372sub rpc_getPOPList {
373 my %args = @_;
374 _commoncheck(\%args, 'n');
375 return \@poplist;
376}
377
378# not sure how useful it is to expose this on RPC
379#our %IPDBacl;
380sub rpc_getIPDBacl {
381 my %args = @_;
382 _commoncheck(\%args, 'n');
383 return \%IPDBacl;
384}
385
386# Operations not provided directly by the core IPDB
387
388# Get a list of available static IPs of the given type
389# Not a core IPDB sub since there's little use for this format.
390sub rpc_getAvailableStatics {
391 my %args = @_;
392
393 _commoncheck(\%args, 'n');
394
395 my ($base,undef) = split //, $args{type};
396 $base .= "_";
397 my @params = ($base);
398
399 my $sql = "SELECT poolips.id,poolips.ip,poolips.parent_id,poolips.pool ".
400 "FROM poolips JOIN allocations ON poolips.parent_id=allocations.id WHERE poolips.type LIKE ?";
401 if ($base ne 'd_' && $args{city}) {
402 $sql .= " AND allocations.city=?";
403 push @params, $args{city};
404 }
405 $sql .= " AND poolips.available='y'";
406
407 my $ret = $ip_dbh->selectall_arrayref($sql, { Slice => {} }, (@params) );
408 die $ip_dbh->errstr if !$ret;
409
410 return $ret;
411} # rpc_getAvailableStatics()
412
413
414sub rpc_getBackupList {
415 my %args = @_;
416
417 _commoncheck(\%args, 'n');
418
419 # grab the whole waffle.
420 my $sql = "SELECT backup_id, bkbrand, bkmodel, bktype, bkport, bksrc, bkuser, bkvpass, bkepass, ip FROM backuplist";
421 my $result = $ip_dbh->selectall_arrayref($sql, { Slice => {} });
422 die $ip_dbh->errstr if !$result;
423
424 return $result;
425} # rpc_getBackupList()
Note: See TracBrowser for help on using the repository browser.