Skip to content

Commit 82d0fe6

Browse files
paulburtonRiku Voipio
authored and
Riku Voipio
committed
linux-user: support SO_PASSSEC setsockopt option
Translate the SO_PASSSEC option to setsockopt to the host value & perform the syscall as expected, allowing use of the option by target programs. Signed-off-by: Paul Burton <[email protected]> Signed-off-by: Riku Voipio <[email protected]>
1 parent d79b6cc commit 82d0fe6

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

linux-user/socket.h

+5
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
#define TARGET_SO_PEERSEC 30
6464
#define TARGET_SO_SNDBUFFORCE 31
6565
#define TARGET_SO_RCVBUFFORCE 33
66+
#define TARGET_SO_PASSSEC 34
6667

6768
/** sock_type - Socket types
6869
*
@@ -242,6 +243,10 @@
242243

243244
#define TARGET_SOCK_MAX (TARGET_SOCK_PACKET + 1)
244245
#define TARGET_SOCK_TYPE_MASK 0xf /* Covers up to TARGET_SOCK_MAX-1. */
246+
247+
#define TARGET_SO_PASSSEC 31
248+
#else
249+
#define TARGET_SO_PASSSEC 34
245250
#endif
246251

247252
/* For setsockopt(2) */

linux-user/syscall.c

+3
Original file line numberDiff line numberDiff line change
@@ -1531,6 +1531,9 @@ static abi_long do_setsockopt(int sockfd, int level, int optname,
15311531
case TARGET_SO_PASSCRED:
15321532
optname = SO_PASSCRED;
15331533
break;
1534+
case TARGET_SO_PASSSEC:
1535+
optname = SO_PASSSEC;
1536+
break;
15341537
case TARGET_SO_TIMESTAMP:
15351538
optname = SO_TIMESTAMP;
15361539
break;

0 commit comments

Comments
 (0)