2013-04-27 14:07:14 +02:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
|
|
|
require 'logger'
|
|
|
|
require 'ipaddr'
|
|
|
|
require 'json'
|
|
|
|
require 'yaml'
|
|
|
|
require 'rack'
|
|
|
|
|
|
|
|
require 'dyndnsd/generator/bind'
|
|
|
|
require 'dyndnsd/updater/command_with_bind_zone'
|
2013-04-27 14:30:41 +02:00
|
|
|
require 'dyndnsd/responder/dyndns_style'
|
2013-04-27 14:07:14 +02:00
|
|
|
require 'dyndnsd/responder/rest_style'
|
|
|
|
require 'dyndnsd/database'
|
|
|
|
require 'dyndnsd/version'
|
|
|
|
|
|
|
|
module Dyndnsd
|
|
|
|
def self.logger
|
|
|
|
@logger
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.logger=(logger)
|
|
|
|
@logger = logger
|
|
|
|
end
|
|
|
|
|
|
|
|
class LogFormatter
|
|
|
|
def call(lvl, time, progname, msg)
|
|
|
|
"%s: %s\n" % [lvl, msg.to_s]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Daemon
|
|
|
|
def initialize(config, db, updater, responder)
|
|
|
|
@users = config['users']
|
2013-04-27 14:59:25 +02:00
|
|
|
@domain = config['domain']
|
2013-04-27 14:07:14 +02:00
|
|
|
@db = db
|
|
|
|
@updater = updater
|
|
|
|
@responder = responder
|
|
|
|
|
|
|
|
@db.load
|
|
|
|
@db['serial'] ||= 1
|
|
|
|
@db['hosts'] ||= {}
|
|
|
|
(@db.save; update) if @db.changed?
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
@updater.update(@db)
|
|
|
|
end
|
|
|
|
|
2013-04-27 14:59:25 +02:00
|
|
|
def is_fqdn_valid?(hostname)
|
|
|
|
return false if hostname.length < @domain.length + 2
|
|
|
|
return false if not hostname.end_with?(@domain)
|
|
|
|
name = hostname.chomp(@domain)
|
|
|
|
return false if not name.match(/^[a-zA-Z0-9_-]+\.$/)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2013-04-27 14:07:14 +02:00
|
|
|
def call(env)
|
2013-04-27 15:42:29 +02:00
|
|
|
return @responder.response_for_error(:method_forbidden) if env["REQUEST_METHOD"] != "GET"
|
|
|
|
return @responder.response_for_error(:not_found) if env["PATH_INFO"] != "/nic/update"
|
2013-04-27 14:07:14 +02:00
|
|
|
|
|
|
|
params = Rack::Utils.parse_query(env["QUERY_STRING"])
|
|
|
|
|
2013-04-27 15:42:29 +02:00
|
|
|
return @responder.response_for_error(:hostname_missing) if not params["hostname"]
|
2013-04-27 14:07:14 +02:00
|
|
|
|
2013-04-27 15:42:29 +02:00
|
|
|
hostnames = params["hostname"].split(',')
|
2013-04-27 14:07:14 +02:00
|
|
|
|
2013-04-27 14:59:25 +02:00
|
|
|
# Check if hostname match rules
|
2013-04-27 15:42:29 +02:00
|
|
|
hostnames.each do |hostname|
|
|
|
|
return @responder.response_for_error(:hostname_malformed) if not is_fqdn_valid?(hostname)
|
|
|
|
end
|
2013-04-27 14:07:14 +02:00
|
|
|
|
|
|
|
user = env["REMOTE_USER"]
|
|
|
|
|
2013-04-27 15:42:29 +02:00
|
|
|
hostnames.each do |hostname|
|
|
|
|
return @responder.response_for_error(:host_forbidden) if not @users[user]['hosts'].include? hostname
|
|
|
|
end
|
2013-04-27 14:07:14 +02:00
|
|
|
|
|
|
|
# no myip?
|
|
|
|
if not params["myip"]
|
|
|
|
params["myip"] = env["REMOTE_ADDR"]
|
|
|
|
end
|
|
|
|
|
|
|
|
# malformed myip?
|
|
|
|
begin
|
|
|
|
IPAddr.new(params["myip"], Socket::AF_INET)
|
|
|
|
rescue ArgumentError
|
|
|
|
params["myip"] = env["REMOTE_ADDR"]
|
|
|
|
end
|
|
|
|
|
|
|
|
myip = params["myip"]
|
|
|
|
|
2013-04-27 22:02:54 +02:00
|
|
|
Dyndnsd.logger.info "Request to update #{hostnames} to #{myip} for user #{user}"
|
|
|
|
|
2013-04-27 15:42:29 +02:00
|
|
|
changes = []
|
|
|
|
hostnames.each do |hostname|
|
|
|
|
if (not @db['hosts'].include? hostname) or (@db['hosts'][hostname] != myip)
|
|
|
|
changes << :good
|
|
|
|
@db['hosts'][hostname] = myip
|
|
|
|
else
|
|
|
|
changes << :nochg
|
|
|
|
end
|
|
|
|
end
|
2013-04-27 14:07:14 +02:00
|
|
|
|
|
|
|
if @db.changed?
|
|
|
|
@db['serial'] += 1
|
2013-04-27 22:02:54 +02:00
|
|
|
Dyndnsd.logger.info "Committing update ##{@db['serial']}"
|
2013-04-27 14:07:14 +02:00
|
|
|
@db.save
|
|
|
|
update
|
|
|
|
end
|
|
|
|
|
2013-04-27 15:42:29 +02:00
|
|
|
@responder.response_for_changes(changes, myip)
|
2013-04-27 14:07:14 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.run!
|
|
|
|
if ARGV.length != 1
|
|
|
|
puts "Usage: dyndnsd config_file"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
|
|
|
config_file = ARGV[0]
|
|
|
|
|
|
|
|
if not File.file?(config_file)
|
2013-04-27 22:02:54 +02:00
|
|
|
puts "Config file not found!"
|
2013-04-27 14:07:14 +02:00
|
|
|
exit 1
|
|
|
|
end
|
2013-04-27 22:02:54 +02:00
|
|
|
|
|
|
|
puts "DynDNSd version #{Dyndnsd::VERSION}"
|
|
|
|
puts "Using config file #{config_file}"
|
2013-04-27 14:07:14 +02:00
|
|
|
|
|
|
|
config = YAML::load(File.open(config_file, 'r') { |f| f.read })
|
2013-04-27 22:02:54 +02:00
|
|
|
|
|
|
|
if config['logfile']
|
|
|
|
Dyndnsd.logger = Logger.new(config['logfile'])
|
|
|
|
else
|
|
|
|
Dyndnsd.logger = Logger.new(STDOUT)
|
|
|
|
end
|
|
|
|
|
|
|
|
Dyndnsd.logger.progname = "dyndnsd"
|
|
|
|
Dyndnsd.logger.formatter = LogFormatter.new
|
|
|
|
|
|
|
|
Dyndnsd.logger.info "Starting..."
|
2013-04-27 14:07:14 +02:00
|
|
|
|
2013-04-27 14:12:04 +02:00
|
|
|
db = Database.new(config['db'])
|
2013-04-27 15:08:36 +02:00
|
|
|
updater = Updater::CommandWithBindZone.new(config['domain'], config['updater']['params']) if config['updater']['name'] == 'command_with_bind_zone'
|
2013-04-27 14:30:41 +02:00
|
|
|
responder = Responder::DynDNSStyle.new
|
2013-04-27 14:07:14 +02:00
|
|
|
|
|
|
|
app = Daemon.new(config, db, updater, responder)
|
|
|
|
app = Rack::Auth::Basic.new(app, "DynDNS") do |user,pass|
|
2013-04-27 22:02:54 +02:00
|
|
|
allow = (config['users'].has_key? user) and (config['users'][user]['password'] == pass)
|
|
|
|
Dyndnsd.logger.warn "Login failed for #{user}" if not allow
|
|
|
|
allow
|
2013-04-27 14:07:14 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
Signal.trap('INT') do
|
2013-04-27 22:02:54 +02:00
|
|
|
Dyndnsd.logger.info "Quitting..."
|
2013-04-27 14:07:14 +02:00
|
|
|
Rack::Handler::WEBrick.shutdown
|
|
|
|
end
|
|
|
|
|
|
|
|
Rack::Handler::WEBrick.run app, :Host => config['host'], :Port => config['port']
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|