aboutsummaryrefslogtreecommitdiff
path: root/src/sysvinit.c
blob: e09802f93d16853b17cbf66ffb247a4bf20cae10 (plain)
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
/* This file is part of GNU Pies.
   Copyright (C) 2013 Sergey Poznyakoff

   GNU Pies is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   GNU Pies 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 GNU Pies.  If not, see <http://www.gnu.org/licenses/>. */

#include "pies.h"

enum boot_state
  {
    sysinit,
    boot,
    single0,
    single1,
    normal,
    max_boot_state
  };

static char *boot_state_name[] = {
  "sysinit",
  "boot",
  "single0",
  "single1",
  "normal"
};

static char boot_state_str[] = "#*sS ";

static const char valid_runlevels[] = "0123456789S";

static int boot_trans_tab[max_boot_state][sizeof(valid_runlevels)-1]  = {
  /*                    0,       1,       2,       3,       4,             */
  /*                         5,       6,       7,       8,       9,      S */
  /* sysinit */ {    boot,    boot,    boot,    boot,    boot,
		          boot,    boot,    boot,    boot,    boot, single0 },
  /* boot    */ {  normal,  normal,  normal,  normal,  normal,
		        normal,  normal,  normal,  normal,  normal, single1 },
  /* single0 */ {  normal,  normal,  normal,  normal,  normal,
		        normal,  normal,  normal,  normal,  normal, single0 },
  /* single1 */ {  normal,  normal,  normal,  normal,  normal,
		        normal,  normal,  normal,  normal,  normal, single1 },
  /* normal  */ {  normal,  normal,  normal,  normal,  normal,
		        normal,  normal,  normal,  normal,  normal, single1 },
};

enum boot_state boot_state;
int runlevel;

int initdefault;               /* Default runlevel */
int dfl_level;

static int
runlevel_index (int n)
{
  char *p = strchr (valid_runlevels, n);
  if (!p)
    return -1;
  return p - valid_runlevels;
}

int
runlevel_match (struct component *comp)
{
  if (init_process)
    {
      switch (boot_state)
	{
	case sysinit:
	  return comp->mode == pies_comp_sysinit;
	  
	case boot:
	  return comp->mode == pies_comp_boot ||
	         comp->mode == pies_comp_bootwait;
	  
	case single0:
	case single1:
	case normal:
	  switch (comp->mode)
	    {
	    case pies_comp_sysinit:
	    case pies_comp_boot:
	    case pies_comp_bootwait:
	      return 0;
	    case pies_comp_powerfail:
	    case pies_comp_powerwait:
	    case pies_comp_powerokwait:
	    case pies_comp_ctrlaltdel:
	    case pies_comp_ondemand:
	    case pies_comp_powerfailnow:
	    case pies_comp_kbrequest:
	      /* FIXME */
	      return 0;
	    }
	  
	  if (!comp->runlevels)
	    return 1;
	  return !!strchr (comp->runlevels, runlevel);
	}
    }
  return 1;
}

void
inittrans ()
{
  int n;
  int newlevel = 0;
  enum boot_state newstate;
  
  if (progman_running_p ())
    /* Noting to do if there are processes left in the previous runlevel */
    return;

  n = runlevel_index (runlevel);
  if (n == -1)
    n = 11; /* assume S */
  
  newstate = boot_trans_tab[boot_state][n];
  if (newstate != boot_state)
    {
      debug (1, ("STATE TRANS: %s -> %s", boot_state_name[boot_state],
		 boot_state_name[newstate]));
      boot_state = newstate;
    }
  
  switch (boot_state)
    {
    case sysinit:
    case boot:
      break;
    case single0:
    case single1:
      newlevel = 'S';
      break;
    case normal:
      /* boot -> normal */
      newlevel = dfl_level ? dfl_level : initdefault;
    }
  if (newlevel && newlevel != runlevel)
    {
      debug (1, ("RL TRANS: %c -> %c", runlevel, newlevel));
      runlevel = newlevel;
    }
}

/* Return true if the progman should wait for the component to
   terminate. */
int
is_comp_wait (struct component *comp)
{
  switch (comp->mode)
    {
    case pies_comp_boot:
    case pies_comp_powerfail:
    case pies_comp_ctrlaltdel:
    case pies_comp_powerfailnow:
    case pies_comp_kbrequest:
      return 0;
    }
  return 1;
}
  

Return to:

Send suggestions and report system problems to the System administrator.