netio.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #ifndef DROPBEAR_NETIO_H
  2. #define DROPBEAR_NETIO_H
  3. #include "includes.h"
  4. #include "buffer.h"
  5. #include "queue.h"
  6. enum dropbear_prio {
  7. DROPBEAR_PRIO_DEFAULT = 10,
  8. DROPBEAR_PRIO_LOWDELAY = 11,
  9. DROPBEAR_PRIO_BULK = 12,
  10. };
  11. void set_sock_nodelay(int sock);
  12. void set_sock_priority(int sock, enum dropbear_prio prio);
  13. void get_socket_address(int fd, char **local_host, char **local_port,
  14. char **remote_host, char **remote_port, int host_lookup);
  15. void getaddrstring(struct sockaddr_storage* addr,
  16. char **ret_host, char **ret_port, int host_lookup);
  17. int dropbear_listen(const char* address, const char* port,
  18. int *socks, unsigned int sockcount, char **errstring, int *maxfd);
  19. struct dropbear_progress_connection;
  20. /* result is DROPBEAR_SUCCESS or DROPBEAR_FAILURE.
  21. errstring is only set on DROPBEAR_FAILURE, returns failure message for the last attempted socket */
  22. typedef void(*connect_callback)(int result, int sock, void* data, const char* errstring);
  23. /* Always returns a progress connection, if it fails it will call the callback at a later point */
  24. struct dropbear_progress_connection * connect_remote (const char* remotehost, const char* remoteport,
  25. connect_callback cb, void *cb_data);
  26. /* Sets up for select() */
  27. void set_connect_fds(fd_set *writefd);
  28. /* Handles ready sockets after select() */
  29. void handle_connect_fds(fd_set *writefd);
  30. /* Cleanup */
  31. void remove_connect_pending(void);
  32. /* Doesn't actually stop the connect, but adds a dummy callback instead */
  33. void cancel_connect(struct dropbear_progress_connection *c);
  34. void connect_set_writequeue(struct dropbear_progress_connection *c, struct Queue *writequeue);
  35. /* TODO: writev #ifdef guard */
  36. /* Fills out iov which contains iov_count slots, returning the number filled in iov_count */
  37. void packet_queue_to_iovec(struct Queue *queue, struct iovec *iov, unsigned int *iov_count);
  38. void packet_queue_consume(struct Queue *queue, ssize_t written);
  39. #ifdef DROPBEAR_SERVER_TCP_FAST_OPEN
  40. /* Try for any Linux builds, will fall back if the kernel doesn't support it */
  41. void set_listen_fast_open(int sock);
  42. /* Define values which may be supported by the kernel even if the libc is too old */
  43. #ifndef TCP_FASTOPEN
  44. #define TCP_FASTOPEN 23
  45. #endif
  46. #ifndef MSG_FASTOPEN
  47. #define MSG_FASTOPEN 0x20000000
  48. #endif
  49. #endif
  50. #endif