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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
|
/* main.c - boot messages monitor
*
* Copyright (C) 2007 Red Hat, Inc
*
* This file 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 2 of the License,
* or (at your option) any later version.
*
* This file 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; see the file COPYING. If not, write to the Free
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* Written by: Ray Strode <rstrode@redhat.com>
*/
#include "config.h"
#include <dirent.h>
#include <fcntl.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/mount.h>
#include <sys/types.h>
#include <sysexits.h>
#include <unistd.h>
#include "ply-boot-server.h"
#include "ply-boot-splash.h"
#include "ply-event-loop.h"
#include "ply-logger.h"
#include "ply-terminal-session.h"
#include "ply-utils.h"
#ifndef PLY_WORKING_DIRECTORY
#define PLY_WORKING_DIRECTORY "/var/run/plymouth"
#endif
#ifndef PLY_MAX_COMMAND_LINE_SIZE
#define PLY_MAX_COMMAND_LINE_SIZE 512
#endif
typedef struct
{
ply_event_loop_t *loop;
ply_boot_server_t *boot_server;
ply_window_t *window;
ply_boot_splash_t *boot_splash;
ply_terminal_session_t *session;
ply_buffer_t *boot_buffer;
int original_root_dir_fd;
char kernel_command_line[PLY_MAX_COMMAND_LINE_SIZE];
} state_t;
static ply_boot_splash_t *start_boot_splash (state_t *state,
const char *module_path);
static void
on_session_start (state_t *state)
{
ply_trace ("changing to original root fs");
if (fchdir (state->original_root_dir_fd) < 0)
{
ply_trace ("Could not change to original root directory "
"to start session: %m");
return;
}
}
static void
on_session_output (state_t *state,
const char *output,
size_t size)
{
ply_buffer_append_bytes (state->boot_buffer, output, size);
if (state->boot_splash != NULL)
ply_boot_splash_update_output (state->boot_splash,
output, size);
}
static void
on_session_finished (state_t *state)
{
ply_log ("\nSession finished...exiting logger\n");
ply_flush_log ();
ply_event_loop_exit (state->loop, 1);
}
static void
on_update (state_t *state,
const char *status)
{
ply_trace ("updating status to '%s'", status);
if (state->boot_splash != NULL)
ply_boot_splash_update_status (state->boot_splash,
status);
}
typedef struct
{
ply_boot_server_password_answer_handler_t handler;
void *data;
state_t *state;
} password_answer_closure_t;
static void
on_password_answer (password_answer_closure_t *closure,
const char *password)
{
closure->handler (closure->data, password, closure->state->boot_server);
}
static void
on_ask_for_password (state_t *state,
ply_boot_server_password_answer_handler_t answer_handler,
void *answer_data)
{
password_answer_closure_t *closure;
closure = malloc (sizeof (password_answer_closure_t));
closure->handler = answer_handler;
closure->data = answer_data;
closure->state = state;
ply_boot_splash_ask_for_password (state->boot_splash,
(ply_boot_splash_password_answer_handler_t)
on_password_answer, closure);
}
static void
on_system_initialized (state_t *state)
{
ply_trace ("system now initialized, ready to mount root filesystem");
mknod ("/dev/root", 0600 | S_IFBLK, makedev (253, 0));
mount("/dev/root", "/sysroot", "ext3", 0, NULL);
ply_terminal_session_open_log (state->session,
"/sysroot/var/log/bootmessages.log");
}
static void
on_show_splash (state_t *state)
{
ply_trace ("Showing splash screen");
state->boot_splash = start_boot_splash (state,
PLYMOUTH_PLUGIN_PATH "spinfinity.so");
if (state->boot_splash == NULL)
{
ply_trace ("Could not start graphical splash screen,"
"showing text splash screen");
state->boot_splash = start_boot_splash (state,
PLYMOUTH_PLUGIN_PATH "text.so");
}
if (state->boot_splash == NULL)
ply_error ("could not start boot splash: %m");
}
static void
on_quit (state_t *state)
{
ply_trace ("time to quit, closing log");
ply_terminal_session_close_log (state->session);
ply_trace ("hiding splash");
if (state->boot_splash != NULL)
ply_boot_splash_hide (state->boot_splash);
ply_trace ("exiting event loop");
ply_event_loop_exit (state->loop, 0);
ply_trace ("switching root dir");
fchdir (state->original_root_dir_fd);
chroot (".");
ply_trace ("unmounting temporary filesystem mounts");
ply_unmount_filesystem (PLY_WORKING_DIRECTORY "/sysroot");
ply_unmount_filesystem (PLY_WORKING_DIRECTORY "/proc");
ply_unmount_filesystem (PLY_WORKING_DIRECTORY "/dev/pts");
ply_unmount_filesystem (PLY_WORKING_DIRECTORY);
}
static ply_boot_server_t *
start_boot_server (state_t *state)
{
ply_boot_server_t *server;
server = ply_boot_server_new ((ply_boot_server_update_handler_t) on_update,
(ply_boot_server_ask_for_password_handler_t) on_ask_for_password,
(ply_boot_server_show_splash_handler_t) on_show_splash,
(ply_boot_server_system_initialized_handler_t) on_system_initialized,
(ply_boot_server_quit_handler_t) on_quit,
state);
if (!ply_boot_server_listen (server))
{
ply_save_errno ();
ply_boot_server_free (server);
ply_restore_errno ();
return NULL;
}
ply_boot_server_attach_to_event_loop (server, state->loop);
return server;
}
static void
on_escape_pressed (state_t *state)
{
ply_boot_splash_hide (state->boot_splash);
ply_boot_splash_free (state->boot_splash);
state->boot_splash = start_boot_splash (state, PLYMOUTH_PLUGIN_PATH "details.so");
}
static ply_window_t *
create_window (state_t *state,
const char *tty)
{
ply_window_t *window;
ply_trace ("creating window for %s", tty);
window = ply_window_new (tty);
ply_trace ("attaching window to event loop");
ply_window_attach_to_event_loop (window, state->loop);
ply_trace ("opening window");
if (!ply_window_open (window))
{
ply_save_errno ();
ply_trace ("could not open window: %m");
ply_window_free (window);
ply_restore_errno ();
return NULL;
}
ply_trace ("listening for escape key");
ply_window_set_escape_handler (window, (ply_window_escape_handler_t)
on_escape_pressed, state);
return window;
}
static ply_boot_splash_t *
start_boot_splash (state_t *state,
const char *module_path)
{
ply_boot_splash_t *splash;
ply_trace ("Loading boot splash plugin '%s'",
module_path);
splash = ply_boot_splash_new (module_path, state->window, state->boot_buffer);
ply_trace ("attaching plugin to event loop");
ply_boot_splash_attach_to_event_loop (splash, state->loop);
ply_trace ("showing plugin");
if (!ply_boot_splash_show (splash))
{
ply_save_errno ();
ply_boot_splash_free (splash);
ply_restore_errno ();
return NULL;
}
return splash;
}
static ply_terminal_session_t *
spawn_session (state_t *state,
char **argv)
{
ply_terminal_session_t *session;
ply_terminal_session_flags_t flags;
flags = 0;
flags |= PLY_TERMINAL_SESSION_FLAGS_RUN_IN_PARENT;
flags |= PLY_TERMINAL_SESSION_FLAGS_LOOK_IN_PATH;
flags |= PLY_TERMINAL_SESSION_FLAGS_REDIRECT_CONSOLE;
flags |= PLY_TERMINAL_SESSION_FLAGS_CHANGE_ROOT_TO_CURRENT_DIRECTORY;
ply_trace ("opening terminal session for '%s'", argv[0]);
session = ply_terminal_session_new ((const char * const *) argv);
ply_trace ("attaching terminal session to event loop");
ply_terminal_session_attach_to_event_loop (session, state->loop);
ply_trace ("running '%s'", argv[0]);
if (!ply_terminal_session_run (session, flags,
(ply_terminal_session_begin_handler_t)
on_session_start,
(ply_terminal_session_output_handler_t)
on_session_output,
(ply_terminal_session_done_handler_t)
on_session_finished, state))
{
ply_save_errno ();
ply_terminal_session_free (session);
ply_buffer_free (state->boot_buffer);
state->boot_buffer = NULL;
ply_restore_errno ();
return NULL;
}
return session;
}
static bool
create_working_directory (state_t *state)
{
ply_trace ("creating working directory '%s'",
PLY_WORKING_DIRECTORY);
if (!ply_create_detachable_directory (PLY_WORKING_DIRECTORY))
return false;
ply_trace ("changing to working directory");
if (chdir (PLY_WORKING_DIRECTORY) < 0)
return false;
ply_trace ("creating proc subdirectory");
if (!ply_create_directory ("proc"))
return false;
ply_trace ("creating dev subdirectory");
if (!ply_create_directory ("dev"))
return false;
ply_trace ("creating dev/pts subdirectory");
if (!ply_create_directory ("dev/pts"))
return false;
ply_trace ("creating usr/share/plymouth subdirectory");
if (!ply_create_directory ("usr/share/plymouth"))
return false;
ply_trace ("creating " PLYMOUTH_PLUGIN_PATH " subdirectory");
if (!ply_create_directory (PLYMOUTH_PLUGIN_PATH + 1))
return false;
ply_trace ("creating sysroot subdirectory");
if (!ply_create_directory ("sysroot"))
return false;
return true;
}
static bool
change_to_working_directory (state_t *state)
{
ply_trace ("changing to working directory");
state->original_root_dir_fd = open ("/", O_RDONLY);
if (state->original_root_dir_fd < 0)
return false;
if (chdir (PLY_WORKING_DIRECTORY) < 0)
return false;
if (chroot (".") < 0)
return false;
ply_trace ("now successfully in working directory");
return true;
}
static bool
mount_proc_filesystem (state_t *state)
{
ply_trace ("mounting proc filesystem");
if (mount ("none", PLY_WORKING_DIRECTORY "/proc", "proc", 0, NULL) < 0)
return false;
open (PLY_WORKING_DIRECTORY "/proc/.", O_RDWR);
ply_trace ("mounted proc filesystem");
return true;
}
static bool
get_kernel_command_line (state_t *state)
{
int fd;
ply_trace ("opening /proc/cmdline");
fd = open ("proc/cmdline", O_RDONLY);
if (fd < 0)
{
ply_trace ("couldn't open it: %m");
return false;
}
ply_trace ("reading kernel command line");
if (read (fd, state->kernel_command_line, sizeof (state->kernel_command_line)) < 0)
{
ply_trace ("couldn't read it: %m");
return false;
}
ply_trace ("Kernel command line is: '%s'", state->kernel_command_line);
return true;
}
static bool
create_device_nodes (state_t *state)
{
ply_trace ("creating device nodes");
if (mknod ("./dev/root", 0600 | S_IFBLK, makedev (253, 0)) < 0)
return false;
if (mknod ("./dev/null", 0600 | S_IFCHR, makedev (1, 3)) < 0)
return false;
if (mknod ("./dev/console", 0600 | S_IFCHR, makedev (5, 1)) < 0)
return false;
if (mknod ("./dev/tty", 0600 | S_IFCHR, makedev (5, 0)) < 0)
return false;
if (mknod ("./dev/tty0", 0600 | S_IFCHR, makedev (4, 0)) < 0)
return false;
if (mknod ("./dev/tty1", 0600 | S_IFCHR, makedev (4, 1)) < 0)
return false;
if (mknod ("./dev/ptmx", 0600 | S_IFCHR, makedev (5, 2)) < 0)
return false;
if (mknod ("./dev/fb", 0600 | S_IFCHR, makedev (29, 0)) < 0)
return false;
ply_trace ("created device nodes");
return true;
}
static bool
mount_devpts_filesystem (state_t *state)
{
ply_trace ("mounting devpts filesystem");
if (mount ("none", PLY_WORKING_DIRECTORY "/dev/pts", "devpts", 0,
"gid=5,mode=620") < 0)
return false;
open (PLY_WORKING_DIRECTORY "/dev/pts/.", O_RDWR);
ply_trace ("mounted devpts filesystem");
return true;
}
static bool
copy_data_files (state_t *state)
{
char *logo_dir, *p;
ply_trace ("copying data files");
if (!ply_copy_directory ("/usr/share/plymouth",
"usr/share/plymouth"))
return false;
ply_trace ("copied data files");
ply_trace ("copying plugins");
if (!ply_copy_directory (PLYMOUTH_PLUGIN_PATH,
PLYMOUTH_PLUGIN_PATH + 1))
return false;
ply_trace ("copying logo");
logo_dir = strdup (PLYMOUTH_LOGO_FILE);
p = strrchr (logo_dir, '/');
if (p != NULL)
*p = '\0';
if (!ply_create_directory (logo_dir + 1))
{
free (logo_dir);
return false;
}
free (logo_dir);
if (!ply_copy_file (PLYMOUTH_LOGO_FILE,
PLYMOUTH_LOGO_FILE + 1))
return false;
ply_trace ("copied plugins files");
return true;
}
static void
check_verbosity (state_t *state)
{
ply_trace ("checking if tracing should be enabled");
if ((strstr (state->kernel_command_line, " plymouth:debug ") != NULL)
|| (strstr (state->kernel_command_line, "plymouth:debug ") != NULL)
|| (strstr (state->kernel_command_line, " plymouth:debug") != NULL))
{
ply_trace ("tracing should be enabled!");
if (!ply_is_tracing ())
ply_toggle_tracing ();
}
else
ply_trace ("tracing shouldn't be enabled!");
}
static bool
set_console_io_to_vt1 (state_t *state)
{
int fd;
fd = open ("/dev/tty1", O_RDWR | O_APPEND);
if (fd < 0)
return false;
dup2 (fd, STDIN_FILENO);
dup2 (fd, STDOUT_FILENO);
dup2 (fd, STDERR_FILENO);
return true;
}
static bool
plymouth_should_be_running (state_t *state)
{
ply_trace ("checking if plymouth should be running");
if ((strstr (state->kernel_command_line, " single ") != NULL)
|| (strstr (state->kernel_command_line, "single ") != NULL)
|| (strstr (state->kernel_command_line, " single") != NULL))
{
ply_trace ("kernel command line has option 'single'");
return false;
}
if ((strstr (state->kernel_command_line, " 1 ") != NULL)
|| (strstr (state->kernel_command_line, "1 ") != NULL)
|| (strstr (state->kernel_command_line, " 1") != NULL))
{
ply_trace ("kernel command line has option '1'");
return false;
}
return true;
}
static bool
initialize_environment (state_t *state)
{
ply_trace ("initializing minimal work environment");
if (!create_working_directory (state))
return false;
if (!create_device_nodes (state))
return false;
if (!copy_data_files (state))
return false;
if (!mount_proc_filesystem (state))
return false;
if (!get_kernel_command_line (state))
return false;
check_verbosity (state);
if (!plymouth_should_be_running (state))
return false;
if (!mount_devpts_filesystem (state))
return false;
if (!change_to_working_directory (state))
return false;
if (!set_console_io_to_vt1 (state))
return false;
ply_trace ("initialized minimal work environment");
return true;
}
int
main (int argc,
char **argv)
{
state_t state = { 0 };
int exit_code;
if (argc <= 1)
{
ply_error ("%s other-command [other-command-args]", argv[0]);
return EX_USAGE;
}
state.loop = ply_event_loop_new ();
/* before do anything we need to make sure we have a working
* environment. /proc needs to be mounted and certain devices need
* to be accessible (like the framebuffer device, pseudoterminal
* devices, etc)
*/
if (!initialize_environment (&state))
{
ply_error ("could not setup basic operating environment: %m");
ply_list_directory (PLY_WORKING_DIRECTORY);
return EX_OSERR;
}
state.boot_buffer = ply_buffer_new ();
state.session = spawn_session (&state, argv + 1);
if (state.session == NULL)
{
ply_error ("could not run '%s': %m", argv[1]);
return EX_UNAVAILABLE;
}
state.boot_server = start_boot_server (&state);
if (state.boot_server == NULL)
{
ply_error ("could not log bootup: %m");
return EX_UNAVAILABLE;
}
state.window = create_window (&state, "/dev/tty1");
ply_trace ("entering event loop");
exit_code = ply_event_loop_run (state.loop);
ply_trace ("exited event loop");
ply_boot_splash_free (state.boot_splash);
state.boot_splash = NULL;
ply_window_free (state.window);
state.window = NULL;
ply_boot_server_free (state.boot_server);
state.boot_server = NULL;
ply_trace ("freeing terminal session");
ply_terminal_session_free (state.session);
ply_buffer_free (state.boot_buffer);
ply_trace ("freeing event loop");
ply_event_loop_free (state.loop);
ply_trace ("exiting with code %d", exit_code);
return exit_code;
}
/* vim: set ts=4 sw=4 expandtab autoindent cindent cino={.5s,(0: */
|