You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

185 lines
5.9 KiB

  1. #! /usr/bin/python3
  2. # coding=utf-8
  3. import MySQLdb
  4. import json
  5. from SetupMinersClass import SetupMiner
  6. q1c = "SELECT REPLACE(hw_addr, ':','') as hw_addr, " \
  7. "serial, " \
  8. "net_num " \
  9. "FROM 1c_import " \
  10. "where imported = 0;"
  11. qleases4 = "SELECT INET_NTOA(address) as ip4, " \
  12. "HEX(hwaddr)as hw_addr, hostname, " \
  13. "expire, " \
  14. "valid_lifetime " \
  15. "FROM lease4 " \
  16. "where INET_NTOA(address) like '10.{}.0%';"
  17. qhosts_ip = "SELECT " \
  18. "INET_NTOA(ipv4_address) AS ipv4_address " \
  19. "FROM dhcp4.hosts;"
  20. qinsert_hosts = "START TRANSACTION; " \
  21. "SET @ipv4_reservation='%s'; " \
  22. "SET @hostname = '%s'; " \
  23. "SET @identifier_type='hw-address'; " \
  24. "SET @identifier_value='%s'; " \
  25. "SET @dhcp4_subnet_id=1024; " \
  26. "INSERT INTO hosts ( dhcp_identifier, " \
  27. " dhcp_identifier_type, " \
  28. " dhcp4_subnet_id, " \
  29. " ipv4_address, " \
  30. " hostname) " \
  31. "VALUES ( " \
  32. "UNHEX(@identifier_value)," \
  33. " (SELECT type FROM host_identifier_type WHERE name=@identifier_type)," \
  34. " @dhcp4_subnet_id," \
  35. " INET_ATON(@ipv4_reservation)," \
  36. " @hostname); " \
  37. "COMMIT;"
  38. qupdate_1c = "update 1c_import set imported = 1 where serial = '%s';"
  39. class ConfigClass:
  40. def __init__(self):
  41. self.conffile = 'config.json'
  42. self.sshsfile = 'commands/sshs.json'
  43. self.telnetsfile = 'commands/telnets.json'
  44. self.config = list
  45. self.minerconf = dict
  46. self.dbconf = dict
  47. self.sshs = list
  48. self.telnets = list
  49. def read_json(self, file):
  50. with open(file) as f:
  51. conf = json.load(f)
  52. return conf
  53. def readall(self):
  54. conf = self.read_json(self.conffile)
  55. self.sshs = self.read_json(self.sshsfile)
  56. self.telnets = read_conf(self.telnetsfile)
  57. self.minerconf = {"sshuser": conf["sshuser"],
  58. "sshpass": conf["sshpass"],
  59. "sshport": conf["sshport"],
  60. "telnetuser": conf["telnetuser"],
  61. "telnetpass": conf["telnetpass"],
  62. "telnetport": conf["telnetport"]}
  63. self.dbconf = {"dbhost": conf['dbhost'],
  64. "dbuser": conf['dbuser'],
  65. "dbpass": conf['dbpass'],
  66. "dbbase": conf['dbbase']}
  67. def read_table(sql, dbhost, dbuser, dbpass, dbbase):
  68. try:
  69. conn = MySQLdb.connect(host=dbhost, user=dbuser,
  70. passwd=dbpass, db=dbbase)
  71. except MySQLdb.Error as err:
  72. print("Connection error: {}".format(err))
  73. conn.close()
  74. try:
  75. cur = conn.cursor(MySQLdb.cursors.DictCursor)
  76. cur.execute(sql)
  77. data = cur.fetchall()
  78. except MySQLdb.Error as err:
  79. print("Query error: {}".format(err))
  80. conn.close()
  81. return data
  82. def first_free_ip(ips, ip_pool, octet1, octet2, octet3):
  83. locked_ip = []
  84. octet4 = ''
  85. set_octets = False
  86. for ip in ips:
  87. octets = ip['ipv4_address'].split('.')
  88. if not set_octets:
  89. octet1 = octets[0]
  90. octet2 = octets[1]
  91. set_octets = True
  92. if octets[2] == str(octet3):
  93. locked_ip.append(octets[3])
  94. i = int(ip_pool[0])
  95. while i < int(ip_pool[1]):
  96. if not str(i) in locked_ip:
  97. octet4 = str(i)
  98. break
  99. i = i + 1
  100. if octet4 == '':
  101. return ''
  102. else:
  103. return "%s.%s.%s.%s" % (octet1, octet2, octet3, octet4)
  104. def make_hosts(sql, ip, hostname, hw_addr, dbhost, dbuser, dbpass, dbbase):
  105. try:
  106. conn = MySQLdb.connect(host=dbhost, user=dbuser,
  107. passwd=dbpass, db=dbbase)
  108. except MySQLdb.Error as err:
  109. print("Connection error: {}".format(err))
  110. conn.close()
  111. try:
  112. cur = conn.cursor(MySQLdb.cursors.DictCursor)
  113. cur.execute(sql % (ip, hostname, hw_addr))
  114. data = cur.fetchall()
  115. cur.close()
  116. except MySQLdb.Error as err:
  117. print("Query error: {}".format(err))
  118. try:
  119. cur = conn.cursor(MySQLdb.cursors.DictCursor)
  120. print(qupdate_1c % hostname)
  121. cur.execute(qupdate_1c % hostname)
  122. data = cur.fetchall()
  123. cur.close()
  124. except MySQLdb.Error as err:
  125. print("Query error: {}".format(err))
  126. conn.commit()
  127. conn.close()
  128. return data
  129. def read_conf(file):
  130. with open(file) as f:
  131. conf = json.load(f)
  132. return conf
  133. def main():
  134. conf = read_conf('config.json')
  135. sshs = read_conf('commands/sshs.json')
  136. telnets = read_conf('commands/telnets.json')
  137. minerconf = {"sshuser": conf["sshuser"],
  138. "sshpass": conf["sshpass"],
  139. "sshport": conf["sshport"],
  140. "telnetuser": conf["telnetuser"],
  141. "telnetpass": conf["telnetpass"],
  142. "telnetport": conf["telnetport"]}
  143. dbconf = [conf['dbhost'], conf['dbuser'], conf['dbpass'], conf['dbbase']]
  144. data_1c = read_table(q1c, *dbconf)
  145. data_leases = read_table(qleases4.format(conf['ip_oct2']), *dbconf)
  146. for line in data_1c:
  147. set_ip = first_free_ip(read_table(qhosts_ip, *dbconf),
  148. conf['ippool'], conf['ip_oct1'], conf['ip_oct2'], line['net_num'])
  149. set_hw_addr = line['hw_addr']
  150. set_host = line['serial']
  151. make_hosts(qinsert_hosts, set_ip, set_host, set_hw_addr,
  152. *dbconf)
  153. print('host built name %s, mac %s, ip %s' % (set_host, set_hw_addr, set_ip))
  154. for line in data_1c:
  155. for lease in data_leases:
  156. if line['hw_addr'] == lease['hw_addr']:
  157. print('rebooting %s' % lease['ip4'])
  158. SetupMiner(lease['ip4'], minerconf, telnets=telnets, sshs=sshs)
  159. if __name__ == '__main__':
  160. main()

Powered by TurnKey Linux.