1 /* Serial interface for local domain connections on Un*x like systems.
3 Copyright (C) 1992-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include <sys/socket.h>
27 #define UNIX_PATH_MAX sizeof(((struct sockaddr_un *) NULL)->sun_path)
30 /* Open an AF_UNIX socket. */
33 uds_open (struct serial
*scb
, const char *name
)
35 struct sockaddr_un addr
;
37 if (strlen (name
) > UNIX_PATH_MAX
- 1)
38 error (_("The socket name is too long. It may be no longer than %s bytes."),
39 pulongest (UNIX_PATH_MAX
- 1L));
41 memset (&addr
, 0, sizeof addr
);
42 addr
.sun_family
= AF_UNIX
;
43 strncpy (addr
.sun_path
, name
, UNIX_PATH_MAX
- 1);
45 scb
->fd
= socket (AF_UNIX
, SOCK_STREAM
, 0);
47 perror_with_name (_("could not open socket"));
49 if (connect (scb
->fd
, (struct sockaddr
*) &addr
,
50 sizeof (struct sockaddr_un
)) < 0)
54 perror_with_name (_("could not connect to remote"), saved
);
59 uds_close (struct serial
*scb
)
69 uds_read_prim (struct serial
*scb
, size_t count
)
71 int result
= recv (scb
->fd
, scb
->buf
, count
, 0);
72 if (result
== -1 && errno
!= EINTR
)
73 perror_with_name ("error while reading");
78 uds_write_prim (struct serial
*scb
, const void *buf
, size_t count
)
80 int result
= send (scb
->fd
, buf
, count
, 0);
81 if (result
== -1 && errno
!= EINTR
)
82 perror_with_name ("error while writing");
86 /* The local socket ops. */
88 static const struct serial_ops uds_ops
=
96 ser_base_flush_output
,
100 ser_base_get_tty_state
,
101 ser_base_copy_tty_state
,
102 ser_base_set_tty_state
,
103 ser_base_print_tty_state
,
104 ser_base_setbaudrate
,
105 ser_base_setstopbits
,
107 ser_base_drain_output
,
113 void _initialize_ser_socket ();
115 _initialize_ser_socket ()
117 serial_add_interface (&uds_ops
);