forked from HenryHu/pybbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Utmp.py
236 lines (205 loc) · 8.21 KB
/
Utmp.py
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
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
import Config
import os
import struct
import random
import time
import signal
import User
import UCache
from sysv_ipc import *
from UtmpHead import UtmpHead
from commondata import CommonData
from UserInfo import UserInfo
from Log import Log
from Util import Util
import Login
# from SemLock import SemLock
UTMPFILE_SIZE = UserInfo.size * Config.USHM_SIZE
UTMPHEAD_SIZE = 4 * Config.USHM_SIZE + 4 * (Config.UTMP_HASHSIZE + 1) + 4 * 3 + 8 * Config.USHM_SIZE
class Utmp:
utmpshm = None
@staticmethod
def Init():
if (Utmp.utmpshm == None):
try:
Log.info("attaching to UTMP shared memory")
Utmp.utmpshm = SharedMemory(Config.Config.GetInt("UTMP_SHMKEY", 3699), size = UTMPFILE_SIZE)
Log.info("attaching to UTMPHEAD shared memory")
UtmpHead.utmphead = SharedMemory(Config.Config.GetInt("UTMPHEAD_SHMKEY", 3698), size = UTMPHEAD_SIZE);
except ExistentialError:
Log.info("Creating UTMP shared memory")
Utmp.utmpshm = SharedMemory(Config.Config.GetInt("UTMP_SHMKEY", 3699), size = UTMPFILE_SIZE, flags = IPC_CREAT, mode = 0660, init_character='\0')
Log.info("Creating UTMPHEAD shared memory")
UtmpHead.utmphead = SharedMemory(Config.Config.GetInt("UTMPHEAD_SHMKEY", 3698), size = UTMPHEAD_SIZE, flags = IPC_CREAT, mode = 0660, init_character='\0')
Log.info("Initializing UTMPHEAD shared memory")
fd = Utmp.Lock()
UtmpHead.SetNumber(0)
UtmpHead.SetHashHead(0, 1)
for i in range(Config.USHM_SIZE - 1):
UtmpHead.SetNext(i, i+2)
UtmpHead.SetNext(Config.USHM_SIZE - 1, 0)
Utmp.Unlock(fd)
Log.info("Utmp initialization finished")
else:
Log.info("Utmp already initialized")
@staticmethod
def Hash(userid):
hash = UCache.UCache.Hash(userid)
if (hash == 0):
return 0
hash = (hash / 3) % Config.UTMP_HASHSIZE
if (hash == 0):
return 1
return hash
@staticmethod
def Lock():
#try:
#SemLock.Lock(Config.UCACHE_SEMLOCK, timeout = 10);
#return 0;
#except BusyError:
#return -1;
# Log.debug("Utmp.Lock enter()")
lockf = os.open(Config.BBS_ROOT + "UTMP", os.O_RDWR | os.O_CREAT, 0600)
if (lockf < 0):
Log.error("Fail to open lock file!")
raise Exception("fail to lock!")
Util.FLock(lockf, shared = False)
# Log.debug("Utmp.Lock succ()")
return lockf
@staticmethod
def Unlock(lockf):
#SemLock.Unlock(Config.UCACHE_SEMLOCK)
# Log.debug("Utmp.Unlock")
Util.FUnlock(lockf)
os.close(lockf)
@staticmethod
def GetNewUtmpEntry(userinfo):
utmpfd = Utmp.Lock()
pos = -2
try:
UtmpHead.SetReadOnly(0)
userinfo.utmpkey = random.randint(0, 99999999);
pos = UtmpHead.GetHashHead(0) - 1;
Log.debug("New entry: %d" % (pos + 1))
if (pos == -1):
UtmpHead.SetReadOnly(1)
Log.error("Utmp full!")
raise Exception("Utmp full!")
login = Login.Login(pos + 1)
if (not login.list_add(userinfo.userid)):
UtmpHead.SetReadOnly(1)
Log.error("Utmp list loop!")
raise Exception("Utmp list loop!")
login.hash_add(userinfo.userid)
#if (UtmpHead.GetListHead() == 0):
#UtmpHead.SetListPrev(pos, pos+1)
#UtmpHead.SetListNext(pos, pos+1)
#UtmpHead.SetListHead(pos+1)
#else:
#i = UtmpHead.GetListHead()
#if (Utmp.GetUserId(i-1).lower() >= userinfo.userid.lower()):
#UtmpHead.SetListPrev(pos, UtmpHead.GetListPrev(i-1))
#UtmpHead.SetListNext(pos, i)
#UtmpHead.SetListPrev(i-1, pos+1)
#UtmpHead.SetListNext(UtmpHead.GetListPrev(pos) - 1, pos+1)
#UtmpHead.SetListHead(pos+1)
#else:
#count = 0;
#i = UtmpHead.GetListNext(i-1)
#while ((Utmp.GetUserId(i-1).lower() < userinfo.userid.lower()) and (i != UtmpHead.GetListHead())):
#i = UtmpHead.GetListNext(i-1)
#count = count + 1;
#if (count > Config.USHM_SIZE):
#UtmpHead.SetListHead(0)
#Utmp.RebuildList()
#UtmpHead.SetReadOnly(1)
#Utmp.Unlock(utmpfd)
#Log.error("Utmp list loop!")
#return -1 # wrong! exit(-1)!
#UtmpHead.SetListPrev(pos, UtmpHead.GetListPrev(i-1))
#UtmpHead.SetListNext(pos, i)
#UtmpHead.SetListPrev(i-1, pos+1)
#UtmpHead.SetListNext(UtmpHead.GetListPrev(pos) - 1, pos+1)
# UtmpHead.SetHashHead(0, UtmpHead.GetNext(pos))
# Log.debug("New freelist head: %d" % UtmpHead.GetHashHead(0))
if (Utmp.IsActive(pos)):
if (Utmp.GetPid(pos) != 0):
Log.warn("allocating an active utmp!")
try:
os.kill(Utmp.GetPid(pos), signal.SIGHUP)
except OSError:
pass
userinfo.SetIndex(pos + 1)
userinfo.save()
# Utmp.SetUserInfo(pos, userinfo)
# hashkey = Utmp.Hash(userinfo.userid)
# i = UtmpHead.GetHashHead(hashkey);
# UtmpHead.SetNext(pos, i)
# UtmpHead.SetHashHead(hashkey, pos+1)
UtmpHead.IncNumber()
CommonData.UpdateMaxUser();
now = int(time.time())
if ((now > UtmpHead.GetUptime() + 120) or (now < UtmpHead.GetUptime() - 120)):
UtmpHead.SetUptime(now)
for n in range(Config.USHM_SIZE):
if (Utmp.IsActive(n) and Utmp.GetPid(n) != 0):
try:
os.kill(Utmp.GetPid(n), 0)
except OSError:
username = Utmp.GetUserId(n)
Utmp.Clear2(n+1)
User.User.RemoveMsgCount(username)
UtmpHead.SetReadOnly(1)
finally: # lock is important!
Utmp.Unlock(utmpfd)
# Log.info("New entry: %d" % pos)
return pos + 1;
@staticmethod
def IsActive(login):
return Utmp.GetInt(login, UserInfo.ACTIVE_POS)
@staticmethod
def GetUserId(login):
return Utmp.GetString(login, UserInfo.USERID_POS, UserInfo.USERID_SIZE)
@staticmethod
def GetUid(login):
return Utmp.GetInt(login, UserInfo.UID_POS)
@staticmethod
def GetPid(login):
return Utmp.GetInt(login, UserInfo.PID_POS)
@staticmethod
def GetInt(login, offset):
return struct.unpack('=i', Utmp.utmpshm.read(4, login * UserInfo.size + offset))[0]
@staticmethod
def GetString(login, offset, size):
return Util.CString(Utmp.utmpshm.read(size, login * UserInfo.size + offset))
@staticmethod
def SetUserInfo(pos, userinfo):
Utmp.utmpshm.write(userinfo.pack(), pos * UserInfo.size)
@staticmethod
def Clear(uent, useridx, pid):
lock = Utmp.Lock()
try:
UtmpHead.SetReadOnly(0)
if (((useridx == 0) or (Utmp.GetUid(uent - 1) == useridx)) and (pid == Utmp.GetPid(uent - 1))):
Utmp.Clear2(uent);
UtmpHead.SetReadOnly(1)
finally: # lock is important!
Utmp.Unlock(lock)
@staticmethod
def Clear2(uent):
userinfo = UserInfo(uent)
Log.debug("clearing user %s uid %d loginid %d" % (userinfo.userid, userinfo.uid, uent))
user = UCache.UCache.GetUserByUid(userinfo.uid)
UCache.UCache.DoAfterLogout(user, userinfo, uent, 0)
login = Login.Login(uent)
login.hash_remove()
login.list_remove()
if (userinfo.active):
UtmpHead.DecNumber()
Log.debug("zeroing utmp %d" % uent)
zeroinfo = UserInfo()
zeroinfo.SetIndex(uent)
zeroinfo.save()
@staticmethod
def RebuildList():
pass