Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 791F1C10F00 for ; Fri, 22 Feb 2019 06:37:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 45A5A20818 for ; Fri, 22 Feb 2019 06:37:17 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="key not found in DNS" (0-bit key) header.d=codeaurora.org header.i=@codeaurora.org header.b="jnBMGaMw"; dkim=fail reason="key not found in DNS" (0-bit key) header.d=codeaurora.org header.i=@codeaurora.org header.b="jTEqg4mR" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726169AbfBVGhQ (ORCPT ); Fri, 22 Feb 2019 01:37:16 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:58596 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725854AbfBVGhQ (ORCPT ); Fri, 22 Feb 2019 01:37:16 -0500 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 21B6F608CB; Fri, 22 Feb 2019 06:37:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1550817435; bh=Ry32DROTzdFqHTWMvCBx+mmPBllmVw2pWjQXkWcQQpI=; h=From:To:Cc:Subject:Date:From; b=jnBMGaMw3FUFtM69v2S2NMg3xEOpzvDDD2Xss/mlatoFyHqIhfA54Vo7VAPBPuDEQ V73cpwElC1cl8YZZ9cHpOE/UvaV4XMqG1v7rd9RbIC+t/65sx9agaQJcNioZZvsCDD hAkgh2z93e/SmyfPbjeni2jZV0/mNw1f37SIuZEM= Received: from checstex0244823-lin.qca.qualcomm.com (blr-c-bdr-fw-01_globalnat_allzones-outside.qualcomm.com [103.229.19.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: bpothuno@codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id A51CB6071B; Fri, 22 Feb 2019 06:37:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1550817434; bh=Ry32DROTzdFqHTWMvCBx+mmPBllmVw2pWjQXkWcQQpI=; h=From:To:Cc:Subject:Date:From; b=jTEqg4mRoZeUFrZPdlITQlwuXypSnHiFYNTSdUfSH+wltWbuczawuat7ha9n3/ODn QSmKcsu242bFk0U+sZA1+J4V7OpVRhHiGzkt8k6bhjFVVhE1kmThEk8JNztggTbl/W PS0PeGUXygf5SUDNkUXHb3mLz73NGw4KPf6AY2Vo= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org A51CB6071B Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=bpothuno@codeaurora.org From: Balaji Pothunoori To: johannes@sipsolutions.net, linux-wireless@vger.kernel.org Cc: ath10k@lists.infradead.org, Ashok Raj Nagarajan , Balaji Pothunoori Subject: [PATCH v3] iw: Add support for controlling tx power for per station Date: Fri, 22 Feb 2019 12:07:05 +0530 Message-Id: <1550817425-18803-1-git-send-email-bpothuno@codeaurora.org> X-Mailer: git-send-email 2.7.4 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org From: Ashok Raj Nagarajan This patch allows userspace to set transmit power, in dBm units, to a station associated to the AP. To set a limit tx power of 20 dBm: iw wlan0 station set txpwr limit 20 To revert the user defined tx power for a station: iw wlan0 station set txpwr auto Co-developed-by: Balaji Pothunoori Signed-off-by: Ashok Raj Nagarajan Signed-off-by: Balaji Pothunoori --- v2: modified user configured units to dBm from mBm v3: no changes, rebased station.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/station.c b/station.c index e1477ef..8e0e852 100644 --- a/station.c +++ b/station.c @@ -651,6 +651,7 @@ COMMAND(station, del, " [subtype ] [reason-code ]", static const struct cmd *station_set_plink; static const struct cmd *station_set_vlan; static const struct cmd *station_set_mesh_power_mode; +static const struct cmd *station_set_txpwr; static const struct cmd *select_station_cmd(int argc, char **argv) { @@ -662,6 +663,8 @@ static const struct cmd *select_station_cmd(int argc, char **argv) return station_set_vlan; if (strcmp(argv[1], "mesh_power_mode") == 0) return station_set_mesh_power_mode; + if (strcmp(argv[1], "txpwr") == 0) + return station_set_txpwr; return NULL; } @@ -813,6 +816,74 @@ COMMAND_ALIAS(station, set, " mesh_power_mode " "Set link-specific mesh power mode for this station", select_station_cmd, station_set_mesh_power_mode); +static int handle_station_set_txpwr(struct nl80211_state *state, + struct nl_msg *msg, + int argc, char **argv, + enum id_input id) +{ + enum nl80211_tx_power_setting type; + unsigned char mac_addr[ETH_ALEN]; + int sta_txpwr = 0; + char *err = NULL; + + if (argc != 3 && argc != 4) + return 1; + + if (mac_addr_a2n(mac_addr, argv[0])) { + fprintf(stderr, "invalid mac address\n"); + return 2; + } + + NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, mac_addr); + argc--; + argv++; + + if (strcmp("txpwr", argv[0]) != 0) + return 1; + argc--; + argv++; + + if (!strcmp(argv[0], "auto")) + type = NL80211_TX_POWER_AUTOMATIC; + else if (!strcmp(argv[0], "limit")) + type = NL80211_TX_POWER_LIMITED; + else { + printf("Invalid parameter: %s\n", argv[0]); + return 2; + } + + NLA_PUT_U8(msg, NL80211_ATTR_STA_TX_POWER_SETTING, type); + + if (type != NL80211_TX_POWER_AUTOMATIC) { + if (argc != 2) { + printf("Missing TX power level argument.\n"); + return 2; + } + + argc--; + argv++; + + sta_txpwr = strtoul(argv[0], &err, 0); + + if (sta_txpwr) + NLA_PUT_U16(msg, NL80211_ATTR_STA_TX_POWER, sta_txpwr); + } + + argc--; + argv++; + + if (argc) + return 1; + + return 0; + nla_put_failure: + return -ENOBUFS; +} +COMMAND_ALIAS(station, set, " txpwr []", + NL80211_CMD_SET_STATION, 0, CIB_NETDEV, handle_station_set_txpwr, + "Set Tx power for this station.", + select_station_cmd, station_set_txpwr); + static int handle_station_dump(struct nl80211_state *state, struct nl_msg *msg, int argc, char **argv, -- 2.7.4