NeoMutt  2025-12-11-980-ge38c27
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 <sys/types.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
  • Damien Riegel
  • Richard Russon
  • Pietro Cerutti

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 = { 0 };
72 struct sigaction oldalrm = { 0 };
73 struct sigaction act = { 0 };
74
75 if (sa->sa_family == AF_INET)
76 sa_size = sizeof(struct sockaddr_in);
77#ifdef HAVE_GETADDRINFO
78 else if (sa->sa_family == AF_INET6)
79 sa_size = sizeof(struct sockaddr_in6);
80#endif
81 else
82 {
83 mutt_debug(LL_DEBUG1, "Unknown address family!\n");
84 return -1;
85 }
86
87 /* Batch mode does not call mutt_signal_init(), so ensure the alarm
88 * interrupts the connect call */
89 const short c_socket_timeout = cs_subset_number(NeoMutt->sub, "socket_timeout");
90 if (c_socket_timeout > 0)
91 {
92 sigemptyset(&act.sa_mask);
93 act.sa_handler = mutt_sig_empty_handler;
94#ifdef SA_INTERRUPT
95 act.sa_flags = SA_INTERRUPT;
96#else
97 act.sa_flags = 0;
98#endif
99 sigaction(SIGALRM, &act, &oldalrm);
100 alarm(c_socket_timeout);
101 }
102
104
105 /* FreeBSD's connect() does not respect SA_RESTART, meaning
106 * a SIGWINCH will cause the connect to fail. */
107 sigemptyset(&set);
108 sigaddset(&set, SIGWINCH);
109 sigprocmask(SIG_BLOCK, &set, NULL);
110
111 save_errno = 0;
112
113 if (c_socket_timeout > 0)
114 {
115 const struct timeval tv = { c_socket_timeout, 0 };
116 if (setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(tv)) < 0)
117 {
118 mutt_debug(LL_DEBUG2, "Cannot set socket receive timeout. errno: %d\n", errno);
119 }
120 if (setsockopt(fd, SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(tv)) < 0)
121 {
122 mutt_debug(LL_DEBUG2, "Cannot set socket send timeout. errno: %d\n", errno);
123 }
124 }
125
126 if (connect(fd, sa, sa_size) < 0)
127 {
128 save_errno = errno;
129 mutt_debug(LL_DEBUG2, "Connection failed. errno: %d\n", errno);
130 SigInt = false; /* reset in case we caught SIGINTR while in connect() */
131 }
132
133 if (c_socket_timeout > 0)
134 {
135 alarm(0);
136 sigaction(SIGALRM, &oldalrm, NULL);
137 }
139 sigprocmask(SIG_UNBLOCK, &set, NULL);
140
141 return save_errno;
142}
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition helpers.c:143
#define mutt_debug(LEVEL,...)
Definition logging2.h:91
@ LL_DEBUG2
Log at debug level 2.
Definition logging2.h:46
void mutt_sig_empty_handler(int sig)
Dummy signal handler.
Definition signal.c:130
volatile sig_atomic_t SigInt
true after SIGINT is received
Definition signal.c:68
void mutt_sig_allow_interrupt(bool allow)
Allow/disallow Ctrl-C (SIGINT)
Definition signal.c:315
Container for Accounts, Notifications.
Definition neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition neomutt.h:49
+ Here is the call graph for this function:
+ Here is the caller graph for this function: