summaryrefslogtreecommitdiff
path: root/src/nshd/hackers_git/db_shadow.go
blob: df628cfae29a48f7dc5b8064c983ff7827879127 (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
package hackers_git

import (
	p "nslcd_proto"
	"nslcd_proto/util"
)

func (o *Hackers) Shadow_ByName(cred p.Ucred, req p.Request_Shadow_ByName) p.Shadow_Enumerator {
	o.lock.RLock()
	defer o.lock.RUnlock()

	if cred.Uid != 0 {
		return util.Shadow_Ø{}
	}
	uid := o.name2uid(string(req))
	passwd := o.users[uid].passwd
	shadow := p.Shadow{
		Name:           passwd.Name,
		PwHash:         passwd.PwHash,
		LastChangeDate: -1,
		MinDays:        -1,
		MaxDays:        -1,
		WarnDays:       -1,
		InactDays:      -1,
		ExpireDate:     -1,
		Flag:           -1,
	}

	return util.New_Shadow_List([]p.Shadow{shadow})
}

type allShadowEnumerator struct {
	uids    []int32
	backend *Hackers
	done    bool
}

func (e *allShadowEnumerator) GetNext() (*p.Shadow, error) {
	if len(e.uids) > 0 {
		passwd := e.backend.users[e.uids[0]].passwd
		shadow := p.Shadow{
			Name:           passwd.Name,
			PwHash:         passwd.PwHash,
			LastChangeDate: -1,
			MinDays:        -1,
			MaxDays:        -1,
			WarnDays:       -1,
			InactDays:      -1,
			ExpireDate:     -1,
			Flag:           -1,
		}
		e.uids = e.uids[1:]
		return &shadow, nil
	}
	if len(e.uids) == 0 && !e.done {
		e.done = true
		e.backend.lock.RUnlock()
	}
	return nil, nil
}

func (e *allShadowEnumerator) GenericGetNext() (interface{}, error) {
	return e.GetNext()
}

func (o *Hackers) newAllShadowEnumerator() *allShadowEnumerator {
	o.lock.RLock()
	e := allShadowEnumerator{
		uids:    make([]int32, len(o.users)),
		backend: o,
		done:    false,
	}
	for uid, _ := range o.users {
		e.uids = append(e.uids, uid)
	}
	return &e
}

func (o *Hackers) Shadow_All(cred p.Ucred, req p.Request_Shadow_All) p.Shadow_Enumerator {
	if cred.Uid != 0 {
		return util.Shadow_Ø{}
	}
	return o.newAllShadowEnumerator()
}