source: mainline/uspace/srv/sysman/units/unit_svc.c@ 8ae8262

Last change on this file since 8ae8262 was ed5367b, checked in by Matthieu Riolo <matthieu.riolo@…>, 6 years ago

sysman: Implement stopping units

Currently fails service monitoring because of taskman flawed event flags.
However, job closure works well.

  • Property mode set to 100644
File size: 4.2 KB
Line 
1/*
2 * Copyright (c) 2015 Michal Koutny
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include <assert.h>
30#include <errno.h>
31#include <io/console.h> // temporary
32#include <stdlib.h>
33#include <task.h>
34
35#include "log.h"
36#include "unit.h"
37
38static const char *section_name = "Service";
39
40static config_item_t unit_configuration[] = {
41 {"ExecStart", &util_parse_command, offsetof(unit_svc_t, exec_start), NULL},
42 CONFIGURATION_ITEM_SENTINEL
43};
44
45static void unit_svc_init(unit_t *unit)
46{
47 unit_svc_t *u_svc = CAST_SVC(unit);
48 assert(u_svc);
49 util_command_init(&u_svc->exec_start);
50}
51
52static void unit_svc_destroy(unit_t *unit)
53{
54 assert(unit->type == UNIT_SERVICE);
55 unit_svc_t *u_svc = CAST_SVC(unit);
56
57 util_command_deinit(&u_svc->exec_start);
58}
59
60static int unit_svc_load(unit_t *unit, ini_configuration_t *ini_conf,
61 text_parse_t *text_parse)
62{
63 unit_svc_t *u_svc = CAST_SVC(unit);
64 assert(u_svc);
65
66 ini_section_t *section = ini_get_section(ini_conf, section_name);
67 if (section == NULL) {
68 sysman_log(LVL_ERROR,
69 "Expected section '%s' in configuration of unit '%s'",
70 section_name, unit_name(unit));
71 return ENOENT;
72 }
73
74 return config_load_ini_section(unit_configuration, section, u_svc,
75 text_parse);
76}
77
78static int unit_svc_start(unit_t *unit)
79{
80 unit_svc_t *u_svc = CAST_SVC(unit);
81 assert(u_svc);
82
83
84 // TODO think about unit's lifecycle (is STOPPED only acceptable?)
85 assert(unit->state == STATE_STOPPED);
86
87 int rc = task_spawnv(&u_svc->main_task_id, NULL, u_svc->exec_start.path,
88 u_svc->exec_start.argv);
89
90 if (rc != EOK) {
91 unit->state = STATE_FAILED;
92 return rc;
93 }
94
95 unit->state = STATE_STARTING;
96
97 /*
98 * Workaround to see log output even after devman starts (and overrides
99 * kernel's frame buffer.
100 * TODO move to task retval/exposee created handler
101 */
102 if (str_cmp(unit->name, "devman.svc") == 0) {
103 async_usleep(100000);
104 if (console_kcon()) {
105 sysman_log(LVL_DEBUG2, "%s: Kconsole grabbed.", __func__);
106 } else {
107 sysman_log(LVL_DEBUG2, "%s: no kconsole.", __func__);
108 }
109 }
110
111 return EOK;
112}
113
114static int unit_svc_stop(unit_t *unit)
115{
116 unit_svc_t *u_svc = CAST_SVC(unit);
117 assert(u_svc);
118
119
120 // TODO think about unit's lifecycle (is STOPPED only acceptable?)
121 // note: May change when job cancellation is possible.
122 assert(unit->state == STATE_STARTED);
123
124 int rc = task_kill(u_svc->main_task_id);
125
126 if (rc != EOK) {
127 /* Task may still be running, but be conservative about unit's
128 * state. */
129 unit->state = STATE_FAILED;
130 return rc;
131 }
132
133 unit->state = STATE_STOPPING;
134
135 return EOK;
136}
137
138
139static void unit_svc_exposee_created(unit_t *unit)
140{
141 assert(CAST_SVC(unit));
142 assert(unit->state == STATE_STOPPED || unit->state == STATE_STARTING || unit->state==STATE_STARTED);
143
144 /* Exposee itself doesn't represent started unit. */
145 //unit->state = STATE_STARTED;
146 //unit_notify_state(unit);
147}
148
149static void unit_svc_fail(unit_t *unit)
150{
151 // TODO implement
152}
153
154DEFINE_UNIT_VMT(unit_svc)
155
Note: See TracBrowser for help on using the repository browser.