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
|
#
# syslogd.py - a simple syslogd implementation and wrapper for launching it
#
# Erik Troan <ewt@redhat.com>
#
# Copyright 1999-2001 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
import sys, os
import string
from socket import *
from select import select
from rhpl.log import log
class Syslogd:
def goSyslog(self, output, sockName):
sock = socket(AF_UNIX, SOCK_STREAM)
try:
os.unlink(sockName)
except os.error:
pass
sock.bind(sockName)
acceptedFds = []
sock.listen(5)
while (1):
list = acceptedFds + [ sock ]
list = select(list, [], [])[0]
try:
list.remove(sock)
(fd, remoteAddr) = sock.accept()
acceptedFds.append(fd)
except ValueError:
pass
for fd in list:
msg = fd.recv(50)
msg = string.replace(msg, chr(0), "\n")
if (msg):
output.write(msg)
output.flush()
else:
acceptedFds.remove(fd)
fd.close()
def __init__(self, root = "", output = sys.stdout, socket = "/dev/log"):
output = output
filename = root + socket;
self.goSyslog(output, filename)
class InstSyslog:
def __init__ (self):
self.pid = -1;
def start (self, root, log):
self.pid = os.fork ()
if not self.pid:
# look on PYTHONPATH first, so we use updated anaconda
path = None
if os.environ.has_key('PYTHONPATH'):
for f in string.split(os.environ['PYTHONPATH'], ":"):
if os.access (f+"/anaconda", os.X_OK):
path = f+"/anaconda"
break
if not path:
if os.access ("./anaconda", os.X_OK):
path = "./anaconda"
elif os.access ("/usr/bin/anaconda.real", os.X_OK):
path = "/usr/bin/anaconda.real"
else:
path = "/usr/bin/anaconda"
os.execv (path, ("syslogd", "--syslogd", root, log))
def stop(self):
if self.pid == -1:
raise RuntimeError, "syslogd not running"
os.kill (self.pid, 15)
try:
os.waitpid (self.pid, 0)
except OSError, (num, msg):
log("exception from waitpid in syslogd::stop: %s %s" % (num, msg))
self.pid = -1
syslog = InstSyslog()
|