]> git.ozlabs.org Git - petitboot/blob - ui/common/ui-system.c
ui/ncurses: Use 'x' as exit key
[petitboot] / ui / common / ui-system.c
1 /*
2  *  Copyright (C) 2009 Sony Computer Entertainment Inc.
3  *  Copyright 2009 Sony Corp.
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; version 2 of the License.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #define _GNU_SOURCE
20
21 #include <assert.h>
22 #include <errno.h>
23 #include <signal.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <sys/types.h>
27 #include <sys/wait.h>
28
29 #include "log/log.h"
30 #include <system/system.h>
31 #include <process/process.h>
32 #include "talloc/talloc.h"
33 #include "ui-system.h"
34
35 /**
36  * pb_start_daemon - start the pb-discover daemon.
37  */
38
39 int pb_start_daemon(void *ctx)
40 {
41         struct process *process;
42         const char **argv;
43         int result;
44         char *name;
45
46         process = process_create(ctx);
47
48         argv = talloc_array(process, const char *, 2);
49         name = talloc_asprintf(process, "%s/sbin/pb-discover",
50                         pb_system_apps.prefix);
51
52         argv[0] = name;
53         argv[1] = NULL;
54
55         process->path = name;
56         process->argv = argv;
57
58         result = process_run_async(process);
59         process_release(process);
60
61         return result;
62 }
63
64 /**
65  * pb_elf_hash - Standard elf hash routine.
66  */
67
68 unsigned int pb_elf_hash(const char *str)
69 {
70         unsigned int h = 0, g;
71
72         while (*str) {
73                 h = (h << 4) + *str++;
74                 g = h & 0xf0000000;
75                 if (g)
76                         h ^= g >> 24;
77                 h &= ~g;
78         }
79         pb_log("%s: %x\n", __func__, h);
80         return h;
81 }
82
83 /**
84  * pb_cat_hash - Hashes concatenation of two strings.
85  */
86
87 unsigned int pb_cat_hash(const char *a, const char *b)
88 {
89         unsigned int h;
90         char *s;
91
92         s = talloc_asprintf(NULL, "%s%s", a, b);
93         h = pb_elf_hash(s);
94         talloc_free(s);
95
96         return h;
97 }