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