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.2 by root, Sat Dec 23 03:38:43 2006 UTC vs.
Revision 1.11 by root, Sun Jan 7 02:39:14 2007 UTC

5use Fcntl; 5use Fcntl;
6use Coro::AIO; 6use Coro::AIO;
7 7
8my $PLAYERDIR = sprintf "%s/%s", cf::localdir, cf::playerdir; 8my $PLAYERDIR = sprintf "%s/%s", cf::localdir, cf::playerdir;
9 9
10# testbed for coroutines in crossfire : 10# paranoia function to overwrite a string-in-place
11sub nuke_str {
12 substr $_[0], 0, (length $_[0]), "x" x length $_[0]
13}
11 14
12sub query { 15sub query {
13 my ($ns, $flags, $text) = @_; 16 my ($ns, $flags, $text) = @_;
14 17
15 my $current = $Coro::current; 18 my $current = $Coro::current;
32} 35}
33 36
34sub check_playing { 37sub check_playing {
35 my ($ns, $user) = @_; 38 my ($ns, $user) = @_;
36 39
37 return unless cf::player::find $user; 40 return unless cf::player::find_active $user;
38 41
39 $ns->send_drawinfo ( 42 $ns->send_drawinfo (
40 "That player is already logged in on this server. " 43 "That player is already logged in on this server. "
41 . "If you want to create a new player, choose another name. " 44 . "If you want to create a new player, choose another name. "
42 . "If you are already a registered player, make sure nobody " 45 . "If you are already a registered player, make sure nobody "
49 ); 52 );
50 53
51 1 54 1
52} 55}
53 56
57sub check_clean_save {
58 my ($pl) = @_;
59
60 unless (delete $pl->{clean_save}) {
61 #d#TODO
62 }
63}
64
54# delete a player directory, be non-blocking AND synchronous... 65# delete a player directory, be non-blocking AND synchronous...
55# (thats hard, so we crap out and fork). 66# (thats hard, so we crap out and fork).
56sub nuke_playerdir { 67sub nuke_playerdir {
57 my ($user) = @_; 68 my ($user) = @_;
58 69
60 system "cd \Q$PLAYERDIR\E " 71 system "cd \Q$PLAYERDIR\E "
61 . "&& mv \Q$user\E ~\Q$Coro::current\E~deleting~ 2>/dev/null " 72 . "&& mv \Q$user\E ~\Q$Coro::current\E~deleting~ 2>/dev/null "
62 . "&& (rm -rf ~\Q$Coro::current\E~deleting~ &)"; 73 . "&& (rm -rf ~\Q$Coro::current\E~deleting~ &)";
63} 74}
64 75
65sub on_addme { 76sub addme {
66 my ($ns) = @_; 77 my ($ns) = @_;
67 78
68 $ns->destroy if $ns->pl; 79 $ns->destroy if $ns->pl;
69 80
70 $ns->coro (sub { 81 $ns->async (sub {
71 my ($user, $pass); 82 my ($user, $pass);
72 83
73 $ns->send_packet ("addme_success"); 84 $ns->send_packet ("addme_success");
74 85
75 for (;;) { 86 for (;;) {
81 ); 92 );
82 93
83 # read username 94 # read username
84 while () { 95 while () {
85 $user = query $ns, 0, "What is your name?\n:"; 96 $user = query $ns, 0, "What is your name?\n:";
86 last if $user =~ /^[a-zA-Z0-9][a-zA-Z0-9\-_]{2,17}$/; 97
98 if ($cf::LOGIN_LOCK{$user}) {
87 $ns->send_drawinfo ( 99 $ns->send_drawinfo (
100 "That username is currently used in another login session. "
101 . "Chose another, or wait till the other session has ended.",
102 cf::NDI_RED
103 );
104 } elsif ($user =~ /^[a-zA-Z0-9][a-zA-Z0-9\-_]{2,17}$/) {
105 last;
106 } else {
107 $ns->send_drawinfo (
88 "Your username contains illegal characters " 108 "Your username contains illegal characters "
89 . "(only a-z, A-Z and 0-9 are allowed), " 109 . "(only a-z, A-Z and 0-9 are allowed), "
90 . "or is not between 3 and 18 characters in length.", 110 . "or is not between 3 and 18 characters in length.",
91 cf::NDI_RED 111 cf::NDI_RED
92 ); 112 );
113 }
93 } 114 }
94 115
95 check_playing $ns, $user and next; 116 check_playing $ns, $user and next;
96 117
97 $ns->send_drawinfo ( 118 $ns->send_drawinfo (
110 . "that cannot be too much to ask for :)", 131 . "that cannot be too much to ask for :)",
111 cf::NDI_RED 132 cf::NDI_RED
112 ); 133 );
113 } 134 }
114 135
136 # lock this username for the remainder of this login session
137 if ($cf::LOGIN_LOCK{$user}) {
138 $ns->send_drawinfo (
139 "That username is currently used in another login session. "
140 . "Chose another, or wait till the other session has ended.",
141 cf::NDI_RED
142 );
143 next;
144 }
145 local $cf::LOGIN_LOCK{$user} = 1;
146
115 check_playing $ns, $user and next; 147 check_playing $ns, $user and next;
116 148
117 my $dir = "$PLAYERDIR/$user";
118 my $plfile = "$dir/$user.pl";
119
120 # try to read the user file and check the password 149 # try to read the user file and check the password
121 if (my $fh = aio_open $plfile, O_RDONLY, 0) { 150 if (my $fh = aio_open cf::player::path $user, O_RDONLY, 0) {
122 my $mtime = (stat $fh)[9]; 151 my $mtime = (stat $fh)[9];
123 152
124 0 < aio_read $fh, 0, 16384, my $buf, 0 or next; 153 0 < aio_read $fh, 0, 16384, my $buf, 0 or next;
125 $buf =~ /^password (\S+)$/m or next; 154 $buf =~ /^password (\S+)$/m or next;
126 my $hash = $1; 155 my $hash = $1;
127 156
128 check_playing $ns, $user and next;
129
130 if ($hash eq crypt $pass, $hash) { 157 if ($hash eq crypt $pass, $hash) {
158 nuke_str $pass;
131 # password matches, wonderful 159 # password matches, wonderful
132 my $pl = cf::player::load $plfile or next; 160 my $pl = cf::player::find $user or next;
133 $pl->enable_save (1);
134 $pl->connect ($ns); 161 $pl->connect ($ns);
162 check_clean_save $pl;
135 last; 163 last;
136 }
137
138 if (can_cleanup $buf, $mtime) { 164 } elsif (can_cleanup $buf, $mtime) {
139 Coro::Timer::sleep 1; 165 Coro::Timer::sleep 1;
140 166
141 $ns->send_drawinfo ( 167 $ns->send_drawinfo (
142 "Player exists, but password does not match. If this is you account, " 168 "Player exists, but password does not match. If this is your account, "
143 . "please try again. If not, you can now opt to take over this account " 169 . "please try again. If not, you can now decide to take over this account "
144 . "because it has not been in-use for some time.", 170 . "because it has not been in-use for some time.",
145 cf::NDI_RED 171 cf::NDI_RED
146 ); 172 );
147 173
174 #TODO: nuke_str
148 (query $ns, cf::CS_QUERY_SINGLECHAR, "Delete existing account and create a new one (Y/N)?") =~ /^[yY]/ 175 (query $ns, cf::CS_QUERY_SINGLECHAR, "Delete existing account and create a new one (Y/N)?") =~ /^[yY]/
149 or next; 176 or next;
150 177
151 # check if the file hasn't changed 178 # check if the file hasn't changed
152 aio_stat $plfile or next; 179 aio_stat cf::player::path $user and next;
153 $mtime == (stat _)[9] or next; 180 $mtime == (stat _)[9] or next;
154 181
155 # nuke playerdir, this might block, but it needs to be atomic
156 nuke_playerdir $user; 182 nuke_playerdir $user;
157 183
158 # fall through to creation 184 # fall through to creation
159 } else { 185 } else {
186 nuke_str $pass;
187
160 Coro::Timer::sleep 1; 188 Coro::Timer::sleep 1;
161 189
162 $ns->send_drawinfo ( 190 $ns->send_drawinfo (
163 "Wrong username or password. Please try again " 191 "Wrong username or password. Please try again "
164 . "(check for Numlock and other semi-obvious error sources).", 192 . "(check for Numlock and other semi-obvious error sources).",
167 next; 195 next;
168 } 196 }
169 } 197 }
170 198
171 # the rest of this function is character creation 199 # the rest of this function is character creation
172 check_playing $ns, $user and next;
173 200
201 # just to make sure nothing is left over
174 nuke_playerdir $user; 202 nuke_playerdir $user;
175 203
204 my $pass2 = query $ns, cf::CS_QUERY_HIDEINPUT, "Please type your password again.";
205
206 if ($pass2 ne $pass) {
207 nuke_str $pass;
208 nuke_str $pass2;
209 $ns->send_drawinfo (
210 "The passwords do not match, please try again.",
211 cf::NDI_RED
212 );
213 next;
214 }
215
216 nuke_str $pass2;
217
176 my $pl = cf::player::create; 218 my $pl = cf::player::new $user;
177 $pl->ob->name ($user);
178 $pl->password (crypt $pass, join '', ('.', '/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]); 219 $pl->password (crypt $pass, join '', ('.', '/', 0..9, 'A'..'Z', 'a'..'z')[rand 64, rand 64]);
220 nuke_str $pass;
179 $pl->connect ($ns); 221 $pl->connect ($ns);
222
180 my $ob = $pl->ob; 223 my $ob = $pl->ob;
181 224
182 while () { 225 while () {
183 $ob->update_stats; 226 $ob->update_stats;
184 $pl->save_stats; 227 $pl->save_stats;
205 $ns->send_drawinfo ($ob->msg, cf::NDI_BLUE); 248 $ns->send_drawinfo ($ob->msg, cf::NDI_BLUE);
206 $ns->send_packet (sprintf "query %d %s", cf::CS_QUERY_SINGLECHAR, 249 $ns->send_packet (sprintf "query %d %s", cf::CS_QUERY_SINGLECHAR,
207 "Now choose a character.\nPress any key to change outlook.\nPress `d' when you're pleased.\n"); 250 "Now choose a character.\nPress any key to change outlook.\nPress `d' when you're pleased.\n");
208 251
209 $ns->state (cf::ST_CHANGE_CLASS); 252 $ns->state (cf::ST_CHANGE_CLASS);
210 $pl->enable_save (1);#d# too early 253 delete $pl->{deny_save};#d# too early
211 254
212 last; 255 last;
213 } 256 }
214 }); 257 });
215} 258}
259
260# "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit."
261# "Quitting will delete your character.\nAre you sure you want to quit (y/n):"
262# quit, quit_character, save
216 263
217cf::object->attach ( 264cf::object->attach (
218 type => cf::SAVEBED, 265 type => cf::SAVEBED,
219 on_apply => sub { 266 on_apply => sub {
220 my ($bed, $ob) = @_; 267 my ($bed, $ob) = @_;
221 268
222 return cf::override 0 unless $ob->type == cf::PLAYER; 269 return cf::override 0 unless $ob->type == cf::PLAYER;
223 270
271 my $pl = $ob->pl;
272
224 # update respawn position 273 # update respawn position
225 $ob->contr->savebed ($bed->map->path, $bed->x, $bed->y); 274 $pl->savebed ($bed->map->path, $bed->x, $bed->y);
226 275
227 #TODO? 276 $pl->killer ("left");
228 #strcpy (pl->contr->killer, "left"); 277 $ob->check_score;
229 #check_score (pl); /* Always check score */
230 278
231 $ob->reply (undef, "In the future, you will wake up here when you die."); 279 $ob->reply (undef, "In the future, you will wake up here when you die.");
232 $ob->contr->save ();
233 280
234 $ob->contr->ns->query (cf::CS_QUERY_SINGLECHAR, "Do you want to continue playing (y/n)?", sub { 281 $pl->ns->query (cf::CS_QUERY_SINGLECHAR, "Do you want to continue playing (y/n)?", sub {
235 if ($_[0] !~ /^[yY]/) { 282 if ($_[0] !~ /^[yY]/) {
236 $ob->contr->save (1); 283 $pl->invoke (cf::EVENT_PLAYER_LOGOUT, 1);
284 $pl->deactivate;
237 $ob->contr->ns->destroy (); 285 $pl->ns->destroy;
286 } else {
287 cf::async {
288 $pl->{clean_save} = 1;
289 $pl->save;
290 };
238 } 291 }
239 }); 292 });
240 }, 293 },
241); 294);
242 295
243cf::client->attach (package => __PACKAGE__); 296cf::player->attach (
297 on_login => sub {
298 my ($pl) = @_;
299 my $name = $pl->ob->name;
244 300
301 $_->ob->message ("$name has entered the game.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list;
302 },
303 on_logout => sub {
304 my ($pl, $cleanly) = @_;
305 my $name = $pl->ob->name;
306
307 if ($cleanly) {
308 $_->ob->message ("$name left the game.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list;
309 } else {
310 $_->ob->message ("$name uncerimoniously disconnected.", cf::NDI_DK_ORANGE | cf::NDI_UNIQUE) for cf::player::list;
311 }
312 },
313);
314
315cf::client->attach (
316 on_addme => \&addme,
317);
318
319#############################################################################
320
321our $SCHEDULE_INTERVAL = 10; # time the player scheduler sleeps between runs
322our $SWAP_TIMEOUT = 30; # time after which an unused player is evicted form memory
323our $SAVE_TIMEOUT = 20; # save players every n seconds
324our $SAVE_INTERVAL = 0.1; # save at max. one player every $SAVE_INTERVAL
325
326our $SCHEDULER = cf::async_ext {
327 while () {
328 Coro::Timer::sleep $SCHEDULE_INTERVAL;
329
330 # this weird form of iteration over values is used because
331 # the hash changes underneath us frequently, and for
332 # keeps a direct reference to the value without (in 5.8 perls)
333 # keeping a reference, so this is prone to crashes or worse.
334 my @players = keys %cf::PLAYER;
335 for (@players) {
336 my $pl = $cf::PLAYER{$_}
337 or next;
338 $pl->valid or next;
339
340 eval {
341 if ($pl->{last_save} + $SAVE_TIMEOUT <= $cf::RUNTIME) {
342 $pl->save;
343 Coro::Timer::sleep $SAVE_INTERVAL;
344 }
345 };
346 warn $@ if $@;
347 Coro::cede;
348 };
349 }
350};
351
352$SCHEDULER->prio (1);
353

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines