From patchwork Sun Jun 15 16:18:21 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Burton X-Patchwork-Id: 359850 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3F3E9140094 for ; Mon, 16 Jun 2014 02:21:38 +1000 (EST) Received: from localhost ([::1]:39269 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwDBX-00019J-QU for incoming@patchwork.ozlabs.org; Sun, 15 Jun 2014 12:21:35 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51821) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwD91-00050m-CB for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:19:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WwD8v-00064s-Fz for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:18:59 -0400 Received: from mail-wi0-x22c.google.com ([2a00:1450:400c:c05::22c]:33596) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WwD8v-00064g-91 for qemu-devel@nongnu.org; Sun, 15 Jun 2014 12:18:53 -0400 Received: by mail-wi0-f172.google.com with SMTP id hi2so2926443wib.17 for ; Sun, 15 Jun 2014 09:18:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=CX55dLjxnpIbPaOgltpkYuEWbT51PnurTJ8Mg5CI5Es=; b=V0ZBZuUBxs0B/Vu9cuP5k9mH1GzHeE4d5XFOaB58dvBgHMlebUI6dzxXbYJCAJw2CO lJTMmW5nF9U7PeKu1WDoWqFY3W4jDxHlHUsN1xsxpOlvB1iLCvp+8goizTiT4lo94jHX Usq9StiCOEh7n4qvo00W+nhK8b4A3IpQL51PJSkaPhwZDAR2YMl5o89SAoCu6quj+XE6 dGan4kN9cB/9rnJbRc6BfZnp+SxKNxH7X0y9QA61c8SnhjEFzl9lucF0F94AWi60i48n GQS/6xZDvlAC2MyG5miQn72q34i/ayaOmo0EkJqClBrbtILtd8dkuAg1Qjp8sIjoni5j rQ/A== X-Received: by 10.180.83.225 with SMTP id t1mr20379558wiy.28.1402849132528; Sun, 15 Jun 2014 09:18:52 -0700 (PDT) Received: from pburton-laptop.home (host81-156-187-173.range81-156.btcentralplus.com. [81.156.187.173]) by mx.google.com with ESMTPSA id o3sm9377024wiz.24.2014.06.15.09.18.51 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 15 Jun 2014 09:18:51 -0700 (PDT) From: Paul Burton To: qemu-devel@nongnu.org Date: Sun, 15 Jun 2014 17:18:21 +0100 Message-Id: <1402849113-11402-5-git-send-email-paul@archlinuxmips.org> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1402849113-11402-1-git-send-email-paul@archlinuxmips.org> References: <1402849113-11402-1-git-send-email-paul@archlinuxmips.org> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:400c:c05::22c Cc: Riku Voipio , Paul Burton Subject: [Qemu-devel] [PATCH 04/16] linux-user: support SO_PASSSEC setsockopt option X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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 --- linux-user/socket.h | 2 ++ linux-user/syscall.c | 3 +++ 2 files changed, 5 insertions(+) diff --git a/linux-user/socket.h b/linux-user/socket.h index ae17959..289c6ac 100644 --- a/linux-user/socket.h +++ b/linux-user/socket.h @@ -63,6 +63,7 @@ #define TARGET_SO_PEERSEC 30 #define TARGET_SO_SNDBUFFORCE 31 #define TARGET_SO_RCVBUFFORCE 33 + #define TARGET_SO_PASSSEC 34 /** sock_type - Socket types * @@ -298,6 +299,7 @@ #define TARGET_SO_ACCEPTCONN 30 #define TARGET_SO_PEERSEC 31 + #define TARGET_SO_PASSSEC 34 #endif diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 679d165..b507f81 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -1529,6 +1529,9 @@ set_timeout: case TARGET_SO_PASSCRED: optname = SO_PASSCRED; break; + case TARGET_SO_PASSSEC: + optname = SO_PASSSEC; + break; case TARGET_SO_TIMESTAMP: optname = SO_TIMESTAMP; break;