plat combine inits into single lws_plat_init and provide info
[platform/upstream/libwebsockets.git] / lib / lws-plat-unix.c
1 #include "private-libwebsockets.h"
2
3 #include <pwd.h>
4 #include <grp.h>
5
6 /*
7  * included from libwebsockets.c for unix builds
8  */
9
10 unsigned long long time_in_microseconds(void)
11 {
12         struct timeval tv;
13         gettimeofday(&tv, NULL);
14         return ((unsigned long long)tv.tv_sec * 1000000LL) + tv.tv_usec;
15 }
16
17 LWS_VISIBLE int lws_get_random(struct lws_context *context,
18                                                              void *buf, int len)
19 {
20         return read(context->fd_random, (char *)buf, len);
21 }
22
23 LWS_VISIBLE int lws_send_pipe_choked(struct lws *wsi)
24 {
25         struct lws_pollfd fds;
26
27         /* treat the fact we got a truncated send pending as if we're choked */
28         if (wsi->truncated_send_len)
29                 return 1;
30
31         fds.fd = wsi->sock;
32         fds.events = POLLOUT;
33         fds.revents = 0;
34
35         if (poll(&fds, 1, 0) != 1)
36                 return 1;
37
38         if ((fds.revents & POLLOUT) == 0)
39                 return 1;
40
41         /* okay to send another packet without blocking */
42
43         return 0;
44 }
45
46 LWS_VISIBLE int
47 lws_poll_listen_fd(struct lws_pollfd *fd)
48 {
49         return poll(fd, 1, 0);
50 }
51
52 /*
53  * This is just used to interrupt poll waiting
54  * we don't have to do anything with it.
55  */
56 static void lws_sigusr2(int sig)
57 {
58 }
59
60 /**
61  * lws_cancel_service() - Cancel servicing of pending websocket activity
62  * @context:    Websocket context
63  *
64  *      This function let a call to lws_service() waiting for a timeout
65  *      immediately return.
66  */
67 LWS_VISIBLE void
68 lws_cancel_service(struct lws_context *context)
69 {
70         char buf = 0;
71
72         if (write(context->dummy_pipe_fds[1], &buf, sizeof(buf)) != 1)
73                 lwsl_err("Cannot write to dummy pipe");
74 }
75
76 LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
77 {
78         int syslog_level = LOG_DEBUG;
79
80         switch (level) {
81         case LLL_ERR:
82                 syslog_level = LOG_ERR;
83                 break;
84         case LLL_WARN:
85                 syslog_level = LOG_WARNING;
86                 break;
87         case LLL_NOTICE:
88                 syslog_level = LOG_NOTICE;
89                 break;
90         case LLL_INFO:
91                 syslog_level = LOG_INFO;
92                 break;
93         }
94         syslog(syslog_level, "%s", line);
95 }
96
97 LWS_VISIBLE int
98 lws_plat_service(struct lws_context *context, int timeout_ms)
99 {
100         int n;
101         int m;
102         char buf;
103 #ifdef LWS_OPENSSL_SUPPORT
104         struct lws *wsi, *wsi_next;
105 #endif
106
107         /* stay dead once we are dead */
108
109         if (!context)
110                 return 1;
111
112         lws_libev_run(context);
113
114         context->service_tid = context->protocols[0].callback(context, NULL,
115                                      LWS_CALLBACK_GET_THREAD_ID, NULL, NULL, 0);
116
117 #ifdef LWS_OPENSSL_SUPPORT
118         /* if we know we have non-network pending data, do not wait in poll */
119         if (lws_ssl_anybody_has_buffered_read(context))
120                 timeout_ms = 0;
121 #endif
122         n = poll(context->fds, context->fds_count, timeout_ms);
123         context->service_tid = 0;
124
125 #ifdef LWS_OPENSSL_SUPPORT
126         if (!lws_ssl_anybody_has_buffered_read(context) && n == 0) {
127 #else
128         if (n == 0) /* poll timeout */ {
129 #endif
130                 lws_service_fd(context, NULL);
131                 return 0;
132         }
133
134         if (n < 0) {
135                 if (LWS_ERRNO != LWS_EINTR)
136                         return -1;
137                 return 0;
138         }
139
140 #ifdef LWS_OPENSSL_SUPPORT
141         /*
142          * For all guys with buffered SSL read data already saved up, if they
143          * are not flowcontrolled, fake their POLLIN status so they'll get
144          * service to use up the buffered incoming data, even though their
145          * network socket may have nothing
146          */
147
148         wsi = context->pending_read_list;
149         while (wsi) {
150                 wsi_next = wsi->pending_read_list_next;
151        context->fds[wsi->position_in_fds_table].revents |=
152                context->fds[wsi->position_in_fds_table].events & POLLIN;
153        if (context->fds[wsi->position_in_fds_table].revents & POLLIN) {
154                         /*
155                          * he's going to get serviced now, take him off the
156                          * list of guys with buffered SSL.  If he still has some
157                          * at the end of the service, he'll get put back on the
158                          * list then.
159                          */
160                         lws_ssl_remove_wsi_from_buffered_list(context, wsi);
161                 }
162                 wsi = wsi_next;
163         }
164 #endif
165
166         /* any socket with events to service? */
167
168         for (n = 0; n < context->fds_count; n++) {
169
170                 if (!context->fds[n].revents)
171                         continue;
172
173                 if (context->fds[n].fd == context->dummy_pipe_fds[0]) {
174                         if (read(context->fds[n].fd, &buf, 1) != 1)
175                                 lwsl_err("Cannot read from dummy pipe.");
176                         continue;
177                 }
178
179                 m = lws_service_fd(context, &context->fds[n]);
180                 if (m < 0)
181                         return -1;
182                 /* if something closed, retry this slot */
183                 if (m)
184                         n--;
185         }
186
187         return 0;
188 }
189
190 LWS_VISIBLE int
191 lws_plat_set_socket_options(struct lws_context *context, int fd)
192 {
193         int optval = 1;
194         socklen_t optlen = sizeof(optval);
195
196 #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || \
197     defined(__OpenBSD__)
198         struct protoent *tcp_proto;
199 #endif
200
201         if (context->ka_time) {
202                 /* enable keepalive on this socket */
203                 optval = 1;
204                 if (setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE,
205                                              (const void *)&optval, optlen) < 0)
206                         return 1;
207
208 #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || \
209         defined(__CYGWIN__) || defined(__OpenBSD__)
210
211                 /*
212                  * didn't find a way to set these per-socket, need to
213                  * tune kernel systemwide values
214                  */
215 #else
216                 /* set the keepalive conditions we want on it too */
217                 optval = context->ka_time;
218                 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE,
219                                              (const void *)&optval, optlen) < 0)
220                         return 1;
221
222                 optval = context->ka_interval;
223                 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL,
224                                              (const void *)&optval, optlen) < 0)
225                         return 1;
226
227                 optval = context->ka_probes;
228                 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT,
229                                              (const void *)&optval, optlen) < 0)
230                         return 1;
231 #endif
232         }
233
234         /* Disable Nagle */
235         optval = 1;
236 #if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && \
237     !defined(__OpenBSD__)
238         if (setsockopt(fd, SOL_TCP, TCP_NODELAY, (const void *)&optval, optlen) < 0)
239                 return 1;
240 #else
241         tcp_proto = getprotobyname("TCP");
242         if (setsockopt(fd, tcp_proto->p_proto, TCP_NODELAY, &optval, optlen) < 0)
243                 return 1;
244 #endif
245
246         /* We are nonblocking... */
247         if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0)
248                 return 1;
249
250         return 0;
251 }
252
253 LWS_VISIBLE void
254 lws_plat_drop_app_privileges(struct lws_context_creation_info *info)
255 {
256         if (info->uid != -1) {
257                 struct passwd *p = getpwuid(info->uid);
258
259                 if (p) {
260                         initgroups(p->pw_name, info->gid);
261                         if (setuid(info->uid))
262                                 lwsl_warn("setuid: %s\n", strerror(LWS_ERRNO));
263                         else
264                                 lwsl_notice(" Set privs to user '%s'\n", p->pw_name);
265                 } else
266                         lwsl_warn("getpwuid: unable to find uid %d", info->uid);
267         }
268         if (info->gid != -1)
269                 if (setgid(info->gid))
270                         lwsl_warn("setgid: %s\n", strerror(LWS_ERRNO));
271
272 }
273
274 LWS_VISIBLE int
275 lws_plat_init(struct lws_context *context,
276               struct lws_context_creation_info *info)
277 {
278         context->lws_lookup = lws_zalloc(sizeof(struct lws *) * context->max_fds);
279         if (context->lws_lookup == NULL) {
280                 lwsl_err(
281                   "Unable to allocate lws_lookup array for %d connections\n",
282                                                               context->max_fds);
283                 return 1;
284         }
285
286         context->fd_random = open(SYSTEM_RANDOM_FILEPATH, O_RDONLY);
287         if (context->fd_random < 0) {
288                 lwsl_err("Unable to open random device %s %d\n",
289                                     SYSTEM_RANDOM_FILEPATH, context->fd_random);
290                 return 1;
291         }
292
293         if (lws_libev_init_fd_table(context))
294                 /* libev handled it instead */
295                 return 0;
296
297         if (pipe(context->dummy_pipe_fds)) {
298                 lwsl_err("Unable to create pipe\n");
299                 return 1;
300         }
301
302         /* use the read end of pipe as first item */
303         context->fds[0].fd = context->dummy_pipe_fds[0];
304         context->fds[0].events = LWS_POLLIN;
305         context->fds[0].revents = 0;
306         context->fds_count = 1;
307
308         return 0;
309 }
310
311 static void sigpipe_handler(int x)
312 {
313 }
314
315
316 LWS_VISIBLE int
317 lws_plat_context_early_init(void)
318 {
319         sigset_t mask;
320
321         signal(SIGUSR2, lws_sigusr2);
322         sigemptyset(&mask);
323         sigaddset(&mask, SIGUSR2);
324
325         sigprocmask(SIG_BLOCK, &mask, NULL);
326
327         signal(SIGPIPE, sigpipe_handler);
328
329         return 0;
330 }
331
332 LWS_VISIBLE void
333 lws_plat_context_early_destroy(struct lws_context *context)
334 {
335 }
336
337 LWS_VISIBLE void
338 lws_plat_context_late_destroy(struct lws_context *context)
339 {
340         if (context->lws_lookup)
341                 lws_free(context->lws_lookup);
342
343         close(context->dummy_pipe_fds[0]);
344         close(context->dummy_pipe_fds[1]);
345         close(context->fd_random);
346 }
347
348 /* cast a struct sockaddr_in6 * into addr for ipv6 */
349
350 LWS_VISIBLE int
351 interface_to_sa(struct lws_context *context,
352                 const char *ifname, struct sockaddr_in *addr, size_t addrlen)
353 {
354         int rc = -1;
355
356         struct ifaddrs *ifr;
357         struct ifaddrs *ifc;
358 #ifdef LWS_USE_IPV6
359         struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *)addr;
360 #endif
361
362         getifaddrs(&ifr);
363         for (ifc = ifr; ifc != NULL && rc; ifc = ifc->ifa_next) {
364                 if (!ifc->ifa_addr)
365                         continue;
366
367                 lwsl_info(" interface %s vs %s\n", ifc->ifa_name, ifname);
368
369                 if (strcmp(ifc->ifa_name, ifname))
370                         continue;
371
372                 switch (ifc->ifa_addr->sa_family) {
373                 case AF_INET:
374 #ifdef LWS_USE_IPV6
375                         if (LWS_IPV6_ENABLED(context)) {
376                                 /* map IPv4 to IPv6 */
377                                 bzero((char *)&addr6->sin6_addr,
378                                                 sizeof(struct in6_addr));
379                                 addr6->sin6_addr.s6_addr[10] = 0xff;
380                                 addr6->sin6_addr.s6_addr[11] = 0xff;
381                                 memcpy(&addr6->sin6_addr.s6_addr[12],
382                                         &((struct sockaddr_in *)ifc->ifa_addr)->sin_addr,
383                                                         sizeof(struct in_addr));
384                         } else
385 #endif
386                                 memcpy(addr,
387                                         (struct sockaddr_in *)ifc->ifa_addr,
388                                                     sizeof(struct sockaddr_in));
389                         break;
390 #ifdef LWS_USE_IPV6
391                 case AF_INET6:
392                         memcpy(&addr6->sin6_addr,
393                           &((struct sockaddr_in6 *)ifc->ifa_addr)->sin6_addr,
394                                                        sizeof(struct in6_addr));
395                         break;
396 #endif
397                 default:
398                         continue;
399                 }
400                 rc = 0;
401         }
402
403         freeifaddrs(ifr);
404
405         if (rc == -1) {
406                 /* check if bind to IP adddress */
407 #ifdef LWS_USE_IPV6
408                 if (inet_pton(AF_INET6, ifname, &addr6->sin6_addr) == 1)
409                         rc = 0;
410                 else
411 #endif
412                 if (inet_pton(AF_INET, ifname, &addr->sin_addr) == 1)
413                         rc = 0;
414         }
415
416         return rc;
417 }
418
419 LWS_VISIBLE void
420 lws_plat_insert_socket_into_fds(struct lws_context *context,
421                                                        struct lws *wsi)
422 {
423         lws_libev_io(context, wsi, LWS_EV_START | LWS_EV_READ);
424         context->fds[context->fds_count++].revents = 0;
425 }
426
427 LWS_VISIBLE void
428 lws_plat_delete_socket_from_fds(struct lws_context *context,
429                                                 struct lws *wsi, int m)
430 {
431 }
432
433 LWS_VISIBLE void
434 lws_plat_service_periodic(struct lws_context *context)
435 {
436         /* if our parent went down, don't linger around */
437         if (context->started_with_parent &&
438                               kill(context->started_with_parent, 0) < 0)
439                 kill(getpid(), SIGTERM);
440 }
441
442 LWS_VISIBLE int
443 lws_plat_change_pollfd(struct lws_context *context,
444                       struct lws *wsi, struct lws_pollfd *pfd)
445 {
446         return 0;
447 }
448
449 LWS_VISIBLE int
450 lws_plat_open_file(const char* filename, unsigned long* filelen)
451 {
452         struct stat stat_buf;
453         int ret = open(filename, O_RDONLY);
454
455         if (ret < 0)
456                 return LWS_INVALID_FILE;
457
458         if (fstat(ret, &stat_buf) < 0) {
459                 close(ret);
460                 return LWS_INVALID_FILE;
461         }
462         *filelen = stat_buf.st_size;
463         return ret;
464 }
465
466 LWS_VISIBLE const char *
467 lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt)
468 {
469         return inet_ntop(af, src, dst, cnt);
470 }