1 /* ----------------------------------------------------------------------- *
3 * Copyright 2004-2008 H. Peter Anvin - All Rights Reserved
4 * Copyright 2013 Intel Corporation; author: H. Peter Anvin
6 * Permission is hereby granted, free of charge, to any person
7 * obtaining a copy of this software and associated documentation
8 * files (the "Software"), to deal in the Software without
9 * restriction, including without limitation the rights to use,
10 * copy, modify, merge, publish, distribute, sublicense, and/or
11 * sell copies of the Software, and to permit persons to whom
12 * the Software is furnished to do so, subject to the following
15 * The above copyright notice and this permission notice shall
16 * be included in all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 * OTHER DEALINGS IN THE SOFTWARE.
27 * ----------------------------------------------------------------------- */
32 * Parse the MS-DOS command line into argc and argv (argc is return value.)
33 * memptr points to available memory.
41 #define ALIGN_UP(p,t) ((t *)(((uintptr_t)(p) + (sizeof(t)-1)) & ~(sizeof(t)-1)))
43 extern char __heap_start
[];
44 void *__mem_end
= &__heap_start
; /* Global variable for use by malloc() */
46 int __parse_argv(char ***argv
)
48 char *mem
= __mem_end
;
60 /* Find and copy argv[0] after the environment block */
61 set_fs(_PSP
.environment
);
65 if (get_8_fs(offs
++) == '\0')
71 nstr
= get_16_fs(offs
);
74 /* Copy the null-terminated filename string */
76 while ((c
= get_8_fs(offs
++)))
81 /* Now for the command line tail... */
88 /* Copy the command tail, turning whitespace runs into nulls */
90 if (!len
|| *p
<= ' ') {
103 /* This test is AFTER we have processed the end byte;
104 we treat it as a whitespace character so it terminates
110 /* Now create argv */
111 arg
= ALIGN_UP(q
, char *);
113 *arg
++ = mem
; /* argv[0] */
115 q
--; /* Point q to terminal character */
116 for (r
= mem
; r
< q
; r
++) {
122 *arg
++ = NULL
; /* Null pointer at the end */
123 __mem_end
= arg
; /* End of memory we used */