1 /****************************************************************************** 2 * 3 * Copyright 2009-2012 Broadcom Corporation 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at: 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ******************************************************************************/ 18 19 #define LOG_TAG "bt_bte_conf" 20 21 #include <base/logging.h> 22 #include <stdio.h> 23 #include <string.h> 24 25 #include "bta_api.h" 26 #include "btif_common.h" 27 #include "osi/include/compat.h" 28 #include "osi/include/config.h" 29 #include "osi/include/log.h" 30 31 // Parses the specified Device ID configuration file and registers the 32 // Device ID records with SDP. 33 void bte_load_did_conf(const char* p_path) { 34 CHECK(p_path != NULL); 35 36 std::unique_ptr<config_t> config = config_new(p_path); 37 if (!config) { 38 LOG_ERROR("%s unable to load DID config '%s'.", __func__, p_path); 39 return; 40 } 41 42 for (int i = 1; i <= BTA_DI_NUM_MAX; ++i) { 43 char section_name[16] = {0}; 44 snprintf(section_name, sizeof(section_name), "DID%d", i); 45 46 if (!config_has_section(*config, section_name)) { 47 LOG_INFO("%s no section named %s.", __func__, section_name); 48 break; 49 } 50 51 tSDP_DI_RECORD record; 52 record.vendor = 53 config_get_int(*config, section_name, "vendorId", LMP_COMPID_GOOGLE); 54 record.vendor_id_source = config_get_int( 55 *config, section_name, "vendorIdSource", DI_VENDOR_ID_SOURCE_BTSIG); 56 record.product = config_get_int(*config, section_name, "productId", 0); 57 record.version = config_get_int(*config, section_name, "version", 0); 58 record.primary_record = 59 config_get_bool(*config, section_name, "primaryRecord", false); 60 std::string empty = ""; 61 strlcpy( 62 record.client_executable_url, 63 config_get_string(*config, section_name, "clientExecutableURL", &empty) 64 ->c_str(), 65 sizeof(record.client_executable_url)); 66 strlcpy( 67 record.service_description, 68 config_get_string(*config, section_name, "serviceDescription", &empty) 69 ->c_str(), 70 sizeof(record.service_description)); 71 strlcpy(record.documentation_url, 72 config_get_string(*config, section_name, "documentationURL", &empty) 73 ->c_str(), 74 sizeof(record.documentation_url)); 75 76 if (record.vendor_id_source != DI_VENDOR_ID_SOURCE_BTSIG && 77 record.vendor_id_source != DI_VENDOR_ID_SOURCE_USBIF) { 78 LOG_ERROR("%s invalid vendor id source %d; ignoring DID record %d.", 79 __func__, record.vendor_id_source, i); 80 continue; 81 } 82 83 LOG_INFO("Device ID record %d : %s", i, 84 (record.primary_record ? "primary" : "not primary")); 85 LOG_INFO(" vendorId = %04x", record.vendor); 86 LOG_INFO(" vendorIdSource = %04x", record.vendor_id_source); 87 LOG_INFO(" product = %04x", record.product); 88 LOG_INFO(" version = %04x", record.version); 89 LOG_INFO(" clientExecutableURL = %s", record.client_executable_url); 90 LOG_INFO(" serviceDescription = %s", record.service_description); 91 LOG_INFO(" documentationURL = %s", record.documentation_url); 92 93 uint32_t record_handle; 94 tBTA_STATUS status = BTA_DmSetLocalDiRecord(&record, &record_handle); 95 if (status != BTA_SUCCESS) { 96 LOG_ERROR("%s unable to set device ID record %d: error %d.", __func__, i, 97 status); 98 } 99 } 100 } 101