NeoMutt  2023-11-03-85-g512e01
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
raw.c File Reference

Low-level socket handling. More...

#include "config.h"
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <signal.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/select.h>
#include <sys/socket.h>
#include <unistd.h>
#include "private.h"
#include "mutt/lib.h"
#include "config/lib.h"
#include "core/lib.h"
#include "gui/lib.h"
#include "connaccount.h"
#include "connection.h"
#include "globals.h"
#include "address/lib.h"
#include <stdbool.h>
+ Include dependency graph for raw.c:

Go to the source code of this file.

Functions

static int socket_connect (int fd, struct sockaddr *sa)
 Set up to connect to a socket fd.
 
int raw_socket_open (struct Connection *conn)
 Open a socket - Implements Connection::open() -.
 
int raw_socket_read (struct Connection *conn, char *buf, size_t count)
 Read data from a socket - Implements Connection::read() -.
 
int raw_socket_write (struct Connection *conn, const char *buf, size_t count)
 Write data to a socket - Implements Connection::write() -.
 
int raw_socket_poll (struct Connection *conn, time_t wait_secs)
 Check if any data is waiting on a socket - Implements Connection::poll() -.
 
int raw_socket_close (struct Connection *conn)
 Close a socket - Implements Connection::close() -.
 

Detailed Description

Low-level socket handling.

Authors
  • Michael R. Elkins
  • Brendan Cully
  • Tommi Komulainen
  • Damien Riegel

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file raw.c.

Function Documentation

◆ socket_connect()

static int socket_connect ( int  fd,
struct sockaddr *  sa 
)
static

Set up to connect to a socket fd.

Parameters
fdFile descriptor to connect with
saAddress info
Return values
0Success
>0An errno, e.g. EPERM
-1Error

Definition at line 67 of file raw.c.

68{
69 int sa_size;
70 int save_errno;
71 sigset_t set;
72
73 if (sa->sa_family == AF_INET)
74 sa_size = sizeof(struct sockaddr_in);
75#ifdef HAVE_GETADDRINFO
76 else if (sa->sa_family == AF_INET6)
77 sa_size = sizeof(struct sockaddr_in6);
78#endif
79 else
80 {
81 mutt_debug(LL_DEBUG1, "Unknown address family!\n");
82 return -1;
83 }
84
85 const short c_socket_timeout = cs_subset_number(NeoMutt->sub, "socket_timeout");
86 if (c_socket_timeout > 0)
87 alarm(c_socket_timeout);
88
90
91 /* FreeBSD's connect() does not respect SA_RESTART, meaning
92 * a SIGWINCH will cause the connect to fail. */
93 sigemptyset(&set);
94 sigaddset(&set, SIGWINCH);
95 sigprocmask(SIG_BLOCK, &set, NULL);
96
97 save_errno = 0;
98
99 if (c_socket_timeout > 0)
100 {
101 const struct timeval tv = { c_socket_timeout, 0 };
102 if (setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) < 0)
103 {
104 mutt_debug(LL_DEBUG2, "Cannot set socket receive timeout. errno: %d\n", errno);
105 }
106 if (setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)) < 0)
107 {
108 mutt_debug(LL_DEBUG2, "Cannot set socket send timeout. errno: %d\n", errno);
109 }
110 }
111
112 if (connect(fd, sa, sa_size) < 0)
113 {
114 save_errno = errno;
115 mutt_debug(LL_DEBUG2, "Connection failed. errno: %d\n", errno);
116 SigInt = false; /* reset in case we caught SIGINTR while in connect() */
117 }
118
119 if (c_socket_timeout > 0)
120 alarm(0);
122 sigprocmask(SIG_UNBLOCK, &set, NULL);
123
124 return save_errno;
125}
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition: helpers.c:144
SIG_ATOMIC_VOLATILE_T SigInt
true after SIGINT is received
Definition: globals.c:59
#define mutt_debug(LEVEL,...)
Definition: logging2.h:89
@ LL_DEBUG2
Log at debug level 2.
Definition: logging2.h:44
@ LL_DEBUG1
Log at debug level 1.
Definition: logging2.h:43
void mutt_sig_allow_interrupt(bool allow)
Allow/disallow Ctrl-C (SIGINT)
Definition: signal.c:251
Container for Accounts, Notifications.
Definition: neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:45
+ Here is the call graph for this function:
+ Here is the caller graph for this function: