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
|
#
# fcoe.py - fcoe class
#
# Copyright (C) 2009 Red Hat, Inc. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import os
import iutil
import logging
import time
from flags import flags
log = logging.getLogger("anaconda")
import gettext
_ = lambda x: gettext.ldgettext("anaconda", x)
_fcoe_module_loaded = False
def has_fcoe():
global _fcoe_module_loaded
if not _fcoe_module_loaded:
iutil.execWithRedirect("modprobe", [ "fcoe" ],
stdout = "/dev/tty5", stderr="/dev/tty5")
_fcoe_module_loaded = True
return os.access("/sys/module/fcoe", os.X_OK)
class fcoe(object):
""" FCoE utility class.
This class will automatically discover and connect to EDD configured
FCoE SAN's when the startup() method gets called. It can also be
used to manually configure FCoE SAN's through the addSan() method.
As this class needs to make sure certain things like starting fcoe
daemons and connecting to firmware discovered SAN's only happens once
and as it keeps a global list of all FCoE devices it is
implemented as a Singleton.
"""
def __init__(self):
self.started = False
self.dcbdStarted = False
self.fcoemonStarted = False
self.nics = []
# So that users can write fcoe() to get the singleton instance
def __call__(self):
return self
def _stabilize(self, intf = None):
if intf:
w = intf.waitWindow(_("Connecting to FCoE SAN"),
_("Connecting to FCoE SAN"))
# I have no clue how long we need to wait, this ought to do the trick
time.sleep(10)
iutil.execWithRedirect("udevadm", [ "settle" ],
stdout = "/dev/tty5", stderr="/dev/tty5",
searchPath = 1)
if intf:
w.pop()
def startup(self, intf = None):
if self.started:
return
if not has_fcoe():
return
# Place holder for adding autodetection of FCoE setups based on
# firmware tables (like iBFT for iSCSI)
self.started = True
def _startDcbd(self):
if self.dcbdStarted:
return
iutil.execWithRedirect("dcbd", [ "-d" ],
stdout = "/dev/tty5", stderr="/dev/tty5",
searchPath = 1)
self.dcbdStarted = True
def _startFcoemon(self):
if self.fcoemonStarted:
return
iutil.execWithRedirect("fcoemon", [ ],
stdout = "/dev/tty5", stderr="/dev/tty5",
searchPath = 1)
self.fcoemonStarted = True
def addSan(self, nic, dcb=False, intf=None):
if not has_fcoe():
raise IOError, _("FCoE not available")
log.info("Activating FCoE SAN attached to %s, dcb: %s" % (nic, dcb))
iutil.execWithRedirect("ip", [ "link", "set", nic, "up" ],
stdout = "/dev/tty5", stderr="/dev/tty5",
searchPath = 1)
if dcb:
self._startDcbd()
iutil.execWithRedirect("dcbtool", [ "sc", nic, "dcb", "on" ],
stdout = "/dev/tty5", stderr="/dev/tty5",
searchPath = 1)
iutil.execWithRedirect("dcbtool", [ "sc", nic, "app:fcoe",
"e:1", "a:1", "w:1" ],
stdout = "/dev/tty5", stderr="/dev/tty5",
searchPath = 1)
self._startFcoemon()
else:
f = open("/sys/module/fcoe/parameters/create", "w")
f.write(nic)
f.close()
self._stabilize(intf)
self.nics.append((nic, dcb))
def writeKS(self, f):
# fixme plenty (including add ks support for fcoe in general)
return
def write(self, instPath, anaconda):
if not self.nics:
return
if not os.path.isdir(instPath + "/etc/fcoe"):
os.makedirs(instPath + "/etc/fcoe", 0755)
for nic, dcb in self.nics:
fd = os.open(instPath + "/etc/fcoe/cfg-" + nic,
os.O_RDWR | os.O_CREAT)
os.write(fd, '# Created by anaconda\n')
os.write(fd, '# Enable/Disable FCoE service at the Ethernet port\n')
os.write(fd, 'FCOE_ENABLE="yes"\n')
os.write(fd, '# Indicate if DCB service is required at the Ethernet port\n')
if dcb:
os.write(fd, 'DCB_REQUIRED="yes"\n')
else:
os.write(fd, 'DCB_REQUIRED="no"\n')
os.close(fd)
return
# Create FCoE singleton
fcoe = fcoe()
# vim:tw=78:ts=4:et:sw=4
|