1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
*
* OBEX Client
*
* Copyright (C) 2011 Intel Corporation
*
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <errno.h>
#include "gdbus/gdbus.h"
#include "obexd/src/log.h"
#include "obexd/src/obexd.h"
#include "transfer.h"
#include "session.h"
#include "driver.h"
#include "opp.h"
#define OPP_UUID "00001105-0000-1000-8000-00805f9b34fb"
#define OPP_INTERFACE "org.bluez.obex.ObjectPush1"
#define ERROR_INTERFACE "org.bluez.obex.Error"
struct opp_data {
struct obc_session *session;
};
static DBusConnection *conn = NULL;
static DBusMessage *opp_send_file(DBusConnection *connection,
DBusMessage *message, void *user_data)
{
struct opp_data *opp = user_data;
struct obc_transfer *transfer;
DBusMessage *reply;
char *filename;
char *basename;
GError *err = NULL;
if (dbus_message_get_args(message, NULL,
DBUS_TYPE_STRING, &filename,
DBUS_TYPE_INVALID) == FALSE)
return g_dbus_create_error(message,
ERROR_INTERFACE ".InvalidArguments", NULL);
basename = g_path_get_basename(filename);
transfer = obc_transfer_put(NULL, basename, filename, NULL, 0, &err);
g_free(basename);
if (transfer == NULL)
goto fail;
if (!obc_session_queue(opp->session, transfer, NULL, NULL, &err))
goto fail;
return obc_transfer_create_dbus_reply(transfer, message);
fail:
reply = g_dbus_create_error(message,
ERROR_INTERFACE ".Failed", "%s", err->message);
g_error_free(err);
return reply;
}
static DBusMessage *opp_pull_business_card(DBusConnection *connection,
DBusMessage *message, void *user_data)
{
struct opp_data *opp = user_data;
struct obc_transfer *pull;
DBusMessage *reply;
const char *filename = NULL;
GError *err = NULL;
if (dbus_message_get_args(message, NULL,
DBUS_TYPE_STRING, &filename,
DBUS_TYPE_INVALID) == FALSE)
return g_dbus_create_error(message,
ERROR_INTERFACE ".InvalidArguments", NULL);
pull = obc_transfer_get("text/x-vcard", NULL, filename, &err);
if (pull == NULL)
goto fail;
if (!obc_session_queue(opp->session, pull, NULL, NULL, &err))
goto fail;
return obc_transfer_create_dbus_reply(pull, message);
fail:
reply = g_dbus_create_error(message,
ERROR_INTERFACE ".Failed", "%s", err->message);
g_error_free(err);
return reply;
}
static DBusMessage *opp_exchange_business_cards(DBusConnection *connection,
DBusMessage *message, void *user_data)
{
return g_dbus_create_error(message, ERROR_INTERFACE ".Failed",
"Not Implemented");
}
static const GDBusMethodTable opp_methods[] = {
{ GDBUS_METHOD("SendFile",
GDBUS_ARGS({ "sourcefile", "s" }),
GDBUS_ARGS({ "transfer", "o" }, { "properties", "a{sv}" }),
opp_send_file) },
{ GDBUS_METHOD("PullBusinessCard",
GDBUS_ARGS({ "targetfile", "s" }),
GDBUS_ARGS({ "transfer", "o" }, { "properties", "a{sv}" }),
opp_pull_business_card) },
{ GDBUS_METHOD("ExchangeBusinessCards",
GDBUS_ARGS({ "clientfile", "s" }, { "targetfile", "s" }),
GDBUS_ARGS({ "transfer", "o" }, { "properties", "a{sv}" }),
opp_exchange_business_cards) },
{ }
};
static void opp_free(void *data)
{
struct opp_data *opp = data;
obc_session_unref(opp->session);
g_free(opp);
}
static int opp_probe(struct obc_session *session)
{
struct opp_data *opp;
const char *path;
path = obc_session_get_path(session);
DBG("%s", path);
opp = g_try_new0(struct opp_data, 1);
if (!opp)
return -ENOMEM;
opp->session = obc_session_ref(session);
if (!g_dbus_register_interface(conn, path, OPP_INTERFACE, opp_methods,
NULL, NULL, opp, opp_free)) {
opp_free(opp);
return -ENOMEM;
}
return 0;
}
static void opp_remove(struct obc_session *session)
{
const char *path = obc_session_get_path(session);
DBG("%s", path);
g_dbus_unregister_interface(conn, path, OPP_INTERFACE);
}
static struct obc_driver opp = {
.service = "OPP",
.uuid = OPP_UUID,
.probe = opp_probe,
.remove = opp_remove
};
int opp_init(void)
{
int err;
DBG("");
conn = obex_get_dbus_connection();
if (!conn)
return -EIO;
err = obc_driver_register(&opp);
if (err < 0) {
dbus_connection_unref(conn);
conn = NULL;
return err;
}
return 0;
}
void opp_exit(void)
{
DBG("");
dbus_connection_unref(conn);
conn = NULL;
obc_driver_unregister(&opp);
}
|