source: mainline/kernel/genarch/src/multiboot/multiboot.c@ e6b0dba

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e6b0dba was ba1ea40, checked in by Jakub Jermar <jakub@…>, 9 years ago

Copy boot arguments from multiboot info to bargs

  • Property mode set to 100644
File size: 5.4 KB
Line 
1/*
2 * Copyright (c) 2009 Jiri Svoboda
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/** @addtogroup genarch
30 * @{
31 */
32/** @file
33 */
34
35#include <typedefs.h>
36#include <genarch/multiboot/multiboot.h>
37#include <config.h>
38#include <str.h>
39
40/** Extract command name from the multiboot module command line.
41 *
42 * @param buf Destination buffer (will be always NULL-terminated).
43 * @param size Size of destination buffer (in bytes).
44 * @param cmd_line Input string (the command line).
45 *
46 */
47void multiboot_extract_command(char *buf, size_t size, const char *cmd_line)
48{
49 /* Find the first space. */
50 const char *end = str_chr(cmd_line, ' ');
51 if (end == NULL)
52 end = cmd_line + str_size(cmd_line);
53
54 /*
55 * Find last occurence of '/' before 'end'. If found, place start at
56 * next character. Otherwise, place start at beginning of buffer.
57 */
58 const char *cp = end;
59 const char *start = buf;
60
61 while (cp != start) {
62 if (*cp == '/') {
63 start = cp + 1;
64 break;
65 }
66 cp--;
67 }
68
69 /* Copy the command. */
70 str_ncpy(buf, size, start, (size_t) (end - start));
71}
72
73/** Extract arguments from the multiboot module command line.
74 *
75 * @param buf Destination buffer (will be always NULL-terminated).
76 * @param size Size of destination buffer (in bytes).
77 * @param cmd_line Input string (the command line).
78 *
79 */
80void multiboot_extract_argument(char *buf, size_t size, const char *cmd_line)
81{
82 /* Start after first space. */
83 const char *start = str_chr(cmd_line, ' ');
84 if (start == NULL) {
85 str_cpy(buf, size, "");
86 return;
87 }
88
89 const char *end = cmd_line + str_size(cmd_line);
90
91 /* Skip the space(s). */
92 while (start != end) {
93 if (start[0] == ' ')
94 start++;
95 else
96 break;
97 }
98
99 str_ncpy(buf, size, start, (size_t) (end - start));
100}
101
102static void multiboot_cmdline(char *cmdline)
103{
104 /*
105 * GRUB passes the command line in an escaped form.
106 */
107 for (size_t i = 0, j = 0;
108 cmdline[i] && j < CONFIG_BOOT_ARGUMENTS_BUFLEN;
109 i++, j++) {
110 if (cmdline[i] == '\\') {
111 switch (cmdline[i + 1]) {
112 case '\\':
113 case '\'':
114 case '\"':
115 i++;
116 break;
117 }
118 }
119 bargs[j] = cmdline[i];
120 }
121}
122
123static void multiboot_modules(uint32_t count, multiboot_module_t *mods)
124{
125 for (uint32_t i = 0; i < count; i++) {
126 if (init.cnt >= CONFIG_INIT_TASKS)
127 break;
128
129 init.tasks[init.cnt].paddr = mods[i].start;
130 init.tasks[init.cnt].size = mods[i].end - mods[i].start;
131
132 /* Copy command line, if available. */
133 if (mods[i].string) {
134 multiboot_extract_command(init.tasks[init.cnt].name,
135 CONFIG_TASK_NAME_BUFLEN, MULTIBOOT_PTR(mods[i].string));
136 multiboot_extract_argument(init.tasks[init.cnt].arguments,
137 CONFIG_TASK_ARGUMENTS_BUFLEN, MULTIBOOT_PTR(mods[i].string));
138 } else {
139 init.tasks[init.cnt].name[0] = 0;
140 init.tasks[init.cnt].arguments[0] = 0;
141 }
142
143 init.cnt++;
144 }
145}
146
147static void multiboot_memmap(uint32_t length, multiboot_memmap_t *memmap)
148{
149 uint32_t pos = 0;
150
151 while ((pos < length) && (e820counter < MEMMAP_E820_MAX_RECORDS)) {
152 e820table[e820counter] = memmap->mm_info;
153
154 /* Compute address of next structure. */
155 uint32_t size = sizeof(memmap->size) + memmap->size;
156 memmap = (multiboot_memmap_t *) ((uintptr_t) memmap + size);
157 pos += size;
158
159 e820counter++;
160 }
161}
162
163/** Parse multiboot information structure.
164 *
165 * If @a signature does not contain a valid multiboot signature,
166 * assumes no multiboot information is available.
167 *
168 * @param signature Should contain the multiboot signature.
169 * @param info Multiboot information structure.
170 *
171 */
172void multiboot_info_parse(uint32_t signature, const multiboot_info_t *info)
173{
174 if (signature != MULTIBOOT_LOADER_MAGIC)
175 return;
176
177 /* Copy command line. */
178 if ((info->flags & MULTIBOOT_INFO_FLAGS_CMDLINE) != 0)
179 multiboot_cmdline((char *) MULTIBOOT_PTR(info->cmd_line));
180
181 /* Copy modules information. */
182 if ((info->flags & MULTIBOOT_INFO_FLAGS_MODS) != 0)
183 multiboot_modules(info->mods_count,
184 (multiboot_module_t *) MULTIBOOT_PTR(info->mods_addr));
185
186 /* Copy memory map. */
187 if ((info->flags & MULTIBOOT_INFO_FLAGS_MMAP) != 0)
188 multiboot_memmap(info->mmap_length,
189 (multiboot_memmap_t *) MULTIBOOT_PTR(info->mmap_addr));
190}
191
192/** @}
193 */
Note: See TracBrowser for help on using the repository browser.