Class: OpenNebula::LdapAuth

Inherits:
Object
  • Object
show all
Defined in:
lib/opennebula/ldap_auth.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ LdapAuth

Returns a new instance of LdapAuth.



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
# File 'lib/opennebula/ldap_auth.rb', line 37

def initialize(options)
    @options={
        :host               => 'localhost',
        :port               => 389,
        :user               => nil,
        :password           => nil,
        :base               => nil,
        :group_base         => nil,
        :auth_method        => :simple,
        :user_field         => 'cn',
        :user_group_field   => 'dn',
        :group_field        => 'member',
        :mapping_generate   => true,
        :mapping_timeout    => 300,
        :mapping_filename   => 'server1.yaml',
        :mapping_key        => 'GROUP_DN',
        :mapping_default    => 1,
        :attributes         => [ "memberOf" ],
        :rfc2307bis         => true,
        :group_admin_group_dn => nil
    }.merge(options)

    ops={}

    if @options[:user]
        ops[:auth] = {
            :method => @options[:auth_method],
            :username => @options[:user],
            :password => @options[:password]
        }
    end

    # always fetch user_filed to compare whitespace diff
    @options[:attributes] << @options[:user_field]

    # fetch the user group field only if we need that
    if @options[:group] or !@options[:rfc2307bis]
        @options[:attributes] << @options[:user_group_field]
    end

    ops[:host]=@options[:host] if @options[:host]
    ops[:port]=@options[:port].to_i if @options[:port]
    ops[:encryption]=@options[:encryption] if @options[:encryption]

    @options[:mapping_file_path] = VAR_LOCATION + @options[:mapping_filename]
    generate_mapping if @options[:mapping_generate]
    load_mapping

    @ldap=Net::LDAP.new(ops)
end

Instance Method Details

#authenticate(user, password) ⇒ Object



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/opennebula/ldap_auth.rb', line 189

def authenticate(user, password)
    ldap=@ldap.clone

    auth={
        :method => @options[:auth_method],
        :username => user,
        :password => password
    }

    if ldap.bind(auth)
        true
    else
        false
    end
end

#find_user(name) ⇒ Object



136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/opennebula/ldap_auth.rb', line 136

def find_user(name)
    filter = Net::LDAP::Filter.equals(@options[:user_field], name)

    result = @ldap.search(
        :base       => @options[:base],
        :attributes => @options[:attributes],
        :filter     => filter
    )

    if result && result.first
        @user = result.first

        [@user.dn,
         @user[@options[:user_field]].first,
         @user[@options[:user_group_field]],
         @user['memberof']
        ]
    else
        result=@ldap.search(:base => name)

        if result && result.first
            @user = result.first
            [name,
             @user[@options[:user_field]].first,
             @user[@options[:user_group_field]],
             @user['memberof']
            ]
        else
            [nil, nil, nil, nil]
        end
    end
end

#generate_mappingObject



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
116
117
118
119
120
# File 'lib/opennebula/ldap_auth.rb', line 88

def generate_mapping
    file=@options[:mapping_file_path]
    generate = false

    if File.exist?(file)
        stat = File.stat(file)
        age = Time.now.to_i - stat.mtime.to_i
        generate = true if age > @options[:mapping_timeout]
    else
        generate = true
    end

    return if !generate

    client = OpenNebula::Client.new
    group_pool = OpenNebula::GroupPool.new(client)
    group_pool.info

    groups = group_pool.to_hash['']
    groups=[group_pool.get_hash['GROUP_POOL']['GROUP']].flatten

    yaml={}

    groups.each do |group|
        if group['TEMPLATE'] && group['TEMPLATE'][@options[:mapping_key]]
            yaml[group['TEMPLATE'][@options[:mapping_key]]] = group['ID']
        end
    end

    File.open(file, 'w') do |f|
        f.write(yaml.to_yaml)
    end
end

#get_groupsObject



209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# File 'lib/opennebula/ldap_auth.rb', line 209

def get_groups
    if @options[:rfc2307bis]
        ldap_groups = [@user['memberOf']].flatten
    else
        group_base = @options[:group_base] ? @options[:group_base] : @options[:base]
        filter = Net::LDAP::Filter.ex(@options[:group_field], @user[@options[:user_group_field]].first)
        ldap_groups = @ldap.search(
            :base       => group_base,
            :attributes => [ "dn" ],
            :filter     => filter
        ).map! { |entry| entry.dn }
    end

    groups = []
    ldap_groups.each do |group|
        if (g = in_hash_ignore_case?(@mapping, group))
            if !@options[:group_admin_group_dn].nil? and ldap_groups.any? {
                    |s| s.casecmp(@options[:group_admin_group_dn])==0
            }
                groups << "*#{@mapping[g]}"
            else
                groups << @mapping[g]
            end
        end
    end

    groups.delete(false)
    groups.compact.uniq
end

#in_hash_ignore_case?(hash, key) ⇒ Boolean

Returns:

  • (Boolean)


205
206
207
# File 'lib/opennebula/ldap_auth.rb', line 205

def in_hash_ignore_case?(hash, key)
    return hash.keys.find {|k| key.downcase == k.downcase}
end

#is_in_group?(user, group, memberof) ⇒ Boolean

Returns:

  • (Boolean)


169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# File 'lib/opennebula/ldap_auth.rb', line 169

def is_in_group?(user, group, memberof)
    if @options[:rfc2307bis]
        # compare case in-sensitive, like LDAP does
        return memberof.map(&:downcase).include?(group.downcase)
    end

    username = Net::LDAP::Filter.escape(
        user.first.force_encoding(Encoding::UTF_8))
    result=@ldap.search(
                :base   => group,
                :attributes => [@options[:group_field]],
                :filter => "(#{@options[:group_field]}:=#{username})")

    if result && result.first
        true
    else
        false
    end
end

#load_mappingObject



122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/opennebula/ldap_auth.rb', line 122

def load_mapping
    file=@options[:mapping_file_path]

    @mapping = {}

    if File.exist?(file)
        @mapping = YAML.load(File.read(file))
    end

    if @mapping.class != Hash
        @mapping = {}
    end
end