add_logic.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. <?php
  2. //-
  3. // Copyright (c) 2011-2018 Joe Clarke <jclarke@cisco.com>
  4. // All rights reserved.
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions
  7. // are met:
  8. // 1. Redistributions of source code must retain the above copyright
  9. // notice, this list of conditions and the following disclaimer.
  10. // 2. Redistributions in binary form must reproduce the above copyright
  11. // notice, this list of conditions and the following disclaimer in the
  12. // documentation and/or other materials provided with the distribution.
  13. // THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  14. // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  15. // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  16. // ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  17. // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  18. // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  19. // OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  20. // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  21. // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  22. // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  23. // SUCH DAMAGE.
  24. include_once 'db.inc.php';
  25. include_once 'swreg/swreg.inc.php';
  26. require_once 'Log.php';
  27. require_once 'functions.php';
  28. $dsn = "$db_driver:host=$db_host;dbname=$db_name";
  29. $options = [
  30. PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
  31. PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
  32. PDO::ATTR_EMULATE_PREPARES => false,
  33. ];
  34. try {
  35. $dbh = new PDO($dsn, $db_user, $db_pass, $options);
  36. } catch (PDOException $e) {
  37. die($e->getMessage());
  38. }
  39. $logger = Log::singleton('file', LOGFILE, TOOL_NAME . ' : Add Logical Switch');
  40. if ($logger === false) {
  41. die("Failed to open logfile.\n");
  42. }
  43. $mask = Log::MAX(LOG_LEVEL);
  44. $logger->setMask($mask);
  45. $base = get_base($_SERVER['SCRIPT_NAME']);
  46. $errors = array();
  47. $ruser = '<AUTHENTICATION NOT ENABLED>';
  48. if (isset($_SERVER['REMOTE_USER'])) {
  49. $ruser = $_SERVER['REMOTE_USER'];
  50. }
  51. if (isset($_REQUEST['submit'])) {
  52. $name = $_REQUEST['name'];
  53. $pid = $_REQUEST['pid'];
  54. $mdf = $_REQUEST['mdf'];
  55. $idf = $_REQUEST['idf'];
  56. $is_idf = (isset($_REQUEST['is_idf'])) ? $_REQUEST['is_idf'] : array();
  57. //$ports = $_REQUEST['ports'];
  58. for ($i = 0; $i < count($name); ++$i) {
  59. $curr_idf = (isset($is_idf[$i])) ? $is_idf[$i] : 0;
  60. if ($name[$i] === null || $name[$i] == '') {
  61. continue;
  62. }
  63. if ($pid[$i] == '__BOGUS__') {
  64. array_push($errors, 'Please select a Product ID on row ' . ($i + 1));
  65. }
  66. /*if ($ports[$i] == '__BOGUS__') {
  67. array_push($errors, 'Please select ports required on row '.($i + 1));
  68. }*/
  69. if ($mdf[$i] == '__BOGUS__') {
  70. array_push($errors, 'Please select an MDF for row ' . ($i + 1));
  71. }
  72. if (ADDRESS_SCHEME == 'IDF' && $idf[$i] == '__BOGUS__' && $curr_idf == 0) {
  73. array_push($errors, 'Please select an IDF for row ' . ($i + 1));
  74. }
  75. $name[$i] = trim($name[$i]);
  76. if (count($errors) == 0) {
  77. $ip = null;
  78. $sql = '';
  79. if ((ADDRESS_SCHEME == 'IDF' && $curr_idf == 0) || ADDRESS_SCHEME == 'NEXT_FREE' || ADDRESS_SCHEME == 'DNS') {
  80. $params = array();
  81. if (ADDRESS_SCHEME == 'IDF') {
  82. $sql = 'SELECT ip_address FROM SWITCHES WHERE name = ?';
  83. $sth = null;
  84. try {
  85. $sth = $dbh->prepare($sql);
  86. $sth->execute(array($idf[$i]));
  87. } catch (PDOException $e) {
  88. array_push($errors, 'Failed to get IDF IP for row ' . ($i + 1) . ": {$e->getMessage()}");
  89. }
  90. if ($sth !== null) {
  91. $row = $sth->fetch();
  92. $sth->closeCursor();
  93. preg_match("/^(\d+\.\d+\.\d+\.)/", $row['ip_address'], $matches);
  94. $sql = 'SELECT address FROM ADDRESSES WHERE location = ? AND address LIKE ? AND used = ? AND reserved = ? ORDER BY INET_ATON(address) LIMIT 1';
  95. $params = array($mdf[$i], $matches[1] . '%', '0', '0');
  96. }
  97. } elseif (ADDRESS_SCHEME == 'NEXT_FREE') {
  98. $sql = 'SELECT address FROM ADDRESSES WHERE location = ? AND used = ? AND reserved = ? ORDER BY INET_ATON(address) LIMIT 1';
  99. $params = array($mdf[$i], '0', '0');
  100. } elseif (ADDRESS_SCHEME == 'DNS') {
  101. $hostname = $name[$i] . '.' . DNS_ZONE;
  102. $ip = gethostbyname($hostname);
  103. if ($ip == $hostname) {
  104. $ip = gethostbyname($name[$i]);
  105. if ($ip == $name[$i]) {
  106. /* Don't make this fatal as we can fallback to manual
  107. * allocation.
  108. array_push($errors, "Unable to obtain IP address for either $hostame or {$name[$i]} on row " . ($i + 1));*/
  109. $ip = null;
  110. }
  111. }
  112. if ($ip !== null) {
  113. $sql = 'SELECT address FROM ADDRESSES WHERE address = ?';
  114. $params = array($ip);
  115. try {
  116. $sth = $dbh->prepare($sql);
  117. $sth->execute($params);
  118. $row = $sth->fetch();
  119. $sth->closeCursor();
  120. if (!$row['address']) {
  121. array_push($errors, "IP address $ip is not valid in the ZTP system for {$name[$i]} at row " . ($i + 1));
  122. }
  123. } catch (PDOException $e) {
  124. array_push($errors, 'Failed to validate IP for row ' . ($i + 1) . ": {$e->getMessage()}");
  125. }
  126. }
  127. }
  128. if (ADDRESS_SCHEME == 'IDF' || ADDRESS_SCHEME == 'NEXT_FREE') {
  129. $sth = null;
  130. try {
  131. $sth = $dbh->prepare($sql);
  132. $sth->execute($params);
  133. $row = $sth->fetch();
  134. $sth->closeCursor();
  135. $ip = $row['address'];
  136. } catch (PDOException $e) {
  137. array_push($errors, 'Failed to get next IP for row ' . ($i + 1) . ": {$e->getMessage()}");
  138. }
  139. }
  140. }
  141. if (count($errors) == 0) {
  142. $ports = $PID_PORTS[$pid[$i]];
  143. $sql = 'REPLACE INTO SWITCHES (name, pid, is_idf, ip_address, ports_required) VALUES (?, ?, ?, ?, ?)';
  144. try {
  145. $sth = $dbh->prepare($sql);
  146. $sth->execute(array($name[$i], $pid[$i], $curr_idf, $ip, $ports));
  147. $sth->closeCursor();
  148. $logger->info("User {$ruser} added new logical switch: name={$name[$i]}, pid={$pid[$i]}, is_idf={$curr_idf}, ip_address={$ip}");
  149. if ($ip !== null) {
  150. $sql = 'UPDATE ADDRESSES SET used=? WHERE address=?';
  151. try {
  152. $sth = $dbh->prepare($sql);
  153. $sth->execute(array('1', $ip));
  154. $sth->closeCursor();
  155. } catch (PDOException $ie) {
  156. array_push($errors, 'Failed to checkout IP for row ' . ($i + 1) . ": {$ie->getMessage()}");
  157. }
  158. }
  159. } catch (PDOException $e) {
  160. array_push($errors, 'Failed to add new logical switch for row ' . ($i + 1) . ": {$e->getMessage()}");
  161. }
  162. }
  163. }
  164. }
  165. if (count($errors) == 0) {
  166. $sql = 'UPDATE SYS_PROPERTIES SET value=? WHERE name=?';
  167. $now = time();
  168. try {
  169. $sth = $dbh->prepare($sql);
  170. $sth->execute([$now, 'last_logic_update']);
  171. $sth->closeCursor();
  172. } catch (PDOException $e) {
  173. }
  174. cleanup();
  175. header("Location: $base/logicsw.php");
  176. exit;
  177. }
  178. }
  179. $idfs = array();
  180. foreach ($MDFS as $m) {
  181. $sql = 'SELECT s.name AS name FROM SWITCHES s, ADDRESSES a WHERE a.location = ? AND a.address = s.ip_address AND s.is_idf = ?';
  182. try {
  183. $sth = $dbh->prepare($sql);
  184. $sth->execute(array($m, '1'));
  185. $idfs[$m] = array();
  186. while ($row = $sth->fetch()) {
  187. array_push($idfs[$m], $row['name']);
  188. }
  189. $sth->closeCursor();
  190. } catch (PDOException $e) {
  191. }
  192. }
  193. print_header(TOOL_NAME . ': Add Logical Switch');
  194. ?>
  195. <body class="flex">
  196. <script language="Javascript">
  197. var idfs = JSON.parse('<?= json_encode($idfs) ?>');
  198. function onMDFChange(mdf, row) {
  199. var midfs = idfs[mdf];
  200. var sel = document.getElementById('idf[' + row + ']');
  201. deleteOptions(sel);
  202. createOption(sel, '--Please Select--', '__BOGUS__');
  203. for (mi in midfs) {
  204. createOption(sel, midfs[mi], midfs[mi]);
  205. }
  206. }
  207. </script>
  208. <div id="headswreg">
  209. <div id="header">
  210. <h1>
  211. <?= TOOL_NAME ?>: Add Logical Switch
  212. </h1>
  213. </div>
  214. <br />
  215. </div>
  216. <div id="page">
  217. <div id="itemhead">
  218. <h2 class="tabeltitle">Logical Switches</h2>
  219. </div>
  220. <div align="center">
  221. <?php
  222. foreach ($errors as $error) {
  223. ?>
  224. <p class="error">
  225. <?= $error ?>
  226. </p>
  227. <?php
  228. }
  229. ?>
  230. </div>
  231. <form name="logical_switch_add_form" method="POST" action="<?= $_SERVER['PHP_SELF'] ?>">
  232. <table class="full" summary="New Logical Switch Table">
  233. <tr>
  234. <th>Row No.</th>
  235. <th>Hostname</th>
  236. <th>Product ID</th>
  237. <th>MDF</th>
  238. <th>Is IDF?</th>
  239. <th>IDF</th>
  240. <!--<th>Ports Required</th>-->
  241. </tr>
  242. <?php
  243. for ($i = 0; $i < 10; ++$i) {
  244. ?>
  245. <tr <?= get_row_color($i) ?>>
  246. <td>
  247. <?= $i + 1 ?>.
  248. </td>
  249. <td><input type="text" size="16" name="name[<?= $i ?>]"></td>
  250. <td><select name="pid[<?= $i ?>]">
  251. <option value="__BOGUS__" selected>--Please Select--</option>
  252. <?php
  253. foreach ($ZTP_PIDS as $p) {
  254. ?>
  255. <option value="<?= $p ?>">
  256. <?= $p ?>
  257. </option>
  258. <?php
  259. } ?>
  260. </select></td>
  261. <td><select name="mdf[<?= $i ?>]"
  262. onChange='onMDFChange(this.options[this.selectedIndex].value, <?= $i ?>); return true;'>
  263. <option value="__BOGUS__" selected>--Please Select--</option>
  264. <?php
  265. foreach ($MDFS as $m) {
  266. ?>
  267. <option value="<?= $m ?>">
  268. <?= $m ?>
  269. </option>
  270. <?php
  271. } ?>
  272. </select></td>
  273. <td><input type="checkbox" name="is_idf[<?= $i ?>]" value="1"
  274. onClick="if (this.checked == true) { this.document.getElementById('idf[<?= $i ?>]').disabled = true; } else { this.document.getElementById('idf[<?= $i ?>]').disabled = false; }">
  275. </td>
  276. <td><select name="idf[<?= $i ?>]" id="idf[<?= $i ?>]">
  277. <option value="__BOGUS__" selected>--Please Select--</option>
  278. </select></td>
  279. <!-- <td><select name="ports[<?= $i ?>]" id="ports[<?= $i ?>]">
  280. <option value="__BOGUS__" selected>- -Please Select- -</option>
  281. <?php
  282. /*$nports = array_values($PID_PORTS);
  283. sort($nports, SORT_NUMERIC);
  284. $np_seen = [];
  285. foreach ($nports as $n) {
  286. if (!isset($np_seen[$n])) {
  287. $np_seen[$n] = true; ?>
  288. <option value="<?=$n?>"><?=$n?></option>
  289. <?php
  290. }
  291. }*/ ?>
  292. </select></td>-->
  293. </tr>
  294. <?php
  295. }
  296. ?>
  297. </table>
  298. <br />
  299. <div align="center">
  300. <input type="reset" name="reset" value="Reset">
  301. <input type="submit" name="submit" value="Add">
  302. </div>
  303. </form>
  304. <table class="noborder" summary="Return Table">
  305. <tr>
  306. <td class="left_act">
  307. <a href="<?= $base ?>/logicsw.php">&lt;&lt;&lt;Return to Main Page</a>
  308. </td>
  309. </tr>
  310. </table>
  311. </div>
  312. </body>
  313. </html>
  314. <?php
  315. cleanup();
  316. ?>