| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /*
- *
- * Copyright (c) 2021 Project CHIP Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @file Contains shell commands for a commissionee (eg. end device) related to commissioning.
- */
- #include <CommissioneeShellCommands.h>
- #include <app/server/Dnssd.h>
- #include <app/server/Server.h>
- #include <inttypes.h>
- #include <lib/core/CHIPCore.h>
- #include <lib/shell/Commands.h>
- #include <lib/shell/Engine.h>
- #include <lib/shell/commands/Help.h>
- #include <lib/support/CHIPArgParser.hpp>
- #include <lib/support/CHIPMem.h>
- #include <lib/support/CodeUtils.h>
- #include <platform/CHIPDeviceLayer.h>
- #include <protocols/user_directed_commissioning/UserDirectedCommissioning.h>
- namespace chip {
- namespace Shell {
- #if CHIP_DEVICE_CONFIG_ENABLE_COMMISSIONER_DISCOVERY_CLIENT
- static CHIP_ERROR SendUDC(bool printHeader, chip::Transport::PeerAddress commissioner)
- {
- streamer_t * sout = streamer_get();
- if (printHeader)
- {
- streamer_printf(sout, "SendUDC: ");
- }
- Server::GetInstance().SendUserDirectedCommissioningRequest(commissioner);
- streamer_printf(sout, "done\r\n");
- return CHIP_NO_ERROR;
- }
- #endif // CHIP_DEVICE_CONFIG_ENABLE_COMMISSIONER_DISCOVERY_CLIENT
- static CHIP_ERROR PrintAllCommands()
- {
- streamer_t * sout = streamer_get();
- streamer_printf(sout, " help Usage: commissionee <subcommand>\r\n");
- #if CHIP_DEVICE_CONFIG_ENABLE_COMMISSIONER_DISCOVERY_CLIENT
- streamer_printf(sout, " sendudc <address> <port> Send UDC message to address. Usage: commissionee sendudc ::1 5543\r\n");
- #endif // CHIP_DEVICE_CONFIG_ENABLE_COMMISSIONER_DISCOVERY_CLIENT
- // TODO: Figure out whether setdiscoverytimeout is a reasonable thing to do
- // at all, and if so what semantics it should have. Presumably it should
- // affect BLE discovery too, not just DNS-SD. How should it interact with
- // explicit timeouts specified in OpenCommissioningWindow?
- #if 0
- streamer_printf(
- sout, " setdiscoverytimeout <timeout> Set discovery timeout in seconds. Usage: commissionee setdiscoverytimeout 30\r\n");
- #endif
- #if CHIP_DEVICE_CONFIG_ENABLE_EXTENDED_DISCOVERY
- streamer_printf(sout,
- " setextendeddiscoverytimeout <timeout> Set extendeddiscovery timeout in seconds. Usage: commissionee "
- "setextendeddiscoverytimeout 30\r\n");
- #endif // CHIP_DEVICE_CONFIG_ENABLE_EXTENDED_DISCOVERY
- streamer_printf(sout,
- " restartmdns <commissioningMode> (disabled|enabled_basic|enabled_enhanced) Start Mdns with given "
- "settings. Usage: commissionee "
- "restartmdns enabled_basic\r\n");
- streamer_printf(sout, " startbcm Start basic commissioning mode. Usage: commissionee startbcm\r\n");
- streamer_printf(sout, "\r\n");
- return CHIP_NO_ERROR;
- }
- static CHIP_ERROR CommissioneeHandler(int argc, char ** argv)
- {
- if (argc == 0 || strcmp(argv[0], "help") == 0)
- {
- return PrintAllCommands();
- }
- #if CHIP_DEVICE_CONFIG_ENABLE_COMMISSIONER_DISCOVERY_CLIENT
- if (strcmp(argv[0], "sendudc") == 0)
- {
- char * eptr;
- chip::Inet::IPAddress commissioner;
- chip::Inet::IPAddress::FromString(argv[1], commissioner);
- uint16_t port = (uint16_t) strtol(argv[2], &eptr, 10);
- return SendUDC(true, chip::Transport::PeerAddress::UDP(commissioner, port));
- }
- #endif // CHIP_DEVICE_CONFIG_ENABLE_COMMISSIONER_DISCOVERY_CLIENT
- // TODO: Figure out whether setdiscoverytimeout is a reasonable thing to do
- // at all, and if so what semantics it should have. Presumably it should
- // affect BLE discovery too, not just DNS-SD. How should it interact with
- // explicit timeouts specified in OpenCommissioningWindow?
- #if 0
- if (strcmp(argv[0], "setdiscoverytimeout") == 0)
- {
- char * eptr;
- int16_t timeout = (int16_t) strtol(argv[1], &eptr, 10);
- chip::app::DnssdServer::Instance().SetDiscoveryTimeoutSecs(timeout);
- return CHIP_NO_ERROR;
- }
- #endif
- #if CHIP_DEVICE_CONFIG_ENABLE_EXTENDED_DISCOVERY
- if (strcmp(argv[0], "setextendeddiscoverytimeout") == 0)
- {
- char * eptr;
- int16_t timeout = (int16_t) strtol(argv[1], &eptr, 10);
- chip::app::DnssdServer::Instance().SetExtendedDiscoveryTimeoutSecs(timeout);
- return CHIP_NO_ERROR;
- }
- #endif // CHIP_DEVICE_CONFIG_ENABLE_EXTENDED_DISCOVERY
- if (strcmp(argv[0], "restartmdns") == 0)
- {
- if (argc < 2)
- {
- return PrintAllCommands();
- }
- if (strcmp(argv[1], "disabled") == 0)
- {
- chip::app::DnssdServer::Instance().StartServer(chip::Dnssd::CommissioningMode::kDisabled);
- return CHIP_NO_ERROR;
- }
- if (strcmp(argv[1], "enabled_basic") == 0)
- {
- chip::app::DnssdServer::Instance().StartServer(chip::Dnssd::CommissioningMode::kEnabledBasic);
- return CHIP_NO_ERROR;
- }
- if (strcmp(argv[1], "enabled_enhanced") == 0)
- {
- chip::app::DnssdServer::Instance().StartServer(chip::Dnssd::CommissioningMode::kEnabledEnhanced);
- return CHIP_NO_ERROR;
- }
- return PrintAllCommands();
- }
- if (strcmp(argv[0], "startbcm") == 0)
- {
- Server::GetInstance().GetCommissioningWindowManager().OpenBasicCommissioningWindow();
- return CHIP_NO_ERROR;
- }
- return CHIP_ERROR_INVALID_ARGUMENT;
- }
- void RegisterCommissioneeCommands()
- {
- static const shell_command_t sDeviceComand = { &CommissioneeHandler, "commissionee",
- "Commissionee commands. Usage: commissionee [command_name]" };
- // Register the root `device` command with the top-level shell.
- Engine::Root().RegisterCommands(&sDeviceComand, 1);
- }
- } // namespace Shell
- } // namespace chip
|