Blame


1 c553191e 2022-01-11 op /*
2 c553191e 2022-01-11 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 c553191e 2022-01-11 op *
4 c553191e 2022-01-11 op * Permission to use, copy, modify, and distribute this software for any
5 c553191e 2022-01-11 op * purpose with or without fee is hereby granted, provided that the above
6 c553191e 2022-01-11 op * copyright notice and this permission notice appear in all copies.
7 c553191e 2022-01-11 op *
8 c553191e 2022-01-11 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 c553191e 2022-01-11 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 c553191e 2022-01-11 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 c553191e 2022-01-11 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 c553191e 2022-01-11 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 c553191e 2022-01-11 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 c553191e 2022-01-11 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 c553191e 2022-01-11 op */
16 c553191e 2022-01-11 op
17 c553191e 2022-01-11 op #include "compat.h"
18 c553191e 2022-01-11 op
19 c553191e 2022-01-11 op #include <ctype.h>
20 c553191e 2022-01-11 op #include <errno.h>
21 c553191e 2022-01-11 op #include <fcntl.h>
22 c553191e 2022-01-11 op #include <stdlib.h>
23 c553191e 2022-01-11 op #include <string.h>
24 c553191e 2022-01-11 op #include <unistd.h>
25 c553191e 2022-01-11 op
26 c553191e 2022-01-11 op #include "telescope.h"
27 c553191e 2022-01-11 op #include "utils.h"
28 c553191e 2022-01-11 op
29 c553191e 2022-01-11 op static void imsg_event_add(struct imsgev *);
30 c553191e 2022-01-11 op
31 c553191e 2022-01-11 op int
32 c553191e 2022-01-11 op mark_nonblock(int fd)
33 c553191e 2022-01-11 op {
34 c553191e 2022-01-11 op int flags;
35 c553191e 2022-01-11 op
36 c553191e 2022-01-11 op if ((flags = fcntl(fd, F_GETFL)) == -1)
37 c553191e 2022-01-11 op return 0;
38 c553191e 2022-01-11 op if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
39 c553191e 2022-01-11 op return 0;
40 c553191e 2022-01-11 op return 1;
41 c553191e 2022-01-11 op }
42 c553191e 2022-01-11 op
43 c553191e 2022-01-11 op int
44 c553191e 2022-01-11 op has_prefix(const char *str, const char *prfx)
45 c553191e 2022-01-11 op {
46 c553191e 2022-01-11 op size_t i;
47 c553191e 2022-01-11 op
48 c553191e 2022-01-11 op for (i = 0; str[i] != '\0' && prfx[i] != '\0'; ++i)
49 c553191e 2022-01-11 op if (str[i] != prfx[i])
50 c553191e 2022-01-11 op return 0;
51 c553191e 2022-01-11 op return prfx[i] == '\0';
52 c553191e 2022-01-11 op }
53 c553191e 2022-01-11 op
54 c553191e 2022-01-11 op int
55 c553191e 2022-01-11 op has_suffix(const char *str, const char *sufx)
56 c553191e 2022-01-11 op {
57 c553191e 2022-01-11 op size_t l, s;
58 c553191e 2022-01-11 op
59 c553191e 2022-01-11 op l = strlen(str);
60 c553191e 2022-01-11 op s = strlen(sufx);
61 c553191e 2022-01-11 op
62 c553191e 2022-01-11 op if (l < s)
63 c553191e 2022-01-11 op return 0;
64 c553191e 2022-01-11 op
65 c553191e 2022-01-11 op return !strcmp(str + (l - s), sufx);
66 c553191e 2022-01-11 op }
67 c553191e 2022-01-11 op
68 c553191e 2022-01-11 op int
69 c553191e 2022-01-11 op unicode_isspace(uint32_t cp)
70 c553191e 2022-01-11 op {
71 c553191e 2022-01-11 op if (cp < INT8_MAX)
72 c553191e 2022-01-11 op return isspace(cp);
73 c553191e 2022-01-11 op return 0;
74 c553191e 2022-01-11 op }
75 c553191e 2022-01-11 op
76 c553191e 2022-01-11 op int
77 c553191e 2022-01-11 op unicode_isgraph(uint32_t cp)
78 c553191e 2022-01-11 op {
79 c553191e 2022-01-11 op if (cp < INT8_MAX)
80 c553191e 2022-01-11 op return isgraph(cp);
81 c553191e 2022-01-11 op return 1;
82 c553191e 2022-01-11 op }
83 c553191e 2022-01-11 op
84 c553191e 2022-01-11 op static void
85 c553191e 2022-01-11 op imsg_event_add(struct imsgev *iev)
86 c553191e 2022-01-11 op {
87 c553191e 2022-01-11 op iev->events = EV_READ;
88 c553191e 2022-01-11 op if (iev->ibuf.w.queued)
89 c553191e 2022-01-11 op iev->events |= EV_WRITE;
90 c553191e 2022-01-11 op
91 c553191e 2022-01-11 op event_del(&iev->ev);
92 c553191e 2022-01-11 op event_set(&iev->ev, iev->ibuf.fd, iev->events, iev->handler, iev);
93 c553191e 2022-01-11 op event_add(&iev->ev, NULL);
94 c553191e 2022-01-11 op }
95 c553191e 2022-01-11 op
96 c553191e 2022-01-11 op int
97 c553191e 2022-01-11 op dispatch_imsg(struct imsgev *iev, short event, imsg_handlerfn **handlers,
98 c553191e 2022-01-11 op size_t size)
99 c553191e 2022-01-11 op {
100 c553191e 2022-01-11 op struct imsgbuf *ibuf;
101 c553191e 2022-01-11 op struct imsg imsg;
102 c553191e 2022-01-11 op size_t datalen, i;
103 c553191e 2022-01-11 op ssize_t n;
104 c553191e 2022-01-11 op
105 c553191e 2022-01-11 op ibuf = &iev->ibuf;
106 c553191e 2022-01-11 op
107 c553191e 2022-01-11 op if (event & EV_READ) {
108 c553191e 2022-01-11 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
109 c553191e 2022-01-11 op err(1, "imsg_read error");
110 c553191e 2022-01-11 op if (n == 0)
111 c553191e 2022-01-11 op return -1;
112 c553191e 2022-01-11 op }
113 c553191e 2022-01-11 op if (event & EV_WRITE) {
114 c553191e 2022-01-11 op if ((n = msgbuf_write(&ibuf->w)) == -1 && errno != EAGAIN)
115 c553191e 2022-01-11 op err(1, "msgbuf_write");
116 c553191e 2022-01-11 op if (n == 0)
117 c553191e 2022-01-11 op return -1;
118 c553191e 2022-01-11 op }
119 c553191e 2022-01-11 op
120 c553191e 2022-01-11 op for (;;) {
121 c553191e 2022-01-11 op if ((n = imsg_get(ibuf, &imsg)) == -1)
122 c553191e 2022-01-11 op _exit(1);
123 c553191e 2022-01-11 op if (n == 0)
124 c553191e 2022-01-11 op break;
125 c553191e 2022-01-11 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
126 c553191e 2022-01-11 op i = imsg.hdr.type;
127 c553191e 2022-01-11 op if (i > (size / sizeof(imsg_handlerfn*)) || handlers[i] == NULL)
128 c553191e 2022-01-11 op abort();
129 c553191e 2022-01-11 op handlers[i](&imsg, datalen);
130 c553191e 2022-01-11 op imsg_free(&imsg);
131 c553191e 2022-01-11 op }
132 c553191e 2022-01-11 op
133 c553191e 2022-01-11 op imsg_event_add(iev);
134 c553191e 2022-01-11 op return 0;
135 c553191e 2022-01-11 op }
136 c553191e 2022-01-11 op
137 c553191e 2022-01-11 op int
138 c553191e 2022-01-11 op imsg_compose_event(struct imsgev *iev, uint16_t type, uint32_t peerid,
139 c553191e 2022-01-11 op pid_t pid, int fd, const void *data, uint16_t datalen)
140 c553191e 2022-01-11 op {
141 c553191e 2022-01-11 op int ret;
142 c553191e 2022-01-11 op
143 c553191e 2022-01-11 op if ((ret = imsg_compose(&iev->ibuf, type, peerid, pid, fd, data,
144 c553191e 2022-01-11 op datalen) != -1))
145 c553191e 2022-01-11 op imsg_event_add(iev);
146 c553191e 2022-01-11 op
147 c553191e 2022-01-11 op return ret;
148 c553191e 2022-01-11 op }
149 c553191e 2022-01-11 op
150 c553191e 2022-01-11 op void *
151 c553191e 2022-01-11 op hash_alloc(size_t len, void *d)
152 c553191e 2022-01-11 op {
153 c553191e 2022-01-11 op if ((d = malloc(len)) == NULL)
154 c553191e 2022-01-11 op abort();
155 c553191e 2022-01-11 op return d;
156 c553191e 2022-01-11 op }
157 c553191e 2022-01-11 op
158 c553191e 2022-01-11 op void *
159 c553191e 2022-01-11 op hash_calloc(size_t nmemb, size_t size, void *d)
160 c553191e 2022-01-11 op {
161 c553191e 2022-01-11 op if ((d = calloc(nmemb, size)) == NULL)
162 c553191e 2022-01-11 op abort();
163 c553191e 2022-01-11 op return d;
164 c553191e 2022-01-11 op }
165 c553191e 2022-01-11 op
166 c553191e 2022-01-11 op void
167 c553191e 2022-01-11 op hash_free(void *ptr, void *d)
168 c553191e 2022-01-11 op {
169 c553191e 2022-01-11 op free(ptr);
170 c553191e 2022-01-11 op }