cmdline (merge-intel): fix compilation with icc
[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_socket.h"
80 #include "cmdline.h"
81
82 /**********************/
83
84 #ifndef CMDLINE_NO_SOCKET
85 int
86 cmdline_tcpv4_listen(in_addr_t addr, uint16_t port)
87 {
88         int s;
89         struct sockaddr_in sin_ci;
90         int optval = 1;
91
92         s = socket(PF_INET, SOCK_STREAM, 0);
93         if (s < 0) {
94                 dprintf("socket() failed\n");
95                 return s;
96         }
97
98         if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR,
99                        &optval, sizeof(optval)) == -1) {
100                 dprintf("setsockopt() failed\n");
101                 goto end;
102         }
103
104         memset(&sin_ci, 0, sizeof(sin_ci));
105         sin_ci.sin_family = AF_INET;
106         sin_ci.sin_addr.s_addr = addr;
107         sin_ci.sin_port = htons(port);
108 #ifndef __linux__
109         sin_ci.sin_len = sizeof(sin_ci);
110 #endif
111         if (bind(s, (struct sockaddr *)&sin_ci, sizeof(sin_ci)) < 0) {
112                 dprintf("bind() failed\n");
113                 goto end;
114         }
115
116         if (listen(s, 1) < 0) {
117                 dprintf("listen() failed\n");
118                 goto end;
119         }
120
121         return s;
122 end:
123         close(s);
124         return -1;
125 }
126
127 int
128 cmdline_tcpv6_listen(struct in6_addr addr6, uint16_t port)
129 {
130         int s;
131         struct sockaddr_in6 sin6_ci;
132
133         s = socket(PF_INET6, SOCK_STREAM, 0);
134         if (s < 0) {
135                 dprintf("socket() failed\n");
136                 return s;
137         }
138
139         bzero(&sin6_ci, sizeof(sin6_ci));
140         sin6_ci.sin6_family = AF_INET6;
141 #ifndef __linux__
142         sin6_ci.sin6_len = sizeof(sin6_ci);
143 #endif
144         memcpy(&sin6_ci.sin6_addr, &addr6, sizeof(sin6_ci.sin6_addr));
145         sin6_ci.sin6_port = htons(port);
146         if (bind(s, (struct sockaddr *) &sin6_ci, sizeof(sin6_ci)) < 0) {
147                 dprintf("bind() failed\n");
148                 goto end;
149         }
150
151         if (listen(s, 1) < 0) {
152                 dprintf("listen() failed\n");
153                 goto end;
154         }
155
156         return s;
157 end:
158         close(s);
159         return -1;
160 }
161
162 int
163 cmdline_unix_listen(char *filename)
164 {
165         int s;
166         struct sockaddr_un servAddr;
167
168         s = socket(AF_UNIX, SOCK_STREAM, 0);
169         if (s < 0) {
170                 dprintf("socket() failed\n");
171                 return s;
172         }
173
174         bzero(&servAddr, sizeof(servAddr));
175         servAddr.sun_family = AF_UNIX;
176         memcpy(servAddr.sun_path, filename , strlen(filename));
177
178         unlink(filename);
179         if(bind(s, (struct sockaddr *) &servAddr, sizeof(servAddr)) < 0) {
180                 dprintf("bind() failed\n");
181                 goto end;
182         }
183
184         if (listen(s, 1) < 0) {
185                 dprintf("listen() failed\n");
186                 goto end;
187         }
188
189         return s;
190 end:
191         close(s);
192         return -1;
193 }
194
195 struct cmdline *
196 cmdline_accept(cmdline_parse_ctx_t *ctx, const char *prompt, int s)
197 {
198         int s2;
199         struct sockaddr sin;
200         socklen_t sinlen;
201
202         sinlen = sizeof(struct sockaddr);
203
204         if ((s2 = accept(s, &sin, &sinlen)) < 0) {
205                 dprintf("accept() failed\n");
206                 return NULL;
207         }
208
209         return (cmdline_new(ctx, prompt, s2, s2));
210 }
211 #endif
212
213 struct cmdline *
214 cmdline_file_new(cmdline_parse_ctx_t *ctx, const char *prompt, const char *path)
215 {
216         int fd;
217         fd = open(path, O_RDONLY, 0);
218         if (fd < 0) {
219                 dprintf("open() failed\n");
220                 return NULL;
221         }
222         return (cmdline_new(ctx, prompt, fd, -1));
223 }
224
225 struct cmdline *
226 cmdline_stdin_new(cmdline_parse_ctx_t *ctx, const char *prompt)
227 {
228         return (cmdline_new(ctx, prompt, 0, 1));
229 }