File: drbdlinks

package info (click to toggle)
drbdlinks 1.09-1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 92 kB
  • ctags: 53
  • sloc: python: 265; sh: 80; makefile: 39
file content (338 lines) | stat: -rwxr-xr-x 9,589 bytes parent folder | download
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
#!/usr/bin/env python
#
#  Manage a set of links into a DRBD shared directory
#
#  Written by: Sean Reifschneider <jafo@tummy.com>
#  Copyright (c) 2004, tummy.com, ltd.  All Rights Reserved

configFile = '/etc/drbdlinks.conf'

import os, string, re, sys, stat, syslog
syslog.openlog('drbdlinks', syslog.LOG_PID)

#  import optik parser
try:
	import optparse
except ImportError:
	import optik
	optparse = optik

##########
class lsb:  #{{{1
	class statusRC:
		OK =		0
		VAR_PID =	1
		VAR_LOCK =	2
		STOPPED =	3
		UNKNOWN =	4
		LSBRESERVED =	5
		DISTRESERVED =	100
		APPRESERVED =	150
		RESERVED =	200
	class exitRC:
		OK             	= 0
		GENERIC        	= 1
		EINVAL         	= 2
		ENOTSUPPORTED  	= 3
		EPERM          	= 4
		NOTINSTALLED   	= 5
		NOTCONFIGED    	= 6
		NOTRUNNING     	= 7
		LSBRESERVED    	= 8
		DISTRESERVED   	= 100
		APPRESERVED    	= 150
		RESERVED       	= 200


##########################
def restartSyslog(config):  #{{{1
	if config.restartSyslog:
		syslogScriptPath = None
		for checkInitPath, checkRunPath in [
				( '/etc/init.d/syslog', '/var/run/syslogd.pid' ),
				( '/etc/init.d/rsyslog', '/var/run/rsyslogd.pid' ),
				]:
			if os.path.exists(checkRunPath):
				initScriptPath = checkInitPath
		if not initScriptPath:
			syslog.syslog('Unable to locate syslog init script, not '
					'restarting syslog.')
		else:
			return(os.system('%s start' % initScriptPath) != 0)
	return(0)


#######################
def testConfig(config):  #{{{1
	allUp = 1
	for linkLocal, linkDest, useBindLink in config.linkList:
		suffixName = linkLocal + options.suffix
		#  check to see if the link is in place  {{{3
		if not os.path.exists(suffixName):
			allUp = 0
			if options.verbose >= 1:
				print 'testConfig: Original file not present: "%s"' % suffixName
			continue

	if options.verbose >= 1:
		print 'testConfig: Returning %s' % allUp
	return(allUp)


###############################
def loadConfigFile(configFile):  #{{{1
	class configClass:  #{{{2
		def __init__(self):  #{{{3
			self.mountpoint = None
			self.linkList = []
			self.useSELinux = 0
			self.selinuxenabledPath = None
			self.useBindMount = 0
			self.restartSyslog = 0

			#  Locate where the selinuxenabled binary is
			for path in (
					'/usr/sbin/selinuxenabled',
					'/sbin/selinuxenabled', ):
				if os.path.exists(path):
					self.selinuxenabledPath = path
					break

			#  auto-detect if SELinux is on
			if self.selinuxenabledPath:
				ret = os.system(self.selinuxenabledPath)
				if ret == 0:
					self.useSELinux = 1

		def cmd_mountpoint(self, arg):  #{{{3
			self.mountpoint = arg

		def cmd_link(self, src, dest = None):  #{{{3
			self.linkList.append(( src, dest, self.useBindMount ))

		def cmd_selinux(self, enabled = 1):  #{{{3
			self.useSELinux = enabled

		def cmd_usebindmount(self, enabled = 1):  #{{{3
			self.useBindMount = enabled

		def cmd_restartSyslog(self, enabled = 1):  #{{{3
			self.restartSyslog = enabled

	#  set up config environment  #{{{2
	config = configClass()
	namespace = {
			'mountpoint' : config.cmd_mountpoint,
			'link' : config.cmd_link,
			'selinux' : config.cmd_selinux,
			'usebindmount' : config.cmd_usebindmount,
			'restartSyslog' : config.cmd_restartSyslog,
			'restartsyslog' : config.cmd_restartSyslog,
			}

	#  load the file  #{{{2
	try:
		execfile(configFile, {}, namespace)
	except Exception, e:
		print 'ERROR: Loading configuration file failed.  See below for details:'
		raise
	
	#  process the data we got
	if config.mountpoint:
		config.mountpoint = string.rstrip(config.mountpoint, '/')
	for i in xrange(len(config.linkList)):
		oldList = config.linkList[i]
		if oldList[1]:
			arg2 = string.rstrip(oldList[1], '/')
		else:
			if not config.mountpoint:
				sys.stderr.write('ERROR: Used link() when no mountpoint() was set '
						'in the config file.\n')
				sys.exit(3)
			arg2 = string.lstrip(oldList[0], '/')
			arg2 = os.path.join(config.mountpoint, arg2)
		config.linkList[i] = ([string.rstrip(oldList[0], '/'), arg2]
				+ list(oldList[2:]))

	#  return the data  {{{2
	return(config)


#  parse arguments  {{{1
parser = optparse.OptionParser()
parser.add_option('-c', '--config-file', dest = 'configFile', type = 'string',
		default = configFile,
		help = 'Location of the configuration file.')
parser.add_option('-s', '--suffix', dest = 'suffix', type = 'string',
		default = '.drbdlinks',
		help = 'Name to append to the local file-system name when the link '
				'is in place.')
parser.add_option('-v', '--verbose', default = 0,
		dest = 'verbose', action = 'count',
		help = 'Increase verbosity level by 1 for every "-v".')
parser.set_usage('%prog (start|stop|auto|status|monitor)')
options, args = parser.parse_args()
configFile = options.configFile

#  figure out what the mode to run in  {{{1
if len(args) == 1:
	if args[0] not in ( 'start', 'stop', 'auto', 'monitor', 'status' ):
		parser.error('ERROR: Unknown mode "%s", expecting one of '
				'(start|stop|auto|status|monitor)' % args[0])
		sys.exit(lsb.exitRC.ENOTSUPPORTED)
	mode = args[0]
else:
	parser.error('Expected exactly one argument to specify the mode.')
	sys.exit(lsb.exitRC.EINVAL)
if options.verbose >= 2: print 'Initial mode: "%s"' % mode

#  load config file  {{{1
try:
	config = loadConfigFile(configFile)
except IOError, e:
	if e.errno == 2:
		print 'ERROR: Unable to open config file "%s":' % configFile
		print '  ', str(e)
		if mode == 'monitor':
			sys.exit(lsb.exitRC.NOTCONFIGED)
		sys.exit(lsb.statusRC.UNKNOWN)
	raise
if not config.mountpoint:
	sys.stderr.write('No mountpoint found in config file.  Aborting.\n')
	if mode == 'monitor':
		sys.exit(lsb.exitRC.EINVAL)
	sys.exit(lsb.statusRC.UNKNOWN)
if not os.path.exists(config.mountpoint):
	sys.stderr.write('Mountpoint "%s" does not exist.  Aborting.\n'
			% config.mountpoint)
	if mode == 'monitor':
		sys.exit(lsb.exitRC.EINVAL)
	sys.exit(lsb.statusRC.UNKNOWN)

#  if mode is auto, figure out what mode to use  {{{1
if mode == 'auto':
	if (os.stat(config.mountpoint).st_dev !=
			os.stat(os.path.join(config.mountpoint, '..')).st_dev):
		if options.verbose >= 1:
			print 'Detected mounted file-system on "%s"' % config.mountpoint
		mode = 'start'
	else:
		mode = 'stop'
if options.verbose >= 1: print 'Mode: "%s"' % mode

#  set up links  {{{1
anyLinksChanged = 0
if mode == 'start':
	errorCount = 0
	for linkLocal, linkDest, useBindMount in config.linkList:  #{{{2
		suffixName = linkLocal + options.suffix
		#  check to see if the link is in place  {{{3
		if os.path.exists(suffixName):
			if options.verbose >= 1:
				print 'Skipping, appears to already be linked: "%s"' % linkLocal
			continue

		#  make the link  {{{3
		try:
			if options.verbose >= 2:
				print 'Renaming "%s" to "%s"' % ( linkLocal, suffixName )
			os.rename(linkLocal, suffixName)
			anyLinksChanged = 1
		except ( OSError, IOError ), e:
			sys.stderr.write('Error renaming "%s" to "%s": %s\n'
					% ( suffixName, linkLocal, str(e) ))
			errorCount = errorCount + 1
			if options.verbose >= 2:
				print 'Linking "%s" to "%s"' % ( linkDest, linkLocal )
			anyLinksChanged = 1

		if useBindMount:
			st = os.stat(linkDest)
			if stat.S_ISREG(st.st_mode): open(linkLocal, 'w').close()
			else: os.mkdir(linkLocal)
			os.system('mount -o bind "%s" "%s"' % ( linkDest, linkLocal ))
		else:
			try:
				os.symlink(linkDest, linkLocal)
			except ( OSError, IOError ), e:
				sys.stderr.write('Error linking "%s" to "%s": %s'
						% ( linkDest, linkLocal, str(e) ))
				errorCount = errorCount + 1

		#  set up in SELinux
		if config.useSELinux:
			fp = os.popen('ls -d --scontext "%s"' % suffixName, 'r')
			line = fp.readline()
			fp.close()
			if line:
				line = string.split(line, ' ')[0]
				seUser, seRole, seType = string.split(line, ':')
				os.system('chcon -h -u "%s" -r "%s" -t "%s" "%s"'
						% ( seUser, seRole, seType, linkLocal ))
	
	if anyLinksChanged:
		if restartSyslog(config): errorCount = errorCount + 1

	if errorCount:
		sys.exit(lsb.exitRC.GENERIC)
	sys.exit(lsb.exitRC.OK)

#  remove links  {{{1
elif mode == 'stop':
	errorCount = 0
	for linkLocal, linkDest, useBindMount in config.linkList:
		suffixName = linkLocal + options.suffix
		#  check to see if the link is in place  {{{3
		if not os.path.exists(suffixName):
			if options.verbose >= 1:
				print 'Skipping, appears to already be shut down: "%s"' % linkLocal
			continue

		#  break the link  {{{3
		try:
			if options.verbose >= 2:
				print 'Removing "%s"' % ( linkLocal, )
			anyLinksChanged = 1

			if useBindMount:
				os.system('umount "%s"' % linkLocal)
				try: os.remove(linkLocal)
				except: pass
				if os.path.exists(linkLocal): os.rmdir(linkLocal)
			else:
				os.remove(linkLocal)
		except ( OSError, IOError ), e:
			sys.stderr.write('Error removing "%s": %s\n' % ( linkLocal, str(e) ))
			errorCount = errorCount + 1
		try:
			if options.verbose >= 2:
				print 'Renaming "%s" to "%s"' % ( suffixName, linkLocal )
			os.rename(suffixName, linkLocal)
			anyLinksChanged = 1
		except ( OSError, IOError ), e:
			sys.stderr.write('Error renaming "%s" to "%s": %s\n'
					% ( suffixName, linkLocal, str(e) ))
			errorCount = errorCount + 1

	if anyLinksChanged:
		restartSyslog(config)

	if errorCount:
		sys.exit(lsb.exitRC.GENERIC)
	sys.exit(lsb.exitRC.OK)

#  monitor mode  {{{1
elif mode == 'monitor':
	if testConfig(config):
		sys.exit(lsb.exitRC.OK)

	sys.exit(lsb.exitRC.NOTRUNNING)

#  status mode  {{{1
elif mode == 'status':
	if testConfig(config):
		print "info: DRBD Links OK (present)"
		sys.exit(lsb.statusRC.OK)

	print "info: DRBD Links stopped (not set up)"
	sys.exit(lsb.statusRC.STOPPED)