summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cloudinit/parts/__init__.py117
-rw-r--r--cloudinit/parts/boot_hook.py42
-rw-r--r--cloudinit/parts/cloud_config.py36
-rw-r--r--cloudinit/parts/shell_script.py27
-rw-r--r--cloudinit/parts/upstart_job.py30
-rw-r--r--cloudinit/user_data/__init__.py210
-rw-r--r--cloudinit/user_data/boot_hook.py65
-rw-r--r--cloudinit/user_data/cloud_config.py59
-rw-r--r--cloudinit/user_data/processor.py (renamed from cloudinit/user_data.py)88
-rw-r--r--cloudinit/user_data/shell_script.py53
-rw-r--r--cloudinit/user_data/upstart_job.py56
11 files changed, 454 insertions, 329 deletions
diff --git a/cloudinit/parts/__init__.py b/cloudinit/parts/__init__.py
deleted file mode 100644
index 20d4bd3b..00000000
--- a/cloudinit/parts/__init__.py
+++ /dev/null
@@ -1,117 +0,0 @@
-import os
-
-from cloudinit import util
-from cloudinit.settings import (PER_ALWAYS, PER_INSTANCE)
-from cloudinit import log as logging
-
-LOG = logging.getLogger(__name__)
-
-CONTENT_END = "__end__"
-CONTENT_START = "__begin__"
-PART_CONTENT_TYPES = ["text/part-handler"]
-PART_HANDLER_FN_TMPL = 'part-handler-%03d'
-UNDEF_HANDLER_VERSION = 1
-
-
-class PartHandler(object):
- def __init__(self, frequency, version=2):
- self.handler_version = version
- self.frequency = frequency
-
- def __repr__(self):
- return "%s: [%s]" % (self.__class__.__name__, self.list_types())
-
- def list_types(self):
- raise NotImplementedError()
-
- def handle_part(self, data, ctype, filename, payload, frequency):
- return self._handle_part(data, ctype, filename, payload, frequency)
-
- def _handle_part(self, data, ctype, filename, payload, frequency):
- raise NotImplementedError()
-
-
-def fixup_module(mod):
- if not hasattr(mod, "handler_version"):
- setattr(mod, "handler_version", UNDEF_HANDLER_VERSION)
- if not hasattr(mod, 'list_types'):
- def empty_types():
- return []
- setattr(mod, 'list_types', empty_types)
- if not hasattr(mod, frequency):
- setattr(mod, 'frequency', PER_INSTANCE)
- if not hasattr(mod, 'handle_part'):
- def empty_handler(data, ctype, filename, payload):
- pass
- setattr(mod, 'handle_part', empty_handler)
- return mod
-
-
-def find_module_files(root_dir):
- entries = dict()
- for fname in glob.glob(os.path.join(root_dir, "*.py")):
- if not os.path.isfile(fname):
- continue
- modname = os.path.basename(fname)[0:-3]
- entries[fname] = modname
- return entries
-
-
-def run_part(mod, data, ctype, filename, payload, frequency):
- # only add the handler if the module should run
- mod_freq = getattr(mod, "frequency")
- if not (mod_freq == PER_ALWAYS or
- (frequency == PER_INSTANCE and mod_freq == PER_INSTANCE)):
- return
- try:
- mod_ver = getattr(mod, 'handler_version')
- if mod_ver == 1:
- mod.handle_part(data, ctype, filename, payload)
- else:
- mod.handle_part(data, ctype, filename, payload, frequency)
- except:
- LOG.exception("Failed calling mod %s (%s, %s, %s) with frequency %s", mod, ctype, filename, mod_ver, frequency)
-
-
-def call_begin(mod, data, frequency):
- run_part(mod, data, CONTENT_START, None, None, frequency)
-
-
-def call_end(mod, data, frequency):
- run_part(mod, data, CONTENT_END, None, None, frequency)
-
-
-def walker_handle_handler(pdata, _ctype, _filename, payload):
- curcount = pdata['handlercount']
- modname = PART_HANDLER_FN_TMPL % (curcount)
- frequency = pdata['frequency']
- modfname = os.path.join(pdata['handlerdir'], "%s.py" % (modname))
- # TODO: Check if path exists??
- util.write_file(modfname, payload, 0600)
- handlers = pdata['handlers']
- try:
- mod = fixup_module(importer.import_module(modname))
- handlers.register(mod)
- call_begin(mod, pdata['data'], frequency)
- pdata['handlercount'] = curcount + 1
- except:
- LOG.exception("Failed at registered python file %s", modfname)
-
-
-def walker_callback(pdata, ctype, filename, payload):
- # data here is the part_handlers array and then the data to pass through
- if ctype in PART_CONTENT_TYPES:
- walker_handle_handler(pdata, ctype, filename, payload)
- return
- handlers = pdata['handlers']
- if ctype not in handlers:
- if ctype == "text/x-not-multipart":
- # Extract the first line or 24 bytes for displaying in the log
- start = payload.split("\n", 1)[0][:24]
- if start < payload:
- details = "starting '%s...'" % start.encode("string-escape")
- else:
- details = repr(payload)
- LOG.warning("Unhandled non-multipart userdata: %s", details)
- return
- run_part(handlers[ctype], pdata['data'], ctype, filename, payload, pdata['frequency']) \ No newline at end of file
diff --git a/cloudinit/parts/boot_hook.py b/cloudinit/parts/boot_hook.py
deleted file mode 100644
index 881ffc58..00000000
--- a/cloudinit/parts/boot_hook.py
+++ /dev/null
@@ -1,42 +0,0 @@
-import os
-
-from cloudinit import util
-from cloudinit.settings import (PER_ALWAYS, PER_INSTANCE)
-from cloudinit import log as logging
-from cloudinit import parts
-
-LOG = logging.getLogger(__name__)
-
-
-
-class BootHookPartHandler(parts.PartHandler):
- def __init__(self, boothook_dir, instance_id):
- parts.PartHandler.__init__(self, PER_ALWAYS)
- self.boothook_dir = boothook_dir
- self.instance_id = instance_id
-
- def list_types(self):
- return ['text/cloud-boothook']
-
- def _handle_part(self, _data, ctype, filename, payload, _frequency):
- if ctype in [CONTENT_START, CONTENT_END]:
- return
-
- filename = util.clean_filename(filename)
- payload = util.dos2unix(payload)
- prefix = "#cloud-boothook"
- start = 0
- if payload.startswith(prefix):
- start = len(prefix) + 1
-
- filepath = os.path.join(self.boothook_dir, filename)
- util.write_file(filepath, payload[start:], 0700)
- try:
- env = os.environ.copy()
- env['INSTANCE_ID'] = str(self.instance_id)
- util.subp([filepath], env=env)
- except util.ProcessExecutionError as e:
- LOG.error("Boothooks script %s returned %s", filepath, e.exit_code)
- except Exception as e:
- LOG.error("Boothooks unknown exception %s when running %s", e, filepath)
-
diff --git a/cloudinit/parts/cloud_config.py b/cloudinit/parts/cloud_config.py
deleted file mode 100644
index dab0e5f5..00000000
--- a/cloudinit/parts/cloud_config.py
+++ /dev/null
@@ -1,36 +0,0 @@
-import os
-
-from cloudinit import util
-from cloudinit.settings import (PER_ALWAYS, PER_INSTANCE)
-from cloudinit import log as logging
-from cloudinit import parts
-
-LOG = logging.getLogger(__name__)
-
-
-
-class CloudConfigPartHandler(parts.PartHandler):
- def __init__(self, cloud_fn):
- parts.PartHandler.__init__(self, PER_ALWAYS)
- self.cloud_buf = []
- self.cloud_fn = cloud_fn
-
- def list_types(self):
- return ['text/cloud-config']
-
- def _handle_part(self, _data, ctype, filename, payload, _frequency):
- if ctype == CONTENT_START:
- self.cloud_buf = []
- return
-
- if ctype == CONTENT_END:
- payload = "\n".join(self.cloud_buf)
- util.write_file(self.cloud_fn, payload, 0600)
- self.cloud_buf = []
- return
-
- filename = util.clean_filename(filename)
- entry = "\n".join(["#%s" % (filename), str(payload)])
- self.config_buf.append(entry)
-
-
diff --git a/cloudinit/parts/shell_script.py b/cloudinit/parts/shell_script.py
deleted file mode 100644
index a248f198..00000000
--- a/cloudinit/parts/shell_script.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import os
-
-from cloudinit import util
-from cloudinit.settings import (PER_ALWAYS, PER_INSTANCE)
-from cloudinit import log as logging
-from cloudinit import parts
-
-LOG = logging.getLogger(__name__)
-
-
-class ShellScriptPartHandler(parts.PartHandler):
-
- def __init__(self, script_dir):
- parts.PartHandler.__init__(self, PER_ALWAYS)
- self.script_dir = script_dir
-
- def list_types(self):
- return ['text/x-shellscript']
-
- def _handle_part(self, _data, ctype, filename, payload, _frequency):
- if ctype in [CONTENT_START, CONTENT_END]:
- # maybe delete existing things here
- return
-
- filename = util.clean_filename(filename)
- payload = util.dos2unix(payload)
- util.write_file(os.path.join(self.script_dir, filename), payload, 0700)
diff --git a/cloudinit/parts/upstart_job.py b/cloudinit/parts/upstart_job.py
deleted file mode 100644
index 7b290d26..00000000
--- a/cloudinit/parts/upstart_job.py
+++ /dev/null
@@ -1,30 +0,0 @@
-import os
-
-from cloudinit import util
-from cloudinit.settings import (PER_ALWAYS, PER_INSTANCE)
-from cloudinit import log as logging
-from cloudinit import parts
-
-LOG = logging.getLogger(__name__)
-
-
-class UpstartJobPartHandler(parts.PartHandler):
- def __init__(self, upstart_dir):
- parts.PartHandler.__init__(self, PER_INSTANCE)
- self.upstart_dir = upstart_dir
-
- def list_types(self):
- return ['text/upstart-job']
-
- def _handle_part(self, _data, ctype, filename, payload, frequency):
- if ctype in [CONTENT_START, CONTENT_END]:
- return
-
- filename = utils.clean_filename(filename)
- (name, ext) = os.path.splitext(filename)
- ext = ext.lower()
- if ext != ".conf":
- filename = filename + ".conf"
-
- payload = util.dos2unix(payload)
- util.write_file(os.path.join(self.upstart_dir, filename), payload, 0644)
diff --git a/cloudinit/user_data/__init__.py b/cloudinit/user_data/__init__.py
new file mode 100644
index 00000000..6264a6cc
--- /dev/null
+++ b/cloudinit/user_data/__init__.py
@@ -0,0 +1,210 @@
+# vi: ts=4 expandtab
+#
+# Copyright (C) 2012 Canonical Ltd.
+# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
+# Copyright (C) 2012 Yahoo! Inc.
+#
+# Author: Scott Moser <scott.moser@canonical.com>
+# Author: Juerg Haefliger <juerg.haefliger@hp.com>
+# Author: Joshua Harlow <harlowja@yahoo-inc.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3, as
+# published by the Free Software Foundation.
+#
+# 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 glob
+
+import email
+
+from email.mime.base import MIMEBase
+
+from cloudinit import log as logging
+from cloudinit import util
+
+from cloudinit.settings import (PER_ALWAYS, PER_INSTANCE)
+
+LOG = logging.getLogger(__name__)
+
+# Special content types that signal the start and end of processing
+CONTENT_END = "__end__"
+CONTENT_START = "__begin__"
+CONTENT_SIGNALS = [CONTENT_START, CONTENT_END]
+
+# Used when a part-handler type is encountered
+# to allow for registration of new types.
+PART_CONTENT_TYPES = ["text/part-handler"]
+PART_HANDLER_FN_TMPL = 'part-handler-%03d'
+
+# For parts without filenames
+PART_FN_TPL = 'part-%03d'
+
+# Used as the content type when a message is not multipart
+# and it doesn't contain its own content-type
+NOT_MULTIPART_TYPE = "text/x-not-multipart"
+
+# Different file beginnings to there content type
+INCLUSION_TYPES_MAP = {
+ '#include': 'text/x-include-url',
+ '#include-once': 'text/x-include-once-url',
+ '#!': 'text/x-shellscript',
+ '#cloud-config': 'text/cloud-config',
+ '#upstart-job': 'text/upstart-job',
+ '#part-handler': 'text/part-handler',
+ '#cloud-boothook': 'text/cloud-boothook',
+ '#cloud-config-archive': 'text/cloud-config-archive',
+}
+
+# Sorted longest first
+INCLUSION_SRCH = sorted(INCLUSION_TYPES_MAP.keys(), key=(lambda e: 0 - len(e)))
+
+
+class PartHandler(object):
+ def __init__(self, frequency, version=2):
+ self.handler_version = version
+ self.frequency = frequency
+
+ def __repr__(self):
+ return "%s: [%s]" % (self.__class__.__name__, self.list_types())
+
+ def list_types(self):
+ raise NotImplementedError()
+
+ def handle_part(self, data, ctype, filename, payload, frequency):
+ return self._handle_part(data, ctype, filename, payload, frequency)
+
+ def _handle_part(self, data, ctype, filename, payload, frequency):
+ raise NotImplementedError()
+
+
+def fixup_module(mod):
+ if not hasattr(mod, "handler_version"):
+ setattr(mod, "handler_version", 1)
+ if not hasattr(mod, 'list_types'):
+ def empty_types():
+ return []
+ setattr(mod, 'list_types', empty_types)
+ if not hasattr(mod, frequency):
+ setattr(mod, 'frequency', PER_INSTANCE)
+ if not hasattr(mod, 'handle_part'):
+ def empty_handler(data, ctype, filename, payload):
+ pass
+ setattr(mod, 'handle_part', empty_handler)
+ return mod
+
+
+def run_part(mod, data, ctype, filename, payload, frequency):
+ mod_freq = mod.frequency
+ if not (mod_freq == PER_ALWAYS or
+ (frequency == PER_INSTANCE and mod_freq == PER_INSTANCE)):
+ return
+ mod_ver = mod.handler_version
+ try:
+ if mod_ver == 1:
+ mod.handle_part(data, ctype, filename, payload)
+ else:
+ mod.handle_part(data, ctype, filename, payload, frequency)
+ except:
+ LOG.exception("Failed calling mod %s (%s, %s, %s) with frequency %s", mod, ctype, filename, mod_ver, frequency)
+
+
+def call_begin(mod, data, frequency):
+ run_part(mod, data, CONTENT_START, None, None, frequency)
+
+
+def call_end(mod, data, frequency):
+ run_part(mod, data, CONTENT_END, None, None, frequency)
+
+
+def walker_handle_handler(pdata, _ctype, _filename, payload):
+ curcount = pdata['handlercount']
+ modname = PART_HANDLER_FN_TMPL % (curcount)
+ frequency = pdata['frequency']
+ modfname = os.path.join(pdata['handlerdir'], "%s.py" % (modname))
+ # TODO: Check if path exists??
+ util.write_file(modfname, payload, 0600)
+ handlers = pdata['handlers']
+ try:
+ mod = fixup_module(importer.import_module(modname))
+ handlers.register(mod)
+ call_begin(mod, pdata['data'], frequency)
+ pdata['handlercount'] = curcount + 1
+ except:
+ LOG.exception("Failed at registered python file: %s", modfname)
+
+
+def walker_callback(pdata, ctype, filename, payload):
+ if ctype in PART_CONTENT_TYPES:
+ walker_handle_handler(pdata, ctype, filename, payload)
+ return
+ handlers = pdata['handlers']
+ if ctype not in handlers:
+ if ctype == NOT_MULTIPART_TYPE:
+ # Extract the first line or 24 bytes for displaying in the log
+ start = payload.split("\n", 1)[0][:24]
+ if start < payload:
+ details = "starting '%s...'" % start.encode("string-escape")
+ else:
+ details = repr(payload)
+ LOG.warning("Unhandled non-multipart userdata: %s", details)
+ return
+ run_part(handlers[ctype], pdata['data'], ctype, filename, payload, pdata['frequency'])
+
+
+# Callback is a function that will be called with
+# (data, content_type, filename, payload)
+def walk(msg, callback, data):
+ partnum = 0
+ for part in msg.walk():
+ # multipart/* are just containers
+ if part.get_content_maintype() == 'multipart':
+ continue
+
+ ctype = part.get_content_type()
+ if ctype is None:
+ ctype = OCTET_TYPE
+
+ filename = part.get_filename()
+ if not filename:
+ filename = PART_FN_TPL % (partnum)
+
+ callback(data, ctype, filename, part.get_payload(decode=True))
+ partnum = partnum + 1
+
+
+# Coverts a raw string into a mime message
+def convert_string(self, raw_data, headers=None):
+ if not raw_data:
+ raw_data = ''
+ if not headers:
+ headers = {}
+ data = util.decomp_str(raw_data)
+ if "mime-version:" in data[0:4096].lower():
+ msg = email.message_from_string(data)
+ for (key, val) in headers.items():
+ if key in msg:
+ msg.replace_header(key, val)
+ else:
+ msg[key] = val
+ else:
+ mtype = headers.get("Content-Type", NOT_MULTIPART_TYPE)
+ maintype, subtype = mtype.split("/", 1)
+ msg = MIMEBase(maintype, subtype, *headers)
+ msg.set_payload(data)
+ return msg
+
+
+def type_from_starts_with(payload, default=None):
+ for text in INCLUSION_SRCH:
+ if payload.startswith(text):
+ return INCLUSION_TYPES_MAP[text]
+ return default \ No newline at end of file
diff --git a/cloudinit/user_data/boot_hook.py b/cloudinit/user_data/boot_hook.py
new file mode 100644
index 00000000..4ce398ac
--- /dev/null
+++ b/cloudinit/user_data/boot_hook.py
@@ -0,0 +1,65 @@
+# vi: ts=4 expandtab
+#
+# Copyright (C) 2012 Canonical Ltd.
+# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
+# Copyright (C) 2012 Yahoo! Inc.
+#
+# Author: Scott Moser <scott.moser@canonical.com>
+# Author: Juerg Haefliger <juerg.haefliger@hp.com>
+# Author: Joshua Harlow <harlowja@yahoo-inc.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3, as
+# published by the Free Software Foundation.
+#
+# 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
+
+from cloudinit import log as logging
+from cloudinit import user_data as ud
+from cloudinit import util
+
+from cloudinit.settings import (PER_ALWAYS)
+
+LOG = logging.getLogger(__name__)
+
+
+class BootHookPartHandler(ud.PartHandler):
+ def __init__(self, boothook_dir, instance_id):
+ ud.PartHandler.__init__(self, PER_ALWAYS)
+ self.boothook_dir = boothook_dir
+ self.instance_id = instance_id
+
+ def list_types(self):
+ return [
+ ud.type_from_starts_with("#cloud-boothook"),
+ ]
+
+ def _handle_part(self, _data, ctype, filename, payload, _frequency):
+ if ctype in ud.CONTENT_SIGNALS:
+ return
+
+ filename = util.clean_filename(filename)
+ payload = util.dos2unix(payload)
+ prefix = "#cloud-boothook"
+ start = 0
+ if payload.startswith(prefix):
+ start = len(prefix) + 1
+
+ filepath = os.path.join(self.boothook_dir, filename)
+ util.write_file(filepath, payload[start:], 0700)
+ try:
+ env = os.environ.copy()
+ env['INSTANCE_ID'] = str(self.instance_id)
+ util.subp([filepath], env=env)
+ except util.ProcessExecutionError as e:
+ LOG.error("Boothooks script %s returned %s", filepath, e.exit_code)
+ except Exception as e:
+ LOG.error("Boothooks unknown exception %s when running %s", e, filepath)
diff --git a/cloudinit/user_data/cloud_config.py b/cloudinit/user_data/cloud_config.py
new file mode 100644
index 00000000..1c43f3a1
--- /dev/null
+++ b/cloudinit/user_data/cloud_config.py
@@ -0,0 +1,59 @@
+# vi: ts=4 expandtab
+#
+# Copyright (C) 2012 Canonical Ltd.
+# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
+# Copyright (C) 2012 Yahoo! Inc.
+#
+# Author: Scott Moser <scott.moser@canonical.com>
+# Author: Juerg Haefliger <juerg.haefliger@hp.com>
+# Author: Joshua Harlow <harlowja@yahoo-inc.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3, as
+# published by the Free Software Foundation.
+#
+# 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
+
+from cloudinit import log as logging
+from cloudinit import user_data as ud
+from cloudinit import util
+
+from cloudinit.settings import (PER_ALWAYS)
+
+LOG = logging.getLogger(__name__)
+
+
+class CloudConfigPartHandler(ud.PartHandler):
+ def __init__(self, cloud_fn):
+ ud.PartHandler.__init__(self, PER_ALWAYS)
+ self.cloud_buf = []
+ self.cloud_fn = cloud_fn
+
+ def list_types(self):
+ return [
+ ud.type_from_starts_with("#cloud-config"),
+ ]
+
+ def _handle_part(self, _data, ctype, filename, payload, _frequency):
+ if ctype == ud.CONTENT_START:
+ self.cloud_buf = []
+ return
+
+ if ctype == ud.CONTENT_END:
+ payload = "\n".join(self.cloud_buf)
+ util.write_file(self.cloud_fn, payload, 0600)
+ self.cloud_buf = []
+ return
+
+ filename = util.clean_filename(filename)
+ entry = "\n".join(["#%s" % (filename), str(payload)])
+ self.config_buf.append(entry)
diff --git a/cloudinit/user_data.py b/cloudinit/user_data/processor.py
index f35e5d38..d4de9470 100644
--- a/cloudinit/user_data.py
+++ b/cloudinit/user_data/processor.py
@@ -1,10 +1,12 @@
# vi: ts=4 expandtab
#
-# Copyright (C) 2009-2010 Canonical Ltd.
+# Copyright (C) 2012 Canonical Ltd.
# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
+# Copyright (C) 2012 Yahoo! Inc.
#
# Author: Scott Moser <scott.moser@canonical.com>
-# Author: Juerg Hafliger <juerg.haefliger@hp.com>
+# Author: Juerg Haefliger <juerg.haefliger@hp.com>
+# Author: Joshua Harlow <harlowja@yahoo-inc.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3, as
@@ -22,7 +24,6 @@ import hashlib
import os
import urllib
-import email
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
@@ -30,33 +31,17 @@ from email.mime.base import MIMEBase
import yaml
from cloudinit import url_helper
+from cloudinit import user_data as ud
from cloudinit import util
-
-# Different file beginnings to there content type
-INCLUSION_TYPES_MAP = {
- '#include': 'text/x-include-url',
- '#include-once': 'text/x-include-once-url',
- '#!': 'text/x-shellscript',
- '#cloud-config': 'text/cloud-config',
- '#upstart-job': 'text/upstart-job',
- '#part-handler': 'text/part-handler',
- '#cloud-boothook': 'text/cloud-boothook',
- '#cloud-config-archive': 'text/cloud-config-archive',
-}
-
# Various special content types
TYPE_NEEDED = ["text/plain", "text/x-not-multipart"]
INCLUDE_TYPES = ['text/x-include-url', 'text/x-include-once-url']
ARCHIVE_TYPES = ["text/cloud-config-archive"]
UNDEF_TYPE = "text/plain"
ARCHIVE_UNDEF_TYPE = "text/cloud-config"
-NOT_MULTIPART_TYPE = "text/x-not-multipart"
OCTET_TYPE = 'application/octet-stream'
-# Sorted longest first
-INCLUSION_SRCH = sorted(INCLUSION_TYPES_MAP.keys(), key=(lambda e: 0 - len(e)))
-
# Msg header used to track attachments
ATTACHMENT_FIELD = 'Number-Attachments'
@@ -64,16 +49,13 @@ ATTACHMENT_FIELD = 'Number-Attachments'
# When we want to make sure a entry isn't included more than once across sessions.
INCLUDE_ONCE_HASHER = 'md5'
-# For those pieces without filenames
-PART_FN_TPL = 'part-%03d'
-
class UserDataProcessor(object):
def __init__(self, paths):
self.paths = paths
def process(self, blob):
- base_msg = convert_string(blob)
+ base_msg = ud.convert_string(blob)
process_msg = MIMEMultipart()
self._process_msg(base_msg, process_msg)
return process_msg
@@ -92,7 +74,7 @@ class UserDataProcessor(object):
ctype_orig = UNDEF_TYPE
if ctype_orig in TYPE_NEEDED:
- ctype = type_from_starts_with(payload)
+ ctype = ud.type_from_starts_with(payload)
if ctype is None:
ctype = ctype_orig
@@ -146,7 +128,7 @@ class UserDataProcessor(object):
if not url_helper.ok_http_code(st):
content = ''
- new_msg = convert_string(content)
+ new_msg = ud.convert_string(content)
self._process_msg(new_msg, append_msg)
def _explode_archive(self, archive, append_msg):
@@ -173,7 +155,7 @@ class UserDataProcessor(object):
content = ent.get('content', '')
mtype = ent.get('type')
if not mtype:
- mtype = type_from_starts_with(content, ARCHIVE_UNDEF_TYPE)
+ mtype = ud.type_from_starts_with(content, ARCHIVE_UNDEF_TYPE)
maintype, subtype = mtype.split('/', 1)
if maintype == "text":
@@ -217,55 +199,7 @@ class UserDataProcessor(object):
"""
cur = self._multi_part_count(outer_msg)
if not part.get_filename():
- part.add_header('Content-Disposition', 'attachment', filename=PART_FN_TPL % (cur + 1))
+ fn = ud.PART_FN_TPL % (cur + 1)
+ part.add_header('Content-Disposition', 'attachment', filename=fn)
outer_msg.attach(part)
self._multi_part_count(outer_msg, cur + 1)
-
-
-# Callback is a function that will be called with
-# (data, content_type, filename, payload)
-def walk(ud_msg, callback, data):
- partnum = 0
- for part in ud_msg.walk():
- # multipart/* are just containers
- if part.get_content_maintype() == 'multipart':
- continue
-
- ctype = part.get_content_type()
- if ctype is None:
- ctype = OCTET_TYPE
-
- filename = part.get_filename()
- if not filename:
- filename = PART_FN_TPL % partnum
-
- callback(data, ctype, filename, part.get_payload(decode=True))
- partnum = partnum + 1
-
-
-def convert_string(self, raw_data, headers=None):
- if not data:
- data = ''
- if not headers:
- headers = {}
- data = util.decomp_str(raw_data)
- if "mime-version:" in data[0:4096].lower():
- msg = email.message_from_string(data)
- for (key, val) in headers.items():
- if key in msg:
- msg.replace_header(key, val)
- else:
- msg[key] = val
- else:
- mtype = headers.get("Content-Type", NOT_MULTIPART_TYPE)
- maintype, subtype = mtype.split("/", 1)
- msg = MIMEBase(maintype, subtype, *headers)
- msg.set_payload(data)
- return msg
-
-
-def type_from_starts_with(payload, default=None):
- for text in INCLUSION_SRCH:
- if payload.startswith(text):
- return INCLUSION_TYPES_MAP[text]
- return default
diff --git a/cloudinit/user_data/shell_script.py b/cloudinit/user_data/shell_script.py
new file mode 100644
index 00000000..d666b9c4
--- /dev/null
+++ b/cloudinit/user_data/shell_script.py
@@ -0,0 +1,53 @@
+# vi: ts=4 expandtab
+#
+# Copyright (C) 2012 Canonical Ltd.
+# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
+# Copyright (C) 2012 Yahoo! Inc.
+#
+# Author: Scott Moser <scott.moser@canonical.com>
+# Author: Juerg Haefliger <juerg.haefliger@hp.com>
+# Author: Joshua Harlow <harlowja@yahoo-inc.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3, as
+# published by the Free Software Foundation.
+#
+# 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
+
+from cloudinit import log as logging
+from cloudinit import user_data as ud
+from cloudinit import util
+
+from cloudinit.settings import (PER_INSTANCE)
+
+LOG = logging.getLogger(__name__)
+
+
+class ShellScriptPartHandler(ud.PartHandler):
+
+ def __init__(self, script_dir):
+ ud.PartHandler.__init__(self, PER_ALWAYS)
+ self.script_dir = script_dir
+
+ def list_types(self):
+ return [
+ ud.type_from_starts_with("#!"),
+ ]
+
+ def _handle_part(self, _data, ctype, filename, payload, _frequency):
+ if ctype in ud.CONTENT_SIGNALS:
+ # maybe delete existing things here
+ return
+
+ filename = util.clean_filename(filename)
+ payload = util.dos2unix(payload)
+ util.write_file(os.path.join(self.script_dir, filename), payload, 0700)
diff --git a/cloudinit/user_data/upstart_job.py b/cloudinit/user_data/upstart_job.py
new file mode 100644
index 00000000..d15e66c4
--- /dev/null
+++ b/cloudinit/user_data/upstart_job.py
@@ -0,0 +1,56 @@
+# vi: ts=4 expandtab
+#
+# Copyright (C) 2012 Canonical Ltd.
+# Copyright (C) 2012 Hewlett-Packard Development Company, L.P.
+# Copyright (C) 2012 Yahoo! Inc.
+#
+# Author: Scott Moser <scott.moser@canonical.com>
+# Author: Juerg Haefliger <juerg.haefliger@hp.com>
+# Author: Joshua Harlow <harlowja@yahoo-inc.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 3, as
+# published by the Free Software Foundation.
+#
+# 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
+
+from cloudinit import log as logging
+from cloudinit import user_data as ud
+from cloudinit import util
+
+from cloudinit.settings import (PER_INSTANCE)
+
+LOG = logging.getLogger(__name__)
+
+
+class UpstartJobPartHandler(ud.PartHandler):
+ def __init__(self, upstart_dir):
+ ud.PartHandler.__init__(self, PER_INSTANCE)
+ self.upstart_dir = upstart_dir
+
+ def list_types(self):
+ return [
+ ud.type_from_starts_with("#upstart-job"),
+ ]
+
+ def _handle_part(self, _data, ctype, filename, payload, frequency):
+ if ctype in ud.CONTENT_SIGNALS:
+ return
+
+ filename = utils.clean_filename(filename)
+ (name, ext) = os.path.splitext(filename)
+ ext = ext.lower()
+ if ext != ".conf":
+ filename = filename + ".conf"
+
+ payload = util.dos2unix(payload)
+ util.write_file(os.path.join(self.upstart_dir, filename), payload, 0644)