]> git.ozlabs.org Git - petitboot/blob - ui/ncurses/generic-main.c
log: Allow runtime selection of 'debug' log level
[petitboot] / ui / ncurses / generic-main.c
1 /*
2  * Petitboot generic ncurses bootloader UI
3  *
4  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
5  *  Copyright 2009 Sony Corp.
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; version 2 of the License.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #if defined(HAVE_CONFIG_H)
22 #include "config.h"
23 #endif
24
25 #include <assert.h>
26 #include <errno.h>
27 #include <getopt.h>
28 #include <signal.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <limits.h>
32 #include <sys/time.h>
33
34 #include "log/log.h"
35 #include "talloc/talloc.h"
36 #include "waiter/waiter.h"
37 #include "ui/common/discover-client.h"
38 #include "nc-cui.h"
39
40 extern const char *main_menu_help_text;
41
42 static void print_version(void)
43 {
44         printf("petitboot-nc (" PACKAGE_NAME ") " PACKAGE_VERSION "\n");
45 }
46
47 static void print_usage(void)
48 {
49         print_version();
50         printf(
51 "Usage: petitboot-nc [-h, --help] [-l, --log log-file]\n"
52 "                    [-s, --start-daemon] [-v, --verbose] [-V, --version]\n");
53 }
54
55 /**
56  * enum opt_value - Tri-state options variables.
57  */
58
59 enum opt_value {opt_undef = 0, opt_yes, opt_no};
60
61 /**
62  * struct opts - Values from command line options.
63  */
64
65 struct opts {
66         enum opt_value show_help;
67         const char *log_file;
68         enum opt_value start_daemon;
69         enum opt_value verbose;
70         enum opt_value show_version;
71 };
72
73 /**
74  * opts_parse - Parse the command line options.
75  */
76
77 static int opts_parse(struct opts *opts, int argc, char *argv[])
78 {
79         static const struct option long_options[] = {
80                 {"help",         no_argument,       NULL, 'h'},
81                 {"log",          required_argument, NULL, 'l'},
82                 {"start-daemon", no_argument,       NULL, 's'},
83                 {"verbose",      no_argument,       NULL, 'v'},
84                 {"version",      no_argument,       NULL, 'V'},
85                 { NULL,          0,                 NULL, 0},
86         };
87         static const char short_options[] = "dhl:svV";
88         static const struct opts default_values = { 0 };
89
90         *opts = default_values;
91
92         while (1) {
93                 int c = getopt_long(argc, argv, short_options, long_options,
94                         NULL);
95
96                 if (c == EOF)
97                         break;
98
99                 switch (c) {
100                 case 'h':
101                         opts->show_help = opt_yes;
102                         break;
103                 case 'l':
104                         opts->log_file = optarg;
105                         break;
106                 case 's':
107                         opts->start_daemon = opt_yes;
108                         break;
109                 case 'v':
110                         opts->verbose = opt_yes;
111                         break;
112                 case 'V':
113                         opts->show_version = opt_yes;
114                         break;
115                 default:
116                         opts->show_help = opt_yes;
117                         return -1;
118                 }
119         }
120
121         return 0;
122 }
123
124 static char *default_log_filename(void)
125 {
126         const char *base = "/var/log/petitboot/petitboot-nc";
127         static char name[PATH_MAX];
128         char *tty;
129         int i;
130
131         tty = ttyname(STDIN_FILENO);
132
133         /* strip /dev/ */
134         if (tty && !strncmp(tty, "/dev/", 5))
135                 tty += 5;
136
137         /* change slashes to hyphens */
138         for (i = 0; tty && tty[i]; i++)
139                 if (tty[i] == '/')
140                         tty[i] = '-';
141
142         if (!tty || !*tty)
143                 tty = "unknown";
144
145         snprintf(name, sizeof(name), "%s.%s.log", base, tty);
146
147         return name;
148 }
149 /**
150  * struct pb_cui - Main cui program instance.
151  * @mm: Main menu.
152  * @svm: Set video mode menu.
153  */
154
155 struct pb_cui {
156         struct pmenu *mm;
157         struct cui *cui;
158 };
159
160 static int pmenu_sysinfo(struct pmenu_item *item)
161 {
162         cui_show_sysinfo(cui_from_item(item));
163         return 0;
164 }
165
166 static int pmenu_config(struct pmenu_item *item)
167 {
168         cui_show_config(cui_from_item(item));
169         return 0;
170 }
171
172 static int pmenu_reinit(struct pmenu_item *item)
173 {
174         cui_send_reinit(cui_from_item(item));
175         return 0;
176 }
177
178 /**
179  * pb_mm_init - Setup the main menu instance.
180  */
181
182 static struct pmenu *pb_mm_init(struct pb_cui *pb_cui)
183 {
184         int result;
185         struct pmenu *m;
186         struct pmenu_item *i;
187
188         m = pmenu_init(pb_cui->cui, 5, cui_on_exit);
189
190         if (!m) {
191                 pb_log("%s: failed\n", __func__);
192                 return NULL;
193         }
194
195         m->on_new = cui_item_new;
196
197         m->scr.frame.ltitle = talloc_asprintf(m,
198                 "Petitboot (" PACKAGE_VERSION ")");
199         m->scr.frame.rtitle = NULL;
200         m->scr.frame.help = talloc_strdup(m,
201                 "Enter=accept, e=edit, n=new, x=exit, h=help");
202         m->scr.frame.status = talloc_strdup(m, "Welcome to Petitboot");
203
204         i = pmenu_item_init(m, 0, " ");
205         item_opts_off(i->nci, O_SELECTABLE);
206         i = pmenu_item_init(m, 1, "System information");
207         i->on_execute = pmenu_sysinfo;
208         i = pmenu_item_init(m, 2, "System configuration");
209         i->on_execute = pmenu_config;
210         i = pmenu_item_init(m, 3, "Rescan devices");
211         i->on_execute = pmenu_reinit;
212         i = pmenu_item_init(m, 4, "Exit to shell");
213         i->on_execute = pmenu_exit_cb;
214
215         result = pmenu_setup(m);
216
217         if (result) {
218                 pb_log("%s:%d: pmenu_setup failed: %s\n", __func__, __LINE__,
219                         strerror(errno));
220                 goto fail_setup;
221         }
222
223         m->help_title = "main menu";
224         m->help_text = main_menu_help_text;
225
226         menu_opts_off(m->ncm, O_SHOWDESC);
227         set_menu_mark(m->ncm, " *");
228         set_current_item(m->ncm, i->nci);
229
230         return m;
231
232 fail_setup:
233         talloc_free(m);
234         return NULL;
235 }
236
237 static struct pb_cui pb;
238
239 static void sig_handler(int signum)
240 {
241         DBGS("%d\n", signum);
242
243         switch (signum) {
244         case SIGWINCH:
245                 if (pb.cui)
246                         cui_resize(pb.cui);
247                 break;
248         default:
249                 assert(0 && "unknown sig");
250                 /* fall through */
251         case SIGINT:
252         case SIGHUP:
253         case SIGTERM:
254                 if (pb.cui)
255                         cui_abort(pb.cui);
256                 break;
257         }
258 }
259
260 /**
261  * main - cui bootloader main routine.
262  */
263
264 int main(int argc, char *argv[])
265 {
266         static struct sigaction sa;
267         const char *log_filename;
268         int result;
269         int cui_result;
270         struct opts opts;
271         FILE *log;
272
273         result = opts_parse(&opts, argc, argv);
274
275         if (result) {
276                 print_usage();
277                 return EXIT_FAILURE;
278         }
279
280         if (opts.show_help == opt_yes) {
281                 print_usage();
282                 return EXIT_SUCCESS;
283         }
284
285         if (opts.show_version == opt_yes) {
286                 print_version();
287                 return EXIT_SUCCESS;
288         }
289
290         if (opts.log_file)
291                 log_filename = opts.log_file;
292         else
293                 log_filename = default_log_filename();
294
295         log = stderr;
296         if (strcmp(log_filename, "-")) {
297                 log = fopen(log_filename, "a");
298
299                 if (!log)
300                         log = fopen("/dev/null", "a");
301         }
302
303         pb_log_init(log);
304
305         if (opts.verbose)
306                 pb_log_set_debug(true);
307
308         pb_log("--- petitboot-nc ---\n");
309
310         sa.sa_handler = sig_handler;
311         result = sigaction(SIGALRM, &sa, NULL);
312         result += sigaction(SIGHUP, &sa, NULL);
313         result += sigaction(SIGINT, &sa, NULL);
314         result += sigaction(SIGTERM, &sa, NULL);
315         result += sigaction(SIGWINCH, &sa, NULL);
316
317         if (result) {
318                 pb_log("%s sigaction failed.\n", __func__);
319                 return EXIT_FAILURE;
320         }
321
322         pb.cui = cui_init(&pb, NULL, opts.start_daemon);
323
324         if (!pb.cui)
325                 return EXIT_FAILURE;
326
327         pb.mm = pb_mm_init(&pb);
328
329         cui_result = cui_run(pb.cui, pb.mm, 0);
330
331         pmenu_delete(pb.mm);
332
333         talloc_free(pb.cui);
334
335         pb_log("--- end ---\n");
336
337         return cui_result ? EXIT_FAILURE : EXIT_SUCCESS;
338 }