Coverage Report

Created: 2025-07-11 06:21

/src/libevent/bufferevent_sock.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
3
 * Copyright (c) 2002-2006 Niels Provos <provos@citi.umich.edu>
4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 * 1. Redistributions of source code must retain the above copyright
10
 *    notice, this list of conditions and the following disclaimer.
11
 * 2. Redistributions in binary form must reproduce the above copyright
12
 *    notice, this list of conditions and the following disclaimer in the
13
 *    documentation and/or other materials provided with the distribution.
14
 * 3. The name of the author may not be used to endorse or promote products
15
 *    derived from this software without specific prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
29
#include "event2/event-config.h"
30
#include "evconfig-private.h"
31
32
#include <sys/types.h>
33
34
#ifdef EVENT__HAVE_SYS_TIME_H
35
#include <sys/time.h>
36
#endif
37
38
#include <errno.h>
39
#include <stdio.h>
40
#include <stdlib.h>
41
#include <string.h>
42
#ifdef EVENT__HAVE_STDARG_H
43
#include <stdarg.h>
44
#endif
45
#ifdef EVENT__HAVE_UNISTD_H
46
#include <unistd.h>
47
#endif
48
49
#ifdef _WIN32
50
#include <winsock2.h>
51
#include <ws2tcpip.h>
52
#endif
53
54
#ifdef EVENT__HAVE_SYS_SOCKET_H
55
#include <sys/socket.h>
56
#endif
57
#ifdef EVENT__HAVE_NETINET_IN_H
58
#include <netinet/in.h>
59
#endif
60
#ifdef EVENT__HAVE_NETINET_IN6_H
61
#include <netinet/in6.h>
62
#endif
63
64
#include "event2/util.h"
65
#include "event2/bufferevent.h"
66
#include "event2/buffer.h"
67
#include "event2/bufferevent_struct.h"
68
#include "event2/bufferevent_compat.h"
69
#include "event2/event.h"
70
#include "log-internal.h"
71
#include "mm-internal.h"
72
#include "bufferevent-internal.h"
73
#include "util-internal.h"
74
#ifdef _WIN32
75
#include "iocp-internal.h"
76
#endif
77
78
/* prototypes */
79
static int be_socket_enable(struct bufferevent *, short);
80
static int be_socket_disable(struct bufferevent *, short);
81
static void be_socket_destruct(struct bufferevent *);
82
static int be_socket_flush(struct bufferevent *, short, enum bufferevent_flush_mode);
83
static int be_socket_ctrl(struct bufferevent *, enum bufferevent_ctrl_op, union bufferevent_ctrl_data *);
84
85
static void be_socket_setfd(struct bufferevent *, evutil_socket_t);
86
87
const struct bufferevent_ops bufferevent_ops_socket = {
88
  "socket",
89
  evutil_offsetof(struct bufferevent_private, bev),
90
  be_socket_enable,
91
  be_socket_disable,
92
  NULL, /* unlink */
93
  be_socket_destruct,
94
  bufferevent_generic_adj_existing_timeouts_,
95
  be_socket_flush,
96
  be_socket_ctrl,
97
};
98
99
const struct sockaddr*
100
bufferevent_socket_get_conn_address_(struct bufferevent *bev)
101
0
{
102
0
  struct bufferevent_private *bev_p = BEV_UPCAST(bev);
103
0
  return (struct sockaddr *)&bev_p->conn_address;
104
0
}
105
106
void
107
bufferevent_socket_set_conn_address_fd_(struct bufferevent *bev,
108
  evutil_socket_t fd)
109
0
{
110
0
  struct bufferevent_private *bev_p = BEV_UPCAST(bev);
111
112
0
  socklen_t len = sizeof(bev_p->conn_address);
113
114
0
  struct sockaddr *addr = (struct sockaddr *)&bev_p->conn_address;
115
0
  if (addr->sa_family != AF_UNSPEC)
116
0
    getpeername(fd, addr, &len);
117
0
}
118
119
void
120
bufferevent_socket_set_conn_address_(struct bufferevent *bev,
121
  struct sockaddr *addr, size_t addrlen)
122
0
{
123
0
  struct bufferevent_private *bev_p = BEV_UPCAST(bev);
124
0
  EVUTIL_ASSERT(addrlen <= sizeof(bev_p->conn_address));
125
0
  memcpy(&bev_p->conn_address, addr, addrlen);
126
0
}
127
128
static void
129
bufferevent_socket_outbuf_cb(struct evbuffer *buf,
130
    const struct evbuffer_cb_info *cbinfo,
131
    void *arg)
132
0
{
133
0
  struct bufferevent *bufev = arg;
134
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bufev);
135
136
0
  if (cbinfo->n_added &&
137
0
      (bufev->enabled & EV_WRITE) &&
138
0
      !event_pending(&bufev->ev_write, EV_WRITE, NULL) &&
139
0
      !bufev_p->write_suspended) {
140
    /* Somebody added data to the buffer, and we would like to
141
     * write, and we were not writing.  So, start writing. */
142
0
    if (bufferevent_add_event_(&bufev->ev_write, &bufev->timeout_write) == -1) {
143
        /* Should we log this? */
144
0
    }
145
0
  }
146
0
}
147
148
static void
149
bufferevent_readcb(evutil_socket_t fd, short event, void *arg)
150
0
{
151
0
  struct bufferevent *bufev = arg;
152
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bufev);
153
0
  struct evbuffer *input;
154
0
  int res = 0;
155
0
  short what = BEV_EVENT_READING;
156
0
  ev_ssize_t howmuch = -1, readmax=-1;
157
158
0
  bufferevent_incref_and_lock_(bufev);
159
160
0
  if (event == EV_TIMEOUT) {
161
    /* Note that we only check for event==EV_TIMEOUT. If
162
     * event==EV_TIMEOUT|EV_READ, we can safely ignore the
163
     * timeout, since a read has occurred */
164
0
    what |= BEV_EVENT_TIMEOUT;
165
0
    goto error;
166
0
  }
167
168
0
  input = bufev->input;
169
170
  /*
171
   * If we have a high watermark configured then we don't want to
172
   * read more data than would make us reach the watermark.
173
   */
174
0
  if (bufev->wm_read.high != 0) {
175
0
    howmuch = bufev->wm_read.high - evbuffer_get_length(input);
176
    /* we somehow lowered the watermark, stop reading */
177
0
    if (howmuch <= 0) {
178
0
      bufferevent_wm_suspend_read(bufev);
179
0
      goto done;
180
0
    }
181
0
  }
182
0
  readmax = bufferevent_get_read_max_(bufev_p);
183
0
  if (howmuch < 0 || howmuch > readmax) /* The use of -1 for "unlimited"
184
                 * uglifies this code. XXXX */
185
0
    howmuch = readmax;
186
0
  if (bufev_p->read_suspended)
187
0
    goto done;
188
189
0
  evbuffer_unfreeze(input, 0);
190
0
  res = evbuffer_read(input, fd, (int)howmuch); /* XXXX evbuffer_read would do better to take and return ev_ssize_t */
191
0
  evbuffer_freeze(input, 0);
192
193
0
  if (res == -1) {
194
0
    int err = evutil_socket_geterror(fd);
195
0
    if (EVUTIL_ERR_RW_RETRIABLE(err))
196
0
      goto reschedule;
197
    /* NOTE: sometimes on FreeBSD 9.2 the connect() does not returns an
198
     * error, and instead, first readv() will */
199
0
    if (EVUTIL_ERR_CONNECT_REFUSED(err)) {
200
0
      bufev_p->connection_refused = 1;
201
0
      goto done;
202
0
    }
203
    /* error case */
204
0
    what |= BEV_EVENT_ERROR;
205
0
  } else if (res == 0) {
206
    /* eof case */
207
0
    what |= BEV_EVENT_EOF;
208
0
  }
209
210
0
  if (res <= 0)
211
0
    goto error;
212
213
0
  bufferevent_decrement_read_buckets_(bufev_p, res);
214
215
  /* Invoke the user callback - must always be called last */
216
0
  bufferevent_trigger_nolock_(bufev, EV_READ, 0);
217
218
0
  goto done;
219
220
0
 reschedule:
221
0
  goto done;
222
223
0
 error:
224
0
  bufferevent_disable(bufev, EV_READ);
225
0
  bufferevent_run_eventcb_(bufev, what, 0);
226
227
0
 done:
228
0
  bufferevent_decref_and_unlock_(bufev);
229
0
}
230
231
static void
232
bufferevent_writecb(evutil_socket_t fd, short event, void *arg)
233
0
{
234
0
  struct bufferevent *bufev = arg;
235
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bufev);
236
0
  int res = 0;
237
0
  short what = BEV_EVENT_WRITING;
238
0
  int connected = 0;
239
0
  ev_ssize_t atmost = -1;
240
241
0
  bufferevent_incref_and_lock_(bufev);
242
243
0
  if (event == EV_TIMEOUT) {
244
    /* Note that we only check for event==EV_TIMEOUT. If
245
     * event==EV_TIMEOUT|EV_WRITE, we can safely ignore the
246
     * timeout, since a read has occurred */
247
0
    what |= BEV_EVENT_TIMEOUT;
248
0
    goto error;
249
0
  }
250
0
  if (bufev_p->connecting) {
251
0
    int c = evutil_socket_finished_connecting_(fd);
252
    /* we need to fake the error if the connection was refused
253
     * immediately - usually connection to localhost on BSD */
254
0
    if (bufev_p->connection_refused) {
255
0
      bufev_p->connection_refused = 0;
256
0
      c = -1;
257
0
    }
258
259
0
    if (c == 0)
260
0
      goto done;
261
262
0
    bufev_p->connecting = 0;
263
0
    if (c < 0) {
264
0
      event_del(&bufev->ev_write);
265
0
      event_del(&bufev->ev_read);
266
0
      bufferevent_run_eventcb_(bufev, BEV_EVENT_ERROR, 0);
267
0
      goto done;
268
0
    } else {
269
0
      connected = 1;
270
0
      bufferevent_socket_set_conn_address_fd_(bufev, fd);
271
#ifdef _WIN32
272
      if (BEV_IS_ASYNC(bufev)) {
273
        event_del(&bufev->ev_write);
274
        bufferevent_async_set_connected_(bufev);
275
        bufferevent_run_eventcb_(bufev,
276
            BEV_EVENT_CONNECTED, 0);
277
        goto done;
278
      }
279
#endif
280
0
      bufferevent_run_eventcb_(bufev,
281
0
          BEV_EVENT_CONNECTED, 0);
282
0
      if (!(bufev->enabled & EV_WRITE) ||
283
0
          bufev_p->write_suspended) {
284
0
        event_del(&bufev->ev_write);
285
0
        goto done;
286
0
      }
287
0
    }
288
0
  }
289
290
0
  atmost = bufferevent_get_write_max_(bufev_p);
291
292
0
  if (bufev_p->write_suspended)
293
0
    goto done;
294
295
0
  if (evbuffer_get_length(bufev->output)) {
296
0
    evbuffer_unfreeze(bufev->output, 1);
297
0
    res = evbuffer_write_atmost(bufev->output, fd, atmost);
298
0
    evbuffer_freeze(bufev->output, 1);
299
0
    if (res == -1) {
300
0
      int err = evutil_socket_geterror(fd);
301
0
      if (EVUTIL_ERR_RW_RETRIABLE(err))
302
0
        goto reschedule;
303
0
      what |= BEV_EVENT_ERROR;
304
0
    } else if (res == 0) {
305
      /* eof case
306
         XXXX Actually, a 0 on write doesn't indicate
307
         an EOF. An ECONNRESET might be more typical.
308
       */
309
0
      what |= BEV_EVENT_EOF;
310
0
    }
311
0
    if (res <= 0)
312
0
      goto error;
313
314
0
    bufferevent_decrement_write_buckets_(bufev_p, res);
315
0
  }
316
317
0
  if (evbuffer_get_length(bufev->output) == 0) {
318
0
    event_del(&bufev->ev_write);
319
0
  }
320
321
  /*
322
   * Invoke the user callback if our buffer is drained or below the
323
   * low watermark.
324
   */
325
0
  if (res || !connected) {
326
0
    bufferevent_trigger_nolock_(bufev, EV_WRITE, 0);
327
0
  }
328
329
0
  goto done;
330
331
0
 reschedule:
332
0
  if (evbuffer_get_length(bufev->output) == 0) {
333
0
    event_del(&bufev->ev_write);
334
0
  }
335
0
  goto done;
336
337
0
 error:
338
0
  bufferevent_disable(bufev, EV_WRITE);
339
0
  bufferevent_run_eventcb_(bufev, what, 0);
340
341
0
 done:
342
0
  bufferevent_decref_and_unlock_(bufev);
343
0
}
344
345
struct bufferevent *
346
bufferevent_socket_new(struct event_base *base, evutil_socket_t fd,
347
    int options)
348
0
{
349
0
  struct bufferevent_private *bufev_p;
350
0
  struct bufferevent *bufev;
351
352
#ifdef _WIN32
353
  if (base && event_base_get_iocp_(base))
354
    return bufferevent_async_new_(base, fd, options);
355
#endif
356
357
0
  if ((bufev_p = mm_calloc(1, sizeof(struct bufferevent_private)))== NULL)
358
0
    return NULL;
359
360
0
  if (bufferevent_init_common_(bufev_p, base, &bufferevent_ops_socket,
361
0
            options) < 0) {
362
0
    mm_free(bufev_p);
363
0
    return NULL;
364
0
  }
365
0
  bufev = &bufev_p->bev;
366
0
  evbuffer_set_flags(bufev->output, EVBUFFER_FLAG_DRAINS_TO_FD);
367
368
0
  event_assign(&bufev->ev_read, bufev->ev_base, fd,
369
0
      EV_READ|EV_PERSIST|EV_FINALIZE, bufferevent_readcb, bufev);
370
0
  event_assign(&bufev->ev_write, bufev->ev_base, fd,
371
0
      EV_WRITE|EV_PERSIST|EV_FINALIZE, bufferevent_writecb, bufev);
372
373
0
  evbuffer_add_cb(bufev->output, bufferevent_socket_outbuf_cb, bufev);
374
375
0
  evbuffer_freeze(bufev->input, 0);
376
0
  evbuffer_freeze(bufev->output, 1);
377
378
0
  return bufev;
379
0
}
380
381
int
382
bufferevent_socket_connect(struct bufferevent *bev,
383
    const struct sockaddr *sa, int socklen)
384
0
{
385
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bev);
386
387
0
  evutil_socket_t fd;
388
0
  int r = 0;
389
0
  int result=-1;
390
0
  int ownfd = 0;
391
392
0
  bufferevent_incref_and_lock_(bev);
393
394
0
  fd = bufferevent_getfd(bev);
395
0
  if (fd < 0) {
396
0
    if (!sa)
397
0
      goto done;
398
0
    fd = evutil_socket_(sa->sa_family,
399
0
        SOCK_STREAM|EVUTIL_SOCK_NONBLOCK, 0);
400
0
    if (fd < 0)
401
0
      goto done;
402
0
    ownfd = 1;
403
0
  }
404
0
  if (sa) {
405
#ifdef _WIN32
406
    if (bufferevent_async_can_connect_(bev)) {
407
      bufferevent_setfd(bev, fd);
408
      r = bufferevent_async_connect_(bev, fd, sa, socklen);
409
      if (r < 0)
410
        goto freesock;
411
      bufev_p->connecting = 1;
412
      result = 0;
413
      goto done;
414
    } else {
415
#endif
416
0
    r = evutil_socket_connect_(&fd, sa, socklen);
417
0
    if (r < 0)
418
0
      goto freesock;
419
#ifdef _WIN32
420
    }
421
#endif
422
0
  }
423
#ifdef _WIN32
424
  /* ConnectEx() isn't always around, even when IOCP is enabled.
425
   * Here, we borrow the socket object's write handler to fall back
426
   * on a non-blocking connect() when ConnectEx() is unavailable. */
427
  if (BEV_IS_ASYNC(bev)) {
428
    event_assign(&bev->ev_write, bev->ev_base, fd,
429
        EV_WRITE|EV_PERSIST|EV_FINALIZE, bufferevent_writecb, bev);
430
  }
431
#endif
432
0
  bufferevent_setfd(bev, fd);
433
0
  if (r == 0) {
434
0
    if (! be_socket_enable(bev, EV_WRITE)) {
435
0
      bufev_p->connecting = 1;
436
0
      result = 0;
437
0
      goto done;
438
0
    }
439
0
  } else if (r == 1) {
440
    /* The connect succeeded already. How very BSD of it. */
441
0
    result = 0;
442
0
    bufev_p->connecting = 1;
443
0
    bufferevent_trigger_nolock_(bev, EV_WRITE, BEV_OPT_DEFER_CALLBACKS);
444
0
  } else {
445
    /* The connect failed already (only ECONNREFUSED case). How very BSD of it. */
446
0
    result = 0;
447
0
    bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, BEV_OPT_DEFER_CALLBACKS);
448
0
    bufferevent_disable(bev, EV_WRITE|EV_READ);
449
0
  }
450
451
0
  goto done;
452
453
0
freesock:
454
0
  if (ownfd)
455
0
    evutil_closesocket(fd);
456
0
done:
457
0
  bufferevent_decref_and_unlock_(bev);
458
0
  return result;
459
0
}
460
461
static void
462
bufferevent_connect_getaddrinfo_cb(int result, struct evutil_addrinfo *ai,
463
    void *arg)
464
0
{
465
0
  struct bufferevent *bev = arg;
466
0
  struct bufferevent_private *bev_p = BEV_UPCAST(bev);
467
0
  int r;
468
0
  BEV_LOCK(bev);
469
470
0
  bufferevent_unsuspend_write_(bev, BEV_SUSPEND_LOOKUP);
471
0
  bufferevent_unsuspend_read_(bev, BEV_SUSPEND_LOOKUP);
472
473
0
  bev_p->dns_request = NULL;
474
475
0
  if (result == EVUTIL_EAI_CANCEL) {
476
0
    bev_p->dns_error = result;
477
0
    bufferevent_decref_and_unlock_(bev);
478
0
    return;
479
0
  }
480
0
  if (result != 0) {
481
0
    bev_p->dns_error = result;
482
0
    bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, 0);
483
0
    bufferevent_decref_and_unlock_(bev);
484
0
    if (ai)
485
0
      evutil_freeaddrinfo(ai);
486
0
    return;
487
0
  }
488
489
  /* XXX use the other addrinfos? */
490
0
  bufferevent_socket_set_conn_address_(bev, ai->ai_addr, (int)ai->ai_addrlen);
491
0
  r = bufferevent_socket_connect(bev, ai->ai_addr, (int)ai->ai_addrlen);
492
0
  if (r < 0)
493
0
    bufferevent_run_eventcb_(bev, BEV_EVENT_ERROR, 0);
494
0
  bufferevent_decref_and_unlock_(bev);
495
0
  evutil_freeaddrinfo(ai);
496
0
}
497
498
int
499
bufferevent_socket_connect_hostname(struct bufferevent *bev,
500
    struct evdns_base *evdns_base, int family, const char *hostname, int port)
501
0
{
502
0
  struct evutil_addrinfo hint;
503
0
  memset(&hint, 0, sizeof(hint));
504
0
  hint.ai_family = family;
505
0
  hint.ai_protocol = IPPROTO_TCP;
506
0
  hint.ai_socktype = SOCK_STREAM;
507
508
0
  return bufferevent_socket_connect_hostname_hints(bev, evdns_base, &hint, hostname, port);
509
0
}
510
511
int
512
bufferevent_socket_connect_hostname_hints(struct bufferevent *bev,
513
    struct evdns_base *evdns_base, const struct evutil_addrinfo *hints_in,
514
    const char *hostname, int port)
515
0
{
516
0
  char portbuf[10];
517
0
  struct bufferevent_private *bev_p =
518
0
      EVUTIL_UPCAST(bev, struct bufferevent_private, bev);
519
520
0
  if (hints_in->ai_family != AF_INET && hints_in->ai_family != AF_INET6 &&
521
0
      hints_in->ai_family != AF_UNSPEC)
522
0
    return -1;
523
0
  if (port < 1 || port > 65535)
524
0
    return -1;
525
526
0
  BEV_LOCK(bev);
527
0
  bev_p->dns_error = 0;
528
529
0
  evutil_snprintf(portbuf, sizeof(portbuf), "%d", port);
530
531
0
  bufferevent_suspend_write_(bev, BEV_SUSPEND_LOOKUP);
532
0
  bufferevent_suspend_read_(bev, BEV_SUSPEND_LOOKUP);
533
534
0
  bufferevent_incref_(bev);
535
0
  bev_p->dns_request = evutil_getaddrinfo_async_(evdns_base, hostname,
536
0
      portbuf, hints_in, bufferevent_connect_getaddrinfo_cb, bev);
537
538
0
  BEV_UNLOCK(bev);
539
540
0
  return 0;
541
0
}
542
543
int
544
bufferevent_socket_get_dns_error(struct bufferevent *bev)
545
0
{
546
0
  int rv;
547
0
  struct bufferevent_private *bev_p = BEV_UPCAST(bev);
548
549
0
  BEV_LOCK(bev);
550
0
  rv = bev_p->dns_error;
551
0
  BEV_UNLOCK(bev);
552
553
0
  return rv;
554
0
}
555
556
/*
557
 * Create a new buffered event object.
558
 *
559
 * The read callback is invoked whenever we read new data.
560
 * The write callback is invoked whenever the output buffer is drained.
561
 * The error callback is invoked on a write/read error or on EOF.
562
 *
563
 * Both read and write callbacks maybe NULL.  The error callback is not
564
 * allowed to be NULL and have to be provided always.
565
 */
566
567
struct bufferevent *
568
bufferevent_new(evutil_socket_t fd,
569
    bufferevent_data_cb readcb, bufferevent_data_cb writecb,
570
    bufferevent_event_cb eventcb, void *cbarg)
571
0
{
572
0
  struct bufferevent *bufev;
573
574
0
  if (!(bufev = bufferevent_socket_new(NULL, fd, 0)))
575
0
    return NULL;
576
577
0
  bufferevent_setcb(bufev, readcb, writecb, eventcb, cbarg);
578
579
0
  return bufev;
580
0
}
581
582
583
static int
584
be_socket_enable(struct bufferevent *bufev, short event)
585
0
{
586
0
  if (event & EV_READ &&
587
0
      bufferevent_add_event_(&bufev->ev_read, &bufev->timeout_read) == -1)
588
0
      return -1;
589
0
  if (event & EV_WRITE &&
590
0
      bufferevent_add_event_(&bufev->ev_write, &bufev->timeout_write) == -1)
591
0
      return -1;
592
0
  return 0;
593
0
}
594
595
static int
596
be_socket_disable(struct bufferevent *bufev, short event)
597
0
{
598
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bufev);
599
0
  if (event & EV_READ) {
600
0
    if (event_del(&bufev->ev_read) == -1)
601
0
      return -1;
602
0
  }
603
  /* Don't actually disable the write if we are trying to connect. */
604
0
  if ((event & EV_WRITE) && ! bufev_p->connecting) {
605
0
    if (event_del(&bufev->ev_write) == -1)
606
0
      return -1;
607
0
  }
608
0
  return 0;
609
0
}
610
611
static void
612
be_socket_destruct(struct bufferevent *bufev)
613
0
{
614
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bufev);
615
0
  evutil_socket_t fd;
616
0
  EVUTIL_ASSERT(BEV_IS_SOCKET(bufev));
617
618
0
  fd = event_get_fd(&bufev->ev_read);
619
620
0
  if ((bufev_p->options & BEV_OPT_CLOSE_ON_FREE) && fd >= 0)
621
0
    EVUTIL_CLOSESOCKET(fd);
622
623
0
  evutil_getaddrinfo_cancel_async_(bufev_p->dns_request);
624
0
}
625
626
static int
627
be_socket_flush(struct bufferevent *bev, short iotype,
628
    enum bufferevent_flush_mode mode)
629
0
{
630
0
  return 0;
631
0
}
632
633
634
static void
635
be_socket_setfd(struct bufferevent *bufev, evutil_socket_t fd)
636
0
{
637
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bufev);
638
639
0
  BEV_LOCK(bufev);
640
0
  EVUTIL_ASSERT(BEV_IS_SOCKET(bufev));
641
642
0
  event_del(&bufev->ev_read);
643
0
  event_del(&bufev->ev_write);
644
645
0
  evbuffer_unfreeze(bufev->input, 0);
646
0
  evbuffer_unfreeze(bufev->output, 1);
647
648
0
  event_assign(&bufev->ev_read, bufev->ev_base, fd,
649
0
      EV_READ|EV_PERSIST|EV_FINALIZE, bufferevent_readcb, bufev);
650
0
  event_assign(&bufev->ev_write, bufev->ev_base, fd,
651
0
      EV_WRITE|EV_PERSIST|EV_FINALIZE, bufferevent_writecb, bufev);
652
653
0
  if (fd >= 0)
654
0
    bufferevent_enable(bufev, bufev->enabled);
655
656
0
  evutil_getaddrinfo_cancel_async_(bufev_p->dns_request);
657
658
0
  BEV_UNLOCK(bufev);
659
0
}
660
661
/* XXXX Should non-socket bufferevents support this? */
662
int
663
bufferevent_priority_set(struct bufferevent *bufev, int priority)
664
0
{
665
0
  int r = -1;
666
0
  struct bufferevent_private *bufev_p = BEV_UPCAST(bufev);
667
668
0
  BEV_LOCK(bufev);
669
0
  if (BEV_IS_ASYNC(bufev) || BEV_IS_FILTER(bufev) || BEV_IS_PAIR(bufev))
670
0
    goto done;
671
672
0
  if (event_priority_set(&bufev->ev_read, priority) == -1)
673
0
    goto done;
674
0
  if (event_priority_set(&bufev->ev_write, priority) == -1)
675
0
    goto done;
676
677
0
  event_deferred_cb_set_priority_(&bufev_p->deferred, priority);
678
679
0
  r = 0;
680
0
done:
681
0
  BEV_UNLOCK(bufev);
682
0
  return r;
683
0
}
684
685
/* XXXX Should non-socket bufferevents support this? */
686
int
687
bufferevent_base_set(struct event_base *base, struct bufferevent *bufev)
688
0
{
689
0
  int res = -1;
690
691
0
  BEV_LOCK(bufev);
692
0
  if (!BEV_IS_SOCKET(bufev))
693
0
    goto done;
694
695
0
  bufev->ev_base = base;
696
697
0
  res = event_base_set(base, &bufev->ev_read);
698
0
  if (res == -1)
699
0
    goto done;
700
701
0
  res = event_base_set(base, &bufev->ev_write);
702
0
done:
703
0
  BEV_UNLOCK(bufev);
704
0
  return res;
705
0
}
706
707
static int
708
be_socket_ctrl(struct bufferevent *bev, enum bufferevent_ctrl_op op,
709
    union bufferevent_ctrl_data *data)
710
0
{
711
0
  switch (op) {
712
0
  case BEV_CTRL_SET_FD:
713
0
    be_socket_setfd(bev, data->fd);
714
0
    return 0;
715
0
  case BEV_CTRL_GET_FD:
716
0
    data->fd = event_get_fd(&bev->ev_read);
717
0
    return 0;
718
0
  case BEV_CTRL_GET_UNDERLYING:
719
0
  case BEV_CTRL_CANCEL_ALL:
720
0
  default:
721
0
    return -1;
722
0
  }
723
0
}