xref: /freebsd/usr.sbin/bluetooth/sdpd/bgd.c (revision abd87254)
1 /*-
2  * bgd.c
3  *
4  * SPDX-License-Identifier: BSD-2-Clause
5  *
6  * Copyright (c) 2004 Maksim Yevmenkin <m_evmenkin@yahoo.com>
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * $Id: bgd.c,v 1.4 2004/01/13 01:54:39 max Exp $
31  */
32 #define L2CAP_SOCKET_CHECKED
33 #include <bluetooth.h>
34 #include <sdp.h>
35 #include <string.h>
36 #include "profile.h"
37 
38 static int32_t
39 bgd_profile_create_service_class_id_list(
40 		uint8_t *buf, uint8_t const * const eob,
41 		uint8_t const *data, uint32_t datalen)
42 {
43 	static uint16_t	service_classes[] = {
44 		SDP_SERVICE_CLASS_BROWSE_GROUP_DESCRIPTOR
45 	};
46 
47 	return (common_profile_create_service_class_id_list(
48 			buf, eob,
49 			(uint8_t const *) service_classes,
50 			sizeof(service_classes)));
51 }
52 
53 static int32_t
54 bgd_profile_create_service_name(
55 		uint8_t *buf, uint8_t const * const eob,
56 		uint8_t const *data, uint32_t datalen)
57 {
58 	static char	service_name[] = "Public Browse Group Root";
59 
60 	return (common_profile_create_string8(
61 			buf, eob,
62 			(uint8_t const *) service_name, strlen(service_name)));
63 }
64 
65 static int32_t
66 bgd_profile_create_group_id(
67 		uint8_t *buf, uint8_t const * const eob,
68 		uint8_t const *data, uint32_t datalen)
69 {
70 	if (buf + 3 > eob)
71 		return (-1);
72 
73 	SDP_PUT8(SDP_DATA_UUID16, buf);
74 	SDP_PUT16(SDP_SERVICE_CLASS_PUBLIC_BROWSE_GROUP, buf);
75 
76 	return (3);
77 }
78 
79 static attr_t	bgd_profile_attrs[] = {
80 	{ SDP_ATTR_SERVICE_RECORD_HANDLE,
81 	  common_profile_create_service_record_handle },
82 	{ SDP_ATTR_SERVICE_CLASS_ID_LIST,
83 	  bgd_profile_create_service_class_id_list },
84 	{ SDP_ATTR_LANGUAGE_BASE_ATTRIBUTE_ID_LIST,
85 	  common_profile_create_language_base_attribute_id_list },
86 	{ SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID + SDP_ATTR_SERVICE_NAME_OFFSET,
87 	  bgd_profile_create_service_name },
88 	{ SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID + SDP_ATTR_SERVICE_DESCRIPTION_OFFSET,
89 	  bgd_profile_create_service_name },
90 	{ SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID + SDP_ATTR_PROVIDER_NAME_OFFSET,
91 	  common_profile_create_service_provider_name },
92 	{ SDP_ATTR_GROUP_ID,
93 	  bgd_profile_create_group_id },
94 	{ 0, NULL } /* end entry */
95 };
96 
97 profile_t	bgd_profile_descriptor = {
98 	SDP_SERVICE_CLASS_BROWSE_GROUP_DESCRIPTOR,
99 	0,
100 	(profile_data_valid_p) NULL,
101 	(attr_t const * const) &bgd_profile_attrs
102 };
103 
104