2020-09-22 03:00:34 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2007-01-22 07:23:19 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
2010-01-02 09:08:17 +08:00
|
|
|
* Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
|
2007-01-22 07:23:19 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-12-07 18:46:04 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2007-01-22 07:23:19 +08:00
|
|
|
#include <unistd.h>
|
2012-09-25 17:49:26 +08:00
|
|
|
#include <stdbool.h>
|
2009-02-23 20:10:54 +08:00
|
|
|
#include <errno.h>
|
2007-01-22 07:23:19 +08:00
|
|
|
|
|
|
|
#include <glib.h>
|
2008-05-09 04:23:45 +08:00
|
|
|
#include <dbus/dbus.h>
|
2007-01-22 07:23:19 +08:00
|
|
|
|
2015-03-01 15:58:08 +08:00
|
|
|
#include "lib/bluetooth.h"
|
|
|
|
#include "lib/sdp.h"
|
|
|
|
#include "lib/uuid.h"
|
2007-01-25 22:25:07 +08:00
|
|
|
|
2015-03-01 15:58:08 +08:00
|
|
|
#include "src/log.h"
|
2014-01-26 12:08:59 +08:00
|
|
|
#include "src/uuid-helper.h"
|
2013-01-10 12:30:30 +08:00
|
|
|
#include "btio/btio.h"
|
2014-01-26 12:08:59 +08:00
|
|
|
#include "src/adapter.h"
|
|
|
|
#include "src/device.h"
|
|
|
|
#include "src/profile.h"
|
2012-09-25 17:49:26 +08:00
|
|
|
|
2017-10-18 09:58:08 +08:00
|
|
|
#include "sixaxis.h"
|
2007-06-22 06:06:33 +08:00
|
|
|
#include "device.h"
|
2008-12-23 11:32:20 +08:00
|
|
|
#include "server.h"
|
2008-04-17 22:54:30 +08:00
|
|
|
|
2014-06-10 18:25:08 +08:00
|
|
|
struct confirm_data {
|
|
|
|
bdaddr_t dst;
|
|
|
|
GIOChannel *io;
|
|
|
|
};
|
|
|
|
|
2008-09-04 23:18:28 +08:00
|
|
|
static GSList *servers = NULL;
|
2009-04-17 22:22:38 +08:00
|
|
|
struct input_server {
|
2008-09-04 23:18:28 +08:00
|
|
|
bdaddr_t src;
|
|
|
|
GIOChannel *ctrl;
|
|
|
|
GIOChannel *intr;
|
2014-06-10 18:25:08 +08:00
|
|
|
struct confirm_data *confirm;
|
2007-06-22 06:06:33 +08:00
|
|
|
};
|
|
|
|
|
2013-05-01 13:28:05 +08:00
|
|
|
static int server_cmp(gconstpointer s, gconstpointer user_data)
|
2008-09-04 23:18:28 +08:00
|
|
|
{
|
2009-04-17 22:22:38 +08:00
|
|
|
const struct input_server *server = s;
|
2008-09-04 23:18:28 +08:00
|
|
|
const bdaddr_t *src = user_data;
|
|
|
|
|
|
|
|
return bacmp(&server->src, src);
|
|
|
|
}
|
|
|
|
|
2013-11-26 06:15:52 +08:00
|
|
|
struct sixaxis_data {
|
|
|
|
GIOChannel *chan;
|
|
|
|
uint16_t psm;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void sixaxis_sdp_cb(struct btd_device *dev, int err, void *user_data)
|
|
|
|
{
|
|
|
|
struct sixaxis_data *data = user_data;
|
|
|
|
const bdaddr_t *src;
|
|
|
|
|
|
|
|
DBG("err %d (%s)", err, strerror(-err));
|
|
|
|
|
|
|
|
if (err < 0)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
src = btd_adapter_get_address(device_get_adapter(dev));
|
|
|
|
|
2014-01-08 08:02:23 +08:00
|
|
|
if (input_device_set_channel(src, device_get_address(dev), data->psm,
|
|
|
|
data->chan) < 0)
|
2013-11-26 06:15:52 +08:00
|
|
|
goto fail;
|
|
|
|
|
|
|
|
g_io_channel_unref(data->chan);
|
|
|
|
g_free(data);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
g_io_channel_shutdown(data->chan, TRUE, NULL);
|
|
|
|
g_io_channel_unref(data->chan);
|
|
|
|
g_free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sixaxis_browse_sdp(const bdaddr_t *src, const bdaddr_t *dst,
|
|
|
|
GIOChannel *chan, uint16_t psm)
|
|
|
|
{
|
|
|
|
struct btd_device *device;
|
|
|
|
struct sixaxis_data *data;
|
|
|
|
|
2014-03-23 01:30:18 +08:00
|
|
|
device = btd_adapter_find_device(adapter_find(src), dst, BDADDR_BREDR);
|
2013-11-26 06:15:52 +08:00
|
|
|
if (!device)
|
|
|
|
return;
|
|
|
|
|
|
|
|
data = g_new0(struct sixaxis_data, 1);
|
|
|
|
data->chan = g_io_channel_ref(chan);
|
|
|
|
data->psm = psm;
|
|
|
|
|
2014-01-08 08:02:25 +08:00
|
|
|
if (psm == L2CAP_PSM_HIDP_CTRL)
|
|
|
|
device_discover_services(device);
|
|
|
|
|
2013-11-26 06:15:52 +08:00
|
|
|
device_wait_for_svc_complete(device, sixaxis_sdp_cb, data);
|
|
|
|
}
|
|
|
|
|
2013-11-27 18:14:32 +08:00
|
|
|
static bool dev_is_sixaxis(const bdaddr_t *src, const bdaddr_t *dst)
|
2013-11-26 06:15:52 +08:00
|
|
|
{
|
|
|
|
struct btd_device *device;
|
2014-01-18 22:57:14 +08:00
|
|
|
uint16_t vid, pid;
|
sixaxis: Fix compilation and various coding style issues
This fixes the following problems:
plugins/sixaxis.c:443:7: error: ‘version’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (!setup_device(fd, sysfs_path, name, source, vid, pid, version, type, adapter))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/sixaxis.c:409:34: note: ‘version’ was declared here
uint16_t bus, vid, pid, source, version;
^~~~~~~
plugins/sixaxis.c:443:7: error: ‘source’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (!setup_device(fd, sysfs_path, name, source, vid, pid, version, type, adapter))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/sixaxis.c:409:26: note: ‘source’ was declared here
uint16_t bus, vid, pid, source, version;
^~~~~~
cc1: all warnings being treated as errors
And many instances of code going over 80 columns.
2017-10-27 18:42:33 +08:00
|
|
|
const struct cable_pairing *cp;
|
2013-11-26 06:15:52 +08:00
|
|
|
|
2014-03-23 01:30:18 +08:00
|
|
|
device = btd_adapter_find_device(adapter_find(src), dst, BDADDR_BREDR);
|
2013-11-26 06:15:52 +08:00
|
|
|
if (!device)
|
|
|
|
return false;
|
|
|
|
|
2014-01-18 22:57:14 +08:00
|
|
|
vid = btd_device_get_vendor(device);
|
|
|
|
pid = btd_device_get_product(device);
|
2013-11-26 06:15:52 +08:00
|
|
|
|
2021-02-11 23:39:13 +08:00
|
|
|
cp = get_pairing(vid, pid, NULL);
|
sixaxis: Fix compilation and various coding style issues
This fixes the following problems:
plugins/sixaxis.c:443:7: error: ‘version’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (!setup_device(fd, sysfs_path, name, source, vid, pid, version, type, adapter))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/sixaxis.c:409:34: note: ‘version’ was declared here
uint16_t bus, vid, pid, source, version;
^~~~~~~
plugins/sixaxis.c:443:7: error: ‘source’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
if (!setup_device(fd, sysfs_path, name, source, vid, pid, version, type, adapter))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
plugins/sixaxis.c:409:26: note: ‘source’ was declared here
uint16_t bus, vid, pid, source, version;
^~~~~~
cc1: all warnings being treated as errors
And many instances of code going over 80 columns.
2017-10-27 18:42:33 +08:00
|
|
|
if (cp && (cp->type == CABLE_PAIRING_SIXAXIS ||
|
|
|
|
cp->type == CABLE_PAIRING_DS4))
|
2014-01-18 22:57:14 +08:00
|
|
|
return true;
|
2013-11-26 06:15:52 +08:00
|
|
|
|
2014-01-18 22:57:14 +08:00
|
|
|
return false;
|
2013-11-26 06:15:52 +08:00
|
|
|
}
|
|
|
|
|
2009-02-19 06:17:50 +08:00
|
|
|
static void connect_event_cb(GIOChannel *chan, GError *err, gpointer data)
|
2007-01-23 13:31:49 +08:00
|
|
|
{
|
2009-02-22 21:44:14 +08:00
|
|
|
uint16_t psm;
|
2009-02-19 06:17:50 +08:00
|
|
|
bdaddr_t src, dst;
|
2011-07-03 01:48:09 +08:00
|
|
|
char address[18];
|
2009-02-19 06:17:50 +08:00
|
|
|
GError *gerr = NULL;
|
2009-02-23 20:10:54 +08:00
|
|
|
int ret;
|
2007-01-22 07:23:19 +08:00
|
|
|
|
2009-02-19 06:17:50 +08:00
|
|
|
if (err) {
|
|
|
|
error("%s", err->message);
|
2008-05-16 06:34:08 +08:00
|
|
|
return;
|
2007-01-23 13:31:49 +08:00
|
|
|
}
|
|
|
|
|
2012-08-29 08:08:29 +08:00
|
|
|
bt_io_get(chan, &gerr,
|
2009-02-19 06:17:50 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, &src,
|
|
|
|
BT_IO_OPT_DEST_BDADDR, &dst,
|
|
|
|
BT_IO_OPT_PSM, &psm,
|
2009-02-22 22:50:59 +08:00
|
|
|
BT_IO_OPT_INVALID);
|
2009-02-19 06:17:50 +08:00
|
|
|
if (gerr) {
|
|
|
|
error("%s", gerr->message);
|
|
|
|
g_error_free(gerr);
|
2009-02-20 02:58:15 +08:00
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
2009-02-19 06:17:50 +08:00
|
|
|
return;
|
|
|
|
}
|
2007-01-23 13:31:49 +08:00
|
|
|
|
2011-07-03 01:48:09 +08:00
|
|
|
ba2str(&dst, address);
|
|
|
|
DBG("Incoming connection from %s on PSM %d", address, psm);
|
2007-01-23 13:31:49 +08:00
|
|
|
|
2009-02-23 20:10:54 +08:00
|
|
|
ret = input_device_set_channel(&src, &dst, psm, chan);
|
2009-04-17 22:22:38 +08:00
|
|
|
if (ret == 0)
|
2008-05-16 06:34:08 +08:00
|
|
|
return;
|
2009-04-17 22:22:38 +08:00
|
|
|
|
2013-11-27 18:14:32 +08:00
|
|
|
if (ret == -ENOENT && dev_is_sixaxis(&src, &dst)) {
|
2013-11-26 06:15:52 +08:00
|
|
|
sixaxis_browse_sdp(&src, &dst, chan, psm);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-07-03 01:48:09 +08:00
|
|
|
error("Refusing input device connect: %s (%d)", strerror(-ret), -ret);
|
|
|
|
|
2009-04-17 22:22:38 +08:00
|
|
|
/* Send unplug virtual cable to unknown devices */
|
|
|
|
if (ret == -ENOENT && psm == L2CAP_PSM_HIDP_CTRL) {
|
|
|
|
unsigned char unplug = 0x15;
|
2011-05-15 06:57:12 +08:00
|
|
|
int sk = g_io_channel_unix_get_fd(chan);
|
|
|
|
if (write(sk, &unplug, sizeof(unplug)) < 0)
|
|
|
|
error("Unable to send virtual cable unplug");
|
2009-04-17 22:22:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void auth_callback(DBusError *derr, void *user_data)
|
|
|
|
{
|
|
|
|
struct input_server *server = user_data;
|
2014-06-10 18:25:08 +08:00
|
|
|
struct confirm_data *confirm = server->confirm;
|
2009-04-17 22:22:38 +08:00
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
if (derr) {
|
|
|
|
error("Access denied: %s", derr->message);
|
|
|
|
goto reject;
|
|
|
|
}
|
|
|
|
|
2014-06-10 18:25:08 +08:00
|
|
|
if (!input_device_exists(&server->src, &confirm->dst) &&
|
|
|
|
!dev_is_sixaxis(&server->src, &confirm->dst))
|
2013-11-26 06:15:52 +08:00
|
|
|
return;
|
|
|
|
|
2014-06-10 18:25:08 +08:00
|
|
|
if (!bt_io_accept(confirm->io, connect_event_cb, server, NULL, &err)) {
|
2009-04-17 22:22:38 +08:00
|
|
|
error("bt_io_accept: %s", err->message);
|
|
|
|
g_error_free(err);
|
|
|
|
goto reject;
|
2007-01-22 07:23:19 +08:00
|
|
|
}
|
|
|
|
|
2014-06-10 18:25:08 +08:00
|
|
|
g_io_channel_unref(confirm->io);
|
|
|
|
g_free(server->confirm);
|
2009-04-17 22:22:38 +08:00
|
|
|
server->confirm = NULL;
|
2009-02-23 19:24:41 +08:00
|
|
|
|
2009-04-17 22:22:38 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
reject:
|
2014-06-10 18:25:08 +08:00
|
|
|
g_io_channel_shutdown(confirm->io, TRUE, NULL);
|
|
|
|
g_io_channel_unref(confirm->io);
|
2009-04-17 22:22:38 +08:00
|
|
|
server->confirm = NULL;
|
2014-06-10 18:25:08 +08:00
|
|
|
input_device_close_channels(&server->src, &confirm->dst);
|
|
|
|
g_free(confirm);
|
2009-04-17 22:22:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void confirm_event_cb(GIOChannel *chan, gpointer user_data)
|
|
|
|
{
|
|
|
|
struct input_server *server = user_data;
|
|
|
|
bdaddr_t src, dst;
|
|
|
|
GError *err = NULL;
|
2012-04-21 01:36:15 +08:00
|
|
|
char addr[18];
|
2012-09-29 00:32:23 +08:00
|
|
|
guint ret;
|
2009-04-17 22:22:38 +08:00
|
|
|
|
2013-07-12 17:25:32 +08:00
|
|
|
DBG("");
|
|
|
|
|
2012-08-29 08:08:29 +08:00
|
|
|
bt_io_get(chan, &err,
|
2009-04-17 22:22:38 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, &src,
|
|
|
|
BT_IO_OPT_DEST_BDADDR, &dst,
|
|
|
|
BT_IO_OPT_INVALID);
|
|
|
|
if (err) {
|
|
|
|
error("%s", err->message);
|
|
|
|
g_error_free(err);
|
2014-06-10 18:25:08 +08:00
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
|
|
|
return;
|
2009-04-17 22:22:38 +08:00
|
|
|
}
|
2009-02-23 19:24:41 +08:00
|
|
|
|
2013-07-12 19:04:05 +08:00
|
|
|
ba2str(&dst, addr);
|
|
|
|
|
2009-04-17 22:22:38 +08:00
|
|
|
if (server->confirm) {
|
2013-07-12 19:04:05 +08:00
|
|
|
error("Refusing connection from %s: setup in progress", addr);
|
|
|
|
goto drop;
|
|
|
|
}
|
2011-07-03 01:48:09 +08:00
|
|
|
|
2013-11-27 18:14:32 +08:00
|
|
|
if (!input_device_exists(&src, &dst) && !dev_is_sixaxis(&src, &dst)) {
|
2013-07-12 19:04:05 +08:00
|
|
|
error("Refusing connection from %s: unknown device", addr);
|
2009-04-17 22:22:38 +08:00
|
|
|
goto drop;
|
2009-02-23 19:24:41 +08:00
|
|
|
}
|
2009-04-17 22:22:38 +08:00
|
|
|
|
2014-06-10 18:25:08 +08:00
|
|
|
server->confirm = g_new0(struct confirm_data, 1);
|
|
|
|
server->confirm->io = g_io_channel_ref(chan);
|
|
|
|
bacpy(&server->confirm->dst, &dst);
|
2009-04-17 22:22:38 +08:00
|
|
|
|
|
|
|
ret = btd_request_authorization(&src, &dst, HID_UUID,
|
|
|
|
auth_callback, server);
|
2012-09-29 00:32:23 +08:00
|
|
|
if (ret != 0)
|
2009-04-17 22:22:38 +08:00
|
|
|
return;
|
|
|
|
|
2013-07-12 19:04:05 +08:00
|
|
|
error("input: authorization for device %s failed", addr);
|
2012-04-21 01:36:15 +08:00
|
|
|
|
2014-06-10 18:25:08 +08:00
|
|
|
g_io_channel_unref(server->confirm->io);
|
|
|
|
g_free(server->confirm);
|
2009-04-17 22:22:38 +08:00
|
|
|
server->confirm = NULL;
|
|
|
|
|
|
|
|
drop:
|
|
|
|
input_device_close_channels(&src, &dst);
|
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
2007-01-22 07:23:19 +08:00
|
|
|
}
|
|
|
|
|
2008-09-10 02:01:31 +08:00
|
|
|
int server_start(const bdaddr_t *src)
|
2007-01-22 07:23:19 +08:00
|
|
|
{
|
2009-04-17 22:22:38 +08:00
|
|
|
struct input_server *server;
|
2009-02-19 06:17:50 +08:00
|
|
|
GError *err = NULL;
|
2020-07-23 00:20:33 +08:00
|
|
|
BtIOSecLevel sec_level = input_get_classic_bonded_only() ?
|
|
|
|
BT_IO_SEC_MEDIUM : BT_IO_SEC_LOW;
|
2008-09-04 23:18:28 +08:00
|
|
|
|
2009-04-17 22:22:38 +08:00
|
|
|
server = g_new0(struct input_server, 1);
|
|
|
|
bacpy(&server->src, src);
|
|
|
|
|
2012-08-29 08:08:29 +08:00
|
|
|
server->ctrl = bt_io_listen(connect_event_cb, NULL,
|
2009-04-17 22:22:38 +08:00
|
|
|
server, NULL, &err,
|
2009-02-19 06:17:50 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, src,
|
|
|
|
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_CTRL,
|
2020-07-23 00:20:33 +08:00
|
|
|
BT_IO_OPT_SEC_LEVEL, sec_level,
|
2009-02-19 06:17:50 +08:00
|
|
|
BT_IO_OPT_INVALID);
|
2009-04-17 22:22:38 +08:00
|
|
|
if (!server->ctrl) {
|
2007-01-24 23:43:06 +08:00
|
|
|
error("Failed to listen on control channel");
|
2009-02-20 03:22:48 +08:00
|
|
|
g_error_free(err);
|
2009-04-17 22:22:38 +08:00
|
|
|
g_free(server);
|
2007-01-22 07:23:19 +08:00
|
|
|
return -1;
|
2007-01-24 23:43:06 +08:00
|
|
|
}
|
2007-01-22 07:23:19 +08:00
|
|
|
|
2012-08-29 08:08:29 +08:00
|
|
|
server->intr = bt_io_listen(NULL, confirm_event_cb,
|
2009-04-17 22:22:38 +08:00
|
|
|
server, NULL, &err,
|
2009-02-19 06:17:50 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, src,
|
|
|
|
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_INTR,
|
2020-07-23 00:20:33 +08:00
|
|
|
BT_IO_OPT_SEC_LEVEL, sec_level,
|
2009-02-19 06:17:50 +08:00
|
|
|
BT_IO_OPT_INVALID);
|
2009-04-17 22:22:38 +08:00
|
|
|
if (!server->intr) {
|
2007-01-24 23:43:06 +08:00
|
|
|
error("Failed to listen on interrupt channel");
|
2009-04-17 22:22:38 +08:00
|
|
|
g_io_channel_unref(server->ctrl);
|
2009-02-20 03:22:48 +08:00
|
|
|
g_error_free(err);
|
2009-04-17 22:22:38 +08:00
|
|
|
g_free(server);
|
2008-09-04 23:18:28 +08:00
|
|
|
return -1;
|
2007-01-22 07:23:19 +08:00
|
|
|
}
|
|
|
|
|
2008-09-04 23:18:28 +08:00
|
|
|
servers = g_slist_append(servers, server);
|
|
|
|
|
2007-01-22 07:23:19 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-10 02:01:31 +08:00
|
|
|
void server_stop(const bdaddr_t *src)
|
2007-01-22 07:23:19 +08:00
|
|
|
{
|
2009-04-17 22:22:38 +08:00
|
|
|
struct input_server *server;
|
2008-09-04 23:18:28 +08:00
|
|
|
GSList *l;
|
2007-01-22 07:23:19 +08:00
|
|
|
|
2008-09-04 23:18:28 +08:00
|
|
|
l = g_slist_find_custom(servers, src, server_cmp);
|
|
|
|
if (!l)
|
|
|
|
return;
|
|
|
|
|
|
|
|
server = l->data;
|
|
|
|
|
2009-02-20 02:58:15 +08:00
|
|
|
g_io_channel_shutdown(server->intr, TRUE, NULL);
|
2008-09-04 23:18:28 +08:00
|
|
|
g_io_channel_unref(server->intr);
|
2009-02-19 06:17:50 +08:00
|
|
|
|
2009-02-20 02:58:15 +08:00
|
|
|
g_io_channel_shutdown(server->ctrl, TRUE, NULL);
|
2008-09-04 23:18:28 +08:00
|
|
|
g_io_channel_unref(server->ctrl);
|
|
|
|
|
|
|
|
servers = g_slist_remove(servers, server);
|
|
|
|
g_free(server);
|
2007-01-22 07:23:19 +08:00
|
|
|
}
|