Skip to content
bt_gatt.h 29.5 KiB
Newer Older
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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
/****************************************************************************
 * wireless/bluetooth/bt_gatt.h
 * Generic Attribute Profile handling.
 *
 *   Copyright (C) 2018 Gregory Nutt. All rights reserved.
 *   Author: Gregory Nutt <gnutt@nuttx.org>
 *
 * Ported from the Intel/Zephyr arduino101_firmware_source-v1.tar package
 * where the code was released with a compatible 3-clause BSD license:
 *
 *   Copyright (c) 2016, Intel Corporation
 *   All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 * 3. Neither the name of the copyright holder nor the names of its
 *    contributors may be used to endorse or promote products derived from this
 *    software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 ****************************************************************************/

#ifndef __INCLUDE_NUTTX_WIRELESS_BT_GATT_H
#define __INCLUDE_NUTTX_WIRELESS_BT_GATT_H 1

/****************************************************************************
 * Included Files
 ****************************************************************************/

#include <nuttx/wireless/bt_uuid.h>

/****************************************************************************
 * Pre-processor Definitions
 ****************************************************************************/

/* GATT attribute permission bitfield values */

/* BT_GATT_PERM_READ
 * Attribute read permission.
 */

#define BT_GATT_PERM_READ           0x01

/* BT_GATT_PERM_WRITE
 * Attribute write permission.
 */

#define BT_GATT_PERM_WRITE          0x02

/* BT_GATT_PERM_READ_ENCRYPT
 * Attribute read permission with encryption.
 * If set, requires encryption for read access.
 */

#define BT_GATT_PERM_READ_ENCRYPT   0x04

/* BT_GATT_PERM_WRITE_ENCRYPT
 * Attribute write permission with encryption.
 * If set, requires encryption for write access.
 */

#define BT_GATT_PERM_WRITE_ENCRYPT  0x08

/* BT_GATT_PERM_READ_AUTHEN
 * Attribute read permission with authentication.
 * If set, requires encryption using authenticated link-key for read access.
 */

#define BT_GATT_PERM_READ_AUTHEN    0x10

/* BT_GATT_PERM_WRITE_AUTHEN
 * Attribute write permission with authentication.
 * If set, requires encryption using authenticated link-key for write
 * access.
 */

#define BT_GATT_PERM_WRITE_AUTHEN   0x20

/* BT_GATT_PERM_AUTHOR
 * Attribute authorization permission.
 */

#define BT_GATT_PERM_AUTHOR         0x40

/* GATT attribute flush flags */

/* BT_GATT_FLUSH_DISCARD
 * Attribute flush discard flag.
 */

#define BT_GATT_FLUSH_DISCARD       0x00

/* BT_GATT_FLUSH_DISCARD
 * Attribute flush synchronize flag.
 */

#define BT_GATT_FLUSH_SYNC          0x01

/* Characteristic Properties Bitfield values */

/* BT_GATT_CHRC_BROADCAST
 * Characteristic broadcast property.
 * If set, permits broadcasts of the Characteristic Value using Server
 * Characteristic Configuration Descriptor.
 */

#define BT_GATT_CHRC_BROADCAST      0x01

/* BT_GATT_CHRC_READ
 * Characteristic read property.
 * If set, permits reads of the Characteristic Value.
 */

#define BT_GATT_CHRC_READ           0x02

/* BT_GATT_CHRC_WRITE_WITHOUT_RESP
 * Characteristic write without response property.
 * If set, permits write of the Characteristic Value without response.
 */

#define BT_GATT_CHRC_WRITE_WITHOUT_RESP 0x04

/* BT_GATT_CHRC_WRITE
 * Characteristic write with response property.
 * If set, permits write of the Characteristic Value with response.
 */

#define BT_GATT_CHRC_WRITE          0x08

/* BT_GATT_CHRC_NOTIFY
 * Characteristic notify property.
 * If set, permits notifications of a Characteristic Value without
 * acknowledgment.
 */

#define BT_GATT_CHRC_NOTIFY         0x10

/* BT_GATT_CHRC_INDICATE
 * Characteristic indicate property.
 * If set, permits indications of a Characteristic Value with
 * acknowledgment.
 */

#define BT_GATT_CHRC_INDICATE       0x20

/* BT_GATT_CHRC_AUTH
 * Characteristic Authenticated Signed Writes property.
 * If set, permits signed writes to the Characteristic Value.
 */

#define BT_GATT_CHRC_AUTH           0x40

/* BT_GATT_CHRC_EXT_PROP
 * Characteristic Extended Properties property.
 * If set, additional characteristic properties are defined in the
 * Characteristic Extended Properties Descriptor.
 */

#define BT_GATT_CHRC_EXT_PROP       0x80

/* Characteristic Extended Properties Bitfield values */

#define BT_GATT_CEP_RELIABLE_WRITE  0x0001
#define BT_GATT_CEP_WRITABLE_AUX    0x0002

/* Client Characteristic Configuration Values */

/* BT_GATT_CCC_NOTIFY
 * Client Characteristic Configuration Notification.
 * If set, changes to Characteristic Value shall be notified.
 */

#define BT_GATT_CCC_NOTIFY          0x0001

/* BT_GATT_CCC_INDICATE
 * Client Characteristic Configuration Indication.
 * If set, changes to Characteristic Value shall be indicated.
 */

#define BT_GATT_CCC_INDICATE        0x0002

/* BT_GATT_SERVICE
 * Helper macro to declare a service attribute.
 *
 * Arguments:
 *   _handle - Service attribute handle.
 *   _uuid   - Service attribute type.
 *   _data   - Service attribute value.
 */

#define BT_GATT_SERVICE(_handle, _uuid, _service) \
{ \
  .handle    = _handle, \
  .uuid      = _uuid, \
  .perm      = BT_GATT_PERM_READ, \
  .read      = bt_gatt_attr_read_service, \
  .user_data = _service, \
}

/* BT_GATT_PRIMARY_SERVICE
 * Helper macro to declare a primary service attribute.
 *
 * Arguments:
 *   _handle  - Service attribute handle.
 *   _service - Service attribute value.
 */

#define BT_GATT_PRIMARY_SERVICE(_handle, _service) \
{ \
  .handle    = _handle, \
  .uuid      = (&(struct bt_uuid_s) \
               { \
                 BT_UUID_16, \
                 { \
                   BT_UUID_GATT_PRIMARY \
                 } \
               }), \
  .perm      = BT_GATT_PERM_READ, \
  .read      = bt_gatt_attr_read_service, \
  .user_data = _service, \
}

/* BT_GATT_SECONDARY_SERVICE
 * Helper macro to declare a secondary service attribute.
 *
 * Arguments:
 *   _handle  - Service attribute handle.
 *   _service - Service attribute value.
 */

#define BT_GATT_SECONDARY_SERVICE(_handle, _service) \
{ \
  .handle    = _handle, \
  .uuid      = (&(struct bt_uuid_s) \
               { \
                 BT_UUID_16, \
                 { \
                   BT_UUID_GATT_SECONDARY \
                 } \
               }), \
  .perm      = BT_GATT_PERM_READ, \
  .read      = bt_gatt_attr_read_service, \
  .user_data = _service, \
}

/* BT_GATT_INCLUDE_SERVICE
 * Helper macro to declare a include service attribute.
 *
 * Arguments:
 *   _handle Service attribute handle.
 *   _service Service attribute value.
 */

#define BT_GATT_INCLUDE_SERVICE(_handle, _service) \
{ \
  .handle    = _handle, \
  .uuid      = (&(struct bt_uuid_s) \
               { \
                 BT_UUID_16, \
                 { \
                   BT_UUID_GATT_INCLUDE \
                 } \
               }), \
  .perm      = BT_GATT_PERM_READ, \
  .read      = bt_gatt_attr_read_included, \
  .user_data = _service, \
}

/* BT_GATT_CHARACTERISTIC
 * Helper macro to declare a characteristic attribute.
 *
 * Arguments:
 *   _handle - Characteristic attribute handle.
 *   _value  - Characteristic attribute value.
 */

#define BT_GATT_CHARACTERISTIC(_handle, _value) \
{ \
  .handle    = _handle, \
  .uuid      = (&(struct bt_uuid_s) \
               { \
                 BT_UUID_16, \
                 { \
                   BT_UUID_GATT_CHRC \
                 } \
               }), \
  .perm      = BT_GATT_PERM_READ, \
  .read      = bt_gatt_attr_read_chrc, \
  .user_data = _value, \
}

/* BT_GATT_CCC
 * Helper macro to declare a CCC attribute.
 *
 * Arguments:
 *   _handle       - Descriptor attribute handle.
 *   _value_handle - Characteristic attribute value handle.
 *   _cfg          - Initial configuration.
 *   _cfg_changed  - Configuration changed callback.
 */

#define BT_GATT_CCC(_handle, _value_handle, _cfg, _cfg_changed) \
{ \
  .handle    = _handle, \
  .uuid      = (&(struct bt_uuid_s) \
               { \
                 BT_UUID_16, \
                 { \
                   BT_UUID_GATT_CCC \
                 } \
               }), \
  .perm      = BT_GATT_PERM_READ | BT_GATT_PERM_WRITE, \
  .read      = bt_gatt_attr_read_ccc, \
  .write     = bt_gatt_attr_write_ccc, \
  .user_data = (&(struct _bt_gatt_ccc) \
               { \
                 .cfg          = _cfg, \
                 .cfg_len      = ARRAY_SIZE(_cfg), \
                 .value_handle = _value_handle, \
                 .cfg_changed  = _cfg_changed, \
               }),\
}

/* BT_GATT_CEP
 * Helper macro to declare a CEP attribute.
 *
 * Arguments:
 *   _handle Descriptor attribute handle.
 *   _value Descriptor attribute value.
 */

#define BT_GATT_CEP(_handle, _value) \
{ \
  .handle    = _handle, \
  .uuid      = (&(struct bt_uuid_s) \
               { \
                 BT_UUID_16, \
                 { \
                   BT_UUID_GATT_CEP \
                 } \
               }), \
  .perm      = BT_GATT_PERM_READ, \
  .read      = bt_gatt_attr_read_cep, \
  .user_data = _value, \
}

/* BT_GATT_DESCRIPTOR
 *  Helper macro to declare a descriptor attribute.
 *
 * Arguments:
 *   _handle - Descriptor attribute handle.
 *   _value  - Descriptor attribute value.
 *   _perm   - Descriptor attribute access permissions.
 *   _read   - Descriptor attribute read callback.
 *   _write  - Descriptor attribute write callback.
 *   _value  - Descriptor attribute value.
 */

#define BT_GATT_DESCRIPTOR(_handle, _uuid, _perm, _read, _write, _value) \
{ \
  .handle    = _handle, \
  .uuid      = _uuid, \
  .perm      = _perm, \
  .read      = _read, \
  .write     = _write, \
  .user_data = _value, \
}

/* BT_GATT_LONG_DESCRIPTOR
 *  Helper macro to declare a descriptor attribute.
 *
 * Arguments:
 *   _handle - Descriptor attribute handle.
 *   _value  - Descriptor attribute value.
 *   _perm   - Descriptor attribute access permissions.
 *   _read   - Descriptor attribute read callback.
 *   _write  - Descriptor attribute write callback.
 *   _flush  - Descriptor attribute flush callback.
 *   _value  - Descriptor attribute value.
 */

#define BT_GATT_LONG_DESCRIPTOR(_handle, _uuid, _perm, _read, _write, _flush, \
        _value) \
{ \
  .handle    = _handle, \
  .uuid      = _uuid, \
  .perm      = _perm, \
  .read      = _read, \
  .write     = _write, \
  .flush     = _flush, \
  .user_data = _value, \
}

/****************************************************************************
 * Public Types
 ****************************************************************************/

enum bt_gatt_iter_e
{
  BT_GATT_ITER_STOP = 0,
  BT_GATT_ITER_CONTINUE,
};

/* Attribute iterator callback.
 *
 * Input Parameters:
 *   attr      - Attribute found.
 *   user_data - Data given.
 *
 * Returned Value:
 *   BT_GATT_ITER_CONTINUE if should continue to the next attribute
 *   or BT_GATT_ITER_STOP to stop.
 */

struct bt_gatt_attr_s; /* Forward reference */

typedef CODE uint8_t
  (*bt_gatt_attr_func_t)(FAR const struct bt_gatt_attr_s *attr,
                         FAR void *user_data);

/* Response callback function
 *
 * Input Parameters:
 *   conn - Connection object.
 *   err  - Error code.
 */

struct bt_conn_s; /* Forward reference */

typedef void (*bt_gatt_rsp_func_t)(FAR struct bt_conn_s *conn, uint8_t err);

/* Read callback function
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   err    - Error code.
 *   data   - Attribute value data.
 *   length - Attribute value length.
 */

typedef CODE void (*bt_gatt_read_func_t)(FAR struct bt_conn_s *conn,
                                         int err, FAR const void *data,
                                         uint16_t length);

/* GATT Attribute structure. */

struct bt_gatt_attr_s
{
  /* Attribute UUID */

  FAR const struct bt_uuid_s  *uuid;

  /* Attribute read callback */

  CODE int (*read)(FAR struct bt_conn_s *conn,
                   FAR const struct bt_gatt_attr_s *attr, FAR void *buf,
                   uint8_t len, uint16_t offset);

  /* Attribute write callback */

  CODE int (*write)(FAR struct bt_conn_s *conn,
                    FAR const struct bt_gatt_attr_s *attr,
                    FAR const void *buf, uint8_t len, uint16_t offset);

  /* Attribute flush callback */

  CODE int (*flush)(FAR struct bt_conn_s *conn,
                    FAR const struct bt_gatt_attr_s *attr,
                    uint8_t flags);

  /* Attribute user data */

  FAR void *user_data;

  /* Attribute handle */

  uint16_t handle;

  /* Attribute permissions */

  uint8_t perm;
};

/* Service Attribute Value. */

struct bt_gatt_service_s
{
  /* Service UUID. */

  FAR const struct bt_uuid_s *uuid;
};

/* Include Attribute Value. */

struct bt_gatt_include_s
{
  /* Service UUID. */

  FAR const struct bt_uuid_s *uuid;

  /* Service start handle. */

  uint16_t start_handle;

  /* Service end handle. */

  uint16_t end_handle;
};

/* Characteristic Attribute Value. */

struct bt_gatt_chrc_s
{
  /* Characteristic UUID. */

  FAR const struct bt_uuid_s *uuid;

  /* Characteristic value handle. */

  uint16_t value_handle;

  /* Characteristic properties. */

  uint8_t properties;
};

/* Characteristic Extended Properties Attribute Value. */

struct bt_gatt_cep_s
{
  /* Characteristic Extended properties */

  uint16_t properties;
};

/* Characteristic User Description Attribute Value. */

struct bt_gatt_cud_s
{
  /* Characteristic User Description string. */

  FAR char *string;
};

/* Client Characteristic Configuration Attribute Value */

struct bt_gatt_ccc_s
{
  /* Client Characteristic Configuration flags */

  uint16_t flags;
};

/* GATT CCC configuration entry. */

struct bt_gatt_ccc_cfg_s
{
  /* Config peer address. */

  bt_addr_le_t peer;

  /* Config peer value. */

  uint16_t value;

  /* Config valid flag. */

  uint8_t valid;
};

/* Internal representation of CCC value */

struct _bt_gatt_ccc_s
{
  FAR struct bt_gatt_ccc_cfg_s *cfg;
  size_t cfg_len;
  uint16_t value;
  uint16_t value_handle;
  CODE void (*cfg_changed)(uint16_t value);
};

/* GATT Discover Primary parameters */

struct bt_gatt_discover_params_s
{
  /* Discover UUID type */

  FAR struct bt_uuid_s *uuid;

  /* Discover attribute callback */

  bt_gatt_attr_func_t func;

  /* Discover destroy callback */

  CODE void (*destroy)(FAR void *user_data);

  /* Discover start handle */

  uint16_t start_handle;

  /* Discover end handle */

  uint16_t end_handle;
};

/****************************************************************************
 * Public Function Prototypes
 ****************************************************************************/

/* Server API */

/****************************************************************************
 * Name: bt_gatt_register
 *
 * Description:
 *   Register GATT attribute database table. Applications can make use of
 *   macros such as BT_GATT_PRIMARY_SERVICE, BT_GATT_CHARACTERISTIC,
 *   BT_GATT_DESCRIPTOR, etc.
 *
 * Input Parameters:
 *   attrs - Database table containing the available attributes.
 *   count - Size of the database table.
 *
 ****************************************************************************/

void bt_gatt_register(FAR const struct bt_gatt_attr_s *attrs, size_t count);

/****************************************************************************
 * Name: bt_gatt_foreach_attr
 *
 * Description:
 *   Iterate attributes in the given range.
 *
 * Input Parameters:
 *   start_handle - Start handle.
 *   end_handle   - End handle.
 *   func         - Callback function.
 *   user_data    - Data to pass to the callback.
 *
 ****************************************************************************/

void bt_gatt_foreach_attr(uint16_t start_handle, uint16_t end_handle,
                          bt_gatt_attr_func_t func, FAR void *user_data);

/****************************************************************************
 * Name: bt_gatt_attr_read
 *
 * Description:
 *   Read attribute value storing the result into buffer.
 *
 * Input Parameters:
 *   conn      - Connection object.
 *   attr      - Attribute to read.
 *   buf       - Buffer to store the value.
 *   buf_len   - Buffer length.
 *   offset    - Start offset.
 *   value     - Attribute value.
 *   value_len - Length of the attribute value.
 *
 * Returned Value:
 *   int number of bytes read in case of success or negative values in
 *  case of error.
 *
 ****************************************************************************/

int bt_gatt_attr_read(FAR struct bt_conn_s *conn,
                      FAR const struct bt_gatt_attr_s *attr,
                      FAR void *buf, uint8_t buf_len, uint16_t offset,
                      FAR const void *value, uint8_t value_len);

/****************************************************************************
 * Name: bt_gatt_attr_read_service
 *
 * Description:
 *   Read service attribute value storing the result into buffer after
 *   encoding it.
 *   NOTE: Only use this with attributes which user_data is a bt_uuid_s.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   attr   - Attribute to read.
 *   buf    - Buffer to store the value read.
 *   len    - Buffer length.
 *   offset - Start offset.
 *
 * Returned Value:
 *   int number of bytes read in case of success or negative values in
 *  case of error.
 *
 ****************************************************************************/

int bt_gatt_attr_read_service(FAR struct bt_conn_s *conn,
                              FAR const struct bt_gatt_attr_s *attr,
                              FAR void *buf, uint8_t len, uint16_t offset);

/****************************************************************************
 * Name: bt_gatt_attr_read_included
 *
 * Description:
 *   Read include service attribute value storing the result into buffer after
 *   encoding it.
 *   NOTE: Only use this with attributes which user_data is a bt_gatt_include.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   attr   - Attribute to read.
 *   buf    - Buffer to store the value read.
 *   len    - Buffer length.
 *   offset - Start offset.
 *
 * Returned Value:
 *   int number of bytes read in case of success or negative values in
 *  case of error.
 *
 ****************************************************************************/

int bt_gatt_attr_read_included(FAR struct bt_conn_s *conn,
                               FAR const struct bt_gatt_attr_s *attr,
                               FAR void *buf, uint8_t len, uint16_t offset);

/****************************************************************************
 * Name: bt_gatt_attr_read_chrc
 *
 * Description:
 *   Read characteristic attribute value storing the result into buffer after
 *    encoding it.
 *  NOTE: Only use this with attributes which user_data is a bt_gatt_chrc.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   attr   - Attribute to read.
 *   buf    - Buffer to store the value read.
 *   len    - Buffer length.
 *   offset - Start offset.
 *
 * Returned Value:
 *   number of bytes read in case of success or negative values in
 *  case of error.
 *
 ****************************************************************************/

int bt_gatt_attr_read_chrc(FAR struct bt_conn_s *conn,
                           FAR const struct bt_gatt_attr_s *attr, FAR void *buf,
                           uint8_t len, uint16_t offset);

/****************************************************************************
 * Name: bt_gatt_attr_read_ccc
 *
 * Description:
 *   Read CCC attribute value storing the result into buffer after
 *   encoding it.
 *   NOTE: Only use this with attributes which user_data is a _bt_gatt_ccc.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   attr   - Attribute to read.
 *   buf    - Buffer to store the value read.
 *   len    - Buffer length.
 *   offset - Start offset.
 *
 * Returned Value:
 *   number of bytes read in case of success or negative values in
 *  case of error.
 *
 ****************************************************************************/

int bt_gatt_attr_read_ccc(FAR struct bt_conn_s *conn,
                          FAR const struct bt_gatt_attr_s *attr, FAR void *buf,
                          uint8_t len, uint16_t offset);

/****************************************************************************
 * Name: bt_gatt_attr_write_ccc
 *
 * Description:
 *   Write value in the buffer into CCC attribute.
 *   NOTE: Only use this with attributes which user_data is a _bt_gatt_ccc.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   attr   - Attribute to read.
 *   buf    - Buffer to store the value read.
 *   len    - Buffer length.
 *   offset - Start offset.
 *
 * Returned Value:
 *   number of bytes written in case of success or negative values in
 *  case of error.
 *
 ****************************************************************************/

int bt_gatt_attr_write_ccc(FAR struct bt_conn_s *conn,
                           FAR const struct bt_gatt_attr_s *attr,
                           FAR const void *buf, uint8_t len, uint16_t offset);

/****************************************************************************
 * Name: bt_gatt_attr_read_cep
 *
 * Description:
 *   Read CEP attribute value storing the result into buffer after
 *   encoding it.
 *   NOTE: Only use this with attributes which user_data is a bt_gatt_cep.
 *
 * Input Parameters:
 *   conn   - Connection object
 *   attr   - Attribute to read
 *   buf    - Buffer to store the value read
 *   len    - Buffer length
 *   offset - Start offset
 *
 * Returned Value:
 *   number of bytes read in case of success or negative values in
 *  case of error.
 *
 ****************************************************************************/

int bt_gatt_attr_read_cep(FAR struct bt_conn_s *conn,
                          FAR const struct bt_gatt_attr_s *attr, FAR void *buf,
                          uint8_t len, uint16_t offset);

/****************************************************************************
 * Name: bt_gatt_notify
 *
 * Description:
 *   Send notification of attribute value change.
 *   Note: This function should only be called if CCC is declared with
 *   BT_GATT_CCC otherwise it cannot find a valid peer configuration.
 *
 * Input Parameters:
 *   handle - Attribute handle.
 *   value  - Attribute value.
 *   len    - Attribute value length.
 *
 ****************************************************************************/

void bt_gatt_notify(uint16_t handle, FAR const void *data, size_t len);

/****************************************************************************
 * Name: bt_gatt_connected
 *
 * Description:
 *   Connected callback.
 *
 * Input Parameters:
 *   conn - Connection object.
 *
 ****************************************************************************/

void bt_gatt_connected(FAR struct bt_conn_s *conn);

/****************************************************************************
 * Name: bt_gatt_disconnected
 *
 * Description:
 *   Disconnected callback.
 *
 * Input Parameters:
 *   conn - Connection object.
 *
 ****************************************************************************/

void bt_gatt_disconnected(FAR struct bt_conn_s *conn);

/* Client API */

/****************************************************************************
 * Name: bt_gatt_exchange_mtu
 *
 * Description:
 *   This client procedure can be used to set the MTU to the maximum possible
 *   size the buffers can hold.
 *   NOTE: Can only be used once per connection.
 *
 * Input Parameters:
 *   conn - Connection object.
 *
 ****************************************************************************/

int bt_gatt_exchange_mtu(FAR struct bt_conn_s *conn, bt_gatt_rsp_func_t func);

/****************************************************************************
 * Name: bt_gatt_discover
 *
 * Description:
 *   This procedure is used by a client to discover a specific primary service on
 *   a server when only the Service UUID is known.
 *
 *   For each attribute found the callback is called which can then decide
 *   whether to continue discovering or stop.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   params - Discover parameters.
 *
 * Returned Value:
 *   Zero in case of success or negative value in case of error.
 *
 ****************************************************************************/

int bt_gatt_discover(FAR struct bt_conn_s *conn,
                     FAR struct bt_gatt_discover_params_s *params);

/****************************************************************************
 * Name: bt_gatt_discover_characteristic
 *
 * Description:
 *   This procedure is used by a client to discover all characteristics on a
 *   server.
 *   Note: In case the UUID is set in the parameter it will be matched against
 *   the attributes found before calling the function callback.
 *
 *   For each attribute found the callback is called which can then decide
 *   whether to continue discovering or stop.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   params - Discover parameters.
 *
 * Returned Value:
 *   Zero in case of success or negative value in case of error.
 *
 ****************************************************************************/

int bt_gatt_discover_characteristic(FAR struct bt_conn_s *conn,
                                    FAR struct bt_gatt_discover_params_s *params);

/****************************************************************************
 * Name: bt_gatt_discover_descriptor
 *
 * Description:
 *   This procedure is used by a client to discover descriptors on a server.
 *   Note: In case the UUID is set in the parameter it will be matched against
 *   the attributes found before calling the function callback.
 *
 *   For each attribute found the callback is called which can then decide
 *   whether to continue discovering or stop.
 *
 * Input Parameters:
 *   conn   - Connection object.
 *   params - Discover parameters.
 *
 * Returned Value:
 *   Zero in case of success or negative value in case of error.
 *
 ****************************************************************************/

int bt_gatt_discover_descriptor(FAR struct bt_conn_s *conn,
                                FAR struct bt_gatt_discover_params_s *params);

/****************************************************************************
 * Name: bt_gatt_read
 *
 * Description:
 *   This procedure read the attribute value and return it to the callback.
 *
 * Input Parameters:
 *  conn   - Connection object.
 *  handle - Attribute handle.
 *  offset - Attribute data offset.
 *  func   - Callback function.
 *
 * Returned Value:
 *   Zero in case of success or negative value in case of error.
 *
 ****************************************************************************/

int bt_gatt_read(FAR struct bt_conn_s *conn, uint16_t handle, uint16_t offset,
                 bt_gatt_read_func_t func);

/****************************************************************************
 * Name:
 *
 * Description:
 *   This procedure write the attribute value and return the result in the
 *   callback in case it is set.
 *
 * Input Parameters:
 *  conn   - Connection object.
 *  handle - Attribute handle.
 *  data   - Data to be written.
 *  length - Data length.