lock.php
12.7 KB
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<?
//-------------------------------------------
//
// ocs_user_add - last update 2006-10-23
//
// based on:
//
// Adressupdate - last update wgi 2006-05-23
//
//-------------------------------------------
header("Content-Type: text/html; charset=UTF-8");
$basepath="/data/www/localhost/htdocs/inc";
include "$basepath/mkhead.php";
function load_users ()
{
$localFile = "/var/www/localhost/htdocs/osc_user_add/xfer/web-useradd";
exec ("scp webuseradd@vam-osc5:/etc/web-useradd ".$localFile." 2>&1",
$out, $ret);
if ($ret != 0)
{
print "scp returns: ".$ret."<BR>\n";
print "Output was:<BR><PRE>\n";
print_r ($out);
print "</PRE>\n";
}
else
{
$fh = fopen ($localFile, "r");
$line = fgets ($fh);
while (! feof ($fh))
{
$buf = explode (":", trim ($line));
if ($buf[1] == "")
$buf[1] = "no-change";
if ($buf[4] != "delete")
$users[$buf[0]] = array ($buf[1], $buf[2], $buf[3], $buf[4]);
$line = fgets ($fh);
}
fclose ($fh);
}
exec ("scp webuseradd@vam-osc6:/etc/web-useradd ".$localFile." 2>&1",
$out, $ret);
if ($ret != 0)
{
print "scp returns: ".$ret."<BR>\n";
print "Output was:<BR><PRE>\n";
print_r ($out);
print "</PRE>\n";
}
else
{
$fh = fopen ($localFile, "r");
$line = fgets ($fh);
while (! feof ($fh))
{
$buf = explode (":", trim ($line));
if ($buf[1] == "")
if ($users[$buf[0]] && $users[$buf[0]][0] != "")
$buf[1] = $users[$buf[0]][0];
else
$buf[1] = "no-change";
if ($buf[4] != "delete")
$users[$buf[0]] = array ($buf[1], $buf[2], $buf[3], $buf[4]);
$line = fgets ($fh);
}
fclose ($fh);
}
exec ("rm ".$localFile." 2>&1", $out, $ret);
return $users;
}
function load_cats ()
{
/*
* OK, ich hole dir verfügbaren Rubriken anhand der existierenden
* Verzeichniss unter /vol1/www/bhi_upload. Will man also eine
* Rubrik hinzufügen, so muß man dort nur das Verzeichnis anlegen.
*/
exec ("ssh -l webuseradd vam-osc5 ".
"\"ls -p /vol1/www/bhi_upload | sed '/\/$/p;d'\" ".
"2>/dev/null",
$out, $ret);
foreach ($out as $key=>$line)
$out[$key] = preg_replace ("/^(.*)\/$/", "\\1", $line);
return $out;
/* return array ("kfz", "immo", "trauer"); */
}
function update_users ($users)
{
$fh = fopen ("/tmp/web-useradd", "w");
foreach ($users as $key => $value)
{
fputs ($fh, $key.":".$value[0].":".$value[1].":".
$value[2].":".$value[3]."\n");
}
fclose ($fh);
exec ("scp /tmp/web-useradd webuseradd@vam-osc5:/etc/web-useradd 2>&1",
$out, $ret);
if ($ret != 0)
{
print "scp to vam-osc5 returns: ".$ret."<BR>\n";
print "Output was:<BR><PRE>\n";
print_r ($out);
print "</PRE>\n";
}
exec ("scp /tmp/web-useradd webuseradd@vam-osc6:/etc/web-useradd 2>&1",
$out, $ret);
if ($ret != 0)
{
print "scp to vam-osc6 returns: ".$ret."<BR>\n";
print "Output was:<BR><PRE>\n";
print_r ($out);
print "</PRE>\n";
}
exec ("rm /tmp/web-useradd 2>&1", $out, $ret);
}
function show_users ($users)
{
print "<H1>User auf vam-osc5 und vam-osc6</H1>\n";
if ($_SESSION['editable'] == TRUE)
{
print "<A href=\"".$SCRIPT_NAME."?action=add\">";
print "Benutzer hinzufügen</A>";
}
else
{
print "<A href=\"".$SCRIPT_NAME."?action=startedit\">";
print "Benutzer bearbeiten</A>";
}
print "<TABLE border=\"0\">";
$rownum = 0;
if (isset ($users))
{
foreach ($users as $name => $data)
{
if (($rownum % 2) != 0)
{
$bg="#EEEEEE"; // leight
}
else
{
$bg="#CCCCCC"; // dark
}
$tdStyle = "";
$delText = "löschen";
if ($data[3] == "delete")
{
$tdStyle = "style=\"text-decoration: line-through;\"";
$delText = "nicht löschen";
}
print "<TR><TD width=70 bgcolor=".$bg." ".$tdStyle.">".$name."</TD>";
print "<TD width=150 bgcolor=".$bg." ".$tdStyle.">".$data[1]."</TD>";
print "<TD width=50 bgcolor=".$bg." ".$tdStyle.">".$data[2]."</TD>";
if ($_SESSION['editable'] == TRUE)
{
if ($data[3] != "delete")
{
print "<TD><A href=\"";
print $SCRIPT_NAME."?action=edit&name=".$name."\">";
print "bearbeiten</A></TD>";
print "<TD><A href=\"";
}
else
print "<TD colspan=2><A href=\"";
print $SCRIPT_NAME."?action=delete&name=".$name."\">";
print $delText."</A></TD>";
}
print "</TR>\n";
$rownum ++;
}
}
if ($_SESSION['editable'] == TRUE)
{
print "<TR><TD colspan=\"3\">";
print "<A href=\"".$SCRIPT_NAME."?action=update\">abschicken</A>";
print " <A href=\"".$SCRIPT_NAME."?action=abort\">abbrechen</A>";
print "</TD></TR>";
}
print "</TABLE>\n";
}
function edit_user ($users, $cats, $name)
{
print "<FORM action=\"".$SCRIPT_NAME."?".strip_tags (SID)."\">";
print "<INPUT type=\"HIDDEN\" name=\"action\" value=\"set\">";
print "<INPUT type=\"HIDDEN\" name=\"oldpass\" value=\"".$users[$name][0]."\">";
print "<TABLE border=\"0\">";
print "<TR><TD>Username: </TD>";
print "<TD width=\"300\">";
if (! isset ($name))
{
print "<INPUT type=\"text\" name=\"name\" value=\"".$name."\"></TD>";
}
else
{
print "<INPUT type=\"hidden\" name=\"name\" value=\"".$name."\">";
print $name."</TD>";
}
print "</TR>\n";
print "<TR><TD>Rubrik: </TD>";
print "<TD width=\"300\">";
print "<SELECT name=\"cat\" size=\"1\">";
foreach ($cats as $cat)
{
print "<OPTION";
if ($users[$name][2] == $cat)
print " SELECTED>";
else
print ">";
print $cat."</OPTION>";
}
print "</SELECT>";
print "</TD>";
print "</TR>\n";
print "<TR><TD>Vollständiger Name: </TD>";
print "<TD width=\"300\">";
print "<INPUT type=\"text\" name=\"full\" value=\"".$users[$name][1]."\">";
print "</TD>";
print "</TR>\n";
print "<TR><TD>Passwort: </TD>";
print "<TD width=\"300\">";
print "<INPUT type=\"password\" name=\"pass\" value=\"".$users[$name][0]."\">";
print "</TD>";
print "</TR>\n";
print "<TR><TD colspan=\"2\" align=\"right\">";
print "<A href=\"".$SCRIPT_NAME."?action=show\">abbrechen</A>";
print " <INPUT type=\"submit\" value=\"abschicken\">";
print "</TABLE>\n";
print "</FORM>";
}
/*
* gibt FALSE zurück falls kein Lock gesetzt werden konnte, ansonsten die
* aktuelle lockid. Diese wird bei free_lock benötigt um den lock wieder
* freizugeben.
* Folgende Fälle können eintreten:
* 1. Das Lockfile enthält keine Daten und myId ist leer.
* Das bedeutet: es existiert keine Sperre auf die Daten und wir hatten
* bisher keine Sperre auf die Daten.
* Daraufhin wird eine neue lock-id generiert und zusammen mit dem
* aktuellen Timestamp in das lockfile gegeben. Die generierte lock-id
* wird zurückgegeben.
* 2. Das Lockfile enthält eine Sperre und myId ist leer.
* Das bedeutet: es existiert eine Sperre auf die Daten, die nicht von
* dieser PHP session generiert wurde.
* 2 Faelle:
* (lockTime + 300) >= time (): Die Sperre ist nicht abgelaufen => es
* kann keine neue Sperre angelegt werden.
* (lockTime + 300) < time (): Die Sperre ist abgelaufen => neue lock-id
* generieren, in Datei eintragen und
* zurückgeben.
* 3. Das Lockfile enthält eine Sperre und myId != lockId.
* Das bedeutet: In der aktuellen PHP session wurde erfolgreich eine
* Sperre erzeugt, die aber aufgrund dessen das ein timeout
* eingetreten ist (d.h. in der aktuellen Session wurde länger
* als 5 Minuten auf keinen link mehr geklickt.) nicht mehr
* gültig war und in der zwischenzeit hat jemand anderes
* daher eine neue Sperre auf die Daten eingerichtet siehe 2.
* folgende Fälle:
* die 2 Unterfälle von 2.
* 4. Das Lockfile enthält keine Daten, aber myId ist nicht leer.
* Das bedeutet: In der aktuellen PHP session wurde ein lock eingerichtet.
* Der Timeout verstrich und jemand anderes hat änderungen
* an den Daten vorgenommen. Konsequenz: Die Daten in dieser
* PHP session sind nicht mehr aktuell.
* Da der aktuelle Lock daher komplett ungültig geworden ist wird nichts
* in die Datei eingetragen und eine leere lock-id zurückgegeben.
* An anderer Stelle (check_lock) werden anhand der Information das myId
* nich leer war, aber die zurückgegebene id leer ist alle anderen Daten
* neu initialisiert.
* 5. Das Lockfile enthält eine Sperre und myId == lockId.
* Das bedeutet: Innerhalb dieser PHP session wurde eine Sperre eingerichtet
* die auch weiterhin gültig ist.
* Die lockTime wird in der Datei aktualisiert und lockId zurückgegeben.
*/
function get_lock ($lockFile, $myId)
{
$newId = "";
$lockFd = fopen ($lockFile, "a+");
if ($lockFd != FALSE)
{
if (flock ($lockFd, LOCK_EX) != FALSE)
{
rewind ($lockFd);
$lockEntry = explode ('/', trim (fgets ($lockFd)));
$lockId = $lockEntry[0];
$lockTime = $lockEntry[1];
if ($lockId == $myId ||
/* lockTime nur pruefen wenn Sie in der Datei stand */
($lockTime != "" && ($lockTime + 300) < time ()))
{
ftruncate ($lockFd, 0);
if ($lockId != "" && $lockId == $myId)
$newId = $myId;
else
$newId = uniqid ();
fputs ($lockFd, $newId."/".time ()."\n");
}
fclose ($lockFd);
}
}
return $newId;
}
function free_lock ($lockFile, $lockId)
{
$lockFd = fopen ($lockFile, "r+");
if ($lockFd != FALSE)
{
if (flock ($lockFd, LOCK_EX) != FALSE)
{
$lockEntry = explode ('/', trim (fgets ($lockFd)));
$oldId = $lockEntry[0];
if ($lockId == $oldId)
ftruncate ($lockFd, 0);
fclose ($lockFd);
}
}
}
function check_lock ($lockFile, $lockId)
{
if ($_SESSION['editable'] == TRUE)
{
$gotId = get_lock ($lockFile, $lockId);
if ($gotId == FALSE)
{
if ($lockId == FALSE)
{
print "<TABLE BGCOLOR=\"yellow\"><TR><TD>Konnte keine Sperre zum ";
print "bearbeiten der Benutzerdaten anlegen. Jemand anderes ";
print "bearbeitet die Daten bereits. Bitte versuchen Sie es in ein ";
print "paar Minuten noch einmal.</TD></TR></TABLE>";
}
else
{
print "<TABLE BGCOLOR=\"yellow\"><TR><TD>Ihre Sperre ist ";
print "ungültig. Vermutlich haben Sie länger als fünf ";
print "Minuten keine Modifikationen vorgenommen und jemand ";
print "anderes bearbeitet jetzt Benutzerdaten. Leider sind ihre ";
print "bisherigen Änderungen dadurch ungültig geworden. ";
print "Bitte versuchen Sie es in ein paar Minuten noch einmal.";
print "</TD></TR></TABLE>";
}
}
return $gotId;
}
return "";
}
$_action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'load';
session_start ();
$_SESSION['lockFile'] =
'/var/www/localhost/htdocs/osc_user_add/webuseradd.lck';
mkhead ("Benutzer auf vam-osc5 und vam-osc6 anlegen ...",
"bar-edvtools",
"Benutzertool vam-osc5 und vam-osc6");
if ($_action == "load" || $_action == "startedit")
{
session_unregister ("users");
session_unregister ("cats");
}
if (! isset ($_SESSION['users']))
$_SESSION['users'] = load_users ();
if (! isset ($_SESSION['cats']))
$_SESSION['cats'] = load_cats ();
if (! isset ($_SESSION['editable']))
$_SESSION['editable'] = FALSE;
if ($_action == 'startedit')
$_SESSION['editable'] = TRUE;
$_SESSION['lockId'] = check_lock ($_SESSION['lockFile'], $_SESSION['lockId']);
if ($_SESSION['lockId'] == FALSE)
{
$_SESSION['editable'] = FALSE;
show_users ($_SESSION['users']);
}
else
{
switch ($_action)
{
case 'edit':
edit_user ($_SESSION['users'], $_SESSION['cats'], $_REQUEST['name']);
break;
case 'set':
$pass = $_REQUEST['pass']=="no-change"?$_REQUEST['pass']:
$_REQUEST['oldpass']==$_REQUEST['pass']?$_REQUEST['pass']:
crypt ($_REQUEST['pass'], $_REQUEST['name']);
$_SESSION['users'][$_REQUEST['name']] =
array ($pass,
$_REQUEST['full'],
$_REQUEST['cat'],
time ());
show_users ($_SESSION['users']);
break;
case 'update':
update_users ($_SESSION['users']);
print "<TABLE><TR><TD bgcolor=\"yellow\">Daten wurden aktualisiert. ";
print "Es kann einige Minuten dauern bis das System die ";
print "Änderung übernimmt.</TD></TR></TABLE>\n";
case 'abort':
free_lock ($_SESSION['lockFile'], $_SESSION['lockId']);
$_SESSION['lockId'] = "";
$_SESSION['editable'] = FALSE;
show_users ($_SESSION['users']);
break;
case 'add':
edit_user ($_SESSION['users'], $_SESSION['cats'], $_REQUEST['name']);
break;
case 'delete':
if ($_SESSION['users'][$_REQUEST['name']][3] != "delete")
$_SESSION['users'][$_REQUEST['name']][3] = "delete";
else
$_SESSION['users'][$_REQUEST['name']][3] = time ();
show_users ($_SESSION['users']);
break;
case 'show':
default:
show_users ($_SESSION['users']);
}
}
?>
</td>
</tr>
<tr>
</tr>
</table>
<PRE>
</PRE>
</body>
</html>