94b6a7c56a61d3dcc5c481f82314479c3ed3e46e
[snf-image-creator] / image_creator / os_type / freebsd.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright 2012 GRNET S.A. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or
6 # without modification, are permitted provided that the following
7 # conditions are met:
8 #
9 #   1. Redistributions of source code must retain the above
10 #      copyright notice, this list of conditions and the following
11 #      disclaimer.
12 #
13 #   2. Redistributions in binary form must reproduce the above
14 #      copyright notice, this list of conditions and the following
15 #      disclaimer in the documentation and/or other materials
16 #      provided with the distribution.
17 #
18 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 # POSSIBILITY OF SUCH DAMAGE.
30 #
31 # The views and conclusions contained in the software and
32 # documentation are those of the authors and should not be
33 # interpreted as representing official policies, either expressed
34 # or implied, of GRNET S.A.
35
36 """This module hosts OS-specific code for FreeBSD."""
37
38 from image_creator.os_type.unix import Unix, sysprep
39
40 import re
41
42
43 class Freebsd(Unix):
44     """OS class for FreeBSD Unix-like os"""
45
46     @sysprep("Cleaning up passwords & locking all user accounts")
47     def cleanup_password(self):
48         """Remove all passwords and lock all user accounts"""
49
50         master_passwd = []
51
52         for line in self.g.cat('/etc/master.passwd').splitlines():
53
54             # Check for empty or comment lines
55             if len(line.split('#')[0]) == 0:
56                 master_passwd.append(line)
57                 continue
58
59             fields = line.split(':')
60             if fields[1] not in ('*', '!'):
61                 fields[1] = '!'
62
63             master_passwd.append(":".join(fields))
64
65         self.g.write('/etc/master.passwd', "\n".join(master_passwd) + '\n')
66
67         # Make sure no one can login on the system
68         self.g.rm_rf('/etc/spwd.db')
69
70     def _do_collect_metadata(self):
71         """Collect metadata about the OS"""
72         super(Freebsd, self)._do_collect_metadata()
73         self.meta["USERS"] = " ".join(self._get_passworded_users())
74
75         #The original product name key is long and ugly
76         self.meta['DESCRIPTION'] = \
77             self.meta['DESCRIPTION'].split('#')[0].strip()
78
79         # Delete the USERS metadata if empty
80         if not len(self.meta['USERS']):
81             self.out.warn("No passworded users found!")
82             del self.meta['USERS']
83
84     def _get_passworded_users(self):
85         """Returns a list of non-locked user accounts"""
86         users = []
87         regexp = re.compile(
88             '^([^:]+):((?:![^:]+)|(?:[^!*][^:]+)|):(?:[^:]*:){7}(?:[^:]*)'
89         )
90
91         for line in self.g.cat('/etc/master.passwd').splitlines():
92             line = line.split('#')[0]
93             match = regexp.match(line)
94             if not match:
95                 continue
96
97             user, passwd = match.groups()
98             if len(passwd) > 0 and passwd[0] == '!':
99                 self.out.warn("Ignoring locked %s account." % user)
100             else:
101                 users.append(user)
102
103         return users
104
105     def _do_mount(self, readonly):
106         """Mount partitions in the correct order"""
107
108         critical_mpoints = ('/', '/etc', '/root', '/home', '/var')
109
110         # libguestfs can't handle correct freebsd partitions on a GUID
111         # Partition Table. We have to do the translation to linux device names
112         # ourselves
113         guid_device = re.compile('^/dev/((?:ada)|(?:vtbd))(\d+)p(\d+)$')
114
115         mopts = "ufstype=ufs2,%s" % ('ro' if readonly else 'rw')
116         for mp, dev in self._mountpoints():
117             match = guid_device.match(dev)
118             if match:
119                 group2 = int(match.group(2))
120                 group3 = int(match.group(3))
121                 dev = '/dev/sd%c%d' % (chr(ord('a') + group2), group3)
122             try:
123                 self.g.mount_vfs(mopts, 'ufs', dev, mp)
124             except RuntimeError as msg:
125                 if mp in critical_mpoints:
126                     self.out.warn('unable to mount %s. Reason: %s' % (mp, msg))
127                     return False
128                 else:
129                     self.out.warn('%s (ignored)' % msg)
130
131         return True
132
133 # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :