cmdline (merge-intel): compilation under baremetal environment
[libcmdline.git] / src / lib / cmdline_socket.c
1 /*-
2  * Copyright (c) <2010>, Intel Corporation
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  *
12  * - Redistributions in binary form must reproduce the above copyright
13  *   notice, this list of conditions and the following disclaimer in
14  *   the documentation and/or other materials provided with the
15  *   distribution.
16  *
17  * - Neither the name of Intel Corporation nor the names of its
18  *   contributors may be used to endorse or promote products derived
19  *   from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
32  * OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 /*
36  * Copyright (c) 2009, Olivier MATZ <zer0@droids-corp.org>
37  * All rights reserved.
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions are met:
40  *
41  *     * Redistributions of source code must retain the above copyright
42  *       notice, this list of conditions and the following disclaimer.
43  *     * Redistributions in binary form must reproduce the above copyright
44  *       notice, this list of conditions and the following disclaimer in the
45  *       documentation and/or other materials provided with the distribution.
46  *     * Neither the name of the University of California, Berkeley nor the
47  *       names of its contributors may be used to endorse or promote products
48  *       derived from this software without specific prior written permission.
49  *
50  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
51  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
52  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
53  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
54  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
55  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
56  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
57  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
59  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60  */
61
62 #include <stdio.h>
63 #include <string.h>
64 #include <unistd.h>
65 #include <stdlib.h>
66 #include <stdarg.h>
67 #include <inttypes.h>
68 #include <fcntl.h>
69
70 #ifndef CMDLINE_NO_SOCKET
71 #include <sys/socket.h>
72 #include <netinet/in.h>
73 #include <sys/socket.h>
74 #include <sys/un.h>
75 #endif
76
77 #include "cmdline_parse.h"
78 #include "cmdline_rdline.h"
79 #include "cmdline.h"
80
81 /**********************/
82
83 #ifndef CMDLINE_NO_SOCKET
84 int
85 cmdline_tcpv4_listen(in_addr_t addr, uint16_t port)
86 {
87         int s;
88         struct sockaddr_in sin_ci;
89         int optval = 1;
90
91         s = socket(PF_INET, SOCK_STREAM, 0);
92         if (s < 0) {
93                 dprintf("socket() failed\n");
94                 return s;
95         }
96
97         if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
98                        &optval, sizeof(optval)) == -1) {
99                 dprintf("setsockopt() failed\n");
100                 goto end;
101         }
102
103         memset(&sin_ci, 0, sizeof(sin_ci));
104         sin_ci.sin_family = AF_INET;
105         sin_ci.sin_addr.s_addr = addr;
106         sin_ci.sin_port = htons(port);
107 #ifndef __linux__
108         sin_ci.sin_len = sizeof(sin_ci);
109 #endif
110         if (bind(s, (struct sockaddr *)&sin_ci, sizeof(sin_ci)) < 0) {
111                 dprintf("bind() failed\n");
112                 goto end;
113         }
114
115         if (listen(s, 1) < 0) {
116                 dprintf("listen() failed\n");
117                 goto end;
118         }
119
120         return s;
121 end:
122         close(s);
123         return -1;
124 }
125
126 int
127 cmdline_tcpv6_listen(struct in6_addr addr6, uint16_t port)
128 {
129         int s;
130         struct sockaddr_in6 sin6_ci;
131
132         s = socket(PF_INET6, SOCK_STREAM, 0);
133         if (s < 0) {
134                 dprintf("socket() failed\n");
135                 return s;
136         }
137
138         bzero(&sin6_ci, sizeof(sin6_ci));
139         sin6_ci.sin6_family = AF_INET6;
140 #ifndef __linux__
141         sin6_ci.sin6_len = sizeof(sin6_ci);
142 #endif
143         memcpy(&sin6_ci.sin6_addr, &addr6, sizeof(sin6_ci.sin6_addr));
144         sin6_ci.sin6_port = htons(port);
145         if (bind(s, (struct sockaddr *) &sin6_ci, sizeof(sin6_ci)) < 0) {
146                 dprintf("bind() failed\n");
147                 goto end;
148         }
149
150         if (listen(s, 1) < 0) {
151                 dprintf("listen() failed\n");
152                 goto end;
153         }
154
155         return s;
156 end:
157         close(s);
158         return -1;
159 }
160
161 int
162 cmdline_unix_listen(char *filename)
163 {
164         int s;
165         struct sockaddr_un servAddr;
166
167         s = socket(AF_UNIX, SOCK_STREAM, 0);
168         if (s < 0) {
169                 dprintf("socket() failed\n");
170                 return s;
171         }
172
173         bzero(&servAddr, sizeof(servAddr));
174         servAddr.sun_family = AF_UNIX;
175         memcpy(servAddr.sun_path, filename , strlen(filename));
176
177         unlink(filename);
178         if(bind(s, (struct sockaddr *) &servAddr, sizeof(servAddr)) < 0) {
179                 dprintf("bind() failed\n");
180                 goto end;
181         }
182
183         if (listen(s, 1) < 0) {
184                 dprintf("listen() failed\n");
185                 goto end;
186         }
187
188         return s;
189 end:
190         close(s);
191         return -1;
192 }
193
194 struct cmdline *
195 cmdline_accept(cmdline_parse_ctx_t *ctx, const char *prompt, int s)
196 {
197         int s2;
198         struct sockaddr sin;
199         socklen_t sinlen;
200
201         sinlen = sizeof(struct sockaddr);
202
203         if ((s2 = accept(s, &sin, &sinlen)) < 0) {
204                 dprintf("accept() failed\n");
205                 return NULL;
206         }
207
208         return (cmdline_new(ctx, prompt, s2, s2));
209 }
210 #endif
211
212 struct cmdline *
213 cmdline_file_new(cmdline_parse_ctx_t *ctx, const char *prompt, const char *path)
214 {
215         int fd;
216         fd = open(path, O_RDONLY, 0);
217         if (fd < 0) {
218                 dprintf("open() failed\n");
219                 return NULL;
220         }
221         return (cmdline_new(ctx, prompt, fd, -1));
222 }
223
224 struct cmdline *
225 cmdline_stdin_new(cmdline_parse_ctx_t *ctx, const char *prompt)
226 {
227         return (cmdline_new(ctx, prompt, 0, 1));
228 }