0007-Use-signature-instead-of-private-encryption-in-ssh-a.patch

Jean-Philippe Garcia Ballester, 04/23/2013 10:05 AM

Download (3.9 KB)

View differences:

share/install_gems/install_gems
4 4

  
5 5
$nokogiri='nokogiri'
6 6

  
7
DEFAULT=%w{sunstone quota cloud ozones_server auth_ldap}
7
DEFAULT=%w{sunstone quota cloud ozones_server auth_ldap auth_ssh}
8 8

  
9 9
if defined?(RUBY_VERSION) && RUBY_VERSION>="1.8.7"
10 10
    SQLITE='sqlite3'
......
23 23
    :ozones_server_sqlite => %w{json sequel}<<SQLITE,
24 24
    :ozones_server_mysql => %w{json sequel mysql},
25 25
    :auth_ldap => 'net-ldap'
26
    :auth_ssh => 'net-ssh'
26 27
}
27 28

  
28 29
PACKAGES=GROUPS.keys
29 30

  
30 31
GEM_TEST={
31 32
    'net-ldap' => 'net/ldap'
33
    'net-ssh' => 'net/ssh'
32 34
}
33 35

  
34 36
DISTRIBUTIONS={
src/authm_mad/remotes/ssh/ssh_auth.rb
15 15
#--------------------------------------------------------------------------- #
16 16

  
17 17

  
18
require 'rubygems'
19
require 'net/ssh'
20

  
18 21
require 'pp'
19 22
require 'openssl'
20 23
require 'base64'
......
67 70
        # Generate security token
68 71
        time = Time.now.to_i + expire.to_i
69 72

  
70
        secret_plain   = "#{user}:#{time}"
71
        secret_crypted = encrypt(secret_plain)
73
        secret_plain     = "#{user};#{time}"
74
        secret_signature = sign(secret_plain)
75
        secret           = "#{secret_plain}@#{secret_signature}"
72 76

  
73
        proxy = "#{user}:#{secret_crypted}"
77
        proxy = "#{user}:#{secret}"
74 78

  
75 79
        file = File.open(LOGIN_PATH, "w")
76 80
        file.write(proxy)
......
78 82

  
79 83
        File.chmod(0600,LOGIN_PATH)
80 84

  
81
        secret_crypted
85
        secret
82 86
    end
83 87

  
84 88
    # Returns a valid password string to create a user using this auth driver.
......
92 96
    # Checks the proxy created with the login method
93 97
    def authenticate(user, token)
94 98
        begin
95
            token_plain = decrypt(token)
96
            _user, time = token_plain.split(':')
99
            plain_data, signed_data = token.split('@')
100
            valid_sig = verify(signed_data, plain_data)
101
            _user, time = plain_data.split(';')
97 102

  
98
            if user == _user
103
            if valid_sig && user == _user
99 104
                if Time.now.to_i >= time.to_i
100 105
                    return "ssh proxy expired, login again to renew it"
101 106
                else
......
132 137
        end unless path_or_key.nil?
133 138
    end
134 139

  
135
    # Encrypts data with the private key of the user and returns
136
    # base 64 encoded output in a single line
137
    def encrypt(data)
138
        Base64::encode64(@private_key.private_encrypt(data)).gsub!(/\n/, '').strip
140
    # Signs data with the private key of the user and returns
141
    # base 64 encoded signature in a single line
142
    def sign(data)
143
        sig = @private_key.ssh_do_sign(data)
144
        Base64::encode64(sig).gsub!(/\n/, '').strip
139 145
    end
140 146

  
141
    # Decrypts base 64 encoded data with pub_key (public key)
142
    def decrypt(data)
143
        @public_key.public_decrypt(Base64::decode64(data))
147
    # Verify base 64 encoded signature of data with the public key of the
148
    # user and returns true if signature is valid
149
    def verify(sig, data)
150
        @public_key.ssh_do_verify(Base64::decode64(sig), data)
144 151
    end
145 152
end
146
-