forked from kexecboot/kexecboot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.h
168 lines (131 loc) · 4.76 KB
/
util.h
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
/*
* kexecboot - A kexec based bootloader
*
* Copyright (c) 2008-2011 Yuri Bushmelev <[email protected]>
* Copyright (c) 2009 Omegamoon <[email protected]>
*
* This program 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, or (at your option)
* any later version.
*
* This program 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.
*
*/
#ifndef _HAVE_UTIL_H_
#define _HAVE_UTIL_H_
#include <stdint.h> /* uint's below */
#include <asm/setup.h> // for COMMAND_LINE_SIZE
/**
* Only ARM still defines COMMAND_LINE_SIZE. In cases where COMMAND_LINE_SIZE
* is undefined, lets set a safe value. 255 should be safe; it was what i386
* used until 2.6.21(?.)
*
* FIXME: Find a better way to do this
**/
#ifndef COMMAND_LINE_SIZE
#define COMMAND_LINE_SIZE 255
#endif
/*
* klibc <= 1.5.22 have no ULLONG_MAX defined but have ULONGLONG_MAX instead
* So define ULLONG_MAX to ULONGLONG_MAX
* FIXME: should we check for ULONGLONG_MAX defined?
*/
#ifndef ULLONG_MAX
#define ULLONG_MAX ULONGLONG_MAX
#endif
#include "config.h"
/* Macro for dealing with NULL strings */
#define strlenn(s) ( (NULL != s) ? (strlen(s)) : 0 )
/* Debug macro */
/* #define DEBUG */
#ifdef DEBUG
#define DPRINTF(fmt, args...) do { \
fprintf(stderr, fmt "\n", ##args); \
} while (0)
#else
#define DPRINTF(fmt, args...) do { } while (0)
#endif
/* Macro to find number of lines in compiled-in array
* NOTE: Use it only with compiled-in arrays!
*/
#define ROWS(array) (sizeof(array)/sizeof(*array))
/* Macro to get error description */
#define ERRMSG (strerror(errno))
/* Charlist structure */
struct charlist {
char **list;
unsigned int size;
unsigned int fill;
};
/* Text structure */
typedef struct {
unsigned int current_line_no;
struct charlist *rows;
} kx_text;
/* Global log structure */
kx_text *lg;
/*
* FUNCTIONS
*/
/* Allocate charlist structure of 'size' items initial */
struct charlist *create_charlist(int size);
/* Destroy specified charlist structure 'cl' */
void free_charlist(struct charlist *cl);
/* Append string 'str' to end of charlist 'cl' */
void addto_charlist(struct charlist *cl, const char *str);
/* Return position of string 'str' in charlist 'cl' or (-1) when not found */
int in_charlist(struct charlist *cl, const char *str);
/* Create log structure of 'size' initial rows */
kx_text *log_open(unsigned int size);
/* Log message */
void log_msg(kx_text *log, char *fmt, ...);
/* Destroy log structure */
void log_close(kx_text *log);
/* Strip leading and trailing white-space */
/* NOTE: this will modify str */
char *trim(char *str);
/* Skip trailing white-space */
char *rtrim(char *str);
/* Skip leading white-space */
char *ltrim(char *str);
/* Uppercase the string 'src' and place result into 'dst' */
#define strtoupper(src, dst) do { chcase('u', src, dst); } while (0)
/* Lowercase the string 'src' and place result into 'dst' */
#define strtolower(src, dst) do { chcase('l', src, dst); } while (0)
/* Change case of 'str' and place result into 'dst' */
/* ul value can be: 'u' for uppercase, 'l'/'d' for lowercase */
char *chcase(char ul, const char *src, char *dst);
/* Return pointer to word in string 'str' and end of word in 'endptr' */
char *get_word(char *str, char **endptr);
/* Return non-negative integer from string 'str' and end of number in 'endptr' */
int get_nni(const char *str, char **endptr);
/* Return unsigned long long from string 'str' and end of number in 'endptr' */
unsigned long long get_nnll(const char *str, char **endptr, int *error_flag);
/* Change terminal settings */
void setup_terminal(char *ttydev, int *echo_state, int mode);
/* Check pointer for NULL value and free() if not */
#define dispose(ptr) do { if (NULL != ptr) free(ptr); } while (0)
/*
* Function: fexecw()
* (fork, execve and wait)
* kexecboot's replace of system() call without /bin/sh invocation.
* During execution of the command, SIGCHLD will be blocked,
* and SIGINT and SIGQUIT will be ignored (like system() does).
* Takes 3 args (execve()-like):
* - path - full path to executable file
* - argv[] - array of args for executed file (command options e.g.)
* - envp[] - array of environment strings ("key=value")
* Return value:
* - command exit status on success
* - -1 on error (e.g. fork() failed)
*/
int fexecw(const char *path, char *const argv[], char *const envp[]);
/* UBI attach MTD device to mtd_id */
int ubi_attach(const char *mtd_id);
/* Find UBI device attached to mtd_id */
int find_attached_ubi_device(const char *mtd_id);
#endif //_HAVE_UTIL_H_