ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/login.ext
(Generate patch)

Comparing deliantra/server/ext/login.ext (file contents):
Revision 1.18 by root, Mon Jan 8 14:29:05 2007 UTC vs.
Revision 1.19 by root, Mon Jan 8 19:25:53 2007 UTC

21 21
22 $current 22 $current
23} 23}
24 24
25sub can_cleanup { 25sub can_cleanup {
26 my ($playerfile, $mtime) = @_; 26 my ($pl, $mtime) = @_;
27 27
28 my $age = time - $mtime; 28 my $age = time - $mtime;
29 my $level = $playerfile =~ /^level (\d+)$/m ? $1 : return; 29 my $level = $pl->ob->level;
30 30
31 ($level <= 3 && $age > 7 * 86400) # 7 days for level 0..3 31 ($level <= 3 && $age > 7 * 86400) # 7 days for level 0..3
32 || ($level <= 9 && $age > 90 * 86400) # 3 months for level 4..9 32 || ($level <= 9 && $age > 90 * 86400) # 3 months for level 4..9
33 || ($level <= 20 && $age > 180 * 86400) # 6 months for level 10..20 33 || ($level <= 20 && $age > 180 * 86400) # 6 months for level 10..20
34 || $age > 700 * 86400 # 2 years for everybody else 34 || $age > 700 * 86400 # 2 years for everybody else
145 local $cf::LOGIN_LOCK{$user} = 1; 145 local $cf::LOGIN_LOCK{$user} = 1;
146 146
147 check_playing $ns, $user and next; 147 check_playing $ns, $user and next;
148 148
149 # try to read the user file and check the password 149 # try to read the user file and check the password
150 if (my $fh = aio_open cf::player::path $user, O_RDONLY, 0) { 150 if (my $pl = cf::player::find $user) {
151 aio_stat $pl->path and next;
151 my $mtime = (stat $fh)[9]; 152 my $mtime = (stat _)[9];
152
153 0 < aio_read $fh, 0, 16384, my $buf, 0 or next;
154 $buf =~ /^password (\S+)$/m or next;
155 my $hash = $1; 153 my $hash = $pl->password;
156 154
157 if ($hash eq crypt $pass, $hash) { 155 if ($cf::CFG{ext_login_nocheck} or $hash eq crypt $pass, $hash) {
158 nuke_str $pass; 156 nuke_str $pass;
159 # password matches, wonderful 157 # password matches, wonderful
160 my $pl = cf::player::find $user or next; 158 my $pl = cf::player::find $user or next;
161 $pl->connect ($ns); 159 $pl->connect ($ns);
162 check_clean_save $pl; 160 check_clean_save $pl;
163 $pl->{clean_save} = 1; 161 $pl->{clean_save} = 1;
164 last; 162 last;
165 } elsif (can_cleanup $buf, $mtime) { 163 } elsif (can_cleanup $pl, $mtime) {
166 Coro::Timer::sleep 1; 164 Coro::Timer::sleep 1;
167 165
168 $ns->send_drawinfo ( 166 $ns->send_drawinfo (
169 "Player exists, but password does not match. If this is your account, " 167 "Player exists, but password does not match. If this is your account, "
170 . "please try again. If not, you can now decide to take over this account " 168 . "please try again. If not, you can now decide to take over this account "
178 176
179 # check if the file hasn't changed 177 # check if the file hasn't changed
180 aio_stat cf::player::path $user and next; 178 aio_stat cf::player::path $user and next;
181 $mtime == (stat _)[9] or next; 179 $mtime == (stat _)[9] or next;
182 180
183 nuke_playerdir $user; 181 $pl->quit_character;
184 182
185 # fall through to creation 183 # fall through to creation
186 } else { 184 } else {
187 nuke_str $pass; 185 nuke_str $pass;
188 186
376 my $pl_ref = $pl->refcnt_cnt; 374 my $pl_ref = $pl->refcnt_cnt;
377 my $ob_ref = $ob->refcnt_cnt; 375 my $ob_ref = $ob->refcnt_cnt;
378 376
379 if ($pl_ref == 2 && $ob_ref == 1) { 377 if ($pl_ref == 2 && $ob_ref == 1) {
380 warn "player-scheduler destroy ", $ob->name;#d# 378 warn "player-scheduler destroy ", $ob->name;#d#
381 #delete $cf::PLAYER{$ob->name}; 379 delete $cf::PLAYER{$ob->name};
382 ## pl_ref == one from object + one from cf::PLAYER 380 # pl_ref == one from object + one from cf::PLAYER
383 ## ob_ref == one from simply being an object 381 # ob_ref == one from simply being an object
384 #$ob->destroy; 382 $ob->destroy;
385 #$pl->destroy; 383 $pl->destroy;
386 } else { 384 } else {
387 warn "player-scheduler refcnt ", $ob->name, " $pl_ref,$a_ $ob_ref,$b_\n";#d# 385 warn "player-scheduler refcnt ", $ob->name, " $pl_ref,$a_ $ob_ref,$b_\n";#d#
388 } 386 }
389 } 387 }
390 }; 388 };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines