blob: 2ba3f0cbf086fb00d7707d9deb21d03e62236ed9 [file] [log] [blame]
Sharvil Nanavatic2031c42014-07-25 15:50:17 -07001/******************************************************************************
2 *
3 * Copyright (C) 2014 Google, Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19#pragma once
20
Sharvil Nanavati98bf85f2014-08-27 19:05:40 -070021#include <stdbool.h>
Sharvil Nanavatic2031c42014-07-25 15:50:17 -070022#include <stddef.h>
23#include <stdint.h>
Sharvil Nanavati98bf85f2014-08-27 19:05:40 -070024#include <sys/types.h>
Sharvil Nanavatic2031c42014-07-25 15:50:17 -070025
Jakub Pawlowski713993d2016-04-21 13:16:45 -070026#ifdef __cplusplus
27extern "C" {
28#endif
29
Sharvil Nanavatic2031c42014-07-25 15:50:17 -070030typedef struct reactor_t reactor_t;
31typedef struct socket_t socket_t;
32typedef uint16_t port_t;
33
34typedef void (*socket_cb)(socket_t *socket, void *context);
35
36// Returns a new socket object. The socket is in an idle, disconnected state when
37// it is returned by this function. The returned object must be freed by calling
38// |socket_free|. Returns NULL on failure.
39socket_t *socket_new(void);
40
Sharvil Nanavatiad3067b2014-08-21 18:13:46 -070041// Returns a new socket object backed by |fd|. The socket object is in whichever
42// state |fd| is in when it was passed to this function. The returned object must
43// be freed by calling |socket_free|. Returns NULL on failure. If this function
44// is successful, ownership of |fd| is transferred and the caller must not close it.
45socket_t *socket_new_from_fd(int fd);
46
Sharvil Nanavatic2031c42014-07-25 15:50:17 -070047// Frees a socket object created by |socket_new| or |socket_accept|. |socket| may
48// be NULL. If the socket was connected, it will be disconnected.
49void socket_free(socket_t *socket);
50
51// Puts |socket| in listening mode for incoming TCP connections on the specified
Pavlin Radoslavovd2199cb2015-08-17 18:54:22 -070052// |port| and the loopback IPv4 address. Returns true on success, false on
53// failure (e.g. |port| is bound by another socket). |socket| may not be NULL.
Sharvil Nanavatic2031c42014-07-25 15:50:17 -070054bool socket_listen(const socket_t *socket, port_t port);
55
56// Blocks on a listening socket, |socket|, until a client connects to it. Returns
57// a connected socket on success, NULL on failure. The returned object must be
58// freed by calling |socket_free|. |socket| may not be NULL.
59socket_t *socket_accept(const socket_t *socket);
60
61// Reads up to |count| bytes from |socket| into |buf|. This function will not
62// block. This function returns a positive integer representing the number
63// of bytes copied into |buf| on success, 0 if the socket has disconnected,
64// and -1 on error. This function may return a value less than |count| if not
Pavlin Radoslavovd6121a32016-05-12 11:36:44 -070065// enough data is currently available. If this function returns -1, errno will
66// also be set (see recv(2) for possible errno values). However, if the reading
67// system call was interrupted with errno of EINTR, the read operation is
68// restarted internally without propagating EINTR back to the caller. If there
69// were no bytes available to be read, this function returns -1 and sets errno
70// to EWOULDBLOCK. Neither |socket| nor |buf| may be NULL.
Sharvil Nanavatic2031c42014-07-25 15:50:17 -070071ssize_t socket_read(const socket_t *socket, void *buf, size_t count);
72
73// Writes up to |count| bytes from |buf| into |socket|. This function will not
74// block. Returns a positive integer representing the number of bytes written
Pavlin Radoslavovd6121a32016-05-12 11:36:44 -070075// to |socket| on success, 0 if the socket has disconnected, and -1 on error.
76// This function may return a value less than |count| if writing more bytes
77// would result in blocking. If this function returns -1, errno will also be
78// set (see send(2) for possible errno values). However, if the writing system
79// call was interrupted with errno of EINTR, the write operation is restarted
80// internally without propagating EINTR back to the caller. If no bytes could
81// be written without blocking, this function will return -1 and set errno to
82// EWOULDBLOCK. Neither |socket| nor |buf| may be NULL.
Sharvil Nanavatic2031c42014-07-25 15:50:17 -070083ssize_t socket_write(const socket_t *socket, const void *buf, size_t count);
84
Sharvil Nanavatiad3067b2014-08-21 18:13:46 -070085// This function performs the same write operation as |socket_write| and also
86// sends the file descriptor |fd| over the socket to a remote process. Ownership
87// of |fd| transfers to this function and the descriptor must not be used any longer.
88// If |fd| is INVALID_FD, this function behaves the same as |socket_write|.
89ssize_t socket_write_and_transfer_fd(const socket_t *socket, const void *buf, size_t count, int fd);
90
Sharvil Nanavati98bf85f2014-08-27 19:05:40 -070091// Returns the number of bytes that can be read from |socket| without blocking. On error,
92// this function returns -1. |socket| may not be NULL.
93//
94// Note: this function should not be part of the socket interface. It is only provided as
95// a stop-gap until we can refactor away code that depends on a priori knowledge of
96// the byte count. Do not use this function unless you need it while refactoring
97// legacy bluedroid code.
98ssize_t socket_bytes_available(const socket_t *socket);
99
Sharvil Nanavatifbf89082014-08-13 00:40:49 -0700100// Registers |socket| with the |reactor|. When the socket becomes readable, |read_cb|
Sharvil Nanavatic2031c42014-07-25 15:50:17 -0700101// will be called. When the socket becomes writeable, |write_cb| will be called. The
102// |context| parameter is passed, untouched, to each of the callback routines. Neither
Sharvil Nanavati98bf85f2014-08-27 19:05:40 -0700103// |socket| nor |reactor| may be NULL. |read_cb|, |write_cb|, and |context| may be NULL.
Sharvil Nanavatifbf89082014-08-13 00:40:49 -0700104void socket_register(socket_t *socket, reactor_t *reactor, void *context, socket_cb read_cb, socket_cb write_cb);
Sharvil Nanavatic2031c42014-07-25 15:50:17 -0700105
Sharvil Nanavatifbf89082014-08-13 00:40:49 -0700106// Unregisters |socket| from whichever reactor it is registered with, if any. This
Sharvil Nanavatic2031c42014-07-25 15:50:17 -0700107// function is idempotent.
108void socket_unregister(socket_t *socket);
Jakub Pawlowski713993d2016-04-21 13:16:45 -0700109
110#ifdef __cplusplus
111}
Marie Janssend19e0782016-07-15 12:48:27 -0700112#endif