summaryrefslogtreecommitdiffstats
path: root/lib/puppet/provider/user/user_role_add.rb
blob: 7c7c9e315e92d7da3abf9ee256333c4754127c98 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
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
168
169
170
171
172
173
174
175
176
177
178
require 'puppet/util/user_attr'

Puppet::Type.type(:user).provide :user_role_add, :parent => :useradd, :source => :useradd do

    desc "User management inherits ``useradd`` and adds logic to manage roles on Solaris using roleadd."

    defaultfor :operatingsystem => :solaris

    commands :add => "useradd", :delete => "userdel", :modify => "usermod", :role_add => "roleadd", :role_delete => "roledel", :role_modify => "rolemod"
    options :home, :flag => "-d", :method => :dir
    options :comment, :method => :gecos
    options :groups, :flag => "-G"
    options :roles, :flag => "-R"
    options :auths, :flag => "-A"
    options :profiles, :flag => "-P"

    verify :gid, "GID must be an integer" do |value|
        value.is_a? Integer
    end

    verify :groups, "Groups must be comma-separated" do |value|
        value !~ /\s/
    end

    has_features :manages_homedir, :allows_duplicates, :manages_solaris_rbac, :manages_passwords

    #must override this to hand the keyvalue pairs
    def add_properties
        cmd = []
        Puppet::Type.type(:user).validproperties.each do |property|
            #skip the password because we can't create it with the solaris useradd
            next if [:ensure, :password].include?(property)
            # 1680 Now you can set the hashed passwords on solaris:lib/puppet/provider/user/user_role_add.rb
            # the value needs to be quoted, mostly because -c might
            # have spaces in it
            if value = @resource.should(property) and value != ""
                if property == :keys
                    cmd += build_keys_cmd(value)
                else
                    cmd << flag(property) << value
                end
            end
        end
        cmd
    end

    def user_attributes
        @user_attributes ||= UserAttr.get_attributes_by_name(@resource[:name])
    end

    def flush
        @user_attributes = nil
    end

    def command(cmd)
        cmd = ("role_#{cmd}").intern if is_role? or (!exists? and @resource[:ensure] == :role)
        super(cmd)
    end

    def is_role?
        user_attributes and user_attributes[:type] == "role"
    end

    def run(cmd, msg)
            execute(cmd)
    rescue Puppet::ExecutionFailure => detail
            raise Puppet::Error, "Could not #{msg} #{@resource.class.name} #{@resource.name}: #{detail}"
    end

    def transition(type)
        cmd = [command(:modify)]
        cmd << "-K" << "type=#{type}"
        cmd += add_properties
        cmd << @resource[:name]
    end

    def create
        if is_role?
            run(transition("normal"), "transition role to")
        else
            run(addcmd, "create")
        end
        # added to handle case when password is specified
        self.password = @resource[:password] if @resource[:password]
    end

    def destroy
        run(deletecmd, "delete "+ (is_role? ? "role" : "user"))
    end

    def create_role
        if exists? and !is_role?
            run(transition("role"), "transition user to")
        else
            run(addcmd, "create role")
        end
    end

    def roles
        user_attributes[:roles] if user_attributes
    end

    def auths
        user_attributes[:auths] if user_attributes
    end

    def profiles
        user_attributes[:profiles] if user_attributes
    end

    def project
        user_attributes[:project] if user_attributes
    end

    def managed_attributes
        [:name, :type, :roles, :auths, :profiles, :project]
    end

    def remove_managed_attributes
        managed = managed_attributes
        user_attributes.select { |k,v| !managed.include?(k) }.inject({}) { |hash, array| hash[array[0]] = array[1]; hash }
    end

    def keys
        if user_attributes
            #we have to get rid of all the keys we are managing another way
            remove_managed_attributes
        end
    end

    def build_keys_cmd(keys_hash)
        cmd = []
        keys_hash.each do |k,v|
            cmd << "-K" << "#{k}=#{v}"
        end
        cmd
    end

    def keys=(keys_hash)
        run([command(:modify)] + build_keys_cmd(keys_hash) << @resource[:name], "modify attribute key pairs")
    end

    #Read in /etc/shadow, find the line for this user (skipping comments, because who knows) and return the hashed pw (the second entry)
    #No abstraction, all esoteric knowledge of file formats, yay
    def password
        #got perl?
        if ary = File.readlines("/etc/shadow").reject { |r| r =~ /^[^\w]/}.collect { |l| l.split(':')[0..1] }.find { |user, passwd| user == @resource[:name] }
            pass = ary[1]
        end
        pass
    end

    #Read in /etc/shadow, find the line for our used and rewrite it with the new pw
    #Smooth like 80 grit
    def password=(cryptopw)
        begin
            File.open("/etc/shadow", "r") do |shadow|
                File.open("/etc/shadow_tmp", "w", 0600) do |shadow_tmp|
                    while line = shadow.gets
                        line_arr = line.split(':')
                        if line_arr[0] == @resource[:name]
                            line_arr[1] = cryptopw
                            line = line_arr.join(':')
                        end
                        shadow_tmp.print line
                    end
                end
            end
            File.rename("/etc/shadow_tmp", "/etc/shadow")
        rescue => detail
            fail "Could not write temporary shadow file: #{detail}"
        ensure
            # Make sure this *always* gets deleted
            File.unlink("/etc/shadow_tmp") if File.exist?("/etc/shadow_tmp")
        end
    end
end