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,URIBL_BLOCKED,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 4E262C282D7 for ; Wed, 30 Jan 2019 10:41:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 17FFF218AE for ; Wed, 30 Jan 2019 10:41:28 +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="gmojugWe"; dkim=fail reason="key not found in DNS" (0-bit key) header.d=codeaurora.org header.i=@codeaurora.org header.b="Q6mkPQ1q" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727880AbfA3Kl1 (ORCPT ); Wed, 30 Jan 2019 05:41:27 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:54194 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727043AbfA3Kl0 (ORCPT ); Wed, 30 Jan 2019 05:41:26 -0500 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id B7D1360985; Wed, 30 Jan 2019 10:41:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1548844885; bh=B0DAhrT5zmzyYSqs+QLLMwwBtK/ESy0B5Kn1Wr2pJJo=; h=From:To:Cc:Subject:Date:From; b=gmojugWexpqZdggUwX6IuKK5gWWQ2phJTg5NlkWWfg6U0dQ/2kW59i9IoJXZ0Zxld pi8Lzn6FiQvXuO/v199SmFC9pJsXjcLxuBo7LQlKFrctJtxzpuLlgV1zjpzBpzluAV RiTJVLl3tJFVwnUsBXkV1sjBpkQPPhsyFlir/gms= 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 6DBB260910; Wed, 30 Jan 2019 10:41:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=codeaurora.org; s=default; t=1548844884; bh=B0DAhrT5zmzyYSqs+QLLMwwBtK/ESy0B5Kn1Wr2pJJo=; h=From:To:Cc:Subject:Date:From; b=Q6mkPQ1qqnmk/mTAMYH9zVwH0MKKL/bqNfGRDGdmrZesZNiyZBSwCzd1xcJHKxBdE bPnhODP6JdtoPmTrEc9X1v/WYN9O3cn6GvK/L0stgUWW2K+CoPfYuuQ9sE9enhhbx0 rROG6jmu2MRCW/XyTno8U1IKYqn10g/cBTJx25Oo= DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 6DBB260910 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, ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org, Ashok Raj Nagarajan , Balaji Pothunoori Subject: [PATCH v2] iw: Add support for controlling tx power for per station Date: Wed, 30 Jan 2019 16:11:11 +0530 Message-Id: <1548844871-13980-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: tx power set unit modified from mBm to dBm replaced NLA_PUT_U32 with NLA_PUT_U8/U16 station.c | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/station.c b/station.c index e1477ef..8f6fbc4 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