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