Make it easier to bootstrap the PKI for SSL connections in OpenFlow.
[sliver-openvswitch.git] / lib / util.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  * 
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  * 
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include <config.h>
35 #include "util.h"
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40
41 const char *program_name;
42
43 void
44 out_of_memory(void) 
45 {
46     ofp_fatal(0, "virtual memory exhausted");
47 }
48
49 void *
50 xcalloc(size_t count, size_t size) 
51 {
52     void *p = count && size ? calloc(count, size) : malloc(1);
53     if (p == NULL) {
54         out_of_memory();
55     }
56     return p;
57 }
58
59 void *
60 xmalloc(size_t size) 
61 {
62     void *p = malloc(size ? size : 1);
63     if (p == NULL) {
64         out_of_memory();
65     }
66     return p;
67 }
68
69 void *
70 xrealloc(void *p, size_t size) 
71 {
72     p = realloc(p, size ? size : 1);
73     if (p == NULL) {
74         out_of_memory();
75     }
76     return p;
77 }
78
79 void *
80 xmemdup(const void *p_, size_t size)
81 {
82     void *p = xmalloc(size);
83     memcpy(p, p_, size);
84     return p;
85 }
86
87 char *
88 xmemdup0(const char *p_, size_t length)
89 {
90     char *p = xmalloc(length + 1);
91     memcpy(p, p_, length);
92     p[length] = '\0';
93     return p;
94 }
95
96 char *
97 xstrdup(const char *s) 
98 {
99     return xmemdup0(s, strlen(s));
100 }
101
102 char *
103 xasprintf(const char *format, ...)
104 {
105     va_list args;
106     size_t needed;
107     char *s;
108
109     va_start(args, format);
110     needed = vsnprintf(NULL, 0, format, args);
111     va_end(args);
112
113     s = xmalloc(needed + 1);
114
115     va_start(args, format);
116     vsnprintf(s, needed + 1, format, args);
117     va_end(args);
118
119     return s;
120 }
121
122 void
123 ofp_fatal(int err_no, const char *format, ...)
124 {
125     va_list args;
126
127     fprintf(stderr, "%s: ", program_name);
128     va_start(args, format);
129     vfprintf(stderr, format, args);
130     va_end(args);
131     if (err_no != 0)
132         fprintf(stderr, " (%s)", strerror(err_no));
133     putc('\n', stderr);
134
135     exit(EXIT_FAILURE);
136 }
137
138 void
139 ofp_error(int err_no, const char *format, ...)
140 {
141     va_list args;
142
143     fprintf(stderr, "%s: ", program_name);
144     va_start(args, format);
145     vfprintf(stderr, format, args);
146     va_end(args);
147     if (err_no != 0)
148         fprintf(stderr, " (%s)", strerror(err_no));
149     putc('\n', stderr);
150 }
151
152 /* Sets program_name based on 'argv0'.  Should be called at the beginning of
153  * main(), as "set_program_name(argv[0]);".  */
154 void set_program_name(const char *argv0)
155 {
156     const char *slash = strrchr(argv0, '/');
157     program_name = slash ? slash + 1 : argv0;
158 }
159
160 /* Writes the 'size' bytes in 'buf' to 'stream' as hex bytes arranged 16 per
161  * line.  Numeric offsets are also included, starting at 'ofs' for the first
162  * byte in 'buf'.  If 'ascii' is true then the corresponding ASCII characters
163  * are also rendered alongside. */
164 void
165 ofp_hex_dump(FILE *stream, const void *buf_, size_t size,
166              uintptr_t ofs, bool ascii)
167 {
168   const uint8_t *buf = buf_;
169   const size_t per_line = 16; /* Maximum bytes per line. */
170
171   while (size > 0)
172     {
173       size_t start, end, n;
174       size_t i;
175
176       /* Number of bytes on this line. */
177       start = ofs % per_line;
178       end = per_line;
179       if (end - start > size)
180         end = start + size;
181       n = end - start;
182
183       /* Print line. */
184       fprintf(stream, "%08jx  ", (uintmax_t) ROUND_DOWN(ofs, per_line));
185       for (i = 0; i < start; i++)
186         fprintf(stream, "   ");
187       for (; i < end; i++)
188         fprintf(stream, "%02hhx%c",
189                 buf[i - start], i == per_line / 2 - 1? '-' : ' ');
190       if (ascii)
191         {
192           for (; i < per_line; i++)
193             fprintf(stream, "   ");
194           fprintf(stream, "|");
195           for (i = 0; i < start; i++)
196             fprintf(stream, " ");
197           for (; i < end; i++) {
198               int c = buf[i - start];
199               putc(c >= 32 && c < 127 ? c : '.', stream);
200           }
201           for (; i < per_line; i++)
202             fprintf(stream, " ");
203           fprintf(stream, "|");
204         }
205       fprintf(stream, "\n");
206
207       ofs += n;
208       buf += n;
209       size -= n;
210     }
211 }