xref: /freebsd/usr.sbin/bluetooth/sdpd/opush.c (revision f126890a)
1 /*-
2  * opush.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: opush.c,v 1.6 2004/01/13 19:31:54 max Exp $
31  */
32 
33 #include <sys/queue.h>
34 #define L2CAP_SOCKET_CHECKED
35 #include <bluetooth.h>
36 #include <sdp.h>
37 #include <string.h>
38 #include "profile.h"
39 #include "provider.h"
40 
41 static int32_t
42 opush_profile_create_service_class_id_list(
43 		uint8_t *buf, uint8_t const * const eob,
44 		uint8_t const *data, uint32_t datalen)
45 {
46 	static uint16_t	service_classes[] = {
47 		SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH
48 	};
49 
50 	return (common_profile_create_service_class_id_list(
51 			buf, eob,
52 			(uint8_t const *) service_classes,
53 			sizeof(service_classes)));
54 }
55 
56 static int32_t
57 opush_profile_create_bluetooth_profile_descriptor_list(
58 		uint8_t *buf, uint8_t const * const eob,
59 		uint8_t const *data, uint32_t datalen)
60 {
61 	static uint16_t	profile_descriptor_list[] = {
62 		SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH,
63 		0x0100
64 	};
65 
66 	return (common_profile_create_bluetooth_profile_descriptor_list(
67 			buf, eob,
68 			(uint8_t const *) profile_descriptor_list,
69 			sizeof(profile_descriptor_list)));
70 }
71 
72 static int32_t
73 opush_profile_create_service_name(
74 		uint8_t *buf, uint8_t const * const eob,
75 		uint8_t const *data, uint32_t datalen)
76 {
77 	static char	service_name[] = "OBEX Object Push";
78 
79 	return (common_profile_create_string8(
80 			buf, eob,
81 			(uint8_t const *) service_name, strlen(service_name)));
82 }
83 
84 static int32_t
85 opush_profile_create_protocol_descriptor_list(
86 		uint8_t *buf, uint8_t const * const eob,
87 		uint8_t const *data, uint32_t datalen)
88 {
89 	provider_p		provider = (provider_p) data;
90 	sdp_opush_profile_p	opush = (sdp_opush_profile_p) provider->data;
91 
92 	return (obex_profile_create_protocol_descriptor_list(
93 			buf, eob,
94 			(uint8_t const *) &opush->server_channel, 1));
95 }
96 
97 static int32_t
98 opush_profile_create_supported_formats_list(
99 		uint8_t *buf, uint8_t const * const eob,
100 		uint8_t const *data, uint32_t datalen)
101 {
102 	provider_p		provider = (provider_p) data;
103 	sdp_opush_profile_p	opush = (sdp_opush_profile_p) provider->data;
104 
105 	return (obex_profile_create_supported_formats_list(
106 			buf, eob,
107 			(uint8_t const *) opush->supported_formats,
108 			opush->supported_formats_size));
109 }
110 
111 static attr_t	opush_profile_attrs[] = {
112 	{ SDP_ATTR_SERVICE_RECORD_HANDLE,
113 	  common_profile_create_service_record_handle },
114 	{ SDP_ATTR_SERVICE_CLASS_ID_LIST,
115 	  opush_profile_create_service_class_id_list },
116 	{ SDP_ATTR_BLUETOOTH_PROFILE_DESCRIPTOR_LIST,
117 	  opush_profile_create_bluetooth_profile_descriptor_list },
118 	{ SDP_ATTR_LANGUAGE_BASE_ATTRIBUTE_ID_LIST,
119 	  common_profile_create_language_base_attribute_id_list },
120 	{ SDP_ATTR_PRIMARY_LANGUAGE_BASE_ID + SDP_ATTR_SERVICE_NAME_OFFSET,
121 	  opush_profile_create_service_name },
122 	{ SDP_ATTR_PROTOCOL_DESCRIPTOR_LIST,
123 	  opush_profile_create_protocol_descriptor_list },
124 	{ SDP_ATTR_SUPPORTED_FORMATS_LIST,
125 	  opush_profile_create_supported_formats_list },
126 	{ 0, NULL } /* end entry */
127 };
128 
129 profile_t	opush_profile_descriptor = {
130 	SDP_SERVICE_CLASS_OBEX_OBJECT_PUSH,
131 	sizeof(sdp_opush_profile_t),
132 	obex_profile_data_valid,
133 	(attr_t const * const) &opush_profile_attrs
134 };
135 
136