aboutsummaryrefslogtreecommitdiff
path: root/contrib/dirauth-tools/add-tor
blob: 5a12abca80eacef0e99424735eb33625fa686ab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/ruby

# add-tor  -  Add a tor fingerprint line to the approved-routers file
#
# Tor's approved-routers file is expected to be versioned using RCS.
# This script checks for uncommitted changes, does a checkout of the
# file, adds the new fingerprint with a comment stating the server's
# operator, and commits the file to RCS again (using -u so that the
# working copy is not removed.
#
# Operator and fingerprint line are read from stdin.
#
# Before adding a fingerprint line, approved-routers is checked for
# rough syntactical correctness.  This script also checks that the
# nickname and fingerprint to be added do not already exist in the
# binding list.


# Copyright (c) 2006 by Peter Palfrader
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

BINDING = '/etc/tor/approved-routers'

def mysys(cmd)
	unless system(cmd)
		STDERR.puts "ERROR: #{cmd} failed"
		exit 1
	end
end

def check_nick(n)
	n =~ /^[a-zA-Z0-9]+$/
end

def check_fpr(fpr)
	fpr =~ /^([0-9A-F]{4} ){9}[0-9A-F]{4}$/
end

def parse_fprline(fprline)
	n = fprline[0 ... fprline.index(' ')]
	f = fprline[fprline.index(' ') + 1 .. -1 ]
	unless check_nick(n) and check_fpr(f)
		STDERR.puts "Invalid fpr syntax '#{fprline}'"
		exit 1
	end
	[n, f]
end



unless system("rcsdiff -q -u #{BINDING}")
	STDERR.puts "Uncommitted changes in #{BINDING}.  Aborting."
	exit 1
end

puts "Checking out #{BINDING}..."
mysys("co -l #{BINDING}")

print "Operator: "
@operator = readline.chop
unless @operator.index('@')
	STDERR.puts "ERROR: No @ found"
	exit 1
end

print "FPR Line: "
@fprline = readline.chop
(@nickname, @fpr) = parse_fprline(@fprline)

binding = File.new(BINDING,  "r+")
binding.readlines.each do |line|
	line.chop!
	next if line[0..0] == "#"
	(n,f) = parse_fprline(line)
	if (n == @nickname)
		STDERR.puts
		STDERR.puts "ERROR: Nickname #{n} already exists in #{BINDING} (fpr: #{f})"
		exit 1
	end
	if (f == @fpr)
		STDERR.puts
		STDERR.puts "ERROR: Fpr #{f} already exists in #{BINDING} (nickname: #{n})"
		exit 1
	end
end

puts
puts '| # ' + @operator
puts '| '   + @fprline
puts

binding.puts '# '+@operator
binding.puts @fprline
binding.close

puts "Committing #{BINDING}..."
mysys("ci -u -m'Add #{@nickname}' #{BINDING}")