Module: Zonify

Extended by:
Zonify
Included in:
Zonify
Defined in:
lib/zonify.rb

Defined Under Namespace

Modules: Mappings, RR, Resolve, YAML Classes: AWS

Constant Summary collapse

ELB_DNS_RE =
/^([a-z0-9-]+)-[^-.]+[.].+$/
LDH_RE =
/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])$/
EC2_DNS_RE =
/^ec2-([0-9]+)-([0-9]+)-([0-9]+)-([0-9]+)
[.]compute-[0-9]+[.]amazonaws[.]com[.]?$/x
RRTYPE_RE =

Based on reading the Wikipedia page:

http://en.wikipedia.org/wiki/List_of_DNS_record_types

and the IANA registry:

http://www.iana.org/assignments/dns-parameters
/^([*]|[A-Z0-9-]+)$/

Instance Method Summary collapse

Instance Method Details

#_dot(s) ⇒ Object



451
452
453
# File 'lib/zonify.rb', line 451

def _dot(s)
  /^[.]/.match(s) ? s : ".#{s}"
end

#chunk_changesets(changes) ⇒ Object

The Route 53 API has limitations on query size:

- A request cannot contain more than 100 Change elements.

- A request cannot contain more than 1000 ResourceRecord elements.

- The sum of the number of characters (including spaces) in all Value
  elements in a request cannot exceed 32,000 characters.


512
513
514
515
516
517
518
519
520
521
522
# File 'lib/zonify.rb', line 512

def chunk_changesets(changes)
  chunks = [[]]
  changes.each do |change|
    if fits(change, chunks.last)
      chunks.last.push(change)
    else
      chunks.push([change])
    end
  end
  chunks
end

#cname_multitudinous(tree) ⇒ Object

For every SRV record that is not a singleton and that does not shadow an existing CNAME, we create WRRs for item in the SRV record.



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# File 'lib/zonify.rb', line 289

def cname_multitudinous(tree)
  tree.inject({}) do |acc, pair|
    name, info = pair
    name_clipped = name.sub("#{Zonify::Resolve::SRV_PREFIX}.", '')
    info.each do |type, data|
      if 'SRV' == type and 1 < data[:value].length
        wrrs = data[:value].inject({}) do |accumulator, rr|
          server = Zonify.dot_(rr.sub(/^([^ ]+ +){3}/, '').strip)
          id = server.split('.').first # Always the isntance ID.
          accumulator[id] = data.merge(:value=>[server], :weight=>"16")
          accumulator
        end
        acc[name_clipped] = { 'CNAME' => wrrs }
      end
    end
    acc
  end
end

#cname_singletons(tree) ⇒ Object

For SRV records with a single entry, create a singleton CNAME as a convenience.



250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# File 'lib/zonify.rb', line 250

def cname_singletons(tree)
  tree.inject({}) do |acc, pair|
    name, info = pair
    name_clipped = name.sub("#{Zonify::Resolve::SRV_PREFIX}.", '')
    info.each do |type, data|
      if 'SRV' == type and 1 == data[:value].length
        rr_clipped = data[:value].map do |rr|
          Zonify.dot_(rr.sub(/^([^ ]+ +){3}/, '').strip)
        end
        new_data = data.merge(:value=>rr_clipped)
        acc[name_clipped] = { 'CNAME' => new_data }
      end
    end
    acc
  end
end

#compare_records(a, b) ⇒ Object

Determine whether two resource record sets are the same in all respects (keys missing in one should be missing in the other).



399
400
401
402
403
404
405
# File 'lib/zonify.rb', line 399

def compare_records(a, b)
  keys = ((a.keys | b.keys) - [:value]).sort_by{|s| s.to_s }
  as, bs = [a, b].map do |record|
    keys.map{|k| record[k] } << Zonify.normRRs(record[:value])
  end
  as == bs
end

#cut_down_elb_name(s) ⇒ Object



430
431
432
# File 'lib/zonify.rb', line 430

def cut_down_elb_name(s)
  $1 if ELB_DNS_RE.match(s)
end

#diff(new_records, old_records, types = ['CNAME','SRV']) ⇒ Object

Old records that have the same elements as new records should be left as is. If they differ in any way, they should be marked for deletion and the new record marked for creation. Old records not in the new records should also be marked for deletion.



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
# File 'lib/zonify.rb', line 357

def diff(new_records, old_records, types=['CNAME','SRV'])
  create_set = new_records.map do |name, v|
    old = old_records[name]
    v.map do |type, data|
      if types.member? '*' or types.member? type
        old_data = ((old and old[type]) or {})
        unless Zonify.compare_records(old_data, data)
          Zonify.hoist(data, name, type, 'CREATE')
        end
      end
    end.compact
  end
  delete_set = old_records.map do |name, v|
    new = new_records[name]
    v.map do |type, data|
      if types.member? '*' or types.member? type
        new_data = ((new and new[type]) or {})
        unless Zonify.compare_records(data, new_data)
          Zonify.hoist(data, name, type, 'DELETE')
        end
      end
    end.compact
  end
  (delete_set.flatten + create_set.flatten).sort_by do |record|
    # Sort actions so that creation of a record comes immediately after a
    # deletion.
    delete_first = record[:action] == 'DELETE' ? 0 : 1
    [record[:name], record[:type], delete_first]
  end
end

#dot_(s) ⇒ Object



455
456
457
# File 'lib/zonify.rb', line 455

def dot_(s)
  /[.]$/.match(s) ? s : "#{s}."
end

#ec2_dns_to_ip(dns) ⇒ Object



461
462
463
# File 'lib/zonify.rb', line 461

def ec2_dns_to_ip(dns)
  "#{$1}.#{$2}.#{$3}.#{$4}" if EC2_DNS_RE.match(dns)
end

#fits(change, changes) ⇒ Object

Determine whether we can add this record to the existing records, subject to Amazon size constraints.



531
532
533
534
535
536
537
538
# File 'lib/zonify.rb', line 531

def fits(change, changes)
  new = changes + [change]
  measured = new.map{|change| measureRRs(change) }
  len, chars = measured.inject([0, 0]) do |acc, pair|
    [ acc[0] + pair[0], acc[1] + pair[1] ]
  end
  new.length <= 100 and len <= 1000 and chars <= 30000 # margin of safety
end

#hoist(data, name, type, action) ⇒ Object



388
389
390
391
392
393
394
395
# File 'lib/zonify.rb', line 388

def hoist(data, name, type, action)
  meta = {:name=>name, :type=>type, :action=>action}
  if data[:value] # Not a WRR.
    [data.merge(meta)]
  else # Is a WRR.
    data.map{|k,v| v.merge(meta.merge(:set_identifier=>k)) }
  end
end

#measureRRs(change) ⇒ Object



524
525
526
527
# File 'lib/zonify.rb', line 524

def measureRRs(change)
  [ change[:value].length,
    change[:value].inject(0){|sum, s| s.length + sum } ]
end

#merge(*trees) ⇒ Object

Merge all records from the trees, taking TTLs from the leftmost tree and sorting and deduplicating resource records. (When called on a single tree, this function serves to sort and deduplicate resource records.)



328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# File 'lib/zonify.rb', line 328

def merge(*trees)
  acc = {}
  trees.each do |tree|
    tree.inject(acc) do |acc, pair|
      name, info     = pair
      acc[name]    ||= {}
      info.inject(acc[name]) do |acc_, pair_|
        type, data = pair_
        case
        when (not acc_[type])
          acc_[type] = data.dup
        when (not acc_[type][:value] and not data[:value]) # WRR records.
          d = data.merge(acc_[type])
          acc_[type] = d
        else # Not WRR records.
          acc_[type][:value] = (data[:value] + acc_[type][:value]).sort.uniq
        end
        acc_
      end
      acc
    end
  end
  acc
end

#normalize(tree) ⇒ Object

In the fully normalized tree of records, each multi-element SRV is associated with a set of equally weighted CNAMEs, one for each record. Singleton SRVs are associated with a single CNAME. All resource record lists are sorted and deduplicated.



229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
# File 'lib/zonify.rb', line 229

def normalize(tree)
  singles = Zonify.cname_singletons(tree)
  merged = Zonify.merge(tree, singles)
  remove, srvs = Zonify.srv_from_cnames(merged)
  cleared = merged.inject({}) do |acc, pair|
    name, info = pair
    info.each do |type, data|
      unless 'CNAME' == type and remove.member?(name)
        acc[name] ||= {}
        acc[name][type] = data
      end
    end
    acc
  end
  stage2 = Zonify.merge(cleared, srvs)
  multis = Zonify.cname_multitudinous(stage2)
  stage3 = Zonify.merge(stage2, multis)
end

#normRRs(val) ⇒ Object

Sometimes, resource_records are a single string; sometimes, an array. The array should be sorted for comparison’s sake. Strings should be put in an array.



410
411
412
413
414
415
# File 'lib/zonify.rb', line 410

def normRRs(val)
  case val
  when Array then val.sort
  else           [val]
  end
end

#read_octal(s) ⇒ Object



417
418
419
420
421
422
423
424
425
426
427
# File 'lib/zonify.rb', line 417

def read_octal(s)
  after = s
  acc = ''
  loop do
    before, match, after = after.partition(/\\([0-9][0-9][0-9])/)
    acc += before
    break if match.empty?
    acc << $1.oct
  end
  acc
end

#srv_from_cnames(tree) ⇒ Object

Find CNAMEs with multiple records and create SRV records to replace them, as well as returning the list of CNAMEs to replace.



269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# File 'lib/zonify.rb', line 269

def srv_from_cnames(tree)
  remove = []
  srvs = tree.inject({}) do |acc, pair|
    name, info = pair
    name_srv = "#{Zonify::Resolve::SRV_PREFIX}.#{name}"
    info.each do |type, data|
      if 'CNAME' == type and 1 < data[:value].length
        remove.push(name)
        rr_srv = data[:value].map{|s| '0 0 0 ' + s }
        acc[name_srv]      ||= { }
        acc[name_srv]['SRV'] = { :ttl=>100, :value=>rr_srv }
      end
    end
    acc
  end
  [remove, srvs]
end

#string_to_ldh(s) ⇒ Object



440
441
442
443
444
445
446
447
448
449
# File 'lib/zonify.rb', line 440

def string_to_ldh(s)
  head, *tail = s.split('.')
  tail_ = tail.map{|s| string_to_ldh_component(s) }
  head_ = case head
          when '*' then '*'
          when nil then ''
          else          string_to_ldh_component(head)
          end
  [head_, tail_].flatten.select{|c| not (c.empty? or c.nil?) }.join('.')
end

#string_to_ldh_component(s) ⇒ Object



435
436
437
438
# File 'lib/zonify.rb', line 435

def string_to_ldh_component(s)
  LDH_RE.match(s) ? s.downcase : s.downcase.gsub(/[^a-z0-9-]/, '-').
                                            sub(/(^[-]+|[-]+$)/, '')[0...64]
end

#tree(records) ⇒ Object

Group DNS entries into a tree, with name at the top level, type at the next level and then resource records and TTL at the leaves. If the records are part of a weighted record set, then the record data is pushed down one more level, with the “set identifier” in between the type and data.



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# File 'lib/zonify.rb', line 208

def tree(records)
  records.inject({}) do |acc, record|
    name, type, ttl, value,
    weight, set           = [ record[:name],   record[:type],
                              record[:ttl],    record[:value],
                              record[:weight], record[:set_identifier] ]
    reference = acc[name]       ||= {}
    reference = reference[type] ||= {}
    reference = reference[set]  ||= {} if set
    appended                      = (reference[:value] or []) << value
    reference[:ttl]               = ttl
    reference[:value]             = appended.sort.uniq
    reference[:weight]            = weight if weight
    acc
  end
end

#tree_from_right_aws(records) ⇒ Object

Collate RightAWS style records in to the tree format used by the tree method.



309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'lib/zonify.rb', line 309

def tree_from_right_aws(records)
  records.inject({}) do |acc, record|
    name, type, ttl, value,
    weight, set           = [ record[:name],   record[:type],
                              record[:ttl],    record[:value],
                              record[:weight], record[:set_identifier] ]
    reference = acc[name]       ||= {}
    reference = reference[type] ||= {}
    reference = reference[set]  ||= {} if set
    reference[:ttl]               = ttl
    reference[:value]             = (value or [])
    reference[:weight]            = weight if weight
    acc
  end
end

#zone(hosts, elbs) ⇒ Object

Given EC2 host and ELB data, construct unqualified DNS entries to make a zone, of sorts.



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
# File 'lib/zonify.rb', line 170

def zone(hosts, elbs)
  host_records = hosts.map do |id,info|
    name = "#{id}.inst."
    priv = "#{info[:priv]}.priv."
    [ Zonify::RR.cname(name, info[:dns], '600'),
      Zonify::RR.cname(priv, info[:dns], '600'),
      Zonify::RR.srv('inst.', name) ] +
    info[:tags].map do |tag|
      k, v = tag
      next if k.nil? or v.nil? or k.empty? or v.empty?
      tag_dn = "#{Zonify.string_to_ldh(v)}.#{Zonify.string_to_ldh(k)}.tag."
      Zonify::RR.srv(tag_dn, name)
    end.compact
  end.flatten
  elb_records = elbs.map do |elb|
    running = elb[:instances].select{|i| hosts[i] }
    name = "#{elb[:prefix]}.elb."
    running.map{|host| Zonify::RR.srv(name, "#{host}.inst.") }
  end.flatten
  sg_records = hosts.inject({}) do |acc, kv|
    id, info = kv
    info[:sg].each do |sg|
      acc[sg] ||= []
      acc[sg]  << id
    end
    acc
  end.map do |sg, ids|
    sg_ldh = Zonify.string_to_ldh(sg)
    name = "#{sg_ldh}.sg."
    ids.map{|id| Zonify::RR.srv(name, "#{id}.inst.") }
  end.flatten
  [host_records, elb_records, sg_records].flatten
end