2007-06-24 14:43:48 +02:00
|
|
|
# Copyright (C) 2006-2007 Red Hat, Inc.
|
2006-10-15 01:08:44 +02:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
2008-10-28 14:19:01 +01:00
|
|
|
"""Shell side object which manages request to start activity
|
|
|
|
|
|
|
|
UNSTABLE. Activities are currently not allowed to run other activities so at
|
|
|
|
the moment there is no reason to stabilize this API.
|
|
|
|
"""
|
|
|
|
|
2006-08-09 02:02:34 +02:00
|
|
|
import logging
|
|
|
|
|
|
|
|
import dbus
|
|
|
|
import gobject
|
|
|
|
|
2007-04-09 20:40:56 +02:00
|
|
|
from sugar.presence import presenceservice
|
2007-02-22 00:07:08 +01:00
|
|
|
from sugar.activity.activityhandle import ActivityHandle
|
2007-02-21 20:56:14 +01:00
|
|
|
from sugar import util
|
2007-10-09 21:18:54 +02:00
|
|
|
from sugar import env
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2008-07-25 14:07:48 +02:00
|
|
|
from errno import EEXIST, ENOSPC
|
2007-11-09 18:11:43 +01:00
|
|
|
|
2007-08-27 18:25:45 +02:00
|
|
|
import os
|
2009-02-27 22:42:47 +01:00
|
|
|
import tempfile
|
|
|
|
import subprocess
|
|
|
|
import pwd
|
2007-08-27 18:25:45 +02:00
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
_SHELL_SERVICE = "org.laptop.Shell"
|
|
|
|
_SHELL_PATH = "/org/laptop/Shell"
|
|
|
|
_SHELL_IFACE = "org.laptop.Shell"
|
|
|
|
|
2007-09-14 16:16:54 +02:00
|
|
|
_DS_SERVICE = "org.laptop.sugar.DataStore"
|
|
|
|
_DS_INTERFACE = "org.laptop.sugar.DataStore"
|
|
|
|
_DS_PATH = "/org/laptop/sugar/DataStore"
|
|
|
|
|
2007-05-22 14:49:28 +02:00
|
|
|
_ACTIVITY_FACTORY_INTERFACE = "org.laptop.ActivityFactory"
|
|
|
|
|
2008-09-17 20:56:33 +02:00
|
|
|
# helper method to close all filedescriptors
|
|
|
|
# borrowed from subprocess.py
|
|
|
|
try:
|
|
|
|
MAXFD = os.sysconf("SC_OPEN_MAX")
|
2008-09-19 00:18:31 +02:00
|
|
|
except ValueError:
|
2008-09-17 20:56:33 +02:00
|
|
|
MAXFD = 256
|
|
|
|
def _close_fds():
|
|
|
|
for i in xrange(3, MAXFD):
|
|
|
|
try:
|
|
|
|
os.close(i)
|
2008-09-19 11:38:23 +02:00
|
|
|
# pylint: disable-msg=W0704
|
2008-09-19 00:32:46 +02:00
|
|
|
except Exception:
|
2008-09-19 11:38:23 +02:00
|
|
|
pass
|
2007-11-28 16:10:27 +01:00
|
|
|
|
2007-03-15 12:47:10 +01:00
|
|
|
def create_activity_id():
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Generate a new, unique ID for this activity"""
|
2007-04-09 20:40:56 +02:00
|
|
|
pservice = presenceservice.get_instance()
|
2007-02-22 01:23:58 +01:00
|
|
|
|
|
|
|
# create a new unique activity ID
|
|
|
|
i = 0
|
|
|
|
act_id = None
|
|
|
|
while i < 10:
|
|
|
|
act_id = util.unique_id()
|
|
|
|
i += 1
|
|
|
|
|
|
|
|
# check through network activities
|
|
|
|
found = False
|
|
|
|
activities = pservice.get_activities()
|
|
|
|
for act in activities:
|
2007-05-08 17:19:30 +02:00
|
|
|
if act_id == act.props.id:
|
2007-02-22 01:23:58 +01:00
|
|
|
found = True
|
|
|
|
break
|
2007-04-09 21:08:04 +02:00
|
|
|
if not found:
|
|
|
|
return act_id
|
|
|
|
raise RuntimeError("Cannot generate unique activity id.")
|
2007-02-22 01:23:58 +01:00
|
|
|
|
2007-10-09 15:25:24 +02:00
|
|
|
def get_environment(activity):
|
|
|
|
environ = os.environ.copy()
|
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
bin_path = os.path.join(activity.get_path(), 'bin')
|
2007-10-30 23:38:48 +01:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
activity_root = env.get_profile_path(activity.get_bundle_id())
|
2007-10-30 23:38:48 +01:00
|
|
|
if not os.path.exists(activity_root):
|
|
|
|
os.mkdir(activity_root)
|
|
|
|
|
2007-11-07 12:13:17 +01:00
|
|
|
data_dir = os.path.join(activity_root, 'instance')
|
|
|
|
if not os.path.exists(data_dir):
|
|
|
|
os.mkdir(data_dir)
|
|
|
|
|
2007-11-05 21:54:02 +01:00
|
|
|
data_dir = os.path.join(activity_root, 'data')
|
|
|
|
if not os.path.exists(data_dir):
|
2007-10-30 23:38:48 +01:00
|
|
|
os.mkdir(data_dir)
|
|
|
|
|
2007-11-05 21:54:02 +01:00
|
|
|
tmp_dir = os.path.join(activity_root, 'tmp')
|
|
|
|
if not os.path.exists(tmp_dir):
|
2007-10-30 23:38:48 +01:00
|
|
|
os.mkdir(tmp_dir)
|
2007-10-30 15:03:27 +01:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
environ['SUGAR_BUNDLE_PATH'] = activity.get_path()
|
|
|
|
environ['SUGAR_BUNDLE_ID'] = activity.get_bundle_id()
|
2007-10-30 15:03:27 +01:00
|
|
|
environ['SUGAR_ACTIVITY_ROOT'] = activity_root
|
2007-10-09 15:25:24 +02:00
|
|
|
environ['PATH'] = bin_path + ':' + environ['PATH']
|
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
if activity.get_path().startswith(env.get_user_activities_path()):
|
|
|
|
environ['SUGAR_LOCALEDIR'] = os.path.join(activity.get_path(), 'locale')
|
2008-09-25 20:19:05 +02:00
|
|
|
|
2007-10-09 15:25:24 +02:00
|
|
|
return environ
|
|
|
|
|
|
|
|
def get_command(activity, activity_id=None, object_id=None, uri=None):
|
|
|
|
if not activity_id:
|
|
|
|
activity_id = create_activity_id()
|
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
command = activity.get_command().split(' ')
|
|
|
|
command.extend(['-b', activity.get_bundle_id()])
|
2007-10-23 18:22:59 +02:00
|
|
|
command.extend(['-a', activity_id])
|
2007-10-09 15:25:24 +02:00
|
|
|
|
|
|
|
if object_id is not None:
|
2007-10-23 18:22:59 +02:00
|
|
|
command.extend(['-o', object_id])
|
2007-10-09 15:25:24 +02:00
|
|
|
if uri is not None:
|
2007-10-23 18:22:59 +02:00
|
|
|
command.extend(['-u', uri])
|
|
|
|
|
2008-10-21 17:07:03 +02:00
|
|
|
# if the command is in $BUNDLE_ROOT/bin, execute the absolute path so there
|
|
|
|
# is no need to mangle with the shell's PATH
|
|
|
|
if '/' not in command[0]:
|
|
|
|
bin_path = os.path.join(activity.get_path(), 'bin')
|
|
|
|
absolute_path = os.path.join(bin_path, command[0])
|
|
|
|
if os.path.exists(absolute_path):
|
|
|
|
command[0] = absolute_path
|
2008-10-21 16:12:22 +02:00
|
|
|
|
2009-08-24 12:54:02 +02:00
|
|
|
logging.debug('launching: %r', command)
|
2007-10-09 15:25:24 +02:00
|
|
|
|
|
|
|
return command
|
|
|
|
|
2007-11-05 19:55:56 +01:00
|
|
|
def open_log_file(activity):
|
|
|
|
i = 1
|
|
|
|
while True:
|
2008-10-06 15:54:46 +02:00
|
|
|
path = env.get_logs_path('%s-%s.log' % (activity.get_bundle_id(), i))
|
2007-11-05 19:55:56 +01:00
|
|
|
try:
|
|
|
|
fd = os.open(path, os.O_EXCL | os.O_CREAT \
|
|
|
|
| os.O_SYNC | os.O_WRONLY, 0644)
|
|
|
|
f = os.fdopen(fd, 'w', 0)
|
|
|
|
return (path, f)
|
2007-11-09 18:11:43 +01:00
|
|
|
except OSError, e:
|
|
|
|
if e.errno == EEXIST:
|
|
|
|
i += 1
|
2008-07-25 14:07:48 +02:00
|
|
|
elif e.errno == ENOSPC:
|
|
|
|
# not the end of the world; let's try to keep going.
|
|
|
|
return ('/dev/null', open('/dev/null','w'))
|
2007-11-09 18:11:43 +01:00
|
|
|
else:
|
|
|
|
raise e
|
2007-10-09 18:58:39 +02:00
|
|
|
|
2007-01-07 06:04:30 +01:00
|
|
|
class ActivityCreationHandler(gobject.GObject):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Sugar-side activity creation interface
|
2007-11-05 19:55:56 +01:00
|
|
|
|
2007-04-10 04:47:37 +02:00
|
|
|
This object uses a dbus method on the ActivityFactory
|
2007-11-05 19:55:56 +01:00
|
|
|
service to create the new activity. It generates
|
2007-04-10 04:47:37 +02:00
|
|
|
GObject events in response to the success/failure of
|
2007-11-05 19:55:56 +01:00
|
|
|
activity startup using callbacks to the service's
|
2007-04-10 04:47:37 +02:00
|
|
|
create call.
|
|
|
|
"""
|
2006-08-09 02:02:34 +02:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
def __init__(self, bundle, handle):
|
2007-04-10 04:47:37 +02:00
|
|
|
"""Initialise the handler
|
2007-11-05 19:55:56 +01:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
bundle -- the ActivityBundle to launch
|
2007-11-05 19:55:56 +01:00
|
|
|
activity_handle -- stores the values which are to
|
2007-04-10 04:47:37 +02:00
|
|
|
be passed to the service to uniquely identify
|
2007-11-05 19:55:56 +01:00
|
|
|
the activity to be created and the sharing
|
2007-04-10 04:47:37 +02:00
|
|
|
service that may or may not be connected with it
|
2007-11-05 19:55:56 +01:00
|
|
|
|
2007-04-10 04:47:37 +02:00
|
|
|
sugar.activity.activityhandle.ActivityHandle instance
|
2007-11-05 19:55:56 +01:00
|
|
|
|
|
|
|
calls the "create" method on the service for this
|
|
|
|
particular activity type and registers the
|
|
|
|
_reply_handler and _error_handler methods on that
|
2007-04-10 04:47:37 +02:00
|
|
|
call's results.
|
2007-11-05 19:55:56 +01:00
|
|
|
|
|
|
|
The specific service which creates new instances of this
|
2007-04-10 04:47:37 +02:00
|
|
|
particular type of activity is created during the activity
|
2007-11-05 19:55:56 +01:00
|
|
|
registration process in shell bundle registry which creates
|
2007-04-10 04:47:37 +02:00
|
|
|
service definition files for each registered bundle type.
|
2007-08-27 18:25:45 +02:00
|
|
|
|
|
|
|
If the file '/etc/olpc-security' exists, then activity launching
|
|
|
|
will be delegated to the prototype 'Rainbow' security service.
|
2007-04-10 04:47:37 +02:00
|
|
|
"""
|
2007-01-07 06:04:30 +01:00
|
|
|
gobject.GObject.__init__(self)
|
2007-11-08 23:37:15 +01:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
self._bundle = bundle
|
|
|
|
self._service_name = bundle.get_bundle_id()
|
2007-09-14 16:16:54 +02:00
|
|
|
self._handle = handle
|
2008-01-11 20:37:23 +01:00
|
|
|
|
2007-02-21 17:53:44 +01:00
|
|
|
bus = dbus.SessionBus()
|
2007-07-20 13:15:11 +02:00
|
|
|
bus_object = bus.get_object(_SHELL_SERVICE, _SHELL_PATH)
|
|
|
|
self._shell = dbus.Interface(bus_object, _SHELL_IFACE)
|
|
|
|
|
2009-08-01 19:24:21 +02:00
|
|
|
if handle.activity_id is not None and handle.object_id is None:
|
2007-09-14 16:16:54 +02:00
|
|
|
datastore = dbus.Interface(
|
|
|
|
bus.get_object(_DS_SERVICE, _DS_PATH), _DS_INTERFACE)
|
2009-08-01 19:24:21 +02:00
|
|
|
datastore.find({'activity_id': self._handle.activity_id},
|
|
|
|
[],
|
2007-09-14 16:16:54 +02:00
|
|
|
reply_handler=self._find_object_reply_handler,
|
2008-10-16 20:41:45 +02:00
|
|
|
error_handler=self._find_object_error_handler,
|
|
|
|
byte_arrays=True)
|
2007-07-20 13:15:11 +02:00
|
|
|
else:
|
|
|
|
self._launch_activity()
|
2007-06-29 19:05:10 +02:00
|
|
|
|
2007-07-20 13:15:11 +02:00
|
|
|
def _launch_activity(self):
|
2007-09-14 16:16:54 +02:00
|
|
|
if self._handle.activity_id != None:
|
|
|
|
self._shell.ActivateActivity(self._handle.activity_id,
|
|
|
|
reply_handler=self._activate_reply_handler,
|
|
|
|
error_handler=self._activate_error_handler)
|
|
|
|
else:
|
|
|
|
self._create_activity()
|
|
|
|
|
|
|
|
def _create_activity(self):
|
|
|
|
if self._handle.activity_id is None:
|
2007-11-05 19:55:56 +01:00
|
|
|
self._handle.activity_id = create_activity_id()
|
2007-09-14 16:16:54 +02:00
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
self._shell.NotifyLaunch(
|
2007-09-14 16:16:54 +02:00
|
|
|
self._service_name, self._handle.activity_id,
|
2007-06-29 19:05:10 +02:00
|
|
|
reply_handler=self._no_reply_handler,
|
|
|
|
error_handler=self._notify_launch_error_handler)
|
2007-05-24 19:50:17 +02:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
environ = get_environment(self._bundle)
|
|
|
|
(log_path, log_file) = open_log_file(self._bundle)
|
|
|
|
command = get_command(self._bundle, self._handle.activity_id,
|
|
|
|
self._handle.object_id,
|
|
|
|
self._handle.uri)
|
|
|
|
|
2009-08-01 19:24:21 +02:00
|
|
|
environment_dir = None
|
2009-08-01 19:36:23 +02:00
|
|
|
if os.path.exists('/etc/olpc-security'):
|
2009-08-01 19:24:21 +02:00
|
|
|
environment_dir = tempfile.mkdtemp()
|
2009-02-27 22:42:47 +01:00
|
|
|
command = ['/usr/bin/sudo', '-E', '--',
|
|
|
|
'/usr/bin/rainbow-run',
|
|
|
|
'-v', '-v',
|
|
|
|
'-a', '/usr/bin/rainbow-sugarize',
|
|
|
|
'-s', '/var/spool/rainbow/2',
|
|
|
|
'-f', '1',
|
|
|
|
'-f', '2',
|
|
|
|
'-c', self._bundle.get_path(),
|
|
|
|
'-u', pwd.getpwuid(os.getuid()).pw_name,
|
|
|
|
'-i', environ['SUGAR_BUNDLE_ID'],
|
2009-08-01 19:24:21 +02:00
|
|
|
'-e', environment_dir,
|
2009-02-27 22:42:47 +01:00
|
|
|
'--'
|
|
|
|
] + command
|
2009-08-01 19:24:21 +02:00
|
|
|
|
|
|
|
for key, value in environ.items():
|
|
|
|
file_path = os.path.join(environment_dir, str(key))
|
|
|
|
open(file_path, 'w').write(str(value))
|
|
|
|
|
2009-02-27 22:42:47 +01:00
|
|
|
log_file.write(' '.join(command) + '\n\n')
|
|
|
|
|
2009-08-01 19:24:21 +02:00
|
|
|
dev_null = file('/dev/null', 'r')
|
|
|
|
child = subprocess.Popen([str(s) for s in command],
|
|
|
|
env=environ,
|
|
|
|
cwd=str(self._bundle.get_path()),
|
|
|
|
close_fds=True,
|
|
|
|
stdin=dev_null.fileno(),
|
|
|
|
stdout=log_file.fileno(),
|
2009-02-27 22:42:47 +01:00
|
|
|
stderr=log_file.fileno())
|
2009-08-01 19:24:21 +02:00
|
|
|
|
|
|
|
gobject.child_watch_add(child.pid,
|
2009-08-25 19:21:55 +02:00
|
|
|
_child_watch_cb,
|
2009-08-01 19:24:21 +02:00
|
|
|
(environment_dir, log_file))
|
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
def _no_reply_handler(self, *args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _notify_launch_failure_error_handler(self, err):
|
2009-08-24 12:54:02 +02:00
|
|
|
logging.error('Notify launch failure failed %s', err)
|
2007-06-29 19:05:10 +02:00
|
|
|
|
|
|
|
def _notify_launch_error_handler(self, err):
|
2009-08-24 12:54:02 +02:00
|
|
|
logging.debug('Notify launch failed %s', err)
|
2007-06-29 19:05:10 +02:00
|
|
|
|
2007-07-20 13:15:11 +02:00
|
|
|
def _activate_reply_handler(self, activated):
|
|
|
|
if not activated:
|
2007-09-14 16:16:54 +02:00
|
|
|
self._create_activity()
|
2007-07-20 13:15:11 +02:00
|
|
|
|
|
|
|
def _activate_error_handler(self, err):
|
2009-08-24 12:54:02 +02:00
|
|
|
logging.error('Activity activation request failed %s', err)
|
2007-07-20 13:15:11 +02:00
|
|
|
|
2007-12-14 13:26:34 +01:00
|
|
|
def _create_reply_handler(self):
|
2009-08-24 12:54:02 +02:00
|
|
|
logging.debug('Activity created %s (%s).',
|
|
|
|
self._handle.activity_id, self._service_name)
|
2007-01-07 06:04:30 +01:00
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
def _create_error_handler(self, err):
|
2009-08-24 12:54:02 +02:00
|
|
|
logging.error("Couldn't create activity %s (%s): %s",
|
|
|
|
self._handle.activity_id, self._service_name, err)
|
2007-06-29 19:05:10 +02:00
|
|
|
self._shell.NotifyLaunchFailure(
|
2007-09-14 16:16:54 +02:00
|
|
|
self._handle.activity_id, reply_handler=self._no_reply_handler,
|
|
|
|
error_handler=self._notify_launch_failure_error_handler)
|
|
|
|
|
|
|
|
def _find_object_reply_handler(self, jobjects, count):
|
|
|
|
if count > 0:
|
|
|
|
if count > 1:
|
|
|
|
logging.debug("Multiple objects has the same activity_id.")
|
|
|
|
self._handle.object_id = jobjects[0]['uid']
|
2009-02-24 10:34:22 +01:00
|
|
|
self._launch_activity()
|
2007-09-14 16:16:54 +02:00
|
|
|
|
|
|
|
def _find_object_error_handler(self, err):
|
2009-08-24 12:54:02 +02:00
|
|
|
logging.error('Datastore find failed %s', err)
|
2009-02-24 10:34:22 +01:00
|
|
|
self._launch_activity()
|
2007-01-07 06:04:30 +01:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
def create(bundle, activity_handle=None):
|
2007-01-07 06:04:30 +01:00
|
|
|
"""Create a new activity from its name."""
|
2007-02-22 01:23:58 +01:00
|
|
|
if not activity_handle:
|
2007-09-14 16:16:54 +02:00
|
|
|
activity_handle = ActivityHandle()
|
2008-10-06 15:54:46 +02:00
|
|
|
return ActivityCreationHandler(bundle, activity_handle)
|
2007-02-22 01:23:58 +01:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
def create_with_uri(bundle, uri):
|
2007-02-22 01:23:58 +01:00
|
|
|
"""Create a new activity and pass the uri as handle."""
|
2007-09-14 16:16:54 +02:00
|
|
|
activity_handle = ActivityHandle(uri=uri)
|
2008-10-06 15:54:46 +02:00
|
|
|
return ActivityCreationHandler(bundle, activity_handle)
|
2007-03-02 22:22:19 +01:00
|
|
|
|
2008-10-06 15:54:46 +02:00
|
|
|
def create_with_object_id(bundle, object_id):
|
2007-03-02 22:22:19 +01:00
|
|
|
"""Create a new activity and pass the object id as handle."""
|
2007-09-14 16:16:54 +02:00
|
|
|
activity_handle = ActivityHandle(object_id=object_id)
|
2008-10-06 15:54:46 +02:00
|
|
|
return ActivityCreationHandler(bundle, activity_handle)
|
2009-08-25 17:40:23 +02:00
|
|
|
|
|
|
|
# FIXME we use standalone method here instead of ActivityCreationHandler's
|
|
|
|
# member to have workaround code, see #1123
|
2009-08-25 19:21:55 +02:00
|
|
|
def _child_watch_cb(pid, condition, user_data):
|
2009-08-25 17:40:23 +02:00
|
|
|
environment_dir, log_file = user_data
|
|
|
|
if environment_dir is not None:
|
|
|
|
subprocess.call(['/bin/rm', '-rf', environment_dir])
|
|
|
|
try:
|
|
|
|
log_file.write('Activity died: pid %s condition %s data %s\n' %
|
|
|
|
(pid, condition, user_data))
|
|
|
|
finally:
|
|
|
|
log_file.close()
|
|
|
|
|
|
|
|
# try to reap zombies in case SIGCHLD has not been set to SIG_IGN
|
|
|
|
try:
|
|
|
|
os.waitpid(pid, 0)
|
|
|
|
except OSError:
|
|
|
|
# SIGCHLD = SIG_IGN, no zombies
|
|
|
|
pass
|